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.
 
 
 

66828 lines
1.7 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. "russian-blue": {
  2427. name: "Russian Blue",
  2428. parents: ["housecat"]
  2429. },
  2430. "wholphin": {
  2431. name: "Wholphin",
  2432. parents: ["whale", "dolphin"]
  2433. },
  2434. "sea-dragon": {
  2435. name: "Sea Dragon",
  2436. parents: ["dragon", "aquatic"]
  2437. },
  2438. "brown-bear": {
  2439. name: "Brown Bear",
  2440. parents: ["bear"]
  2441. },
  2442. }
  2443. //species
  2444. function getSpeciesInfo(speciesList) {
  2445. let result = new Set();
  2446. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2447. result.add(entry)
  2448. });
  2449. return Array.from(result);
  2450. };
  2451. function getSpeciesInfoHelper(species) {
  2452. if (!speciesData[species]) {
  2453. console.warn(species + " doesn't exist");
  2454. return [];
  2455. }
  2456. if (speciesData[species].parents) {
  2457. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2458. } else {
  2459. return [species];
  2460. }
  2461. }
  2462. characterMakers.push(() => makeCharacter(
  2463. {
  2464. name: "Fen",
  2465. species: ["crux"],
  2466. description: {
  2467. title: "Bio",
  2468. text: "Very furry. Sheds on everything."
  2469. },
  2470. tags: [
  2471. "anthro",
  2472. "goo"
  2473. ]
  2474. },
  2475. {
  2476. front: {
  2477. height: math.unit(12, "feet"),
  2478. weight: math.unit(2400, "lb"),
  2479. preyCapacity: math.unit(1, "people"),
  2480. name: "Front",
  2481. image: {
  2482. source: "./media/characters/fen/front.svg",
  2483. extra: 1804/1562,
  2484. bottom: 205/2009
  2485. },
  2486. extraAttributes: {
  2487. pawSize: {
  2488. name: "Paw Size",
  2489. power: 2,
  2490. type: "area",
  2491. base: math.unit(0.35, "m^2")
  2492. }
  2493. }
  2494. },
  2495. diving: {
  2496. height: math.unit(4.9, "meters"),
  2497. weight: math.unit(2400, "lb"),
  2498. name: "Diving",
  2499. image: {
  2500. source: "./media/characters/fen/diving.svg"
  2501. }
  2502. },
  2503. sleeby: {
  2504. height: math.unit(3.45, "meters"),
  2505. weight: math.unit(2400, "lb"),
  2506. name: "Sleeby",
  2507. image: {
  2508. source: "./media/characters/fen/sleeby.svg"
  2509. }
  2510. },
  2511. goo: {
  2512. height: math.unit(12, "feet"),
  2513. weight: math.unit(3600, "lb"),
  2514. volume: math.unit(1000, "liters"),
  2515. preyCapacity: math.unit(6, "people"),
  2516. name: "Goo",
  2517. image: {
  2518. source: "./media/characters/fen/goo.svg",
  2519. extra: 1307/1071,
  2520. bottom: 134/1441
  2521. }
  2522. },
  2523. horror: {
  2524. height: math.unit(13.6, "feet"),
  2525. weight: math.unit(2400, "lb"),
  2526. preyCapacity: math.unit(1, "people"),
  2527. name: "Horror",
  2528. image: {
  2529. source: "./media/characters/fen/horror.svg",
  2530. extra: 893/797,
  2531. bottom: 0/893
  2532. }
  2533. },
  2534. gooNsfw: {
  2535. height: math.unit(12, "feet"),
  2536. weight: math.unit(3750, "lb"),
  2537. volume: math.unit(1000, "liters"),
  2538. preyCapacity: math.unit(6, "people"),
  2539. name: "Goo (NSFW)",
  2540. image: {
  2541. source: "./media/characters/fen/goo-nsfw.svg",
  2542. extra: 1875/1734,
  2543. bottom: 122/1997
  2544. }
  2545. },
  2546. maw: {
  2547. height: math.unit(5.03, "feet"),
  2548. name: "Maw",
  2549. image: {
  2550. source: "./media/characters/fen/maw.svg"
  2551. }
  2552. },
  2553. gooCeiling: {
  2554. height: math.unit(6.6, "feet"),
  2555. weight: math.unit(3000, "lb"),
  2556. volume: math.unit(1000, "liters"),
  2557. preyCapacity: math.unit(6, "people"),
  2558. name: "Maw (Goo)",
  2559. image: {
  2560. source: "./media/characters/fen/goo-maw.svg"
  2561. }
  2562. },
  2563. paw: {
  2564. height: math.unit(3.77, "feet"),
  2565. name: "Paw",
  2566. image: {
  2567. source: "./media/characters/fen/paw.svg"
  2568. },
  2569. extraAttributes: {
  2570. "toeSize": {
  2571. name: "Toe Size",
  2572. power: 2,
  2573. type: "area",
  2574. base: math.unit(0.02875, "m^2")
  2575. },
  2576. "pawSize": {
  2577. name: "Paw Size",
  2578. power: 2,
  2579. type: "area",
  2580. base: math.unit(0.378, "m^2")
  2581. },
  2582. }
  2583. },
  2584. tail: {
  2585. height: math.unit(12.1, "feet"),
  2586. name: "Tail",
  2587. image: {
  2588. source: "./media/characters/fen/tail.svg"
  2589. }
  2590. },
  2591. tailFull: {
  2592. height: math.unit(12.1, "feet"),
  2593. name: "Full Tail",
  2594. image: {
  2595. source: "./media/characters/fen/tail-full.svg"
  2596. }
  2597. },
  2598. back: {
  2599. height: math.unit(12, "feet"),
  2600. weight: math.unit(2400, "lb"),
  2601. name: "Back",
  2602. image: {
  2603. source: "./media/characters/fen/back.svg",
  2604. },
  2605. info: {
  2606. description: {
  2607. mode: "append",
  2608. text: "\n\nHe is not currently looking at you."
  2609. }
  2610. }
  2611. },
  2612. full: {
  2613. height: math.unit(1.85, "meter"),
  2614. weight: math.unit(3200, "lb"),
  2615. preyCapacity: math.unit(3, "people"),
  2616. name: "Full",
  2617. image: {
  2618. source: "./media/characters/fen/full.svg",
  2619. extra: 1133/859,
  2620. bottom: 145/1278
  2621. },
  2622. info: {
  2623. description: {
  2624. mode: "append",
  2625. text: "\n\nMunch."
  2626. }
  2627. }
  2628. },
  2629. gooLounging: {
  2630. height: math.unit(4.53, "feet"),
  2631. weight: math.unit(3000, "lb"),
  2632. preyCapacity: math.unit(6, "people"),
  2633. name: "Goo (Lounging)",
  2634. image: {
  2635. source: "./media/characters/fen/goo-lounging.svg",
  2636. bottom: 116 / 613
  2637. }
  2638. },
  2639. lounging: {
  2640. height: math.unit(10.52, "feet"),
  2641. weight: math.unit(2400, "lb"),
  2642. name: "Lounging",
  2643. image: {
  2644. source: "./media/characters/fen/lounging.svg"
  2645. }
  2646. },
  2647. },
  2648. [
  2649. {
  2650. name: "Small",
  2651. height: math.unit(2.2428, "meter")
  2652. },
  2653. {
  2654. name: "Normal",
  2655. height: math.unit(12, "feet"),
  2656. default: true,
  2657. },
  2658. {
  2659. name: "Big",
  2660. height: math.unit(20, "feet")
  2661. },
  2662. {
  2663. name: "Minimacro",
  2664. height: math.unit(40, "feet"),
  2665. info: {
  2666. description: {
  2667. mode: "append",
  2668. text: "\n\nTOO DAMN BIG"
  2669. }
  2670. }
  2671. },
  2672. {
  2673. name: "Macro",
  2674. height: math.unit(100, "feet"),
  2675. info: {
  2676. description: {
  2677. mode: "append",
  2678. text: "\n\nTOO DAMN BIG"
  2679. }
  2680. }
  2681. },
  2682. {
  2683. name: "Megamacro",
  2684. height: math.unit(2, "miles")
  2685. },
  2686. {
  2687. name: "Gigamacro",
  2688. height: math.unit(10, "earths")
  2689. },
  2690. ]
  2691. ))
  2692. characterMakers.push(() => makeCharacter(
  2693. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2694. {
  2695. front: {
  2696. height: math.unit(183, "cm"),
  2697. weight: math.unit(80, "kg"),
  2698. name: "Front",
  2699. image: {
  2700. source: "./media/characters/sofia-fluttertail/front.svg",
  2701. bottom: 0.01,
  2702. extra: 2154 / 2081
  2703. }
  2704. },
  2705. frontAlt: {
  2706. height: math.unit(183, "cm"),
  2707. weight: math.unit(80, "kg"),
  2708. name: "Front (alt)",
  2709. image: {
  2710. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2711. }
  2712. },
  2713. back: {
  2714. height: math.unit(183, "cm"),
  2715. weight: math.unit(80, "kg"),
  2716. name: "Back",
  2717. image: {
  2718. source: "./media/characters/sofia-fluttertail/back.svg"
  2719. }
  2720. },
  2721. kneeling: {
  2722. height: math.unit(125, "cm"),
  2723. weight: math.unit(80, "kg"),
  2724. name: "Kneeling",
  2725. image: {
  2726. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2727. extra: 1033 / 977,
  2728. bottom: 23.7 / 1057
  2729. }
  2730. },
  2731. maw: {
  2732. height: math.unit(183 / 5, "cm"),
  2733. name: "Maw",
  2734. image: {
  2735. source: "./media/characters/sofia-fluttertail/maw.svg"
  2736. }
  2737. },
  2738. mawcloseup: {
  2739. height: math.unit(183 / 5 * 0.41, "cm"),
  2740. name: "Maw (Closeup)",
  2741. image: {
  2742. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2743. }
  2744. },
  2745. paws: {
  2746. height: math.unit(1.17, "feet"),
  2747. name: "Paws",
  2748. image: {
  2749. source: "./media/characters/sofia-fluttertail/paws.svg",
  2750. extra: 851 / 851,
  2751. bottom: 17 / 868
  2752. }
  2753. },
  2754. },
  2755. [
  2756. {
  2757. name: "Normal",
  2758. height: math.unit(1.83, "meter")
  2759. },
  2760. {
  2761. name: "Size Thief",
  2762. height: math.unit(18, "feet")
  2763. },
  2764. {
  2765. name: "50 Foot Collie",
  2766. height: math.unit(50, "feet")
  2767. },
  2768. {
  2769. name: "Macro",
  2770. height: math.unit(96, "feet"),
  2771. default: true
  2772. },
  2773. {
  2774. name: "Megamerger",
  2775. height: math.unit(650, "feet")
  2776. },
  2777. ]
  2778. ))
  2779. characterMakers.push(() => makeCharacter(
  2780. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2781. {
  2782. front: {
  2783. height: math.unit(7, "feet"),
  2784. weight: math.unit(100, "kg"),
  2785. name: "Front",
  2786. image: {
  2787. source: "./media/characters/march/front.svg",
  2788. extra: 1992/1851,
  2789. bottom: 39/2031
  2790. }
  2791. },
  2792. foot: {
  2793. height: math.unit(0.9, "feet"),
  2794. name: "Foot",
  2795. image: {
  2796. source: "./media/characters/march/foot.svg"
  2797. }
  2798. },
  2799. },
  2800. [
  2801. {
  2802. name: "Normal",
  2803. height: math.unit(7.9, "feet")
  2804. },
  2805. {
  2806. name: "Macro",
  2807. height: math.unit(220, "meters")
  2808. },
  2809. {
  2810. name: "Megamacro",
  2811. height: math.unit(2.98, "km"),
  2812. default: true
  2813. },
  2814. {
  2815. name: "Gigamacro",
  2816. height: math.unit(15963, "km")
  2817. },
  2818. {
  2819. name: "Teramacro",
  2820. height: math.unit(2980000000, "km")
  2821. },
  2822. {
  2823. name: "Examacro",
  2824. height: math.unit(250, "parsecs")
  2825. },
  2826. ]
  2827. ))
  2828. characterMakers.push(() => makeCharacter(
  2829. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2830. {
  2831. front: {
  2832. height: math.unit(6, "feet"),
  2833. weight: math.unit(60, "kg"),
  2834. name: "Front",
  2835. image: {
  2836. source: "./media/characters/noir/front.svg",
  2837. extra: 1,
  2838. bottom: 0.032
  2839. }
  2840. },
  2841. },
  2842. [
  2843. {
  2844. name: "Normal",
  2845. height: math.unit(6.6, "feet")
  2846. },
  2847. {
  2848. name: "Macro",
  2849. height: math.unit(500, "feet")
  2850. },
  2851. {
  2852. name: "Megamacro",
  2853. height: math.unit(2.5, "km"),
  2854. default: true
  2855. },
  2856. {
  2857. name: "Gigamacro",
  2858. height: math.unit(22500, "km")
  2859. },
  2860. {
  2861. name: "Teramacro",
  2862. height: math.unit(2500000000, "km")
  2863. },
  2864. {
  2865. name: "Examacro",
  2866. height: math.unit(200, "parsecs")
  2867. },
  2868. ]
  2869. ))
  2870. characterMakers.push(() => makeCharacter(
  2871. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2872. {
  2873. front: {
  2874. height: math.unit(7, "feet"),
  2875. weight: math.unit(100, "kg"),
  2876. name: "Front",
  2877. image: {
  2878. source: "./media/characters/okuri/front.svg",
  2879. extra: 739/665,
  2880. bottom: 39/778
  2881. }
  2882. },
  2883. back: {
  2884. height: math.unit(7, "feet"),
  2885. weight: math.unit(100, "kg"),
  2886. name: "Back",
  2887. image: {
  2888. source: "./media/characters/okuri/back.svg",
  2889. extra: 734/653,
  2890. bottom: 13/747
  2891. }
  2892. },
  2893. sitting: {
  2894. height: math.unit(2.95, "feet"),
  2895. weight: math.unit(100, "kg"),
  2896. name: "Sitting",
  2897. image: {
  2898. source: "./media/characters/okuri/sitting.svg",
  2899. extra: 370/318,
  2900. bottom: 99/469
  2901. }
  2902. },
  2903. },
  2904. [
  2905. {
  2906. name: "Smallest",
  2907. height: math.unit(5 + 2/12, "feet")
  2908. },
  2909. {
  2910. name: "Smaller",
  2911. height: math.unit(300, "feet")
  2912. },
  2913. {
  2914. name: "Small",
  2915. height: math.unit(1000, "feet")
  2916. },
  2917. {
  2918. name: "Macro",
  2919. height: math.unit(1, "mile")
  2920. },
  2921. {
  2922. name: "Mega Macro (Small)",
  2923. height: math.unit(20, "km")
  2924. },
  2925. {
  2926. name: "Mega Macro (Large)",
  2927. height: math.unit(600, "km")
  2928. },
  2929. {
  2930. name: "Giga Macro",
  2931. height: math.unit(10000, "km")
  2932. },
  2933. {
  2934. name: "Normal",
  2935. height: math.unit(577560, "km"),
  2936. default: true
  2937. },
  2938. {
  2939. name: "Large",
  2940. height: math.unit(4, "galaxies")
  2941. },
  2942. {
  2943. name: "Largest",
  2944. height: math.unit(15, "multiverses")
  2945. },
  2946. ]
  2947. ))
  2948. characterMakers.push(() => makeCharacter(
  2949. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2950. {
  2951. front: {
  2952. height: math.unit(7, "feet"),
  2953. weight: math.unit(100, "kg"),
  2954. name: "Front",
  2955. image: {
  2956. source: "./media/characters/manny/front.svg",
  2957. extra: 1,
  2958. bottom: 0.06
  2959. }
  2960. },
  2961. back: {
  2962. height: math.unit(7, "feet"),
  2963. weight: math.unit(100, "kg"),
  2964. name: "Back",
  2965. image: {
  2966. source: "./media/characters/manny/back.svg",
  2967. extra: 1,
  2968. bottom: 0.014
  2969. }
  2970. },
  2971. },
  2972. [
  2973. {
  2974. name: "Normal",
  2975. height: math.unit(7, "feet"),
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(78, "feet"),
  2980. default: true
  2981. },
  2982. {
  2983. name: "Macro+",
  2984. height: math.unit(300, "meters")
  2985. },
  2986. {
  2987. name: "Macro++",
  2988. height: math.unit(2400, "meters")
  2989. },
  2990. {
  2991. name: "Megamacro",
  2992. height: math.unit(5167, "meters")
  2993. },
  2994. {
  2995. name: "Gigamacro",
  2996. height: math.unit(41769, "miles")
  2997. },
  2998. ]
  2999. ))
  3000. characterMakers.push(() => makeCharacter(
  3001. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3002. {
  3003. front: {
  3004. height: math.unit(7, "feet"),
  3005. weight: math.unit(100, "kg"),
  3006. name: "Front",
  3007. image: {
  3008. source: "./media/characters/adake/front-1.svg"
  3009. }
  3010. },
  3011. frontAlt: {
  3012. height: math.unit(7, "feet"),
  3013. weight: math.unit(100, "kg"),
  3014. name: "Front (Alt)",
  3015. image: {
  3016. source: "./media/characters/adake/front-2.svg",
  3017. extra: 1,
  3018. bottom: 0.01
  3019. }
  3020. },
  3021. back: {
  3022. height: math.unit(7, "feet"),
  3023. weight: math.unit(100, "kg"),
  3024. name: "Back",
  3025. image: {
  3026. source: "./media/characters/adake/back.svg",
  3027. }
  3028. },
  3029. kneel: {
  3030. height: math.unit(5.385, "feet"),
  3031. weight: math.unit(100, "kg"),
  3032. name: "Kneeling",
  3033. image: {
  3034. source: "./media/characters/adake/kneel.svg",
  3035. bottom: 0.052
  3036. }
  3037. },
  3038. },
  3039. [
  3040. {
  3041. name: "Normal",
  3042. height: math.unit(7, "feet"),
  3043. },
  3044. {
  3045. name: "Macro",
  3046. height: math.unit(78, "feet"),
  3047. default: true
  3048. },
  3049. {
  3050. name: "Macro+",
  3051. height: math.unit(300, "meters")
  3052. },
  3053. {
  3054. name: "Macro++",
  3055. height: math.unit(2400, "meters")
  3056. },
  3057. {
  3058. name: "Megamacro",
  3059. height: math.unit(5167, "meters")
  3060. },
  3061. {
  3062. name: "Gigamacro",
  3063. height: math.unit(41769, "miles")
  3064. },
  3065. ]
  3066. ))
  3067. characterMakers.push(() => makeCharacter(
  3068. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3069. {
  3070. front: {
  3071. height: math.unit(1.65, "meters"),
  3072. weight: math.unit(50, "kg"),
  3073. name: "Front",
  3074. image: {
  3075. source: "./media/characters/elijah/front.svg",
  3076. extra: 858 / 830,
  3077. bottom: 95.5 / 953.8559
  3078. }
  3079. },
  3080. back: {
  3081. height: math.unit(1.65, "meters"),
  3082. weight: math.unit(50, "kg"),
  3083. name: "Back",
  3084. image: {
  3085. source: "./media/characters/elijah/back.svg",
  3086. extra: 895 / 850,
  3087. bottom: 5.3 / 897.956
  3088. }
  3089. },
  3090. frontNsfw: {
  3091. height: math.unit(1.65, "meters"),
  3092. weight: math.unit(50, "kg"),
  3093. name: "Front (NSFW)",
  3094. image: {
  3095. source: "./media/characters/elijah/front-nsfw.svg",
  3096. extra: 858 / 830,
  3097. bottom: 95.5 / 953.8559
  3098. }
  3099. },
  3100. backNsfw: {
  3101. height: math.unit(1.65, "meters"),
  3102. weight: math.unit(50, "kg"),
  3103. name: "Back (NSFW)",
  3104. image: {
  3105. source: "./media/characters/elijah/back-nsfw.svg",
  3106. extra: 895 / 850,
  3107. bottom: 5.3 / 897.956
  3108. }
  3109. },
  3110. dick: {
  3111. height: math.unit(1, "feet"),
  3112. name: "Dick",
  3113. image: {
  3114. source: "./media/characters/elijah/dick.svg"
  3115. }
  3116. },
  3117. beakOpen: {
  3118. height: math.unit(1.25, "feet"),
  3119. name: "Beak (Open)",
  3120. image: {
  3121. source: "./media/characters/elijah/beak-open.svg"
  3122. }
  3123. },
  3124. beakShut: {
  3125. height: math.unit(1.25, "feet"),
  3126. name: "Beak (Shut)",
  3127. image: {
  3128. source: "./media/characters/elijah/beak-shut.svg"
  3129. }
  3130. },
  3131. footFlexing: {
  3132. height: math.unit(1.61, "feet"),
  3133. name: "Foot (Flexing)",
  3134. image: {
  3135. source: "./media/characters/elijah/foot-flexing.svg"
  3136. }
  3137. },
  3138. footStepping: {
  3139. height: math.unit(1.44, "feet"),
  3140. name: "Foot (Stepping)",
  3141. image: {
  3142. source: "./media/characters/elijah/foot-stepping.svg"
  3143. }
  3144. },
  3145. plantigradeLeg: {
  3146. height: math.unit(2.34, "feet"),
  3147. name: "Plantigrade Leg",
  3148. image: {
  3149. source: "./media/characters/elijah/plantigrade-leg.svg"
  3150. }
  3151. },
  3152. plantigradeFootLeft: {
  3153. height: math.unit(0.9, "feet"),
  3154. name: "Plantigrade Foot (Left)",
  3155. image: {
  3156. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3157. }
  3158. },
  3159. plantigradeFootRight: {
  3160. height: math.unit(0.9, "feet"),
  3161. name: "Plantigrade Foot (Right)",
  3162. image: {
  3163. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3164. }
  3165. },
  3166. },
  3167. [
  3168. {
  3169. name: "Normal",
  3170. height: math.unit(1.65, "meters")
  3171. },
  3172. {
  3173. name: "Macro",
  3174. height: math.unit(55, "meters"),
  3175. default: true
  3176. },
  3177. {
  3178. name: "Macro+",
  3179. height: math.unit(105, "meters")
  3180. },
  3181. ]
  3182. ))
  3183. characterMakers.push(() => makeCharacter(
  3184. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3185. {
  3186. front: {
  3187. height: math.unit(7 + 2/12, "feet"),
  3188. weight: math.unit(320, "kg"),
  3189. preyCapacity: math.unit(0.276549935, "people"),
  3190. name: "Front",
  3191. image: {
  3192. source: "./media/characters/rai/front.svg",
  3193. extra: 1802/1696,
  3194. bottom: 68/1870
  3195. },
  3196. form: "anthro",
  3197. default: true
  3198. },
  3199. frontDressed: {
  3200. height: math.unit(7 + 2/12, "feet"),
  3201. weight: math.unit(320, "kg"),
  3202. preyCapacity: math.unit(0.276549935, "people"),
  3203. name: "Front (Dressed)",
  3204. image: {
  3205. source: "./media/characters/rai/front-dressed.svg",
  3206. extra: 1802/1696,
  3207. bottom: 68/1870
  3208. },
  3209. form: "anthro"
  3210. },
  3211. side: {
  3212. height: math.unit(7 + 2/12, "feet"),
  3213. weight: math.unit(320, "kg"),
  3214. preyCapacity: math.unit(0.276549935, "people"),
  3215. name: "Side",
  3216. image: {
  3217. source: "./media/characters/rai/side.svg",
  3218. extra: 1789/1710,
  3219. bottom: 115/1904
  3220. },
  3221. form: "anthro"
  3222. },
  3223. back: {
  3224. height: math.unit(7 + 2/12, "feet"),
  3225. weight: math.unit(320, "kg"),
  3226. preyCapacity: math.unit(0.276549935, "people"),
  3227. name: "Back",
  3228. image: {
  3229. source: "./media/characters/rai/back.svg",
  3230. extra: 1770/1707,
  3231. bottom: 28/1798
  3232. },
  3233. form: "anthro"
  3234. },
  3235. feral: {
  3236. height: math.unit(9.5, "feet"),
  3237. weight: math.unit(640, "kg"),
  3238. preyCapacity: math.unit(4, "people"),
  3239. name: "Feral",
  3240. image: {
  3241. source: "./media/characters/rai/feral.svg",
  3242. extra: 945/553,
  3243. bottom: 176/1121
  3244. },
  3245. form: "feral",
  3246. default: true
  3247. },
  3248. dragon: {
  3249. height: math.unit(23, "feet"),
  3250. weight: math.unit(50000, "lb"),
  3251. name: "Dragon",
  3252. image: {
  3253. source: "./media/characters/rai/dragon.svg",
  3254. extra: 2498 / 2030,
  3255. bottom: 85.2 / 2584
  3256. },
  3257. form: "dragon",
  3258. default: true
  3259. },
  3260. maw: {
  3261. height: math.unit(1.69, "feet"),
  3262. name: "Maw",
  3263. image: {
  3264. source: "./media/characters/rai/maw.svg"
  3265. },
  3266. form: "anthro"
  3267. },
  3268. },
  3269. [
  3270. {
  3271. name: "Normal",
  3272. height: math.unit(7 + 2/12, "feet"),
  3273. form: "anthro"
  3274. },
  3275. {
  3276. name: "Big",
  3277. height: math.unit(11, "feet"),
  3278. form: "anthro"
  3279. },
  3280. {
  3281. name: "Minimacro",
  3282. height: math.unit(77, "feet"),
  3283. form: "anthro"
  3284. },
  3285. {
  3286. name: "Macro",
  3287. height: math.unit(302, "feet"),
  3288. default: true,
  3289. form: "anthro"
  3290. },
  3291. {
  3292. name: "Normal",
  3293. height: math.unit(9.5, "feet"),
  3294. form: "feral",
  3295. default: true
  3296. },
  3297. {
  3298. name: "Normal",
  3299. height: math.unit(23, "feet"),
  3300. form: "dragon",
  3301. default: true
  3302. }
  3303. ],
  3304. {
  3305. "anthro": {
  3306. name: "Anthro",
  3307. default: true
  3308. },
  3309. "feral": {
  3310. name: "Feral",
  3311. },
  3312. "dragon": {
  3313. name: "Dragon",
  3314. },
  3315. }
  3316. ))
  3317. characterMakers.push(() => makeCharacter(
  3318. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3319. {
  3320. frontDressed: {
  3321. height: math.unit(216, "feet"),
  3322. weight: math.unit(7000000, "lb"),
  3323. preyCapacity: math.unit(1321, "people"),
  3324. name: "Front (Dressed)",
  3325. image: {
  3326. source: "./media/characters/jazzy/front-dressed.svg",
  3327. extra: 2738 / 2651,
  3328. bottom: 41.8 / 2786
  3329. }
  3330. },
  3331. backDressed: {
  3332. height: math.unit(216, "feet"),
  3333. weight: math.unit(7000000, "lb"),
  3334. preyCapacity: math.unit(1321, "people"),
  3335. name: "Back (Dressed)",
  3336. image: {
  3337. source: "./media/characters/jazzy/back-dressed.svg",
  3338. extra: 2775 / 2673,
  3339. bottom: 36.8 / 2817
  3340. }
  3341. },
  3342. front: {
  3343. height: math.unit(216, "feet"),
  3344. weight: math.unit(7000000, "lb"),
  3345. preyCapacity: math.unit(1321, "people"),
  3346. name: "Front",
  3347. image: {
  3348. source: "./media/characters/jazzy/front.svg",
  3349. extra: 2738 / 2651,
  3350. bottom: 41.8 / 2786
  3351. }
  3352. },
  3353. back: {
  3354. height: math.unit(216, "feet"),
  3355. weight: math.unit(7000000, "lb"),
  3356. preyCapacity: math.unit(1321, "people"),
  3357. name: "Back",
  3358. image: {
  3359. source: "./media/characters/jazzy/back.svg",
  3360. extra: 2775 / 2673,
  3361. bottom: 36.8 / 2817
  3362. }
  3363. },
  3364. maw: {
  3365. height: math.unit(20, "feet"),
  3366. name: "Maw",
  3367. image: {
  3368. source: "./media/characters/jazzy/maw.svg"
  3369. }
  3370. },
  3371. paws: {
  3372. height: math.unit(27.5, "feet"),
  3373. name: "Paws",
  3374. image: {
  3375. source: "./media/characters/jazzy/paws.svg"
  3376. }
  3377. },
  3378. eye: {
  3379. height: math.unit(4.4, "feet"),
  3380. name: "Eye",
  3381. image: {
  3382. source: "./media/characters/jazzy/eye.svg"
  3383. }
  3384. },
  3385. droneOffense: {
  3386. height: math.unit(9.5, "inches"),
  3387. name: "Drone (Offense)",
  3388. image: {
  3389. source: "./media/characters/jazzy/drone-offense.svg"
  3390. }
  3391. },
  3392. droneRecon: {
  3393. height: math.unit(9.5, "inches"),
  3394. name: "Drone (Recon)",
  3395. image: {
  3396. source: "./media/characters/jazzy/drone-recon.svg"
  3397. }
  3398. },
  3399. droneDefense: {
  3400. height: math.unit(9.5, "inches"),
  3401. name: "Drone (Defense)",
  3402. image: {
  3403. source: "./media/characters/jazzy/drone-defense.svg"
  3404. }
  3405. },
  3406. },
  3407. [
  3408. {
  3409. name: "Macro",
  3410. height: math.unit(216, "feet"),
  3411. default: true
  3412. },
  3413. ]
  3414. ))
  3415. characterMakers.push(() => makeCharacter(
  3416. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3417. {
  3418. front: {
  3419. height: math.unit(9 + 6/12, "feet"),
  3420. weight: math.unit(700, "lb"),
  3421. name: "Front",
  3422. image: {
  3423. source: "./media/characters/flamm/front.svg",
  3424. extra: 1736/1596,
  3425. bottom: 93/1829
  3426. }
  3427. },
  3428. buff: {
  3429. height: math.unit(9 + 6/12, "feet"),
  3430. weight: math.unit(950, "lb"),
  3431. name: "Buff",
  3432. image: {
  3433. source: "./media/characters/flamm/buff.svg",
  3434. extra: 3018/2874,
  3435. bottom: 221/3239
  3436. }
  3437. },
  3438. },
  3439. [
  3440. {
  3441. name: "Normal",
  3442. height: math.unit(9.5, "feet")
  3443. },
  3444. {
  3445. name: "Macro",
  3446. height: math.unit(200, "feet"),
  3447. default: true
  3448. },
  3449. ]
  3450. ))
  3451. characterMakers.push(() => makeCharacter(
  3452. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3453. {
  3454. front: {
  3455. height: math.unit(5 + 3/12, "feet"),
  3456. weight: math.unit(60, "kg"),
  3457. name: "Front",
  3458. image: {
  3459. source: "./media/characters/zephiro/front.svg",
  3460. extra: 1873/1761,
  3461. bottom: 147/2020
  3462. }
  3463. },
  3464. side: {
  3465. height: math.unit(5 + 3/12, "feet"),
  3466. weight: math.unit(60, "kg"),
  3467. name: "Side",
  3468. image: {
  3469. source: "./media/characters/zephiro/side.svg",
  3470. extra: 1929/1827,
  3471. bottom: 65/1994
  3472. }
  3473. },
  3474. back: {
  3475. height: math.unit(5 + 3/12, "feet"),
  3476. weight: math.unit(60, "kg"),
  3477. name: "Back",
  3478. image: {
  3479. source: "./media/characters/zephiro/back.svg",
  3480. extra: 1926/1816,
  3481. bottom: 41/1967
  3482. }
  3483. },
  3484. hand: {
  3485. height: math.unit(0.68, "feet"),
  3486. name: "Hand",
  3487. image: {
  3488. source: "./media/characters/zephiro/hand.svg"
  3489. }
  3490. },
  3491. paw: {
  3492. height: math.unit(1, "feet"),
  3493. name: "Paw",
  3494. image: {
  3495. source: "./media/characters/zephiro/paw.svg"
  3496. }
  3497. },
  3498. beans: {
  3499. height: math.unit(0.93, "feet"),
  3500. name: "Beans",
  3501. image: {
  3502. source: "./media/characters/zephiro/beans.svg"
  3503. }
  3504. },
  3505. },
  3506. [
  3507. {
  3508. name: "Micro",
  3509. height: math.unit(3, "inches")
  3510. },
  3511. {
  3512. name: "Normal",
  3513. height: math.unit(5 + 3 / 12, "feet"),
  3514. default: true
  3515. },
  3516. {
  3517. name: "Macro",
  3518. height: math.unit(118, "feet")
  3519. },
  3520. ]
  3521. ))
  3522. characterMakers.push(() => makeCharacter(
  3523. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3524. {
  3525. front: {
  3526. height: math.unit(5, "feet"),
  3527. weight: math.unit(90, "kg"),
  3528. preyCapacity: math.unit(14, "people"),
  3529. name: "Front",
  3530. image: {
  3531. source: "./media/characters/fory/front.svg",
  3532. extra: 2862 / 2674,
  3533. bottom: 180 / 3043.8
  3534. },
  3535. form: "weaselbun",
  3536. default: true,
  3537. extraAttributes: {
  3538. "pawSize": {
  3539. name: "Paw Size",
  3540. power: 2,
  3541. type: "area",
  3542. base: math.unit(0.1596, "m^2")
  3543. },
  3544. "pawLength": {
  3545. name: "Paw Length",
  3546. power: 1,
  3547. type: "length",
  3548. base: math.unit(0.7, "m")
  3549. }
  3550. }
  3551. },
  3552. back: {
  3553. height: math.unit(5, "feet"),
  3554. weight: math.unit(90, "kg"),
  3555. preyCapacity: math.unit(14, "people"),
  3556. name: "Back",
  3557. image: {
  3558. source: "./media/characters/fory/back.svg",
  3559. extra: 1790/1672,
  3560. bottom: 84/1874
  3561. },
  3562. form: "weaselbun",
  3563. extraAttributes: {
  3564. "pawSize": {
  3565. name: "Paw Size",
  3566. power: 2,
  3567. type: "area",
  3568. base: math.unit(0.1596, "m^2")
  3569. },
  3570. "pawLength": {
  3571. name: "Paw Length",
  3572. power: 1,
  3573. type: "length",
  3574. base: math.unit(0.7, "m")
  3575. }
  3576. }
  3577. },
  3578. paw: {
  3579. height: math.unit(2.14, "feet"),
  3580. name: "Paw",
  3581. image: {
  3582. source: "./media/characters/fory/paw.svg"
  3583. },
  3584. form: "weaselbun",
  3585. extraAttributes: {
  3586. "pawSize": {
  3587. name: "Paw Size",
  3588. power: 2,
  3589. type: "area",
  3590. base: math.unit(0.1596, "m^2")
  3591. },
  3592. "pawLength": {
  3593. name: "Paw Length",
  3594. power: 1,
  3595. type: "length",
  3596. base: math.unit(0.48, "m")
  3597. }
  3598. }
  3599. },
  3600. bunBack: {
  3601. height: math.unit(3, "feet"),
  3602. weight: math.unit(20, "kg"),
  3603. preyCapacity: math.unit(3, "people"),
  3604. name: "Back",
  3605. image: {
  3606. source: "./media/characters/fory/bun-back.svg",
  3607. extra: 1749/1564,
  3608. bottom: 246/1995
  3609. },
  3610. form: "bun",
  3611. default: true,
  3612. extraAttributes: {
  3613. "pawSize": {
  3614. name: "Paw Size",
  3615. power: 2,
  3616. type: "area",
  3617. base: math.unit(0.072, "m^2")
  3618. },
  3619. "pawLength": {
  3620. name: "Paw Length",
  3621. power: 1,
  3622. type: "length",
  3623. base: math.unit(0.45, "m")
  3624. }
  3625. }
  3626. },
  3627. },
  3628. [
  3629. {
  3630. name: "Normal",
  3631. height: math.unit(5, "feet"),
  3632. form: "weaselbun"
  3633. },
  3634. {
  3635. name: "Macro",
  3636. height: math.unit(50, "feet"),
  3637. default: true,
  3638. form: "weaselbun"
  3639. },
  3640. {
  3641. name: "Megamacro",
  3642. height: math.unit(10, "miles"),
  3643. form: "weaselbun"
  3644. },
  3645. {
  3646. name: "Gigamacro",
  3647. height: math.unit(5, "earths"),
  3648. form: "weaselbun"
  3649. },
  3650. {
  3651. name: "Normal",
  3652. height: math.unit(3, "feet"),
  3653. default: true,
  3654. form: "bun"
  3655. },
  3656. {
  3657. name: "Fun-Size",
  3658. height: math.unit(12, "feet"),
  3659. form: "bun"
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(100, "feet"),
  3664. form: "bun"
  3665. },
  3666. {
  3667. name: "Planetary",
  3668. height: math.unit(3, "earths"),
  3669. form: "bun"
  3670. },
  3671. ],
  3672. {
  3673. "weaselbun": {
  3674. name: "Weaselbun",
  3675. default: true
  3676. },
  3677. "bun": {
  3678. name: "Bun",
  3679. },
  3680. }
  3681. ))
  3682. characterMakers.push(() => makeCharacter(
  3683. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3684. {
  3685. front: {
  3686. height: math.unit(7, "feet"),
  3687. weight: math.unit(90, "kg"),
  3688. name: "Front",
  3689. image: {
  3690. source: "./media/characters/kurrikage/front.svg",
  3691. extra: 1845/1733,
  3692. bottom: 119/1964
  3693. }
  3694. },
  3695. back: {
  3696. height: math.unit(7, "feet"),
  3697. weight: math.unit(90, "kg"),
  3698. name: "Back",
  3699. image: {
  3700. source: "./media/characters/kurrikage/back.svg",
  3701. extra: 1790/1677,
  3702. bottom: 61/1851
  3703. }
  3704. },
  3705. dressed: {
  3706. height: math.unit(7, "feet"),
  3707. weight: math.unit(90, "kg"),
  3708. name: "Dressed",
  3709. image: {
  3710. source: "./media/characters/kurrikage/dressed.svg",
  3711. extra: 1845/1733,
  3712. bottom: 119/1964
  3713. }
  3714. },
  3715. foot: {
  3716. height: math.unit(1.5, "feet"),
  3717. name: "Foot",
  3718. image: {
  3719. source: "./media/characters/kurrikage/foot.svg"
  3720. }
  3721. },
  3722. staff: {
  3723. height: math.unit(6.7, "feet"),
  3724. name: "Staff",
  3725. image: {
  3726. source: "./media/characters/kurrikage/staff.svg"
  3727. }
  3728. },
  3729. peek: {
  3730. height: math.unit(1.05, "feet"),
  3731. name: "Peeking",
  3732. image: {
  3733. source: "./media/characters/kurrikage/peek.svg",
  3734. bottom: 0.08
  3735. }
  3736. },
  3737. },
  3738. [
  3739. {
  3740. name: "Normal",
  3741. height: math.unit(12, "feet"),
  3742. default: true
  3743. },
  3744. {
  3745. name: "Big",
  3746. height: math.unit(20, "feet")
  3747. },
  3748. {
  3749. name: "Macro",
  3750. height: math.unit(500, "feet")
  3751. },
  3752. {
  3753. name: "Megamacro",
  3754. height: math.unit(20, "miles")
  3755. },
  3756. ]
  3757. ))
  3758. characterMakers.push(() => makeCharacter(
  3759. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3760. {
  3761. front: {
  3762. height: math.unit(6, "feet"),
  3763. weight: math.unit(75, "kg"),
  3764. name: "Front",
  3765. image: {
  3766. source: "./media/characters/shingo/front.svg",
  3767. extra: 1900/1825,
  3768. bottom: 82/1982
  3769. }
  3770. },
  3771. side: {
  3772. height: math.unit(6, "feet"),
  3773. weight: math.unit(75, "kg"),
  3774. name: "Side",
  3775. image: {
  3776. source: "./media/characters/shingo/side.svg",
  3777. extra: 1930/1865,
  3778. bottom: 16/1946
  3779. }
  3780. },
  3781. back: {
  3782. height: math.unit(6, "feet"),
  3783. weight: math.unit(75, "kg"),
  3784. name: "Back",
  3785. image: {
  3786. source: "./media/characters/shingo/back.svg",
  3787. extra: 1922/1852,
  3788. bottom: 16/1938
  3789. }
  3790. },
  3791. frontDressed: {
  3792. height: math.unit(6, "feet"),
  3793. weight: math.unit(150, "lb"),
  3794. name: "Front-dressed",
  3795. image: {
  3796. source: "./media/characters/shingo/front-dressed.svg",
  3797. extra: 1900/1825,
  3798. bottom: 82/1982
  3799. }
  3800. },
  3801. paw: {
  3802. height: math.unit(1.29, "feet"),
  3803. name: "Paw",
  3804. image: {
  3805. source: "./media/characters/shingo/paw.svg"
  3806. }
  3807. },
  3808. hand: {
  3809. height: math.unit(1.07, "feet"),
  3810. name: "Hand",
  3811. image: {
  3812. source: "./media/characters/shingo/hand.svg"
  3813. }
  3814. },
  3815. frontAlt: {
  3816. height: math.unit(6, "feet"),
  3817. weight: math.unit(75, "kg"),
  3818. name: "Front (Alt)",
  3819. image: {
  3820. source: "./media/characters/shingo/front-alt.svg",
  3821. extra: 3511 / 3338,
  3822. bottom: 0.005
  3823. }
  3824. },
  3825. frontAlt2: {
  3826. height: math.unit(6, "feet"),
  3827. weight: math.unit(75, "kg"),
  3828. name: "Front (Alt 2)",
  3829. image: {
  3830. source: "./media/characters/shingo/front-alt-2.svg",
  3831. extra: 706/681,
  3832. bottom: 11/717
  3833. }
  3834. },
  3835. pawAlt: {
  3836. height: math.unit(1, "feet"),
  3837. name: "Paw (Alt)",
  3838. image: {
  3839. source: "./media/characters/shingo/paw-alt.svg"
  3840. }
  3841. },
  3842. },
  3843. [
  3844. {
  3845. name: "Micro",
  3846. height: math.unit(4, "inches")
  3847. },
  3848. {
  3849. name: "Normal",
  3850. height: math.unit(6, "feet"),
  3851. default: true
  3852. },
  3853. {
  3854. name: "Macro",
  3855. height: math.unit(108, "feet")
  3856. },
  3857. {
  3858. name: "Macro+",
  3859. height: math.unit(1500, "feet")
  3860. },
  3861. ]
  3862. ))
  3863. characterMakers.push(() => makeCharacter(
  3864. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3865. {
  3866. side: {
  3867. height: math.unit(6, "feet"),
  3868. weight: math.unit(75, "kg"),
  3869. name: "Side",
  3870. image: {
  3871. source: "./media/characters/aigey/side.svg"
  3872. }
  3873. },
  3874. },
  3875. [
  3876. {
  3877. name: "Macro",
  3878. height: math.unit(200, "feet"),
  3879. default: true
  3880. },
  3881. {
  3882. name: "Megamacro",
  3883. height: math.unit(100, "miles")
  3884. },
  3885. ]
  3886. )
  3887. )
  3888. characterMakers.push(() => makeCharacter(
  3889. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3890. {
  3891. front: {
  3892. height: math.unit(13, "feet"),
  3893. weight: math.unit(1036.80, "kg"),
  3894. name: "Front",
  3895. image: {
  3896. source: "./media/characters/natasha/front.svg",
  3897. extra: 1301/1210,
  3898. bottom: 39/1340
  3899. }
  3900. },
  3901. back: {
  3902. height: math.unit(13, "feet"),
  3903. weight: math.unit(1036.80, "kg"),
  3904. name: "Back",
  3905. image: {
  3906. source: "./media/characters/natasha/back.svg",
  3907. extra: 1342/1252,
  3908. bottom: 20/1362
  3909. }
  3910. },
  3911. head: {
  3912. height: math.unit(3.48, "feet"),
  3913. name: "Head",
  3914. image: {
  3915. source: "./media/characters/natasha/head.svg"
  3916. }
  3917. },
  3918. jaws: {
  3919. height: math.unit(3.52, "feet"),
  3920. name: "Jaws",
  3921. image: {
  3922. source: "./media/characters/natasha/jaws.svg"
  3923. }
  3924. },
  3925. paws: {
  3926. height: math.unit(2.7, "feet"),
  3927. name: "Paws",
  3928. image: {
  3929. source: "./media/characters/natasha/paws.svg"
  3930. }
  3931. },
  3932. collar: {
  3933. height: math.unit(0.89, "feet"),
  3934. name: "Collar",
  3935. image: {
  3936. source: "./media/characters/natasha/collar.svg"
  3937. }
  3938. },
  3939. gauge: {
  3940. height: math.unit(0.36, "feet"),
  3941. name: "Gauge",
  3942. image: {
  3943. source: "./media/characters/natasha/gauge.svg"
  3944. }
  3945. },
  3946. },
  3947. [
  3948. {
  3949. name: "Shortstack",
  3950. height: math.unit(3, "feet")
  3951. },
  3952. {
  3953. name: "Normal",
  3954. height: math.unit(13, "feet"),
  3955. default: true
  3956. },
  3957. {
  3958. name: "Macro",
  3959. height: math.unit(100, "feet")
  3960. },
  3961. {
  3962. name: "Macro+",
  3963. height: math.unit(260, "feet")
  3964. },
  3965. {
  3966. name: "Macro++",
  3967. height: math.unit(1, "mile")
  3968. },
  3969. ]
  3970. ))
  3971. characterMakers.push(() => makeCharacter(
  3972. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3973. {
  3974. front: {
  3975. height: math.unit(6, "feet"),
  3976. weight: math.unit(75, "kg"),
  3977. name: "Front",
  3978. image: {
  3979. source: "./media/characters/malik/front.svg",
  3980. extra: 1750/1561,
  3981. bottom: 80/1830
  3982. },
  3983. extraAttributes: {
  3984. "toeSize": {
  3985. name: "Toe Size",
  3986. power: 2,
  3987. type: "area",
  3988. base: math.unit(0.0159, "m^2")
  3989. },
  3990. "pawSize": {
  3991. name: "Paw Size",
  3992. power: 2,
  3993. type: "area",
  3994. base: math.unit(0.09834, "m^2")
  3995. },
  3996. }
  3997. },
  3998. side: {
  3999. height: math.unit(6, "feet"),
  4000. weight: math.unit(75, "kg"),
  4001. name: "Side",
  4002. image: {
  4003. source: "./media/characters/malik/side.svg",
  4004. extra: 1802/1685,
  4005. bottom: 42/1844
  4006. },
  4007. extraAttributes: {
  4008. "toeSize": {
  4009. name: "Toe Size",
  4010. power: 2,
  4011. type: "area",
  4012. base: math.unit(0.0159, "m^2")
  4013. },
  4014. "pawSize": {
  4015. name: "Paw Size",
  4016. power: 2,
  4017. type: "area",
  4018. base: math.unit(0.09834, "m^2")
  4019. },
  4020. }
  4021. },
  4022. back: {
  4023. height: math.unit(6, "feet"),
  4024. weight: math.unit(75, "kg"),
  4025. name: "Back",
  4026. image: {
  4027. source: "./media/characters/malik/back.svg",
  4028. extra: 1803/1607,
  4029. bottom: 33/1836
  4030. },
  4031. extraAttributes: {
  4032. "toeSize": {
  4033. name: "Toe Size",
  4034. power: 2,
  4035. type: "area",
  4036. base: math.unit(0.0159, "m^2")
  4037. },
  4038. "pawSize": {
  4039. name: "Paw Size",
  4040. power: 2,
  4041. type: "area",
  4042. base: math.unit(0.09834, "m^2")
  4043. },
  4044. }
  4045. },
  4046. },
  4047. [
  4048. {
  4049. name: "Macro",
  4050. height: math.unit(156, "feet"),
  4051. default: true
  4052. },
  4053. {
  4054. name: "Macro+",
  4055. height: math.unit(1188, "feet")
  4056. },
  4057. ]
  4058. ))
  4059. characterMakers.push(() => makeCharacter(
  4060. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4061. {
  4062. front: {
  4063. height: math.unit(6, "feet"),
  4064. weight: math.unit(75, "kg"),
  4065. name: "Front",
  4066. image: {
  4067. source: "./media/characters/sefer/front.svg",
  4068. extra: 848 / 659,
  4069. bottom: 28.3 / 876.442
  4070. }
  4071. },
  4072. back: {
  4073. height: math.unit(6, "feet"),
  4074. weight: math.unit(75, "kg"),
  4075. name: "Back",
  4076. image: {
  4077. source: "./media/characters/sefer/back.svg",
  4078. extra: 864 / 695,
  4079. bottom: 10 / 871
  4080. }
  4081. },
  4082. frontDressed: {
  4083. height: math.unit(6, "feet"),
  4084. weight: math.unit(75, "kg"),
  4085. name: "Dressed",
  4086. image: {
  4087. source: "./media/characters/sefer/dressed.svg",
  4088. extra: 839 / 653,
  4089. bottom: 37.6 / 878
  4090. }
  4091. },
  4092. },
  4093. [
  4094. {
  4095. name: "Normal",
  4096. height: math.unit(6, "feet"),
  4097. default: true
  4098. },
  4099. {
  4100. name: "Big",
  4101. height: math.unit(8, "meters")
  4102. },
  4103. ]
  4104. ))
  4105. characterMakers.push(() => makeCharacter(
  4106. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4107. {
  4108. body: {
  4109. height: math.unit(2.2428, "meter"),
  4110. weight: math.unit(124.738, "kg"),
  4111. name: "Body",
  4112. image: {
  4113. extra: 1225 / 1050,
  4114. source: "./media/characters/north/front.svg"
  4115. }
  4116. }
  4117. },
  4118. [
  4119. {
  4120. name: "Micro",
  4121. height: math.unit(4, "inches")
  4122. },
  4123. {
  4124. name: "Macro",
  4125. height: math.unit(63, "meters")
  4126. },
  4127. {
  4128. name: "Megamacro",
  4129. height: math.unit(101, "miles"),
  4130. default: true
  4131. }
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4136. {
  4137. angled: {
  4138. height: math.unit(4, "meter"),
  4139. weight: math.unit(150, "kg"),
  4140. name: "Angled",
  4141. image: {
  4142. source: "./media/characters/talan/angled-sfw.svg",
  4143. bottom: 29 / 3734
  4144. }
  4145. },
  4146. angledNsfw: {
  4147. height: math.unit(4, "meter"),
  4148. weight: math.unit(150, "kg"),
  4149. name: "Angled (NSFW)",
  4150. image: {
  4151. source: "./media/characters/talan/angled-nsfw.svg",
  4152. bottom: 29 / 3734
  4153. }
  4154. },
  4155. frontNsfw: {
  4156. height: math.unit(4, "meter"),
  4157. weight: math.unit(150, "kg"),
  4158. name: "Front (NSFW)",
  4159. image: {
  4160. source: "./media/characters/talan/front-nsfw.svg",
  4161. bottom: 29 / 3734
  4162. }
  4163. },
  4164. sideNsfw: {
  4165. height: math.unit(4, "meter"),
  4166. weight: math.unit(150, "kg"),
  4167. name: "Side (NSFW)",
  4168. image: {
  4169. source: "./media/characters/talan/side-nsfw.svg",
  4170. bottom: 29 / 3734
  4171. }
  4172. },
  4173. back: {
  4174. height: math.unit(4, "meter"),
  4175. weight: math.unit(150, "kg"),
  4176. name: "Back",
  4177. image: {
  4178. source: "./media/characters/talan/back.svg"
  4179. }
  4180. },
  4181. dickBottom: {
  4182. height: math.unit(0.621, "meter"),
  4183. name: "Dick (Bottom)",
  4184. image: {
  4185. source: "./media/characters/talan/dick-bottom.svg"
  4186. }
  4187. },
  4188. dickTop: {
  4189. height: math.unit(0.621, "meter"),
  4190. name: "Dick (Top)",
  4191. image: {
  4192. source: "./media/characters/talan/dick-top.svg"
  4193. }
  4194. },
  4195. dickSide: {
  4196. height: math.unit(0.305, "meter"),
  4197. name: "Dick (Side)",
  4198. image: {
  4199. source: "./media/characters/talan/dick-side.svg"
  4200. }
  4201. },
  4202. dickFront: {
  4203. height: math.unit(0.305, "meter"),
  4204. name: "Dick (Front)",
  4205. image: {
  4206. source: "./media/characters/talan/dick-front.svg"
  4207. }
  4208. },
  4209. },
  4210. [
  4211. {
  4212. name: "Normal",
  4213. height: math.unit(4, "meters")
  4214. },
  4215. {
  4216. name: "Macro",
  4217. height: math.unit(100, "meters")
  4218. },
  4219. {
  4220. name: "Megamacro",
  4221. height: math.unit(2, "miles"),
  4222. default: true
  4223. },
  4224. {
  4225. name: "Gigamacro",
  4226. height: math.unit(5000, "miles")
  4227. },
  4228. {
  4229. name: "Teramacro",
  4230. height: math.unit(100, "parsecs")
  4231. }
  4232. ]
  4233. ))
  4234. characterMakers.push(() => makeCharacter(
  4235. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4236. {
  4237. front: {
  4238. height: math.unit(2, "meter"),
  4239. weight: math.unit(90, "kg"),
  4240. name: "Front",
  4241. image: {
  4242. source: "./media/characters/gael'rathus/front.svg"
  4243. }
  4244. },
  4245. frontAlt: {
  4246. height: math.unit(2, "meter"),
  4247. weight: math.unit(90, "kg"),
  4248. name: "Front (alt)",
  4249. image: {
  4250. source: "./media/characters/gael'rathus/front-alt.svg"
  4251. }
  4252. },
  4253. frontAlt2: {
  4254. height: math.unit(2, "meter"),
  4255. weight: math.unit(90, "kg"),
  4256. name: "Front (alt 2)",
  4257. image: {
  4258. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4259. }
  4260. }
  4261. },
  4262. [
  4263. {
  4264. name: "Normal",
  4265. height: math.unit(9, "feet"),
  4266. default: true
  4267. },
  4268. {
  4269. name: "Large",
  4270. height: math.unit(25, "feet")
  4271. },
  4272. {
  4273. name: "Macro",
  4274. height: math.unit(0.25, "miles")
  4275. },
  4276. {
  4277. name: "Megamacro",
  4278. height: math.unit(10, "miles")
  4279. }
  4280. ]
  4281. ))
  4282. characterMakers.push(() => makeCharacter(
  4283. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4284. {
  4285. side: {
  4286. height: math.unit(2, "meter"),
  4287. weight: math.unit(140, "kg"),
  4288. name: "Side",
  4289. image: {
  4290. source: "./media/characters/sosha/side.svg",
  4291. extra: 1170/1006,
  4292. bottom: 94/1264
  4293. }
  4294. },
  4295. maw: {
  4296. height: math.unit(2.87, "feet"),
  4297. name: "Maw",
  4298. image: {
  4299. source: "./media/characters/sosha/maw.svg",
  4300. extra: 966/865,
  4301. bottom: 0/966
  4302. }
  4303. },
  4304. cooch: {
  4305. height: math.unit(5.6, "feet"),
  4306. name: "Cooch",
  4307. image: {
  4308. source: "./media/characters/sosha/cooch.svg"
  4309. }
  4310. },
  4311. },
  4312. [
  4313. {
  4314. name: "Normal",
  4315. height: math.unit(12, "feet"),
  4316. default: true
  4317. }
  4318. ]
  4319. ))
  4320. characterMakers.push(() => makeCharacter(
  4321. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4322. {
  4323. side: {
  4324. height: math.unit(5 + 5 / 12, "feet"),
  4325. weight: math.unit(170, "kg"),
  4326. name: "Side",
  4327. image: {
  4328. source: "./media/characters/runnola/side.svg",
  4329. extra: 741 / 448,
  4330. bottom: 0.05
  4331. }
  4332. },
  4333. },
  4334. [
  4335. {
  4336. name: "Small",
  4337. height: math.unit(3, "feet")
  4338. },
  4339. {
  4340. name: "Normal",
  4341. height: math.unit(5 + 5 / 12, "feet"),
  4342. default: true
  4343. },
  4344. {
  4345. name: "Big",
  4346. height: math.unit(10, "feet")
  4347. },
  4348. ]
  4349. ))
  4350. characterMakers.push(() => makeCharacter(
  4351. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4352. {
  4353. front: {
  4354. height: math.unit(2, "meter"),
  4355. weight: math.unit(50, "kg"),
  4356. name: "Front",
  4357. image: {
  4358. source: "./media/characters/kurribird/front.svg",
  4359. bottom: 0.015
  4360. }
  4361. },
  4362. frontAlt: {
  4363. height: math.unit(1.5, "meter"),
  4364. weight: math.unit(50, "kg"),
  4365. name: "Front (Alt)",
  4366. image: {
  4367. source: "./media/characters/kurribird/front-alt.svg",
  4368. extra: 1.45
  4369. }
  4370. },
  4371. },
  4372. [
  4373. {
  4374. name: "Normal",
  4375. height: math.unit(7, "feet")
  4376. },
  4377. {
  4378. name: "Big",
  4379. height: math.unit(12, "feet"),
  4380. default: true
  4381. },
  4382. {
  4383. name: "Macro",
  4384. height: math.unit(1500, "feet")
  4385. },
  4386. {
  4387. name: "Megamacro",
  4388. height: math.unit(2, "miles")
  4389. }
  4390. ]
  4391. ))
  4392. characterMakers.push(() => makeCharacter(
  4393. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4394. {
  4395. front: {
  4396. height: math.unit(2, "meter"),
  4397. weight: math.unit(80, "kg"),
  4398. name: "Front",
  4399. image: {
  4400. source: "./media/characters/elbial/front.svg",
  4401. extra: 1643 / 1556,
  4402. bottom: 60.2 / 1696
  4403. }
  4404. },
  4405. side: {
  4406. height: math.unit(2, "meter"),
  4407. weight: math.unit(80, "kg"),
  4408. name: "Side",
  4409. image: {
  4410. source: "./media/characters/elbial/side.svg",
  4411. extra: 1601/1528,
  4412. bottom: 97/1698
  4413. }
  4414. },
  4415. back: {
  4416. height: math.unit(2, "meter"),
  4417. weight: math.unit(80, "kg"),
  4418. name: "Back",
  4419. image: {
  4420. source: "./media/characters/elbial/back.svg",
  4421. extra: 1653/1569,
  4422. bottom: 20/1673
  4423. }
  4424. },
  4425. frontDressed: {
  4426. height: math.unit(2, "meter"),
  4427. weight: math.unit(80, "kg"),
  4428. name: "Front (Dressed)",
  4429. image: {
  4430. source: "./media/characters/elbial/front-dressed.svg",
  4431. extra: 1638/1569,
  4432. bottom: 70/1708
  4433. }
  4434. },
  4435. genitals: {
  4436. height: math.unit(2 / 3.367, "meter"),
  4437. name: "Genitals",
  4438. image: {
  4439. source: "./media/characters/elbial/genitals.svg"
  4440. }
  4441. },
  4442. },
  4443. [
  4444. {
  4445. name: "Large",
  4446. height: math.unit(100, "feet")
  4447. },
  4448. {
  4449. name: "Macro",
  4450. height: math.unit(500, "feet"),
  4451. default: true
  4452. },
  4453. {
  4454. name: "Megamacro",
  4455. height: math.unit(10, "miles")
  4456. },
  4457. {
  4458. name: "Gigamacro",
  4459. height: math.unit(25000, "miles")
  4460. },
  4461. {
  4462. name: "Full-Size",
  4463. height: math.unit(8000000, "gigaparsecs")
  4464. }
  4465. ]
  4466. ))
  4467. characterMakers.push(() => makeCharacter(
  4468. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4469. {
  4470. front: {
  4471. height: math.unit(2, "meter"),
  4472. weight: math.unit(60, "kg"),
  4473. name: "Front",
  4474. image: {
  4475. source: "./media/characters/noah/front.svg",
  4476. extra: 1383/1313,
  4477. bottom: 104/1487
  4478. }
  4479. },
  4480. hand: {
  4481. height: math.unit(0.6, "feet"),
  4482. name: "Hand",
  4483. image: {
  4484. source: "./media/characters/noah/hand.svg"
  4485. }
  4486. },
  4487. talons: {
  4488. height: math.unit(1.385, "feet"),
  4489. name: "Talons",
  4490. image: {
  4491. source: "./media/characters/noah/talons.svg"
  4492. }
  4493. },
  4494. beak: {
  4495. height: math.unit(0.43, "feet"),
  4496. name: "Beak",
  4497. image: {
  4498. source: "./media/characters/noah/beak.svg"
  4499. }
  4500. },
  4501. collar: {
  4502. height: math.unit(0.88, "feet"),
  4503. name: "Collar",
  4504. image: {
  4505. source: "./media/characters/noah/collar.svg"
  4506. }
  4507. },
  4508. eyeNarrow: {
  4509. height: math.unit(0.18, "feet"),
  4510. name: "Eye (Narrow)",
  4511. image: {
  4512. source: "./media/characters/noah/eye-narrow.svg"
  4513. }
  4514. },
  4515. eyeNormal: {
  4516. height: math.unit(0.18, "feet"),
  4517. name: "Eye (Normal)",
  4518. image: {
  4519. source: "./media/characters/noah/eye-normal.svg"
  4520. }
  4521. },
  4522. eyeWide: {
  4523. height: math.unit(0.18, "feet"),
  4524. name: "Eye (Wide)",
  4525. image: {
  4526. source: "./media/characters/noah/eye-wide.svg"
  4527. }
  4528. },
  4529. ear: {
  4530. height: math.unit(0.64, "feet"),
  4531. name: "Ear",
  4532. image: {
  4533. source: "./media/characters/noah/ear.svg"
  4534. }
  4535. },
  4536. },
  4537. [
  4538. {
  4539. name: "Large",
  4540. height: math.unit(50, "feet")
  4541. },
  4542. {
  4543. name: "Macro",
  4544. height: math.unit(750, "feet"),
  4545. default: true
  4546. },
  4547. {
  4548. name: "Megamacro",
  4549. height: math.unit(50, "miles")
  4550. },
  4551. {
  4552. name: "Gigamacro",
  4553. height: math.unit(100000, "miles")
  4554. },
  4555. {
  4556. name: "Full-Size",
  4557. height: math.unit(3000000000, "miles")
  4558. }
  4559. ]
  4560. ))
  4561. characterMakers.push(() => makeCharacter(
  4562. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4563. {
  4564. front: {
  4565. height: math.unit(2, "meter"),
  4566. weight: math.unit(80, "kg"),
  4567. name: "Front",
  4568. image: {
  4569. source: "./media/characters/natalya/front.svg"
  4570. }
  4571. },
  4572. back: {
  4573. height: math.unit(2, "meter"),
  4574. weight: math.unit(80, "kg"),
  4575. name: "Back",
  4576. image: {
  4577. source: "./media/characters/natalya/back.svg"
  4578. }
  4579. }
  4580. },
  4581. [
  4582. {
  4583. name: "Normal",
  4584. height: math.unit(150, "feet"),
  4585. default: true
  4586. },
  4587. {
  4588. name: "Megamacro",
  4589. height: math.unit(5, "miles")
  4590. },
  4591. {
  4592. name: "Full-Size",
  4593. height: math.unit(600, "kiloparsecs")
  4594. }
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4599. {
  4600. front: {
  4601. height: math.unit(2, "meter"),
  4602. weight: math.unit(50, "kg"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/erestrebah/front.svg",
  4606. extra: 1262/1162,
  4607. bottom: 96/1358
  4608. }
  4609. },
  4610. back: {
  4611. height: math.unit(2, "meter"),
  4612. weight: math.unit(50, "kg"),
  4613. name: "Back",
  4614. image: {
  4615. source: "./media/characters/erestrebah/back.svg",
  4616. extra: 1257/1139,
  4617. bottom: 13/1270
  4618. }
  4619. },
  4620. wing: {
  4621. height: math.unit(2, "meter"),
  4622. weight: math.unit(50, "kg"),
  4623. name: "Wing",
  4624. image: {
  4625. source: "./media/characters/erestrebah/wing.svg",
  4626. extra: 1262/1162,
  4627. bottom: 96/1358
  4628. }
  4629. },
  4630. mouth: {
  4631. height: math.unit(0.39, "feet"),
  4632. name: "Mouth",
  4633. image: {
  4634. source: "./media/characters/erestrebah/mouth.svg"
  4635. }
  4636. }
  4637. },
  4638. [
  4639. {
  4640. name: "Normal",
  4641. height: math.unit(10, "feet")
  4642. },
  4643. {
  4644. name: "Large",
  4645. height: math.unit(50, "feet"),
  4646. default: true
  4647. },
  4648. {
  4649. name: "Macro",
  4650. height: math.unit(300, "feet")
  4651. },
  4652. {
  4653. name: "Macro+",
  4654. height: math.unit(750, "feet")
  4655. },
  4656. {
  4657. name: "Megamacro",
  4658. height: math.unit(3, "miles")
  4659. }
  4660. ]
  4661. ))
  4662. characterMakers.push(() => makeCharacter(
  4663. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4664. {
  4665. front: {
  4666. height: math.unit(2, "meter"),
  4667. weight: math.unit(80, "kg"),
  4668. name: "Front",
  4669. image: {
  4670. source: "./media/characters/jennifer/front.svg",
  4671. bottom: 0.11,
  4672. extra: 1.16
  4673. }
  4674. },
  4675. frontAlt: {
  4676. height: math.unit(2, "meter"),
  4677. weight: math.unit(80, "kg"),
  4678. name: "Front (Alt)",
  4679. image: {
  4680. source: "./media/characters/jennifer/front-alt.svg"
  4681. }
  4682. }
  4683. },
  4684. [
  4685. {
  4686. name: "Canon Height",
  4687. height: math.unit(120, "feet"),
  4688. default: true
  4689. },
  4690. {
  4691. name: "Macro+",
  4692. height: math.unit(300, "feet")
  4693. },
  4694. {
  4695. name: "Megamacro",
  4696. height: math.unit(20000, "feet")
  4697. }
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(2, "meter"),
  4705. weight: math.unit(50, "kg"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/kalista/front.svg",
  4709. extra: 1314/1145,
  4710. bottom: 101/1415
  4711. }
  4712. },
  4713. back: {
  4714. height: math.unit(2, "meter"),
  4715. weight: math.unit(50, "kg"),
  4716. name: "Back",
  4717. image: {
  4718. source: "./media/characters/kalista/back.svg",
  4719. extra: 1366 / 1156,
  4720. bottom: 33.9 / 1362.78
  4721. }
  4722. }
  4723. },
  4724. [
  4725. {
  4726. name: "Uncomfortably Small",
  4727. height: math.unit(10, "feet")
  4728. },
  4729. {
  4730. name: "Small",
  4731. height: math.unit(30, "feet")
  4732. },
  4733. {
  4734. name: "Macro",
  4735. height: math.unit(100, "feet"),
  4736. default: true
  4737. },
  4738. {
  4739. name: "Macro+",
  4740. height: math.unit(2000, "feet")
  4741. },
  4742. {
  4743. name: "True Form",
  4744. height: math.unit(8924, "miles")
  4745. }
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(2, "meter"),
  4753. weight: math.unit(120, "kg"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/ggv/front.svg"
  4757. }
  4758. },
  4759. side: {
  4760. height: math.unit(2, "meter"),
  4761. weight: math.unit(120, "kg"),
  4762. name: "Side",
  4763. image: {
  4764. source: "./media/characters/ggv/side.svg"
  4765. }
  4766. }
  4767. },
  4768. [
  4769. {
  4770. name: "Extremely Puny",
  4771. height: math.unit(9 + 5 / 12, "feet")
  4772. },
  4773. {
  4774. name: "Horribly Small",
  4775. height: math.unit(47.7, "miles"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "Reasonably Sized",
  4780. height: math.unit(25000, "parsecs")
  4781. },
  4782. {
  4783. name: "Slightly Uncompressed",
  4784. height: math.unit(7.77e31, "parsecs")
  4785. },
  4786. {
  4787. name: "Omniversal",
  4788. height: math.unit(1e300, "meters")
  4789. },
  4790. ]
  4791. ))
  4792. characterMakers.push(() => makeCharacter(
  4793. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4794. {
  4795. front: {
  4796. height: math.unit(2, "meter"),
  4797. weight: math.unit(75, "lb"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/napalm/front.svg"
  4801. }
  4802. },
  4803. back: {
  4804. height: math.unit(2, "meter"),
  4805. weight: math.unit(75, "lb"),
  4806. name: "Back",
  4807. image: {
  4808. source: "./media/characters/napalm/back.svg"
  4809. }
  4810. }
  4811. },
  4812. [
  4813. {
  4814. name: "Standard",
  4815. height: math.unit(55, "feet"),
  4816. default: true
  4817. }
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4822. {
  4823. front: {
  4824. height: math.unit(7 + 5 / 6, "feet"),
  4825. weight: math.unit(325, "lb"),
  4826. name: "Front",
  4827. image: {
  4828. source: "./media/characters/asana/front.svg",
  4829. extra: 1133 / 1060,
  4830. bottom: 15.2 / 1148.6
  4831. }
  4832. },
  4833. back: {
  4834. height: math.unit(7 + 5 / 6, "feet"),
  4835. weight: math.unit(325, "lb"),
  4836. name: "Back",
  4837. image: {
  4838. source: "./media/characters/asana/back.svg",
  4839. extra: 1114 / 1043,
  4840. bottom: 5 / 1120
  4841. }
  4842. },
  4843. dressedDark: {
  4844. height: math.unit(7 + 5 / 6, "feet"),
  4845. weight: math.unit(325, "lb"),
  4846. name: "Dressed (Dark)",
  4847. image: {
  4848. source: "./media/characters/asana/dressed-dark.svg",
  4849. extra: 1133 / 1060,
  4850. bottom: 15.2 / 1148.6
  4851. }
  4852. },
  4853. dressedLight: {
  4854. height: math.unit(7 + 5 / 6, "feet"),
  4855. weight: math.unit(325, "lb"),
  4856. name: "Dressed (Light)",
  4857. image: {
  4858. source: "./media/characters/asana/dressed-light.svg",
  4859. extra: 1133 / 1060,
  4860. bottom: 15.2 / 1148.6
  4861. }
  4862. },
  4863. },
  4864. [
  4865. {
  4866. name: "Standard",
  4867. height: math.unit(7 + 5 / 6, "feet"),
  4868. default: true
  4869. },
  4870. {
  4871. name: "Large",
  4872. height: math.unit(10, "meters")
  4873. },
  4874. {
  4875. name: "Macro",
  4876. height: math.unit(2500, "meters")
  4877. },
  4878. {
  4879. name: "Megamacro",
  4880. height: math.unit(5e6, "meters")
  4881. },
  4882. {
  4883. name: "Examacro",
  4884. height: math.unit(5e12, "lightyears")
  4885. },
  4886. {
  4887. name: "Max Size",
  4888. height: math.unit(1e31, "lightyears")
  4889. }
  4890. ]
  4891. ))
  4892. characterMakers.push(() => makeCharacter(
  4893. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4894. {
  4895. front: {
  4896. height: math.unit(2, "meter"),
  4897. weight: math.unit(60, "kg"),
  4898. name: "Front",
  4899. image: {
  4900. source: "./media/characters/ebony/front.svg",
  4901. bottom: 0.03,
  4902. extra: 1045 / 810 + 0.03
  4903. }
  4904. },
  4905. side: {
  4906. height: math.unit(2, "meter"),
  4907. weight: math.unit(60, "kg"),
  4908. name: "Side",
  4909. image: {
  4910. source: "./media/characters/ebony/side.svg",
  4911. bottom: 0.03,
  4912. extra: 1045 / 810 + 0.03
  4913. }
  4914. },
  4915. back: {
  4916. height: math.unit(2, "meter"),
  4917. weight: math.unit(60, "kg"),
  4918. name: "Back",
  4919. image: {
  4920. source: "./media/characters/ebony/back.svg",
  4921. bottom: 0.01,
  4922. extra: 1045 / 810 + 0.01
  4923. }
  4924. },
  4925. },
  4926. [
  4927. // TODO check why I did this lol
  4928. {
  4929. name: "Standard",
  4930. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4931. default: true
  4932. },
  4933. {
  4934. name: "Macro",
  4935. height: math.unit(200, "feet")
  4936. },
  4937. {
  4938. name: "Gigamacro",
  4939. height: math.unit(13000, "km")
  4940. }
  4941. ]
  4942. ))
  4943. characterMakers.push(() => makeCharacter(
  4944. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4945. {
  4946. front: {
  4947. height: math.unit(6, "feet"),
  4948. weight: math.unit(175, "lb"),
  4949. name: "Front",
  4950. image: {
  4951. source: "./media/characters/mountain/front.svg",
  4952. extra: 972 / 955,
  4953. bottom: 64 / 1036.6
  4954. }
  4955. },
  4956. back: {
  4957. height: math.unit(6, "feet"),
  4958. weight: math.unit(175, "lb"),
  4959. name: "Back",
  4960. image: {
  4961. source: "./media/characters/mountain/back.svg",
  4962. extra: 970 / 950,
  4963. bottom: 28.25 / 999
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "Large",
  4970. height: math.unit(20, "meters")
  4971. },
  4972. {
  4973. name: "Macro",
  4974. height: math.unit(300, "meters")
  4975. },
  4976. {
  4977. name: "Gigamacro",
  4978. height: math.unit(10000, "km"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "Examacro",
  4983. height: math.unit(10e9, "lightyears")
  4984. }
  4985. ]
  4986. ))
  4987. characterMakers.push(() => makeCharacter(
  4988. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4989. {
  4990. front: {
  4991. height: math.unit(8, "feet"),
  4992. weight: math.unit(500, "lb"),
  4993. name: "Front",
  4994. image: {
  4995. source: "./media/characters/rick/front.svg"
  4996. }
  4997. }
  4998. },
  4999. [
  5000. {
  5001. name: "Normal",
  5002. height: math.unit(8, "feet"),
  5003. default: true
  5004. },
  5005. {
  5006. name: "Macro",
  5007. height: math.unit(5, "km")
  5008. }
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5013. {
  5014. front: {
  5015. height: math.unit(8, "feet"),
  5016. weight: math.unit(120, "lb"),
  5017. name: "Front",
  5018. image: {
  5019. source: "./media/characters/ona/front.svg"
  5020. }
  5021. },
  5022. frontAlt: {
  5023. height: math.unit(8, "feet"),
  5024. weight: math.unit(120, "lb"),
  5025. name: "Front (Alt)",
  5026. image: {
  5027. source: "./media/characters/ona/front-alt.svg"
  5028. }
  5029. },
  5030. back: {
  5031. height: math.unit(8, "feet"),
  5032. weight: math.unit(120, "lb"),
  5033. name: "Back",
  5034. image: {
  5035. source: "./media/characters/ona/back.svg"
  5036. }
  5037. },
  5038. foot: {
  5039. height: math.unit(1.1, "feet"),
  5040. name: "Foot",
  5041. image: {
  5042. source: "./media/characters/ona/foot.svg"
  5043. }
  5044. }
  5045. },
  5046. [
  5047. {
  5048. name: "Megamacro",
  5049. height: math.unit(70, "km"),
  5050. default: true
  5051. },
  5052. {
  5053. name: "Gigamacro",
  5054. height: math.unit(681818, "miles")
  5055. },
  5056. {
  5057. name: "Examacro",
  5058. height: math.unit(3800000, "lightyears")
  5059. },
  5060. ]
  5061. ))
  5062. characterMakers.push(() => makeCharacter(
  5063. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5064. {
  5065. front: {
  5066. height: math.unit(12, "feet"),
  5067. weight: math.unit(3000, "lb"),
  5068. name: "Front",
  5069. image: {
  5070. source: "./media/characters/mech/front.svg",
  5071. extra: 2900 / 2770,
  5072. bottom: 110 / 3010
  5073. }
  5074. },
  5075. back: {
  5076. height: math.unit(12, "feet"),
  5077. weight: math.unit(3000, "lb"),
  5078. name: "Back",
  5079. image: {
  5080. source: "./media/characters/mech/back.svg",
  5081. extra: 3011 / 2890,
  5082. bottom: 94 / 3105
  5083. }
  5084. },
  5085. maw: {
  5086. height: math.unit(3.07, "feet"),
  5087. name: "Maw",
  5088. image: {
  5089. source: "./media/characters/mech/maw.svg"
  5090. }
  5091. },
  5092. head: {
  5093. height: math.unit(3.07, "feet"),
  5094. name: "Head",
  5095. image: {
  5096. source: "./media/characters/mech/head.svg"
  5097. }
  5098. },
  5099. dick: {
  5100. height: math.unit(1.43, "feet"),
  5101. name: "Dick",
  5102. image: {
  5103. source: "./media/characters/mech/dick.svg"
  5104. }
  5105. },
  5106. },
  5107. [
  5108. {
  5109. name: "Normal",
  5110. height: math.unit(12, "feet")
  5111. },
  5112. {
  5113. name: "Macro",
  5114. height: math.unit(300, "feet"),
  5115. default: true
  5116. },
  5117. {
  5118. name: "Macro+",
  5119. height: math.unit(1500, "feet")
  5120. },
  5121. ]
  5122. ))
  5123. characterMakers.push(() => makeCharacter(
  5124. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5125. {
  5126. front: {
  5127. height: math.unit(1.3, "meter"),
  5128. weight: math.unit(30, "kg"),
  5129. name: "Front",
  5130. image: {
  5131. source: "./media/characters/gregory/front.svg",
  5132. }
  5133. }
  5134. },
  5135. [
  5136. {
  5137. name: "Normal",
  5138. height: math.unit(1.3, "meter"),
  5139. default: true
  5140. },
  5141. {
  5142. name: "Macro",
  5143. height: math.unit(20, "meter")
  5144. }
  5145. ]
  5146. ))
  5147. characterMakers.push(() => makeCharacter(
  5148. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5149. {
  5150. front: {
  5151. height: math.unit(2.8, "meter"),
  5152. weight: math.unit(200, "kg"),
  5153. name: "Front",
  5154. image: {
  5155. source: "./media/characters/elory/front.svg",
  5156. }
  5157. }
  5158. },
  5159. [
  5160. {
  5161. name: "Normal",
  5162. height: math.unit(2.8, "meter"),
  5163. default: true
  5164. },
  5165. {
  5166. name: "Macro",
  5167. height: math.unit(38, "meter")
  5168. }
  5169. ]
  5170. ))
  5171. characterMakers.push(() => makeCharacter(
  5172. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5173. {
  5174. front: {
  5175. height: math.unit(470, "feet"),
  5176. weight: math.unit(924, "tons"),
  5177. name: "Front",
  5178. image: {
  5179. source: "./media/characters/angelpatamon/front.svg",
  5180. }
  5181. }
  5182. },
  5183. [
  5184. {
  5185. name: "Normal",
  5186. height: math.unit(470, "feet"),
  5187. default: true
  5188. },
  5189. {
  5190. name: "Deity Size I",
  5191. height: math.unit(28651.2, "km")
  5192. },
  5193. {
  5194. name: "Deity Size II",
  5195. height: math.unit(171907.2, "km")
  5196. }
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5201. {
  5202. side: {
  5203. height: math.unit(7.2, "meter"),
  5204. weight: math.unit(8.2, "tons"),
  5205. name: "Side",
  5206. image: {
  5207. source: "./media/characters/cryae/side.svg",
  5208. extra: 3500 / 1500
  5209. }
  5210. }
  5211. },
  5212. [
  5213. {
  5214. name: "Normal",
  5215. height: math.unit(7.2, "meter"),
  5216. default: true
  5217. }
  5218. ]
  5219. ))
  5220. characterMakers.push(() => makeCharacter(
  5221. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5222. {
  5223. front: {
  5224. height: math.unit(6, "feet"),
  5225. weight: math.unit(175, "lb"),
  5226. name: "Front",
  5227. image: {
  5228. source: "./media/characters/xera/front.svg",
  5229. extra: 2377 / 1972,
  5230. bottom: 75.5 / 2452
  5231. }
  5232. },
  5233. side: {
  5234. height: math.unit(6, "feet"),
  5235. weight: math.unit(175, "lb"),
  5236. name: "Side",
  5237. image: {
  5238. source: "./media/characters/xera/side.svg",
  5239. extra: 2345 / 2019,
  5240. bottom: 39.7 / 2384
  5241. }
  5242. },
  5243. back: {
  5244. height: math.unit(6, "feet"),
  5245. weight: math.unit(175, "lb"),
  5246. name: "Back",
  5247. image: {
  5248. source: "./media/characters/xera/back.svg",
  5249. extra: 2095 / 1984,
  5250. bottom: 67 / 2166
  5251. }
  5252. },
  5253. },
  5254. [
  5255. {
  5256. name: "Small",
  5257. height: math.unit(10, "feet")
  5258. },
  5259. {
  5260. name: "Macro",
  5261. height: math.unit(500, "meters"),
  5262. default: true
  5263. },
  5264. {
  5265. name: "Macro+",
  5266. height: math.unit(10, "km")
  5267. },
  5268. {
  5269. name: "Gigamacro",
  5270. height: math.unit(25000, "km")
  5271. },
  5272. {
  5273. name: "Teramacro",
  5274. height: math.unit(3e6, "km")
  5275. }
  5276. ]
  5277. ))
  5278. characterMakers.push(() => makeCharacter(
  5279. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5280. {
  5281. front: {
  5282. height: math.unit(6, "feet"),
  5283. weight: math.unit(175, "lb"),
  5284. name: "Front",
  5285. image: {
  5286. source: "./media/characters/nebula/front.svg",
  5287. extra: 2566 / 2362,
  5288. bottom: 81 / 2644
  5289. }
  5290. }
  5291. },
  5292. [
  5293. {
  5294. name: "Small",
  5295. height: math.unit(4.5, "meters")
  5296. },
  5297. {
  5298. name: "Macro",
  5299. height: math.unit(1500, "meters"),
  5300. default: true
  5301. },
  5302. {
  5303. name: "Megamacro",
  5304. height: math.unit(150, "km")
  5305. },
  5306. {
  5307. name: "Gigamacro",
  5308. height: math.unit(27000, "km")
  5309. }
  5310. ]
  5311. ))
  5312. characterMakers.push(() => makeCharacter(
  5313. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5314. {
  5315. front: {
  5316. height: math.unit(6, "feet"),
  5317. weight: math.unit(225, "lb"),
  5318. name: "Front",
  5319. image: {
  5320. source: "./media/characters/abysgar/front.svg",
  5321. extra: 1739/1614,
  5322. bottom: 71/1810
  5323. }
  5324. },
  5325. frontNsfw: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(225, "lb"),
  5328. name: "Front (NSFW)",
  5329. image: {
  5330. source: "./media/characters/abysgar/front-nsfw.svg",
  5331. extra: 1739/1614,
  5332. bottom: 71/1810
  5333. }
  5334. },
  5335. back: {
  5336. height: math.unit(4.6, "feet"),
  5337. weight: math.unit(225, "lb"),
  5338. name: "Back",
  5339. image: {
  5340. source: "./media/characters/abysgar/back.svg",
  5341. extra: 1384/1327,
  5342. bottom: 0/1384
  5343. }
  5344. },
  5345. head: {
  5346. height: math.unit(1.25, "feet"),
  5347. name: "Head",
  5348. image: {
  5349. source: "./media/characters/abysgar/head.svg",
  5350. extra: 669/569,
  5351. bottom: 0/669
  5352. }
  5353. },
  5354. },
  5355. [
  5356. {
  5357. name: "Small",
  5358. height: math.unit(4.5, "meters")
  5359. },
  5360. {
  5361. name: "Macro",
  5362. height: math.unit(1250, "meters"),
  5363. default: true
  5364. },
  5365. {
  5366. name: "Megamacro",
  5367. height: math.unit(125, "km")
  5368. },
  5369. {
  5370. name: "Gigamacro",
  5371. height: math.unit(26000, "km")
  5372. }
  5373. ]
  5374. ))
  5375. characterMakers.push(() => makeCharacter(
  5376. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5377. {
  5378. front: {
  5379. height: math.unit(6, "feet"),
  5380. weight: math.unit(180, "lb"),
  5381. name: "Front",
  5382. image: {
  5383. source: "./media/characters/yakuz/front.svg"
  5384. }
  5385. }
  5386. },
  5387. [
  5388. {
  5389. name: "Small",
  5390. height: math.unit(5, "meters")
  5391. },
  5392. {
  5393. name: "Macro",
  5394. height: math.unit(1500, "meters"),
  5395. default: true
  5396. },
  5397. {
  5398. name: "Megamacro",
  5399. height: math.unit(200, "km")
  5400. },
  5401. {
  5402. name: "Gigamacro",
  5403. height: math.unit(100000, "km")
  5404. }
  5405. ]
  5406. ))
  5407. characterMakers.push(() => makeCharacter(
  5408. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5409. {
  5410. front: {
  5411. height: math.unit(6, "feet"),
  5412. weight: math.unit(175, "lb"),
  5413. name: "Front",
  5414. image: {
  5415. source: "./media/characters/mirova/front.svg",
  5416. extra: 3334 / 3071,
  5417. bottom: 42 / 3375.6
  5418. }
  5419. }
  5420. },
  5421. [
  5422. {
  5423. name: "Small",
  5424. height: math.unit(5, "meters")
  5425. },
  5426. {
  5427. name: "Macro",
  5428. height: math.unit(900, "meters"),
  5429. default: true
  5430. },
  5431. {
  5432. name: "Megamacro",
  5433. height: math.unit(135, "km")
  5434. },
  5435. {
  5436. name: "Gigamacro",
  5437. height: math.unit(20000, "km")
  5438. }
  5439. ]
  5440. ))
  5441. characterMakers.push(() => makeCharacter(
  5442. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5443. {
  5444. side: {
  5445. height: math.unit(28.35, "feet"),
  5446. weight: math.unit(99.75, "tons"),
  5447. name: "Side",
  5448. image: {
  5449. source: "./media/characters/asana-mech/side.svg",
  5450. extra: 923 / 699,
  5451. bottom: 50 / 975
  5452. }
  5453. },
  5454. chaingun: {
  5455. height: math.unit(7, "feet"),
  5456. weight: math.unit(2400, "lb"),
  5457. name: "Chaingun",
  5458. image: {
  5459. source: "./media/characters/asana-mech/chaingun.svg"
  5460. }
  5461. },
  5462. laser: {
  5463. height: math.unit(7.12, "feet"),
  5464. weight: math.unit(2000, "lb"),
  5465. name: "Laser",
  5466. image: {
  5467. source: "./media/characters/asana-mech/laser.svg"
  5468. }
  5469. },
  5470. },
  5471. [
  5472. {
  5473. name: "Normal",
  5474. height: math.unit(28.35, "feet"),
  5475. default: true
  5476. },
  5477. {
  5478. name: "Macro",
  5479. height: math.unit(2500, "feet")
  5480. },
  5481. {
  5482. name: "Megamacro",
  5483. height: math.unit(25, "miles")
  5484. },
  5485. {
  5486. name: "Examacro",
  5487. height: math.unit(6e8, "lightyears")
  5488. },
  5489. ]
  5490. ))
  5491. characterMakers.push(() => makeCharacter(
  5492. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5493. {
  5494. front: {
  5495. height: math.unit(5, "meters"),
  5496. weight: math.unit(1000, "kg"),
  5497. name: "Front",
  5498. image: {
  5499. source: "./media/characters/asche/front.svg",
  5500. extra: 1258 / 1190,
  5501. bottom: 47 / 1305
  5502. }
  5503. },
  5504. frontUnderwear: {
  5505. height: math.unit(5, "meters"),
  5506. weight: math.unit(1000, "kg"),
  5507. name: "Front (Underwear)",
  5508. image: {
  5509. source: "./media/characters/asche/front-underwear.svg",
  5510. extra: 1258 / 1190,
  5511. bottom: 47 / 1305
  5512. }
  5513. },
  5514. frontDressed: {
  5515. height: math.unit(5, "meters"),
  5516. weight: math.unit(1000, "kg"),
  5517. name: "Front (Dressed)",
  5518. image: {
  5519. source: "./media/characters/asche/front-dressed.svg",
  5520. extra: 1258 / 1190,
  5521. bottom: 47 / 1305
  5522. }
  5523. },
  5524. frontArmor: {
  5525. height: math.unit(5, "meters"),
  5526. weight: math.unit(1000, "kg"),
  5527. name: "Front (Armored)",
  5528. image: {
  5529. source: "./media/characters/asche/front-armored.svg",
  5530. extra: 1374 / 1308,
  5531. bottom: 23 / 1397
  5532. }
  5533. },
  5534. mp724: {
  5535. height: math.unit(0.96, "meters"),
  5536. weight: math.unit(38, "kg"),
  5537. name: "H&K MP724",
  5538. image: {
  5539. source: "./media/characters/asche/h&k-mp724.svg"
  5540. }
  5541. },
  5542. side: {
  5543. height: math.unit(5, "meters"),
  5544. weight: math.unit(1000, "kg"),
  5545. name: "Side",
  5546. image: {
  5547. source: "./media/characters/asche/side.svg",
  5548. extra: 1717 / 1609,
  5549. bottom: 0.005
  5550. }
  5551. },
  5552. back: {
  5553. height: math.unit(5, "meters"),
  5554. weight: math.unit(1000, "kg"),
  5555. name: "Back",
  5556. image: {
  5557. source: "./media/characters/asche/back.svg",
  5558. extra: 1570 / 1501
  5559. }
  5560. },
  5561. },
  5562. [
  5563. {
  5564. name: "DEFCON 5",
  5565. height: math.unit(5, "meters")
  5566. },
  5567. {
  5568. name: "DEFCON 4",
  5569. height: math.unit(500, "meters"),
  5570. default: true
  5571. },
  5572. {
  5573. name: "DEFCON 3",
  5574. height: math.unit(5, "km")
  5575. },
  5576. {
  5577. name: "DEFCON 2",
  5578. height: math.unit(500, "km")
  5579. },
  5580. {
  5581. name: "DEFCON 1",
  5582. height: math.unit(500000, "km")
  5583. },
  5584. {
  5585. name: "DEFCON 0",
  5586. height: math.unit(3, "gigaparsecs")
  5587. },
  5588. ]
  5589. ))
  5590. characterMakers.push(() => makeCharacter(
  5591. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5592. {
  5593. front: {
  5594. height: math.unit(7, "feet"),
  5595. weight: math.unit(92.7, "kg"),
  5596. name: "Front",
  5597. image: {
  5598. source: "./media/characters/gale/front.svg",
  5599. extra: 977/919,
  5600. bottom: 105/1082
  5601. }
  5602. },
  5603. side: {
  5604. height: math.unit(6.7, "feet"),
  5605. weight: math.unit(92.7, "kg"),
  5606. name: "Side",
  5607. image: {
  5608. source: "./media/characters/gale/side.svg",
  5609. extra: 978/922,
  5610. bottom: 140/1118
  5611. }
  5612. },
  5613. back: {
  5614. height: math.unit(7, "feet"),
  5615. weight: math.unit(92.7, "kg"),
  5616. name: "Back",
  5617. image: {
  5618. source: "./media/characters/gale/back.svg",
  5619. extra: 966/920,
  5620. bottom: 61/1027
  5621. }
  5622. },
  5623. maw: {
  5624. height: math.unit(2.23, "feet"),
  5625. name: "Maw",
  5626. image: {
  5627. source: "./media/characters/gale/maw.svg"
  5628. }
  5629. },
  5630. foot: {
  5631. height: math.unit(2.1, "feet"),
  5632. name: "Foot",
  5633. image: {
  5634. source: "./media/characters/gale/foot.svg"
  5635. }
  5636. },
  5637. },
  5638. [
  5639. {
  5640. name: "Normal",
  5641. height: math.unit(7, "feet")
  5642. },
  5643. {
  5644. name: "Macro",
  5645. height: math.unit(150, "feet"),
  5646. default: true
  5647. },
  5648. {
  5649. name: "Macro+",
  5650. height: math.unit(300, "feet")
  5651. },
  5652. ]
  5653. ))
  5654. characterMakers.push(() => makeCharacter(
  5655. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5656. {
  5657. front: {
  5658. height: math.unit(5 + 10/12, "feet"),
  5659. weight: math.unit(67, "kg"),
  5660. name: "Front",
  5661. image: {
  5662. source: "./media/characters/draylen/front.svg",
  5663. extra: 832/777,
  5664. bottom: 85/917
  5665. }
  5666. }
  5667. },
  5668. [
  5669. {
  5670. name: "Normal",
  5671. height: math.unit(5 + 10/12, "feet")
  5672. },
  5673. {
  5674. name: "Macro",
  5675. height: math.unit(150, "feet"),
  5676. default: true
  5677. }
  5678. ]
  5679. ))
  5680. characterMakers.push(() => makeCharacter(
  5681. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5682. {
  5683. front: {
  5684. height: math.unit(7 + 9 / 12, "feet"),
  5685. weight: math.unit(379, "lbs"),
  5686. name: "Front",
  5687. image: {
  5688. source: "./media/characters/chez/front.svg"
  5689. }
  5690. },
  5691. side: {
  5692. height: math.unit(7 + 9 / 12, "feet"),
  5693. weight: math.unit(379, "lbs"),
  5694. name: "Side",
  5695. image: {
  5696. source: "./media/characters/chez/side.svg"
  5697. }
  5698. }
  5699. },
  5700. [
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(7 + 9 / 12, "feet"),
  5704. default: true
  5705. },
  5706. {
  5707. name: "God King",
  5708. height: math.unit(9750000, "meters")
  5709. }
  5710. ]
  5711. ))
  5712. characterMakers.push(() => makeCharacter(
  5713. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5714. {
  5715. front: {
  5716. height: math.unit(6, "feet"),
  5717. weight: math.unit(275, "lbs"),
  5718. name: "Front",
  5719. image: {
  5720. source: "./media/characters/kaylum/front.svg",
  5721. bottom: 0.01,
  5722. extra: 1166 / 1031
  5723. }
  5724. },
  5725. frontWingless: {
  5726. height: math.unit(6, "feet"),
  5727. weight: math.unit(275, "lbs"),
  5728. name: "Front (Wingless)",
  5729. image: {
  5730. source: "./media/characters/kaylum/front-wingless.svg",
  5731. bottom: 0.01,
  5732. extra: 1117 / 1031
  5733. }
  5734. }
  5735. },
  5736. [
  5737. {
  5738. name: "Normal",
  5739. height: math.unit(3.05, "meters")
  5740. },
  5741. {
  5742. name: "Master",
  5743. height: math.unit(5.5, "meters")
  5744. },
  5745. {
  5746. name: "Rampage",
  5747. height: math.unit(19, "meters")
  5748. },
  5749. {
  5750. name: "Macro Lite",
  5751. height: math.unit(37, "meters")
  5752. },
  5753. {
  5754. name: "Hyper Predator",
  5755. height: math.unit(61, "meters")
  5756. },
  5757. {
  5758. name: "Macro",
  5759. height: math.unit(138, "meters"),
  5760. default: true
  5761. }
  5762. ]
  5763. ))
  5764. characterMakers.push(() => makeCharacter(
  5765. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5766. {
  5767. front: {
  5768. height: math.unit(5 + 5 / 12, "feet"),
  5769. weight: math.unit(120, "lbs"),
  5770. name: "Front",
  5771. image: {
  5772. source: "./media/characters/geta/front.svg",
  5773. extra: 1003/933,
  5774. bottom: 21/1024
  5775. }
  5776. },
  5777. paw: {
  5778. height: math.unit(0.35, "feet"),
  5779. name: "Paw",
  5780. image: {
  5781. source: "./media/characters/geta/paw.svg"
  5782. }
  5783. },
  5784. },
  5785. [
  5786. {
  5787. name: "Micro",
  5788. height: math.unit(3, "inches"),
  5789. default: true
  5790. },
  5791. {
  5792. name: "Normal",
  5793. height: math.unit(5 + 5 / 12, "feet")
  5794. }
  5795. ]
  5796. ))
  5797. characterMakers.push(() => makeCharacter(
  5798. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5799. {
  5800. front: {
  5801. height: math.unit(6, "feet"),
  5802. weight: math.unit(300, "lbs"),
  5803. name: "Front",
  5804. image: {
  5805. source: "./media/characters/tyrnn/front.svg"
  5806. }
  5807. }
  5808. },
  5809. [
  5810. {
  5811. name: "Main Height",
  5812. height: math.unit(355, "feet"),
  5813. default: true
  5814. },
  5815. {
  5816. name: "Fave. Height",
  5817. height: math.unit(2400, "feet")
  5818. }
  5819. ]
  5820. ))
  5821. characterMakers.push(() => makeCharacter(
  5822. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5823. {
  5824. front: {
  5825. height: math.unit(6, "feet"),
  5826. weight: math.unit(300, "lbs"),
  5827. name: "Front",
  5828. image: {
  5829. source: "./media/characters/appledectomy/front.svg"
  5830. }
  5831. }
  5832. },
  5833. [
  5834. {
  5835. name: "Macro",
  5836. height: math.unit(2500, "feet")
  5837. },
  5838. {
  5839. name: "Megamacro",
  5840. height: math.unit(50, "miles"),
  5841. default: true
  5842. },
  5843. {
  5844. name: "Gigamacro",
  5845. height: math.unit(5000, "miles")
  5846. },
  5847. {
  5848. name: "Teramacro",
  5849. height: math.unit(250000, "miles")
  5850. },
  5851. ]
  5852. ))
  5853. characterMakers.push(() => makeCharacter(
  5854. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5855. {
  5856. front: {
  5857. height: math.unit(6, "feet"),
  5858. weight: math.unit(200, "lbs"),
  5859. name: "Front",
  5860. image: {
  5861. source: "./media/characters/vulpes/front.svg",
  5862. extra: 573 / 543,
  5863. bottom: 0.033
  5864. }
  5865. },
  5866. side: {
  5867. height: math.unit(6, "feet"),
  5868. weight: math.unit(200, "lbs"),
  5869. name: "Side",
  5870. image: {
  5871. source: "./media/characters/vulpes/side.svg",
  5872. extra: 577 / 549,
  5873. bottom: 11 / 588
  5874. }
  5875. },
  5876. back: {
  5877. height: math.unit(6, "feet"),
  5878. weight: math.unit(200, "lbs"),
  5879. name: "Back",
  5880. image: {
  5881. source: "./media/characters/vulpes/back.svg",
  5882. extra: 573 / 549,
  5883. bottom: 20 / 593
  5884. }
  5885. },
  5886. feet: {
  5887. height: math.unit(1.276, "feet"),
  5888. name: "Feet",
  5889. image: {
  5890. source: "./media/characters/vulpes/feet.svg"
  5891. }
  5892. },
  5893. maw: {
  5894. height: math.unit(1.18, "feet"),
  5895. name: "Maw",
  5896. image: {
  5897. source: "./media/characters/vulpes/maw.svg"
  5898. }
  5899. },
  5900. },
  5901. [
  5902. {
  5903. name: "Micro",
  5904. height: math.unit(2, "inches")
  5905. },
  5906. {
  5907. name: "Normal",
  5908. height: math.unit(6.3, "feet")
  5909. },
  5910. {
  5911. name: "Macro",
  5912. height: math.unit(850, "feet")
  5913. },
  5914. {
  5915. name: "Megamacro",
  5916. height: math.unit(7500, "feet"),
  5917. default: true
  5918. },
  5919. {
  5920. name: "Gigamacro",
  5921. height: math.unit(570000, "miles")
  5922. }
  5923. ]
  5924. ))
  5925. characterMakers.push(() => makeCharacter(
  5926. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5927. {
  5928. front: {
  5929. height: math.unit(6, "feet"),
  5930. weight: math.unit(210, "lbs"),
  5931. name: "Front",
  5932. image: {
  5933. source: "./media/characters/rain-fallen/front.svg"
  5934. }
  5935. },
  5936. side: {
  5937. height: math.unit(6, "feet"),
  5938. weight: math.unit(210, "lbs"),
  5939. name: "Side",
  5940. image: {
  5941. source: "./media/characters/rain-fallen/side.svg"
  5942. }
  5943. },
  5944. back: {
  5945. height: math.unit(6, "feet"),
  5946. weight: math.unit(210, "lbs"),
  5947. name: "Back",
  5948. image: {
  5949. source: "./media/characters/rain-fallen/back.svg"
  5950. }
  5951. },
  5952. feral: {
  5953. height: math.unit(9, "feet"),
  5954. weight: math.unit(700, "lbs"),
  5955. name: "Feral",
  5956. image: {
  5957. source: "./media/characters/rain-fallen/feral.svg"
  5958. }
  5959. },
  5960. },
  5961. [
  5962. {
  5963. name: "Meddling with Mortals",
  5964. height: math.unit(8 + 8/12, "feet")
  5965. },
  5966. {
  5967. name: "Normal",
  5968. height: math.unit(5, "meter")
  5969. },
  5970. {
  5971. name: "Macro",
  5972. height: math.unit(150, "meter"),
  5973. default: true
  5974. },
  5975. {
  5976. name: "Megamacro",
  5977. height: math.unit(278e6, "meter")
  5978. },
  5979. {
  5980. name: "Gigamacro",
  5981. height: math.unit(2e9, "meter")
  5982. },
  5983. {
  5984. name: "Teramacro",
  5985. height: math.unit(8e12, "meter")
  5986. },
  5987. {
  5988. name: "Devourer",
  5989. height: math.unit(14, "zettameters")
  5990. },
  5991. {
  5992. name: "Scarlet King",
  5993. height: math.unit(18, "yottameters")
  5994. },
  5995. {
  5996. name: "Void",
  5997. height: math.unit(1e88, "yottameters")
  5998. }
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6003. {
  6004. standing: {
  6005. height: math.unit(6, "feet"),
  6006. weight: math.unit(180, "lbs"),
  6007. name: "Standing",
  6008. image: {
  6009. source: "./media/characters/zaakira/standing.svg",
  6010. extra: 1599/1504,
  6011. bottom: 39/1638
  6012. }
  6013. },
  6014. laying: {
  6015. height: math.unit(3.3, "feet"),
  6016. weight: math.unit(180, "lbs"),
  6017. name: "Laying",
  6018. image: {
  6019. source: "./media/characters/zaakira/laying.svg"
  6020. }
  6021. },
  6022. },
  6023. [
  6024. {
  6025. name: "Normal",
  6026. height: math.unit(12, "feet")
  6027. },
  6028. {
  6029. name: "Macro",
  6030. height: math.unit(279, "feet"),
  6031. default: true
  6032. }
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6037. {
  6038. femSfw: {
  6039. height: math.unit(8, "feet"),
  6040. weight: math.unit(350, "lb"),
  6041. name: "Fem",
  6042. image: {
  6043. source: "./media/characters/sigvald/fem-sfw.svg",
  6044. extra: 182 / 164,
  6045. bottom: 8.7 / 190.5
  6046. }
  6047. },
  6048. femNsfw: {
  6049. height: math.unit(8, "feet"),
  6050. weight: math.unit(350, "lb"),
  6051. name: "Fem (NSFW)",
  6052. image: {
  6053. source: "./media/characters/sigvald/fem-nsfw.svg",
  6054. extra: 182 / 164,
  6055. bottom: 8.7 / 190.5
  6056. }
  6057. },
  6058. maleNsfw: {
  6059. height: math.unit(8, "feet"),
  6060. weight: math.unit(350, "lb"),
  6061. name: "Male (NSFW)",
  6062. image: {
  6063. source: "./media/characters/sigvald/male-nsfw.svg",
  6064. extra: 182 / 164,
  6065. bottom: 8.7 / 190.5
  6066. }
  6067. },
  6068. hermNsfw: {
  6069. height: math.unit(8, "feet"),
  6070. weight: math.unit(350, "lb"),
  6071. name: "Herm (NSFW)",
  6072. image: {
  6073. source: "./media/characters/sigvald/herm-nsfw.svg",
  6074. extra: 182 / 164,
  6075. bottom: 8.7 / 190.5
  6076. }
  6077. },
  6078. dick: {
  6079. height: math.unit(2.36, "feet"),
  6080. name: "Dick",
  6081. image: {
  6082. source: "./media/characters/sigvald/dick.svg"
  6083. }
  6084. },
  6085. eye: {
  6086. height: math.unit(0.31, "feet"),
  6087. name: "Eye",
  6088. image: {
  6089. source: "./media/characters/sigvald/eye.svg"
  6090. }
  6091. },
  6092. mouth: {
  6093. height: math.unit(0.92, "feet"),
  6094. name: "Mouth",
  6095. image: {
  6096. source: "./media/characters/sigvald/mouth.svg"
  6097. }
  6098. },
  6099. paws: {
  6100. height: math.unit(2.2, "feet"),
  6101. name: "Paws",
  6102. image: {
  6103. source: "./media/characters/sigvald/paws.svg"
  6104. }
  6105. }
  6106. },
  6107. [
  6108. {
  6109. name: "Normal",
  6110. height: math.unit(8, "feet")
  6111. },
  6112. {
  6113. name: "Large",
  6114. height: math.unit(12, "feet")
  6115. },
  6116. {
  6117. name: "Larger",
  6118. height: math.unit(20, "feet")
  6119. },
  6120. {
  6121. name: "Macro",
  6122. height: math.unit(150, "feet")
  6123. },
  6124. {
  6125. name: "Macro+",
  6126. height: math.unit(200, "feet"),
  6127. default: true
  6128. },
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6133. {
  6134. anthro_front: {
  6135. height: math.unit(5 + 11/12, "feet"),
  6136. weight: math.unit(250, "lb"),
  6137. name: "Front",
  6138. image: {
  6139. source: "./media/characters/scott/anthro-front.svg",
  6140. extra: 851/781,
  6141. bottom: 54/905
  6142. },
  6143. form: "anthro",
  6144. default: true
  6145. },
  6146. anthro_side: {
  6147. height: math.unit(5.1, "feet"),
  6148. weight: math.unit(250, "lb"),
  6149. name: "Side",
  6150. image: {
  6151. source: "./media/characters/scott/anthro-side.svg"
  6152. },
  6153. form: "anthro",
  6154. },
  6155. anthro_dick: {
  6156. height: math.unit(1.33, "feet"),
  6157. name: "Dick",
  6158. image: {
  6159. source: "./media/characters/scott/anthro-dick.svg"
  6160. },
  6161. form: "anthro",
  6162. },
  6163. side: {
  6164. height: math.unit(12, "feet"),
  6165. weight: math.unit(2000, "kg"),
  6166. name: "Side",
  6167. image: {
  6168. source: "./media/characters/scott/side.svg",
  6169. extra: 754 / 724,
  6170. bottom: 0.069
  6171. },
  6172. form: "taur",
  6173. default: true
  6174. },
  6175. upright: {
  6176. height: math.unit(12, "feet"),
  6177. weight: math.unit(2000, "kg"),
  6178. name: "Upright",
  6179. image: {
  6180. source: "./media/characters/scott/upright.svg",
  6181. extra: 3881 / 3722,
  6182. bottom: 0.05
  6183. },
  6184. form: "taur",
  6185. },
  6186. },
  6187. [
  6188. {
  6189. name: "Normal",
  6190. height: math.unit(5 + 11/12, "feet"),
  6191. default: true,
  6192. form: "anthro"
  6193. },
  6194. {
  6195. name: "Normal",
  6196. height: math.unit(12, "feet"),
  6197. default: true,
  6198. form: "taur"
  6199. },
  6200. ],
  6201. {
  6202. "anthro": {
  6203. name: "Anthro",
  6204. default: true
  6205. },
  6206. "taur": {
  6207. name: "Taur",
  6208. },
  6209. }
  6210. ))
  6211. characterMakers.push(() => makeCharacter(
  6212. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6213. {
  6214. side: {
  6215. height: math.unit(8, "meters"),
  6216. weight: math.unit(84755, "lbs"),
  6217. name: "Side",
  6218. image: {
  6219. source: "./media/characters/tobias/side.svg",
  6220. extra: 1474 / 1096,
  6221. bottom: 38.9 / 1513.1235
  6222. }
  6223. },
  6224. maw: {
  6225. height: math.unit(2.3, "meters"),
  6226. name: "Maw",
  6227. image: {
  6228. source: "./media/characters/tobias/maw.svg"
  6229. }
  6230. },
  6231. burp: {
  6232. height: math.unit(2.85, "meters"),
  6233. name: "Burp",
  6234. image: {
  6235. source: "./media/characters/tobias/burp.svg"
  6236. }
  6237. },
  6238. },
  6239. [
  6240. {
  6241. name: "Normal",
  6242. height: math.unit(8, "meters"),
  6243. default: true
  6244. },
  6245. ]
  6246. ))
  6247. characterMakers.push(() => makeCharacter(
  6248. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6249. {
  6250. front: {
  6251. height: math.unit(5.5, "feet"),
  6252. weight: math.unit(400, "lbs"),
  6253. name: "Front",
  6254. image: {
  6255. source: "./media/characters/kieran/front.svg",
  6256. extra: 2694 / 2364,
  6257. bottom: 217 / 2908
  6258. }
  6259. },
  6260. side: {
  6261. height: math.unit(5.5, "feet"),
  6262. weight: math.unit(400, "lbs"),
  6263. name: "Side",
  6264. image: {
  6265. source: "./media/characters/kieran/side.svg",
  6266. extra: 875 / 777,
  6267. bottom: 84.6 / 959
  6268. }
  6269. },
  6270. },
  6271. [
  6272. {
  6273. name: "Normal",
  6274. height: math.unit(5.5, "feet"),
  6275. default: true
  6276. },
  6277. ]
  6278. ))
  6279. characterMakers.push(() => makeCharacter(
  6280. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6281. {
  6282. side: {
  6283. height: math.unit(2, "meters"),
  6284. weight: math.unit(70, "kg"),
  6285. name: "Side",
  6286. image: {
  6287. source: "./media/characters/sanya/side.svg",
  6288. bottom: 0.02,
  6289. extra: 1.02
  6290. }
  6291. },
  6292. },
  6293. [
  6294. {
  6295. name: "Small",
  6296. height: math.unit(2, "meters")
  6297. },
  6298. {
  6299. name: "Normal",
  6300. height: math.unit(3, "meters")
  6301. },
  6302. {
  6303. name: "Macro",
  6304. height: math.unit(16, "meters"),
  6305. default: true
  6306. },
  6307. ]
  6308. ))
  6309. characterMakers.push(() => makeCharacter(
  6310. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6311. {
  6312. front: {
  6313. height: math.unit(2, "meters"),
  6314. weight: math.unit(120, "kg"),
  6315. name: "Front",
  6316. image: {
  6317. source: "./media/characters/miranda/front.svg",
  6318. extra: 195 / 185,
  6319. bottom: 10.9 / 206.5
  6320. }
  6321. },
  6322. back: {
  6323. height: math.unit(2, "meters"),
  6324. weight: math.unit(120, "kg"),
  6325. name: "Back",
  6326. image: {
  6327. source: "./media/characters/miranda/back.svg",
  6328. extra: 201 / 193,
  6329. bottom: 2.3 / 203.7
  6330. }
  6331. },
  6332. },
  6333. [
  6334. {
  6335. name: "Normal",
  6336. height: math.unit(10, "feet"),
  6337. default: true
  6338. }
  6339. ]
  6340. ))
  6341. characterMakers.push(() => makeCharacter(
  6342. { name: "James", species: ["deer"], tags: ["anthro"] },
  6343. {
  6344. side: {
  6345. height: math.unit(2, "meters"),
  6346. weight: math.unit(100, "kg"),
  6347. name: "Front",
  6348. image: {
  6349. source: "./media/characters/james/front.svg",
  6350. extra: 10 / 8.5
  6351. }
  6352. },
  6353. },
  6354. [
  6355. {
  6356. name: "Normal",
  6357. height: math.unit(8.5, "feet"),
  6358. default: true
  6359. }
  6360. ]
  6361. ))
  6362. characterMakers.push(() => makeCharacter(
  6363. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6364. {
  6365. side: {
  6366. height: math.unit(9.5, "feet"),
  6367. weight: math.unit(2500, "lbs"),
  6368. name: "Side",
  6369. image: {
  6370. source: "./media/characters/heather/side.svg"
  6371. }
  6372. },
  6373. },
  6374. [
  6375. {
  6376. name: "Normal",
  6377. height: math.unit(9.5, "feet"),
  6378. default: true
  6379. }
  6380. ]
  6381. ))
  6382. characterMakers.push(() => makeCharacter(
  6383. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6384. {
  6385. side: {
  6386. height: math.unit(6.5, "feet"),
  6387. weight: math.unit(400, "lbs"),
  6388. name: "Side",
  6389. image: {
  6390. source: "./media/characters/lukas/side.svg",
  6391. extra: 7.25 / 6.5
  6392. }
  6393. },
  6394. },
  6395. [
  6396. {
  6397. name: "Normal",
  6398. height: math.unit(6.5, "feet"),
  6399. default: true
  6400. }
  6401. ]
  6402. ))
  6403. characterMakers.push(() => makeCharacter(
  6404. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6405. {
  6406. side: {
  6407. height: math.unit(5, "feet"),
  6408. weight: math.unit(3000, "lbs"),
  6409. name: "Side",
  6410. image: {
  6411. source: "./media/characters/louise/side.svg"
  6412. }
  6413. },
  6414. },
  6415. [
  6416. {
  6417. name: "Normal",
  6418. height: math.unit(5, "feet"),
  6419. default: true
  6420. }
  6421. ]
  6422. ))
  6423. characterMakers.push(() => makeCharacter(
  6424. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6425. {
  6426. side: {
  6427. height: math.unit(6, "feet"),
  6428. weight: math.unit(150, "lbs"),
  6429. name: "Side",
  6430. image: {
  6431. source: "./media/characters/ramona/side.svg",
  6432. extra: 871/854,
  6433. bottom: 41/912
  6434. }
  6435. },
  6436. },
  6437. [
  6438. {
  6439. name: "Normal",
  6440. height: math.unit(6 + 4/12, "feet")
  6441. },
  6442. {
  6443. name: "Minimacro",
  6444. height: math.unit(5.3, "meters"),
  6445. default: true
  6446. },
  6447. {
  6448. name: "Macro",
  6449. height: math.unit(20, "stories")
  6450. },
  6451. {
  6452. name: "Macro+",
  6453. height: math.unit(50, "stories")
  6454. },
  6455. ]
  6456. ))
  6457. characterMakers.push(() => makeCharacter(
  6458. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6459. {
  6460. standing: {
  6461. height: math.unit(5.75, "feet"),
  6462. weight: math.unit(160, "lbs"),
  6463. name: "Standing",
  6464. image: {
  6465. source: "./media/characters/deerpuff/standing.svg",
  6466. extra: 682 / 624
  6467. }
  6468. },
  6469. sitting: {
  6470. height: math.unit(5.75 / 1.79, "feet"),
  6471. weight: math.unit(160, "lbs"),
  6472. name: "Sitting",
  6473. image: {
  6474. source: "./media/characters/deerpuff/sitting.svg",
  6475. bottom: 44 / 400,
  6476. extra: 1
  6477. }
  6478. },
  6479. taurLaying: {
  6480. height: math.unit(6, "feet"),
  6481. weight: math.unit(400, "lbs"),
  6482. name: "Taur (Laying)",
  6483. image: {
  6484. source: "./media/characters/deerpuff/taur-laying.svg"
  6485. }
  6486. },
  6487. },
  6488. [
  6489. {
  6490. name: "Puffball",
  6491. height: math.unit(6, "inches")
  6492. },
  6493. {
  6494. name: "Normalpuff",
  6495. height: math.unit(5.75, "feet")
  6496. },
  6497. {
  6498. name: "Macropuff",
  6499. height: math.unit(1500, "feet"),
  6500. default: true
  6501. },
  6502. {
  6503. name: "Megapuff",
  6504. height: math.unit(500, "miles")
  6505. },
  6506. {
  6507. name: "Gigapuff",
  6508. height: math.unit(250000, "miles")
  6509. },
  6510. {
  6511. name: "Omegapuff",
  6512. height: math.unit(1000, "lightyears")
  6513. },
  6514. ]
  6515. ))
  6516. characterMakers.push(() => makeCharacter(
  6517. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6518. {
  6519. stomping: {
  6520. height: math.unit(6, "feet"),
  6521. weight: math.unit(170, "lbs"),
  6522. name: "Stomping",
  6523. image: {
  6524. source: "./media/characters/vivian/stomping.svg"
  6525. }
  6526. },
  6527. sitting: {
  6528. height: math.unit(6 / 1.75, "feet"),
  6529. weight: math.unit(170, "lbs"),
  6530. name: "Sitting",
  6531. image: {
  6532. source: "./media/characters/vivian/sitting.svg",
  6533. bottom: 1 / 6.4,
  6534. extra: 1,
  6535. }
  6536. },
  6537. },
  6538. [
  6539. {
  6540. name: "Normal",
  6541. height: math.unit(7, "feet"),
  6542. default: true
  6543. },
  6544. {
  6545. name: "Macro",
  6546. height: math.unit(10, "stories")
  6547. },
  6548. {
  6549. name: "Macro+",
  6550. height: math.unit(30, "stories")
  6551. },
  6552. {
  6553. name: "Megamacro",
  6554. height: math.unit(10, "miles")
  6555. },
  6556. {
  6557. name: "Megamacro+",
  6558. height: math.unit(2750000, "meters")
  6559. },
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(160, "lbs"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/prince/front.svg",
  6571. extra: 1938/1682,
  6572. bottom: 45/1983
  6573. }
  6574. },
  6575. back: {
  6576. height: math.unit(6, "feet"),
  6577. weight: math.unit(160, "lbs"),
  6578. name: "Back",
  6579. image: {
  6580. source: "./media/characters/prince/back.svg",
  6581. extra: 1955/1726,
  6582. bottom: 6/1961
  6583. }
  6584. },
  6585. },
  6586. [
  6587. {
  6588. name: "Normal",
  6589. height: math.unit(7.75, "feet"),
  6590. default: true
  6591. },
  6592. {
  6593. name: "Not cute",
  6594. height: math.unit(17, "feet")
  6595. },
  6596. {
  6597. name: "I said NOT",
  6598. height: math.unit(91, "feet")
  6599. },
  6600. {
  6601. name: "Please stop",
  6602. height: math.unit(560, "feet")
  6603. },
  6604. {
  6605. name: "What have you done",
  6606. height: math.unit(2200, "feet")
  6607. },
  6608. {
  6609. name: "Deer God",
  6610. height: math.unit(3.6, "miles")
  6611. },
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6616. {
  6617. standing: {
  6618. height: math.unit(6, "feet"),
  6619. weight: math.unit(300, "lbs"),
  6620. name: "Standing",
  6621. image: {
  6622. source: "./media/characters/psymon/standing.svg",
  6623. extra: 1888 / 1810,
  6624. bottom: 0.05
  6625. }
  6626. },
  6627. slithering: {
  6628. height: math.unit(6, "feet"),
  6629. weight: math.unit(300, "lbs"),
  6630. name: "Slithering",
  6631. image: {
  6632. source: "./media/characters/psymon/slithering.svg",
  6633. extra: 1330 / 1224
  6634. }
  6635. },
  6636. slitheringAlt: {
  6637. height: math.unit(6, "feet"),
  6638. weight: math.unit(300, "lbs"),
  6639. name: "Slithering (Alt)",
  6640. image: {
  6641. source: "./media/characters/psymon/slithering-alt.svg",
  6642. extra: 1330 / 1224
  6643. }
  6644. },
  6645. },
  6646. [
  6647. {
  6648. name: "Normal",
  6649. height: math.unit(11.25, "feet"),
  6650. default: true
  6651. },
  6652. {
  6653. name: "Large",
  6654. height: math.unit(27, "feet")
  6655. },
  6656. {
  6657. name: "Giant",
  6658. height: math.unit(87, "feet")
  6659. },
  6660. {
  6661. name: "Macro",
  6662. height: math.unit(365, "feet")
  6663. },
  6664. {
  6665. name: "Megamacro",
  6666. height: math.unit(3, "miles")
  6667. },
  6668. {
  6669. name: "World Serpent",
  6670. height: math.unit(8000, "miles")
  6671. },
  6672. ]
  6673. ))
  6674. characterMakers.push(() => makeCharacter(
  6675. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6676. {
  6677. front: {
  6678. height: math.unit(6, "feet"),
  6679. weight: math.unit(180, "lbs"),
  6680. name: "Front",
  6681. image: {
  6682. source: "./media/characters/daimos/front.svg",
  6683. extra: 4160 / 3897,
  6684. bottom: 0.021
  6685. }
  6686. }
  6687. },
  6688. [
  6689. {
  6690. name: "Normal",
  6691. height: math.unit(8, "feet"),
  6692. default: true
  6693. },
  6694. {
  6695. name: "Big Dog",
  6696. height: math.unit(22, "feet")
  6697. },
  6698. {
  6699. name: "Macro",
  6700. height: math.unit(127, "feet")
  6701. },
  6702. {
  6703. name: "Megamacro",
  6704. height: math.unit(3600, "feet")
  6705. },
  6706. ]
  6707. ))
  6708. characterMakers.push(() => makeCharacter(
  6709. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6710. {
  6711. side: {
  6712. height: math.unit(6, "feet"),
  6713. weight: math.unit(180, "lbs"),
  6714. name: "Side",
  6715. image: {
  6716. source: "./media/characters/blake/side.svg",
  6717. extra: 1212 / 1120,
  6718. bottom: 0.05
  6719. }
  6720. },
  6721. crouched: {
  6722. height: math.unit(6 * 0.57, "feet"),
  6723. weight: math.unit(180, "lbs"),
  6724. name: "Crouched",
  6725. image: {
  6726. source: "./media/characters/blake/crouched.svg",
  6727. extra: 840 / 587,
  6728. bottom: 0.04
  6729. }
  6730. },
  6731. bent: {
  6732. height: math.unit(6 * 0.75, "feet"),
  6733. weight: math.unit(180, "lbs"),
  6734. name: "Bent",
  6735. image: {
  6736. source: "./media/characters/blake/bent.svg",
  6737. extra: 592 / 544,
  6738. bottom: 0.035
  6739. }
  6740. },
  6741. },
  6742. [
  6743. {
  6744. name: "Normal",
  6745. height: math.unit(8 + 1 / 6, "feet"),
  6746. default: true
  6747. },
  6748. {
  6749. name: "Big Backside",
  6750. height: math.unit(37, "feet")
  6751. },
  6752. {
  6753. name: "Subway Shredder",
  6754. height: math.unit(72, "feet")
  6755. },
  6756. {
  6757. name: "City Carver",
  6758. height: math.unit(1675, "feet")
  6759. },
  6760. {
  6761. name: "Tectonic Tweaker",
  6762. height: math.unit(2300, "miles")
  6763. },
  6764. ]
  6765. ))
  6766. characterMakers.push(() => makeCharacter(
  6767. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6768. {
  6769. front: {
  6770. height: math.unit(6, "feet"),
  6771. weight: math.unit(180, "lbs"),
  6772. name: "Front",
  6773. image: {
  6774. source: "./media/characters/guisetto/front.svg",
  6775. extra: 856 / 817,
  6776. bottom: 0.06
  6777. }
  6778. },
  6779. airborne: {
  6780. height: math.unit(6, "feet"),
  6781. weight: math.unit(180, "lbs"),
  6782. name: "Airborne",
  6783. image: {
  6784. source: "./media/characters/guisetto/airborne.svg",
  6785. extra: 584 / 525
  6786. }
  6787. },
  6788. },
  6789. [
  6790. {
  6791. name: "Normal",
  6792. height: math.unit(10 + 11 / 12, "feet"),
  6793. default: true
  6794. },
  6795. {
  6796. name: "Large",
  6797. height: math.unit(35, "feet")
  6798. },
  6799. {
  6800. name: "Macro",
  6801. height: math.unit(475, "feet")
  6802. },
  6803. ]
  6804. ))
  6805. characterMakers.push(() => makeCharacter(
  6806. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6807. {
  6808. front: {
  6809. height: math.unit(6, "feet"),
  6810. weight: math.unit(180, "lbs"),
  6811. name: "Front",
  6812. image: {
  6813. source: "./media/characters/luxor/front.svg",
  6814. extra: 2940 / 2152
  6815. }
  6816. },
  6817. back: {
  6818. height: math.unit(6, "feet"),
  6819. weight: math.unit(180, "lbs"),
  6820. name: "Back",
  6821. image: {
  6822. source: "./media/characters/luxor/back.svg",
  6823. extra: 1083 / 960
  6824. }
  6825. },
  6826. },
  6827. [
  6828. {
  6829. name: "Normal",
  6830. height: math.unit(5 + 5 / 6, "feet"),
  6831. default: true
  6832. },
  6833. {
  6834. name: "Lamp",
  6835. height: math.unit(50, "feet")
  6836. },
  6837. {
  6838. name: "Lämp",
  6839. height: math.unit(300, "feet")
  6840. },
  6841. {
  6842. name: "The sun is a lamp",
  6843. height: math.unit(250000, "miles")
  6844. },
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6849. {
  6850. front: {
  6851. height: math.unit(6, "feet"),
  6852. weight: math.unit(50, "lbs"),
  6853. name: "Front",
  6854. image: {
  6855. source: "./media/characters/huoyan/front.svg"
  6856. }
  6857. },
  6858. side: {
  6859. height: math.unit(6, "feet"),
  6860. weight: math.unit(180, "lbs"),
  6861. name: "Side",
  6862. image: {
  6863. source: "./media/characters/huoyan/side.svg"
  6864. }
  6865. },
  6866. },
  6867. [
  6868. {
  6869. name: "Chef",
  6870. height: math.unit(9, "feet")
  6871. },
  6872. {
  6873. name: "Normal",
  6874. height: math.unit(65, "feet"),
  6875. default: true
  6876. },
  6877. {
  6878. name: "Macro",
  6879. height: math.unit(780, "feet")
  6880. },
  6881. {
  6882. name: "Flaming Mountain",
  6883. height: math.unit(4.8, "miles")
  6884. },
  6885. {
  6886. name: "Celestial",
  6887. height: math.unit(765000, "miles")
  6888. },
  6889. ]
  6890. ))
  6891. characterMakers.push(() => makeCharacter(
  6892. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6893. {
  6894. front: {
  6895. height: math.unit(5 + 3 / 4, "feet"),
  6896. weight: math.unit(120, "lbs"),
  6897. name: "Front",
  6898. image: {
  6899. source: "./media/characters/tails/front.svg"
  6900. }
  6901. }
  6902. },
  6903. [
  6904. {
  6905. name: "Normal",
  6906. height: math.unit(5 + 3 / 4, "feet"),
  6907. default: true
  6908. }
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6913. {
  6914. front: {
  6915. height: math.unit(4, "feet"),
  6916. weight: math.unit(50, "lbs"),
  6917. name: "Front",
  6918. image: {
  6919. source: "./media/characters/rainy/front.svg"
  6920. }
  6921. }
  6922. },
  6923. [
  6924. {
  6925. name: "Macro",
  6926. height: math.unit(800, "feet"),
  6927. default: true
  6928. }
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6933. {
  6934. front: {
  6935. height: math.unit(6, "feet"),
  6936. weight: math.unit(150, "lbs"),
  6937. name: "Front",
  6938. image: {
  6939. source: "./media/characters/rainier/front.svg"
  6940. }
  6941. }
  6942. },
  6943. [
  6944. {
  6945. name: "Micro",
  6946. height: math.unit(2, "mm"),
  6947. default: true
  6948. }
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6953. {
  6954. front: {
  6955. height: math.unit(8 + 4/12, "feet"),
  6956. weight: math.unit(450, "kilograms"),
  6957. name: "Front",
  6958. image: {
  6959. source: "./media/characters/andy-renard/front.svg",
  6960. extra: 862/809,
  6961. bottom: 85/947
  6962. },
  6963. extraAttributes: {
  6964. "pawSize": {
  6965. name: "Paw Size",
  6966. power: 2,
  6967. type: "area",
  6968. base: math.unit(0.45*0.3, "meters^2")
  6969. },
  6970. "handSize": {
  6971. name: "Hand Size",
  6972. power: 2,
  6973. type: "area",
  6974. base: math.unit(0.4 * 0.3, "meters^2")
  6975. },
  6976. "cockSize": {
  6977. name: "Cock Length",
  6978. power: 1,
  6979. type: "length",
  6980. base: math.unit(0.75, "meters")
  6981. },
  6982. "ballDiameter": {
  6983. name: "Ball Diameter",
  6984. power: 1,
  6985. type: "length",
  6986. base: math.unit(0.3, "meters")
  6987. },
  6988. "ballVolume": {
  6989. name: "Ball Volume",
  6990. power: 3,
  6991. type: "volume",
  6992. base: math.unit(0.01413716694, "meters^3")
  6993. },
  6994. }
  6995. },
  6996. back: {
  6997. height: math.unit(8 + 4/12, "feet"),
  6998. weight: math.unit(450, "kilograms"),
  6999. name: "Back",
  7000. image: {
  7001. source: "./media/characters/andy-renard/back.svg",
  7002. extra: 1112/1033,
  7003. bottom: 64/1176
  7004. },
  7005. extraAttributes: {
  7006. "pawSize": {
  7007. name: "Paw Size",
  7008. power: 2,
  7009. type: "area",
  7010. base: math.unit(0.45*0.3, "meters^2")
  7011. },
  7012. "handSize": {
  7013. name: "Hand Size",
  7014. power: 2,
  7015. type: "area",
  7016. base: math.unit(0.4 * 0.3, "meters^2")
  7017. },
  7018. "cockSize": {
  7019. name: "Cock Length",
  7020. power: 1,
  7021. type: "length",
  7022. base: math.unit(0.75, "meters")
  7023. },
  7024. "ballDiameter": {
  7025. name: "Ball Diameter",
  7026. power: 1,
  7027. type: "length",
  7028. base: math.unit(0.3, "meters")
  7029. },
  7030. "ballVolume": {
  7031. name: "Ball Volume",
  7032. power: 3,
  7033. type: "volume",
  7034. base: math.unit(0.01413716694, "meters^3")
  7035. },
  7036. }
  7037. },
  7038. },
  7039. [
  7040. {
  7041. name: "Tall",
  7042. height: math.unit(6 + 8/12, "feet")
  7043. },
  7044. {
  7045. name: "Very Tall",
  7046. height: math.unit(8 + 4/12, "feet")
  7047. },
  7048. {
  7049. name: "Mini Macro",
  7050. height: math.unit(15, "feet"),
  7051. default: true
  7052. },
  7053. {
  7054. name: "Giant",
  7055. height: math.unit(50, "feet")
  7056. },
  7057. {
  7058. name: "Nice",
  7059. height: math.unit(69, "feet")
  7060. },
  7061. {
  7062. name: "Macro",
  7063. height: math.unit(100, "feet")
  7064. },
  7065. {
  7066. name: "Enormous",
  7067. height: math.unit(500, "feet")
  7068. },
  7069. {
  7070. name: "Gargantuan",
  7071. height: math.unit(1000, "feet")
  7072. },
  7073. {
  7074. name: "Mega",
  7075. height: math.unit(1, "mile")
  7076. },
  7077. {
  7078. name: "Giga",
  7079. height: math.unit(50, "miles")
  7080. },
  7081. {
  7082. name: "Tera",
  7083. height: math.unit(1000, "miles")
  7084. },
  7085. {
  7086. name: "Cosmic",
  7087. height: math.unit(1.5, "galaxies")
  7088. },
  7089. {
  7090. name: "God",
  7091. height: math.unit(1.5, "universes")
  7092. },
  7093. {
  7094. name: "Chief Execute God",
  7095. height: math.unit(1.5, "multiverses")
  7096. },
  7097. ]
  7098. ))
  7099. characterMakers.push(() => makeCharacter(
  7100. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7101. {
  7102. front: {
  7103. height: math.unit(6, "feet"),
  7104. weight: math.unit(210, "lbs"),
  7105. name: "Front",
  7106. image: {
  7107. source: "./media/characters/cimmaron/front-sfw.svg",
  7108. extra: 701 / 676,
  7109. bottom: 0.046
  7110. }
  7111. },
  7112. back: {
  7113. height: math.unit(6, "feet"),
  7114. weight: math.unit(210, "lbs"),
  7115. name: "Back",
  7116. image: {
  7117. source: "./media/characters/cimmaron/back-sfw.svg",
  7118. extra: 701 / 676,
  7119. bottom: 0.046
  7120. }
  7121. },
  7122. frontNsfw: {
  7123. height: math.unit(6, "feet"),
  7124. weight: math.unit(210, "lbs"),
  7125. name: "Front (NSFW)",
  7126. image: {
  7127. source: "./media/characters/cimmaron/front-nsfw.svg",
  7128. extra: 701 / 676,
  7129. bottom: 0.046
  7130. }
  7131. },
  7132. backNsfw: {
  7133. height: math.unit(6, "feet"),
  7134. weight: math.unit(210, "lbs"),
  7135. name: "Back (NSFW)",
  7136. image: {
  7137. source: "./media/characters/cimmaron/back-nsfw.svg",
  7138. extra: 701 / 676,
  7139. bottom: 0.046
  7140. }
  7141. },
  7142. dick: {
  7143. height: math.unit(1.714, "feet"),
  7144. name: "Dick",
  7145. image: {
  7146. source: "./media/characters/cimmaron/dick.svg"
  7147. }
  7148. },
  7149. },
  7150. [
  7151. {
  7152. name: "Normal",
  7153. height: math.unit(6, "feet"),
  7154. default: true
  7155. },
  7156. {
  7157. name: "Macro Mayor",
  7158. height: math.unit(350, "meters")
  7159. },
  7160. ]
  7161. ))
  7162. characterMakers.push(() => makeCharacter(
  7163. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7164. {
  7165. front: {
  7166. height: math.unit(6, "feet"),
  7167. weight: math.unit(200, "lbs"),
  7168. name: "Front",
  7169. image: {
  7170. source: "./media/characters/akari/front.svg",
  7171. extra: 962 / 901,
  7172. bottom: 0.04
  7173. }
  7174. }
  7175. },
  7176. [
  7177. {
  7178. name: "Micro",
  7179. height: math.unit(5, "inches"),
  7180. default: true
  7181. },
  7182. {
  7183. name: "Normal",
  7184. height: math.unit(7, "feet")
  7185. },
  7186. ]
  7187. ))
  7188. characterMakers.push(() => makeCharacter(
  7189. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7190. {
  7191. front: {
  7192. height: math.unit(6, "feet"),
  7193. weight: math.unit(140, "lbs"),
  7194. name: "Front",
  7195. image: {
  7196. source: "./media/characters/cynosura/front.svg",
  7197. extra: 437/410,
  7198. bottom: 9/446
  7199. }
  7200. },
  7201. back: {
  7202. height: math.unit(6, "feet"),
  7203. weight: math.unit(140, "lbs"),
  7204. name: "Back",
  7205. image: {
  7206. source: "./media/characters/cynosura/back.svg",
  7207. extra: 1304/1160,
  7208. bottom: 71/1375
  7209. }
  7210. },
  7211. },
  7212. [
  7213. {
  7214. name: "Micro",
  7215. height: math.unit(4, "inches")
  7216. },
  7217. {
  7218. name: "Normal",
  7219. height: math.unit(5.75, "feet"),
  7220. default: true
  7221. },
  7222. {
  7223. name: "Tall",
  7224. height: math.unit(10, "feet")
  7225. },
  7226. {
  7227. name: "Big",
  7228. height: math.unit(20, "feet")
  7229. },
  7230. {
  7231. name: "Macro",
  7232. height: math.unit(50, "feet")
  7233. },
  7234. ]
  7235. ))
  7236. characterMakers.push(() => makeCharacter(
  7237. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7238. {
  7239. front: {
  7240. height: math.unit(13 + 2/12, "feet"),
  7241. weight: math.unit(800, "kg"),
  7242. name: "Front",
  7243. image: {
  7244. source: "./media/characters/gin/front.svg",
  7245. extra: 1312/1191,
  7246. bottom: 45/1357
  7247. }
  7248. },
  7249. mouth: {
  7250. height: math.unit(2.39 * 1.8, "feet"),
  7251. name: "Mouth",
  7252. image: {
  7253. source: "./media/characters/gin/mouth.svg"
  7254. }
  7255. },
  7256. hand: {
  7257. height: math.unit(1.57 * 2.19, "feet"),
  7258. name: "Hand",
  7259. image: {
  7260. source: "./media/characters/gin/hand.svg"
  7261. }
  7262. },
  7263. foot: {
  7264. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7265. name: "Foot",
  7266. image: {
  7267. source: "./media/characters/gin/foot.svg"
  7268. }
  7269. },
  7270. sole: {
  7271. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7272. name: "Sole",
  7273. image: {
  7274. source: "./media/characters/gin/sole.svg"
  7275. }
  7276. },
  7277. },
  7278. [
  7279. {
  7280. name: "Very Small",
  7281. height: math.unit(13 + 2 / 12, "feet")
  7282. },
  7283. {
  7284. name: "Micro",
  7285. height: math.unit(600, "miles")
  7286. },
  7287. {
  7288. name: "Regular",
  7289. height: math.unit(20, "earths"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Macro",
  7294. height: math.unit(2.2, "solarradii")
  7295. },
  7296. {
  7297. name: "Teramacro",
  7298. height: math.unit(1.2, "galaxies")
  7299. },
  7300. {
  7301. name: "Omegamacro",
  7302. height: math.unit(200, "universes")
  7303. },
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7308. {
  7309. front: {
  7310. height: math.unit(6 + 1 / 6, "feet"),
  7311. weight: math.unit(178, "lbs"),
  7312. name: "Front",
  7313. image: {
  7314. source: "./media/characters/guy/front.svg"
  7315. }
  7316. }
  7317. },
  7318. [
  7319. {
  7320. name: "Normal",
  7321. height: math.unit(6 + 1 / 6, "feet"),
  7322. default: true
  7323. },
  7324. {
  7325. name: "Large",
  7326. height: math.unit(25 + 7 / 12, "feet")
  7327. },
  7328. {
  7329. name: "Macro",
  7330. height: math.unit(60 + 9 / 12, "feet")
  7331. },
  7332. {
  7333. name: "Macro+",
  7334. height: math.unit(246, "feet")
  7335. },
  7336. {
  7337. name: "Macro++",
  7338. height: math.unit(878, "feet")
  7339. }
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7344. {
  7345. front: {
  7346. height: math.unit(9, "feet"),
  7347. weight: math.unit(800, "lbs"),
  7348. name: "Front",
  7349. image: {
  7350. source: "./media/characters/tiberius/front.svg",
  7351. extra: 2295 / 2071
  7352. }
  7353. },
  7354. back: {
  7355. height: math.unit(9, "feet"),
  7356. weight: math.unit(800, "lbs"),
  7357. name: "Back",
  7358. image: {
  7359. source: "./media/characters/tiberius/back.svg",
  7360. extra: 2373 / 2160
  7361. }
  7362. },
  7363. },
  7364. [
  7365. {
  7366. name: "Normal",
  7367. height: math.unit(9, "feet"),
  7368. default: true
  7369. }
  7370. ]
  7371. ))
  7372. characterMakers.push(() => makeCharacter(
  7373. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7374. {
  7375. front: {
  7376. height: math.unit(6, "feet"),
  7377. weight: math.unit(600, "lbs"),
  7378. name: "Front",
  7379. image: {
  7380. source: "./media/characters/surgo/front.svg",
  7381. extra: 3591 / 2227
  7382. }
  7383. },
  7384. back: {
  7385. height: math.unit(6, "feet"),
  7386. weight: math.unit(600, "lbs"),
  7387. name: "Back",
  7388. image: {
  7389. source: "./media/characters/surgo/back.svg",
  7390. extra: 3557 / 2228
  7391. }
  7392. },
  7393. laying: {
  7394. height: math.unit(6 * 0.85, "feet"),
  7395. weight: math.unit(600, "lbs"),
  7396. name: "Laying",
  7397. image: {
  7398. source: "./media/characters/surgo/laying.svg"
  7399. }
  7400. },
  7401. },
  7402. [
  7403. {
  7404. name: "Normal",
  7405. height: math.unit(6, "feet"),
  7406. default: true
  7407. }
  7408. ]
  7409. ))
  7410. characterMakers.push(() => makeCharacter(
  7411. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7412. {
  7413. side: {
  7414. height: math.unit(6, "feet"),
  7415. weight: math.unit(150, "lbs"),
  7416. name: "Side",
  7417. image: {
  7418. source: "./media/characters/cibus/side.svg",
  7419. extra: 800 / 400
  7420. }
  7421. },
  7422. },
  7423. [
  7424. {
  7425. name: "Normal",
  7426. height: math.unit(6, "feet"),
  7427. default: true
  7428. }
  7429. ]
  7430. ))
  7431. characterMakers.push(() => makeCharacter(
  7432. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7433. {
  7434. front: {
  7435. height: math.unit(6, "feet"),
  7436. weight: math.unit(240, "lbs"),
  7437. name: "Front",
  7438. image: {
  7439. source: "./media/characters/nibbles/front.svg"
  7440. }
  7441. },
  7442. side: {
  7443. height: math.unit(6, "feet"),
  7444. weight: math.unit(240, "lbs"),
  7445. name: "Side",
  7446. image: {
  7447. source: "./media/characters/nibbles/side.svg"
  7448. }
  7449. },
  7450. },
  7451. [
  7452. {
  7453. name: "Normal",
  7454. height: math.unit(9, "feet"),
  7455. default: true
  7456. }
  7457. ]
  7458. ))
  7459. characterMakers.push(() => makeCharacter(
  7460. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7461. {
  7462. side: {
  7463. height: math.unit(5 + 1 / 6, "feet"),
  7464. weight: math.unit(130, "lbs"),
  7465. name: "Side",
  7466. image: {
  7467. source: "./media/characters/rikky/side.svg",
  7468. extra: 851 / 801
  7469. }
  7470. },
  7471. },
  7472. [
  7473. {
  7474. name: "Normal",
  7475. height: math.unit(5 + 1 / 6, "feet")
  7476. },
  7477. {
  7478. name: "Macro",
  7479. height: math.unit(152, "feet"),
  7480. default: true
  7481. },
  7482. {
  7483. name: "Megamacro",
  7484. height: math.unit(7, "miles")
  7485. }
  7486. ]
  7487. ))
  7488. characterMakers.push(() => makeCharacter(
  7489. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7490. {
  7491. side: {
  7492. height: math.unit(370, "cm"),
  7493. weight: math.unit(350, "lbs"),
  7494. name: "Side",
  7495. image: {
  7496. source: "./media/characters/malfressa/side.svg"
  7497. }
  7498. },
  7499. walking: {
  7500. height: math.unit(370, "cm"),
  7501. weight: math.unit(350, "lbs"),
  7502. name: "Walking",
  7503. image: {
  7504. source: "./media/characters/malfressa/walking.svg"
  7505. }
  7506. },
  7507. feral: {
  7508. height: math.unit(2500, "cm"),
  7509. weight: math.unit(100000, "lbs"),
  7510. name: "Feral",
  7511. image: {
  7512. source: "./media/characters/malfressa/feral.svg",
  7513. extra: 2108 / 837,
  7514. bottom: 0.02
  7515. }
  7516. },
  7517. },
  7518. [
  7519. {
  7520. name: "Normal",
  7521. height: math.unit(370, "cm")
  7522. },
  7523. {
  7524. name: "Macro",
  7525. height: math.unit(300, "meters"),
  7526. default: true
  7527. }
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7532. {
  7533. front: {
  7534. height: math.unit(6, "feet"),
  7535. weight: math.unit(60, "kg"),
  7536. name: "Front",
  7537. image: {
  7538. source: "./media/characters/jaro/front.svg",
  7539. extra: 845/817,
  7540. bottom: 45/890
  7541. }
  7542. },
  7543. back: {
  7544. height: math.unit(6, "feet"),
  7545. weight: math.unit(60, "kg"),
  7546. name: "Back",
  7547. image: {
  7548. source: "./media/characters/jaro/back.svg",
  7549. extra: 847/817,
  7550. bottom: 34/881
  7551. }
  7552. },
  7553. },
  7554. [
  7555. {
  7556. name: "Micro",
  7557. height: math.unit(7, "inches")
  7558. },
  7559. {
  7560. name: "Normal",
  7561. height: math.unit(5.5, "feet"),
  7562. default: true
  7563. },
  7564. {
  7565. name: "Minimacro",
  7566. height: math.unit(20, "feet")
  7567. },
  7568. {
  7569. name: "Macro",
  7570. height: math.unit(200, "meters")
  7571. }
  7572. ]
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7576. {
  7577. front: {
  7578. height: math.unit(6, "feet"),
  7579. weight: math.unit(195, "lb"),
  7580. name: "Front",
  7581. image: {
  7582. source: "./media/characters/rogue/front.svg"
  7583. }
  7584. },
  7585. },
  7586. [
  7587. {
  7588. name: "Macro",
  7589. height: math.unit(90, "feet"),
  7590. default: true
  7591. },
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7596. {
  7597. standing: {
  7598. height: math.unit(5 + 8 / 12, "feet"),
  7599. weight: math.unit(140, "lb"),
  7600. name: "Standing",
  7601. image: {
  7602. source: "./media/characters/piper/standing.svg",
  7603. extra: 1440/1284,
  7604. bottom: 66/1506
  7605. }
  7606. },
  7607. running: {
  7608. height: math.unit(5 + 8 / 12, "feet"),
  7609. weight: math.unit(140, "lb"),
  7610. name: "Running",
  7611. image: {
  7612. source: "./media/characters/piper/running.svg",
  7613. extra: 3948/3655,
  7614. bottom: 0/3948
  7615. }
  7616. },
  7617. sole: {
  7618. height: math.unit(0.81, "feet"),
  7619. weight: math.unit(2, "kg"),
  7620. name: "Sole",
  7621. image: {
  7622. source: "./media/characters/piper/sole.svg"
  7623. }
  7624. },
  7625. nipple: {
  7626. height: math.unit(0.25, "feet"),
  7627. weight: math.unit(1.5, "lb"),
  7628. name: "Nipple",
  7629. image: {
  7630. source: "./media/characters/piper/nipple.svg"
  7631. }
  7632. },
  7633. head: {
  7634. height: math.unit(1.1, "feet"),
  7635. name: "Head",
  7636. image: {
  7637. source: "./media/characters/piper/head.svg"
  7638. }
  7639. },
  7640. },
  7641. [
  7642. {
  7643. name: "Micro",
  7644. height: math.unit(2, "inches")
  7645. },
  7646. {
  7647. name: "Normal",
  7648. height: math.unit(5 + 8 / 12, "feet")
  7649. },
  7650. {
  7651. name: "Macro",
  7652. height: math.unit(250, "feet"),
  7653. default: true
  7654. },
  7655. {
  7656. name: "Megamacro",
  7657. height: math.unit(7, "miles")
  7658. },
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7663. {
  7664. front: {
  7665. height: math.unit(6, "feet"),
  7666. weight: math.unit(220, "lb"),
  7667. name: "Front",
  7668. image: {
  7669. source: "./media/characters/gemini/front.svg"
  7670. }
  7671. },
  7672. back: {
  7673. height: math.unit(6, "feet"),
  7674. weight: math.unit(220, "lb"),
  7675. name: "Back",
  7676. image: {
  7677. source: "./media/characters/gemini/back.svg"
  7678. }
  7679. },
  7680. kneeling: {
  7681. height: math.unit(6 / 1.5, "feet"),
  7682. weight: math.unit(220, "lb"),
  7683. name: "Kneeling",
  7684. image: {
  7685. source: "./media/characters/gemini/kneeling.svg",
  7686. bottom: 0.02
  7687. }
  7688. },
  7689. },
  7690. [
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(300, "meters"),
  7694. default: true
  7695. },
  7696. {
  7697. name: "Megamacro",
  7698. height: math.unit(6900, "meters")
  7699. },
  7700. ]
  7701. ))
  7702. characterMakers.push(() => makeCharacter(
  7703. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7704. {
  7705. anthro: {
  7706. height: math.unit(2.35, "meters"),
  7707. weight: math.unit(73, "kg"),
  7708. name: "Anthro",
  7709. image: {
  7710. source: "./media/characters/alicia/anthro.svg",
  7711. extra: 2571 / 2385,
  7712. bottom: 75 / 2648
  7713. }
  7714. },
  7715. paw: {
  7716. height: math.unit(1.32, "feet"),
  7717. name: "Paw",
  7718. image: {
  7719. source: "./media/characters/alicia/paw.svg"
  7720. }
  7721. },
  7722. feral: {
  7723. height: math.unit(1.69, "meters"),
  7724. weight: math.unit(73, "kg"),
  7725. name: "Feral",
  7726. image: {
  7727. source: "./media/characters/alicia/feral.svg",
  7728. extra: 2123 / 1715,
  7729. bottom: 222 / 2349
  7730. }
  7731. },
  7732. },
  7733. [
  7734. {
  7735. name: "Normal",
  7736. height: math.unit(2.35, "meters")
  7737. },
  7738. {
  7739. name: "Macro",
  7740. height: math.unit(60, "meters"),
  7741. default: true
  7742. },
  7743. {
  7744. name: "Megamacro",
  7745. height: math.unit(10000, "kilometers")
  7746. },
  7747. ]
  7748. ))
  7749. characterMakers.push(() => makeCharacter(
  7750. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7751. {
  7752. front: {
  7753. height: math.unit(7, "feet"),
  7754. weight: math.unit(250, "lbs"),
  7755. name: "Front",
  7756. image: {
  7757. source: "./media/characters/archy/front.svg"
  7758. }
  7759. }
  7760. },
  7761. [
  7762. {
  7763. name: "Micro",
  7764. height: math.unit(1, "inch")
  7765. },
  7766. {
  7767. name: "Shorty",
  7768. height: math.unit(5, "feet")
  7769. },
  7770. {
  7771. name: "Normal",
  7772. height: math.unit(7, "feet")
  7773. },
  7774. {
  7775. name: "Macro",
  7776. height: math.unit(600, "meters"),
  7777. default: true
  7778. },
  7779. {
  7780. name: "Megamacro",
  7781. height: math.unit(1, "mile")
  7782. },
  7783. ]
  7784. ))
  7785. characterMakers.push(() => makeCharacter(
  7786. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7787. {
  7788. front: {
  7789. height: math.unit(1.65, "meters"),
  7790. weight: math.unit(74, "kg"),
  7791. name: "Front",
  7792. image: {
  7793. source: "./media/characters/berri/front.svg",
  7794. extra: 857 / 837,
  7795. bottom: 18 / 877
  7796. }
  7797. },
  7798. bum: {
  7799. height: math.unit(1.46, "feet"),
  7800. name: "Bum",
  7801. image: {
  7802. source: "./media/characters/berri/bum.svg"
  7803. }
  7804. },
  7805. mouth: {
  7806. height: math.unit(0.44, "feet"),
  7807. name: "Mouth",
  7808. image: {
  7809. source: "./media/characters/berri/mouth.svg"
  7810. }
  7811. },
  7812. paw: {
  7813. height: math.unit(0.826, "feet"),
  7814. name: "Paw",
  7815. image: {
  7816. source: "./media/characters/berri/paw.svg"
  7817. }
  7818. },
  7819. },
  7820. [
  7821. {
  7822. name: "Normal",
  7823. height: math.unit(1.65, "meters")
  7824. },
  7825. {
  7826. name: "Macro",
  7827. height: math.unit(60, "m"),
  7828. default: true
  7829. },
  7830. {
  7831. name: "Megamacro",
  7832. height: math.unit(9.213, "km")
  7833. },
  7834. {
  7835. name: "Planet Eater",
  7836. height: math.unit(489, "megameters")
  7837. },
  7838. {
  7839. name: "Teramacro",
  7840. height: math.unit(2471635000000, "meters")
  7841. },
  7842. {
  7843. name: "Examacro",
  7844. height: math.unit(8.0624e+26, "meters")
  7845. }
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7850. {
  7851. front: {
  7852. height: math.unit(1.72, "meters"),
  7853. weight: math.unit(68, "kg"),
  7854. name: "Front",
  7855. image: {
  7856. source: "./media/characters/lexi/front.svg"
  7857. }
  7858. }
  7859. },
  7860. [
  7861. {
  7862. name: "Very Smol",
  7863. height: math.unit(10, "mm")
  7864. },
  7865. {
  7866. name: "Micro",
  7867. height: math.unit(6.8, "cm"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Normal",
  7872. height: math.unit(1.72, "m")
  7873. }
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(1.69, "meters"),
  7881. weight: math.unit(68, "kg"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/martin/front.svg",
  7885. extra: 596 / 581
  7886. }
  7887. }
  7888. },
  7889. [
  7890. {
  7891. name: "Micro",
  7892. height: math.unit(6.85, "cm"),
  7893. default: true
  7894. },
  7895. {
  7896. name: "Normal",
  7897. height: math.unit(1.69, "m")
  7898. }
  7899. ]
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7903. {
  7904. front: {
  7905. height: math.unit(1.69, "meters"),
  7906. weight: math.unit(68, "kg"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/juno/front.svg"
  7910. }
  7911. }
  7912. },
  7913. [
  7914. {
  7915. name: "Micro",
  7916. height: math.unit(7, "cm")
  7917. },
  7918. {
  7919. name: "Normal",
  7920. height: math.unit(1.89, "m")
  7921. },
  7922. {
  7923. name: "Macro",
  7924. height: math.unit(353, "meters"),
  7925. default: true
  7926. }
  7927. ]
  7928. ))
  7929. characterMakers.push(() => makeCharacter(
  7930. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7931. {
  7932. front: {
  7933. height: math.unit(1.93, "meters"),
  7934. weight: math.unit(83, "kg"),
  7935. name: "Front",
  7936. image: {
  7937. source: "./media/characters/samantha/front.svg"
  7938. }
  7939. },
  7940. frontClothed: {
  7941. height: math.unit(1.93, "meters"),
  7942. weight: math.unit(83, "kg"),
  7943. name: "Front (Clothed)",
  7944. image: {
  7945. source: "./media/characters/samantha/front-clothed.svg"
  7946. }
  7947. },
  7948. back: {
  7949. height: math.unit(1.93, "meters"),
  7950. weight: math.unit(83, "kg"),
  7951. name: "Back",
  7952. image: {
  7953. source: "./media/characters/samantha/back.svg"
  7954. }
  7955. },
  7956. },
  7957. [
  7958. {
  7959. name: "Normal",
  7960. height: math.unit(1.93, "m")
  7961. },
  7962. {
  7963. name: "Macro",
  7964. height: math.unit(74, "meters"),
  7965. default: true
  7966. },
  7967. {
  7968. name: "Macro+",
  7969. height: math.unit(223, "meters"),
  7970. },
  7971. {
  7972. name: "Megamacro",
  7973. height: math.unit(8381, "meters"),
  7974. },
  7975. {
  7976. name: "Megamacro+",
  7977. height: math.unit(12000, "kilometers")
  7978. },
  7979. ]
  7980. ))
  7981. characterMakers.push(() => makeCharacter(
  7982. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7983. {
  7984. front: {
  7985. height: math.unit(1.92, "meters"),
  7986. weight: math.unit(80, "kg"),
  7987. name: "Front",
  7988. image: {
  7989. source: "./media/characters/dr-clay/front.svg"
  7990. }
  7991. },
  7992. frontClothed: {
  7993. height: math.unit(1.92, "meters"),
  7994. weight: math.unit(80, "kg"),
  7995. name: "Front (Clothed)",
  7996. image: {
  7997. source: "./media/characters/dr-clay/front-clothed.svg"
  7998. }
  7999. }
  8000. },
  8001. [
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(1.92, "m")
  8005. },
  8006. {
  8007. name: "Macro",
  8008. height: math.unit(214, "meters"),
  8009. default: true
  8010. },
  8011. {
  8012. name: "Macro+",
  8013. height: math.unit(12.237, "meters"),
  8014. },
  8015. {
  8016. name: "Megamacro",
  8017. height: math.unit(557, "megameters"),
  8018. },
  8019. {
  8020. name: "Unimaginable",
  8021. height: math.unit(120e9, "lightyears")
  8022. },
  8023. ]
  8024. ))
  8025. characterMakers.push(() => makeCharacter(
  8026. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8027. {
  8028. front: {
  8029. height: math.unit(2, "meters"),
  8030. weight: math.unit(80, "kg"),
  8031. name: "Front",
  8032. image: {
  8033. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8034. }
  8035. }
  8036. },
  8037. [
  8038. {
  8039. name: "Teramacro",
  8040. height: math.unit(500000, "lightyears"),
  8041. default: true
  8042. },
  8043. ]
  8044. ))
  8045. characterMakers.push(() => makeCharacter(
  8046. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8047. {
  8048. crux: {
  8049. height: math.unit(2, "meters"),
  8050. weight: math.unit(150, "kg"),
  8051. name: "Crux",
  8052. image: {
  8053. source: "./media/characters/vemus/crux.svg",
  8054. extra: 1074/936,
  8055. bottom: 23/1097
  8056. }
  8057. },
  8058. skunkTanuki: {
  8059. height: math.unit(2, "meters"),
  8060. weight: math.unit(150, "kg"),
  8061. name: "Skunk-Tanuki",
  8062. image: {
  8063. source: "./media/characters/vemus/skunk-tanuki.svg",
  8064. extra: 926/893,
  8065. bottom: 20/946
  8066. }
  8067. },
  8068. },
  8069. [
  8070. {
  8071. name: "Normal",
  8072. height: math.unit(4, "meters"),
  8073. default: true
  8074. },
  8075. {
  8076. name: "Big",
  8077. height: math.unit(8, "meters")
  8078. },
  8079. {
  8080. name: "Macro",
  8081. height: math.unit(100, "meters")
  8082. },
  8083. {
  8084. name: "Macro+",
  8085. height: math.unit(1500, "meters")
  8086. },
  8087. {
  8088. name: "Stellar",
  8089. height: math.unit(14e8, "meters")
  8090. },
  8091. ]
  8092. ))
  8093. characterMakers.push(() => makeCharacter(
  8094. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8095. {
  8096. front: {
  8097. height: math.unit(2, "meters"),
  8098. weight: math.unit(70, "kg"),
  8099. name: "Front",
  8100. image: {
  8101. source: "./media/characters/beherit/front.svg",
  8102. extra: 1234/1109,
  8103. bottom: 55/1289
  8104. }
  8105. }
  8106. },
  8107. [
  8108. {
  8109. name: "Normal",
  8110. height: math.unit(6, "feet")
  8111. },
  8112. {
  8113. name: "Lorg",
  8114. height: math.unit(25, "feet"),
  8115. default: true
  8116. },
  8117. {
  8118. name: "Lorger",
  8119. height: math.unit(75, "feet")
  8120. },
  8121. {
  8122. name: "Macro",
  8123. height: math.unit(200, "meters")
  8124. },
  8125. ]
  8126. ))
  8127. characterMakers.push(() => makeCharacter(
  8128. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8129. {
  8130. front: {
  8131. height: math.unit(2, "meters"),
  8132. weight: math.unit(150, "kg"),
  8133. name: "Front",
  8134. image: {
  8135. source: "./media/characters/everett/front.svg",
  8136. extra: 1017/866,
  8137. bottom: 86/1103
  8138. }
  8139. },
  8140. paw: {
  8141. height: math.unit(2 / 3.6, "meters"),
  8142. name: "Paw",
  8143. image: {
  8144. source: "./media/characters/everett/paw.svg"
  8145. }
  8146. },
  8147. },
  8148. [
  8149. {
  8150. name: "Normal",
  8151. height: math.unit(15, "feet"),
  8152. default: true
  8153. },
  8154. {
  8155. name: "Lorg",
  8156. height: math.unit(70, "feet"),
  8157. default: true
  8158. },
  8159. {
  8160. name: "Lorger",
  8161. height: math.unit(250, "feet")
  8162. },
  8163. {
  8164. name: "Macro",
  8165. height: math.unit(500, "meters")
  8166. },
  8167. ]
  8168. ))
  8169. characterMakers.push(() => makeCharacter(
  8170. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8171. {
  8172. front: {
  8173. height: math.unit(2, "meters"),
  8174. weight: math.unit(86, "kg"),
  8175. name: "Front",
  8176. image: {
  8177. source: "./media/characters/rose/front.svg",
  8178. extra: 1785/1636,
  8179. bottom: 30/1815
  8180. },
  8181. form: "liom",
  8182. default: true
  8183. },
  8184. frontSporty: {
  8185. height: math.unit(2, "meters"),
  8186. weight: math.unit(86, "kg"),
  8187. name: "Front (Sporty)",
  8188. image: {
  8189. source: "./media/characters/rose/front-sporty.svg",
  8190. extra: 350/335,
  8191. bottom: 10/360
  8192. },
  8193. form: "liom"
  8194. },
  8195. frontAlt: {
  8196. height: math.unit(1.6, "meters"),
  8197. weight: math.unit(86, "kg"),
  8198. name: "Front (Alt)",
  8199. image: {
  8200. source: "./media/characters/rose/front-alt.svg",
  8201. extra: 299/283,
  8202. bottom: 3/302
  8203. },
  8204. form: "liom"
  8205. },
  8206. plush: {
  8207. height: math.unit(2, "meters"),
  8208. weight: math.unit(86/3, "kg"),
  8209. name: "Plush",
  8210. image: {
  8211. source: "./media/characters/rose/plush.svg",
  8212. extra: 361/337,
  8213. bottom: 11/372
  8214. },
  8215. form: "plush",
  8216. default: true
  8217. },
  8218. faeStanding: {
  8219. height: math.unit(10, "cm"),
  8220. weight: math.unit(10, "grams"),
  8221. name: "Standing",
  8222. image: {
  8223. source: "./media/characters/rose/fae-standing.svg",
  8224. extra: 1189/1060,
  8225. bottom: 27/1216
  8226. },
  8227. form: "fae",
  8228. default: true
  8229. },
  8230. faeSitting: {
  8231. height: math.unit(5, "cm"),
  8232. weight: math.unit(10, "grams"),
  8233. name: "Sitting",
  8234. image: {
  8235. source: "./media/characters/rose/fae-sitting.svg",
  8236. extra: 737/577,
  8237. bottom: 356/1093
  8238. },
  8239. form: "fae"
  8240. },
  8241. faePaw: {
  8242. height: math.unit(1.35, "cm"),
  8243. name: "Paw",
  8244. image: {
  8245. source: "./media/characters/rose/fae-paw.svg"
  8246. },
  8247. form: "fae"
  8248. },
  8249. },
  8250. [
  8251. {
  8252. name: "True Micro",
  8253. height: math.unit(9, "cm"),
  8254. form: "liom"
  8255. },
  8256. {
  8257. name: "Micro",
  8258. height: math.unit(16, "cm"),
  8259. form: "liom"
  8260. },
  8261. {
  8262. name: "Normal",
  8263. height: math.unit(1.85, "meters"),
  8264. default: true,
  8265. form: "liom"
  8266. },
  8267. {
  8268. name: "Mini-Macro",
  8269. height: math.unit(5, "meters"),
  8270. form: "liom"
  8271. },
  8272. {
  8273. name: "Macro",
  8274. height: math.unit(15, "meters"),
  8275. form: "liom"
  8276. },
  8277. {
  8278. name: "True Macro",
  8279. height: math.unit(40, "meters"),
  8280. form: "liom"
  8281. },
  8282. {
  8283. name: "City Scale",
  8284. height: math.unit(1, "km"),
  8285. form: "liom"
  8286. },
  8287. {
  8288. name: "Plushie",
  8289. height: math.unit(9, "cm"),
  8290. form: "plush",
  8291. default: true
  8292. },
  8293. {
  8294. name: "Fae",
  8295. height: math.unit(10, "cm"),
  8296. form: "fae",
  8297. default: true
  8298. },
  8299. ],
  8300. {
  8301. "liom": {
  8302. name: "Liom"
  8303. },
  8304. "plush": {
  8305. name: "Plush"
  8306. },
  8307. "fae": {
  8308. name: "Fae Fox",
  8309. default: true
  8310. }
  8311. }
  8312. ))
  8313. characterMakers.push(() => makeCharacter(
  8314. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8315. {
  8316. front: {
  8317. height: math.unit(2, "meters"),
  8318. weight: math.unit(350, "lbs"),
  8319. name: "Front",
  8320. image: {
  8321. source: "./media/characters/regal/front.svg"
  8322. }
  8323. },
  8324. back: {
  8325. height: math.unit(2, "meters"),
  8326. weight: math.unit(350, "lbs"),
  8327. name: "Back",
  8328. image: {
  8329. source: "./media/characters/regal/back.svg"
  8330. }
  8331. },
  8332. },
  8333. [
  8334. {
  8335. name: "Macro",
  8336. height: math.unit(350, "feet"),
  8337. default: true
  8338. }
  8339. ]
  8340. ))
  8341. characterMakers.push(() => makeCharacter(
  8342. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8343. {
  8344. standing: {
  8345. height: math.unit(4 + 11/12, "feet"),
  8346. weight: math.unit(100, "lb"),
  8347. name: "Standing",
  8348. image: {
  8349. source: "./media/characters/opal/standing.svg",
  8350. extra: 1588/1513,
  8351. bottom: 23/1611
  8352. }
  8353. },
  8354. sitting: {
  8355. height: math.unit(2.3, "feet"),
  8356. weight: math.unit(100, "lb"),
  8357. name: "Sitting",
  8358. image: {
  8359. source: "./media/characters/opal/sitting.svg",
  8360. extra: 1031/892,
  8361. bottom: 142/1173
  8362. }
  8363. },
  8364. hand: {
  8365. height: math.unit(0.59, "feet"),
  8366. name: "Hand",
  8367. image: {
  8368. source: "./media/characters/opal/hand.svg"
  8369. }
  8370. },
  8371. foot: {
  8372. height: math.unit(0.61, "feet"),
  8373. name: "Foot",
  8374. image: {
  8375. source: "./media/characters/opal/foot.svg"
  8376. }
  8377. },
  8378. },
  8379. [
  8380. {
  8381. name: "Small",
  8382. height: math.unit(4 + 11 / 12, "feet")
  8383. },
  8384. {
  8385. name: "Normal",
  8386. height: math.unit(20, "feet"),
  8387. default: true
  8388. },
  8389. {
  8390. name: "Macro",
  8391. height: math.unit(120, "feet")
  8392. },
  8393. {
  8394. name: "Megamacro",
  8395. height: math.unit(80, "miles")
  8396. },
  8397. {
  8398. name: "True Size",
  8399. height: math.unit(100000, "lightyears")
  8400. },
  8401. ]
  8402. ))
  8403. characterMakers.push(() => makeCharacter(
  8404. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8405. {
  8406. front: {
  8407. height: math.unit(6, "feet"),
  8408. weight: math.unit(200, "lbs"),
  8409. name: "Front",
  8410. image: {
  8411. source: "./media/characters/vector-wuff/front.svg"
  8412. }
  8413. }
  8414. },
  8415. [
  8416. {
  8417. name: "Normal",
  8418. height: math.unit(2.8, "meters")
  8419. },
  8420. {
  8421. name: "Macro",
  8422. height: math.unit(450, "meters"),
  8423. default: true
  8424. },
  8425. {
  8426. name: "Megamacro",
  8427. height: math.unit(15, "kilometers")
  8428. }
  8429. ]
  8430. ))
  8431. characterMakers.push(() => makeCharacter(
  8432. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8433. {
  8434. front: {
  8435. height: math.unit(6, "feet"),
  8436. weight: math.unit(256, "lbs"),
  8437. name: "Front",
  8438. image: {
  8439. source: "./media/characters/dannik/front.svg"
  8440. }
  8441. }
  8442. },
  8443. [
  8444. {
  8445. name: "Macro",
  8446. height: math.unit(69.57, "meters"),
  8447. default: true
  8448. },
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8453. {
  8454. front: {
  8455. height: math.unit(6, "feet"),
  8456. weight: math.unit(120, "lbs"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/azura-saharah/front.svg"
  8460. }
  8461. },
  8462. back: {
  8463. height: math.unit(6, "feet"),
  8464. weight: math.unit(120, "lbs"),
  8465. name: "Back",
  8466. image: {
  8467. source: "./media/characters/azura-saharah/back.svg"
  8468. }
  8469. },
  8470. },
  8471. [
  8472. {
  8473. name: "Macro",
  8474. height: math.unit(100, "feet"),
  8475. default: true
  8476. },
  8477. ]
  8478. ))
  8479. characterMakers.push(() => makeCharacter(
  8480. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8481. {
  8482. side: {
  8483. height: math.unit(5 + 4 / 12, "feet"),
  8484. weight: math.unit(163, "lbs"),
  8485. name: "Side",
  8486. image: {
  8487. source: "./media/characters/kennedy/side.svg"
  8488. }
  8489. }
  8490. },
  8491. [
  8492. {
  8493. name: "Standard Doggo",
  8494. height: math.unit(5 + 4 / 12, "feet")
  8495. },
  8496. {
  8497. name: "Big Doggo",
  8498. height: math.unit(25 + 3 / 12, "feet"),
  8499. default: true
  8500. },
  8501. ]
  8502. ))
  8503. characterMakers.push(() => makeCharacter(
  8504. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8505. {
  8506. front: {
  8507. height: math.unit(5 + 5/12, "feet"),
  8508. weight: math.unit(100, "lbs"),
  8509. name: "Front",
  8510. image: {
  8511. source: "./media/characters/odios-de-lunar/front.svg",
  8512. extra: 1468/1323,
  8513. bottom: 22/1490
  8514. }
  8515. }
  8516. },
  8517. [
  8518. {
  8519. name: "Micro",
  8520. height: math.unit(3, "inches")
  8521. },
  8522. {
  8523. name: "Normal",
  8524. height: math.unit(5.5, "feet"),
  8525. default: true
  8526. },
  8527. {
  8528. name: "Macro",
  8529. height: math.unit(100, "feet")
  8530. },
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8535. {
  8536. back: {
  8537. height: math.unit(6, "feet"),
  8538. weight: math.unit(220, "lbs"),
  8539. name: "Back",
  8540. image: {
  8541. source: "./media/characters/mandake/back.svg"
  8542. }
  8543. }
  8544. },
  8545. [
  8546. {
  8547. name: "Normal",
  8548. height: math.unit(7, "feet"),
  8549. default: true
  8550. },
  8551. {
  8552. name: "Macro",
  8553. height: math.unit(78, "feet")
  8554. },
  8555. {
  8556. name: "Macro+",
  8557. height: math.unit(300, "meters")
  8558. },
  8559. {
  8560. name: "Macro++",
  8561. height: math.unit(2400, "feet")
  8562. },
  8563. {
  8564. name: "Megamacro",
  8565. height: math.unit(5167, "meters")
  8566. },
  8567. {
  8568. name: "Gigamacro",
  8569. height: math.unit(41769, "miles")
  8570. },
  8571. ]
  8572. ))
  8573. characterMakers.push(() => makeCharacter(
  8574. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8575. {
  8576. front: {
  8577. height: math.unit(6, "feet"),
  8578. weight: math.unit(120, "lbs"),
  8579. name: "Front",
  8580. image: {
  8581. source: "./media/characters/yozey/front.svg"
  8582. }
  8583. },
  8584. frontAlt: {
  8585. height: math.unit(6, "feet"),
  8586. weight: math.unit(120, "lbs"),
  8587. name: "Front (Alt)",
  8588. image: {
  8589. source: "./media/characters/yozey/front-alt.svg"
  8590. }
  8591. },
  8592. side: {
  8593. height: math.unit(6, "feet"),
  8594. weight: math.unit(120, "lbs"),
  8595. name: "Side",
  8596. image: {
  8597. source: "./media/characters/yozey/side.svg"
  8598. }
  8599. },
  8600. },
  8601. [
  8602. {
  8603. name: "Micro",
  8604. height: math.unit(3, "inches"),
  8605. default: true
  8606. },
  8607. {
  8608. name: "Normal",
  8609. height: math.unit(6, "feet")
  8610. }
  8611. ]
  8612. ))
  8613. characterMakers.push(() => makeCharacter(
  8614. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8615. {
  8616. front: {
  8617. height: math.unit(6, "feet"),
  8618. weight: math.unit(103, "lbs"),
  8619. name: "Front",
  8620. image: {
  8621. source: "./media/characters/valeska-voss/front.svg"
  8622. }
  8623. }
  8624. },
  8625. [
  8626. {
  8627. name: "Mini-Sized Sub",
  8628. height: math.unit(3.1, "inches")
  8629. },
  8630. {
  8631. name: "Mid-Sized Sub",
  8632. height: math.unit(6.2, "inches")
  8633. },
  8634. {
  8635. name: "Full-Sized Sub",
  8636. height: math.unit(9.3, "inches")
  8637. },
  8638. {
  8639. name: "Normal",
  8640. height: math.unit(5 + 2 / 12, "foot"),
  8641. default: true
  8642. },
  8643. ]
  8644. ))
  8645. characterMakers.push(() => makeCharacter(
  8646. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8647. {
  8648. front: {
  8649. height: math.unit(6, "feet"),
  8650. weight: math.unit(160, "lbs"),
  8651. name: "Front",
  8652. image: {
  8653. source: "./media/characters/gene-zeta/front.svg",
  8654. extra: 3006 / 2826,
  8655. bottom: 182 / 3188
  8656. }
  8657. }
  8658. },
  8659. [
  8660. {
  8661. name: "Micro",
  8662. height: math.unit(6, "inches")
  8663. },
  8664. {
  8665. name: "Normal",
  8666. height: math.unit(5 + 11 / 12, "foot"),
  8667. default: true
  8668. },
  8669. {
  8670. name: "Macro",
  8671. height: math.unit(140, "feet")
  8672. },
  8673. {
  8674. name: "Supercharged",
  8675. height: math.unit(2500, "feet")
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8681. {
  8682. front: {
  8683. height: math.unit(6, "feet"),
  8684. weight: math.unit(350, "lbs"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/razinox/front.svg",
  8688. extra: 1686 / 1548,
  8689. bottom: 28.2 / 1868
  8690. }
  8691. },
  8692. back: {
  8693. height: math.unit(6, "feet"),
  8694. weight: math.unit(350, "lbs"),
  8695. name: "Back",
  8696. image: {
  8697. source: "./media/characters/razinox/back.svg",
  8698. extra: 1660 / 1590,
  8699. bottom: 15 / 1665
  8700. }
  8701. },
  8702. },
  8703. [
  8704. {
  8705. name: "Normal",
  8706. height: math.unit(10 + 8 / 12, "foot")
  8707. },
  8708. {
  8709. name: "Minimacro",
  8710. height: math.unit(15, "foot")
  8711. },
  8712. {
  8713. name: "Macro",
  8714. height: math.unit(60, "foot"),
  8715. default: true
  8716. },
  8717. {
  8718. name: "Megamacro",
  8719. height: math.unit(5, "miles")
  8720. },
  8721. {
  8722. name: "Gigamacro",
  8723. height: math.unit(6000, "miles")
  8724. },
  8725. ]
  8726. ))
  8727. characterMakers.push(() => makeCharacter(
  8728. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8729. {
  8730. front: {
  8731. height: math.unit(6, "feet"),
  8732. weight: math.unit(150, "lbs"),
  8733. name: "Front",
  8734. image: {
  8735. source: "./media/characters/cobalt/front.svg"
  8736. }
  8737. }
  8738. },
  8739. [
  8740. {
  8741. name: "Normal",
  8742. height: math.unit(8 + 1 / 12, "foot")
  8743. },
  8744. {
  8745. name: "Macro",
  8746. height: math.unit(111, "foot"),
  8747. default: true
  8748. },
  8749. {
  8750. name: "Supracosmic",
  8751. height: math.unit(1e42, "feet")
  8752. },
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8757. {
  8758. front: {
  8759. height: math.unit(5, "inches"),
  8760. name: "Front",
  8761. image: {
  8762. source: "./media/characters/amanda/front.svg",
  8763. extra: 926/791,
  8764. bottom: 38/964
  8765. }
  8766. },
  8767. back: {
  8768. height: math.unit(5, "inches"),
  8769. name: "Back",
  8770. image: {
  8771. source: "./media/characters/amanda/back.svg",
  8772. extra: 909/805,
  8773. bottom: 43/952
  8774. }
  8775. },
  8776. },
  8777. [
  8778. {
  8779. name: "Micro",
  8780. height: math.unit(5, "inches"),
  8781. default: true
  8782. },
  8783. ]
  8784. ))
  8785. characterMakers.push(() => makeCharacter(
  8786. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8787. {
  8788. front: {
  8789. height: math.unit(2.75, "meters"),
  8790. weight: math.unit(1200, "lb"),
  8791. name: "Front",
  8792. image: {
  8793. source: "./media/characters/teal/front.svg",
  8794. extra: 2463 / 2320,
  8795. bottom: 166 / 2629
  8796. }
  8797. },
  8798. back: {
  8799. height: math.unit(2.75, "meters"),
  8800. weight: math.unit(1200, "lb"),
  8801. name: "Back",
  8802. image: {
  8803. source: "./media/characters/teal/back.svg",
  8804. extra: 2580 / 2489,
  8805. bottom: 151 / 2731
  8806. }
  8807. },
  8808. sitting: {
  8809. height: math.unit(1.9, "meters"),
  8810. weight: math.unit(1200, "lb"),
  8811. name: "Sitting",
  8812. image: {
  8813. source: "./media/characters/teal/sitting.svg",
  8814. extra: 623 / 590,
  8815. bottom: 121 / 744
  8816. }
  8817. },
  8818. standing: {
  8819. height: math.unit(2.75, "meters"),
  8820. weight: math.unit(1200, "lb"),
  8821. name: "Standing",
  8822. image: {
  8823. source: "./media/characters/teal/standing.svg",
  8824. extra: 923 / 893,
  8825. bottom: 60 / 983
  8826. }
  8827. },
  8828. stretching: {
  8829. height: math.unit(3.65, "meters"),
  8830. weight: math.unit(1200, "lb"),
  8831. name: "Stretching",
  8832. image: {
  8833. source: "./media/characters/teal/stretching.svg",
  8834. extra: 1276 / 1244,
  8835. bottom: 0 / 1276
  8836. }
  8837. },
  8838. legged: {
  8839. height: math.unit(1.3, "meters"),
  8840. weight: math.unit(100, "lb"),
  8841. name: "Legged",
  8842. image: {
  8843. source: "./media/characters/teal/legged.svg",
  8844. extra: 462 / 437,
  8845. bottom: 24 / 486
  8846. }
  8847. },
  8848. naga: {
  8849. height: math.unit(5.4, "meters"),
  8850. weight: math.unit(4000, "lb"),
  8851. name: "Naga",
  8852. image: {
  8853. source: "./media/characters/teal/naga.svg",
  8854. extra: 1902 / 1858,
  8855. bottom: 0 / 1902
  8856. }
  8857. },
  8858. hand: {
  8859. height: math.unit(0.52, "meters"),
  8860. name: "Hand",
  8861. image: {
  8862. source: "./media/characters/teal/hand.svg"
  8863. }
  8864. },
  8865. maw: {
  8866. height: math.unit(0.43, "meters"),
  8867. name: "Maw",
  8868. image: {
  8869. source: "./media/characters/teal/maw.svg"
  8870. }
  8871. },
  8872. slit: {
  8873. height: math.unit(0.25, "meters"),
  8874. name: "Slit",
  8875. image: {
  8876. source: "./media/characters/teal/slit.svg"
  8877. }
  8878. },
  8879. },
  8880. [
  8881. {
  8882. name: "Normal",
  8883. height: math.unit(2.75, "meters"),
  8884. default: true
  8885. },
  8886. {
  8887. name: "Macro",
  8888. height: math.unit(300, "feet")
  8889. },
  8890. {
  8891. name: "Macro+",
  8892. height: math.unit(2000, "feet")
  8893. },
  8894. ]
  8895. ))
  8896. characterMakers.push(() => makeCharacter(
  8897. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8898. {
  8899. frontCat: {
  8900. height: math.unit(6, "feet"),
  8901. weight: math.unit(180, "lbs"),
  8902. name: "Front (Cat)",
  8903. image: {
  8904. source: "./media/characters/ravin-amulet/front-cat.svg"
  8905. }
  8906. },
  8907. frontCatAlt: {
  8908. height: math.unit(6, "feet"),
  8909. weight: math.unit(180, "lbs"),
  8910. name: "Front (Alt, Cat)",
  8911. image: {
  8912. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8913. }
  8914. },
  8915. frontWerewolf: {
  8916. height: math.unit(6 * 1.2, "feet"),
  8917. weight: math.unit(225, "lbs"),
  8918. name: "Front (Werewolf)",
  8919. image: {
  8920. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8921. }
  8922. },
  8923. backWerewolf: {
  8924. height: math.unit(6 * 1.2, "feet"),
  8925. weight: math.unit(225, "lbs"),
  8926. name: "Back (Werewolf)",
  8927. image: {
  8928. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8929. }
  8930. },
  8931. },
  8932. [
  8933. {
  8934. name: "Nano",
  8935. height: math.unit(1, "micrometer")
  8936. },
  8937. {
  8938. name: "Micro",
  8939. height: math.unit(1, "inch")
  8940. },
  8941. {
  8942. name: "Normal",
  8943. height: math.unit(6, "feet"),
  8944. default: true
  8945. },
  8946. {
  8947. name: "Macro",
  8948. height: math.unit(60, "feet")
  8949. }
  8950. ]
  8951. ))
  8952. characterMakers.push(() => makeCharacter(
  8953. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8954. {
  8955. front: {
  8956. height: math.unit(6, "feet"),
  8957. weight: math.unit(165, "lbs"),
  8958. name: "Front",
  8959. image: {
  8960. source: "./media/characters/fluoresce/front.svg"
  8961. }
  8962. }
  8963. },
  8964. [
  8965. {
  8966. name: "Micro",
  8967. height: math.unit(6, "cm")
  8968. },
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(5 + 7 / 12, "feet"),
  8972. default: true
  8973. },
  8974. {
  8975. name: "Macro",
  8976. height: math.unit(56, "feet")
  8977. },
  8978. {
  8979. name: "Megamacro",
  8980. height: math.unit(1.9, "miles")
  8981. },
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8986. {
  8987. front: {
  8988. height: math.unit(9 + 6 / 12, "feet"),
  8989. weight: math.unit(523, "lbs"),
  8990. name: "Side",
  8991. image: {
  8992. source: "./media/characters/aurora/side.svg",
  8993. extra: 474/393,
  8994. bottom: 5/479
  8995. }
  8996. }
  8997. },
  8998. [
  8999. {
  9000. name: "Normal",
  9001. height: math.unit(9 + 6 / 12, "feet")
  9002. },
  9003. {
  9004. name: "Macro",
  9005. height: math.unit(96, "feet"),
  9006. default: true
  9007. },
  9008. {
  9009. name: "Macro+",
  9010. height: math.unit(243, "feet")
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9016. {
  9017. front: {
  9018. height: math.unit(194, "cm"),
  9019. weight: math.unit(90, "kg"),
  9020. name: "Front",
  9021. image: {
  9022. source: "./media/characters/ranek/front.svg",
  9023. extra: 1862/1791,
  9024. bottom: 80/1942
  9025. }
  9026. },
  9027. back: {
  9028. height: math.unit(194, "cm"),
  9029. weight: math.unit(90, "kg"),
  9030. name: "Back",
  9031. image: {
  9032. source: "./media/characters/ranek/back.svg",
  9033. extra: 1853/1787,
  9034. bottom: 74/1927
  9035. }
  9036. },
  9037. feral: {
  9038. height: math.unit(30, "cm"),
  9039. weight: math.unit(1.6, "lbs"),
  9040. name: "Feral",
  9041. image: {
  9042. source: "./media/characters/ranek/feral.svg",
  9043. extra: 990/631,
  9044. bottom: 29/1019
  9045. }
  9046. },
  9047. },
  9048. [
  9049. {
  9050. name: "Normal",
  9051. height: math.unit(194, "cm"),
  9052. default: true
  9053. },
  9054. {
  9055. name: "Macro",
  9056. height: math.unit(100, "meters")
  9057. },
  9058. ]
  9059. ))
  9060. characterMakers.push(() => makeCharacter(
  9061. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9062. {
  9063. front: {
  9064. height: math.unit(5 + 6 / 12, "feet"),
  9065. weight: math.unit(153, "lbs"),
  9066. name: "Front",
  9067. image: {
  9068. source: "./media/characters/andrew-cooper/front.svg"
  9069. }
  9070. },
  9071. },
  9072. [
  9073. {
  9074. name: "Nano",
  9075. height: math.unit(1, "mm")
  9076. },
  9077. {
  9078. name: "Micro",
  9079. height: math.unit(2, "inches")
  9080. },
  9081. {
  9082. name: "Normal",
  9083. height: math.unit(5 + 6 / 12, "feet"),
  9084. default: true
  9085. }
  9086. ]
  9087. ))
  9088. characterMakers.push(() => makeCharacter(
  9089. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9090. {
  9091. front: {
  9092. height: math.unit(6, "feet"),
  9093. weight: math.unit(180, "lbs"),
  9094. name: "Front",
  9095. image: {
  9096. source: "./media/characters/akane-sato/front.svg",
  9097. extra: 1219 / 1140
  9098. }
  9099. },
  9100. back: {
  9101. height: math.unit(6, "feet"),
  9102. weight: math.unit(180, "lbs"),
  9103. name: "Back",
  9104. image: {
  9105. source: "./media/characters/akane-sato/back.svg",
  9106. extra: 1219 / 1170
  9107. }
  9108. },
  9109. },
  9110. [
  9111. {
  9112. name: "Normal",
  9113. height: math.unit(2.5, "meters")
  9114. },
  9115. {
  9116. name: "Macro",
  9117. height: math.unit(250, "meters"),
  9118. default: true
  9119. },
  9120. {
  9121. name: "Megamacro",
  9122. height: math.unit(25, "km")
  9123. },
  9124. ]
  9125. ))
  9126. characterMakers.push(() => makeCharacter(
  9127. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9128. {
  9129. front: {
  9130. height: math.unit(6, "feet"),
  9131. weight: math.unit(65, "kg"),
  9132. name: "Front",
  9133. image: {
  9134. source: "./media/characters/rook/front.svg",
  9135. extra: 960 / 950
  9136. }
  9137. }
  9138. },
  9139. [
  9140. {
  9141. name: "Normal",
  9142. height: math.unit(8.8, "feet")
  9143. },
  9144. {
  9145. name: "Macro",
  9146. height: math.unit(88, "feet"),
  9147. default: true
  9148. },
  9149. {
  9150. name: "Megamacro",
  9151. height: math.unit(8, "miles")
  9152. },
  9153. ]
  9154. ))
  9155. characterMakers.push(() => makeCharacter(
  9156. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9157. {
  9158. front: {
  9159. height: math.unit(12 + 2 / 12, "feet"),
  9160. weight: math.unit(808, "lbs"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/prodigy/front.svg"
  9164. }
  9165. }
  9166. },
  9167. [
  9168. {
  9169. name: "Normal",
  9170. height: math.unit(12 + 2 / 12, "feet"),
  9171. default: true
  9172. },
  9173. {
  9174. name: "Macro",
  9175. height: math.unit(143, "feet")
  9176. },
  9177. {
  9178. name: "Macro+",
  9179. height: math.unit(400, "feet")
  9180. },
  9181. ]
  9182. ))
  9183. characterMakers.push(() => makeCharacter(
  9184. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9185. {
  9186. front: {
  9187. height: math.unit(6, "feet"),
  9188. weight: math.unit(225, "lbs"),
  9189. name: "Front",
  9190. image: {
  9191. source: "./media/characters/daniel/front.svg"
  9192. }
  9193. },
  9194. leaning: {
  9195. height: math.unit(6, "feet"),
  9196. weight: math.unit(225, "lbs"),
  9197. name: "Leaning",
  9198. image: {
  9199. source: "./media/characters/daniel/leaning.svg"
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Macro",
  9206. height: math.unit(1000, "feet"),
  9207. default: true
  9208. },
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9213. {
  9214. front: {
  9215. height: math.unit(6, "feet"),
  9216. weight: math.unit(88, "lbs"),
  9217. name: "Front",
  9218. image: {
  9219. source: "./media/characters/chiros/front.svg",
  9220. extra: 306 / 226
  9221. }
  9222. },
  9223. side: {
  9224. height: math.unit(6, "feet"),
  9225. weight: math.unit(88, "lbs"),
  9226. name: "Side",
  9227. image: {
  9228. source: "./media/characters/chiros/side.svg",
  9229. extra: 306 / 226
  9230. }
  9231. },
  9232. },
  9233. [
  9234. {
  9235. name: "Normal",
  9236. height: math.unit(6, "cm"),
  9237. default: true
  9238. },
  9239. ]
  9240. ))
  9241. characterMakers.push(() => makeCharacter(
  9242. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9243. {
  9244. front: {
  9245. height: math.unit(6, "feet"),
  9246. weight: math.unit(100, "lbs"),
  9247. name: "Front",
  9248. image: {
  9249. source: "./media/characters/selka/front.svg",
  9250. extra: 947 / 887
  9251. }
  9252. }
  9253. },
  9254. [
  9255. {
  9256. name: "Normal",
  9257. height: math.unit(5, "cm"),
  9258. default: true
  9259. },
  9260. ]
  9261. ))
  9262. characterMakers.push(() => makeCharacter(
  9263. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9264. {
  9265. front: {
  9266. height: math.unit(8 + 3 / 12, "feet"),
  9267. weight: math.unit(424, "lbs"),
  9268. name: "Front",
  9269. image: {
  9270. source: "./media/characters/verin/front.svg",
  9271. extra: 1845 / 1550
  9272. }
  9273. },
  9274. frontArmored: {
  9275. height: math.unit(8 + 3 / 12, "feet"),
  9276. weight: math.unit(424, "lbs"),
  9277. name: "Front (Armored)",
  9278. image: {
  9279. source: "./media/characters/verin/front-armor.svg",
  9280. extra: 1845 / 1550,
  9281. bottom: 0.01
  9282. }
  9283. },
  9284. back: {
  9285. height: math.unit(8 + 3 / 12, "feet"),
  9286. weight: math.unit(424, "lbs"),
  9287. name: "Back",
  9288. image: {
  9289. source: "./media/characters/verin/back.svg",
  9290. bottom: 0.1,
  9291. extra: 1
  9292. }
  9293. },
  9294. foot: {
  9295. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9296. name: "Foot",
  9297. image: {
  9298. source: "./media/characters/verin/foot.svg"
  9299. }
  9300. },
  9301. },
  9302. [
  9303. {
  9304. name: "Normal",
  9305. height: math.unit(8 + 3 / 12, "feet")
  9306. },
  9307. {
  9308. name: "Minimacro",
  9309. height: math.unit(21, "feet"),
  9310. default: true
  9311. },
  9312. {
  9313. name: "Macro",
  9314. height: math.unit(626, "feet")
  9315. },
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(2.718, "meters"),
  9323. weight: math.unit(150, "lbs"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/sovrim-terraquian/front.svg",
  9327. extra: 1752/1689,
  9328. bottom: 36/1788
  9329. }
  9330. },
  9331. back: {
  9332. height: math.unit(2.718, "meters"),
  9333. weight: math.unit(150, "lbs"),
  9334. name: "Back",
  9335. image: {
  9336. source: "./media/characters/sovrim-terraquian/back.svg",
  9337. extra: 1698/1657,
  9338. bottom: 58/1756
  9339. }
  9340. },
  9341. tongue: {
  9342. height: math.unit(2.865, "feet"),
  9343. name: "Tongue",
  9344. image: {
  9345. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9346. }
  9347. },
  9348. hand: {
  9349. height: math.unit(1.61, "feet"),
  9350. name: "Hand",
  9351. image: {
  9352. source: "./media/characters/sovrim-terraquian/hand.svg"
  9353. }
  9354. },
  9355. foot: {
  9356. height: math.unit(1.05, "feet"),
  9357. name: "Foot",
  9358. image: {
  9359. source: "./media/characters/sovrim-terraquian/foot.svg"
  9360. }
  9361. },
  9362. footAlt: {
  9363. height: math.unit(0.88, "feet"),
  9364. name: "Foot (Alt)",
  9365. image: {
  9366. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Micro",
  9373. height: math.unit(2, "inches")
  9374. },
  9375. {
  9376. name: "Small",
  9377. height: math.unit(1, "meter")
  9378. },
  9379. {
  9380. name: "Normal",
  9381. height: math.unit(Math.E, "meters"),
  9382. default: true
  9383. },
  9384. {
  9385. name: "Macro",
  9386. height: math.unit(20, "meters")
  9387. },
  9388. {
  9389. name: "Macro+",
  9390. height: math.unit(400, "meters")
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(7, "feet"),
  9399. weight: math.unit(489, "lbs"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/reece-silvermane/front.svg",
  9403. bottom: 0.02,
  9404. extra: 1
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Macro",
  9411. height: math.unit(1.5, "miles"),
  9412. default: true
  9413. },
  9414. ]
  9415. ))
  9416. characterMakers.push(() => makeCharacter(
  9417. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9418. {
  9419. front: {
  9420. height: math.unit(6, "feet"),
  9421. weight: math.unit(78, "kg"),
  9422. name: "Front",
  9423. image: {
  9424. source: "./media/characters/kane/front.svg",
  9425. extra: 978 / 899
  9426. }
  9427. },
  9428. back: {
  9429. height: math.unit(6, "feet"),
  9430. weight: math.unit(78, "kg"),
  9431. name: "Back",
  9432. image: {
  9433. source: "./media/characters/kane/back.svg",
  9434. extra: 1966/1800,
  9435. bottom: 0/1966
  9436. }
  9437. },
  9438. head: {
  9439. height: math.unit(1.4, "feet"),
  9440. name: "Head",
  9441. image: {
  9442. source: "./media/characters/kane/head.svg"
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(2.1, "m"),
  9450. },
  9451. {
  9452. name: "Macro",
  9453. height: math.unit(1, "km"),
  9454. default: true
  9455. },
  9456. ]
  9457. ))
  9458. characterMakers.push(() => makeCharacter(
  9459. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9460. {
  9461. front: {
  9462. height: math.unit(6, "feet"),
  9463. weight: math.unit(200, "kg"),
  9464. name: "Front",
  9465. image: {
  9466. source: "./media/characters/tegon/front.svg",
  9467. bottom: 0.01,
  9468. extra: 1
  9469. }
  9470. },
  9471. },
  9472. [
  9473. {
  9474. name: "Micro",
  9475. height: math.unit(1, "inch")
  9476. },
  9477. {
  9478. name: "Normal",
  9479. height: math.unit(6 + 3 / 12, "feet"),
  9480. default: true
  9481. },
  9482. {
  9483. name: "Macro",
  9484. height: math.unit(300, "feet")
  9485. },
  9486. {
  9487. name: "Megamacro",
  9488. height: math.unit(69, "miles")
  9489. },
  9490. ]
  9491. ))
  9492. characterMakers.push(() => makeCharacter(
  9493. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9494. {
  9495. side: {
  9496. height: math.unit(6, "feet"),
  9497. weight: math.unit(2304, "lbs"),
  9498. name: "Side",
  9499. image: {
  9500. source: "./media/characters/arcturax/side.svg",
  9501. extra: 790 / 376,
  9502. bottom: 0.01
  9503. }
  9504. },
  9505. },
  9506. [
  9507. {
  9508. name: "Micro",
  9509. height: math.unit(2, "inch")
  9510. },
  9511. {
  9512. name: "Normal",
  9513. height: math.unit(6, "feet")
  9514. },
  9515. {
  9516. name: "Macro",
  9517. height: math.unit(39, "feet"),
  9518. default: true
  9519. },
  9520. {
  9521. name: "Megamacro",
  9522. height: math.unit(7, "miles")
  9523. },
  9524. ]
  9525. ))
  9526. characterMakers.push(() => makeCharacter(
  9527. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9528. {
  9529. front: {
  9530. height: math.unit(6, "feet"),
  9531. weight: math.unit(50, "lbs"),
  9532. name: "Front",
  9533. image: {
  9534. source: "./media/characters/sentri/front.svg",
  9535. extra: 1750 / 1570,
  9536. bottom: 0.025
  9537. }
  9538. },
  9539. frontAlt: {
  9540. height: math.unit(6, "feet"),
  9541. weight: math.unit(50, "lbs"),
  9542. name: "Front (Alt)",
  9543. image: {
  9544. source: "./media/characters/sentri/front-alt.svg",
  9545. extra: 1750 / 1570,
  9546. bottom: 0.025
  9547. }
  9548. },
  9549. },
  9550. [
  9551. {
  9552. name: "Normal",
  9553. height: math.unit(15, "feet"),
  9554. default: true
  9555. },
  9556. {
  9557. name: "Macro",
  9558. height: math.unit(2500, "feet")
  9559. }
  9560. ]
  9561. ))
  9562. characterMakers.push(() => makeCharacter(
  9563. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9564. {
  9565. front: {
  9566. height: math.unit(5 + 8 / 12, "feet"),
  9567. weight: math.unit(130, "lbs"),
  9568. name: "Front",
  9569. image: {
  9570. source: "./media/characters/corvin/front.svg",
  9571. extra: 1803 / 1629
  9572. }
  9573. },
  9574. frontShirt: {
  9575. height: math.unit(5 + 8 / 12, "feet"),
  9576. weight: math.unit(130, "lbs"),
  9577. name: "Front (Shirt)",
  9578. image: {
  9579. source: "./media/characters/corvin/front-shirt.svg",
  9580. extra: 1803 / 1629
  9581. }
  9582. },
  9583. frontPoncho: {
  9584. height: math.unit(5 + 8 / 12, "feet"),
  9585. weight: math.unit(130, "lbs"),
  9586. name: "Front (Poncho)",
  9587. image: {
  9588. source: "./media/characters/corvin/front-poncho.svg",
  9589. extra: 1803 / 1629
  9590. }
  9591. },
  9592. side: {
  9593. height: math.unit(5 + 8 / 12, "feet"),
  9594. weight: math.unit(130, "lbs"),
  9595. name: "Side",
  9596. image: {
  9597. source: "./media/characters/corvin/side.svg",
  9598. extra: 1012 / 945
  9599. }
  9600. },
  9601. back: {
  9602. height: math.unit(5 + 8 / 12, "feet"),
  9603. weight: math.unit(130, "lbs"),
  9604. name: "Back",
  9605. image: {
  9606. source: "./media/characters/corvin/back.svg",
  9607. extra: 1803 / 1629
  9608. }
  9609. },
  9610. },
  9611. [
  9612. {
  9613. name: "Micro",
  9614. height: math.unit(3, "inches")
  9615. },
  9616. {
  9617. name: "Normal",
  9618. height: math.unit(5 + 8 / 12, "feet")
  9619. },
  9620. {
  9621. name: "Macro",
  9622. height: math.unit(300, "feet"),
  9623. default: true
  9624. },
  9625. {
  9626. name: "Megamacro",
  9627. height: math.unit(500, "miles")
  9628. }
  9629. ]
  9630. ))
  9631. characterMakers.push(() => makeCharacter(
  9632. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9633. {
  9634. front: {
  9635. height: math.unit(6, "feet"),
  9636. weight: math.unit(135, "lbs"),
  9637. name: "Front",
  9638. image: {
  9639. source: "./media/characters/q/front.svg",
  9640. extra: 854 / 752,
  9641. bottom: 0.005
  9642. }
  9643. },
  9644. back: {
  9645. height: math.unit(6, "feet"),
  9646. weight: math.unit(130, "lbs"),
  9647. name: "Back",
  9648. image: {
  9649. source: "./media/characters/q/back.svg",
  9650. extra: 854 / 752
  9651. }
  9652. },
  9653. },
  9654. [
  9655. {
  9656. name: "Macro",
  9657. height: math.unit(90, "feet"),
  9658. default: true
  9659. },
  9660. {
  9661. name: "Extra Macro",
  9662. height: math.unit(300, "feet"),
  9663. },
  9664. {
  9665. name: "BIG WALF",
  9666. height: math.unit(750, "feet"),
  9667. },
  9668. ]
  9669. ))
  9670. characterMakers.push(() => makeCharacter(
  9671. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9672. {
  9673. front: {
  9674. height: math.unit(3, "feet"),
  9675. weight: math.unit(28, "lbs"),
  9676. name: "Front",
  9677. image: {
  9678. source: "./media/characters/citrine/front.svg"
  9679. }
  9680. }
  9681. },
  9682. [
  9683. {
  9684. name: "Normal",
  9685. height: math.unit(3, "feet"),
  9686. default: true
  9687. }
  9688. ]
  9689. ))
  9690. characterMakers.push(() => makeCharacter(
  9691. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9692. {
  9693. front: {
  9694. height: math.unit(14, "feet"),
  9695. weight: math.unit(1450, "kg"),
  9696. preyCapacity: math.unit(15, "people"),
  9697. name: "Front",
  9698. image: {
  9699. source: "./media/characters/aura-starwind/front.svg",
  9700. extra: 1440/1327,
  9701. bottom: 11/1451
  9702. }
  9703. },
  9704. side: {
  9705. height: math.unit(14, "feet"),
  9706. weight: math.unit(1450, "kg"),
  9707. preyCapacity: math.unit(15, "people"),
  9708. name: "Side",
  9709. image: {
  9710. source: "./media/characters/aura-starwind/side.svg",
  9711. extra: 1654 / 1497
  9712. }
  9713. },
  9714. taur: {
  9715. height: math.unit(18, "feet"),
  9716. weight: math.unit(5500, "kg"),
  9717. preyCapacity: math.unit(50, "people"),
  9718. name: "Taur",
  9719. image: {
  9720. source: "./media/characters/aura-starwind/taur.svg",
  9721. extra: 1760 / 1650
  9722. }
  9723. },
  9724. feral: {
  9725. height: math.unit(46, "feet"),
  9726. weight: math.unit(25000, "kg"),
  9727. preyCapacity: math.unit(120, "people"),
  9728. name: "Feral",
  9729. image: {
  9730. source: "./media/characters/aura-starwind/feral.svg"
  9731. }
  9732. },
  9733. },
  9734. [
  9735. {
  9736. name: "Normal",
  9737. height: math.unit(14, "feet"),
  9738. default: true
  9739. },
  9740. {
  9741. name: "Macro",
  9742. height: math.unit(50, "meters")
  9743. },
  9744. {
  9745. name: "Megamacro",
  9746. height: math.unit(5000, "meters")
  9747. },
  9748. {
  9749. name: "Gigamacro",
  9750. height: math.unit(100000, "kilometers")
  9751. },
  9752. ]
  9753. ))
  9754. characterMakers.push(() => makeCharacter(
  9755. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9756. {
  9757. front: {
  9758. height: math.unit(2 + 7 / 12, "feet"),
  9759. weight: math.unit(32, "lbs"),
  9760. name: "Front",
  9761. image: {
  9762. source: "./media/characters/rivet/front.svg",
  9763. extra: 1716 / 1658,
  9764. bottom: 0.03
  9765. }
  9766. },
  9767. foot: {
  9768. height: math.unit(0.551, "feet"),
  9769. name: "Rivet's Foot",
  9770. image: {
  9771. source: "./media/characters/rivet/foot.svg"
  9772. },
  9773. rename: true
  9774. }
  9775. },
  9776. [
  9777. {
  9778. name: "Micro",
  9779. height: math.unit(1.5, "inches"),
  9780. },
  9781. {
  9782. name: "Normal",
  9783. height: math.unit(2 + 7 / 12, "feet"),
  9784. default: true
  9785. },
  9786. {
  9787. name: "Macro",
  9788. height: math.unit(85, "feet")
  9789. },
  9790. {
  9791. name: "Megamacro",
  9792. height: math.unit(2.2, "km")
  9793. }
  9794. ]
  9795. ))
  9796. characterMakers.push(() => makeCharacter(
  9797. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9798. {
  9799. front: {
  9800. height: math.unit(5 + 9 / 12, "feet"),
  9801. weight: math.unit(150, "lbs"),
  9802. name: "Front",
  9803. image: {
  9804. source: "./media/characters/coffee/front.svg",
  9805. extra: 946/880,
  9806. bottom: 66/1012
  9807. }
  9808. },
  9809. foot: {
  9810. height: math.unit(1.29, "feet"),
  9811. name: "Foot",
  9812. image: {
  9813. source: "./media/characters/coffee/foot.svg"
  9814. }
  9815. },
  9816. },
  9817. [
  9818. {
  9819. name: "Micro",
  9820. height: math.unit(2, "inches"),
  9821. },
  9822. {
  9823. name: "Normal",
  9824. height: math.unit(5 + 9 / 12, "feet"),
  9825. default: true
  9826. },
  9827. {
  9828. name: "Macro",
  9829. height: math.unit(800, "feet")
  9830. },
  9831. {
  9832. name: "Megamacro",
  9833. height: math.unit(25, "miles")
  9834. }
  9835. ]
  9836. ))
  9837. characterMakers.push(() => makeCharacter(
  9838. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9839. {
  9840. front: {
  9841. height: math.unit(6, "feet"),
  9842. weight: math.unit(200, "lbs"),
  9843. name: "Front",
  9844. image: {
  9845. source: "./media/characters/chari-gal/front.svg",
  9846. extra: 735/649,
  9847. bottom: 55/790
  9848. },
  9849. form: "normal",
  9850. default: true
  9851. },
  9852. back: {
  9853. height: math.unit(6, "feet"),
  9854. weight: math.unit(200, "lb"),
  9855. name: "Back",
  9856. image: {
  9857. source: "./media/characters/chari-gal/back.svg",
  9858. extra: 762/666,
  9859. bottom: 31/793
  9860. },
  9861. form: "normal"
  9862. },
  9863. mouth: {
  9864. height: math.unit(1.35, "feet"),
  9865. name: "Mouth",
  9866. image: {
  9867. source: "./media/characters/chari-gal/mouth.svg"
  9868. },
  9869. form: "normal"
  9870. },
  9871. gigantamax: {
  9872. height: math.unit(6 * 16, "feet"),
  9873. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9874. name: "Gigantamax",
  9875. image: {
  9876. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9877. extra: 1507/1149,
  9878. bottom: 254/1761
  9879. },
  9880. form: "gigantamax",
  9881. default: true
  9882. },
  9883. },
  9884. [
  9885. {
  9886. name: "Normal",
  9887. height: math.unit(5 + 7 / 12, "feet"),
  9888. form: "normal",
  9889. },
  9890. {
  9891. name: "Macro",
  9892. height: math.unit(200, "feet"),
  9893. default: true,
  9894. form: "normal"
  9895. },
  9896. {
  9897. name: "Normal",
  9898. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9899. form: "gigantamax",
  9900. },
  9901. {
  9902. name: "Macro",
  9903. height: math.unit(16 * 200, "feet"),
  9904. default: true,
  9905. form: "gigantamax"
  9906. },
  9907. ],
  9908. {
  9909. "normal": {
  9910. name: "Normal",
  9911. default: true
  9912. },
  9913. "gigantamax": {
  9914. name: "Gigantamax",
  9915. },
  9916. }
  9917. ))
  9918. characterMakers.push(() => makeCharacter(
  9919. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9920. {
  9921. front: {
  9922. height: math.unit(6, "feet"),
  9923. weight: math.unit(150, "lbs"),
  9924. name: "Front",
  9925. image: {
  9926. source: "./media/characters/nova/front.svg",
  9927. extra: 5000 / 4722,
  9928. bottom: 0.02
  9929. }
  9930. }
  9931. },
  9932. [
  9933. {
  9934. name: "Micro-",
  9935. height: math.unit(0.8, "inches")
  9936. },
  9937. {
  9938. name: "Micro",
  9939. height: math.unit(2, "inches"),
  9940. default: true
  9941. },
  9942. ]
  9943. ))
  9944. characterMakers.push(() => makeCharacter(
  9945. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9946. {
  9947. koboldFront: {
  9948. height: math.unit(3 + 1 / 12, "feet"),
  9949. weight: math.unit(21.7, "lbs"),
  9950. name: "Front",
  9951. image: {
  9952. source: "./media/characters/argent/kobold-front.svg",
  9953. extra: 1471 / 1331,
  9954. bottom: 100.8 / 1575.5
  9955. },
  9956. form: "kobold",
  9957. default: true
  9958. },
  9959. dragonFront: {
  9960. height: math.unit(75, "inches"),
  9961. name: "Front",
  9962. image: {
  9963. source: "./media/characters/argent/dragon-front.svg",
  9964. extra: 1389/1248,
  9965. bottom: 54/1443
  9966. },
  9967. form: "dragon",
  9968. },
  9969. dragonBack: {
  9970. height: math.unit(75, "inches"),
  9971. name: "Back",
  9972. image: {
  9973. source: "./media/characters/argent/dragon-back.svg",
  9974. extra: 1399/1271,
  9975. bottom: 23/1422
  9976. },
  9977. form: "dragon",
  9978. },
  9979. dragonDressed: {
  9980. height: math.unit(75, "inches"),
  9981. name: "Dressed",
  9982. image: {
  9983. source: "./media/characters/argent/dragon-dressed.svg",
  9984. extra: 1350/1215,
  9985. bottom: 26/1376
  9986. },
  9987. form: "dragon"
  9988. },
  9989. dragonHead: {
  9990. height: math.unit(23.5, "inches"),
  9991. name: "Head",
  9992. image: {
  9993. source: "./media/characters/argent/dragon-head.svg"
  9994. },
  9995. form: "dragon",
  9996. },
  9997. },
  9998. [
  9999. {
  10000. name: "Micro",
  10001. height: math.unit(2, "inches"),
  10002. form: "kobold",
  10003. },
  10004. {
  10005. name: "Normal",
  10006. height: math.unit(3 + 1 / 12, "feet"),
  10007. form: "kobold",
  10008. default: true
  10009. },
  10010. {
  10011. name: "Macro",
  10012. height: math.unit(120, "feet"),
  10013. form: "kobold",
  10014. },
  10015. {
  10016. name: "Speck",
  10017. height: math.unit(1, "mm"),
  10018. form: "dragon",
  10019. },
  10020. {
  10021. name: "Tiny",
  10022. height: math.unit(1, "cm"),
  10023. form: "dragon",
  10024. },
  10025. {
  10026. name: "Micro",
  10027. height: math.unit(5, "cm"),
  10028. form: "dragon",
  10029. },
  10030. {
  10031. name: "Normal",
  10032. height: math.unit(75, "inches"),
  10033. form: "dragon",
  10034. default: true
  10035. },
  10036. {
  10037. name: "Extra Tall",
  10038. height: math.unit(9, "feet"),
  10039. form: "dragon",
  10040. },
  10041. {
  10042. name: "Inconvenient",
  10043. height: math.unit(5, "meters"),
  10044. form: "dragon",
  10045. },
  10046. {
  10047. name: "Macro",
  10048. height: math.unit(70, "meters"),
  10049. form: "dragon",
  10050. },
  10051. {
  10052. name: "Macro+",
  10053. height: math.unit(250, "meters"),
  10054. form: "dragon",
  10055. },
  10056. {
  10057. name: "Megamacro",
  10058. height: math.unit(20, "km"),
  10059. form: "dragon",
  10060. },
  10061. {
  10062. name: "Mountainous",
  10063. height: math.unit(100, "km"),
  10064. form: "dragon",
  10065. },
  10066. {
  10067. name: "Continental",
  10068. height: math.unit(2, "megameters"),
  10069. form: "dragon",
  10070. },
  10071. {
  10072. name: "Too Big",
  10073. height: math.unit(900, "megameters"),
  10074. form: "dragon",
  10075. },
  10076. ],
  10077. {
  10078. "kobold": {
  10079. name: "Kobold",
  10080. default: true
  10081. },
  10082. "dragon": {
  10083. name: "Dragon",
  10084. },
  10085. }
  10086. ))
  10087. characterMakers.push(() => makeCharacter(
  10088. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10089. {
  10090. lamp: {
  10091. height: math.unit(7 * 1559 / 989, "feet"),
  10092. name: "Magic Lamp",
  10093. image: {
  10094. source: "./media/characters/mira-al-cul/lamp.svg",
  10095. extra: 1617 / 1559
  10096. }
  10097. },
  10098. front: {
  10099. height: math.unit(7, "feet"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/mira-al-cul/front.svg",
  10103. extra: 1044 / 990
  10104. }
  10105. },
  10106. },
  10107. [
  10108. {
  10109. name: "Heavily Restricted",
  10110. height: math.unit(7 * 1559 / 989, "feet")
  10111. },
  10112. {
  10113. name: "Freshly Freed",
  10114. height: math.unit(50 * 1559 / 989, "feet")
  10115. },
  10116. {
  10117. name: "World Encompassing",
  10118. height: math.unit(10000 * 1559 / 989, "miles")
  10119. },
  10120. {
  10121. name: "Galactic",
  10122. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10123. },
  10124. {
  10125. name: "Palmed Universe",
  10126. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10127. default: true
  10128. },
  10129. {
  10130. name: "Multiversal Matriarch",
  10131. height: math.unit(8.87e10, "yottameters")
  10132. },
  10133. {
  10134. name: "Void Mother",
  10135. height: math.unit(3.14e110, "yottaparsecs")
  10136. },
  10137. {
  10138. name: "Toying with Transcendence",
  10139. height: math.unit(1e307, "meters")
  10140. },
  10141. ]
  10142. ))
  10143. characterMakers.push(() => makeCharacter(
  10144. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10145. {
  10146. front: {
  10147. height: math.unit(17 + 1 / 12, "feet"),
  10148. weight: math.unit(476.2 * 5, "lbs"),
  10149. name: "Front",
  10150. image: {
  10151. source: "./media/characters/kuro-shi-uchū/front.svg",
  10152. extra: 2329 / 1835,
  10153. bottom: 0.02
  10154. }
  10155. },
  10156. },
  10157. [
  10158. {
  10159. name: "Micro",
  10160. height: math.unit(2, "inches")
  10161. },
  10162. {
  10163. name: "Normal",
  10164. height: math.unit(12, "meters")
  10165. },
  10166. {
  10167. name: "Planetary",
  10168. height: math.unit(0.00929, "AU"),
  10169. default: true
  10170. },
  10171. {
  10172. name: "Universal",
  10173. height: math.unit(20, "gigaparsecs")
  10174. },
  10175. ]
  10176. ))
  10177. characterMakers.push(() => makeCharacter(
  10178. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10179. {
  10180. front: {
  10181. height: math.unit(5 + 2 / 12, "feet"),
  10182. weight: math.unit(120, "lbs"),
  10183. name: "Front",
  10184. image: {
  10185. source: "./media/characters/katherine/front.svg",
  10186. extra: 2075 / 1969
  10187. }
  10188. },
  10189. dress: {
  10190. height: math.unit(5 + 2 / 12, "feet"),
  10191. weight: math.unit(120, "lbs"),
  10192. name: "Dress",
  10193. image: {
  10194. source: "./media/characters/katherine/dress.svg",
  10195. extra: 2258 / 2064
  10196. }
  10197. },
  10198. },
  10199. [
  10200. {
  10201. name: "Micro",
  10202. height: math.unit(1, "inches"),
  10203. default: true
  10204. },
  10205. {
  10206. name: "Normal",
  10207. height: math.unit(5 + 2 / 12, "feet")
  10208. },
  10209. {
  10210. name: "Macro",
  10211. height: math.unit(100, "meters")
  10212. },
  10213. {
  10214. name: "Megamacro",
  10215. height: math.unit(80, "miles")
  10216. },
  10217. ]
  10218. ))
  10219. characterMakers.push(() => makeCharacter(
  10220. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10221. {
  10222. front: {
  10223. height: math.unit(7 + 8 / 12, "feet"),
  10224. weight: math.unit(250, "lbs"),
  10225. name: "Front",
  10226. image: {
  10227. source: "./media/characters/yevis/front.svg",
  10228. extra: 1938 / 1755
  10229. }
  10230. }
  10231. },
  10232. [
  10233. {
  10234. name: "Mortal",
  10235. height: math.unit(7 + 8 / 12, "feet")
  10236. },
  10237. {
  10238. name: "Battle",
  10239. height: math.unit(25 + 11 / 12, "feet")
  10240. },
  10241. {
  10242. name: "Wrath",
  10243. height: math.unit(1654 + 11 / 12, "feet")
  10244. },
  10245. {
  10246. name: "Planet Destroyer",
  10247. height: math.unit(12000, "miles")
  10248. },
  10249. {
  10250. name: "Galaxy Conqueror",
  10251. height: math.unit(1.45, "zettameters"),
  10252. default: true
  10253. },
  10254. {
  10255. name: "Universal War",
  10256. height: math.unit(184, "gigaparsecs")
  10257. },
  10258. {
  10259. name: "Eternity War",
  10260. height: math.unit(1.98e55, "yottaparsecs")
  10261. },
  10262. ]
  10263. ))
  10264. characterMakers.push(() => makeCharacter(
  10265. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10266. {
  10267. front: {
  10268. height: math.unit(5 + 8 / 12, "feet"),
  10269. weight: math.unit(63, "kg"),
  10270. name: "Front",
  10271. image: {
  10272. source: "./media/characters/xavier/front.svg",
  10273. extra: 944 / 883
  10274. }
  10275. },
  10276. frontStretch: {
  10277. height: math.unit(5 + 8 / 12, "feet"),
  10278. weight: math.unit(63, "kg"),
  10279. name: "Stretching",
  10280. image: {
  10281. source: "./media/characters/xavier/front-stretch.svg",
  10282. extra: 962 / 820
  10283. }
  10284. },
  10285. },
  10286. [
  10287. {
  10288. name: "Normal",
  10289. height: math.unit(5 + 8 / 12, "feet")
  10290. },
  10291. {
  10292. name: "Macro",
  10293. height: math.unit(100, "meters"),
  10294. default: true
  10295. },
  10296. {
  10297. name: "McLargeHuge",
  10298. height: math.unit(10, "miles")
  10299. },
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10304. {
  10305. front: {
  10306. height: math.unit(5 + 5 / 12, "feet"),
  10307. weight: math.unit(150, "lb"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/joshii/front.svg",
  10311. extra: 765 / 653,
  10312. bottom: 51 / 816
  10313. }
  10314. },
  10315. foot: {
  10316. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10317. name: "Foot",
  10318. image: {
  10319. source: "./media/characters/joshii/foot.svg"
  10320. }
  10321. },
  10322. },
  10323. [
  10324. {
  10325. name: "Micro",
  10326. height: math.unit(2, "inches")
  10327. },
  10328. {
  10329. name: "Normal",
  10330. height: math.unit(5 + 5 / 12, "feet")
  10331. },
  10332. {
  10333. name: "Macro",
  10334. height: math.unit(785, "feet"),
  10335. default: true
  10336. },
  10337. {
  10338. name: "Megamacro",
  10339. height: math.unit(24.5, "miles")
  10340. },
  10341. ]
  10342. ))
  10343. characterMakers.push(() => makeCharacter(
  10344. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10345. {
  10346. front: {
  10347. height: math.unit(6, "feet"),
  10348. weight: math.unit(150, "lb"),
  10349. name: "Front",
  10350. image: {
  10351. source: "./media/characters/goddess-elizabeth/front.svg",
  10352. extra: 1800 / 1525,
  10353. bottom: 0.005
  10354. }
  10355. },
  10356. foot: {
  10357. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10358. name: "Foot",
  10359. image: {
  10360. source: "./media/characters/goddess-elizabeth/foot.svg"
  10361. }
  10362. },
  10363. mouth: {
  10364. height: math.unit(6, "feet"),
  10365. name: "Mouth",
  10366. image: {
  10367. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10368. }
  10369. },
  10370. },
  10371. [
  10372. {
  10373. name: "Micro",
  10374. height: math.unit(12, "feet")
  10375. },
  10376. {
  10377. name: "Normal",
  10378. height: math.unit(80, "miles"),
  10379. default: true
  10380. },
  10381. {
  10382. name: "Macro",
  10383. height: math.unit(15000, "parsecs")
  10384. },
  10385. ]
  10386. ))
  10387. characterMakers.push(() => makeCharacter(
  10388. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10389. {
  10390. front: {
  10391. height: math.unit(5 + 9 / 12, "feet"),
  10392. weight: math.unit(144, "lb"),
  10393. name: "Front",
  10394. image: {
  10395. source: "./media/characters/kara/front.svg"
  10396. }
  10397. },
  10398. feet: {
  10399. height: math.unit(6 / 6.765, "feet"),
  10400. name: "Kara's Feet",
  10401. rename: true,
  10402. image: {
  10403. source: "./media/characters/kara/feet.svg"
  10404. }
  10405. },
  10406. },
  10407. [
  10408. {
  10409. name: "Normal",
  10410. height: math.unit(5 + 9 / 12, "feet")
  10411. },
  10412. {
  10413. name: "Macro",
  10414. height: math.unit(174, "feet"),
  10415. default: true
  10416. },
  10417. ]
  10418. ))
  10419. characterMakers.push(() => makeCharacter(
  10420. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10421. {
  10422. front: {
  10423. height: math.unit(18, "feet"),
  10424. weight: math.unit(4050, "lb"),
  10425. name: "Front",
  10426. image: {
  10427. source: "./media/characters/tyrone/front.svg",
  10428. extra: 2405 / 2270,
  10429. bottom: 182 / 2587
  10430. }
  10431. },
  10432. },
  10433. [
  10434. {
  10435. name: "Normal",
  10436. height: math.unit(18, "feet"),
  10437. default: true
  10438. },
  10439. {
  10440. name: "Macro",
  10441. height: math.unit(300, "feet")
  10442. },
  10443. {
  10444. name: "Megamacro",
  10445. height: math.unit(15, "km")
  10446. },
  10447. {
  10448. name: "Gigamacro",
  10449. height: math.unit(500, "km")
  10450. },
  10451. {
  10452. name: "Teramacro",
  10453. height: math.unit(0.5, "gigameters")
  10454. },
  10455. {
  10456. name: "Omnimacro",
  10457. height: math.unit(1e252, "yottauniverse")
  10458. },
  10459. ]
  10460. ))
  10461. characterMakers.push(() => makeCharacter(
  10462. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10463. {
  10464. front: {
  10465. height: math.unit(7 + 8 / 12, "feet"),
  10466. weight: math.unit(120, "lb"),
  10467. name: "Front",
  10468. image: {
  10469. source: "./media/characters/danny/front.svg",
  10470. extra: 1490 / 1350
  10471. }
  10472. },
  10473. back: {
  10474. height: math.unit(7 + 8 / 12, "feet"),
  10475. weight: math.unit(120, "lb"),
  10476. name: "Back",
  10477. image: {
  10478. source: "./media/characters/danny/back.svg",
  10479. extra: 1490 / 1350
  10480. }
  10481. },
  10482. },
  10483. [
  10484. {
  10485. name: "Normal",
  10486. height: math.unit(7 + 8 / 12, "feet"),
  10487. default: true
  10488. },
  10489. ]
  10490. ))
  10491. characterMakers.push(() => makeCharacter(
  10492. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10493. {
  10494. front: {
  10495. height: math.unit(3.5, "inches"),
  10496. weight: math.unit(19, "grams"),
  10497. name: "Front",
  10498. image: {
  10499. source: "./media/characters/mallow/front.svg",
  10500. extra: 471 / 431
  10501. }
  10502. },
  10503. back: {
  10504. height: math.unit(3.5, "inches"),
  10505. weight: math.unit(19, "grams"),
  10506. name: "Back",
  10507. image: {
  10508. source: "./media/characters/mallow/back.svg",
  10509. extra: 471 / 431
  10510. }
  10511. },
  10512. },
  10513. [
  10514. {
  10515. name: "Normal",
  10516. height: math.unit(3.5, "inches"),
  10517. default: true
  10518. },
  10519. ]
  10520. ))
  10521. characterMakers.push(() => makeCharacter(
  10522. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10523. {
  10524. front: {
  10525. height: math.unit(9, "feet"),
  10526. weight: math.unit(230, "kg"),
  10527. name: "Front",
  10528. image: {
  10529. source: "./media/characters/starry-aqua/front.svg"
  10530. }
  10531. },
  10532. back: {
  10533. height: math.unit(9, "feet"),
  10534. weight: math.unit(230, "kg"),
  10535. name: "Back",
  10536. image: {
  10537. source: "./media/characters/starry-aqua/back.svg"
  10538. }
  10539. },
  10540. hand: {
  10541. height: math.unit(9 * 0.1168, "feet"),
  10542. name: "Hand",
  10543. image: {
  10544. source: "./media/characters/starry-aqua/hand.svg"
  10545. }
  10546. },
  10547. foot: {
  10548. height: math.unit(9 * 0.18, "feet"),
  10549. name: "Foot",
  10550. image: {
  10551. source: "./media/characters/starry-aqua/foot.svg"
  10552. }
  10553. }
  10554. },
  10555. [
  10556. {
  10557. name: "Micro",
  10558. height: math.unit(3, "inches")
  10559. },
  10560. {
  10561. name: "Normal",
  10562. height: math.unit(9, "feet")
  10563. },
  10564. {
  10565. name: "Macro",
  10566. height: math.unit(300, "feet"),
  10567. default: true
  10568. },
  10569. {
  10570. name: "Megamacro",
  10571. height: math.unit(3200, "feet")
  10572. }
  10573. ]
  10574. ))
  10575. characterMakers.push(() => makeCharacter(
  10576. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10577. {
  10578. front: {
  10579. height: math.unit(15, "feet"),
  10580. weight: math.unit(5026, "lb"),
  10581. name: "Front",
  10582. image: {
  10583. source: "./media/characters/luka-towers/front.svg",
  10584. extra: 1269/1133,
  10585. bottom: 51/1320
  10586. }
  10587. },
  10588. },
  10589. [
  10590. {
  10591. name: "Normal",
  10592. height: math.unit(15, "feet"),
  10593. default: true
  10594. },
  10595. {
  10596. name: "Minimacro",
  10597. height: math.unit(25, "feet")
  10598. },
  10599. {
  10600. name: "Macro",
  10601. height: math.unit(320, "feet")
  10602. },
  10603. {
  10604. name: "Megamacro",
  10605. height: math.unit(35000, "feet")
  10606. },
  10607. {
  10608. name: "Gigamacro",
  10609. height: math.unit(4000, "miles")
  10610. },
  10611. {
  10612. name: "Teramacro",
  10613. height: math.unit(15000, "miles")
  10614. },
  10615. ]
  10616. ))
  10617. characterMakers.push(() => makeCharacter(
  10618. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10619. {
  10620. front: {
  10621. height: math.unit(6, "feet"),
  10622. weight: math.unit(150, "lb"),
  10623. name: "Front",
  10624. image: {
  10625. source: "./media/characters/natalie-nightring/front.svg",
  10626. extra: 1,
  10627. bottom: 0.06
  10628. }
  10629. },
  10630. },
  10631. [
  10632. {
  10633. name: "Uh Oh",
  10634. height: math.unit(0.1, "mm")
  10635. },
  10636. {
  10637. name: "Small",
  10638. height: math.unit(3, "inches")
  10639. },
  10640. {
  10641. name: "Human Scale",
  10642. height: math.unit(6, "feet")
  10643. },
  10644. {
  10645. name: "Librarian",
  10646. height: math.unit(50, "feet"),
  10647. default: true
  10648. },
  10649. {
  10650. name: "Immense",
  10651. height: math.unit(200, "miles")
  10652. },
  10653. ]
  10654. ))
  10655. characterMakers.push(() => makeCharacter(
  10656. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10657. {
  10658. front: {
  10659. height: math.unit(6, "feet"),
  10660. weight: math.unit(180, "lbs"),
  10661. name: "Front",
  10662. image: {
  10663. source: "./media/characters/danni-rosie/front.svg",
  10664. extra: 1260 / 1128,
  10665. bottom: 0.022
  10666. }
  10667. },
  10668. },
  10669. [
  10670. {
  10671. name: "Micro",
  10672. height: math.unit(2, "inches"),
  10673. default: true
  10674. },
  10675. ]
  10676. ))
  10677. characterMakers.push(() => makeCharacter(
  10678. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10679. {
  10680. front: {
  10681. height: math.unit(5 + 9 / 12, "feet"),
  10682. weight: math.unit(220, "lb"),
  10683. name: "Front",
  10684. image: {
  10685. source: "./media/characters/samantha-kruse/front.svg",
  10686. extra: (985 / 935),
  10687. bottom: 0.03
  10688. }
  10689. },
  10690. frontUndressed: {
  10691. height: math.unit(5 + 9 / 12, "feet"),
  10692. weight: math.unit(220, "lb"),
  10693. name: "Front (Undressed)",
  10694. image: {
  10695. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10696. extra: (973 / 923),
  10697. bottom: 0.025
  10698. }
  10699. },
  10700. fat: {
  10701. height: math.unit(5 + 9 / 12, "feet"),
  10702. weight: math.unit(900, "lb"),
  10703. name: "Front (Fat)",
  10704. image: {
  10705. source: "./media/characters/samantha-kruse/fat.svg",
  10706. extra: 2688 / 2561
  10707. }
  10708. },
  10709. },
  10710. [
  10711. {
  10712. name: "Normal",
  10713. height: math.unit(5 + 9 / 12, "feet"),
  10714. default: true
  10715. }
  10716. ]
  10717. ))
  10718. characterMakers.push(() => makeCharacter(
  10719. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10720. {
  10721. back: {
  10722. height: math.unit(5 + 4 / 12, "feet"),
  10723. weight: math.unit(4963, "lb"),
  10724. name: "Back",
  10725. image: {
  10726. source: "./media/characters/amelia-rosie/back.svg",
  10727. extra: 1113 / 963,
  10728. bottom: 0.01
  10729. }
  10730. },
  10731. },
  10732. [
  10733. {
  10734. name: "Level 0",
  10735. height: math.unit(5 + 4 / 12, "feet")
  10736. },
  10737. {
  10738. name: "Level 1",
  10739. height: math.unit(164597, "feet"),
  10740. default: true
  10741. },
  10742. {
  10743. name: "Level 2",
  10744. height: math.unit(956243, "miles")
  10745. },
  10746. {
  10747. name: "Level 3",
  10748. height: math.unit(29421709423, "miles")
  10749. },
  10750. {
  10751. name: "Level 4",
  10752. height: math.unit(154, "lightyears")
  10753. },
  10754. {
  10755. name: "Level 5",
  10756. height: math.unit(4738272, "lightyears")
  10757. },
  10758. {
  10759. name: "Level 6",
  10760. height: math.unit(145787152896, "lightyears")
  10761. },
  10762. ]
  10763. ))
  10764. characterMakers.push(() => makeCharacter(
  10765. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10766. {
  10767. front: {
  10768. height: math.unit(5 + 11 / 12, "feet"),
  10769. weight: math.unit(65, "kg"),
  10770. name: "Front",
  10771. image: {
  10772. source: "./media/characters/rook-kitara/front.svg",
  10773. extra: 1347 / 1274,
  10774. bottom: 0.005
  10775. }
  10776. },
  10777. },
  10778. [
  10779. {
  10780. name: "Totally Unfair",
  10781. height: math.unit(1.8, "mm")
  10782. },
  10783. {
  10784. name: "Lap Rookie",
  10785. height: math.unit(1.4, "feet")
  10786. },
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(5 + 11 / 12, "feet"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "How Did This Happen",
  10794. height: math.unit(80, "miles")
  10795. }
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10800. {
  10801. front: {
  10802. height: math.unit(7, "feet"),
  10803. weight: math.unit(300, "lb"),
  10804. name: "Front",
  10805. image: {
  10806. source: "./media/characters/pisces/front.svg",
  10807. extra: 2255 / 2115,
  10808. bottom: 0.03
  10809. }
  10810. },
  10811. back: {
  10812. height: math.unit(7, "feet"),
  10813. weight: math.unit(300, "lb"),
  10814. name: "Back",
  10815. image: {
  10816. source: "./media/characters/pisces/back.svg",
  10817. extra: 2146 / 2055,
  10818. bottom: 0.04
  10819. }
  10820. },
  10821. },
  10822. [
  10823. {
  10824. name: "Normal",
  10825. height: math.unit(7, "feet"),
  10826. default: true
  10827. },
  10828. {
  10829. name: "Swimming Pool",
  10830. height: math.unit(12.2, "meters")
  10831. },
  10832. {
  10833. name: "Olympic Swimming Pool",
  10834. height: math.unit(56.3, "meters")
  10835. },
  10836. {
  10837. name: "Lake Superior",
  10838. height: math.unit(93900, "meters")
  10839. },
  10840. {
  10841. name: "Mediterranean Sea",
  10842. height: math.unit(644457, "meters")
  10843. },
  10844. {
  10845. name: "World's Oceans",
  10846. height: math.unit(4567491, "meters")
  10847. },
  10848. ]
  10849. ))
  10850. characterMakers.push(() => makeCharacter(
  10851. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10852. {
  10853. front: {
  10854. height: math.unit(2.3, "meters"),
  10855. weight: math.unit(120, "kg"),
  10856. name: "Front",
  10857. image: {
  10858. source: "./media/characters/zelas/front.svg"
  10859. }
  10860. },
  10861. side: {
  10862. height: math.unit(2.3, "meters"),
  10863. weight: math.unit(120, "kg"),
  10864. name: "Side",
  10865. image: {
  10866. source: "./media/characters/zelas/side.svg"
  10867. }
  10868. },
  10869. back: {
  10870. height: math.unit(2.3, "meters"),
  10871. weight: math.unit(120, "kg"),
  10872. name: "Back",
  10873. image: {
  10874. source: "./media/characters/zelas/back.svg"
  10875. }
  10876. },
  10877. foot: {
  10878. height: math.unit(1.116, "feet"),
  10879. name: "Foot",
  10880. image: {
  10881. source: "./media/characters/zelas/foot.svg"
  10882. }
  10883. },
  10884. },
  10885. [
  10886. {
  10887. name: "Normal",
  10888. height: math.unit(2.3, "meters")
  10889. },
  10890. {
  10891. name: "Macro",
  10892. height: math.unit(30, "meters"),
  10893. default: true
  10894. },
  10895. ]
  10896. ))
  10897. characterMakers.push(() => makeCharacter(
  10898. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10899. {
  10900. front: {
  10901. height: math.unit(1, "inch"),
  10902. weight: math.unit(0.21, "grams"),
  10903. name: "Front",
  10904. image: {
  10905. source: "./media/characters/talbot/front.svg",
  10906. extra: 594 / 544
  10907. }
  10908. },
  10909. },
  10910. [
  10911. {
  10912. name: "Micro",
  10913. height: math.unit(1, "inch"),
  10914. default: true
  10915. },
  10916. ]
  10917. ))
  10918. characterMakers.push(() => makeCharacter(
  10919. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10920. {
  10921. front: {
  10922. height: math.unit(3 + 3 / 12, "feet"),
  10923. weight: math.unit(51.8, "lb"),
  10924. name: "Front",
  10925. image: {
  10926. source: "./media/characters/fliss/front.svg",
  10927. extra: 840 / 640
  10928. }
  10929. },
  10930. },
  10931. [
  10932. {
  10933. name: "Teeny Tiny",
  10934. height: math.unit(1, "mm")
  10935. },
  10936. {
  10937. name: "Small",
  10938. height: math.unit(1, "inch"),
  10939. default: true
  10940. },
  10941. {
  10942. name: "Standard Sylveon",
  10943. height: math.unit(3 + 3 / 12, "feet")
  10944. },
  10945. {
  10946. name: "Large Nuisance",
  10947. height: math.unit(33, "feet")
  10948. },
  10949. {
  10950. name: "City Filler",
  10951. height: math.unit(3000, "feet")
  10952. },
  10953. {
  10954. name: "New Horizon",
  10955. height: math.unit(6000, "miles")
  10956. },
  10957. ]
  10958. ))
  10959. characterMakers.push(() => makeCharacter(
  10960. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10961. {
  10962. front: {
  10963. height: math.unit(5, "cm"),
  10964. weight: math.unit(1.94, "g"),
  10965. name: "Front",
  10966. image: {
  10967. source: "./media/characters/fleta/front.svg",
  10968. extra: 835 / 803
  10969. }
  10970. },
  10971. back: {
  10972. height: math.unit(5, "cm"),
  10973. weight: math.unit(1.94, "g"),
  10974. name: "Back",
  10975. image: {
  10976. source: "./media/characters/fleta/back.svg",
  10977. extra: 835 / 803
  10978. }
  10979. },
  10980. },
  10981. [
  10982. {
  10983. name: "Micro",
  10984. height: math.unit(5, "cm"),
  10985. default: true
  10986. },
  10987. ]
  10988. ))
  10989. characterMakers.push(() => makeCharacter(
  10990. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10991. {
  10992. front: {
  10993. height: math.unit(6, "feet"),
  10994. weight: math.unit(225, "lb"),
  10995. name: "Front",
  10996. image: {
  10997. source: "./media/characters/dominic/front.svg",
  10998. extra: 1770 / 1620,
  10999. bottom: 0.025
  11000. }
  11001. },
  11002. back: {
  11003. height: math.unit(6, "feet"),
  11004. weight: math.unit(225, "lb"),
  11005. name: "Back",
  11006. image: {
  11007. source: "./media/characters/dominic/back.svg",
  11008. extra: 1745 / 1620,
  11009. bottom: 0.065
  11010. }
  11011. },
  11012. },
  11013. [
  11014. {
  11015. name: "Nano",
  11016. height: math.unit(0.1, "mm")
  11017. },
  11018. {
  11019. name: "Micro-",
  11020. height: math.unit(1, "mm")
  11021. },
  11022. {
  11023. name: "Micro",
  11024. height: math.unit(4, "inches")
  11025. },
  11026. {
  11027. name: "Normal",
  11028. height: math.unit(6 + 4 / 12, "feet"),
  11029. default: true
  11030. },
  11031. {
  11032. name: "Macro",
  11033. height: math.unit(115, "feet")
  11034. },
  11035. {
  11036. name: "Macro+",
  11037. height: math.unit(955, "feet")
  11038. },
  11039. {
  11040. name: "Megamacro",
  11041. height: math.unit(8990, "feet")
  11042. },
  11043. {
  11044. name: "Gigmacro",
  11045. height: math.unit(9310, "miles")
  11046. },
  11047. {
  11048. name: "Teramacro",
  11049. height: math.unit(1567005010, "miles")
  11050. },
  11051. {
  11052. name: "Examacro",
  11053. height: math.unit(1425, "parsecs")
  11054. },
  11055. ]
  11056. ))
  11057. characterMakers.push(() => makeCharacter(
  11058. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11059. {
  11060. front: {
  11061. height: math.unit(400, "feet"),
  11062. weight: math.unit(44444444, "lb"),
  11063. name: "Front",
  11064. image: {
  11065. source: "./media/characters/major-colonel/front.svg"
  11066. }
  11067. },
  11068. back: {
  11069. height: math.unit(400, "feet"),
  11070. weight: math.unit(44444444, "lb"),
  11071. name: "Back",
  11072. image: {
  11073. source: "./media/characters/major-colonel/back.svg"
  11074. }
  11075. },
  11076. },
  11077. [
  11078. {
  11079. name: "Macro",
  11080. height: math.unit(400, "feet"),
  11081. default: true
  11082. },
  11083. ]
  11084. ))
  11085. characterMakers.push(() => makeCharacter(
  11086. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11087. {
  11088. catFront: {
  11089. height: math.unit(6, "feet"),
  11090. weight: math.unit(120, "lb"),
  11091. name: "Front (Cat Side)",
  11092. image: {
  11093. source: "./media/characters/axel-lycan/cat-front.svg",
  11094. extra: 430 / 402,
  11095. bottom: 43 / 472.35
  11096. }
  11097. },
  11098. catBack: {
  11099. height: math.unit(6, "feet"),
  11100. weight: math.unit(120, "lb"),
  11101. name: "Back (Cat Side)",
  11102. image: {
  11103. source: "./media/characters/axel-lycan/cat-back.svg",
  11104. extra: 447 / 419,
  11105. bottom: 23.3 / 469
  11106. }
  11107. },
  11108. wolfFront: {
  11109. height: math.unit(6, "feet"),
  11110. weight: math.unit(120, "lb"),
  11111. name: "Front (Wolf Side)",
  11112. image: {
  11113. source: "./media/characters/axel-lycan/wolf-front.svg",
  11114. extra: 485 / 456,
  11115. bottom: 19 / 504
  11116. }
  11117. },
  11118. wolfBack: {
  11119. height: math.unit(6, "feet"),
  11120. weight: math.unit(120, "lb"),
  11121. name: "Back (Wolf Side)",
  11122. image: {
  11123. source: "./media/characters/axel-lycan/wolf-back.svg",
  11124. extra: 475 / 438,
  11125. bottom: 39.2 / 514
  11126. }
  11127. },
  11128. },
  11129. [
  11130. {
  11131. name: "Macro",
  11132. height: math.unit(1, "km"),
  11133. default: true
  11134. },
  11135. ]
  11136. ))
  11137. characterMakers.push(() => makeCharacter(
  11138. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11139. {
  11140. front: {
  11141. height: math.unit(5 + 9 / 12, "feet"),
  11142. weight: math.unit(175, "lb"),
  11143. name: "Front",
  11144. image: {
  11145. source: "./media/characters/vanrel-hyena/front.svg",
  11146. extra: 1086 / 1010,
  11147. bottom: 0.04
  11148. }
  11149. },
  11150. },
  11151. [
  11152. {
  11153. name: "Normal",
  11154. height: math.unit(5 + 9 / 12, "feet"),
  11155. default: true
  11156. },
  11157. ]
  11158. ))
  11159. characterMakers.push(() => makeCharacter(
  11160. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11161. {
  11162. front: {
  11163. height: math.unit(6, "feet"),
  11164. weight: math.unit(103, "lb"),
  11165. name: "Front",
  11166. image: {
  11167. source: "./media/characters/abbott-absol/front.svg",
  11168. extra: 765/694,
  11169. bottom: 47/812
  11170. }
  11171. },
  11172. },
  11173. [
  11174. {
  11175. name: "Megamicro",
  11176. height: math.unit(0.1, "mm")
  11177. },
  11178. {
  11179. name: "Micro",
  11180. height: math.unit(1, "inch")
  11181. },
  11182. {
  11183. name: "Normal",
  11184. height: math.unit(6, "feet"),
  11185. default: true
  11186. },
  11187. ]
  11188. ))
  11189. characterMakers.push(() => makeCharacter(
  11190. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11191. {
  11192. front: {
  11193. height: math.unit(6, "feet"),
  11194. weight: math.unit(264, "lb"),
  11195. name: "Front",
  11196. image: {
  11197. source: "./media/characters/hector/front.svg",
  11198. extra: 2280 / 2130,
  11199. bottom: 0.07
  11200. }
  11201. },
  11202. },
  11203. [
  11204. {
  11205. name: "Normal",
  11206. height: math.unit(12.25, "foot"),
  11207. default: true
  11208. },
  11209. {
  11210. name: "Macro",
  11211. height: math.unit(160, "feet")
  11212. },
  11213. ]
  11214. ))
  11215. characterMakers.push(() => makeCharacter(
  11216. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11217. {
  11218. front: {
  11219. height: math.unit(6, "feet"),
  11220. weight: math.unit(150, "lb"),
  11221. name: "Front",
  11222. image: {
  11223. source: "./media/characters/sal/front.svg",
  11224. extra: 1846 / 1699,
  11225. bottom: 0.04
  11226. }
  11227. },
  11228. },
  11229. [
  11230. {
  11231. name: "Megamacro",
  11232. height: math.unit(10, "miles"),
  11233. default: true
  11234. },
  11235. ]
  11236. ))
  11237. characterMakers.push(() => makeCharacter(
  11238. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11239. {
  11240. front: {
  11241. height: math.unit(3, "meters"),
  11242. weight: math.unit(450, "kg"),
  11243. name: "front",
  11244. image: {
  11245. source: "./media/characters/ranger/front.svg",
  11246. extra: 2401 / 2243,
  11247. bottom: 0.05
  11248. }
  11249. },
  11250. },
  11251. [
  11252. {
  11253. name: "Normal",
  11254. height: math.unit(3, "meters"),
  11255. default: true
  11256. },
  11257. ]
  11258. ))
  11259. characterMakers.push(() => makeCharacter(
  11260. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11261. {
  11262. front: {
  11263. height: math.unit(14, "feet"),
  11264. weight: math.unit(800, "kg"),
  11265. name: "Front",
  11266. image: {
  11267. source: "./media/characters/theresa/front.svg",
  11268. extra: 3575 / 3346,
  11269. bottom: 0.03
  11270. }
  11271. },
  11272. },
  11273. [
  11274. {
  11275. name: "Normal",
  11276. height: math.unit(14, "feet"),
  11277. default: true
  11278. },
  11279. ]
  11280. ))
  11281. characterMakers.push(() => makeCharacter(
  11282. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11283. {
  11284. front: {
  11285. height: math.unit(6, "feet"),
  11286. weight: math.unit(3, "kg"),
  11287. name: "Front",
  11288. image: {
  11289. source: "./media/characters/ine/front.svg",
  11290. extra: 678 / 539,
  11291. bottom: 0.023
  11292. }
  11293. },
  11294. },
  11295. [
  11296. {
  11297. name: "Normal",
  11298. height: math.unit(2.265, "feet"),
  11299. default: true
  11300. },
  11301. ]
  11302. ))
  11303. characterMakers.push(() => makeCharacter(
  11304. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11305. {
  11306. front: {
  11307. height: math.unit(5, "feet"),
  11308. weight: math.unit(30, "kg"),
  11309. name: "Front",
  11310. image: {
  11311. source: "./media/characters/vial/front.svg",
  11312. extra: 1365 / 1277,
  11313. bottom: 0.04
  11314. }
  11315. },
  11316. },
  11317. [
  11318. {
  11319. name: "Normal",
  11320. height: math.unit(5, "feet"),
  11321. default: true
  11322. },
  11323. ]
  11324. ))
  11325. characterMakers.push(() => makeCharacter(
  11326. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11327. {
  11328. side: {
  11329. height: math.unit(3.4, "meters"),
  11330. weight: math.unit(1000, "lb"),
  11331. name: "Side",
  11332. image: {
  11333. source: "./media/characters/rovoska/side.svg",
  11334. extra: 4403 / 1515
  11335. }
  11336. },
  11337. },
  11338. [
  11339. {
  11340. name: "Normal",
  11341. height: math.unit(3.4, "meters"),
  11342. default: true
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11348. {
  11349. front: {
  11350. height: math.unit(8, "feet"),
  11351. weight: math.unit(315, "lb"),
  11352. name: "Front",
  11353. image: {
  11354. source: "./media/characters/gunner-rotthbauer/front.svg"
  11355. }
  11356. },
  11357. back: {
  11358. height: math.unit(8, "feet"),
  11359. weight: math.unit(315, "lb"),
  11360. name: "Back",
  11361. image: {
  11362. source: "./media/characters/gunner-rotthbauer/back.svg"
  11363. }
  11364. },
  11365. },
  11366. [
  11367. {
  11368. name: "Micro",
  11369. height: math.unit(3.5, "inches")
  11370. },
  11371. {
  11372. name: "Normal",
  11373. height: math.unit(8, "feet"),
  11374. default: true
  11375. },
  11376. {
  11377. name: "Macro",
  11378. height: math.unit(250, "feet")
  11379. },
  11380. {
  11381. name: "Megamacro",
  11382. height: math.unit(1, "AU")
  11383. },
  11384. ]
  11385. ))
  11386. characterMakers.push(() => makeCharacter(
  11387. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11388. {
  11389. front: {
  11390. height: math.unit(5 + 5 / 12, "feet"),
  11391. weight: math.unit(140, "lb"),
  11392. name: "Front",
  11393. image: {
  11394. source: "./media/characters/allatia/front.svg",
  11395. extra: 1227 / 1180,
  11396. bottom: 0.027
  11397. }
  11398. },
  11399. },
  11400. [
  11401. {
  11402. name: "Normal",
  11403. height: math.unit(5 + 5 / 12, "feet")
  11404. },
  11405. {
  11406. name: "Macro",
  11407. height: math.unit(250, "feet"),
  11408. default: true
  11409. },
  11410. {
  11411. name: "Megamacro",
  11412. height: math.unit(8, "miles")
  11413. }
  11414. ]
  11415. ))
  11416. characterMakers.push(() => makeCharacter(
  11417. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11418. {
  11419. front: {
  11420. height: math.unit(6, "feet"),
  11421. weight: math.unit(120, "lb"),
  11422. name: "Front",
  11423. image: {
  11424. source: "./media/characters/tene/front.svg",
  11425. extra: 814/750,
  11426. bottom: 36/850
  11427. }
  11428. },
  11429. stomping: {
  11430. height: math.unit(2.025, "meters"),
  11431. weight: math.unit(120, "lb"),
  11432. name: "Stomping",
  11433. image: {
  11434. source: "./media/characters/tene/stomping.svg",
  11435. extra: 885/821,
  11436. bottom: 15/900
  11437. }
  11438. },
  11439. sitting: {
  11440. height: math.unit(1, "meter"),
  11441. weight: math.unit(120, "lb"),
  11442. name: "Sitting",
  11443. image: {
  11444. source: "./media/characters/tene/sitting.svg",
  11445. extra: 396/366,
  11446. bottom: 79/475
  11447. }
  11448. },
  11449. smiling: {
  11450. height: math.unit(1.2, "feet"),
  11451. name: "Smiling",
  11452. image: {
  11453. source: "./media/characters/tene/smiling.svg",
  11454. extra: 1364/1071,
  11455. bottom: 0/1364
  11456. }
  11457. },
  11458. smug: {
  11459. height: math.unit(1.3, "feet"),
  11460. name: "Smug",
  11461. image: {
  11462. source: "./media/characters/tene/smug.svg",
  11463. extra: 1323/1082,
  11464. bottom: 0/1323
  11465. }
  11466. },
  11467. feral: {
  11468. height: math.unit(3.9, "feet"),
  11469. weight: math.unit(250, "lb"),
  11470. name: "Feral",
  11471. image: {
  11472. source: "./media/characters/tene/feral.svg",
  11473. extra: 717 / 458,
  11474. bottom: 0.179
  11475. }
  11476. },
  11477. },
  11478. [
  11479. {
  11480. name: "Normal",
  11481. height: math.unit(6, "feet")
  11482. },
  11483. {
  11484. name: "Macro",
  11485. height: math.unit(300, "feet"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Megamacro",
  11490. height: math.unit(5, "miles")
  11491. },
  11492. ]
  11493. ))
  11494. characterMakers.push(() => makeCharacter(
  11495. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11496. {
  11497. side: {
  11498. height: math.unit(6, "feet"),
  11499. name: "Side",
  11500. image: {
  11501. source: "./media/characters/evander/side.svg",
  11502. extra: 877 / 477
  11503. }
  11504. },
  11505. },
  11506. [
  11507. {
  11508. name: "Normal",
  11509. height: math.unit(0.83, "meters"),
  11510. default: true
  11511. },
  11512. ]
  11513. ))
  11514. characterMakers.push(() => makeCharacter(
  11515. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11516. {
  11517. front: {
  11518. height: math.unit(12, "feet"),
  11519. weight: math.unit(1000, "lb"),
  11520. name: "Front",
  11521. image: {
  11522. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11523. extra: 1762 / 1611
  11524. }
  11525. },
  11526. back: {
  11527. height: math.unit(12, "feet"),
  11528. weight: math.unit(1000, "lb"),
  11529. name: "Back",
  11530. image: {
  11531. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11532. extra: 1762 / 1611
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(12, "feet"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Kaiju",
  11544. height: math.unit(150, "feet")
  11545. },
  11546. ]
  11547. ))
  11548. characterMakers.push(() => makeCharacter(
  11549. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11550. {
  11551. front: {
  11552. height: math.unit(5 + 11/12, "feet"),
  11553. weight: math.unit(180, "lb"),
  11554. name: "Front",
  11555. image: {
  11556. source: "./media/characters/zero-alurus/front.svg",
  11557. extra: 1032/957,
  11558. bottom: 10/1042
  11559. }
  11560. },
  11561. back: {
  11562. height: math.unit(5 + 11/12, "feet"),
  11563. weight: math.unit(180, "lb"),
  11564. name: "Back",
  11565. image: {
  11566. source: "./media/characters/zero-alurus/back.svg",
  11567. extra: 1027/950,
  11568. bottom: 12/1039
  11569. }
  11570. },
  11571. },
  11572. [
  11573. {
  11574. name: "Normal",
  11575. height: math.unit(5 + 11 / 12, "feet")
  11576. },
  11577. {
  11578. name: "Mini-Macro",
  11579. height: math.unit(25, "feet")
  11580. },
  11581. {
  11582. name: "Macro",
  11583. height: math.unit(90, "feet"),
  11584. default: true
  11585. },
  11586. {
  11587. name: "Macro+",
  11588. height: math.unit(500, "feet")
  11589. },
  11590. {
  11591. name: "Megamacro",
  11592. height: math.unit(1200, "feet")
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11598. {
  11599. front: {
  11600. height: math.unit(6, "feet"),
  11601. weight: math.unit(200, "lb"),
  11602. name: "Front",
  11603. image: {
  11604. source: "./media/characters/mega-shi/front.svg",
  11605. extra: 1279 / 1250,
  11606. bottom: 0.02
  11607. }
  11608. },
  11609. back: {
  11610. height: math.unit(6, "feet"),
  11611. weight: math.unit(200, "lb"),
  11612. name: "Back",
  11613. image: {
  11614. source: "./media/characters/mega-shi/back.svg",
  11615. extra: 1279 / 1250,
  11616. bottom: 0.02
  11617. }
  11618. },
  11619. },
  11620. [
  11621. {
  11622. name: "Micro",
  11623. height: math.unit(16 + 6 / 12, "feet")
  11624. },
  11625. {
  11626. name: "Third Dimension",
  11627. height: math.unit(40, "meters")
  11628. },
  11629. {
  11630. name: "Normal",
  11631. height: math.unit(660, "feet"),
  11632. default: true
  11633. },
  11634. {
  11635. name: "Megamacro",
  11636. height: math.unit(10, "miles")
  11637. },
  11638. {
  11639. name: "Planetary Launch",
  11640. height: math.unit(500, "miles")
  11641. },
  11642. {
  11643. name: "Interstellar",
  11644. height: math.unit(1e9, "miles")
  11645. },
  11646. {
  11647. name: "Leaving the Universe",
  11648. height: math.unit(1, "gigaparsec")
  11649. },
  11650. {
  11651. name: "Travelling Universes",
  11652. height: math.unit(30e15, "parsecs")
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11658. {
  11659. front: {
  11660. height: math.unit(5 + 4/12, "feet"),
  11661. weight: math.unit(120, "lb"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/odyssey/front.svg",
  11665. extra: 1747/1571,
  11666. bottom: 47/1794
  11667. }
  11668. },
  11669. side: {
  11670. height: math.unit(5.1, "feet"),
  11671. weight: math.unit(120, "lb"),
  11672. name: "Side",
  11673. image: {
  11674. source: "./media/characters/odyssey/side.svg",
  11675. extra: 1847/1619,
  11676. bottom: 47/1894
  11677. }
  11678. },
  11679. lounging: {
  11680. height: math.unit(1.464, "feet"),
  11681. weight: math.unit(120, "lb"),
  11682. name: "Lounging",
  11683. image: {
  11684. source: "./media/characters/odyssey/lounging.svg",
  11685. extra: 1235/837,
  11686. bottom: 551/1786
  11687. }
  11688. },
  11689. },
  11690. [
  11691. {
  11692. name: "Normal",
  11693. height: math.unit(5 + 4 / 12, "feet")
  11694. },
  11695. {
  11696. name: "Macro",
  11697. height: math.unit(1, "km")
  11698. },
  11699. {
  11700. name: "Megamacro",
  11701. height: math.unit(3000, "km")
  11702. },
  11703. {
  11704. name: "Gigamacro",
  11705. height: math.unit(1, "AU"),
  11706. default: true
  11707. },
  11708. {
  11709. name: "Omniversal",
  11710. height: math.unit(100e14, "lightyears")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(5 + 10/12, "feet"),
  11719. name: "Front",
  11720. image: {
  11721. source: "./media/characters/mekuto/front.svg",
  11722. extra: 875/835,
  11723. bottom: 46/921
  11724. }
  11725. },
  11726. },
  11727. [
  11728. {
  11729. name: "Minimicro",
  11730. height: math.unit(0.2, "inches")
  11731. },
  11732. {
  11733. name: "Micro",
  11734. height: math.unit(1.5, "inches")
  11735. },
  11736. {
  11737. name: "Normal",
  11738. height: math.unit(5 + 10 / 12, "feet"),
  11739. default: true
  11740. },
  11741. {
  11742. name: "Minimacro",
  11743. height: math.unit(17 + 9 / 12, "feet")
  11744. },
  11745. {
  11746. name: "Macro",
  11747. height: math.unit(177.5, "feet")
  11748. },
  11749. {
  11750. name: "Megamacro",
  11751. height: math.unit(152, "miles")
  11752. },
  11753. ]
  11754. ))
  11755. characterMakers.push(() => makeCharacter(
  11756. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11757. {
  11758. front: {
  11759. height: math.unit(6.5, "inches"),
  11760. weight: math.unit(13, "oz"),
  11761. name: "Front",
  11762. image: {
  11763. source: "./media/characters/dafydd-tomos/front.svg",
  11764. extra: 2990 / 2603,
  11765. bottom: 0.03
  11766. }
  11767. },
  11768. },
  11769. [
  11770. {
  11771. name: "Micro",
  11772. height: math.unit(6.5, "inches"),
  11773. default: true
  11774. },
  11775. ]
  11776. ))
  11777. characterMakers.push(() => makeCharacter(
  11778. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11779. {
  11780. front: {
  11781. height: math.unit(6, "feet"),
  11782. weight: math.unit(150, "lb"),
  11783. name: "Front",
  11784. image: {
  11785. source: "./media/characters/splinter/front.svg",
  11786. extra: 2990 / 2882,
  11787. bottom: 0.04
  11788. }
  11789. },
  11790. back: {
  11791. height: math.unit(6, "feet"),
  11792. weight: math.unit(150, "lb"),
  11793. name: "Back",
  11794. image: {
  11795. source: "./media/characters/splinter/back.svg",
  11796. extra: 2990 / 2882,
  11797. bottom: 0.04
  11798. }
  11799. },
  11800. },
  11801. [
  11802. {
  11803. name: "Normal",
  11804. height: math.unit(6, "feet")
  11805. },
  11806. {
  11807. name: "Macro",
  11808. height: math.unit(230, "meters"),
  11809. default: true
  11810. },
  11811. ]
  11812. ))
  11813. characterMakers.push(() => makeCharacter(
  11814. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11815. {
  11816. front: {
  11817. height: math.unit(4 + 10 / 12, "feet"),
  11818. weight: math.unit(480, "lb"),
  11819. name: "Front",
  11820. image: {
  11821. source: "./media/characters/snow-gabumon/front.svg",
  11822. extra: 1140 / 963,
  11823. bottom: 0.058
  11824. }
  11825. },
  11826. back: {
  11827. height: math.unit(4 + 10 / 12, "feet"),
  11828. weight: math.unit(480, "lb"),
  11829. name: "Back",
  11830. image: {
  11831. source: "./media/characters/snow-gabumon/back.svg",
  11832. extra: 1115 / 962,
  11833. bottom: 0.041
  11834. }
  11835. },
  11836. frontUndresed: {
  11837. height: math.unit(4 + 10 / 12, "feet"),
  11838. weight: math.unit(480, "lb"),
  11839. name: "Front (Undressed)",
  11840. image: {
  11841. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11842. extra: 1061 / 960,
  11843. bottom: 0.045
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Micro",
  11850. height: math.unit(1, "inch")
  11851. },
  11852. {
  11853. name: "Normal",
  11854. height: math.unit(4 + 10 / 12, "feet"),
  11855. default: true
  11856. },
  11857. {
  11858. name: "Macro",
  11859. height: math.unit(200, "feet")
  11860. },
  11861. {
  11862. name: "Megamacro",
  11863. height: math.unit(120, "miles")
  11864. },
  11865. {
  11866. name: "Gigamacro",
  11867. height: math.unit(9800, "miles")
  11868. },
  11869. ]
  11870. ))
  11871. characterMakers.push(() => makeCharacter(
  11872. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11873. {
  11874. front: {
  11875. height: math.unit(1.7, "meters"),
  11876. weight: math.unit(140, "lb"),
  11877. name: "Front",
  11878. image: {
  11879. source: "./media/characters/moody/front.svg",
  11880. extra: 3226 / 3007,
  11881. bottom: 0.087
  11882. }
  11883. },
  11884. },
  11885. [
  11886. {
  11887. name: "Micro",
  11888. height: math.unit(1, "mm")
  11889. },
  11890. {
  11891. name: "Normal",
  11892. height: math.unit(1.7, "meters"),
  11893. default: true
  11894. },
  11895. {
  11896. name: "Macro",
  11897. height: math.unit(80, "meters")
  11898. },
  11899. {
  11900. name: "Macro+",
  11901. height: math.unit(500, "meters")
  11902. },
  11903. ]
  11904. ))
  11905. characterMakers.push(() => makeCharacter(
  11906. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11907. {
  11908. front: {
  11909. height: math.unit(6, "feet"),
  11910. weight: math.unit(150, "lb"),
  11911. name: "Front",
  11912. image: {
  11913. source: "./media/characters/zyas/front.svg",
  11914. extra: 1180 / 1120,
  11915. bottom: 0.045
  11916. }
  11917. },
  11918. },
  11919. [
  11920. {
  11921. name: "Normal",
  11922. height: math.unit(10, "feet"),
  11923. default: true
  11924. },
  11925. {
  11926. name: "Macro",
  11927. height: math.unit(500, "feet")
  11928. },
  11929. {
  11930. name: "Megamacro",
  11931. height: math.unit(5, "miles")
  11932. },
  11933. {
  11934. name: "Teramacro",
  11935. height: math.unit(150000, "miles")
  11936. },
  11937. ]
  11938. ))
  11939. characterMakers.push(() => makeCharacter(
  11940. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11941. {
  11942. front: {
  11943. height: math.unit(6, "feet"),
  11944. weight: math.unit(150, "lb"),
  11945. name: "Front",
  11946. image: {
  11947. source: "./media/characters/cuon/front.svg",
  11948. extra: 1390 / 1320,
  11949. bottom: 0.008
  11950. }
  11951. },
  11952. },
  11953. [
  11954. {
  11955. name: "Micro",
  11956. height: math.unit(3, "inches")
  11957. },
  11958. {
  11959. name: "Normal",
  11960. height: math.unit(18 + 9 / 12, "feet"),
  11961. default: true
  11962. },
  11963. {
  11964. name: "Macro",
  11965. height: math.unit(360, "feet")
  11966. },
  11967. {
  11968. name: "Megamacro",
  11969. height: math.unit(360, "miles")
  11970. },
  11971. ]
  11972. ))
  11973. characterMakers.push(() => makeCharacter(
  11974. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11975. {
  11976. front: {
  11977. height: math.unit(2.4, "meters"),
  11978. weight: math.unit(70, "kg"),
  11979. name: "Front",
  11980. image: {
  11981. source: "./media/characters/nyanuxk/front.svg",
  11982. extra: 1172 / 1084,
  11983. bottom: 0.065
  11984. }
  11985. },
  11986. side: {
  11987. height: math.unit(2.4, "meters"),
  11988. weight: math.unit(70, "kg"),
  11989. name: "Side",
  11990. image: {
  11991. source: "./media/characters/nyanuxk/side.svg",
  11992. extra: 1190 / 1132,
  11993. bottom: 0.007
  11994. }
  11995. },
  11996. back: {
  11997. height: math.unit(2.4, "meters"),
  11998. weight: math.unit(70, "kg"),
  11999. name: "Back",
  12000. image: {
  12001. source: "./media/characters/nyanuxk/back.svg",
  12002. extra: 1200 / 1141,
  12003. bottom: 0.015
  12004. }
  12005. },
  12006. foot: {
  12007. height: math.unit(0.52, "meters"),
  12008. name: "Foot",
  12009. image: {
  12010. source: "./media/characters/nyanuxk/foot.svg"
  12011. }
  12012. },
  12013. },
  12014. [
  12015. {
  12016. name: "Micro",
  12017. height: math.unit(2, "cm")
  12018. },
  12019. {
  12020. name: "Normal",
  12021. height: math.unit(2.4, "meters"),
  12022. default: true
  12023. },
  12024. {
  12025. name: "Smaller Macro",
  12026. height: math.unit(120, "meters")
  12027. },
  12028. {
  12029. name: "Bigger Macro",
  12030. height: math.unit(1.2, "km")
  12031. },
  12032. {
  12033. name: "Megamacro",
  12034. height: math.unit(15, "kilometers")
  12035. },
  12036. {
  12037. name: "Gigamacro",
  12038. height: math.unit(2000, "km")
  12039. },
  12040. {
  12041. name: "Teramacro",
  12042. height: math.unit(500000, "km")
  12043. },
  12044. ]
  12045. ))
  12046. characterMakers.push(() => makeCharacter(
  12047. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12048. {
  12049. side: {
  12050. height: math.unit(6, "feet"),
  12051. name: "Side",
  12052. image: {
  12053. source: "./media/characters/ailbhe/side.svg",
  12054. extra: 757 / 464,
  12055. bottom: 0.041
  12056. }
  12057. },
  12058. },
  12059. [
  12060. {
  12061. name: "Normal",
  12062. height: math.unit(1.07, "meters"),
  12063. default: true
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12069. {
  12070. front: {
  12071. height: math.unit(6, "feet"),
  12072. weight: math.unit(120, "kg"),
  12073. name: "Front",
  12074. image: {
  12075. source: "./media/characters/zevulfius/front.svg",
  12076. extra: 965 / 903
  12077. }
  12078. },
  12079. side: {
  12080. height: math.unit(6, "feet"),
  12081. weight: math.unit(120, "kg"),
  12082. name: "Side",
  12083. image: {
  12084. source: "./media/characters/zevulfius/side.svg",
  12085. extra: 939 / 900
  12086. }
  12087. },
  12088. back: {
  12089. height: math.unit(6, "feet"),
  12090. weight: math.unit(120, "kg"),
  12091. name: "Back",
  12092. image: {
  12093. source: "./media/characters/zevulfius/back.svg",
  12094. extra: 918 / 854,
  12095. bottom: 0.005
  12096. }
  12097. },
  12098. foot: {
  12099. height: math.unit(6 / 3.72, "feet"),
  12100. name: "Foot",
  12101. image: {
  12102. source: "./media/characters/zevulfius/foot.svg"
  12103. }
  12104. },
  12105. },
  12106. [
  12107. {
  12108. name: "Macro",
  12109. height: math.unit(750, "meters")
  12110. },
  12111. {
  12112. name: "Megamacro",
  12113. height: math.unit(20, "km"),
  12114. default: true
  12115. },
  12116. {
  12117. name: "Gigamacro",
  12118. height: math.unit(2000, "km")
  12119. },
  12120. {
  12121. name: "Teramacro",
  12122. height: math.unit(250000, "km")
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(100, "feet"),
  12131. weight: math.unit(350, "kg"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/rikes/front.svg",
  12135. extra: 1565 / 1483,
  12136. bottom: 0.017
  12137. }
  12138. },
  12139. },
  12140. [
  12141. {
  12142. name: "Macro",
  12143. height: math.unit(100, "feet"),
  12144. default: true
  12145. },
  12146. ]
  12147. ))
  12148. characterMakers.push(() => makeCharacter(
  12149. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12150. {
  12151. front: {
  12152. height: math.unit(8, "feet"),
  12153. weight: math.unit(356, "lb"),
  12154. name: "Front",
  12155. image: {
  12156. source: "./media/characters/adam-silver-mane/front.svg",
  12157. extra: 1036/937,
  12158. bottom: 63/1099
  12159. }
  12160. },
  12161. side: {
  12162. height: math.unit(8, "feet"),
  12163. weight: math.unit(356, "lb"),
  12164. name: "Side",
  12165. image: {
  12166. source: "./media/characters/adam-silver-mane/side.svg",
  12167. extra: 997/901,
  12168. bottom: 59/1056
  12169. }
  12170. },
  12171. frontNsfw: {
  12172. height: math.unit(8, "feet"),
  12173. weight: math.unit(356, "lb"),
  12174. name: "Front (NSFW)",
  12175. image: {
  12176. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12177. extra: 1036/937,
  12178. bottom: 63/1099
  12179. }
  12180. },
  12181. sideNsfw: {
  12182. height: math.unit(8, "feet"),
  12183. weight: math.unit(356, "lb"),
  12184. name: "Side (NSFW)",
  12185. image: {
  12186. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12187. extra: 997/901,
  12188. bottom: 59/1056
  12189. }
  12190. },
  12191. dick: {
  12192. height: math.unit(2.1, "feet"),
  12193. name: "Dick",
  12194. image: {
  12195. source: "./media/characters/adam-silver-mane/dick.svg"
  12196. }
  12197. },
  12198. taur: {
  12199. height: math.unit(16, "feet"),
  12200. weight: math.unit(1500, "kg"),
  12201. name: "Taur",
  12202. image: {
  12203. source: "./media/characters/adam-silver-mane/taur.svg",
  12204. extra: 1713 / 1571,
  12205. bottom: 0.01
  12206. }
  12207. },
  12208. },
  12209. [
  12210. {
  12211. name: "Normal",
  12212. height: math.unit(8, "feet")
  12213. },
  12214. {
  12215. name: "Minimacro",
  12216. height: math.unit(80, "feet")
  12217. },
  12218. {
  12219. name: "MDA",
  12220. height: math.unit(80, "meters")
  12221. },
  12222. {
  12223. name: "Macro",
  12224. height: math.unit(800, "feet"),
  12225. default: true
  12226. },
  12227. {
  12228. name: "Megamacro",
  12229. height: math.unit(8000, "feet")
  12230. },
  12231. {
  12232. name: "Gigamacro",
  12233. height: math.unit(800, "miles")
  12234. },
  12235. {
  12236. name: "Teramacro",
  12237. height: math.unit(80000, "miles")
  12238. },
  12239. {
  12240. name: "Celestial",
  12241. height: math.unit(8e6, "miles")
  12242. },
  12243. {
  12244. name: "Star Dragon",
  12245. height: math.unit(800000, "parsecs")
  12246. },
  12247. {
  12248. name: "Godly",
  12249. height: math.unit(800, "teraparsecs")
  12250. },
  12251. ]
  12252. ))
  12253. characterMakers.push(() => makeCharacter(
  12254. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12255. {
  12256. front: {
  12257. height: math.unit(6, "feet"),
  12258. weight: math.unit(150, "lb"),
  12259. name: "Front",
  12260. image: {
  12261. source: "./media/characters/ky'owin/front.svg",
  12262. extra: 3862/3053,
  12263. bottom: 74/3936
  12264. }
  12265. },
  12266. },
  12267. [
  12268. {
  12269. name: "Normal",
  12270. height: math.unit(6 + 8 / 12, "feet")
  12271. },
  12272. {
  12273. name: "Large",
  12274. height: math.unit(68, "feet")
  12275. },
  12276. {
  12277. name: "Macro",
  12278. height: math.unit(132, "feet")
  12279. },
  12280. {
  12281. name: "Macro+",
  12282. height: math.unit(340, "feet")
  12283. },
  12284. {
  12285. name: "Macro++",
  12286. height: math.unit(680, "feet"),
  12287. default: true
  12288. },
  12289. {
  12290. name: "Megamacro",
  12291. height: math.unit(1, "mile")
  12292. },
  12293. {
  12294. name: "Megamacro+",
  12295. height: math.unit(10, "miles")
  12296. },
  12297. ]
  12298. ))
  12299. characterMakers.push(() => makeCharacter(
  12300. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12301. {
  12302. front: {
  12303. height: math.unit(4, "feet"),
  12304. weight: math.unit(50, "lb"),
  12305. name: "Front",
  12306. image: {
  12307. source: "./media/characters/mal/front.svg",
  12308. extra: 785 / 724,
  12309. bottom: 0.07
  12310. }
  12311. },
  12312. },
  12313. [
  12314. {
  12315. name: "Micro",
  12316. height: math.unit(4, "inches")
  12317. },
  12318. {
  12319. name: "Normal",
  12320. height: math.unit(4, "feet"),
  12321. default: true
  12322. },
  12323. {
  12324. name: "Macro",
  12325. height: math.unit(200, "feet")
  12326. },
  12327. ]
  12328. ))
  12329. characterMakers.push(() => makeCharacter(
  12330. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12331. {
  12332. front: {
  12333. height: math.unit(6, "feet"),
  12334. weight: math.unit(150, "lb"),
  12335. name: "Front",
  12336. image: {
  12337. source: "./media/characters/jordan-deware/front.svg",
  12338. extra: 1191 / 1012
  12339. }
  12340. },
  12341. },
  12342. [
  12343. {
  12344. name: "Nano",
  12345. height: math.unit(0.01, "mm")
  12346. },
  12347. {
  12348. name: "Minimicro",
  12349. height: math.unit(1, "mm")
  12350. },
  12351. {
  12352. name: "Micro",
  12353. height: math.unit(0.5, "inches")
  12354. },
  12355. {
  12356. name: "Normal",
  12357. height: math.unit(4, "feet"),
  12358. default: true
  12359. },
  12360. {
  12361. name: "Minimacro",
  12362. height: math.unit(40, "meters")
  12363. },
  12364. {
  12365. name: "Small Macro",
  12366. height: math.unit(400, "meters")
  12367. },
  12368. {
  12369. name: "Macro",
  12370. height: math.unit(4, "miles")
  12371. },
  12372. {
  12373. name: "Megamacro",
  12374. height: math.unit(40, "miles")
  12375. },
  12376. {
  12377. name: "Megamacro+",
  12378. height: math.unit(400, "miles")
  12379. },
  12380. {
  12381. name: "Gigamacro",
  12382. height: math.unit(400000, "miles")
  12383. },
  12384. ]
  12385. ))
  12386. characterMakers.push(() => makeCharacter(
  12387. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12388. {
  12389. front: {
  12390. height: math.unit(15, "feet"),
  12391. weight: math.unit(3000, "kg"),
  12392. preyCapacity: math.unit(450, "people"),
  12393. name: "Front",
  12394. image: {
  12395. source: "./media/characters/kimiko/front.svg",
  12396. extra: 875/832,
  12397. bottom: 36/911
  12398. },
  12399. extraAttributes: {
  12400. "pawSize": {
  12401. name: "Paw Size",
  12402. power: 1,
  12403. type: "length",
  12404. base: math.unit(0.9, "meters")
  12405. },
  12406. }
  12407. },
  12408. side: {
  12409. height: math.unit(15, "feet"),
  12410. weight: math.unit(3000, "kg"),
  12411. preyCapacity: math.unit(400, "people"),
  12412. name: "Side",
  12413. image: {
  12414. source: "./media/characters/kimiko/side.svg",
  12415. extra: 448/270,
  12416. bottom: 7/455
  12417. },
  12418. extraAttributes: {
  12419. "pawSize": {
  12420. name: "Paw Size",
  12421. power: 1,
  12422. type: "length",
  12423. base: math.unit(0.9, "meters")
  12424. },
  12425. }
  12426. },
  12427. maw: {
  12428. height: math.unit(0.81, "feet"),
  12429. name: "Maw",
  12430. image: {
  12431. source: "./media/characters/kimiko/maw.svg"
  12432. }
  12433. },
  12434. },
  12435. [
  12436. {
  12437. name: "Normal",
  12438. height: math.unit(15, "feet"),
  12439. default: true
  12440. },
  12441. {
  12442. name: "Macro",
  12443. height: math.unit(220, "feet")
  12444. },
  12445. {
  12446. name: "Macro+",
  12447. height: math.unit(1450, "feet")
  12448. },
  12449. {
  12450. name: "Megamacro",
  12451. height: math.unit(11500, "feet")
  12452. },
  12453. {
  12454. name: "Gigamacro",
  12455. height: math.unit(9500, "miles")
  12456. },
  12457. {
  12458. name: "Teramacro",
  12459. height: math.unit(2208005005, "miles")
  12460. },
  12461. {
  12462. name: "Examacro",
  12463. height: math.unit(2750, "parsecs")
  12464. },
  12465. {
  12466. name: "Zettamacro",
  12467. height: math.unit(101500, "parsecs")
  12468. },
  12469. ]
  12470. ))
  12471. characterMakers.push(() => makeCharacter(
  12472. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12473. {
  12474. front: {
  12475. height: math.unit(6, "feet"),
  12476. weight: math.unit(70, "kg"),
  12477. name: "Front",
  12478. image: {
  12479. source: "./media/characters/andrew-sleepy/front.svg"
  12480. }
  12481. },
  12482. side: {
  12483. height: math.unit(6, "feet"),
  12484. weight: math.unit(70, "kg"),
  12485. name: "Side",
  12486. image: {
  12487. source: "./media/characters/andrew-sleepy/side.svg"
  12488. }
  12489. },
  12490. },
  12491. [
  12492. {
  12493. name: "Micro",
  12494. height: math.unit(1, "mm"),
  12495. default: true
  12496. },
  12497. ]
  12498. ))
  12499. characterMakers.push(() => makeCharacter(
  12500. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12501. {
  12502. front: {
  12503. height: math.unit(6, "feet"),
  12504. weight: math.unit(150, "lb"),
  12505. name: "Front",
  12506. image: {
  12507. source: "./media/characters/judio/front.svg",
  12508. extra: 1258 / 1110
  12509. }
  12510. },
  12511. },
  12512. [
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(5 + 6 / 12, "feet")
  12516. },
  12517. {
  12518. name: "Macro",
  12519. height: math.unit(1000, "feet"),
  12520. default: true
  12521. },
  12522. {
  12523. name: "Megamacro",
  12524. height: math.unit(10, "miles")
  12525. },
  12526. ]
  12527. ))
  12528. characterMakers.push(() => makeCharacter(
  12529. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12530. {
  12531. frontDressed: {
  12532. height: math.unit(6, "feet"),
  12533. weight: math.unit(68, "kg"),
  12534. name: "Front (Dressed)",
  12535. image: {
  12536. source: "./media/characters/nomaxice/front-dressed.svg",
  12537. extra: 1137/824,
  12538. bottom: 74/1211
  12539. }
  12540. },
  12541. frontShorts: {
  12542. height: math.unit(6, "feet"),
  12543. weight: math.unit(68, "kg"),
  12544. name: "Front (Shorts)",
  12545. image: {
  12546. source: "./media/characters/nomaxice/front-shorts.svg",
  12547. extra: 1137/824,
  12548. bottom: 74/1211
  12549. }
  12550. },
  12551. back: {
  12552. height: math.unit(6, "feet"),
  12553. weight: math.unit(68, "kg"),
  12554. name: "Back",
  12555. image: {
  12556. source: "./media/characters/nomaxice/back.svg",
  12557. extra: 822/786,
  12558. bottom: 39/861
  12559. }
  12560. },
  12561. hand: {
  12562. height: math.unit(0.565, "feet"),
  12563. name: "Hand",
  12564. image: {
  12565. source: "./media/characters/nomaxice/hand.svg"
  12566. }
  12567. },
  12568. foot: {
  12569. height: math.unit(1, "feet"),
  12570. name: "Foot",
  12571. image: {
  12572. source: "./media/characters/nomaxice/foot.svg"
  12573. }
  12574. },
  12575. },
  12576. [
  12577. {
  12578. name: "Micro",
  12579. height: math.unit(8, "cm")
  12580. },
  12581. {
  12582. name: "Norm",
  12583. height: math.unit(1.82, "m")
  12584. },
  12585. {
  12586. name: "Norm+",
  12587. height: math.unit(8.8, "feet"),
  12588. default: true
  12589. },
  12590. {
  12591. name: "Big",
  12592. height: math.unit(8, "meters")
  12593. },
  12594. {
  12595. name: "Macro",
  12596. height: math.unit(18, "meters")
  12597. },
  12598. {
  12599. name: "Macro+",
  12600. height: math.unit(88, "meters")
  12601. },
  12602. ]
  12603. ))
  12604. characterMakers.push(() => makeCharacter(
  12605. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12606. {
  12607. front: {
  12608. height: math.unit(12, "feet"),
  12609. weight: math.unit(1.5, "tons"),
  12610. name: "Front",
  12611. image: {
  12612. source: "./media/characters/dydros/front.svg",
  12613. extra: 863 / 800,
  12614. bottom: 0.015
  12615. }
  12616. },
  12617. back: {
  12618. height: math.unit(12, "feet"),
  12619. weight: math.unit(1.5, "tons"),
  12620. name: "Back",
  12621. image: {
  12622. source: "./media/characters/dydros/back.svg",
  12623. extra: 900 / 843,
  12624. bottom: 0.005
  12625. }
  12626. },
  12627. },
  12628. [
  12629. {
  12630. name: "Normal",
  12631. height: math.unit(12, "feet"),
  12632. default: true
  12633. },
  12634. ]
  12635. ))
  12636. characterMakers.push(() => makeCharacter(
  12637. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12638. {
  12639. front: {
  12640. height: math.unit(6, "feet"),
  12641. weight: math.unit(100, "kg"),
  12642. name: "Front",
  12643. image: {
  12644. source: "./media/characters/riggi/front.svg",
  12645. extra: 5787 / 5303
  12646. }
  12647. },
  12648. hyper: {
  12649. height: math.unit(6 * 5 / 3, "feet"),
  12650. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12651. name: "Hyper",
  12652. image: {
  12653. source: "./media/characters/riggi/hyper.svg",
  12654. extra: 3595 / 3485
  12655. }
  12656. },
  12657. },
  12658. [
  12659. {
  12660. name: "Small Macro",
  12661. height: math.unit(50, "feet")
  12662. },
  12663. {
  12664. name: "Default",
  12665. height: math.unit(200, "feet"),
  12666. default: true
  12667. },
  12668. {
  12669. name: "Loom",
  12670. height: math.unit(10000, "feet")
  12671. },
  12672. {
  12673. name: "Cruising Altitude",
  12674. height: math.unit(30000, "feet")
  12675. },
  12676. {
  12677. name: "Megamacro",
  12678. height: math.unit(100, "miles")
  12679. },
  12680. {
  12681. name: "Continent Sized",
  12682. height: math.unit(2800, "miles")
  12683. },
  12684. {
  12685. name: "Earth Sized",
  12686. height: math.unit(8000, "miles")
  12687. },
  12688. ]
  12689. ))
  12690. characterMakers.push(() => makeCharacter(
  12691. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12692. {
  12693. front: {
  12694. height: math.unit(6, "feet"),
  12695. weight: math.unit(250, "lb"),
  12696. name: "Front",
  12697. image: {
  12698. source: "./media/characters/alexi/front.svg",
  12699. extra: 3483 / 3291,
  12700. bottom: 0.04
  12701. }
  12702. },
  12703. back: {
  12704. height: math.unit(6, "feet"),
  12705. weight: math.unit(250, "lb"),
  12706. name: "Back",
  12707. image: {
  12708. source: "./media/characters/alexi/back.svg",
  12709. extra: 3533 / 3356,
  12710. bottom: 0.021
  12711. }
  12712. },
  12713. frontTransforming: {
  12714. height: math.unit(8.58, "feet"),
  12715. weight: math.unit(1300, "lb"),
  12716. name: "Transforming",
  12717. image: {
  12718. source: "./media/characters/alexi/front-transforming.svg",
  12719. extra: 437 / 409,
  12720. bottom: 19 / 458.66
  12721. }
  12722. },
  12723. frontTransformed: {
  12724. height: math.unit(12.5, "feet"),
  12725. weight: math.unit(4000, "lb"),
  12726. name: "Transformed",
  12727. image: {
  12728. source: "./media/characters/alexi/front-transformed.svg",
  12729. extra: 639 / 614,
  12730. bottom: 30.55 / 671
  12731. }
  12732. },
  12733. },
  12734. [
  12735. {
  12736. name: "Normal",
  12737. height: math.unit(14, "feet"),
  12738. default: true
  12739. },
  12740. {
  12741. name: "Minimacro",
  12742. height: math.unit(30, "meters")
  12743. },
  12744. {
  12745. name: "Macro",
  12746. height: math.unit(500, "meters")
  12747. },
  12748. {
  12749. name: "Megamacro",
  12750. height: math.unit(9000, "km")
  12751. },
  12752. {
  12753. name: "Teramacro",
  12754. height: math.unit(384000, "km")
  12755. },
  12756. ]
  12757. ))
  12758. characterMakers.push(() => makeCharacter(
  12759. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12760. {
  12761. front: {
  12762. height: math.unit(6, "feet"),
  12763. weight: math.unit(150, "lb"),
  12764. name: "Front",
  12765. image: {
  12766. source: "./media/characters/kayroo/front.svg",
  12767. extra: 1153 / 1038,
  12768. bottom: 0.06
  12769. }
  12770. },
  12771. foot: {
  12772. height: math.unit(6, "feet"),
  12773. weight: math.unit(150, "lb"),
  12774. name: "Foot",
  12775. image: {
  12776. source: "./media/characters/kayroo/foot.svg"
  12777. }
  12778. },
  12779. },
  12780. [
  12781. {
  12782. name: "Normal",
  12783. height: math.unit(8, "feet"),
  12784. default: true
  12785. },
  12786. {
  12787. name: "Minimacro",
  12788. height: math.unit(250, "feet")
  12789. },
  12790. {
  12791. name: "Macro",
  12792. height: math.unit(2800, "feet")
  12793. },
  12794. {
  12795. name: "Megamacro",
  12796. height: math.unit(5200, "feet")
  12797. },
  12798. {
  12799. name: "Gigamacro",
  12800. height: math.unit(27000, "feet")
  12801. },
  12802. {
  12803. name: "Omega",
  12804. height: math.unit(45000, "feet")
  12805. },
  12806. ]
  12807. ))
  12808. characterMakers.push(() => makeCharacter(
  12809. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12810. {
  12811. front: {
  12812. height: math.unit(18, "feet"),
  12813. weight: math.unit(5800, "lb"),
  12814. name: "Front",
  12815. image: {
  12816. source: "./media/characters/rhys/front.svg",
  12817. extra: 3386 / 3090,
  12818. bottom: 0.07
  12819. }
  12820. },
  12821. },
  12822. [
  12823. {
  12824. name: "Normal",
  12825. height: math.unit(18, "feet"),
  12826. default: true
  12827. },
  12828. {
  12829. name: "Working Size",
  12830. height: math.unit(200, "feet")
  12831. },
  12832. {
  12833. name: "Demolition Size",
  12834. height: math.unit(2000, "feet")
  12835. },
  12836. {
  12837. name: "Maximum Licensed Size",
  12838. height: math.unit(5, "miles")
  12839. },
  12840. {
  12841. name: "Maximum Observed Size",
  12842. height: math.unit(10, "yottameters")
  12843. },
  12844. ]
  12845. ))
  12846. characterMakers.push(() => makeCharacter(
  12847. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12848. {
  12849. front: {
  12850. height: math.unit(6, "feet"),
  12851. weight: math.unit(250, "lb"),
  12852. name: "Front",
  12853. image: {
  12854. source: "./media/characters/toto/front.svg",
  12855. extra: 527 / 479,
  12856. bottom: 0.05
  12857. }
  12858. },
  12859. },
  12860. [
  12861. {
  12862. name: "Micro",
  12863. height: math.unit(3, "feet")
  12864. },
  12865. {
  12866. name: "Normal",
  12867. height: math.unit(10, "feet")
  12868. },
  12869. {
  12870. name: "Macro",
  12871. height: math.unit(150, "feet"),
  12872. default: true
  12873. },
  12874. {
  12875. name: "Megamacro",
  12876. height: math.unit(1200, "feet")
  12877. },
  12878. ]
  12879. ))
  12880. characterMakers.push(() => makeCharacter(
  12881. { name: "King", species: ["lion"], tags: ["anthro"] },
  12882. {
  12883. back: {
  12884. height: math.unit(6, "feet"),
  12885. weight: math.unit(150, "lb"),
  12886. name: "Back",
  12887. image: {
  12888. source: "./media/characters/king/back.svg"
  12889. }
  12890. },
  12891. },
  12892. [
  12893. {
  12894. name: "Micro",
  12895. height: math.unit(2, "inches")
  12896. },
  12897. {
  12898. name: "Normal",
  12899. height: math.unit(8, "feet")
  12900. },
  12901. {
  12902. name: "Macro",
  12903. height: math.unit(200, "feet"),
  12904. default: true
  12905. },
  12906. {
  12907. name: "Megamacro",
  12908. height: math.unit(50, "miles")
  12909. },
  12910. ]
  12911. ))
  12912. characterMakers.push(() => makeCharacter(
  12913. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12914. {
  12915. front: {
  12916. height: math.unit(11, "feet"),
  12917. weight: math.unit(1400, "lb"),
  12918. name: "Front",
  12919. image: {
  12920. source: "./media/characters/cordite/front.svg",
  12921. extra: 1919/1827,
  12922. bottom: 40/1959
  12923. }
  12924. },
  12925. side: {
  12926. height: math.unit(11, "feet"),
  12927. weight: math.unit(1400, "lb"),
  12928. name: "Side",
  12929. image: {
  12930. source: "./media/characters/cordite/side.svg",
  12931. extra: 1908/1793,
  12932. bottom: 38/1946
  12933. }
  12934. },
  12935. back: {
  12936. height: math.unit(11, "feet"),
  12937. weight: math.unit(1400, "lb"),
  12938. name: "Back",
  12939. image: {
  12940. source: "./media/characters/cordite/back.svg",
  12941. extra: 1938/1837,
  12942. bottom: 10/1948
  12943. }
  12944. },
  12945. feral: {
  12946. height: math.unit(2, "feet"),
  12947. weight: math.unit(90, "lb"),
  12948. name: "Feral",
  12949. image: {
  12950. source: "./media/characters/cordite/feral.svg",
  12951. extra: 1260 / 755,
  12952. bottom: 0.05
  12953. }
  12954. },
  12955. },
  12956. [
  12957. {
  12958. name: "Normal",
  12959. height: math.unit(11, "feet"),
  12960. default: true
  12961. },
  12962. ]
  12963. ))
  12964. characterMakers.push(() => makeCharacter(
  12965. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12966. {
  12967. front: {
  12968. height: math.unit(6, "feet"),
  12969. weight: math.unit(150, "lb"),
  12970. name: "Front",
  12971. image: {
  12972. source: "./media/characters/pianostrong/front.svg",
  12973. extra: 6577 / 6254,
  12974. bottom: 0.02
  12975. }
  12976. },
  12977. side: {
  12978. height: math.unit(6, "feet"),
  12979. weight: math.unit(150, "lb"),
  12980. name: "Side",
  12981. image: {
  12982. source: "./media/characters/pianostrong/side.svg",
  12983. extra: 6106 / 5730
  12984. }
  12985. },
  12986. back: {
  12987. height: math.unit(6, "feet"),
  12988. weight: math.unit(150, "lb"),
  12989. name: "Back",
  12990. image: {
  12991. source: "./media/characters/pianostrong/back.svg",
  12992. extra: 6085 / 5733,
  12993. bottom: 0.01
  12994. }
  12995. },
  12996. },
  12997. [
  12998. {
  12999. name: "Macro",
  13000. height: math.unit(100, "feet")
  13001. },
  13002. {
  13003. name: "Macro+",
  13004. height: math.unit(300, "feet"),
  13005. default: true
  13006. },
  13007. {
  13008. name: "Macro++",
  13009. height: math.unit(1000, "feet")
  13010. },
  13011. ]
  13012. ))
  13013. characterMakers.push(() => makeCharacter(
  13014. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13015. {
  13016. front: {
  13017. height: math.unit(6, "feet"),
  13018. weight: math.unit(150, "lb"),
  13019. name: "Front",
  13020. image: {
  13021. source: "./media/characters/kona/front.svg",
  13022. extra: 2960 / 2629,
  13023. bottom: 0.005
  13024. }
  13025. },
  13026. },
  13027. [
  13028. {
  13029. name: "Normal",
  13030. height: math.unit(11 + 8 / 12, "feet")
  13031. },
  13032. {
  13033. name: "Macro",
  13034. height: math.unit(850, "feet"),
  13035. default: true
  13036. },
  13037. {
  13038. name: "Macro+",
  13039. height: math.unit(1.5, "km"),
  13040. default: true
  13041. },
  13042. {
  13043. name: "Megamacro",
  13044. height: math.unit(80, "miles")
  13045. },
  13046. {
  13047. name: "Gigamacro",
  13048. height: math.unit(3500, "miles")
  13049. },
  13050. ]
  13051. ))
  13052. characterMakers.push(() => makeCharacter(
  13053. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13054. {
  13055. side: {
  13056. height: math.unit(1.9, "meters"),
  13057. weight: math.unit(326, "kg"),
  13058. name: "Side",
  13059. image: {
  13060. source: "./media/characters/levi/side.svg",
  13061. extra: 1704 / 1334,
  13062. bottom: 0.02
  13063. }
  13064. },
  13065. },
  13066. [
  13067. {
  13068. name: "Normal",
  13069. height: math.unit(1.9, "meters"),
  13070. default: true
  13071. },
  13072. {
  13073. name: "Macro",
  13074. height: math.unit(20, "meters")
  13075. },
  13076. {
  13077. name: "Macro+",
  13078. height: math.unit(200, "meters")
  13079. },
  13080. {
  13081. name: "Megamacro",
  13082. height: math.unit(2, "km")
  13083. },
  13084. {
  13085. name: "Megamacro+",
  13086. height: math.unit(20, "km")
  13087. },
  13088. {
  13089. name: "Gigamacro",
  13090. height: math.unit(2500, "km")
  13091. },
  13092. {
  13093. name: "Gigamacro+",
  13094. height: math.unit(120000, "km")
  13095. },
  13096. {
  13097. name: "Teramacro",
  13098. height: math.unit(7.77e6, "km")
  13099. },
  13100. ]
  13101. ))
  13102. characterMakers.push(() => makeCharacter(
  13103. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13104. {
  13105. front: {
  13106. height: math.unit(6 + 4/12, "feet"),
  13107. weight: math.unit(190, "lb"),
  13108. name: "Front",
  13109. image: {
  13110. source: "./media/characters/bmc/front.svg",
  13111. extra: 1626/1472,
  13112. bottom: 79/1705
  13113. }
  13114. },
  13115. back: {
  13116. height: math.unit(6 + 4/12, "feet"),
  13117. weight: math.unit(190, "lb"),
  13118. name: "Back",
  13119. image: {
  13120. source: "./media/characters/bmc/back.svg",
  13121. extra: 1640/1479,
  13122. bottom: 45/1685
  13123. }
  13124. },
  13125. frontArmor: {
  13126. height: math.unit(6 + 4/12, "feet"),
  13127. weight: math.unit(190, "lb"),
  13128. name: "Front-armor",
  13129. image: {
  13130. source: "./media/characters/bmc/front-armor.svg",
  13131. extra: 1538/1468,
  13132. bottom: 79/1617
  13133. }
  13134. },
  13135. },
  13136. [
  13137. {
  13138. name: "Human-sized",
  13139. height: math.unit(6 + 4 / 12, "feet")
  13140. },
  13141. {
  13142. name: "Interactive Size",
  13143. height: math.unit(25, "feet")
  13144. },
  13145. {
  13146. name: "Small",
  13147. height: math.unit(250, "feet")
  13148. },
  13149. {
  13150. name: "Normal",
  13151. height: math.unit(1250, "feet"),
  13152. default: true
  13153. },
  13154. {
  13155. name: "Good Day",
  13156. height: math.unit(88, "miles")
  13157. },
  13158. {
  13159. name: "Largest Measured Size",
  13160. height: math.unit(105.960, "galaxies")
  13161. },
  13162. ]
  13163. ))
  13164. characterMakers.push(() => makeCharacter(
  13165. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13166. {
  13167. front: {
  13168. height: math.unit(20, "feet"),
  13169. weight: math.unit(2016, "kg"),
  13170. name: "Front",
  13171. image: {
  13172. source: "./media/characters/sven-the-kaiju/front.svg",
  13173. extra: 1277/1250,
  13174. bottom: 35/1312
  13175. }
  13176. },
  13177. mouth: {
  13178. height: math.unit(1.85, "feet"),
  13179. name: "Mouth",
  13180. image: {
  13181. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13182. }
  13183. },
  13184. },
  13185. [
  13186. {
  13187. name: "Fairy",
  13188. height: math.unit(6, "inches")
  13189. },
  13190. {
  13191. name: "Normal",
  13192. height: math.unit(20, "feet"),
  13193. default: true
  13194. },
  13195. {
  13196. name: "Rampage",
  13197. height: math.unit(200, "feet")
  13198. },
  13199. {
  13200. name: "Archfey Forest Guardian",
  13201. height: math.unit(1, "mile")
  13202. },
  13203. ]
  13204. ))
  13205. characterMakers.push(() => makeCharacter(
  13206. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13207. {
  13208. front: {
  13209. height: math.unit(4, "meters"),
  13210. weight: math.unit(2, "tons"),
  13211. name: "Front",
  13212. image: {
  13213. source: "./media/characters/marik/front.svg",
  13214. extra: 1057 / 1003,
  13215. bottom: 0.08
  13216. }
  13217. },
  13218. },
  13219. [
  13220. {
  13221. name: "Normal",
  13222. height: math.unit(4, "meters"),
  13223. default: true
  13224. },
  13225. {
  13226. name: "Macro",
  13227. height: math.unit(20, "meters")
  13228. },
  13229. {
  13230. name: "Megamacro",
  13231. height: math.unit(50, "km")
  13232. },
  13233. {
  13234. name: "Gigamacro",
  13235. height: math.unit(100, "km")
  13236. },
  13237. {
  13238. name: "Alpha Macro",
  13239. height: math.unit(7.88e7, "yottameters")
  13240. },
  13241. ]
  13242. ))
  13243. characterMakers.push(() => makeCharacter(
  13244. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13245. {
  13246. front: {
  13247. height: math.unit(6, "feet"),
  13248. weight: math.unit(110, "lb"),
  13249. name: "Front",
  13250. image: {
  13251. source: "./media/characters/mel/front.svg",
  13252. extra: 736 / 617,
  13253. bottom: 0.017
  13254. }
  13255. },
  13256. },
  13257. [
  13258. {
  13259. name: "Pico",
  13260. height: math.unit(3, "pm")
  13261. },
  13262. {
  13263. name: "Nano",
  13264. height: math.unit(3, "nm")
  13265. },
  13266. {
  13267. name: "Micro",
  13268. height: math.unit(0.3, "mm"),
  13269. default: true
  13270. },
  13271. {
  13272. name: "Micro+",
  13273. height: math.unit(3, "mm")
  13274. },
  13275. {
  13276. name: "Normal",
  13277. height: math.unit(5 + 10.5 / 12, "feet")
  13278. },
  13279. ]
  13280. ))
  13281. characterMakers.push(() => makeCharacter(
  13282. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13283. {
  13284. kaiju: {
  13285. height: math.unit(1.75, "meters"),
  13286. weight: math.unit(55, "kg"),
  13287. name: "Kaiju",
  13288. image: {
  13289. source: "./media/characters/lykonous/kaiju.svg",
  13290. extra: 1055 / 946,
  13291. bottom: 0.135
  13292. }
  13293. },
  13294. },
  13295. [
  13296. {
  13297. name: "Normal",
  13298. height: math.unit(2.5, "meters"),
  13299. default: true
  13300. },
  13301. {
  13302. name: "Kaiju Dragon",
  13303. height: math.unit(60, "meters")
  13304. },
  13305. {
  13306. name: "Mega Kaiju",
  13307. height: math.unit(120, "km")
  13308. },
  13309. {
  13310. name: "Giga Kaiju",
  13311. height: math.unit(200, "megameters")
  13312. },
  13313. {
  13314. name: "Terra Kaiju",
  13315. height: math.unit(400, "gigameters")
  13316. },
  13317. {
  13318. name: "Kaiju Dragon God",
  13319. height: math.unit(13000, "exaparsecs")
  13320. },
  13321. ]
  13322. ))
  13323. characterMakers.push(() => makeCharacter(
  13324. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13325. {
  13326. front: {
  13327. height: math.unit(6, "feet"),
  13328. weight: math.unit(150, "lb"),
  13329. name: "Front",
  13330. image: {
  13331. source: "./media/characters/blü/front.svg",
  13332. extra: 1883 / 1564,
  13333. bottom: 0.031
  13334. }
  13335. },
  13336. },
  13337. [
  13338. {
  13339. name: "Normal",
  13340. height: math.unit(13, "feet"),
  13341. default: true
  13342. },
  13343. {
  13344. name: "Big Boi",
  13345. height: math.unit(150, "meters")
  13346. },
  13347. {
  13348. name: "Mini Stomper",
  13349. height: math.unit(300, "meters")
  13350. },
  13351. {
  13352. name: "Macro",
  13353. height: math.unit(1000, "meters")
  13354. },
  13355. {
  13356. name: "Megamacro",
  13357. height: math.unit(11000, "meters")
  13358. },
  13359. {
  13360. name: "Gigamacro",
  13361. height: math.unit(11000, "km")
  13362. },
  13363. {
  13364. name: "Teramacro",
  13365. height: math.unit(420000, "km")
  13366. },
  13367. {
  13368. name: "Examacro",
  13369. height: math.unit(120, "parsecs")
  13370. },
  13371. {
  13372. name: "God Tho",
  13373. height: math.unit(98000000000, "parsecs")
  13374. },
  13375. ]
  13376. ))
  13377. characterMakers.push(() => makeCharacter(
  13378. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13379. {
  13380. taurFront: {
  13381. height: math.unit(6, "feet"),
  13382. weight: math.unit(200, "lb"),
  13383. name: "Taur (Front)",
  13384. image: {
  13385. source: "./media/characters/scales/taur-front.svg",
  13386. extra: 1,
  13387. bottom: 0.05
  13388. }
  13389. },
  13390. taurBack: {
  13391. height: math.unit(6, "feet"),
  13392. weight: math.unit(200, "lb"),
  13393. name: "Taur (Back)",
  13394. image: {
  13395. source: "./media/characters/scales/taur-back.svg",
  13396. extra: 1,
  13397. bottom: 0.08
  13398. }
  13399. },
  13400. anthro: {
  13401. height: math.unit(6 * 7 / 12, "feet"),
  13402. weight: math.unit(100, "lb"),
  13403. name: "Anthro",
  13404. image: {
  13405. source: "./media/characters/scales/anthro.svg",
  13406. extra: 1,
  13407. bottom: 0.06
  13408. }
  13409. },
  13410. },
  13411. [
  13412. {
  13413. name: "Normal",
  13414. height: math.unit(12, "feet"),
  13415. default: true
  13416. },
  13417. ]
  13418. ))
  13419. characterMakers.push(() => makeCharacter(
  13420. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13421. {
  13422. front: {
  13423. height: math.unit(6, "feet"),
  13424. weight: math.unit(150, "lb"),
  13425. name: "Front",
  13426. image: {
  13427. source: "./media/characters/koragos/front.svg",
  13428. extra: 841 / 794,
  13429. bottom: 0.035
  13430. }
  13431. },
  13432. back: {
  13433. height: math.unit(6, "feet"),
  13434. weight: math.unit(150, "lb"),
  13435. name: "Back",
  13436. image: {
  13437. source: "./media/characters/koragos/back.svg",
  13438. extra: 841 / 810,
  13439. bottom: 0.022
  13440. }
  13441. },
  13442. },
  13443. [
  13444. {
  13445. name: "Normal",
  13446. height: math.unit(6 + 11 / 12, "feet"),
  13447. default: true
  13448. },
  13449. {
  13450. name: "Macro",
  13451. height: math.unit(490, "feet")
  13452. },
  13453. {
  13454. name: "Megamacro",
  13455. height: math.unit(10, "miles")
  13456. },
  13457. {
  13458. name: "Gigamacro",
  13459. height: math.unit(50, "miles")
  13460. },
  13461. ]
  13462. ))
  13463. characterMakers.push(() => makeCharacter(
  13464. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13465. {
  13466. front: {
  13467. height: math.unit(6, "feet"),
  13468. weight: math.unit(250, "lb"),
  13469. name: "Front",
  13470. image: {
  13471. source: "./media/characters/xylrem/front.svg",
  13472. extra: 3323 / 3050,
  13473. bottom: 0.065
  13474. }
  13475. },
  13476. },
  13477. [
  13478. {
  13479. name: "Micro",
  13480. height: math.unit(4, "feet")
  13481. },
  13482. {
  13483. name: "Normal",
  13484. height: math.unit(16, "feet"),
  13485. default: true
  13486. },
  13487. {
  13488. name: "Macro",
  13489. height: math.unit(2720, "feet")
  13490. },
  13491. {
  13492. name: "Megamacro",
  13493. height: math.unit(25000, "miles")
  13494. },
  13495. ]
  13496. ))
  13497. characterMakers.push(() => makeCharacter(
  13498. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13499. {
  13500. front: {
  13501. height: math.unit(8, "feet"),
  13502. weight: math.unit(250, "kg"),
  13503. name: "Front",
  13504. image: {
  13505. source: "./media/characters/ikideru/front.svg",
  13506. extra: 930 / 870,
  13507. bottom: 0.087
  13508. }
  13509. },
  13510. back: {
  13511. height: math.unit(8, "feet"),
  13512. weight: math.unit(250, "kg"),
  13513. name: "Back",
  13514. image: {
  13515. source: "./media/characters/ikideru/back.svg",
  13516. extra: 919 / 852,
  13517. bottom: 0.055
  13518. }
  13519. },
  13520. },
  13521. [
  13522. {
  13523. name: "Rare",
  13524. height: math.unit(8, "feet"),
  13525. default: true
  13526. },
  13527. {
  13528. name: "Playful Loom",
  13529. height: math.unit(80, "feet")
  13530. },
  13531. {
  13532. name: "City Leaner",
  13533. height: math.unit(230, "feet")
  13534. },
  13535. {
  13536. name: "Megamacro",
  13537. height: math.unit(2500, "feet")
  13538. },
  13539. {
  13540. name: "Gigamacro",
  13541. height: math.unit(26400, "feet")
  13542. },
  13543. {
  13544. name: "Tectonic Shifter",
  13545. height: math.unit(1.7, "megameters")
  13546. },
  13547. {
  13548. name: "Planet Carer",
  13549. height: math.unit(21, "megameters")
  13550. },
  13551. {
  13552. name: "God",
  13553. height: math.unit(11157.22, "parsecs")
  13554. },
  13555. ]
  13556. ))
  13557. characterMakers.push(() => makeCharacter(
  13558. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13559. {
  13560. front: {
  13561. height: math.unit(6, "feet"),
  13562. weight: math.unit(120, "lb"),
  13563. name: "Front",
  13564. image: {
  13565. source: "./media/characters/neo/front.svg"
  13566. }
  13567. },
  13568. },
  13569. [
  13570. {
  13571. name: "Micro",
  13572. height: math.unit(2, "inches"),
  13573. default: true
  13574. },
  13575. {
  13576. name: "Human Size",
  13577. height: math.unit(5 + 8 / 12, "feet")
  13578. },
  13579. ]
  13580. ))
  13581. characterMakers.push(() => makeCharacter(
  13582. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13583. {
  13584. front: {
  13585. height: math.unit(13 + 10 / 12, "feet"),
  13586. weight: math.unit(5320, "lb"),
  13587. name: "Front",
  13588. image: {
  13589. source: "./media/characters/chauncey-chantz/front.svg",
  13590. extra: 1587 / 1435,
  13591. bottom: 0.02
  13592. }
  13593. },
  13594. },
  13595. [
  13596. {
  13597. name: "Normal",
  13598. height: math.unit(13 + 10 / 12, "feet"),
  13599. default: true
  13600. },
  13601. {
  13602. name: "Macro",
  13603. height: math.unit(45, "feet")
  13604. },
  13605. {
  13606. name: "Megamacro",
  13607. height: math.unit(250, "miles")
  13608. },
  13609. {
  13610. name: "Planetary",
  13611. height: math.unit(10000, "miles")
  13612. },
  13613. {
  13614. name: "Galactic",
  13615. height: math.unit(40000, "parsecs")
  13616. },
  13617. {
  13618. name: "Universal",
  13619. height: math.unit(1, "yottameter")
  13620. },
  13621. ]
  13622. ))
  13623. characterMakers.push(() => makeCharacter(
  13624. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13625. {
  13626. front: {
  13627. height: math.unit(6, "feet"),
  13628. weight: math.unit(150, "lb"),
  13629. name: "Front",
  13630. image: {
  13631. source: "./media/characters/epifox/front.svg",
  13632. extra: 1,
  13633. bottom: 0.075
  13634. }
  13635. },
  13636. },
  13637. [
  13638. {
  13639. name: "Micro",
  13640. height: math.unit(6, "inches")
  13641. },
  13642. {
  13643. name: "Normal",
  13644. height: math.unit(12, "feet"),
  13645. default: true
  13646. },
  13647. {
  13648. name: "Macro",
  13649. height: math.unit(3810, "feet")
  13650. },
  13651. {
  13652. name: "Megamacro",
  13653. height: math.unit(500, "miles")
  13654. },
  13655. ]
  13656. ))
  13657. characterMakers.push(() => makeCharacter(
  13658. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13659. {
  13660. front: {
  13661. height: math.unit(1.8796, "m"),
  13662. weight: math.unit(230, "lb"),
  13663. name: "Front",
  13664. image: {
  13665. source: "./media/characters/colin-t/front.svg",
  13666. extra: 1272 / 1193,
  13667. bottom: 0.07
  13668. }
  13669. },
  13670. },
  13671. [
  13672. {
  13673. name: "Micro",
  13674. height: math.unit(0.571, "meters")
  13675. },
  13676. {
  13677. name: "Normal",
  13678. height: math.unit(1.8796, "meters"),
  13679. default: true
  13680. },
  13681. {
  13682. name: "Tall",
  13683. height: math.unit(4, "meters")
  13684. },
  13685. {
  13686. name: "Macro",
  13687. height: math.unit(67.241, "meters")
  13688. },
  13689. {
  13690. name: "Megamacro",
  13691. height: math.unit(371.856, "meters")
  13692. },
  13693. {
  13694. name: "Planetary",
  13695. height: math.unit(12631.5689, "km")
  13696. },
  13697. ]
  13698. ))
  13699. characterMakers.push(() => makeCharacter(
  13700. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13701. {
  13702. front: {
  13703. height: math.unit(1.85, "meters"),
  13704. weight: math.unit(80, "kg"),
  13705. name: "Front",
  13706. image: {
  13707. source: "./media/characters/matvei/front.svg",
  13708. extra: 456/447,
  13709. bottom: 8/464
  13710. }
  13711. },
  13712. back: {
  13713. height: math.unit(1.85, "meters"),
  13714. weight: math.unit(80, "kg"),
  13715. name: "Back",
  13716. image: {
  13717. source: "./media/characters/matvei/back.svg",
  13718. extra: 434/427,
  13719. bottom: 11/445
  13720. }
  13721. },
  13722. },
  13723. [
  13724. {
  13725. name: "Normal",
  13726. height: math.unit(1.85, "meters"),
  13727. default: true
  13728. },
  13729. ]
  13730. ))
  13731. characterMakers.push(() => makeCharacter(
  13732. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13733. {
  13734. front: {
  13735. height: math.unit(5 + 9 / 12, "feet"),
  13736. weight: math.unit(70, "lb"),
  13737. name: "Front",
  13738. image: {
  13739. source: "./media/characters/quincy/front.svg",
  13740. extra: 3041 / 2751
  13741. }
  13742. },
  13743. back: {
  13744. height: math.unit(5 + 9 / 12, "feet"),
  13745. weight: math.unit(70, "lb"),
  13746. name: "Back",
  13747. image: {
  13748. source: "./media/characters/quincy/back.svg",
  13749. extra: 3041 / 2751
  13750. }
  13751. },
  13752. flying: {
  13753. height: math.unit(5 + 4 / 12, "feet"),
  13754. weight: math.unit(70, "lb"),
  13755. name: "Flying",
  13756. image: {
  13757. source: "./media/characters/quincy/flying.svg",
  13758. extra: 1044 / 930
  13759. }
  13760. },
  13761. },
  13762. [
  13763. {
  13764. name: "Micro",
  13765. height: math.unit(3, "cm")
  13766. },
  13767. {
  13768. name: "Normal",
  13769. height: math.unit(5 + 9 / 12, "feet")
  13770. },
  13771. {
  13772. name: "Macro",
  13773. height: math.unit(200, "meters"),
  13774. default: true
  13775. },
  13776. {
  13777. name: "Megamacro",
  13778. height: math.unit(1000, "meters")
  13779. },
  13780. ]
  13781. ))
  13782. characterMakers.push(() => makeCharacter(
  13783. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13784. {
  13785. front: {
  13786. height: math.unit(3 + 11/12, "feet"),
  13787. weight: math.unit(50, "lb"),
  13788. name: "Front",
  13789. image: {
  13790. source: "./media/characters/vanrel/front.svg",
  13791. extra: 1104/949,
  13792. bottom: 52/1156
  13793. }
  13794. },
  13795. back: {
  13796. height: math.unit(3 + 11/12, "feet"),
  13797. weight: math.unit(50, "lb"),
  13798. name: "Back",
  13799. image: {
  13800. source: "./media/characters/vanrel/back.svg",
  13801. extra: 1119/976,
  13802. bottom: 37/1156
  13803. }
  13804. },
  13805. tome: {
  13806. height: math.unit(1.35, "feet"),
  13807. weight: math.unit(10, "lb"),
  13808. name: "Vanrel's Tome",
  13809. rename: true,
  13810. image: {
  13811. source: "./media/characters/vanrel/tome.svg"
  13812. }
  13813. },
  13814. beans: {
  13815. height: math.unit(0.89, "feet"),
  13816. name: "Beans",
  13817. image: {
  13818. source: "./media/characters/vanrel/beans.svg"
  13819. }
  13820. },
  13821. },
  13822. [
  13823. {
  13824. name: "Normal",
  13825. height: math.unit(3 + 11/12, "feet"),
  13826. default: true
  13827. },
  13828. ]
  13829. ))
  13830. characterMakers.push(() => makeCharacter(
  13831. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13832. {
  13833. front: {
  13834. height: math.unit(7 + 5 / 12, "feet"),
  13835. name: "Front",
  13836. image: {
  13837. source: "./media/characters/kuiper-vanrel/front.svg",
  13838. extra: 1219/1169,
  13839. bottom: 69/1288
  13840. }
  13841. },
  13842. back: {
  13843. height: math.unit(7 + 5 / 12, "feet"),
  13844. name: "Back",
  13845. image: {
  13846. source: "./media/characters/kuiper-vanrel/back.svg",
  13847. extra: 1236/1193,
  13848. bottom: 27/1263
  13849. }
  13850. },
  13851. foot: {
  13852. height: math.unit(0.55, "meters"),
  13853. name: "Foot",
  13854. image: {
  13855. source: "./media/characters/kuiper-vanrel/foot.svg",
  13856. }
  13857. },
  13858. battle: {
  13859. height: math.unit(6.824, "feet"),
  13860. name: "Battle",
  13861. image: {
  13862. source: "./media/characters/kuiper-vanrel/battle.svg",
  13863. extra: 1466 / 1327,
  13864. bottom: 29 / 1492.5
  13865. }
  13866. },
  13867. meerkui: {
  13868. height: math.unit(18, "inches"),
  13869. name: "Meerkui",
  13870. image: {
  13871. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13872. extra: 1354/1289,
  13873. bottom: 69/1423
  13874. }
  13875. },
  13876. },
  13877. [
  13878. {
  13879. name: "Normal",
  13880. height: math.unit(7 + 5 / 12, "feet"),
  13881. default: true
  13882. },
  13883. ]
  13884. ))
  13885. characterMakers.push(() => makeCharacter(
  13886. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13887. {
  13888. front: {
  13889. height: math.unit(8 + 5 / 12, "feet"),
  13890. name: "Front",
  13891. image: {
  13892. source: "./media/characters/keset-vanrel/front.svg",
  13893. extra: 1231/1148,
  13894. bottom: 82/1313
  13895. }
  13896. },
  13897. back: {
  13898. height: math.unit(8 + 5 / 12, "feet"),
  13899. name: "Back",
  13900. image: {
  13901. source: "./media/characters/keset-vanrel/back.svg",
  13902. extra: 1240/1174,
  13903. bottom: 33/1273
  13904. }
  13905. },
  13906. hand: {
  13907. height: math.unit(0.6, "meters"),
  13908. name: "Hand",
  13909. image: {
  13910. source: "./media/characters/keset-vanrel/hand.svg"
  13911. }
  13912. },
  13913. foot: {
  13914. height: math.unit(0.94978, "meters"),
  13915. name: "Foot",
  13916. image: {
  13917. source: "./media/characters/keset-vanrel/foot.svg"
  13918. }
  13919. },
  13920. battle: {
  13921. height: math.unit(7.408, "feet"),
  13922. name: "Battle",
  13923. image: {
  13924. source: "./media/characters/keset-vanrel/battle.svg",
  13925. extra: 1890 / 1386,
  13926. bottom: 73.28 / 1970
  13927. }
  13928. },
  13929. },
  13930. [
  13931. {
  13932. name: "Normal",
  13933. height: math.unit(8 + 5 / 12, "feet"),
  13934. default: true
  13935. },
  13936. ]
  13937. ))
  13938. characterMakers.push(() => makeCharacter(
  13939. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13940. {
  13941. front: {
  13942. height: math.unit(6, "feet"),
  13943. weight: math.unit(150, "lb"),
  13944. name: "Front",
  13945. image: {
  13946. source: "./media/characters/neos/front.svg",
  13947. extra: 1696 / 992,
  13948. bottom: 0.14
  13949. }
  13950. },
  13951. },
  13952. [
  13953. {
  13954. name: "Normal",
  13955. height: math.unit(54, "cm"),
  13956. default: true
  13957. },
  13958. {
  13959. name: "Macro",
  13960. height: math.unit(100, "m")
  13961. },
  13962. {
  13963. name: "Megamacro",
  13964. height: math.unit(10, "km")
  13965. },
  13966. {
  13967. name: "Megamacro+",
  13968. height: math.unit(100, "km")
  13969. },
  13970. {
  13971. name: "Gigamacro",
  13972. height: math.unit(100, "Mm")
  13973. },
  13974. {
  13975. name: "Teramacro",
  13976. height: math.unit(100, "Gm")
  13977. },
  13978. {
  13979. name: "Examacro",
  13980. height: math.unit(100, "Em")
  13981. },
  13982. {
  13983. name: "Godly",
  13984. height: math.unit(10000, "Ym")
  13985. },
  13986. {
  13987. name: "Beyond Godly",
  13988. height: math.unit(25, "multiverses")
  13989. },
  13990. ]
  13991. ))
  13992. characterMakers.push(() => makeCharacter(
  13993. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13994. {
  13995. fluide_tame: {
  13996. height: math.unit(5, "feet"),
  13997. name: "Tame",
  13998. image: {
  13999. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14000. extra: 1655/1574,
  14001. bottom: 231/1886
  14002. },
  14003. form: "fluide",
  14004. default: true
  14005. },
  14006. fluide_nude: {
  14007. height: math.unit(5, "feet"),
  14008. name: "Nude",
  14009. image: {
  14010. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14011. extra: 1655/1574,
  14012. bottom: 231/1886
  14013. },
  14014. form: "fluide",
  14015. },
  14016. male_tame: {
  14017. height: math.unit(5, "feet"),
  14018. name: "Tame",
  14019. image: {
  14020. source: "./media/characters/sammy-mouse/male-tame.svg",
  14021. extra: 1655/1574,
  14022. bottom: 231/1886
  14023. },
  14024. form: "male",
  14025. default: true
  14026. },
  14027. male_nude: {
  14028. height: math.unit(5, "feet"),
  14029. name: "Nude",
  14030. image: {
  14031. source: "./media/characters/sammy-mouse/male-nude.svg",
  14032. extra: 1655/1574,
  14033. bottom: 231/1886
  14034. },
  14035. form: "male",
  14036. },
  14037. female_nude: {
  14038. height: math.unit(5, "feet"),
  14039. name: "Nude",
  14040. image: {
  14041. source: "./media/characters/sammy-mouse/female-nude.svg",
  14042. extra: 1655/1574,
  14043. bottom: 231/1886
  14044. },
  14045. form: "female",
  14046. default: true
  14047. },
  14048. mouth: {
  14049. height: math.unit(0.32, "feet"),
  14050. name: "Mouth",
  14051. image: {
  14052. source: "./media/characters/sammy-mouse/mouth.svg"
  14053. },
  14054. allForms: true
  14055. },
  14056. paw: {
  14057. height: math.unit(0.42, "feet"),
  14058. name: "Paw",
  14059. image: {
  14060. source: "./media/characters/sammy-mouse/paw.svg"
  14061. },
  14062. allForms: true
  14063. },
  14064. },
  14065. [
  14066. {
  14067. name: "Micro",
  14068. height: math.unit(5, "inches"),
  14069. allForms: true
  14070. },
  14071. {
  14072. name: "Normal",
  14073. height: math.unit(5, "feet"),
  14074. default: true,
  14075. allForms: true
  14076. },
  14077. {
  14078. name: "Macro",
  14079. height: math.unit(60, "feet"),
  14080. allForms: true
  14081. },
  14082. ],
  14083. {
  14084. "fluide": {
  14085. name: "Fluide",
  14086. default: true
  14087. },
  14088. "male": {
  14089. name: "Male",
  14090. },
  14091. "female": {
  14092. name: "Female",
  14093. },
  14094. }
  14095. ))
  14096. characterMakers.push(() => makeCharacter(
  14097. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14098. {
  14099. front: {
  14100. height: math.unit(4, "feet"),
  14101. weight: math.unit(50, "lb"),
  14102. name: "Front",
  14103. image: {
  14104. source: "./media/characters/kole/front.svg",
  14105. extra: 1423 / 1303,
  14106. bottom: 0.025
  14107. }
  14108. },
  14109. back: {
  14110. height: math.unit(4, "feet"),
  14111. weight: math.unit(50, "lb"),
  14112. name: "Back",
  14113. image: {
  14114. source: "./media/characters/kole/back.svg",
  14115. extra: 1426 / 1280,
  14116. bottom: 0.02
  14117. }
  14118. },
  14119. },
  14120. [
  14121. {
  14122. name: "Normal",
  14123. height: math.unit(4, "feet"),
  14124. default: true
  14125. },
  14126. ]
  14127. ))
  14128. characterMakers.push(() => makeCharacter(
  14129. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14130. {
  14131. front: {
  14132. height: math.unit(2.5, "feet"),
  14133. weight: math.unit(32, "lb"),
  14134. name: "Front",
  14135. image: {
  14136. source: "./media/characters/rufran/front.svg",
  14137. extra: 1313/885,
  14138. bottom: 94/1407
  14139. }
  14140. },
  14141. side: {
  14142. height: math.unit(2.5, "feet"),
  14143. weight: math.unit(32, "lb"),
  14144. name: "Side",
  14145. image: {
  14146. source: "./media/characters/rufran/side.svg",
  14147. extra: 1109/852,
  14148. bottom: 118/1227
  14149. }
  14150. },
  14151. back: {
  14152. height: math.unit(2.5, "feet"),
  14153. weight: math.unit(32, "lb"),
  14154. name: "Back",
  14155. image: {
  14156. source: "./media/characters/rufran/back.svg",
  14157. extra: 1280/878,
  14158. bottom: 131/1411
  14159. }
  14160. },
  14161. mouth: {
  14162. height: math.unit(1.13, "feet"),
  14163. name: "Mouth",
  14164. image: {
  14165. source: "./media/characters/rufran/mouth.svg"
  14166. }
  14167. },
  14168. foot: {
  14169. height: math.unit(1.33, "feet"),
  14170. name: "Foot",
  14171. image: {
  14172. source: "./media/characters/rufran/foot.svg"
  14173. }
  14174. },
  14175. koboldFront: {
  14176. height: math.unit(2 + 6 / 12, "feet"),
  14177. weight: math.unit(20, "lb"),
  14178. name: "Front (Kobold)",
  14179. image: {
  14180. source: "./media/characters/rufran/kobold-front.svg",
  14181. extra: 2041 / 1839,
  14182. bottom: 0.055
  14183. }
  14184. },
  14185. koboldBack: {
  14186. height: math.unit(2 + 6 / 12, "feet"),
  14187. weight: math.unit(20, "lb"),
  14188. name: "Back (Kobold)",
  14189. image: {
  14190. source: "./media/characters/rufran/kobold-back.svg",
  14191. extra: 2054 / 1839,
  14192. bottom: 0.01
  14193. }
  14194. },
  14195. koboldHand: {
  14196. height: math.unit(0.2166, "meters"),
  14197. name: "Hand (Kobold)",
  14198. image: {
  14199. source: "./media/characters/rufran/kobold-hand.svg"
  14200. }
  14201. },
  14202. koboldFoot: {
  14203. height: math.unit(0.185, "meters"),
  14204. name: "Foot (Kobold)",
  14205. image: {
  14206. source: "./media/characters/rufran/kobold-foot.svg"
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Micro",
  14213. height: math.unit(1, "inch")
  14214. },
  14215. {
  14216. name: "Normal",
  14217. height: math.unit(2 + 6 / 12, "feet"),
  14218. default: true
  14219. },
  14220. {
  14221. name: "Big",
  14222. height: math.unit(60, "feet")
  14223. },
  14224. {
  14225. name: "Macro",
  14226. height: math.unit(325, "feet")
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14232. {
  14233. front: {
  14234. height: math.unit(0.3, "meters"),
  14235. weight: math.unit(3.5, "kg"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/chip/front.svg",
  14239. extra: 748 / 674
  14240. }
  14241. },
  14242. },
  14243. [
  14244. {
  14245. name: "Micro",
  14246. height: math.unit(1, "inch"),
  14247. default: true
  14248. },
  14249. ]
  14250. ))
  14251. characterMakers.push(() => makeCharacter(
  14252. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14253. {
  14254. side: {
  14255. height: math.unit(2.3, "meters"),
  14256. weight: math.unit(3500, "lb"),
  14257. name: "Side",
  14258. image: {
  14259. source: "./media/characters/torvid/side.svg",
  14260. extra: 1972 / 722,
  14261. bottom: 0.035
  14262. }
  14263. },
  14264. },
  14265. [
  14266. {
  14267. name: "Normal",
  14268. height: math.unit(2.3, "meters"),
  14269. default: true
  14270. },
  14271. ]
  14272. ))
  14273. characterMakers.push(() => makeCharacter(
  14274. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14275. {
  14276. front: {
  14277. height: math.unit(2, "meters"),
  14278. weight: math.unit(150.5, "kg"),
  14279. name: "Front",
  14280. image: {
  14281. source: "./media/characters/susan/front.svg",
  14282. extra: 693 / 635,
  14283. bottom: 0.05
  14284. }
  14285. },
  14286. },
  14287. [
  14288. {
  14289. name: "Megamacro",
  14290. height: math.unit(505, "miles"),
  14291. default: true
  14292. },
  14293. ]
  14294. ))
  14295. characterMakers.push(() => makeCharacter(
  14296. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14297. {
  14298. front: {
  14299. height: math.unit(6, "feet"),
  14300. weight: math.unit(150, "lb"),
  14301. name: "Front",
  14302. image: {
  14303. source: "./media/characters/raindrops/front.svg",
  14304. extra: 2655 / 2461,
  14305. bottom: 49 / 2705
  14306. }
  14307. },
  14308. back: {
  14309. height: math.unit(6, "feet"),
  14310. weight: math.unit(150, "lb"),
  14311. name: "Back",
  14312. image: {
  14313. source: "./media/characters/raindrops/back.svg",
  14314. extra: 2574 / 2400,
  14315. bottom: 65 / 2634
  14316. }
  14317. },
  14318. },
  14319. [
  14320. {
  14321. name: "Micro",
  14322. height: math.unit(6, "inches")
  14323. },
  14324. {
  14325. name: "Normal",
  14326. height: math.unit(6 + 2 / 12, "feet")
  14327. },
  14328. {
  14329. name: "Macro",
  14330. height: math.unit(131, "feet"),
  14331. default: true
  14332. },
  14333. {
  14334. name: "Megamacro",
  14335. height: math.unit(15, "miles")
  14336. },
  14337. {
  14338. name: "Gigamacro",
  14339. height: math.unit(4000, "miles")
  14340. },
  14341. {
  14342. name: "Teramacro",
  14343. height: math.unit(315000, "miles")
  14344. },
  14345. ]
  14346. ))
  14347. characterMakers.push(() => makeCharacter(
  14348. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14349. {
  14350. front: {
  14351. height: math.unit(2.794, "meters"),
  14352. weight: math.unit(325, "kg"),
  14353. name: "Front",
  14354. image: {
  14355. source: "./media/characters/tezwa/front.svg",
  14356. extra: 2083 / 1906,
  14357. bottom: 0.031
  14358. }
  14359. },
  14360. foot: {
  14361. height: math.unit(0.687, "meters"),
  14362. name: "Foot",
  14363. image: {
  14364. source: "./media/characters/tezwa/foot.svg"
  14365. }
  14366. },
  14367. },
  14368. [
  14369. {
  14370. name: "Normal",
  14371. height: math.unit(9 + 2 / 12, "feet"),
  14372. default: true
  14373. },
  14374. ]
  14375. ))
  14376. characterMakers.push(() => makeCharacter(
  14377. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14378. {
  14379. front: {
  14380. height: math.unit(58, "feet"),
  14381. weight: math.unit(89000, "lb"),
  14382. name: "Front",
  14383. image: {
  14384. source: "./media/characters/typhus/front.svg",
  14385. extra: 816 / 800,
  14386. bottom: 0.065
  14387. }
  14388. },
  14389. },
  14390. [
  14391. {
  14392. name: "Macro",
  14393. height: math.unit(58, "feet"),
  14394. default: true
  14395. },
  14396. ]
  14397. ))
  14398. characterMakers.push(() => makeCharacter(
  14399. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14400. {
  14401. front: {
  14402. height: math.unit(12, "feet"),
  14403. weight: math.unit(6, "tonnes"),
  14404. name: "Front",
  14405. image: {
  14406. source: "./media/characters/lyra-von-wulf/front.svg",
  14407. extra: 1,
  14408. bottom: 0.10
  14409. }
  14410. },
  14411. frontMecha: {
  14412. height: math.unit(12, "feet"),
  14413. weight: math.unit(12, "tonnes"),
  14414. name: "Front (Mecha)",
  14415. image: {
  14416. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14417. extra: 1,
  14418. bottom: 0.042
  14419. }
  14420. },
  14421. maw: {
  14422. height: math.unit(2.2, "feet"),
  14423. name: "Maw",
  14424. image: {
  14425. source: "./media/characters/lyra-von-wulf/maw.svg"
  14426. }
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Normal",
  14432. height: math.unit(12, "feet"),
  14433. default: true
  14434. },
  14435. {
  14436. name: "Classic",
  14437. height: math.unit(50, "feet")
  14438. },
  14439. {
  14440. name: "Macro",
  14441. height: math.unit(500, "feet")
  14442. },
  14443. {
  14444. name: "Megamacro",
  14445. height: math.unit(1, "mile")
  14446. },
  14447. {
  14448. name: "Gigamacro",
  14449. height: math.unit(400, "miles")
  14450. },
  14451. {
  14452. name: "Teramacro",
  14453. height: math.unit(22000, "miles")
  14454. },
  14455. {
  14456. name: "Solarmacro",
  14457. height: math.unit(8600000, "miles")
  14458. },
  14459. {
  14460. name: "Galactic",
  14461. height: math.unit(1057000, "lightyears")
  14462. },
  14463. ]
  14464. ))
  14465. characterMakers.push(() => makeCharacter(
  14466. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14467. {
  14468. front: {
  14469. height: math.unit(6 + 10 / 12, "feet"),
  14470. weight: math.unit(150, "lb"),
  14471. name: "Front",
  14472. image: {
  14473. source: "./media/characters/dixon/front.svg",
  14474. extra: 3361 / 3209,
  14475. bottom: 0.01
  14476. }
  14477. },
  14478. },
  14479. [
  14480. {
  14481. name: "Normal",
  14482. height: math.unit(6 + 10 / 12, "feet"),
  14483. default: true
  14484. },
  14485. {
  14486. name: "Big",
  14487. height: math.unit(12, "meters")
  14488. },
  14489. {
  14490. name: "Macro",
  14491. height: math.unit(500, "meters")
  14492. },
  14493. {
  14494. name: "Megamacro",
  14495. height: math.unit(2, "km")
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14501. {
  14502. kingCheetah_front: {
  14503. height: math.unit(1.85, "meters"),
  14504. weight: math.unit(68, "kg"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/kauko/king-cheetah-front.svg",
  14508. extra: 1007/972,
  14509. bottom: 35/1042
  14510. },
  14511. form: "king-cheetah",
  14512. default: true
  14513. },
  14514. kingCheetah_back: {
  14515. height: math.unit(1.85, "meters"),
  14516. weight: math.unit(68, "kg"),
  14517. name: "Back",
  14518. image: {
  14519. source: "./media/characters/kauko/king-cheetah-back.svg",
  14520. extra: 1015/980,
  14521. bottom: 11/1026
  14522. },
  14523. form: "king-cheetah",
  14524. },
  14525. kingCheetah_hand: {
  14526. height: math.unit(0.23, "meters"),
  14527. name: "Hand",
  14528. image: {
  14529. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14530. },
  14531. form: "king-cheetah",
  14532. },
  14533. kingCheetah_paw: {
  14534. height: math.unit(0.38, "meters"),
  14535. name: "Paw",
  14536. image: {
  14537. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14538. },
  14539. form: "king-cheetah",
  14540. },
  14541. kingCheetah_nape: {
  14542. height: math.unit(0.23, "meters"),
  14543. name: "Nape",
  14544. image: {
  14545. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14546. },
  14547. form: "king-cheetah",
  14548. },
  14549. wolf_front: {
  14550. height: math.unit(1.88, "meters"),
  14551. weight: math.unit(74, "kg"),
  14552. name: "Front",
  14553. image: {
  14554. source: "./media/characters/kauko/wolf-front.svg",
  14555. extra: 952/908,
  14556. bottom: 64/1016
  14557. },
  14558. form: "wolf",
  14559. default: true
  14560. },
  14561. wolf_dressed: {
  14562. height: math.unit(1.88, "meters"),
  14563. weight: math.unit(74, "kg"),
  14564. name: "Dressed",
  14565. image: {
  14566. source: "./media/characters/kauko/wolf-dressed.svg",
  14567. extra: 963/916,
  14568. bottom: 101/1064
  14569. },
  14570. form: "wolf",
  14571. },
  14572. wolf_hand: {
  14573. height: math.unit(0.3, "meters"),
  14574. name: "Hand",
  14575. image: {
  14576. source: "./media/characters/kauko/wolf-hand.svg"
  14577. },
  14578. form: "wolf",
  14579. },
  14580. wolf_paw: {
  14581. height: math.unit(0.407, "meters"),
  14582. name: "Paw",
  14583. image: {
  14584. source: "./media/characters/kauko/wolf-paw.svg"
  14585. },
  14586. form: "wolf",
  14587. },
  14588. wolf_nape: {
  14589. height: math.unit(0.25, "meters"),
  14590. name: "Nape",
  14591. image: {
  14592. source: "./media/characters/kauko/wolf-nape.svg"
  14593. },
  14594. form: "wolf",
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Normal",
  14600. height: math.unit(1.85, "m"),
  14601. default: true,
  14602. form: "king-cheetah"
  14603. },
  14604. {
  14605. name: "Normal",
  14606. height: math.unit(1.88, "m"),
  14607. default: true,
  14608. form: "wolf"
  14609. },
  14610. ],
  14611. {
  14612. "king-cheetah": {
  14613. name: "King Cheetah",
  14614. default: true
  14615. },
  14616. "wolf": {
  14617. name: "Wolf",
  14618. },
  14619. }
  14620. ))
  14621. characterMakers.push(() => makeCharacter(
  14622. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14623. {
  14624. frontSfw: {
  14625. height: math.unit(5, "meters"),
  14626. weight: math.unit(4250, "lb"),
  14627. name: "Front",
  14628. image: {
  14629. source: "./media/characters/varg/front-sfw.svg",
  14630. extra: 1103/1010,
  14631. bottom: 50/1153
  14632. },
  14633. form: "anthro",
  14634. default: true
  14635. },
  14636. backSfw: {
  14637. height: math.unit(5, "meters"),
  14638. weight: math.unit(4250, "lb"),
  14639. name: "Back",
  14640. image: {
  14641. source: "./media/characters/varg/back-sfw.svg",
  14642. extra: 1038/1022,
  14643. bottom: 36/1074
  14644. },
  14645. form: "anthro"
  14646. },
  14647. frontNsfw: {
  14648. height: math.unit(5, "meters"),
  14649. weight: math.unit(4250, "lb"),
  14650. name: "Front (NSFW)",
  14651. image: {
  14652. source: "./media/characters/varg/front-nsfw.svg",
  14653. extra: 1103/1010,
  14654. bottom: 50/1153
  14655. },
  14656. form: "anthro"
  14657. },
  14658. sheath: {
  14659. height: math.unit(3.8, "feet"),
  14660. weight: math.unit(90, "kilograms"),
  14661. name: "Sheath",
  14662. image: {
  14663. source: "./media/characters/varg/sheath.svg"
  14664. },
  14665. form: "anthro"
  14666. },
  14667. dick: {
  14668. height: math.unit(4.6, "feet"),
  14669. weight: math.unit(451, "kilograms"),
  14670. name: "Dick",
  14671. image: {
  14672. source: "./media/characters/varg/dick.svg"
  14673. },
  14674. form: "anthro"
  14675. },
  14676. feralSfw: {
  14677. height: math.unit(5, "meters"),
  14678. weight: math.unit(100000, "lb"),
  14679. name: "Side",
  14680. image: {
  14681. source: "./media/characters/varg/feral-sfw.svg",
  14682. extra: 1065/511,
  14683. bottom: 211/1276
  14684. },
  14685. form: "feral",
  14686. default: true
  14687. },
  14688. feralNsfw: {
  14689. height: math.unit(5, "meters"),
  14690. weight: math.unit(100000, "lb"),
  14691. name: "Side (NSFW)",
  14692. image: {
  14693. source: "./media/characters/varg/feral-nsfw.svg",
  14694. extra: 1065/511,
  14695. bottom: 211/1276
  14696. },
  14697. form: "feral",
  14698. },
  14699. feralSheath: {
  14700. height: math.unit(9.8, "feet"),
  14701. weight: math.unit(2000, "kilograms"),
  14702. name: "Sheath",
  14703. image: {
  14704. source: "./media/characters/varg/sheath.svg"
  14705. },
  14706. form: "feral"
  14707. },
  14708. feralDick: {
  14709. height: math.unit(13.11, "feet"),
  14710. weight: math.unit(10440, "kilograms"),
  14711. name: "Dick",
  14712. image: {
  14713. source: "./media/characters/varg/dick.svg"
  14714. },
  14715. form: "feral"
  14716. },
  14717. },
  14718. [
  14719. {
  14720. name: "Normal",
  14721. height: math.unit(5, "meters"),
  14722. form: "anthro"
  14723. },
  14724. {
  14725. name: "Macro",
  14726. height: math.unit(200, "meters"),
  14727. form: "anthro"
  14728. },
  14729. {
  14730. name: "Megamacro",
  14731. height: math.unit(20, "kilometers"),
  14732. form: "anthro"
  14733. },
  14734. {
  14735. name: "True Size",
  14736. height: math.unit(211, "km"),
  14737. form: "anthro",
  14738. default: true
  14739. },
  14740. {
  14741. name: "Gigamacro",
  14742. height: math.unit(1000, "km"),
  14743. form: "anthro"
  14744. },
  14745. {
  14746. name: "Gigamacro+",
  14747. height: math.unit(8000, "km"),
  14748. form: "anthro"
  14749. },
  14750. {
  14751. name: "Teramacro",
  14752. height: math.unit(1000000, "km"),
  14753. form: "anthro"
  14754. },
  14755. {
  14756. name: "Normal",
  14757. height: math.unit(5, "meters"),
  14758. form: "feral"
  14759. },
  14760. {
  14761. name: "Macro",
  14762. height: math.unit(200, "meters"),
  14763. form: "feral"
  14764. },
  14765. {
  14766. name: "Megamacro",
  14767. height: math.unit(20, "kilometers"),
  14768. form: "feral"
  14769. },
  14770. {
  14771. name: "True Size",
  14772. height: math.unit(211, "km"),
  14773. form: "feral",
  14774. default: true
  14775. },
  14776. {
  14777. name: "Gigamacro",
  14778. height: math.unit(1000, "km"),
  14779. form: "feral"
  14780. },
  14781. {
  14782. name: "Gigamacro+",
  14783. height: math.unit(8000, "km"),
  14784. form: "feral"
  14785. },
  14786. {
  14787. name: "Teramacro",
  14788. height: math.unit(1000000, "km"),
  14789. form: "feral"
  14790. },
  14791. ],
  14792. {
  14793. "anthro": {
  14794. name: "Anthro",
  14795. default: true
  14796. },
  14797. "feral": {
  14798. name: "Feral",
  14799. },
  14800. }
  14801. ))
  14802. characterMakers.push(() => makeCharacter(
  14803. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14804. {
  14805. front: {
  14806. height: math.unit(7 + 7 / 12, "feet"),
  14807. weight: math.unit(267, "lb"),
  14808. name: "Front",
  14809. image: {
  14810. source: "./media/characters/dayza/front.svg",
  14811. extra: 1262 / 1200,
  14812. bottom: 0.035
  14813. }
  14814. },
  14815. side: {
  14816. height: math.unit(7 + 7 / 12, "feet"),
  14817. weight: math.unit(267, "lb"),
  14818. name: "Side",
  14819. image: {
  14820. source: "./media/characters/dayza/side.svg",
  14821. extra: 1295 / 1245,
  14822. bottom: 0.05
  14823. }
  14824. },
  14825. back: {
  14826. height: math.unit(7 + 7 / 12, "feet"),
  14827. weight: math.unit(267, "lb"),
  14828. name: "Back",
  14829. image: {
  14830. source: "./media/characters/dayza/back.svg",
  14831. extra: 1241 / 1170
  14832. }
  14833. },
  14834. },
  14835. [
  14836. {
  14837. name: "Normal",
  14838. height: math.unit(7 + 7 / 12, "feet"),
  14839. default: true
  14840. },
  14841. {
  14842. name: "Macro",
  14843. height: math.unit(155, "feet")
  14844. },
  14845. ]
  14846. ))
  14847. characterMakers.push(() => makeCharacter(
  14848. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14849. {
  14850. front: {
  14851. height: math.unit(6 + 5 / 12, "feet"),
  14852. weight: math.unit(160, "lb"),
  14853. name: "Front",
  14854. image: {
  14855. source: "./media/characters/xanthos/front.svg",
  14856. extra: 1,
  14857. bottom: 0.04
  14858. }
  14859. },
  14860. back: {
  14861. height: math.unit(6 + 5 / 12, "feet"),
  14862. weight: math.unit(160, "lb"),
  14863. name: "Back",
  14864. image: {
  14865. source: "./media/characters/xanthos/back.svg",
  14866. extra: 1,
  14867. bottom: 0.03
  14868. }
  14869. },
  14870. hand: {
  14871. height: math.unit(0.928, "feet"),
  14872. name: "Hand",
  14873. image: {
  14874. source: "./media/characters/xanthos/hand.svg"
  14875. }
  14876. },
  14877. foot: {
  14878. height: math.unit(1.286, "feet"),
  14879. name: "Foot",
  14880. image: {
  14881. source: "./media/characters/xanthos/foot.svg"
  14882. }
  14883. },
  14884. },
  14885. [
  14886. {
  14887. name: "Normal",
  14888. height: math.unit(6 + 5 / 12, "feet"),
  14889. default: true
  14890. },
  14891. {
  14892. name: "Normal+",
  14893. height: math.unit(6, "meters")
  14894. },
  14895. {
  14896. name: "Macro",
  14897. height: math.unit(40, "feet")
  14898. },
  14899. {
  14900. name: "Macro+",
  14901. height: math.unit(200, "meters")
  14902. },
  14903. {
  14904. name: "Megamacro",
  14905. height: math.unit(20, "km")
  14906. },
  14907. {
  14908. name: "Megamacro+",
  14909. height: math.unit(100, "km")
  14910. },
  14911. {
  14912. name: "Gigamacro",
  14913. height: math.unit(200, "megameters")
  14914. },
  14915. {
  14916. name: "Gigamacro+",
  14917. height: math.unit(1.5, "gigameters")
  14918. },
  14919. ]
  14920. ))
  14921. characterMakers.push(() => makeCharacter(
  14922. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14923. {
  14924. front: {
  14925. height: math.unit(6 + 3 / 12, "feet"),
  14926. weight: math.unit(215, "lb"),
  14927. name: "Front",
  14928. image: {
  14929. source: "./media/characters/grynn/front.svg",
  14930. extra: 4627 / 4209,
  14931. bottom: 0.047
  14932. }
  14933. },
  14934. },
  14935. [
  14936. {
  14937. name: "Micro",
  14938. height: math.unit(6, "inches")
  14939. },
  14940. {
  14941. name: "Normal",
  14942. height: math.unit(6 + 3 / 12, "feet"),
  14943. default: true
  14944. },
  14945. {
  14946. name: "Big",
  14947. height: math.unit(104, "feet")
  14948. },
  14949. {
  14950. name: "Macro",
  14951. height: math.unit(944, "feet")
  14952. },
  14953. {
  14954. name: "Macro+",
  14955. height: math.unit(9480, "feet")
  14956. },
  14957. {
  14958. name: "Megamacro",
  14959. height: math.unit(78752, "feet")
  14960. },
  14961. {
  14962. name: "Megamacro+",
  14963. height: math.unit(630128, "feet")
  14964. },
  14965. {
  14966. name: "Megamacro++",
  14967. height: math.unit(3150695, "feet")
  14968. },
  14969. ]
  14970. ))
  14971. characterMakers.push(() => makeCharacter(
  14972. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14973. {
  14974. front: {
  14975. height: math.unit(7 + 5 / 12, "feet"),
  14976. weight: math.unit(450, "lb"),
  14977. name: "Front",
  14978. image: {
  14979. source: "./media/characters/mocha-aura/front.svg",
  14980. extra: 1907 / 1817,
  14981. bottom: 0.04
  14982. }
  14983. },
  14984. back: {
  14985. height: math.unit(7 + 5 / 12, "feet"),
  14986. weight: math.unit(450, "lb"),
  14987. name: "Back",
  14988. image: {
  14989. source: "./media/characters/mocha-aura/back.svg",
  14990. extra: 1900 / 1825,
  14991. bottom: 0.045
  14992. }
  14993. },
  14994. },
  14995. [
  14996. {
  14997. name: "Nano",
  14998. height: math.unit(1, "nm")
  14999. },
  15000. {
  15001. name: "Megamicro",
  15002. height: math.unit(1, "mm")
  15003. },
  15004. {
  15005. name: "Micro",
  15006. height: math.unit(3, "inches")
  15007. },
  15008. {
  15009. name: "Normal",
  15010. height: math.unit(7 + 5 / 12, "feet"),
  15011. default: true
  15012. },
  15013. {
  15014. name: "Macro",
  15015. height: math.unit(30, "feet")
  15016. },
  15017. {
  15018. name: "Megamacro",
  15019. height: math.unit(3500, "feet")
  15020. },
  15021. {
  15022. name: "Teramacro",
  15023. height: math.unit(500000, "miles")
  15024. },
  15025. {
  15026. name: "Petamacro",
  15027. height: math.unit(50000000000000000, "parsecs")
  15028. },
  15029. ]
  15030. ))
  15031. characterMakers.push(() => makeCharacter(
  15032. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15033. {
  15034. front: {
  15035. height: math.unit(6, "feet"),
  15036. weight: math.unit(150, "lb"),
  15037. name: "Front",
  15038. image: {
  15039. source: "./media/characters/ilisha-devya/front.svg",
  15040. extra: 1053/1049,
  15041. bottom: 270/1323
  15042. }
  15043. },
  15044. back: {
  15045. height: math.unit(6, "feet"),
  15046. weight: math.unit(150, "lb"),
  15047. name: "Back",
  15048. image: {
  15049. source: "./media/characters/ilisha-devya/back.svg",
  15050. extra: 1131/1128,
  15051. bottom: 39/1170
  15052. }
  15053. },
  15054. },
  15055. [
  15056. {
  15057. name: "Macro",
  15058. height: math.unit(500, "feet"),
  15059. default: true
  15060. },
  15061. {
  15062. name: "Megamacro",
  15063. height: math.unit(10, "miles")
  15064. },
  15065. {
  15066. name: "Gigamacro",
  15067. height: math.unit(100000, "miles")
  15068. },
  15069. {
  15070. name: "Examacro",
  15071. height: math.unit(1e9, "lightyears")
  15072. },
  15073. {
  15074. name: "Omniversal",
  15075. height: math.unit(1e33, "lightyears")
  15076. },
  15077. {
  15078. name: "Beyond Infinite",
  15079. height: math.unit(1e100, "lightyears")
  15080. },
  15081. ]
  15082. ))
  15083. characterMakers.push(() => makeCharacter(
  15084. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15085. {
  15086. Side: {
  15087. height: math.unit(6, "feet"),
  15088. weight: math.unit(150, "lb"),
  15089. name: "Side",
  15090. image: {
  15091. source: "./media/characters/mira/side.svg",
  15092. extra: 900 / 799,
  15093. bottom: 0.02
  15094. }
  15095. },
  15096. },
  15097. [
  15098. {
  15099. name: "Human Size",
  15100. height: math.unit(6, "feet")
  15101. },
  15102. {
  15103. name: "Macro",
  15104. height: math.unit(100, "feet"),
  15105. default: true
  15106. },
  15107. {
  15108. name: "Megamacro",
  15109. height: math.unit(10, "miles")
  15110. },
  15111. {
  15112. name: "Gigamacro",
  15113. height: math.unit(25000, "miles")
  15114. },
  15115. {
  15116. name: "Teramacro",
  15117. height: math.unit(300, "AU")
  15118. },
  15119. {
  15120. name: "Full Size",
  15121. height: math.unit(4.5e10, "lightyears")
  15122. },
  15123. ]
  15124. ))
  15125. characterMakers.push(() => makeCharacter(
  15126. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15127. {
  15128. front: {
  15129. height: math.unit(6, "feet"),
  15130. weight: math.unit(150, "lb"),
  15131. name: "Front",
  15132. image: {
  15133. source: "./media/characters/holly/front.svg",
  15134. extra: 639 / 606
  15135. }
  15136. },
  15137. back: {
  15138. height: math.unit(6, "feet"),
  15139. weight: math.unit(150, "lb"),
  15140. name: "Back",
  15141. image: {
  15142. source: "./media/characters/holly/back.svg",
  15143. extra: 623 / 598
  15144. }
  15145. },
  15146. frontWorking: {
  15147. height: math.unit(6, "feet"),
  15148. weight: math.unit(150, "lb"),
  15149. name: "Front (Working)",
  15150. image: {
  15151. source: "./media/characters/holly/front-working.svg",
  15152. extra: 607 / 577,
  15153. bottom: 0.048
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Normal",
  15160. height: math.unit(12 + 3 / 12, "feet"),
  15161. default: true
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15167. {
  15168. front: {
  15169. height: math.unit(6, "feet"),
  15170. weight: math.unit(150, "lb"),
  15171. name: "Front",
  15172. image: {
  15173. source: "./media/characters/porter/front.svg",
  15174. extra: 1,
  15175. bottom: 0.01
  15176. }
  15177. },
  15178. frontRobes: {
  15179. height: math.unit(6, "feet"),
  15180. weight: math.unit(150, "lb"),
  15181. name: "Front (Robes)",
  15182. image: {
  15183. source: "./media/characters/porter/front-robes.svg",
  15184. extra: 1.01,
  15185. bottom: 0.01
  15186. }
  15187. },
  15188. },
  15189. [
  15190. {
  15191. name: "Normal",
  15192. height: math.unit(11 + 9 / 12, "feet"),
  15193. default: true
  15194. },
  15195. ]
  15196. ))
  15197. characterMakers.push(() => makeCharacter(
  15198. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15199. {
  15200. legendary: {
  15201. height: math.unit(6, "feet"),
  15202. weight: math.unit(150, "lb"),
  15203. name: "Legendary",
  15204. image: {
  15205. source: "./media/characters/lucy/legendary.svg",
  15206. extra: 1355 / 1100,
  15207. bottom: 0.045
  15208. }
  15209. },
  15210. },
  15211. [
  15212. {
  15213. name: "Legendary",
  15214. height: math.unit(86882 * 2, "miles"),
  15215. default: true
  15216. },
  15217. ]
  15218. ))
  15219. characterMakers.push(() => makeCharacter(
  15220. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15221. {
  15222. front: {
  15223. height: math.unit(6, "feet"),
  15224. weight: math.unit(150, "lb"),
  15225. name: "Front",
  15226. image: {
  15227. source: "./media/characters/drusilla/front.svg",
  15228. extra: 678 / 635,
  15229. bottom: 0.03
  15230. }
  15231. },
  15232. back: {
  15233. height: math.unit(6, "feet"),
  15234. weight: math.unit(150, "lb"),
  15235. name: "Back",
  15236. image: {
  15237. source: "./media/characters/drusilla/back.svg",
  15238. extra: 678 / 635,
  15239. bottom: 0.005
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Macro",
  15246. height: math.unit(100, "feet")
  15247. },
  15248. {
  15249. name: "Canon Height",
  15250. height: math.unit(2000, "feet"),
  15251. default: true
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15257. {
  15258. front: {
  15259. height: math.unit(6, "feet"),
  15260. weight: math.unit(180, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/renard-thatch/front.svg",
  15264. extra: 2411 / 2275,
  15265. bottom: 0.01
  15266. }
  15267. },
  15268. frontPosing: {
  15269. height: math.unit(6, "feet"),
  15270. weight: math.unit(180, "lb"),
  15271. name: "Front (Posing)",
  15272. image: {
  15273. source: "./media/characters/renard-thatch/front-posing.svg",
  15274. extra: 2381 / 2261,
  15275. bottom: 0.01
  15276. }
  15277. },
  15278. back: {
  15279. height: math.unit(6, "feet"),
  15280. weight: math.unit(180, "lb"),
  15281. name: "Back",
  15282. image: {
  15283. source: "./media/characters/renard-thatch/back.svg",
  15284. extra: 2428 / 2288
  15285. }
  15286. },
  15287. },
  15288. [
  15289. {
  15290. name: "Micro",
  15291. height: math.unit(3, "inches")
  15292. },
  15293. {
  15294. name: "Default",
  15295. height: math.unit(6, "feet"),
  15296. default: true
  15297. },
  15298. {
  15299. name: "Macro",
  15300. height: math.unit(75, "feet")
  15301. },
  15302. ]
  15303. ))
  15304. characterMakers.push(() => makeCharacter(
  15305. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15306. {
  15307. front: {
  15308. height: math.unit(1450, "feet"),
  15309. weight: math.unit(1.21e6, "tons"),
  15310. name: "Front",
  15311. image: {
  15312. source: "./media/characters/sekvra/front.svg",
  15313. extra: 1193/1190,
  15314. bottom: 78/1271
  15315. }
  15316. },
  15317. side: {
  15318. height: math.unit(1450, "feet"),
  15319. weight: math.unit(1.21e6, "tons"),
  15320. name: "Side",
  15321. image: {
  15322. source: "./media/characters/sekvra/side.svg",
  15323. extra: 1193/1190,
  15324. bottom: 52/1245
  15325. }
  15326. },
  15327. back: {
  15328. height: math.unit(1450, "feet"),
  15329. weight: math.unit(1.21e6, "tons"),
  15330. name: "Back",
  15331. image: {
  15332. source: "./media/characters/sekvra/back.svg",
  15333. extra: 1219/1216,
  15334. bottom: 21/1240
  15335. }
  15336. },
  15337. frontClothed: {
  15338. height: math.unit(1450, "feet"),
  15339. weight: math.unit(1.21e6, "tons"),
  15340. name: "Front (Clothed)",
  15341. image: {
  15342. source: "./media/characters/sekvra/front-clothed.svg",
  15343. extra: 1192/1189,
  15344. bottom: 79/1271
  15345. }
  15346. },
  15347. },
  15348. [
  15349. {
  15350. name: "Macro",
  15351. height: math.unit(1450, "feet"),
  15352. default: true
  15353. },
  15354. {
  15355. name: "Megamacro",
  15356. height: math.unit(15000, "feet")
  15357. },
  15358. ]
  15359. ))
  15360. characterMakers.push(() => makeCharacter(
  15361. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15362. {
  15363. front: {
  15364. height: math.unit(6, "feet"),
  15365. weight: math.unit(150, "lb"),
  15366. name: "Front",
  15367. image: {
  15368. source: "./media/characters/carmine/front.svg",
  15369. extra: 1557/1538,
  15370. bottom: 68/1625
  15371. }
  15372. },
  15373. frontArmor: {
  15374. height: math.unit(6, "feet"),
  15375. weight: math.unit(150, "lb"),
  15376. name: "Front (Armor)",
  15377. image: {
  15378. source: "./media/characters/carmine/front-armor.svg",
  15379. extra: 1549/1530,
  15380. bottom: 82/1631
  15381. }
  15382. },
  15383. mouth: {
  15384. height: math.unit(0.55, "feet"),
  15385. name: "Mouth",
  15386. image: {
  15387. source: "./media/characters/carmine/mouth.svg"
  15388. }
  15389. },
  15390. hand: {
  15391. height: math.unit(1.05, "feet"),
  15392. name: "Hand",
  15393. image: {
  15394. source: "./media/characters/carmine/hand.svg"
  15395. }
  15396. },
  15397. foot: {
  15398. height: math.unit(0.6, "feet"),
  15399. name: "Foot",
  15400. image: {
  15401. source: "./media/characters/carmine/foot.svg"
  15402. }
  15403. },
  15404. },
  15405. [
  15406. {
  15407. name: "Large",
  15408. height: math.unit(1, "mile")
  15409. },
  15410. {
  15411. name: "Huge",
  15412. height: math.unit(40, "miles"),
  15413. default: true
  15414. },
  15415. {
  15416. name: "Colossal",
  15417. height: math.unit(2500, "miles")
  15418. },
  15419. ]
  15420. ))
  15421. characterMakers.push(() => makeCharacter(
  15422. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15423. {
  15424. front: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(150, "lb"),
  15427. name: "Front",
  15428. image: {
  15429. source: "./media/characters/elyssia/front.svg",
  15430. extra: 2201 / 2035,
  15431. bottom: 0.05
  15432. }
  15433. },
  15434. frontClothed: {
  15435. height: math.unit(6, "feet"),
  15436. weight: math.unit(150, "lb"),
  15437. name: "Front (Clothed)",
  15438. image: {
  15439. source: "./media/characters/elyssia/front-clothed.svg",
  15440. extra: 2201 / 2035,
  15441. bottom: 0.05
  15442. }
  15443. },
  15444. back: {
  15445. height: math.unit(6, "feet"),
  15446. weight: math.unit(150, "lb"),
  15447. name: "Back",
  15448. image: {
  15449. source: "./media/characters/elyssia/back.svg",
  15450. extra: 2201 / 2035,
  15451. bottom: 0.013
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "Smaller",
  15458. height: math.unit(150, "feet")
  15459. },
  15460. {
  15461. name: "Standard",
  15462. height: math.unit(1400, "feet"),
  15463. default: true
  15464. },
  15465. {
  15466. name: "Distracted",
  15467. height: math.unit(15000, "feet")
  15468. },
  15469. ]
  15470. ))
  15471. characterMakers.push(() => makeCharacter(
  15472. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15473. {
  15474. front: {
  15475. height: math.unit(7 + 4/12, "feet"),
  15476. weight: math.unit(690, "lb"),
  15477. name: "Front",
  15478. image: {
  15479. source: "./media/characters/geno-maxwell/front.svg",
  15480. extra: 984/856,
  15481. bottom: 87/1071
  15482. }
  15483. },
  15484. back: {
  15485. height: math.unit(7 + 4/12, "feet"),
  15486. weight: math.unit(690, "lb"),
  15487. name: "Back",
  15488. image: {
  15489. source: "./media/characters/geno-maxwell/back.svg",
  15490. extra: 981/854,
  15491. bottom: 57/1038
  15492. }
  15493. },
  15494. frontCostume: {
  15495. height: math.unit(7 + 4/12, "feet"),
  15496. weight: math.unit(690, "lb"),
  15497. name: "Front (Costume)",
  15498. image: {
  15499. source: "./media/characters/geno-maxwell/front-costume.svg",
  15500. extra: 984/856,
  15501. bottom: 87/1071
  15502. }
  15503. },
  15504. backcostume: {
  15505. height: math.unit(7 + 4/12, "feet"),
  15506. weight: math.unit(690, "lb"),
  15507. name: "Back (Costume)",
  15508. image: {
  15509. source: "./media/characters/geno-maxwell/back-costume.svg",
  15510. extra: 981/854,
  15511. bottom: 57/1038
  15512. }
  15513. },
  15514. },
  15515. [
  15516. {
  15517. name: "Micro",
  15518. height: math.unit(3, "inches")
  15519. },
  15520. {
  15521. name: "Normal",
  15522. height: math.unit(7 + 4 / 12, "feet"),
  15523. default: true
  15524. },
  15525. {
  15526. name: "Macro",
  15527. height: math.unit(220, "feet")
  15528. },
  15529. {
  15530. name: "Megamacro",
  15531. height: math.unit(11, "miles")
  15532. },
  15533. ]
  15534. ))
  15535. characterMakers.push(() => makeCharacter(
  15536. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15537. {
  15538. front: {
  15539. height: math.unit(7 + 4/12, "feet"),
  15540. weight: math.unit(750, "lb"),
  15541. name: "Front",
  15542. image: {
  15543. source: "./media/characters/regena-maxwell/front.svg",
  15544. extra: 984/856,
  15545. bottom: 87/1071
  15546. }
  15547. },
  15548. back: {
  15549. height: math.unit(7 + 4/12, "feet"),
  15550. weight: math.unit(750, "lb"),
  15551. name: "Back",
  15552. image: {
  15553. source: "./media/characters/regena-maxwell/back.svg",
  15554. extra: 981/854,
  15555. bottom: 57/1038
  15556. }
  15557. },
  15558. frontCostume: {
  15559. height: math.unit(7 + 4/12, "feet"),
  15560. weight: math.unit(750, "lb"),
  15561. name: "Front (Costume)",
  15562. image: {
  15563. source: "./media/characters/regena-maxwell/front-costume.svg",
  15564. extra: 984/856,
  15565. bottom: 87/1071
  15566. }
  15567. },
  15568. backcostume: {
  15569. height: math.unit(7 + 4/12, "feet"),
  15570. weight: math.unit(750, "lb"),
  15571. name: "Back (Costume)",
  15572. image: {
  15573. source: "./media/characters/regena-maxwell/back-costume.svg",
  15574. extra: 981/854,
  15575. bottom: 57/1038
  15576. }
  15577. },
  15578. },
  15579. [
  15580. {
  15581. name: "Normal",
  15582. height: math.unit(7 + 4 / 12, "feet"),
  15583. default: true
  15584. },
  15585. {
  15586. name: "Macro",
  15587. height: math.unit(220, "feet")
  15588. },
  15589. {
  15590. name: "Megamacro",
  15591. height: math.unit(11, "miles")
  15592. },
  15593. ]
  15594. ))
  15595. characterMakers.push(() => makeCharacter(
  15596. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15597. {
  15598. front: {
  15599. height: math.unit(6, "feet"),
  15600. weight: math.unit(150, "lb"),
  15601. name: "Front",
  15602. image: {
  15603. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15604. extra: 860 / 690,
  15605. bottom: 0.03
  15606. }
  15607. },
  15608. },
  15609. [
  15610. {
  15611. name: "Normal",
  15612. height: math.unit(1.7, "meters"),
  15613. default: true
  15614. },
  15615. ]
  15616. ))
  15617. characterMakers.push(() => makeCharacter(
  15618. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15619. {
  15620. front: {
  15621. height: math.unit(6, "feet"),
  15622. weight: math.unit(150, "lb"),
  15623. name: "Front",
  15624. image: {
  15625. source: "./media/characters/quilly/front.svg",
  15626. extra: 890 / 776
  15627. }
  15628. },
  15629. },
  15630. [
  15631. {
  15632. name: "Gigamacro",
  15633. height: math.unit(404090, "miles"),
  15634. default: true
  15635. },
  15636. ]
  15637. ))
  15638. characterMakers.push(() => makeCharacter(
  15639. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15640. {
  15641. front: {
  15642. height: math.unit(7 + 8 / 12, "feet"),
  15643. weight: math.unit(350, "lb"),
  15644. name: "Front",
  15645. image: {
  15646. source: "./media/characters/tempest/front.svg",
  15647. extra: 1175 / 1086,
  15648. bottom: 0.02
  15649. }
  15650. },
  15651. },
  15652. [
  15653. {
  15654. name: "Normal",
  15655. height: math.unit(7 + 8 / 12, "feet"),
  15656. default: true
  15657. },
  15658. ]
  15659. ))
  15660. characterMakers.push(() => makeCharacter(
  15661. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15662. {
  15663. side: {
  15664. height: math.unit(4 + 5 / 12, "feet"),
  15665. weight: math.unit(80, "lb"),
  15666. name: "Side",
  15667. image: {
  15668. source: "./media/characters/rodger/side.svg",
  15669. extra: 1235 / 1118
  15670. }
  15671. },
  15672. },
  15673. [
  15674. {
  15675. name: "Micro",
  15676. height: math.unit(1, "inch")
  15677. },
  15678. {
  15679. name: "Normal",
  15680. height: math.unit(4 + 5 / 12, "feet"),
  15681. default: true
  15682. },
  15683. {
  15684. name: "Macro",
  15685. height: math.unit(120, "feet")
  15686. },
  15687. ]
  15688. ))
  15689. characterMakers.push(() => makeCharacter(
  15690. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15691. {
  15692. front: {
  15693. height: math.unit(6, "feet"),
  15694. weight: math.unit(150, "lb"),
  15695. name: "Front",
  15696. image: {
  15697. source: "./media/characters/danyel/front.svg",
  15698. extra: 1185 / 1123,
  15699. bottom: 0.05
  15700. }
  15701. },
  15702. },
  15703. [
  15704. {
  15705. name: "Shrunken",
  15706. height: math.unit(0.5, "mm")
  15707. },
  15708. {
  15709. name: "Micro",
  15710. height: math.unit(1, "mm"),
  15711. default: true
  15712. },
  15713. {
  15714. name: "Upsized",
  15715. height: math.unit(5 + 5 / 12, "feet")
  15716. },
  15717. ]
  15718. ))
  15719. characterMakers.push(() => makeCharacter(
  15720. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15721. {
  15722. front: {
  15723. height: math.unit(5 + 6 / 12, "feet"),
  15724. weight: math.unit(200, "lb"),
  15725. name: "Front",
  15726. image: {
  15727. source: "./media/characters/vivian-bijoux/front.svg",
  15728. extra: 1217/1209,
  15729. bottom: 76/1293
  15730. }
  15731. },
  15732. back: {
  15733. height: math.unit(5 + 6 / 12, "feet"),
  15734. weight: math.unit(200, "lb"),
  15735. name: "Back",
  15736. image: {
  15737. source: "./media/characters/vivian-bijoux/back.svg",
  15738. extra: 1214/1208,
  15739. bottom: 51/1265
  15740. }
  15741. },
  15742. dressed: {
  15743. height: math.unit(5 + 6 / 12, "feet"),
  15744. weight: math.unit(200, "lb"),
  15745. name: "Dressed",
  15746. image: {
  15747. source: "./media/characters/vivian-bijoux/dressed.svg",
  15748. extra: 1217/1209,
  15749. bottom: 76/1293
  15750. }
  15751. },
  15752. },
  15753. [
  15754. {
  15755. name: "Normal",
  15756. height: math.unit(5 + 6 / 12, "feet"),
  15757. default: true
  15758. },
  15759. {
  15760. name: "Bad Dream",
  15761. height: math.unit(500, "feet")
  15762. },
  15763. {
  15764. name: "Nightmare",
  15765. height: math.unit(500, "miles")
  15766. },
  15767. ]
  15768. ))
  15769. characterMakers.push(() => makeCharacter(
  15770. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15771. {
  15772. front: {
  15773. height: math.unit(6 + 1 / 12, "feet"),
  15774. weight: math.unit(260, "lb"),
  15775. name: "Front",
  15776. image: {
  15777. source: "./media/characters/zeta/front.svg",
  15778. extra: 1968 / 1889,
  15779. bottom: 0.06
  15780. }
  15781. },
  15782. back: {
  15783. height: math.unit(6 + 1 / 12, "feet"),
  15784. weight: math.unit(260, "lb"),
  15785. name: "Back",
  15786. image: {
  15787. source: "./media/characters/zeta/back.svg",
  15788. extra: 1944 / 1858,
  15789. bottom: 0.03
  15790. }
  15791. },
  15792. hand: {
  15793. height: math.unit(1.112, "feet"),
  15794. name: "Hand",
  15795. image: {
  15796. source: "./media/characters/zeta/hand.svg"
  15797. }
  15798. },
  15799. foot: {
  15800. height: math.unit(1.48, "feet"),
  15801. name: "Foot",
  15802. image: {
  15803. source: "./media/characters/zeta/foot.svg"
  15804. }
  15805. },
  15806. },
  15807. [
  15808. {
  15809. name: "Micro",
  15810. height: math.unit(6, "inches")
  15811. },
  15812. {
  15813. name: "Normal",
  15814. height: math.unit(6 + 1 / 12, "feet"),
  15815. default: true
  15816. },
  15817. {
  15818. name: "Macro",
  15819. height: math.unit(20, "feet")
  15820. },
  15821. ]
  15822. ))
  15823. characterMakers.push(() => makeCharacter(
  15824. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15825. {
  15826. front: {
  15827. height: math.unit(6, "feet"),
  15828. weight: math.unit(150, "lb"),
  15829. name: "Front",
  15830. image: {
  15831. source: "./media/characters/jamie-larsen/front.svg",
  15832. extra: 962 / 933,
  15833. bottom: 0.02
  15834. }
  15835. },
  15836. back: {
  15837. height: math.unit(6, "feet"),
  15838. weight: math.unit(150, "lb"),
  15839. name: "Back",
  15840. image: {
  15841. source: "./media/characters/jamie-larsen/back.svg",
  15842. extra: 997 / 946
  15843. }
  15844. },
  15845. },
  15846. [
  15847. {
  15848. name: "Macro",
  15849. height: math.unit(28 + 7 / 12, "feet"),
  15850. default: true
  15851. },
  15852. {
  15853. name: "Macro+",
  15854. height: math.unit(180, "feet")
  15855. },
  15856. {
  15857. name: "Megamacro",
  15858. height: math.unit(10, "miles")
  15859. },
  15860. {
  15861. name: "Gigamacro",
  15862. height: math.unit(200000, "miles")
  15863. },
  15864. ]
  15865. ))
  15866. characterMakers.push(() => makeCharacter(
  15867. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15868. {
  15869. front: {
  15870. height: math.unit(6, "feet"),
  15871. weight: math.unit(120, "lb"),
  15872. name: "Front",
  15873. image: {
  15874. source: "./media/characters/vance/front.svg",
  15875. extra: 1980 / 1890,
  15876. bottom: 0.09
  15877. }
  15878. },
  15879. back: {
  15880. height: math.unit(6, "feet"),
  15881. weight: math.unit(120, "lb"),
  15882. name: "Back",
  15883. image: {
  15884. source: "./media/characters/vance/back.svg",
  15885. extra: 2081 / 1994,
  15886. bottom: 0.014
  15887. }
  15888. },
  15889. hand: {
  15890. height: math.unit(0.88, "feet"),
  15891. name: "Hand",
  15892. image: {
  15893. source: "./media/characters/vance/hand.svg"
  15894. }
  15895. },
  15896. foot: {
  15897. height: math.unit(0.64, "feet"),
  15898. name: "Foot",
  15899. image: {
  15900. source: "./media/characters/vance/foot.svg"
  15901. }
  15902. },
  15903. },
  15904. [
  15905. {
  15906. name: "Small",
  15907. height: math.unit(90, "feet"),
  15908. default: true
  15909. },
  15910. {
  15911. name: "Macro",
  15912. height: math.unit(100, "meters")
  15913. },
  15914. {
  15915. name: "Megamacro",
  15916. height: math.unit(15, "miles")
  15917. },
  15918. ]
  15919. ))
  15920. characterMakers.push(() => makeCharacter(
  15921. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15922. {
  15923. front: {
  15924. height: math.unit(6, "feet"),
  15925. weight: math.unit(180, "lb"),
  15926. name: "Front",
  15927. image: {
  15928. source: "./media/characters/xochitl/front.svg",
  15929. extra: 2297 / 2261,
  15930. bottom: 0.065
  15931. }
  15932. },
  15933. back: {
  15934. height: math.unit(6, "feet"),
  15935. weight: math.unit(180, "lb"),
  15936. name: "Back",
  15937. image: {
  15938. source: "./media/characters/xochitl/back.svg",
  15939. extra: 2386 / 2354,
  15940. bottom: 0.01
  15941. }
  15942. },
  15943. foot: {
  15944. height: math.unit(6 / 5 * 1.15, "feet"),
  15945. weight: math.unit(150, "lb"),
  15946. name: "Foot",
  15947. image: {
  15948. source: "./media/characters/xochitl/foot.svg"
  15949. }
  15950. },
  15951. },
  15952. [
  15953. {
  15954. name: "Macro",
  15955. height: math.unit(80, "feet")
  15956. },
  15957. {
  15958. name: "Macro+",
  15959. height: math.unit(400, "feet"),
  15960. default: true
  15961. },
  15962. {
  15963. name: "Gigamacro",
  15964. height: math.unit(80000, "miles")
  15965. },
  15966. {
  15967. name: "Gigamacro+",
  15968. height: math.unit(400000, "miles")
  15969. },
  15970. {
  15971. name: "Teramacro",
  15972. height: math.unit(300, "AU")
  15973. },
  15974. ]
  15975. ))
  15976. characterMakers.push(() => makeCharacter(
  15977. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15978. {
  15979. front: {
  15980. height: math.unit(6, "feet"),
  15981. weight: math.unit(150, "lb"),
  15982. name: "Front",
  15983. image: {
  15984. source: "./media/characters/vincent/front.svg",
  15985. extra: 1130 / 1080,
  15986. bottom: 0.055
  15987. }
  15988. },
  15989. beak: {
  15990. height: math.unit(6 * 0.1, "feet"),
  15991. name: "Beak",
  15992. image: {
  15993. source: "./media/characters/vincent/beak.svg"
  15994. }
  15995. },
  15996. hand: {
  15997. height: math.unit(6 * 0.85, "feet"),
  15998. weight: math.unit(150, "lb"),
  15999. name: "Hand",
  16000. image: {
  16001. source: "./media/characters/vincent/hand.svg"
  16002. }
  16003. },
  16004. foot: {
  16005. height: math.unit(6 * 0.19, "feet"),
  16006. weight: math.unit(150, "lb"),
  16007. name: "Foot",
  16008. image: {
  16009. source: "./media/characters/vincent/foot.svg"
  16010. }
  16011. },
  16012. },
  16013. [
  16014. {
  16015. name: "Base",
  16016. height: math.unit(6 + 5 / 12, "feet"),
  16017. default: true
  16018. },
  16019. {
  16020. name: "Macro",
  16021. height: math.unit(300, "feet")
  16022. },
  16023. {
  16024. name: "Megamacro",
  16025. height: math.unit(2, "miles")
  16026. },
  16027. {
  16028. name: "Gigamacro",
  16029. height: math.unit(1000, "miles")
  16030. },
  16031. ]
  16032. ))
  16033. characterMakers.push(() => makeCharacter(
  16034. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16035. {
  16036. front: {
  16037. height: math.unit(2, "meters"),
  16038. weight: math.unit(500, "kg"),
  16039. name: "Front",
  16040. image: {
  16041. source: "./media/characters/coatl/front.svg",
  16042. extra: 3948 / 3500,
  16043. bottom: 0.082
  16044. }
  16045. },
  16046. },
  16047. [
  16048. {
  16049. name: "Normal",
  16050. height: math.unit(4, "meters")
  16051. },
  16052. {
  16053. name: "Macro",
  16054. height: math.unit(100, "meters"),
  16055. default: true
  16056. },
  16057. {
  16058. name: "Macro+",
  16059. height: math.unit(300, "meters")
  16060. },
  16061. {
  16062. name: "Megamacro",
  16063. height: math.unit(3, "gigameters")
  16064. },
  16065. {
  16066. name: "Megamacro+",
  16067. height: math.unit(300, "terameters")
  16068. },
  16069. {
  16070. name: "Megamacro++",
  16071. height: math.unit(3, "lightyears")
  16072. },
  16073. ]
  16074. ))
  16075. characterMakers.push(() => makeCharacter(
  16076. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16077. {
  16078. front: {
  16079. height: math.unit(6, "feet"),
  16080. weight: math.unit(50, "kg"),
  16081. name: "front",
  16082. image: {
  16083. source: "./media/characters/shiroryu/front.svg",
  16084. extra: 1990 / 1935
  16085. }
  16086. },
  16087. },
  16088. [
  16089. {
  16090. name: "Mortal Mingling",
  16091. height: math.unit(3, "meters")
  16092. },
  16093. {
  16094. name: "Kaiju-ish",
  16095. height: math.unit(250, "meters")
  16096. },
  16097. {
  16098. name: "Somewhat Godly",
  16099. height: math.unit(400, "km"),
  16100. default: true
  16101. },
  16102. {
  16103. name: "Planetary",
  16104. height: math.unit(300, "megameters")
  16105. },
  16106. {
  16107. name: "Galaxy-dwarfing",
  16108. height: math.unit(450, "kiloparsecs")
  16109. },
  16110. {
  16111. name: "Universe Eater",
  16112. height: math.unit(150, "gigaparsecs")
  16113. },
  16114. {
  16115. name: "Almost Immeasurable",
  16116. height: math.unit(1.3e266, "yottaparsecs")
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16122. {
  16123. front: {
  16124. height: math.unit(6, "feet"),
  16125. weight: math.unit(150, "lb"),
  16126. name: "Front",
  16127. image: {
  16128. source: "./media/characters/umeko/front.svg",
  16129. extra: 1,
  16130. bottom: 0.019
  16131. }
  16132. },
  16133. frontArmored: {
  16134. height: math.unit(6, "feet"),
  16135. weight: math.unit(150, "lb"),
  16136. name: "Front (Armored)",
  16137. image: {
  16138. source: "./media/characters/umeko/front-armored.svg",
  16139. extra: 1,
  16140. bottom: 0.021
  16141. }
  16142. },
  16143. },
  16144. [
  16145. {
  16146. name: "Macro",
  16147. height: math.unit(220, "feet"),
  16148. default: true
  16149. },
  16150. {
  16151. name: "Guardian Dragon",
  16152. height: math.unit(50, "miles")
  16153. },
  16154. {
  16155. name: "Cosmic",
  16156. height: math.unit(800000, "miles")
  16157. },
  16158. ]
  16159. ))
  16160. characterMakers.push(() => makeCharacter(
  16161. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16162. {
  16163. front: {
  16164. height: math.unit(6, "feet"),
  16165. weight: math.unit(150, "lb"),
  16166. name: "Front",
  16167. image: {
  16168. source: "./media/characters/cassidy/front.svg",
  16169. extra: 810/808,
  16170. bottom: 41/851
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Canon Height",
  16177. height: math.unit(120, "feet"),
  16178. default: true
  16179. },
  16180. {
  16181. name: "Macro+",
  16182. height: math.unit(400, "feet")
  16183. },
  16184. {
  16185. name: "Macro++",
  16186. height: math.unit(4000, "feet")
  16187. },
  16188. {
  16189. name: "Megamacro",
  16190. height: math.unit(3, "miles")
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(6, "feet"),
  16199. weight: math.unit(150, "lb"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/isaac/front.svg",
  16203. extra: 896 / 815,
  16204. bottom: 0.11
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Human Size",
  16211. height: math.unit(8, "feet"),
  16212. default: true
  16213. },
  16214. {
  16215. name: "Macro",
  16216. height: math.unit(400, "feet")
  16217. },
  16218. {
  16219. name: "Megamacro",
  16220. height: math.unit(50, "miles")
  16221. },
  16222. {
  16223. name: "Canon Height",
  16224. height: math.unit(200, "AU")
  16225. },
  16226. ]
  16227. ))
  16228. characterMakers.push(() => makeCharacter(
  16229. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16230. {
  16231. front: {
  16232. height: math.unit(6, "feet"),
  16233. weight: math.unit(72, "kg"),
  16234. name: "Front",
  16235. image: {
  16236. source: "./media/characters/sleekit/front.svg",
  16237. extra: 4693 / 4487,
  16238. bottom: 0.012
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Minimum Height",
  16245. height: math.unit(10, "meters")
  16246. },
  16247. {
  16248. name: "Smaller",
  16249. height: math.unit(25, "meters")
  16250. },
  16251. {
  16252. name: "Larger",
  16253. height: math.unit(38, "meters"),
  16254. default: true
  16255. },
  16256. {
  16257. name: "Maximum height",
  16258. height: math.unit(100, "meters")
  16259. },
  16260. ]
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16264. {
  16265. front: {
  16266. height: math.unit(6, "feet"),
  16267. weight: math.unit(150, "lb"),
  16268. name: "Front",
  16269. image: {
  16270. source: "./media/characters/nillia/front.svg",
  16271. extra: 719/665,
  16272. bottom: 6/725
  16273. }
  16274. },
  16275. back: {
  16276. height: math.unit(6, "feet"),
  16277. weight: math.unit(150, "lb"),
  16278. name: "Back",
  16279. image: {
  16280. source: "./media/characters/nillia/back.svg",
  16281. extra: 705/651,
  16282. bottom: 5/710
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Canon Height",
  16289. height: math.unit(489, "feet"),
  16290. default: true
  16291. }
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(6, "feet"),
  16299. weight: math.unit(150, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/mesmyriza/front.svg",
  16303. extra: 1541/1291,
  16304. bottom: 87/1628
  16305. }
  16306. },
  16307. foot: {
  16308. height: math.unit(6 / (250 / 35), "feet"),
  16309. name: "Foot",
  16310. image: {
  16311. source: "./media/characters/mesmyriza/foot.svg"
  16312. }
  16313. },
  16314. },
  16315. [
  16316. {
  16317. name: "Macro",
  16318. height: math.unit(457, "meters"),
  16319. default: true
  16320. },
  16321. {
  16322. name: "Megamacro",
  16323. height: math.unit(8, "megameters")
  16324. },
  16325. ]
  16326. ))
  16327. characterMakers.push(() => makeCharacter(
  16328. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16329. {
  16330. front: {
  16331. height: math.unit(6, "feet"),
  16332. weight: math.unit(250, "lb"),
  16333. name: "Front",
  16334. image: {
  16335. source: "./media/characters/saudade/front.svg",
  16336. extra: 1172 / 1139,
  16337. bottom: 0.035
  16338. }
  16339. },
  16340. },
  16341. [
  16342. {
  16343. name: "Micro",
  16344. height: math.unit(3, "inches")
  16345. },
  16346. {
  16347. name: "Normal",
  16348. height: math.unit(6, "feet"),
  16349. default: true
  16350. },
  16351. {
  16352. name: "Macro",
  16353. height: math.unit(50, "feet")
  16354. },
  16355. {
  16356. name: "Megamacro",
  16357. height: math.unit(2800, "feet")
  16358. },
  16359. ]
  16360. ))
  16361. characterMakers.push(() => makeCharacter(
  16362. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16363. {
  16364. front: {
  16365. height: math.unit(5 + 4 / 12, "feet"),
  16366. weight: math.unit(100, "lb"),
  16367. name: "Front",
  16368. image: {
  16369. source: "./media/characters/keireer/front.svg",
  16370. extra: 716 / 666,
  16371. bottom: 0.05
  16372. }
  16373. },
  16374. },
  16375. [
  16376. {
  16377. name: "Normal",
  16378. height: math.unit(5 + 4 / 12, "feet"),
  16379. default: true
  16380. },
  16381. ]
  16382. ))
  16383. characterMakers.push(() => makeCharacter(
  16384. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16385. {
  16386. front: {
  16387. height: math.unit(5.5, "feet"),
  16388. weight: math.unit(90, "kg"),
  16389. name: "Front",
  16390. image: {
  16391. source: "./media/characters/mirja/front.svg",
  16392. extra: 1452/1262,
  16393. bottom: 67/1519
  16394. }
  16395. },
  16396. frontDressed: {
  16397. height: math.unit(5.5, "feet"),
  16398. weight: math.unit(90, "lb"),
  16399. name: "Front (Dressed)",
  16400. image: {
  16401. source: "./media/characters/mirja/dressed.svg",
  16402. extra: 1452/1262,
  16403. bottom: 67/1519
  16404. }
  16405. },
  16406. back: {
  16407. height: math.unit(6, "feet"),
  16408. weight: math.unit(90, "lb"),
  16409. name: "Back",
  16410. image: {
  16411. source: "./media/characters/mirja/back.svg",
  16412. extra: 1892/1795,
  16413. bottom: 48/1940
  16414. }
  16415. },
  16416. maw: {
  16417. height: math.unit(1.312, "feet"),
  16418. name: "Maw",
  16419. image: {
  16420. source: "./media/characters/mirja/maw.svg"
  16421. }
  16422. },
  16423. paw: {
  16424. height: math.unit(1.15, "feet"),
  16425. name: "Paw",
  16426. image: {
  16427. source: "./media/characters/mirja/paw.svg"
  16428. }
  16429. },
  16430. },
  16431. [
  16432. {
  16433. name: "\"Incognito\"",
  16434. height: math.unit(3, "meters")
  16435. },
  16436. {
  16437. name: "Strolling Size",
  16438. height: math.unit(15, "km")
  16439. },
  16440. {
  16441. name: "Larger Strolling Size",
  16442. height: math.unit(400, "km")
  16443. },
  16444. {
  16445. name: "Preferred Size",
  16446. height: math.unit(5000, "km"),
  16447. default: true
  16448. },
  16449. {
  16450. name: "True Size",
  16451. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16452. },
  16453. ]
  16454. ))
  16455. characterMakers.push(() => makeCharacter(
  16456. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16457. {
  16458. front: {
  16459. height: math.unit(15, "feet"),
  16460. weight: math.unit(880, "kg"),
  16461. name: "Front",
  16462. image: {
  16463. source: "./media/characters/nightraver/front.svg",
  16464. extra: 2444 / 2160,
  16465. bottom: 0.027
  16466. }
  16467. },
  16468. back: {
  16469. height: math.unit(15, "feet"),
  16470. weight: math.unit(880, "kg"),
  16471. name: "Back",
  16472. image: {
  16473. source: "./media/characters/nightraver/back.svg",
  16474. extra: 2309 / 2180,
  16475. bottom: 0.005
  16476. }
  16477. },
  16478. sole: {
  16479. height: math.unit(2.878, "feet"),
  16480. name: "Sole",
  16481. image: {
  16482. source: "./media/characters/nightraver/sole.svg"
  16483. }
  16484. },
  16485. foot: {
  16486. height: math.unit(2.285, "feet"),
  16487. name: "Foot",
  16488. image: {
  16489. source: "./media/characters/nightraver/foot.svg"
  16490. }
  16491. },
  16492. maw: {
  16493. height: math.unit(2.67, "feet"),
  16494. name: "Maw",
  16495. image: {
  16496. source: "./media/characters/nightraver/maw.svg"
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Micro",
  16503. height: math.unit(1, "cm")
  16504. },
  16505. {
  16506. name: "Normal",
  16507. height: math.unit(15, "feet"),
  16508. default: true
  16509. },
  16510. {
  16511. name: "Macro",
  16512. height: math.unit(300, "feet")
  16513. },
  16514. {
  16515. name: "Megamacro",
  16516. height: math.unit(300, "miles")
  16517. },
  16518. {
  16519. name: "Gigamacro",
  16520. height: math.unit(10000, "miles")
  16521. },
  16522. ]
  16523. ))
  16524. characterMakers.push(() => makeCharacter(
  16525. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16526. {
  16527. side: {
  16528. height: math.unit(2, "inches"),
  16529. weight: math.unit(5, "grams"),
  16530. name: "Side",
  16531. image: {
  16532. source: "./media/characters/arc/side.svg"
  16533. }
  16534. },
  16535. },
  16536. [
  16537. {
  16538. name: "Micro",
  16539. height: math.unit(2, "inches"),
  16540. default: true
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16546. {
  16547. front: {
  16548. height: math.unit(1.1938, "meters"),
  16549. weight: math.unit(54, "kg"),
  16550. name: "Front",
  16551. image: {
  16552. source: "./media/characters/nebula-shahar/front.svg",
  16553. extra: 1642 / 1436,
  16554. bottom: 0.06
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Megamicro",
  16561. height: math.unit(0.3, "mm")
  16562. },
  16563. {
  16564. name: "Micro",
  16565. height: math.unit(3, "cm")
  16566. },
  16567. {
  16568. name: "Normal",
  16569. height: math.unit(138, "cm"),
  16570. default: true
  16571. },
  16572. {
  16573. name: "Macro",
  16574. height: math.unit(30, "m")
  16575. },
  16576. ]
  16577. ))
  16578. characterMakers.push(() => makeCharacter(
  16579. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16580. {
  16581. front: {
  16582. height: math.unit(5.24, "feet"),
  16583. weight: math.unit(150, "lb"),
  16584. name: "Front",
  16585. image: {
  16586. source: "./media/characters/shayla/front.svg",
  16587. extra: 1512 / 1414,
  16588. bottom: 0.01
  16589. }
  16590. },
  16591. back: {
  16592. height: math.unit(5.24, "feet"),
  16593. weight: math.unit(150, "lb"),
  16594. name: "Back",
  16595. image: {
  16596. source: "./media/characters/shayla/back.svg",
  16597. extra: 1512 / 1414
  16598. }
  16599. },
  16600. hand: {
  16601. height: math.unit(0.7781496062992126, "feet"),
  16602. name: "Hand",
  16603. image: {
  16604. source: "./media/characters/shayla/hand.svg"
  16605. }
  16606. },
  16607. foot: {
  16608. height: math.unit(1.4206036745406823, "feet"),
  16609. name: "Foot",
  16610. image: {
  16611. source: "./media/characters/shayla/foot.svg"
  16612. }
  16613. },
  16614. },
  16615. [
  16616. {
  16617. name: "Micro",
  16618. height: math.unit(0.32, "feet")
  16619. },
  16620. {
  16621. name: "Normal",
  16622. height: math.unit(5.24, "feet"),
  16623. default: true
  16624. },
  16625. {
  16626. name: "Macro",
  16627. height: math.unit(492.12, "feet")
  16628. },
  16629. {
  16630. name: "Megamacro",
  16631. height: math.unit(186.41, "miles")
  16632. },
  16633. ]
  16634. ))
  16635. characterMakers.push(() => makeCharacter(
  16636. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16637. {
  16638. front: {
  16639. height: math.unit(2.2, "m"),
  16640. weight: math.unit(120, "kg"),
  16641. name: "Front",
  16642. image: {
  16643. source: "./media/characters/pia-jr/front.svg",
  16644. extra: 1000 / 970,
  16645. bottom: 0.035
  16646. }
  16647. },
  16648. hand: {
  16649. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16650. name: "Hand",
  16651. image: {
  16652. source: "./media/characters/pia-jr/hand.svg"
  16653. }
  16654. },
  16655. paw: {
  16656. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16657. name: "Paw",
  16658. image: {
  16659. source: "./media/characters/pia-jr/paw.svg"
  16660. }
  16661. },
  16662. },
  16663. [
  16664. {
  16665. name: "Micro",
  16666. height: math.unit(1.2, "cm")
  16667. },
  16668. {
  16669. name: "Normal",
  16670. height: math.unit(2.2, "m"),
  16671. default: true
  16672. },
  16673. {
  16674. name: "Macro",
  16675. height: math.unit(180, "m")
  16676. },
  16677. {
  16678. name: "Megamacro",
  16679. height: math.unit(420, "km")
  16680. },
  16681. ]
  16682. ))
  16683. characterMakers.push(() => makeCharacter(
  16684. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16685. {
  16686. front: {
  16687. height: math.unit(2, "m"),
  16688. weight: math.unit(115, "kg"),
  16689. name: "Front",
  16690. image: {
  16691. source: "./media/characters/pia-sr/front.svg",
  16692. extra: 760 / 730,
  16693. bottom: 0.015
  16694. }
  16695. },
  16696. back: {
  16697. height: math.unit(2, "m"),
  16698. weight: math.unit(115, "kg"),
  16699. name: "Back",
  16700. image: {
  16701. source: "./media/characters/pia-sr/back.svg",
  16702. extra: 760 / 730,
  16703. bottom: 0.01
  16704. }
  16705. },
  16706. hand: {
  16707. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16708. name: "Hand",
  16709. image: {
  16710. source: "./media/characters/pia-sr/hand.svg"
  16711. }
  16712. },
  16713. foot: {
  16714. height: math.unit(1.83, "feet"),
  16715. name: "Foot",
  16716. image: {
  16717. source: "./media/characters/pia-sr/foot.svg"
  16718. }
  16719. },
  16720. },
  16721. [
  16722. {
  16723. name: "Micro",
  16724. height: math.unit(88, "mm")
  16725. },
  16726. {
  16727. name: "Normal",
  16728. height: math.unit(2, "m"),
  16729. default: true
  16730. },
  16731. {
  16732. name: "Macro",
  16733. height: math.unit(200, "m")
  16734. },
  16735. {
  16736. name: "Megamacro",
  16737. height: math.unit(420, "km")
  16738. },
  16739. ]
  16740. ))
  16741. characterMakers.push(() => makeCharacter(
  16742. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16743. {
  16744. front: {
  16745. height: math.unit(8 + 2 / 12, "feet"),
  16746. weight: math.unit(300, "lb"),
  16747. name: "Front",
  16748. image: {
  16749. source: "./media/characters/kibibyte/front.svg",
  16750. extra: 2221 / 2098,
  16751. bottom: 0.04
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Normal",
  16758. height: math.unit(8 + 2 / 12, "feet"),
  16759. default: true
  16760. },
  16761. {
  16762. name: "Socialable Macro",
  16763. height: math.unit(50, "feet")
  16764. },
  16765. {
  16766. name: "Macro",
  16767. height: math.unit(300, "feet")
  16768. },
  16769. {
  16770. name: "Megamacro",
  16771. height: math.unit(500, "miles")
  16772. },
  16773. ]
  16774. ))
  16775. characterMakers.push(() => makeCharacter(
  16776. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16777. {
  16778. front: {
  16779. height: math.unit(6, "feet"),
  16780. weight: math.unit(150, "lb"),
  16781. name: "Front",
  16782. image: {
  16783. source: "./media/characters/felix/front.svg",
  16784. extra: 762 / 722,
  16785. bottom: 0.02
  16786. }
  16787. },
  16788. frontClothed: {
  16789. height: math.unit(6, "feet"),
  16790. weight: math.unit(150, "lb"),
  16791. name: "Front (Clothed)",
  16792. image: {
  16793. source: "./media/characters/felix/front-clothed.svg",
  16794. extra: 762 / 722,
  16795. bottom: 0.02
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(6 + 8 / 12, "feet"),
  16803. default: true
  16804. },
  16805. {
  16806. name: "Macro",
  16807. height: math.unit(2600, "feet")
  16808. },
  16809. {
  16810. name: "Megamacro",
  16811. height: math.unit(450, "miles")
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16817. {
  16818. front: {
  16819. height: math.unit(6 + 1 / 12, "feet"),
  16820. weight: math.unit(250, "lb"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/tobo/front.svg",
  16824. extra: 608 / 586,
  16825. bottom: 0.023
  16826. }
  16827. },
  16828. back: {
  16829. height: math.unit(6 + 1 / 12, "feet"),
  16830. weight: math.unit(250, "lb"),
  16831. name: "Back",
  16832. image: {
  16833. source: "./media/characters/tobo/back.svg",
  16834. extra: 608 / 586
  16835. }
  16836. },
  16837. },
  16838. [
  16839. {
  16840. name: "Nano",
  16841. height: math.unit(2, "nm")
  16842. },
  16843. {
  16844. name: "Megamicro",
  16845. height: math.unit(0.1, "mm")
  16846. },
  16847. {
  16848. name: "Micro",
  16849. height: math.unit(1, "inch"),
  16850. default: true
  16851. },
  16852. {
  16853. name: "Human-sized",
  16854. height: math.unit(6 + 1 / 12, "feet")
  16855. },
  16856. {
  16857. name: "Macro",
  16858. height: math.unit(250, "feet")
  16859. },
  16860. {
  16861. name: "Megamacro",
  16862. height: math.unit(75, "miles")
  16863. },
  16864. {
  16865. name: "Texas-sized",
  16866. height: math.unit(750, "miles")
  16867. },
  16868. {
  16869. name: "Teramacro",
  16870. height: math.unit(50000, "miles")
  16871. },
  16872. ]
  16873. ))
  16874. characterMakers.push(() => makeCharacter(
  16875. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16876. {
  16877. front: {
  16878. height: math.unit(6, "feet"),
  16879. weight: math.unit(269, "lb"),
  16880. name: "Front",
  16881. image: {
  16882. source: "./media/characters/danny-kapowsky/front.svg",
  16883. extra: 766 / 736,
  16884. bottom: 0.044
  16885. }
  16886. },
  16887. back: {
  16888. height: math.unit(6, "feet"),
  16889. weight: math.unit(269, "lb"),
  16890. name: "Back",
  16891. image: {
  16892. source: "./media/characters/danny-kapowsky/back.svg",
  16893. extra: 797 / 760,
  16894. bottom: 0.025
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Macro",
  16901. height: math.unit(150, "feet"),
  16902. default: true
  16903. },
  16904. {
  16905. name: "Macro+",
  16906. height: math.unit(200, "feet")
  16907. },
  16908. {
  16909. name: "Macro++",
  16910. height: math.unit(300, "feet")
  16911. },
  16912. {
  16913. name: "Macro+++",
  16914. height: math.unit(400, "feet")
  16915. },
  16916. ]
  16917. ))
  16918. characterMakers.push(() => makeCharacter(
  16919. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16920. {
  16921. side: {
  16922. height: math.unit(6, "feet"),
  16923. weight: math.unit(170, "lb"),
  16924. name: "Side",
  16925. image: {
  16926. source: "./media/characters/finn/side.svg",
  16927. extra: 1953 / 1807,
  16928. bottom: 0.057
  16929. }
  16930. },
  16931. },
  16932. [
  16933. {
  16934. name: "Megamacro",
  16935. height: math.unit(14445, "feet"),
  16936. default: true
  16937. },
  16938. ]
  16939. ))
  16940. characterMakers.push(() => makeCharacter(
  16941. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16942. {
  16943. front: {
  16944. height: math.unit(5 + 6 / 12, "feet"),
  16945. weight: math.unit(125, "lb"),
  16946. name: "Front",
  16947. image: {
  16948. source: "./media/characters/roy/front.svg",
  16949. extra: 1,
  16950. bottom: 0.11
  16951. }
  16952. },
  16953. },
  16954. [
  16955. {
  16956. name: "Micro",
  16957. height: math.unit(3, "inches"),
  16958. default: true
  16959. },
  16960. {
  16961. name: "Normal",
  16962. height: math.unit(5 + 6 / 12, "feet")
  16963. },
  16964. {
  16965. name: "Lesser Macro",
  16966. height: math.unit(60, "feet")
  16967. },
  16968. {
  16969. name: "Greater Macro",
  16970. height: math.unit(120, "feet")
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16976. {
  16977. front: {
  16978. height: math.unit(6, "feet"),
  16979. weight: math.unit(100, "lb"),
  16980. name: "Front",
  16981. image: {
  16982. source: "./media/characters/aevsivs/front.svg",
  16983. extra: 1,
  16984. bottom: 0.03
  16985. }
  16986. },
  16987. back: {
  16988. height: math.unit(6, "feet"),
  16989. weight: math.unit(100, "lb"),
  16990. name: "Back",
  16991. image: {
  16992. source: "./media/characters/aevsivs/back.svg"
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Micro",
  16999. height: math.unit(2, "inches"),
  17000. default: true
  17001. },
  17002. {
  17003. name: "Normal",
  17004. height: math.unit(5, "feet")
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17010. {
  17011. front: {
  17012. height: math.unit(5 + 7 / 12, "feet"),
  17013. weight: math.unit(159, "lb"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/hildegard/front.svg",
  17017. extra: 289 / 269,
  17018. bottom: 7.63 / 297.8
  17019. }
  17020. },
  17021. back: {
  17022. height: math.unit(5 + 7 / 12, "feet"),
  17023. weight: math.unit(159, "lb"),
  17024. name: "Back",
  17025. image: {
  17026. source: "./media/characters/hildegard/back.svg",
  17027. extra: 280 / 260,
  17028. bottom: 2.3 / 282
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Normal",
  17035. height: math.unit(5 + 7 / 12, "feet"),
  17036. default: true
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17042. {
  17043. bernard: {
  17044. height: math.unit(2 + 7 / 12, "feet"),
  17045. weight: math.unit(66, "lb"),
  17046. name: "Bernard",
  17047. rename: true,
  17048. image: {
  17049. source: "./media/characters/bernard-wilder/bernard.svg",
  17050. extra: 192 / 128,
  17051. bottom: 0.05
  17052. }
  17053. },
  17054. wilder: {
  17055. height: math.unit(5 + 8 / 12, "feet"),
  17056. weight: math.unit(143, "lb"),
  17057. name: "Wilder",
  17058. rename: true,
  17059. image: {
  17060. source: "./media/characters/bernard-wilder/wilder.svg",
  17061. extra: 361 / 312,
  17062. bottom: 0.02
  17063. }
  17064. },
  17065. },
  17066. [
  17067. {
  17068. name: "Normal",
  17069. height: math.unit(2 + 7 / 12, "feet"),
  17070. default: true
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17076. {
  17077. anthro: {
  17078. height: math.unit(6 + 1 / 12, "feet"),
  17079. weight: math.unit(155, "lb"),
  17080. name: "Anthro",
  17081. image: {
  17082. source: "./media/characters/hearth/anthro.svg",
  17083. extra: 1178/1136,
  17084. bottom: 28/1206
  17085. }
  17086. },
  17087. feral: {
  17088. height: math.unit(3.78, "feet"),
  17089. weight: math.unit(35, "kg"),
  17090. name: "Feral",
  17091. image: {
  17092. source: "./media/characters/hearth/feral.svg",
  17093. extra: 153 / 135,
  17094. bottom: 0.03
  17095. }
  17096. },
  17097. },
  17098. [
  17099. {
  17100. name: "Normal",
  17101. height: math.unit(6 + 1 / 12, "feet"),
  17102. default: true
  17103. },
  17104. ]
  17105. ))
  17106. characterMakers.push(() => makeCharacter(
  17107. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17108. {
  17109. front: {
  17110. height: math.unit(6, "feet"),
  17111. weight: math.unit(182, "lb"),
  17112. name: "Front",
  17113. image: {
  17114. source: "./media/characters/ingrid/front.svg",
  17115. extra: 294 / 268,
  17116. bottom: 0.027
  17117. }
  17118. },
  17119. },
  17120. [
  17121. {
  17122. name: "Normal",
  17123. height: math.unit(6, "feet"),
  17124. default: true
  17125. },
  17126. ]
  17127. ))
  17128. characterMakers.push(() => makeCharacter(
  17129. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17130. {
  17131. eevee: {
  17132. height: math.unit(2 + 10 / 12, "feet"),
  17133. weight: math.unit(86, "lb"),
  17134. name: "Malgam",
  17135. image: {
  17136. source: "./media/characters/malgam/eevee.svg",
  17137. extra: 952/784,
  17138. bottom: 38/990
  17139. }
  17140. },
  17141. sylveon: {
  17142. height: math.unit(4, "feet"),
  17143. weight: math.unit(101, "lb"),
  17144. name: "Future Malgam",
  17145. rename: true,
  17146. image: {
  17147. source: "./media/characters/malgam/sylveon.svg",
  17148. extra: 371 / 325,
  17149. bottom: 0.015
  17150. }
  17151. },
  17152. gigantamax: {
  17153. height: math.unit(50, "feet"),
  17154. name: "Gigantamax Malgam",
  17155. rename: true,
  17156. image: {
  17157. source: "./media/characters/malgam/gigantamax.svg"
  17158. }
  17159. },
  17160. },
  17161. [
  17162. {
  17163. name: "Normal",
  17164. height: math.unit(2 + 10 / 12, "feet"),
  17165. default: true
  17166. },
  17167. ]
  17168. ))
  17169. characterMakers.push(() => makeCharacter(
  17170. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17171. {
  17172. front: {
  17173. height: math.unit(5 + 11 / 12, "feet"),
  17174. weight: math.unit(188, "lb"),
  17175. name: "Front",
  17176. image: {
  17177. source: "./media/characters/fleur/front.svg",
  17178. extra: 309 / 283,
  17179. bottom: 0.007
  17180. }
  17181. },
  17182. },
  17183. [
  17184. {
  17185. name: "Normal",
  17186. height: math.unit(5 + 11 / 12, "feet"),
  17187. default: true
  17188. },
  17189. ]
  17190. ))
  17191. characterMakers.push(() => makeCharacter(
  17192. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17193. {
  17194. front: {
  17195. height: math.unit(5 + 4 / 12, "feet"),
  17196. weight: math.unit(122, "lb"),
  17197. name: "Front",
  17198. image: {
  17199. source: "./media/characters/jude/front.svg",
  17200. extra: 288 / 273,
  17201. bottom: 0.03
  17202. }
  17203. },
  17204. },
  17205. [
  17206. {
  17207. name: "Normal",
  17208. height: math.unit(5 + 4 / 12, "feet"),
  17209. default: true
  17210. },
  17211. ]
  17212. ))
  17213. characterMakers.push(() => makeCharacter(
  17214. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17215. {
  17216. front: {
  17217. height: math.unit(5 + 11 / 12, "feet"),
  17218. weight: math.unit(190, "lb"),
  17219. name: "Front",
  17220. image: {
  17221. source: "./media/characters/seara/front.svg",
  17222. extra: 1,
  17223. bottom: 0.05
  17224. }
  17225. },
  17226. },
  17227. [
  17228. {
  17229. name: "Normal",
  17230. height: math.unit(5 + 11 / 12, "feet"),
  17231. default: true
  17232. },
  17233. ]
  17234. ))
  17235. characterMakers.push(() => makeCharacter(
  17236. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17237. {
  17238. front: {
  17239. height: math.unit(16 + 5 / 12, "feet"),
  17240. weight: math.unit(524, "lb"),
  17241. name: "Front",
  17242. image: {
  17243. source: "./media/characters/caspian-lugia/front.svg",
  17244. extra: 1,
  17245. bottom: 0.04
  17246. }
  17247. },
  17248. },
  17249. [
  17250. {
  17251. name: "Normal",
  17252. height: math.unit(16 + 5 / 12, "feet"),
  17253. default: true
  17254. },
  17255. ]
  17256. ))
  17257. characterMakers.push(() => makeCharacter(
  17258. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17259. {
  17260. front: {
  17261. height: math.unit(5 + 7 / 12, "feet"),
  17262. weight: math.unit(170, "lb"),
  17263. name: "Front",
  17264. image: {
  17265. source: "./media/characters/mika/front.svg",
  17266. extra: 1,
  17267. bottom: 0.016
  17268. }
  17269. },
  17270. },
  17271. [
  17272. {
  17273. name: "Normal",
  17274. height: math.unit(5 + 7 / 12, "feet"),
  17275. default: true
  17276. },
  17277. ]
  17278. ))
  17279. characterMakers.push(() => makeCharacter(
  17280. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17281. {
  17282. front: {
  17283. height: math.unit(6 + 2 / 12, "feet"),
  17284. weight: math.unit(268, "lb"),
  17285. name: "Front",
  17286. image: {
  17287. source: "./media/characters/sol/front.svg",
  17288. extra: 247 / 231,
  17289. bottom: 0.05
  17290. }
  17291. },
  17292. },
  17293. [
  17294. {
  17295. name: "Normal",
  17296. height: math.unit(6 + 2 / 12, "feet"),
  17297. default: true
  17298. },
  17299. ]
  17300. ))
  17301. characterMakers.push(() => makeCharacter(
  17302. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17303. {
  17304. buizel: {
  17305. height: math.unit(2 + 5 / 12, "feet"),
  17306. weight: math.unit(87, "lb"),
  17307. name: "Front",
  17308. image: {
  17309. source: "./media/characters/umiko/buizel.svg",
  17310. extra: 172 / 157,
  17311. bottom: 0.01
  17312. },
  17313. form: "buizel",
  17314. default: true
  17315. },
  17316. floatzel: {
  17317. height: math.unit(5 + 9 / 12, "feet"),
  17318. weight: math.unit(250, "lb"),
  17319. name: "Front",
  17320. image: {
  17321. source: "./media/characters/umiko/floatzel.svg",
  17322. extra: 1076/1006,
  17323. bottom: 15/1091
  17324. },
  17325. form: "floatzel",
  17326. default: true
  17327. },
  17328. },
  17329. [
  17330. {
  17331. name: "Normal",
  17332. height: math.unit(2 + 5 / 12, "feet"),
  17333. form: "buizel",
  17334. default: true
  17335. },
  17336. {
  17337. name: "Normal",
  17338. height: math.unit(5 + 9 / 12, "feet"),
  17339. form: "floatzel",
  17340. default: true
  17341. },
  17342. ],
  17343. {
  17344. "buizel": {
  17345. name: "Buizel"
  17346. },
  17347. "floatzel": {
  17348. name: "Floatzel",
  17349. default: true
  17350. }
  17351. }
  17352. ))
  17353. characterMakers.push(() => makeCharacter(
  17354. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17355. {
  17356. front: {
  17357. height: math.unit(6 + 2 / 12, "feet"),
  17358. weight: math.unit(146, "lb"),
  17359. name: "Front",
  17360. image: {
  17361. source: "./media/characters/iliac/front.svg",
  17362. extra: 389 / 365,
  17363. bottom: 0.035
  17364. }
  17365. },
  17366. },
  17367. [
  17368. {
  17369. name: "Normal",
  17370. height: math.unit(6 + 2 / 12, "feet"),
  17371. default: true
  17372. },
  17373. ]
  17374. ))
  17375. characterMakers.push(() => makeCharacter(
  17376. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17377. {
  17378. front: {
  17379. height: math.unit(6, "feet"),
  17380. weight: math.unit(170, "lb"),
  17381. name: "Front",
  17382. image: {
  17383. source: "./media/characters/topaz/front.svg",
  17384. extra: 317 / 303,
  17385. bottom: 0.055
  17386. }
  17387. },
  17388. },
  17389. [
  17390. {
  17391. name: "Normal",
  17392. height: math.unit(6, "feet"),
  17393. default: true
  17394. },
  17395. ]
  17396. ))
  17397. characterMakers.push(() => makeCharacter(
  17398. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17399. {
  17400. front: {
  17401. height: math.unit(5 + 11 / 12, "feet"),
  17402. weight: math.unit(144, "lb"),
  17403. name: "Front",
  17404. image: {
  17405. source: "./media/characters/gabriel/front.svg",
  17406. extra: 285 / 262,
  17407. bottom: 0.004
  17408. }
  17409. },
  17410. },
  17411. [
  17412. {
  17413. name: "Normal",
  17414. height: math.unit(5 + 11 / 12, "feet"),
  17415. default: true
  17416. },
  17417. ]
  17418. ))
  17419. characterMakers.push(() => makeCharacter(
  17420. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17421. {
  17422. side: {
  17423. height: math.unit(6 + 5 / 12, "feet"),
  17424. weight: math.unit(300, "lb"),
  17425. name: "Side",
  17426. image: {
  17427. source: "./media/characters/tempest-suicune/side.svg",
  17428. extra: 195 / 154,
  17429. bottom: 0.04
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(6 + 5 / 12, "feet"),
  17437. default: true
  17438. },
  17439. ]
  17440. ))
  17441. characterMakers.push(() => makeCharacter(
  17442. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17443. {
  17444. front: {
  17445. height: math.unit(7 + 2 / 12, "feet"),
  17446. weight: math.unit(322, "lb"),
  17447. name: "Front",
  17448. image: {
  17449. source: "./media/characters/vulcan/front.svg",
  17450. extra: 154 / 147,
  17451. bottom: 0.04
  17452. }
  17453. },
  17454. },
  17455. [
  17456. {
  17457. name: "Normal",
  17458. height: math.unit(7 + 2 / 12, "feet"),
  17459. default: true
  17460. },
  17461. ]
  17462. ))
  17463. characterMakers.push(() => makeCharacter(
  17464. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17465. {
  17466. front: {
  17467. height: math.unit(5 + 10 / 12, "feet"),
  17468. weight: math.unit(264, "lb"),
  17469. name: "Front",
  17470. image: {
  17471. source: "./media/characters/gault/front.svg",
  17472. extra: 161 / 140,
  17473. bottom: 0.028
  17474. }
  17475. },
  17476. },
  17477. [
  17478. {
  17479. name: "Normal",
  17480. height: math.unit(5 + 10 / 12, "feet"),
  17481. default: true
  17482. },
  17483. ]
  17484. ))
  17485. characterMakers.push(() => makeCharacter(
  17486. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17487. {
  17488. front: {
  17489. height: math.unit(6, "feet"),
  17490. weight: math.unit(150, "lb"),
  17491. name: "Front",
  17492. image: {
  17493. source: "./media/characters/shard/front.svg",
  17494. extra: 273 / 238,
  17495. bottom: 0.02
  17496. }
  17497. },
  17498. },
  17499. [
  17500. {
  17501. name: "Normal",
  17502. height: math.unit(3 + 6 / 12, "feet"),
  17503. default: true
  17504. },
  17505. ]
  17506. ))
  17507. characterMakers.push(() => makeCharacter(
  17508. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17509. {
  17510. front: {
  17511. height: math.unit(5 + 11 / 12, "feet"),
  17512. weight: math.unit(146, "lb"),
  17513. name: "Front",
  17514. image: {
  17515. source: "./media/characters/ashe/front.svg",
  17516. extra: 400 / 373,
  17517. bottom: 0.01
  17518. }
  17519. },
  17520. },
  17521. [
  17522. {
  17523. name: "Normal",
  17524. height: math.unit(5 + 11 / 12, "feet"),
  17525. default: true
  17526. },
  17527. ]
  17528. ))
  17529. characterMakers.push(() => makeCharacter(
  17530. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17531. {
  17532. front: {
  17533. height: math.unit(5 + 5 / 12, "feet"),
  17534. weight: math.unit(135, "lb"),
  17535. name: "Front",
  17536. image: {
  17537. source: "./media/characters/beatrix/front.svg",
  17538. extra: 392 / 379,
  17539. bottom: 0.01
  17540. }
  17541. },
  17542. },
  17543. [
  17544. {
  17545. name: "Normal",
  17546. height: math.unit(6, "feet"),
  17547. default: true
  17548. },
  17549. ]
  17550. ))
  17551. characterMakers.push(() => makeCharacter(
  17552. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17553. {
  17554. front: {
  17555. height: math.unit(6 + 2/12, "feet"),
  17556. weight: math.unit(135, "lb"),
  17557. name: "Front",
  17558. image: {
  17559. source: "./media/characters/ignatius/front.svg",
  17560. extra: 1380/1259,
  17561. bottom: 27/1407
  17562. }
  17563. },
  17564. },
  17565. [
  17566. {
  17567. name: "Normal",
  17568. height: math.unit(6 + 2/12, "feet"),
  17569. default: true
  17570. },
  17571. ]
  17572. ))
  17573. characterMakers.push(() => makeCharacter(
  17574. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17575. {
  17576. front: {
  17577. height: math.unit(6 + 2 / 12, "feet"),
  17578. weight: math.unit(138, "lb"),
  17579. name: "Front",
  17580. image: {
  17581. source: "./media/characters/mei-li/front.svg",
  17582. extra: 237 / 229,
  17583. bottom: 0.03
  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: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17597. {
  17598. front: {
  17599. height: math.unit(2 + 4 / 12, "feet"),
  17600. weight: math.unit(62, "lb"),
  17601. name: "Front",
  17602. image: {
  17603. source: "./media/characters/puru/front.svg",
  17604. extra: 206 / 149,
  17605. bottom: 0.06
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(2 + 4 / 12, "feet"),
  17613. default: true
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17619. {
  17620. anthro: {
  17621. height: math.unit(5 + 8/12, "feet"),
  17622. weight: math.unit(200, "lb"),
  17623. energyNeed: math.unit(2000, "kcal"),
  17624. name: "Anthro",
  17625. image: {
  17626. source: "./media/characters/kee/anthro.svg",
  17627. extra: 3251/3184,
  17628. bottom: 250/3501
  17629. }
  17630. },
  17631. taur: {
  17632. height: math.unit(11, "feet"),
  17633. weight: math.unit(500, "lb"),
  17634. energyNeed: math.unit(5000, "kcal"),
  17635. name: "Taur",
  17636. image: {
  17637. source: "./media/characters/kee/taur.svg",
  17638. extra: 1362/1320,
  17639. bottom: 83/1445
  17640. }
  17641. },
  17642. },
  17643. [
  17644. {
  17645. name: "Normal",
  17646. height: math.unit(5 + 8/12, "feet"),
  17647. default: true
  17648. },
  17649. {
  17650. name: "Macro",
  17651. height: math.unit(35, "feet")
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17657. {
  17658. anthro: {
  17659. height: math.unit(7, "feet"),
  17660. weight: math.unit(190, "lb"),
  17661. name: "Anthro",
  17662. image: {
  17663. source: "./media/characters/cobalt-dracha/anthro.svg",
  17664. extra: 231 / 225,
  17665. bottom: 0.04
  17666. }
  17667. },
  17668. feral: {
  17669. height: math.unit(9 + 7 / 12, "feet"),
  17670. weight: math.unit(294, "lb"),
  17671. name: "Feral",
  17672. image: {
  17673. source: "./media/characters/cobalt-dracha/feral.svg",
  17674. extra: 692 / 633,
  17675. bottom: 0.05
  17676. }
  17677. },
  17678. },
  17679. [
  17680. {
  17681. name: "Normal",
  17682. height: math.unit(7, "feet"),
  17683. default: true
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17689. {
  17690. fallen: {
  17691. height: math.unit(11 + 8 / 12, "feet"),
  17692. weight: math.unit(485, "lb"),
  17693. name: "Java (Fallen)",
  17694. rename: true,
  17695. image: {
  17696. source: "./media/characters/java/fallen.svg",
  17697. extra: 226 / 208,
  17698. bottom: 0.005
  17699. }
  17700. },
  17701. godkin: {
  17702. height: math.unit(10 + 6 / 12, "feet"),
  17703. weight: math.unit(328, "lb"),
  17704. name: "Java (Godkin)",
  17705. rename: true,
  17706. image: {
  17707. source: "./media/characters/java/godkin.svg",
  17708. extra: 1104/1068,
  17709. bottom: 36/1140
  17710. }
  17711. },
  17712. },
  17713. [
  17714. {
  17715. name: "Normal",
  17716. height: math.unit(11 + 8 / 12, "feet"),
  17717. default: true
  17718. },
  17719. ]
  17720. ))
  17721. characterMakers.push(() => makeCharacter(
  17722. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17723. {
  17724. front: {
  17725. height: math.unit(5 + 9 / 12, "feet"),
  17726. weight: math.unit(170, "lb"),
  17727. name: "Front",
  17728. image: {
  17729. source: "./media/characters/purna/front.svg",
  17730. extra: 239 / 229,
  17731. bottom: 0.01
  17732. }
  17733. },
  17734. },
  17735. [
  17736. {
  17737. name: "Normal",
  17738. height: math.unit(5 + 9 / 12, "feet"),
  17739. default: true
  17740. },
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17745. {
  17746. front: {
  17747. height: math.unit(5 + 9 / 12, "feet"),
  17748. weight: math.unit(142, "lb"),
  17749. name: "Front",
  17750. image: {
  17751. source: "./media/characters/kuva/front.svg",
  17752. extra: 281 / 271,
  17753. bottom: 0.006
  17754. }
  17755. },
  17756. },
  17757. [
  17758. {
  17759. name: "Normal",
  17760. height: math.unit(5 + 9 / 12, "feet"),
  17761. default: true
  17762. },
  17763. ]
  17764. ))
  17765. characterMakers.push(() => makeCharacter(
  17766. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17767. {
  17768. anthro: {
  17769. height: math.unit(9 + 2 / 12, "feet"),
  17770. weight: math.unit(270, "lb"),
  17771. name: "Anthro",
  17772. image: {
  17773. source: "./media/characters/embra/anthro.svg",
  17774. extra: 200 / 187,
  17775. bottom: 0.02
  17776. }
  17777. },
  17778. feral: {
  17779. height: math.unit(18 + 8 / 12, "feet"),
  17780. weight: math.unit(576, "lb"),
  17781. name: "Feral",
  17782. image: {
  17783. source: "./media/characters/embra/feral.svg",
  17784. extra: 152 / 137,
  17785. bottom: 0.037
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Normal",
  17792. height: math.unit(9 + 2 / 12, "feet"),
  17793. default: true
  17794. },
  17795. ]
  17796. ))
  17797. characterMakers.push(() => makeCharacter(
  17798. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17799. {
  17800. anthro: {
  17801. height: math.unit(10 + 9 / 12, "feet"),
  17802. weight: math.unit(224, "lb"),
  17803. name: "Anthro",
  17804. image: {
  17805. source: "./media/characters/grottos/anthro.svg",
  17806. extra: 350 / 332,
  17807. bottom: 0.045
  17808. }
  17809. },
  17810. feral: {
  17811. height: math.unit(20 + 7 / 12, "feet"),
  17812. weight: math.unit(629, "lb"),
  17813. name: "Feral",
  17814. image: {
  17815. source: "./media/characters/grottos/feral.svg",
  17816. extra: 207 / 190,
  17817. bottom: 0.05
  17818. }
  17819. },
  17820. },
  17821. [
  17822. {
  17823. name: "Normal",
  17824. height: math.unit(10 + 9 / 12, "feet"),
  17825. default: true
  17826. },
  17827. ]
  17828. ))
  17829. characterMakers.push(() => makeCharacter(
  17830. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17831. {
  17832. anthro: {
  17833. height: math.unit(9 + 6 / 12, "feet"),
  17834. weight: math.unit(298, "lb"),
  17835. name: "Anthro",
  17836. image: {
  17837. source: "./media/characters/frifna/anthro.svg",
  17838. extra: 282 / 269,
  17839. bottom: 0.015
  17840. }
  17841. },
  17842. feral: {
  17843. height: math.unit(16 + 2 / 12, "feet"),
  17844. weight: math.unit(624, "lb"),
  17845. name: "Feral",
  17846. image: {
  17847. source: "./media/characters/frifna/feral.svg"
  17848. }
  17849. },
  17850. },
  17851. [
  17852. {
  17853. name: "Normal",
  17854. height: math.unit(9 + 6 / 12, "feet"),
  17855. default: true
  17856. },
  17857. ]
  17858. ))
  17859. characterMakers.push(() => makeCharacter(
  17860. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17861. {
  17862. front: {
  17863. height: math.unit(6 + 2 / 12, "feet"),
  17864. weight: math.unit(168, "lb"),
  17865. name: "Front",
  17866. image: {
  17867. source: "./media/characters/elise/front.svg",
  17868. extra: 276 / 271
  17869. }
  17870. },
  17871. },
  17872. [
  17873. {
  17874. name: "Normal",
  17875. height: math.unit(6 + 2 / 12, "feet"),
  17876. default: true
  17877. },
  17878. ]
  17879. ))
  17880. characterMakers.push(() => makeCharacter(
  17881. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17882. {
  17883. front: {
  17884. height: math.unit(5 + 10 / 12, "feet"),
  17885. weight: math.unit(210, "lb"),
  17886. name: "Front",
  17887. image: {
  17888. source: "./media/characters/glade/front.svg",
  17889. extra: 258 / 247,
  17890. bottom: 0.008
  17891. }
  17892. },
  17893. },
  17894. [
  17895. {
  17896. name: "Normal",
  17897. height: math.unit(5 + 10 / 12, "feet"),
  17898. default: true
  17899. },
  17900. ]
  17901. ))
  17902. characterMakers.push(() => makeCharacter(
  17903. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17904. {
  17905. front: {
  17906. height: math.unit(5 + 10 / 12, "feet"),
  17907. weight: math.unit(129, "lb"),
  17908. name: "Front",
  17909. image: {
  17910. source: "./media/characters/rina/front.svg",
  17911. extra: 266 / 255,
  17912. bottom: 0.005
  17913. }
  17914. },
  17915. },
  17916. [
  17917. {
  17918. name: "Normal",
  17919. height: math.unit(5 + 10 / 12, "feet"),
  17920. default: true
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17926. {
  17927. front: {
  17928. height: math.unit(6 + 1 / 12, "feet"),
  17929. weight: math.unit(192, "lb"),
  17930. name: "Front",
  17931. image: {
  17932. source: "./media/characters/veronica/front.svg",
  17933. extra: 319 / 309,
  17934. bottom: 0.005
  17935. }
  17936. },
  17937. },
  17938. [
  17939. {
  17940. name: "Normal",
  17941. height: math.unit(6 + 1 / 12, "feet"),
  17942. default: true
  17943. },
  17944. ]
  17945. ))
  17946. characterMakers.push(() => makeCharacter(
  17947. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17948. {
  17949. front: {
  17950. height: math.unit(9 + 3 / 12, "feet"),
  17951. weight: math.unit(1100, "lb"),
  17952. name: "Front",
  17953. image: {
  17954. source: "./media/characters/braxton/front.svg",
  17955. extra: 1057 / 984,
  17956. bottom: 0.05
  17957. }
  17958. },
  17959. },
  17960. [
  17961. {
  17962. name: "Normal",
  17963. height: math.unit(9 + 3 / 12, "feet")
  17964. },
  17965. {
  17966. name: "Giant",
  17967. height: math.unit(300, "feet"),
  17968. default: true
  17969. },
  17970. {
  17971. name: "Macro",
  17972. height: math.unit(700, "feet")
  17973. },
  17974. {
  17975. name: "Megamacro",
  17976. height: math.unit(6000, "feet")
  17977. },
  17978. ]
  17979. ))
  17980. characterMakers.push(() => makeCharacter(
  17981. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17982. {
  17983. front: {
  17984. height: math.unit(6 + 7 / 12, "feet"),
  17985. weight: math.unit(150, "lb"),
  17986. name: "Front",
  17987. image: {
  17988. source: "./media/characters/blue-feyonics/front.svg",
  17989. extra: 1403 / 1306,
  17990. bottom: 0.047
  17991. }
  17992. },
  17993. },
  17994. [
  17995. {
  17996. name: "Normal",
  17997. height: math.unit(6 + 7 / 12, "feet"),
  17998. default: true
  17999. },
  18000. ]
  18001. ))
  18002. characterMakers.push(() => makeCharacter(
  18003. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18004. {
  18005. front: {
  18006. height: math.unit(1.8, "meters"),
  18007. weight: math.unit(60, "kg"),
  18008. name: "Front",
  18009. image: {
  18010. source: "./media/characters/maxwell/front.svg",
  18011. extra: 2060 / 1873
  18012. }
  18013. },
  18014. },
  18015. [
  18016. {
  18017. name: "Micro",
  18018. height: math.unit(1, "mm")
  18019. },
  18020. {
  18021. name: "Normal",
  18022. height: math.unit(1.8, "meter"),
  18023. default: true
  18024. },
  18025. {
  18026. name: "Macro",
  18027. height: math.unit(30, "meters")
  18028. },
  18029. {
  18030. name: "Megamacro",
  18031. height: math.unit(10, "km")
  18032. },
  18033. ]
  18034. ))
  18035. characterMakers.push(() => makeCharacter(
  18036. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18037. {
  18038. front: {
  18039. height: math.unit(6, "feet"),
  18040. weight: math.unit(150, "lb"),
  18041. name: "Front",
  18042. image: {
  18043. source: "./media/characters/jack/front.svg",
  18044. extra: 1754 / 1640,
  18045. bottom: 0.01
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Normal",
  18052. height: math.unit(80000, "feet"),
  18053. default: true
  18054. },
  18055. {
  18056. name: "Max size",
  18057. height: math.unit(10, "lightyears")
  18058. },
  18059. ]
  18060. ))
  18061. characterMakers.push(() => makeCharacter(
  18062. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18063. {
  18064. urban: {
  18065. height: math.unit(5, "feet"),
  18066. weight: math.unit(240, "lb"),
  18067. name: "Urban",
  18068. image: {
  18069. source: "./media/characters/cafat/urban.svg",
  18070. extra: 1223/1126,
  18071. bottom: 205/1428
  18072. }
  18073. },
  18074. summer: {
  18075. height: math.unit(5, "feet"),
  18076. weight: math.unit(240, "lb"),
  18077. name: "Summer",
  18078. image: {
  18079. source: "./media/characters/cafat/summer.svg",
  18080. extra: 1223/1126,
  18081. bottom: 205/1428
  18082. }
  18083. },
  18084. winter: {
  18085. height: math.unit(5, "feet"),
  18086. weight: math.unit(240, "lb"),
  18087. name: "Winter",
  18088. image: {
  18089. source: "./media/characters/cafat/winter.svg",
  18090. extra: 1223/1126,
  18091. bottom: 205/1428
  18092. }
  18093. },
  18094. lingerie: {
  18095. height: math.unit(5, "feet"),
  18096. weight: math.unit(240, "lb"),
  18097. name: "Lingerie",
  18098. image: {
  18099. source: "./media/characters/cafat/lingerie.svg",
  18100. extra: 1223/1126,
  18101. bottom: 205/1428
  18102. }
  18103. },
  18104. upright: {
  18105. height: math.unit(6.3, "feet"),
  18106. weight: math.unit(240, "lb"),
  18107. name: "Upright",
  18108. image: {
  18109. source: "./media/characters/cafat/upright.svg",
  18110. bottom: 0.01
  18111. }
  18112. },
  18113. uprightFull: {
  18114. height: math.unit(6.3, "feet"),
  18115. weight: math.unit(240, "lb"),
  18116. name: "Upright (Full)",
  18117. image: {
  18118. source: "./media/characters/cafat/upright-full.svg",
  18119. bottom: 0.01
  18120. }
  18121. },
  18122. },
  18123. [
  18124. {
  18125. name: "Small",
  18126. height: math.unit(5, "feet"),
  18127. default: true
  18128. },
  18129. {
  18130. name: "Large",
  18131. height: math.unit(13, "feet")
  18132. },
  18133. ]
  18134. ))
  18135. characterMakers.push(() => makeCharacter(
  18136. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18137. {
  18138. front: {
  18139. height: math.unit(6, "feet"),
  18140. weight: math.unit(150, "lb"),
  18141. name: "Front",
  18142. image: {
  18143. source: "./media/characters/verin-raharra/front.svg",
  18144. extra: 5019 / 4835,
  18145. bottom: 0.023
  18146. }
  18147. },
  18148. },
  18149. [
  18150. {
  18151. name: "Normal",
  18152. height: math.unit(7 + 5 / 12, "feet"),
  18153. default: true
  18154. },
  18155. {
  18156. name: "Upsized",
  18157. height: math.unit(20, "feet")
  18158. },
  18159. ]
  18160. ))
  18161. characterMakers.push(() => makeCharacter(
  18162. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18163. {
  18164. front: {
  18165. height: math.unit(7, "feet"),
  18166. weight: math.unit(230, "lb"),
  18167. name: "Front",
  18168. image: {
  18169. source: "./media/characters/nakata/front.svg",
  18170. extra: 1.005,
  18171. bottom: 0.01
  18172. }
  18173. },
  18174. },
  18175. [
  18176. {
  18177. name: "Normal",
  18178. height: math.unit(7, "feet"),
  18179. default: true
  18180. },
  18181. {
  18182. name: "Big",
  18183. height: math.unit(14, "feet")
  18184. },
  18185. {
  18186. name: "Macro",
  18187. height: math.unit(400, "feet")
  18188. },
  18189. ]
  18190. ))
  18191. characterMakers.push(() => makeCharacter(
  18192. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18193. {
  18194. front: {
  18195. height: math.unit(4.91, "feet"),
  18196. weight: math.unit(100, "lb"),
  18197. name: "Front",
  18198. image: {
  18199. source: "./media/characters/lily/front.svg",
  18200. extra: 1585 / 1415,
  18201. bottom: 0.02
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Normal",
  18208. height: math.unit(4.91, "feet"),
  18209. default: true
  18210. },
  18211. ]
  18212. ))
  18213. characterMakers.push(() => makeCharacter(
  18214. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18215. {
  18216. laying: {
  18217. height: math.unit(4 + 4 / 12, "feet"),
  18218. weight: math.unit(600, "lb"),
  18219. name: "Laying",
  18220. image: {
  18221. source: "./media/characters/sheila/laying.svg",
  18222. extra: 1333 / 1265,
  18223. bottom: 0.16
  18224. }
  18225. },
  18226. },
  18227. [
  18228. {
  18229. name: "Normal",
  18230. height: math.unit(4 + 4 / 12, "feet"),
  18231. default: true
  18232. },
  18233. ]
  18234. ))
  18235. characterMakers.push(() => makeCharacter(
  18236. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18237. {
  18238. front: {
  18239. height: math.unit(6, "feet"),
  18240. weight: math.unit(190, "lb"),
  18241. name: "Front",
  18242. image: {
  18243. source: "./media/characters/sax/front.svg",
  18244. extra: 1187 / 973,
  18245. bottom: 0.042
  18246. }
  18247. },
  18248. },
  18249. [
  18250. {
  18251. name: "Micro",
  18252. height: math.unit(4, "inches"),
  18253. default: true
  18254. },
  18255. ]
  18256. ))
  18257. characterMakers.push(() => makeCharacter(
  18258. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18259. {
  18260. front: {
  18261. height: math.unit(6, "feet"),
  18262. weight: math.unit(150, "lb"),
  18263. name: "Front",
  18264. image: {
  18265. source: "./media/characters/pandora/front.svg",
  18266. extra: 2720 / 2556,
  18267. bottom: 0.015
  18268. }
  18269. },
  18270. back: {
  18271. height: math.unit(6, "feet"),
  18272. weight: math.unit(150, "lb"),
  18273. name: "Back",
  18274. image: {
  18275. source: "./media/characters/pandora/back.svg",
  18276. extra: 2720 / 2556,
  18277. bottom: 0.01
  18278. }
  18279. },
  18280. beans: {
  18281. height: math.unit(6 / 8, "feet"),
  18282. name: "Beans",
  18283. image: {
  18284. source: "./media/characters/pandora/beans.svg"
  18285. }
  18286. },
  18287. collar: {
  18288. height: math.unit(0.31, "feet"),
  18289. name: "Collar",
  18290. image: {
  18291. source: "./media/characters/pandora/collar.svg"
  18292. }
  18293. },
  18294. skirt: {
  18295. height: math.unit(6, "feet"),
  18296. weight: math.unit(150, "lb"),
  18297. name: "Skirt",
  18298. image: {
  18299. source: "./media/characters/pandora/skirt.svg",
  18300. extra: 1622 / 1525,
  18301. bottom: 0.015
  18302. }
  18303. },
  18304. hoodie: {
  18305. height: math.unit(6, "feet"),
  18306. weight: math.unit(150, "lb"),
  18307. name: "Hoodie",
  18308. image: {
  18309. source: "./media/characters/pandora/hoodie.svg",
  18310. extra: 1622 / 1525,
  18311. bottom: 0.015
  18312. }
  18313. },
  18314. casual: {
  18315. height: math.unit(6, "feet"),
  18316. weight: math.unit(150, "lb"),
  18317. name: "Casual",
  18318. image: {
  18319. source: "./media/characters/pandora/casual.svg",
  18320. extra: 1622 / 1525,
  18321. bottom: 0.015
  18322. }
  18323. },
  18324. },
  18325. [
  18326. {
  18327. name: "Normal",
  18328. height: math.unit(6, "feet")
  18329. },
  18330. {
  18331. name: "Big Steppy",
  18332. height: math.unit(1, "km"),
  18333. default: true
  18334. },
  18335. {
  18336. name: "Galactic Steppy",
  18337. height: math.unit(2, "gigameters")
  18338. },
  18339. ]
  18340. ))
  18341. characterMakers.push(() => makeCharacter(
  18342. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18343. {
  18344. side: {
  18345. height: math.unit(10, "feet"),
  18346. weight: math.unit(800, "kg"),
  18347. name: "Side",
  18348. image: {
  18349. source: "./media/characters/venio-darcony/side.svg",
  18350. extra: 1373 / 1003,
  18351. bottom: 0.037
  18352. }
  18353. },
  18354. front: {
  18355. height: math.unit(19, "feet"),
  18356. weight: math.unit(800, "kg"),
  18357. name: "Front",
  18358. image: {
  18359. source: "./media/characters/venio-darcony/front.svg"
  18360. }
  18361. },
  18362. back: {
  18363. height: math.unit(19, "feet"),
  18364. weight: math.unit(800, "kg"),
  18365. name: "Back",
  18366. image: {
  18367. source: "./media/characters/venio-darcony/back.svg"
  18368. }
  18369. },
  18370. sideNsfw: {
  18371. height: math.unit(10, "feet"),
  18372. weight: math.unit(800, "kg"),
  18373. name: "Side (NSFW)",
  18374. image: {
  18375. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18376. extra: 1373 / 1003,
  18377. bottom: 0.037
  18378. }
  18379. },
  18380. frontNsfw: {
  18381. height: math.unit(19, "feet"),
  18382. weight: math.unit(800, "kg"),
  18383. name: "Front (NSFW)",
  18384. image: {
  18385. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18386. }
  18387. },
  18388. backNsfw: {
  18389. height: math.unit(19, "feet"),
  18390. weight: math.unit(800, "kg"),
  18391. name: "Back (NSFW)",
  18392. image: {
  18393. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18394. }
  18395. },
  18396. sideArmored: {
  18397. height: math.unit(10, "feet"),
  18398. weight: math.unit(800, "kg"),
  18399. name: "Side (Armored)",
  18400. image: {
  18401. source: "./media/characters/venio-darcony/side-armored.svg",
  18402. extra: 1373 / 1003,
  18403. bottom: 0.037
  18404. }
  18405. },
  18406. frontArmored: {
  18407. height: math.unit(19, "feet"),
  18408. weight: math.unit(900, "kg"),
  18409. name: "Front (Armored)",
  18410. image: {
  18411. source: "./media/characters/venio-darcony/front-armored.svg"
  18412. }
  18413. },
  18414. backArmored: {
  18415. height: math.unit(19, "feet"),
  18416. weight: math.unit(900, "kg"),
  18417. name: "Back (Armored)",
  18418. image: {
  18419. source: "./media/characters/venio-darcony/back-armored.svg"
  18420. }
  18421. },
  18422. sword: {
  18423. height: math.unit(10, "feet"),
  18424. weight: math.unit(50, "lb"),
  18425. name: "Sword",
  18426. image: {
  18427. source: "./media/characters/venio-darcony/sword.svg"
  18428. }
  18429. },
  18430. },
  18431. [
  18432. {
  18433. name: "Normal",
  18434. height: math.unit(10, "feet")
  18435. },
  18436. {
  18437. name: "Macro",
  18438. height: math.unit(130, "feet"),
  18439. default: true
  18440. },
  18441. {
  18442. name: "Macro+",
  18443. height: math.unit(240, "feet")
  18444. },
  18445. ]
  18446. ))
  18447. characterMakers.push(() => makeCharacter(
  18448. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18449. {
  18450. front: {
  18451. height: math.unit(6, "feet"),
  18452. weight: math.unit(150, "lb"),
  18453. name: "Front",
  18454. image: {
  18455. source: "./media/characters/veski/front.svg",
  18456. extra: 1299 / 1225,
  18457. bottom: 0.04
  18458. }
  18459. },
  18460. back: {
  18461. height: math.unit(6, "feet"),
  18462. weight: math.unit(150, "lb"),
  18463. name: "Back",
  18464. image: {
  18465. source: "./media/characters/veski/back.svg",
  18466. extra: 1299 / 1225,
  18467. bottom: 0.008
  18468. }
  18469. },
  18470. maw: {
  18471. height: math.unit(1.5 * 1.21, "feet"),
  18472. name: "Maw",
  18473. image: {
  18474. source: "./media/characters/veski/maw.svg"
  18475. }
  18476. },
  18477. },
  18478. [
  18479. {
  18480. name: "Macro",
  18481. height: math.unit(2, "km"),
  18482. default: true
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18488. {
  18489. front: {
  18490. height: math.unit(5 + 7 / 12, "feet"),
  18491. name: "Front",
  18492. image: {
  18493. source: "./media/characters/isabelle/front.svg",
  18494. extra: 2130 / 1976,
  18495. bottom: 0.05
  18496. }
  18497. },
  18498. },
  18499. [
  18500. {
  18501. name: "Supermicro",
  18502. height: math.unit(10, "micrometers")
  18503. },
  18504. {
  18505. name: "Micro",
  18506. height: math.unit(1, "inch")
  18507. },
  18508. {
  18509. name: "Tiny",
  18510. height: math.unit(5, "inches")
  18511. },
  18512. {
  18513. name: "Standard",
  18514. height: math.unit(5 + 7 / 12, "inches")
  18515. },
  18516. {
  18517. name: "Macro",
  18518. height: math.unit(80, "meters"),
  18519. default: true
  18520. },
  18521. {
  18522. name: "Megamacro",
  18523. height: math.unit(250, "meters")
  18524. },
  18525. {
  18526. name: "Gigamacro",
  18527. height: math.unit(5, "km")
  18528. },
  18529. {
  18530. name: "Cosmic",
  18531. height: math.unit(2.5e6, "miles")
  18532. },
  18533. ]
  18534. ))
  18535. characterMakers.push(() => makeCharacter(
  18536. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18537. {
  18538. front: {
  18539. height: math.unit(6, "feet"),
  18540. weight: math.unit(150, "lb"),
  18541. name: "Front",
  18542. image: {
  18543. source: "./media/characters/hanzo/front.svg",
  18544. extra: 374 / 344,
  18545. bottom: 0.02
  18546. }
  18547. },
  18548. },
  18549. [
  18550. {
  18551. name: "Normal",
  18552. height: math.unit(8, "feet"),
  18553. default: true
  18554. },
  18555. ]
  18556. ))
  18557. characterMakers.push(() => makeCharacter(
  18558. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18559. {
  18560. front: {
  18561. height: math.unit(7, "feet"),
  18562. weight: math.unit(130, "lb"),
  18563. name: "Front",
  18564. image: {
  18565. source: "./media/characters/anna/front.svg",
  18566. extra: 169 / 145,
  18567. bottom: 0.06
  18568. }
  18569. },
  18570. full: {
  18571. height: math.unit(4.96, "feet"),
  18572. weight: math.unit(220, "lb"),
  18573. name: "Full",
  18574. image: {
  18575. source: "./media/characters/anna/full.svg",
  18576. extra: 138 / 114,
  18577. bottom: 0.15
  18578. }
  18579. },
  18580. tongue: {
  18581. height: math.unit(2.53, "feet"),
  18582. name: "Tongue",
  18583. image: {
  18584. source: "./media/characters/anna/tongue.svg"
  18585. }
  18586. },
  18587. },
  18588. [
  18589. {
  18590. name: "Normal",
  18591. height: math.unit(7, "feet"),
  18592. default: true
  18593. },
  18594. ]
  18595. ))
  18596. characterMakers.push(() => makeCharacter(
  18597. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18598. {
  18599. front: {
  18600. height: math.unit(7, "feet"),
  18601. weight: math.unit(150, "lb"),
  18602. name: "Front",
  18603. image: {
  18604. source: "./media/characters/ian-corvid/front.svg",
  18605. extra: 150 / 142,
  18606. bottom: 0.02
  18607. }
  18608. },
  18609. back: {
  18610. height: math.unit(7, "feet"),
  18611. weight: math.unit(150, "lb"),
  18612. name: "Back",
  18613. image: {
  18614. source: "./media/characters/ian-corvid/back.svg",
  18615. extra: 150 / 143,
  18616. bottom: 0.01
  18617. }
  18618. },
  18619. stomping: {
  18620. height: math.unit(7, "feet"),
  18621. weight: math.unit(150, "lb"),
  18622. name: "Stomping",
  18623. image: {
  18624. source: "./media/characters/ian-corvid/stomping.svg",
  18625. extra: 76 / 72
  18626. }
  18627. },
  18628. sitting: {
  18629. height: math.unit(7 / 1.8, "feet"),
  18630. weight: math.unit(150, "lb"),
  18631. name: "Sitting",
  18632. image: {
  18633. source: "./media/characters/ian-corvid/sitting.svg",
  18634. extra: 1400 / 1269,
  18635. bottom: 0.15
  18636. }
  18637. },
  18638. },
  18639. [
  18640. {
  18641. name: "Tiny Microw",
  18642. height: math.unit(1, "inch")
  18643. },
  18644. {
  18645. name: "Microw",
  18646. height: math.unit(6, "inches")
  18647. },
  18648. {
  18649. name: "Crow",
  18650. height: math.unit(7 + 1 / 12, "feet"),
  18651. default: true
  18652. },
  18653. {
  18654. name: "Macrow",
  18655. height: math.unit(176, "feet")
  18656. },
  18657. ]
  18658. ))
  18659. characterMakers.push(() => makeCharacter(
  18660. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18661. {
  18662. front: {
  18663. height: math.unit(5 + 7 / 12, "feet"),
  18664. weight: math.unit(147, "lb"),
  18665. name: "Front",
  18666. image: {
  18667. source: "./media/characters/natalie-kellon/front.svg",
  18668. extra: 1214 / 1141,
  18669. bottom: 0.02
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Micro",
  18676. height: math.unit(1 / 16, "inch")
  18677. },
  18678. {
  18679. name: "Tiny",
  18680. height: math.unit(4, "inches")
  18681. },
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(5 + 7 / 12, "feet"),
  18685. default: true
  18686. },
  18687. {
  18688. name: "Amazon",
  18689. height: math.unit(12, "feet")
  18690. },
  18691. {
  18692. name: "Giantess",
  18693. height: math.unit(160, "meters")
  18694. },
  18695. {
  18696. name: "Titaness",
  18697. height: math.unit(800, "meters")
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(6, "feet"),
  18706. weight: math.unit(150, "lb"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/alluria/front.svg",
  18710. extra: 806 / 738,
  18711. bottom: 0.01
  18712. }
  18713. },
  18714. side: {
  18715. height: math.unit(6, "feet"),
  18716. weight: math.unit(150, "lb"),
  18717. name: "Side",
  18718. image: {
  18719. source: "./media/characters/alluria/side.svg",
  18720. extra: 800 / 750,
  18721. }
  18722. },
  18723. back: {
  18724. height: math.unit(6, "feet"),
  18725. weight: math.unit(150, "lb"),
  18726. name: "Back",
  18727. image: {
  18728. source: "./media/characters/alluria/back.svg",
  18729. extra: 806 / 738,
  18730. }
  18731. },
  18732. frontMaid: {
  18733. height: math.unit(6, "feet"),
  18734. weight: math.unit(150, "lb"),
  18735. name: "Front (Maid)",
  18736. image: {
  18737. source: "./media/characters/alluria/front-maid.svg",
  18738. extra: 806 / 738,
  18739. bottom: 0.01
  18740. }
  18741. },
  18742. sideMaid: {
  18743. height: math.unit(6, "feet"),
  18744. weight: math.unit(150, "lb"),
  18745. name: "Side (Maid)",
  18746. image: {
  18747. source: "./media/characters/alluria/side-maid.svg",
  18748. extra: 800 / 750,
  18749. bottom: 0.005
  18750. }
  18751. },
  18752. backMaid: {
  18753. height: math.unit(6, "feet"),
  18754. weight: math.unit(150, "lb"),
  18755. name: "Back (Maid)",
  18756. image: {
  18757. source: "./media/characters/alluria/back-maid.svg",
  18758. extra: 806 / 738,
  18759. }
  18760. },
  18761. },
  18762. [
  18763. {
  18764. name: "Micro",
  18765. height: math.unit(6, "inches"),
  18766. default: true
  18767. },
  18768. ]
  18769. ))
  18770. characterMakers.push(() => makeCharacter(
  18771. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18772. {
  18773. front: {
  18774. height: math.unit(6, "feet"),
  18775. weight: math.unit(150, "lb"),
  18776. name: "Front",
  18777. image: {
  18778. source: "./media/characters/kyle/front.svg",
  18779. extra: 1069 / 962,
  18780. bottom: 77.228 / 1727.45
  18781. }
  18782. },
  18783. },
  18784. [
  18785. {
  18786. name: "Macro",
  18787. height: math.unit(150, "feet"),
  18788. default: true
  18789. },
  18790. ]
  18791. ))
  18792. characterMakers.push(() => makeCharacter(
  18793. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18794. {
  18795. front: {
  18796. height: math.unit(6, "feet"),
  18797. weight: math.unit(300, "lb"),
  18798. name: "Front",
  18799. image: {
  18800. source: "./media/characters/duncan/front.svg",
  18801. extra: 1650 / 1482,
  18802. bottom: 0.05
  18803. }
  18804. },
  18805. },
  18806. [
  18807. {
  18808. name: "Macro",
  18809. height: math.unit(100, "feet"),
  18810. default: true
  18811. },
  18812. ]
  18813. ))
  18814. characterMakers.push(() => makeCharacter(
  18815. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18816. {
  18817. front: {
  18818. height: math.unit(5 + 4 / 12, "feet"),
  18819. weight: math.unit(220, "lb"),
  18820. name: "Front",
  18821. image: {
  18822. source: "./media/characters/memory/front.svg",
  18823. extra: 3641 / 3545,
  18824. bottom: 0.03
  18825. }
  18826. },
  18827. back: {
  18828. height: math.unit(5 + 4 / 12, "feet"),
  18829. weight: math.unit(220, "lb"),
  18830. name: "Back",
  18831. image: {
  18832. source: "./media/characters/memory/back.svg",
  18833. extra: 3641 / 3545,
  18834. bottom: 0.025
  18835. }
  18836. },
  18837. frontSkirt: {
  18838. height: math.unit(5 + 4 / 12, "feet"),
  18839. weight: math.unit(220, "lb"),
  18840. name: "Front (Skirt)",
  18841. image: {
  18842. source: "./media/characters/memory/front-skirt.svg",
  18843. extra: 3641 / 3545,
  18844. bottom: 0.03
  18845. }
  18846. },
  18847. frontDress: {
  18848. height: math.unit(5 + 4 / 12, "feet"),
  18849. weight: math.unit(220, "lb"),
  18850. name: "Front (Dress)",
  18851. image: {
  18852. source: "./media/characters/memory/front-dress.svg",
  18853. extra: 3641 / 3545,
  18854. bottom: 0.03
  18855. }
  18856. },
  18857. },
  18858. [
  18859. {
  18860. name: "Micro",
  18861. height: math.unit(6, "inches"),
  18862. default: true
  18863. },
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(5 + 4 / 12, "feet")
  18867. },
  18868. ]
  18869. ))
  18870. characterMakers.push(() => makeCharacter(
  18871. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18872. {
  18873. front: {
  18874. height: math.unit(4 + 11 / 12, "feet"),
  18875. weight: math.unit(100, "lb"),
  18876. name: "Front",
  18877. image: {
  18878. source: "./media/characters/luno/front.svg",
  18879. extra: 1535 / 1487,
  18880. bottom: 0.03
  18881. }
  18882. },
  18883. },
  18884. [
  18885. {
  18886. name: "Micro",
  18887. height: math.unit(3, "inches")
  18888. },
  18889. {
  18890. name: "Normal",
  18891. height: math.unit(4 + 11 / 12, "feet"),
  18892. default: true
  18893. },
  18894. {
  18895. name: "Macro",
  18896. height: math.unit(300, "feet")
  18897. },
  18898. {
  18899. name: "Megamacro",
  18900. height: math.unit(700, "miles")
  18901. },
  18902. ]
  18903. ))
  18904. characterMakers.push(() => makeCharacter(
  18905. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18906. {
  18907. front: {
  18908. height: math.unit(6 + 2 / 12, "feet"),
  18909. weight: math.unit(170, "lb"),
  18910. name: "Front",
  18911. image: {
  18912. source: "./media/characters/jamesy/front.svg",
  18913. extra: 440 / 382,
  18914. bottom: 0.005
  18915. }
  18916. },
  18917. },
  18918. [
  18919. {
  18920. name: "Micro",
  18921. height: math.unit(3, "inches")
  18922. },
  18923. {
  18924. name: "Normal",
  18925. height: math.unit(6 + 2 / 12, "feet"),
  18926. default: true
  18927. },
  18928. {
  18929. name: "Macro",
  18930. height: math.unit(300, "feet")
  18931. },
  18932. {
  18933. name: "Megamacro",
  18934. height: math.unit(700, "miles")
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18940. {
  18941. front: {
  18942. height: math.unit(6, "feet"),
  18943. weight: math.unit(160, "lb"),
  18944. name: "Front",
  18945. image: {
  18946. source: "./media/characters/mark/front.svg",
  18947. extra: 3300 / 3100,
  18948. bottom: 136.42 / 3440.47
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Macro",
  18955. height: math.unit(120, "meters")
  18956. },
  18957. {
  18958. name: "Bigger Macro",
  18959. height: math.unit(350, "meters")
  18960. },
  18961. {
  18962. name: "Megamacro",
  18963. height: math.unit(8, "km"),
  18964. default: true
  18965. },
  18966. {
  18967. name: "Continental",
  18968. height: math.unit(4550, "km")
  18969. },
  18970. {
  18971. name: "Planetary",
  18972. height: math.unit(65000, "km")
  18973. },
  18974. ]
  18975. ))
  18976. characterMakers.push(() => makeCharacter(
  18977. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18978. {
  18979. front: {
  18980. height: math.unit(6, "feet"),
  18981. weight: math.unit(400, "lb"),
  18982. name: "Front",
  18983. image: {
  18984. source: "./media/characters/mac/front.svg",
  18985. extra: 1048 / 987.7,
  18986. bottom: 60 / 1107.6,
  18987. }
  18988. },
  18989. },
  18990. [
  18991. {
  18992. name: "Macro",
  18993. height: math.unit(500, "feet"),
  18994. default: true
  18995. },
  18996. ]
  18997. ))
  18998. characterMakers.push(() => makeCharacter(
  18999. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19000. {
  19001. front: {
  19002. height: math.unit(5 + 2 / 12, "feet"),
  19003. weight: math.unit(190, "lb"),
  19004. name: "Front",
  19005. image: {
  19006. source: "./media/characters/bari/front.svg",
  19007. extra: 3156 / 2880,
  19008. bottom: 0.03
  19009. }
  19010. },
  19011. back: {
  19012. height: math.unit(5 + 2 / 12, "feet"),
  19013. weight: math.unit(190, "lb"),
  19014. name: "Back",
  19015. image: {
  19016. source: "./media/characters/bari/back.svg",
  19017. extra: 3260 / 2834,
  19018. bottom: 0.025
  19019. }
  19020. },
  19021. frontPlush: {
  19022. height: math.unit(5 + 2 / 12, "feet"),
  19023. weight: math.unit(190, "lb"),
  19024. name: "Front (Plush)",
  19025. image: {
  19026. source: "./media/characters/bari/front-plush.svg",
  19027. extra: 1112 / 1061,
  19028. bottom: 0.002
  19029. }
  19030. },
  19031. },
  19032. [
  19033. {
  19034. name: "Micro",
  19035. height: math.unit(3, "inches")
  19036. },
  19037. {
  19038. name: "Normal",
  19039. height: math.unit(5 + 2 / 12, "feet"),
  19040. default: true
  19041. },
  19042. {
  19043. name: "Macro",
  19044. height: math.unit(20, "feet")
  19045. },
  19046. ]
  19047. ))
  19048. characterMakers.push(() => makeCharacter(
  19049. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19050. {
  19051. front: {
  19052. height: math.unit(6 + 1 / 12, "feet"),
  19053. weight: math.unit(275, "lb"),
  19054. name: "Front",
  19055. image: {
  19056. source: "./media/characters/hunter-misha-raven/front.svg"
  19057. }
  19058. },
  19059. },
  19060. [
  19061. {
  19062. name: "Mortal",
  19063. height: math.unit(6 + 1 / 12, "feet")
  19064. },
  19065. {
  19066. name: "Divine",
  19067. height: math.unit(1.12134e34, "parsecs"),
  19068. default: true
  19069. },
  19070. ]
  19071. ))
  19072. characterMakers.push(() => makeCharacter(
  19073. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19074. {
  19075. front: {
  19076. height: math.unit(6 + 3 / 12, "feet"),
  19077. weight: math.unit(220, "lb"),
  19078. name: "Front",
  19079. image: {
  19080. source: "./media/characters/max-calore/front.svg",
  19081. extra: 1700 / 1648,
  19082. bottom: 0.01
  19083. }
  19084. },
  19085. back: {
  19086. height: math.unit(6 + 3 / 12, "feet"),
  19087. weight: math.unit(220, "lb"),
  19088. name: "Back",
  19089. image: {
  19090. source: "./media/characters/max-calore/back.svg",
  19091. extra: 1700 / 1648,
  19092. bottom: 0.01
  19093. }
  19094. },
  19095. },
  19096. [
  19097. {
  19098. name: "Normal",
  19099. height: math.unit(6 + 3 / 12, "feet"),
  19100. default: true
  19101. },
  19102. ]
  19103. ))
  19104. characterMakers.push(() => makeCharacter(
  19105. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19106. {
  19107. side: {
  19108. height: math.unit(2 + 8 / 12, "feet"),
  19109. weight: math.unit(99, "lb"),
  19110. name: "Side",
  19111. image: {
  19112. source: "./media/characters/aspen/side.svg",
  19113. extra: 152 / 138,
  19114. bottom: 0.032
  19115. }
  19116. },
  19117. },
  19118. [
  19119. {
  19120. name: "Normal",
  19121. height: math.unit(2 + 8 / 12, "feet"),
  19122. default: true
  19123. },
  19124. ]
  19125. ))
  19126. characterMakers.push(() => makeCharacter(
  19127. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19128. {
  19129. side: {
  19130. height: math.unit(3 + 2 / 12, "feet"),
  19131. weight: math.unit(224, "lb"),
  19132. name: "Side",
  19133. image: {
  19134. source: "./media/characters/sheila-feral-wolf/side.svg",
  19135. extra: 179 / 166,
  19136. bottom: 0.03
  19137. }
  19138. },
  19139. },
  19140. [
  19141. {
  19142. name: "Normal",
  19143. height: math.unit(3 + 2 / 12, "feet"),
  19144. default: true
  19145. },
  19146. ]
  19147. ))
  19148. characterMakers.push(() => makeCharacter(
  19149. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19150. {
  19151. side: {
  19152. height: math.unit(1 + 9 / 12, "feet"),
  19153. weight: math.unit(38, "lb"),
  19154. name: "Side",
  19155. image: {
  19156. source: "./media/characters/michelle/side.svg",
  19157. extra: 147 / 136.7,
  19158. bottom: 0.03
  19159. }
  19160. },
  19161. },
  19162. [
  19163. {
  19164. name: "Normal",
  19165. height: math.unit(1 + 9 / 12, "feet"),
  19166. default: true
  19167. },
  19168. ]
  19169. ))
  19170. characterMakers.push(() => makeCharacter(
  19171. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19172. {
  19173. front: {
  19174. height: math.unit(1.54, "feet"),
  19175. weight: math.unit(50, "lb"),
  19176. name: "Front",
  19177. image: {
  19178. source: "./media/characters/nino/front.svg"
  19179. }
  19180. },
  19181. },
  19182. [
  19183. {
  19184. name: "Normal",
  19185. height: math.unit(1.54, "feet"),
  19186. default: true
  19187. },
  19188. ]
  19189. ))
  19190. characterMakers.push(() => makeCharacter(
  19191. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19192. {
  19193. front: {
  19194. height: math.unit(1.49, "feet"),
  19195. weight: math.unit(45, "lb"),
  19196. name: "Front",
  19197. image: {
  19198. source: "./media/characters/viola/front.svg"
  19199. }
  19200. },
  19201. },
  19202. [
  19203. {
  19204. name: "Normal",
  19205. height: math.unit(1.49, "feet"),
  19206. default: true
  19207. },
  19208. ]
  19209. ))
  19210. characterMakers.push(() => makeCharacter(
  19211. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19212. {
  19213. front: {
  19214. height: math.unit(6 + 5 / 12, "feet"),
  19215. weight: math.unit(580, "lb"),
  19216. name: "Front",
  19217. image: {
  19218. source: "./media/characters/atlas/front.svg",
  19219. extra: 298.5 / 290,
  19220. bottom: 0.015
  19221. }
  19222. },
  19223. },
  19224. [
  19225. {
  19226. name: "Normal",
  19227. height: math.unit(6 + 5 / 12, "feet"),
  19228. default: true
  19229. },
  19230. ]
  19231. ))
  19232. characterMakers.push(() => makeCharacter(
  19233. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19234. {
  19235. side: {
  19236. height: math.unit(15.6, "inches"),
  19237. weight: math.unit(10, "lb"),
  19238. name: "Side",
  19239. image: {
  19240. source: "./media/characters/davy/side.svg",
  19241. extra: 200 / 170,
  19242. bottom: 0.01
  19243. }
  19244. },
  19245. },
  19246. [
  19247. {
  19248. name: "Normal",
  19249. height: math.unit(15.6, "inches"),
  19250. default: true
  19251. },
  19252. ]
  19253. ))
  19254. characterMakers.push(() => makeCharacter(
  19255. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19256. {
  19257. side: {
  19258. height: math.unit(4 + 8 / 12, "feet"),
  19259. weight: math.unit(166, "lb"),
  19260. name: "Side",
  19261. image: {
  19262. source: "./media/characters/fiona/side.svg",
  19263. extra: 232 / 220,
  19264. bottom: 0.03
  19265. }
  19266. },
  19267. },
  19268. [
  19269. {
  19270. name: "Normal",
  19271. height: math.unit(4 + 8 / 12, "feet"),
  19272. default: true
  19273. },
  19274. ]
  19275. ))
  19276. characterMakers.push(() => makeCharacter(
  19277. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19278. {
  19279. front: {
  19280. height: math.unit(26, "inches"),
  19281. weight: math.unit(35, "lb"),
  19282. name: "Front",
  19283. image: {
  19284. source: "./media/characters/lyla/front.svg",
  19285. bottom: 0.1
  19286. }
  19287. },
  19288. },
  19289. [
  19290. {
  19291. name: "Normal",
  19292. height: math.unit(3, "feet"),
  19293. default: true
  19294. },
  19295. ]
  19296. ))
  19297. characterMakers.push(() => makeCharacter(
  19298. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19299. {
  19300. side: {
  19301. height: math.unit(1.8, "feet"),
  19302. weight: math.unit(44, "lb"),
  19303. name: "Side",
  19304. image: {
  19305. source: "./media/characters/perseus/side.svg",
  19306. bottom: 0.21
  19307. }
  19308. },
  19309. },
  19310. [
  19311. {
  19312. name: "Normal",
  19313. height: math.unit(1.8, "feet"),
  19314. default: true
  19315. },
  19316. ]
  19317. ))
  19318. characterMakers.push(() => makeCharacter(
  19319. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19320. {
  19321. side: {
  19322. height: math.unit(4 + 2 / 12, "feet"),
  19323. weight: math.unit(20, "lb"),
  19324. name: "Side",
  19325. image: {
  19326. source: "./media/characters/remus/side.svg"
  19327. }
  19328. },
  19329. },
  19330. [
  19331. {
  19332. name: "Normal",
  19333. height: math.unit(4 + 2 / 12, "feet"),
  19334. default: true
  19335. },
  19336. ]
  19337. ))
  19338. characterMakers.push(() => makeCharacter(
  19339. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19340. {
  19341. front: {
  19342. height: math.unit(4 + 11 / 12, "feet"),
  19343. weight: math.unit(114, "lb"),
  19344. name: "Front",
  19345. image: {
  19346. source: "./media/characters/raf/front.svg",
  19347. extra: 1504/1339,
  19348. bottom: 26/1530
  19349. }
  19350. },
  19351. side: {
  19352. height: math.unit(4 + 11 / 12, "feet"),
  19353. weight: math.unit(114, "lb"),
  19354. name: "Side",
  19355. image: {
  19356. source: "./media/characters/raf/side.svg",
  19357. extra: 1466/1316,
  19358. bottom: 29/1495
  19359. }
  19360. },
  19361. paw: {
  19362. height: math.unit(1.45, "feet"),
  19363. name: "Paw",
  19364. image: {
  19365. source: "./media/characters/raf/paw.svg"
  19366. },
  19367. extraAttributes: {
  19368. "toeSize": {
  19369. name: "Toe Size",
  19370. power: 2,
  19371. type: "area",
  19372. base: math.unit(0.004, "m^2")
  19373. },
  19374. "padSize": {
  19375. name: "Pad Size",
  19376. power: 2,
  19377. type: "area",
  19378. base: math.unit(0.04, "m^2")
  19379. },
  19380. "footSize": {
  19381. name: "Foot Size",
  19382. power: 2,
  19383. type: "area",
  19384. base: math.unit(0.08, "m^2")
  19385. },
  19386. }
  19387. },
  19388. },
  19389. [
  19390. {
  19391. name: "Micro",
  19392. height: math.unit(2, "inches")
  19393. },
  19394. {
  19395. name: "Normal",
  19396. height: math.unit(4 + 11 / 12, "feet"),
  19397. default: true
  19398. },
  19399. {
  19400. name: "Macro",
  19401. height: math.unit(70, "feet")
  19402. },
  19403. ]
  19404. ))
  19405. characterMakers.push(() => makeCharacter(
  19406. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19407. {
  19408. front: {
  19409. height: math.unit(1.5, "meters"),
  19410. weight: math.unit(68, "kg"),
  19411. name: "Front",
  19412. image: {
  19413. source: "./media/characters/liam-einarr/front.svg",
  19414. extra: 2822 / 2666
  19415. }
  19416. },
  19417. back: {
  19418. height: math.unit(1.5, "meters"),
  19419. weight: math.unit(68, "kg"),
  19420. name: "Back",
  19421. image: {
  19422. source: "./media/characters/liam-einarr/back.svg",
  19423. extra: 2822 / 2666,
  19424. bottom: 0.015
  19425. }
  19426. },
  19427. },
  19428. [
  19429. {
  19430. name: "Normal",
  19431. height: math.unit(1.5, "meters"),
  19432. default: true
  19433. },
  19434. {
  19435. name: "Macro",
  19436. height: math.unit(150, "meters")
  19437. },
  19438. {
  19439. name: "Megamacro",
  19440. height: math.unit(35, "km")
  19441. },
  19442. ]
  19443. ))
  19444. characterMakers.push(() => makeCharacter(
  19445. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19446. {
  19447. front: {
  19448. height: math.unit(6, "feet"),
  19449. weight: math.unit(75, "kg"),
  19450. name: "Front",
  19451. image: {
  19452. source: "./media/characters/linda/front.svg",
  19453. extra: 930 / 874,
  19454. bottom: 0.004
  19455. }
  19456. },
  19457. },
  19458. [
  19459. {
  19460. name: "Normal",
  19461. height: math.unit(6, "feet"),
  19462. default: true
  19463. },
  19464. ]
  19465. ))
  19466. characterMakers.push(() => makeCharacter(
  19467. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19468. {
  19469. front: {
  19470. height: math.unit(6 + 8 / 12, "feet"),
  19471. weight: math.unit(220, "lb"),
  19472. name: "Front",
  19473. image: {
  19474. source: "./media/characters/caylex/front.svg",
  19475. extra: 821 / 772,
  19476. bottom: 0.07
  19477. }
  19478. },
  19479. back: {
  19480. height: math.unit(6 + 8 / 12, "feet"),
  19481. weight: math.unit(220, "lb"),
  19482. name: "Back",
  19483. image: {
  19484. source: "./media/characters/caylex/back.svg",
  19485. extra: 821 / 772,
  19486. bottom: 0.022
  19487. }
  19488. },
  19489. hand: {
  19490. height: math.unit(1.25, "feet"),
  19491. name: "Hand",
  19492. image: {
  19493. source: "./media/characters/caylex/hand.svg"
  19494. }
  19495. },
  19496. foot: {
  19497. height: math.unit(1.6, "feet"),
  19498. name: "Foot",
  19499. image: {
  19500. source: "./media/characters/caylex/foot.svg"
  19501. }
  19502. },
  19503. armored: {
  19504. height: math.unit(6 + 8 / 12, "feet"),
  19505. weight: math.unit(250, "lb"),
  19506. name: "Armored",
  19507. image: {
  19508. source: "./media/characters/caylex/armored.svg",
  19509. extra: 1420 / 1310,
  19510. bottom: 0.045
  19511. }
  19512. },
  19513. },
  19514. [
  19515. {
  19516. name: "Normal",
  19517. height: math.unit(6 + 8 / 12, "feet"),
  19518. default: true
  19519. },
  19520. {
  19521. name: "Normal+",
  19522. height: math.unit(12, "feet")
  19523. },
  19524. ]
  19525. ))
  19526. characterMakers.push(() => makeCharacter(
  19527. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19528. {
  19529. front: {
  19530. height: math.unit(7 + 6 / 12, "feet"),
  19531. weight: math.unit(288, "lb"),
  19532. name: "Front",
  19533. image: {
  19534. source: "./media/characters/alana/front.svg",
  19535. extra: 679 / 653,
  19536. bottom: 22.5 / 701
  19537. }
  19538. },
  19539. },
  19540. [
  19541. {
  19542. name: "Normal",
  19543. height: math.unit(7 + 6 / 12, "feet")
  19544. },
  19545. {
  19546. name: "Large",
  19547. height: math.unit(50, "feet")
  19548. },
  19549. {
  19550. name: "Macro",
  19551. height: math.unit(100, "feet"),
  19552. default: true
  19553. },
  19554. {
  19555. name: "Macro+",
  19556. height: math.unit(200, "feet")
  19557. },
  19558. ]
  19559. ))
  19560. characterMakers.push(() => makeCharacter(
  19561. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19562. {
  19563. front: {
  19564. height: math.unit(6 + 1 / 12, "feet"),
  19565. weight: math.unit(210, "lb"),
  19566. name: "Front",
  19567. image: {
  19568. source: "./media/characters/hasani/front.svg",
  19569. extra: 244 / 232,
  19570. bottom: 0.01
  19571. }
  19572. },
  19573. back: {
  19574. height: math.unit(6 + 1 / 12, "feet"),
  19575. weight: math.unit(210, "lb"),
  19576. name: "Back",
  19577. image: {
  19578. source: "./media/characters/hasani/back.svg",
  19579. extra: 244 / 232,
  19580. bottom: 0.01
  19581. }
  19582. },
  19583. },
  19584. [
  19585. {
  19586. name: "Normal",
  19587. height: math.unit(6 + 1 / 12, "feet")
  19588. },
  19589. {
  19590. name: "Macro",
  19591. height: math.unit(175, "feet"),
  19592. default: true
  19593. },
  19594. ]
  19595. ))
  19596. characterMakers.push(() => makeCharacter(
  19597. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19598. {
  19599. front: {
  19600. height: math.unit(1.82, "meters"),
  19601. weight: math.unit(140, "lb"),
  19602. name: "Front",
  19603. image: {
  19604. source: "./media/characters/nita/front.svg",
  19605. extra: 2473 / 2363,
  19606. bottom: 0.01
  19607. }
  19608. },
  19609. },
  19610. [
  19611. {
  19612. name: "Normal",
  19613. height: math.unit(1.82, "m")
  19614. },
  19615. {
  19616. name: "Macro",
  19617. height: math.unit(300, "m")
  19618. },
  19619. {
  19620. name: "Mistake Canon",
  19621. height: math.unit(0.5, "miles"),
  19622. default: true
  19623. },
  19624. {
  19625. name: "Big Mistake",
  19626. height: math.unit(13, "miles")
  19627. },
  19628. {
  19629. name: "Playing God",
  19630. height: math.unit(2450, "miles")
  19631. },
  19632. ]
  19633. ))
  19634. characterMakers.push(() => makeCharacter(
  19635. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19636. {
  19637. front: {
  19638. height: math.unit(4, "feet"),
  19639. weight: math.unit(120, "lb"),
  19640. name: "Front",
  19641. image: {
  19642. source: "./media/characters/shiriko/front.svg",
  19643. extra: 970/934,
  19644. bottom: 5/975
  19645. }
  19646. },
  19647. },
  19648. [
  19649. {
  19650. name: "Normal",
  19651. height: math.unit(4, "feet"),
  19652. default: true
  19653. },
  19654. ]
  19655. ))
  19656. characterMakers.push(() => makeCharacter(
  19657. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19658. {
  19659. front: {
  19660. height: math.unit(6, "feet"),
  19661. name: "front",
  19662. image: {
  19663. source: "./media/characters/deja/front.svg",
  19664. extra: 926 / 840,
  19665. bottom: 0.07
  19666. }
  19667. },
  19668. },
  19669. [
  19670. {
  19671. name: "Planck Length",
  19672. height: math.unit(1.6e-35, "meters")
  19673. },
  19674. {
  19675. name: "Normal",
  19676. height: math.unit(30.48, "meters"),
  19677. default: true
  19678. },
  19679. {
  19680. name: "Universal",
  19681. height: math.unit(8.8e26, "meters")
  19682. },
  19683. ]
  19684. ))
  19685. characterMakers.push(() => makeCharacter(
  19686. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19687. {
  19688. side: {
  19689. height: math.unit(8, "feet"),
  19690. weight: math.unit(6300, "lb"),
  19691. name: "Side",
  19692. image: {
  19693. source: "./media/characters/anima/side.svg",
  19694. bottom: 0.035
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(8, "feet"),
  19702. default: true
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19708. {
  19709. front: {
  19710. height: math.unit(8, "feet"),
  19711. weight: math.unit(350, "lb"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/bianca/front.svg",
  19715. extra: 234 / 225,
  19716. bottom: 0.03
  19717. }
  19718. },
  19719. },
  19720. [
  19721. {
  19722. name: "Normal",
  19723. height: math.unit(8, "feet"),
  19724. default: true
  19725. },
  19726. ]
  19727. ))
  19728. characterMakers.push(() => makeCharacter(
  19729. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19730. {
  19731. front: {
  19732. height: math.unit(11 + 5/12, "feet"),
  19733. weight: math.unit(1200, "lb"),
  19734. name: "Front",
  19735. image: {
  19736. source: "./media/characters/adinia/front.svg",
  19737. extra: 1767/1641,
  19738. bottom: 44/1811
  19739. },
  19740. extraAttributes: {
  19741. "energyIntake": {
  19742. name: "Energy Intake",
  19743. power: 3,
  19744. type: "energy",
  19745. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19746. },
  19747. }
  19748. },
  19749. back: {
  19750. height: math.unit(11 + 5/12, "feet"),
  19751. weight: math.unit(1200, "lb"),
  19752. name: "Back",
  19753. image: {
  19754. source: "./media/characters/adinia/back.svg",
  19755. extra: 1834/1684,
  19756. bottom: 14/1848
  19757. },
  19758. extraAttributes: {
  19759. "energyIntake": {
  19760. name: "Energy Intake",
  19761. power: 3,
  19762. type: "energy",
  19763. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19764. },
  19765. }
  19766. },
  19767. maw: {
  19768. height: math.unit(3.79, "feet"),
  19769. name: "Maw",
  19770. image: {
  19771. source: "./media/characters/adinia/maw.svg"
  19772. }
  19773. },
  19774. rump: {
  19775. height: math.unit(4.6, "feet"),
  19776. name: "Rump",
  19777. image: {
  19778. source: "./media/characters/adinia/rump.svg"
  19779. }
  19780. },
  19781. },
  19782. [
  19783. {
  19784. name: "Normal",
  19785. height: math.unit(11 + 5 / 12, "feet"),
  19786. default: true
  19787. },
  19788. ]
  19789. ))
  19790. characterMakers.push(() => makeCharacter(
  19791. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19792. {
  19793. front: {
  19794. height: math.unit(3, "meters"),
  19795. weight: math.unit(200, "kg"),
  19796. name: "Front",
  19797. image: {
  19798. source: "./media/characters/lykasa/front.svg",
  19799. extra: 1076 / 976,
  19800. bottom: 0.06
  19801. }
  19802. },
  19803. },
  19804. [
  19805. {
  19806. name: "Normal",
  19807. height: math.unit(3, "meters")
  19808. },
  19809. {
  19810. name: "Kaiju",
  19811. height: math.unit(120, "meters"),
  19812. default: true
  19813. },
  19814. {
  19815. name: "Mega Kaiju",
  19816. height: math.unit(240, "km")
  19817. },
  19818. {
  19819. name: "Giga Kaiju",
  19820. height: math.unit(400, "megameters")
  19821. },
  19822. {
  19823. name: "Tera Kaiju",
  19824. height: math.unit(800, "gigameters")
  19825. },
  19826. {
  19827. name: "Kaiju Dragon Goddess",
  19828. height: math.unit(26, "zettaparsecs")
  19829. },
  19830. ]
  19831. ))
  19832. characterMakers.push(() => makeCharacter(
  19833. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19834. {
  19835. side: {
  19836. height: math.unit(283 / 124 * 6, "feet"),
  19837. weight: math.unit(35000, "lb"),
  19838. name: "Side",
  19839. image: {
  19840. source: "./media/characters/malfaren/side.svg",
  19841. extra: 1310/529,
  19842. bottom: 24/1334
  19843. }
  19844. },
  19845. front: {
  19846. height: math.unit(22.36, "feet"),
  19847. weight: math.unit(35000, "lb"),
  19848. name: "Front",
  19849. image: {
  19850. source: "./media/characters/malfaren/front.svg",
  19851. extra: 1237/1115,
  19852. bottom: 32/1269
  19853. }
  19854. },
  19855. maw: {
  19856. height: math.unit(6.9, "feet"),
  19857. name: "Maw",
  19858. image: {
  19859. source: "./media/characters/malfaren/maw.svg"
  19860. }
  19861. },
  19862. dick: {
  19863. height: math.unit(6.19, "feet"),
  19864. name: "Dick",
  19865. image: {
  19866. source: "./media/characters/malfaren/dick.svg"
  19867. }
  19868. },
  19869. eye: {
  19870. height: math.unit(0.69, "feet"),
  19871. name: "Eye",
  19872. image: {
  19873. source: "./media/characters/malfaren/eye.svg"
  19874. }
  19875. },
  19876. },
  19877. [
  19878. {
  19879. name: "Big",
  19880. height: math.unit(283 / 162 * 6, "feet"),
  19881. },
  19882. {
  19883. name: "Bigger",
  19884. height: math.unit(283 / 124 * 6, "feet")
  19885. },
  19886. {
  19887. name: "Massive",
  19888. height: math.unit(283 / 92 * 6, "feet"),
  19889. default: true
  19890. },
  19891. {
  19892. name: "👀💦",
  19893. height: math.unit(283 / 73 * 6, "feet"),
  19894. },
  19895. ]
  19896. ))
  19897. characterMakers.push(() => makeCharacter(
  19898. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19899. {
  19900. front: {
  19901. height: math.unit(1.7, "m"),
  19902. weight: math.unit(70, "kg"),
  19903. name: "Front",
  19904. image: {
  19905. source: "./media/characters/kernel/front.svg",
  19906. extra: 1960/1821,
  19907. bottom: 17/1977
  19908. }
  19909. },
  19910. },
  19911. [
  19912. {
  19913. name: "Nano",
  19914. height: math.unit(17, "micrometers")
  19915. },
  19916. {
  19917. name: "Micro",
  19918. height: math.unit(1.7, "mm")
  19919. },
  19920. {
  19921. name: "Small",
  19922. height: math.unit(1.7, "cm")
  19923. },
  19924. {
  19925. name: "Normal",
  19926. height: math.unit(1.7, "m"),
  19927. default: true
  19928. },
  19929. ]
  19930. ))
  19931. characterMakers.push(() => makeCharacter(
  19932. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19933. {
  19934. front: {
  19935. height: math.unit(1.75, "meters"),
  19936. weight: math.unit(65, "kg"),
  19937. name: "Front",
  19938. image: {
  19939. source: "./media/characters/jayne-folest/front.svg",
  19940. extra: 2115 / 2007,
  19941. bottom: 0.02
  19942. }
  19943. },
  19944. back: {
  19945. height: math.unit(1.75, "meters"),
  19946. weight: math.unit(65, "kg"),
  19947. name: "Back",
  19948. image: {
  19949. source: "./media/characters/jayne-folest/back.svg",
  19950. extra: 2115 / 2007,
  19951. bottom: 0.005
  19952. }
  19953. },
  19954. frontClothed: {
  19955. height: math.unit(1.75, "meters"),
  19956. weight: math.unit(65, "kg"),
  19957. name: "Front (Clothed)",
  19958. image: {
  19959. source: "./media/characters/jayne-folest/front-clothed.svg",
  19960. extra: 2115 / 2007,
  19961. bottom: 0.035
  19962. }
  19963. },
  19964. hand: {
  19965. height: math.unit(1 / 1.260, "feet"),
  19966. name: "Hand",
  19967. image: {
  19968. source: "./media/characters/jayne-folest/hand.svg"
  19969. }
  19970. },
  19971. foot: {
  19972. height: math.unit(1 / 0.918, "feet"),
  19973. name: "Foot",
  19974. image: {
  19975. source: "./media/characters/jayne-folest/foot.svg"
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Micro",
  19982. height: math.unit(4, "cm")
  19983. },
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(1.75, "meters")
  19987. },
  19988. {
  19989. name: "Macro",
  19990. height: math.unit(47.5, "meters"),
  19991. default: true
  19992. },
  19993. ]
  19994. ))
  19995. characterMakers.push(() => makeCharacter(
  19996. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19997. {
  19998. front: {
  19999. height: math.unit(180, "cm"),
  20000. weight: math.unit(70, "kg"),
  20001. name: "Front",
  20002. image: {
  20003. source: "./media/characters/algier/front.svg",
  20004. extra: 596 / 572,
  20005. bottom: 0.04
  20006. }
  20007. },
  20008. back: {
  20009. height: math.unit(180, "cm"),
  20010. weight: math.unit(70, "kg"),
  20011. name: "Back",
  20012. image: {
  20013. source: "./media/characters/algier/back.svg",
  20014. extra: 596 / 572,
  20015. bottom: 0.025
  20016. }
  20017. },
  20018. frontdressed: {
  20019. height: math.unit(180, "cm"),
  20020. weight: math.unit(150, "kg"),
  20021. name: "Front-dressed",
  20022. image: {
  20023. source: "./media/characters/algier/front-dressed.svg",
  20024. extra: 596 / 572,
  20025. bottom: 0.038
  20026. }
  20027. },
  20028. },
  20029. [
  20030. {
  20031. name: "Micro",
  20032. height: math.unit(5, "cm")
  20033. },
  20034. {
  20035. name: "Normal",
  20036. height: math.unit(180, "cm"),
  20037. default: true
  20038. },
  20039. {
  20040. name: "Macro",
  20041. height: math.unit(64, "m")
  20042. },
  20043. ]
  20044. ))
  20045. characterMakers.push(() => makeCharacter(
  20046. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20047. {
  20048. upright: {
  20049. height: math.unit(7, "feet"),
  20050. weight: math.unit(300, "lb"),
  20051. name: "Upright",
  20052. image: {
  20053. source: "./media/characters/pretzel/upright.svg",
  20054. extra: 534 / 522,
  20055. bottom: 0.065
  20056. }
  20057. },
  20058. sprawling: {
  20059. height: math.unit(3.75, "feet"),
  20060. weight: math.unit(300, "lb"),
  20061. name: "Sprawling",
  20062. image: {
  20063. source: "./media/characters/pretzel/sprawling.svg",
  20064. extra: 314 / 281,
  20065. bottom: 0.1
  20066. }
  20067. },
  20068. tongue: {
  20069. height: math.unit(2, "feet"),
  20070. name: "Tongue",
  20071. image: {
  20072. source: "./media/characters/pretzel/tongue.svg"
  20073. }
  20074. },
  20075. },
  20076. [
  20077. {
  20078. name: "Normal",
  20079. height: math.unit(7, "feet"),
  20080. default: true
  20081. },
  20082. {
  20083. name: "Oversized",
  20084. height: math.unit(15, "feet")
  20085. },
  20086. {
  20087. name: "Huge",
  20088. height: math.unit(30, "feet")
  20089. },
  20090. {
  20091. name: "Macro",
  20092. height: math.unit(250, "feet")
  20093. },
  20094. ]
  20095. ))
  20096. characterMakers.push(() => makeCharacter(
  20097. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20098. {
  20099. sideFront: {
  20100. height: math.unit(5 + 2 / 12, "feet"),
  20101. weight: math.unit(120, "lb"),
  20102. name: "Front Side",
  20103. image: {
  20104. source: "./media/characters/roxi/side-front.svg",
  20105. extra: 2924 / 2717,
  20106. bottom: 0.08
  20107. }
  20108. },
  20109. sideBack: {
  20110. height: math.unit(5 + 2 / 12, "feet"),
  20111. weight: math.unit(120, "lb"),
  20112. name: "Back Side",
  20113. image: {
  20114. source: "./media/characters/roxi/side-back.svg",
  20115. extra: 2904 / 2693,
  20116. bottom: 0.06
  20117. }
  20118. },
  20119. front: {
  20120. height: math.unit(5 + 2 / 12, "feet"),
  20121. weight: math.unit(120, "lb"),
  20122. name: "Front",
  20123. image: {
  20124. source: "./media/characters/roxi/front.svg",
  20125. extra: 2028 / 1907,
  20126. bottom: 0.01
  20127. }
  20128. },
  20129. frontAlt: {
  20130. height: math.unit(5 + 2 / 12, "feet"),
  20131. weight: math.unit(120, "lb"),
  20132. name: "Front (Alt)",
  20133. image: {
  20134. source: "./media/characters/roxi/front-alt.svg",
  20135. extra: 1828 / 1798,
  20136. bottom: 0.01
  20137. }
  20138. },
  20139. sitting: {
  20140. height: math.unit(2.8, "feet"),
  20141. weight: math.unit(120, "lb"),
  20142. name: "Sitting",
  20143. image: {
  20144. source: "./media/characters/roxi/sitting.svg",
  20145. extra: 2660 / 2462,
  20146. bottom: 0.1
  20147. }
  20148. },
  20149. },
  20150. [
  20151. {
  20152. name: "Normal",
  20153. height: math.unit(5 + 2 / 12, "feet"),
  20154. default: true
  20155. },
  20156. ]
  20157. ))
  20158. characterMakers.push(() => makeCharacter(
  20159. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20160. {
  20161. side: {
  20162. height: math.unit(55, "feet"),
  20163. weight: math.unit(153, "tons"),
  20164. name: "Side",
  20165. image: {
  20166. source: "./media/characters/shadow/side.svg",
  20167. extra: 701 / 628,
  20168. bottom: 0.02
  20169. }
  20170. },
  20171. flying: {
  20172. height: math.unit(145, "feet"),
  20173. weight: math.unit(153, "tons"),
  20174. name: "Flying",
  20175. image: {
  20176. source: "./media/characters/shadow/flying.svg"
  20177. }
  20178. },
  20179. },
  20180. [
  20181. {
  20182. name: "Normal",
  20183. height: math.unit(55, "feet"),
  20184. default: true
  20185. },
  20186. ]
  20187. ))
  20188. characterMakers.push(() => makeCharacter(
  20189. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20190. {
  20191. front: {
  20192. height: math.unit(6, "feet"),
  20193. weight: math.unit(200, "lb"),
  20194. name: "Front",
  20195. image: {
  20196. source: "./media/characters/marcie/front.svg",
  20197. extra: 960 / 876,
  20198. bottom: 58 / 1017.87
  20199. }
  20200. },
  20201. },
  20202. [
  20203. {
  20204. name: "Macro",
  20205. height: math.unit(1, "mile"),
  20206. default: true
  20207. },
  20208. ]
  20209. ))
  20210. characterMakers.push(() => makeCharacter(
  20211. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20212. {
  20213. front: {
  20214. height: math.unit(7, "feet"),
  20215. weight: math.unit(200, "lb"),
  20216. name: "Front",
  20217. image: {
  20218. source: "./media/characters/kachina/front.svg",
  20219. extra: 3206/2764,
  20220. bottom: 140/3346
  20221. }
  20222. },
  20223. },
  20224. [
  20225. {
  20226. name: "Normal",
  20227. height: math.unit(7, "feet"),
  20228. default: true
  20229. },
  20230. ]
  20231. ))
  20232. characterMakers.push(() => makeCharacter(
  20233. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20234. {
  20235. looking: {
  20236. height: math.unit(2, "meters"),
  20237. weight: math.unit(300, "kg"),
  20238. name: "Looking",
  20239. image: {
  20240. source: "./media/characters/kash/looking.svg",
  20241. extra: 474 / 344,
  20242. bottom: 0.03
  20243. }
  20244. },
  20245. side: {
  20246. height: math.unit(2, "meters"),
  20247. weight: math.unit(300, "kg"),
  20248. name: "Side",
  20249. image: {
  20250. source: "./media/characters/kash/side.svg",
  20251. extra: 302 / 251,
  20252. bottom: 0.03
  20253. }
  20254. },
  20255. front: {
  20256. height: math.unit(2, "meters"),
  20257. weight: math.unit(300, "kg"),
  20258. name: "Front",
  20259. image: {
  20260. source: "./media/characters/kash/front.svg",
  20261. extra: 495 / 360,
  20262. bottom: 0.015
  20263. }
  20264. },
  20265. },
  20266. [
  20267. {
  20268. name: "Normal",
  20269. height: math.unit(2, "meters"),
  20270. default: true
  20271. },
  20272. {
  20273. name: "Big",
  20274. height: math.unit(3, "meters")
  20275. },
  20276. {
  20277. name: "Large",
  20278. height: math.unit(5, "meters")
  20279. },
  20280. ]
  20281. ))
  20282. characterMakers.push(() => makeCharacter(
  20283. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20284. {
  20285. feeding: {
  20286. height: math.unit(6.7, "feet"),
  20287. weight: math.unit(350, "lb"),
  20288. name: "Feeding",
  20289. image: {
  20290. source: "./media/characters/lalim/feeding.svg",
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Normal",
  20297. height: math.unit(6.7, "feet"),
  20298. default: true
  20299. },
  20300. ]
  20301. ))
  20302. characterMakers.push(() => makeCharacter(
  20303. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20304. {
  20305. front: {
  20306. height: math.unit(9.5, "feet"),
  20307. weight: math.unit(600, "lb"),
  20308. name: "Front",
  20309. image: {
  20310. source: "./media/characters/de'vout/front.svg",
  20311. extra: 1443 / 1328,
  20312. bottom: 0.025
  20313. }
  20314. },
  20315. back: {
  20316. height: math.unit(9.5, "feet"),
  20317. weight: math.unit(600, "lb"),
  20318. name: "Back",
  20319. image: {
  20320. source: "./media/characters/de'vout/back.svg",
  20321. extra: 1443 / 1328
  20322. }
  20323. },
  20324. frontDressed: {
  20325. height: math.unit(9.5, "feet"),
  20326. weight: math.unit(600, "lb"),
  20327. name: "Front (Dressed",
  20328. image: {
  20329. source: "./media/characters/de'vout/front-dressed.svg",
  20330. extra: 1443 / 1328,
  20331. bottom: 0.025
  20332. }
  20333. },
  20334. backDressed: {
  20335. height: math.unit(9.5, "feet"),
  20336. weight: math.unit(600, "lb"),
  20337. name: "Back (Dressed",
  20338. image: {
  20339. source: "./media/characters/de'vout/back-dressed.svg",
  20340. extra: 1443 / 1328
  20341. }
  20342. },
  20343. },
  20344. [
  20345. {
  20346. name: "Normal",
  20347. height: math.unit(9.5, "feet"),
  20348. default: true
  20349. },
  20350. ]
  20351. ))
  20352. characterMakers.push(() => makeCharacter(
  20353. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20354. {
  20355. front: {
  20356. height: math.unit(8, "feet"),
  20357. weight: math.unit(225, "lb"),
  20358. name: "Front",
  20359. image: {
  20360. source: "./media/characters/talana/front.svg",
  20361. extra: 1410 / 1300,
  20362. bottom: 0.015
  20363. }
  20364. },
  20365. frontDressed: {
  20366. height: math.unit(8, "feet"),
  20367. weight: math.unit(225, "lb"),
  20368. name: "Front (Dressed",
  20369. image: {
  20370. source: "./media/characters/talana/front-dressed.svg",
  20371. extra: 1410 / 1300,
  20372. bottom: 0.015
  20373. }
  20374. },
  20375. },
  20376. [
  20377. {
  20378. name: "Normal",
  20379. height: math.unit(8, "feet"),
  20380. default: true
  20381. },
  20382. ]
  20383. ))
  20384. characterMakers.push(() => makeCharacter(
  20385. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20386. {
  20387. side: {
  20388. height: math.unit(7.2, "feet"),
  20389. weight: math.unit(150, "lb"),
  20390. name: "Side",
  20391. image: {
  20392. source: "./media/characters/xeauvok/side.svg",
  20393. extra: 1975 / 1523,
  20394. bottom: 0.07
  20395. }
  20396. },
  20397. },
  20398. [
  20399. {
  20400. name: "Normal",
  20401. height: math.unit(7.2, "feet"),
  20402. default: true
  20403. },
  20404. ]
  20405. ))
  20406. characterMakers.push(() => makeCharacter(
  20407. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20408. {
  20409. side: {
  20410. height: math.unit(4, "meters"),
  20411. weight: math.unit(2200, "kg"),
  20412. name: "Side",
  20413. image: {
  20414. source: "./media/characters/zara/side.svg",
  20415. extra: 765/744,
  20416. bottom: 156/921
  20417. }
  20418. },
  20419. },
  20420. [
  20421. {
  20422. name: "Normal",
  20423. height: math.unit(4, "meters"),
  20424. default: true
  20425. },
  20426. ]
  20427. ))
  20428. characterMakers.push(() => makeCharacter(
  20429. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20430. {
  20431. side: {
  20432. height: math.unit(6, "feet"),
  20433. weight: math.unit(150, "lb"),
  20434. name: "Side",
  20435. image: {
  20436. source: "./media/characters/richard-dragon/side.svg",
  20437. extra: 845 / 340,
  20438. bottom: 0.017
  20439. }
  20440. },
  20441. maw: {
  20442. height: math.unit(2.97, "feet"),
  20443. name: "Maw",
  20444. image: {
  20445. source: "./media/characters/richard-dragon/maw.svg"
  20446. }
  20447. },
  20448. },
  20449. [
  20450. ]
  20451. ))
  20452. characterMakers.push(() => makeCharacter(
  20453. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20454. {
  20455. front: {
  20456. height: math.unit(4, "feet"),
  20457. weight: math.unit(100, "lb"),
  20458. name: "Front",
  20459. image: {
  20460. source: "./media/characters/richard-smeargle/front.svg",
  20461. extra: 2952 / 2820,
  20462. bottom: 0.028
  20463. }
  20464. },
  20465. },
  20466. [
  20467. {
  20468. name: "Normal",
  20469. height: math.unit(4, "feet"),
  20470. default: true
  20471. },
  20472. {
  20473. name: "Dynamax",
  20474. height: math.unit(20, "meters")
  20475. },
  20476. ]
  20477. ))
  20478. characterMakers.push(() => makeCharacter(
  20479. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20480. {
  20481. front: {
  20482. height: math.unit(6, "feet"),
  20483. weight: math.unit(110, "lb"),
  20484. name: "Front",
  20485. image: {
  20486. source: "./media/characters/klay/front.svg",
  20487. extra: 962 / 883,
  20488. bottom: 0.04
  20489. }
  20490. },
  20491. back: {
  20492. height: math.unit(6, "feet"),
  20493. weight: math.unit(110, "lb"),
  20494. name: "Back",
  20495. image: {
  20496. source: "./media/characters/klay/back.svg",
  20497. extra: 962 / 883
  20498. }
  20499. },
  20500. beans: {
  20501. height: math.unit(1.15, "feet"),
  20502. name: "Beans",
  20503. image: {
  20504. source: "./media/characters/klay/beans.svg"
  20505. }
  20506. },
  20507. },
  20508. [
  20509. {
  20510. name: "Micro",
  20511. height: math.unit(6, "inches")
  20512. },
  20513. {
  20514. name: "Mini",
  20515. height: math.unit(3, "feet")
  20516. },
  20517. {
  20518. name: "Normal",
  20519. height: math.unit(6, "feet"),
  20520. default: true
  20521. },
  20522. {
  20523. name: "Big",
  20524. height: math.unit(25, "feet")
  20525. },
  20526. {
  20527. name: "Macro",
  20528. height: math.unit(100, "feet")
  20529. },
  20530. {
  20531. name: "Megamacro",
  20532. height: math.unit(400, "feet")
  20533. },
  20534. ]
  20535. ))
  20536. characterMakers.push(() => makeCharacter(
  20537. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20538. {
  20539. front: {
  20540. height: math.unit(6, "feet"),
  20541. weight: math.unit(160, "lb"),
  20542. name: "Front",
  20543. image: {
  20544. source: "./media/characters/marcus/front.svg",
  20545. extra: 734 / 676,
  20546. bottom: 0.03
  20547. }
  20548. },
  20549. },
  20550. [
  20551. {
  20552. name: "Little",
  20553. height: math.unit(6, "feet")
  20554. },
  20555. {
  20556. name: "Normal",
  20557. height: math.unit(110, "feet"),
  20558. default: true
  20559. },
  20560. {
  20561. name: "Macro",
  20562. height: math.unit(250, "feet")
  20563. },
  20564. {
  20565. name: "Megamacro",
  20566. height: math.unit(1000, "feet")
  20567. },
  20568. ]
  20569. ))
  20570. characterMakers.push(() => makeCharacter(
  20571. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20572. {
  20573. front: {
  20574. height: math.unit(7, "feet"),
  20575. weight: math.unit(275, "lb"),
  20576. name: "Front",
  20577. image: {
  20578. source: "./media/characters/claude-delroute/front.svg",
  20579. extra: 902/827,
  20580. bottom: 26/928
  20581. }
  20582. },
  20583. side: {
  20584. height: math.unit(7, "feet"),
  20585. weight: math.unit(275, "lb"),
  20586. name: "Side",
  20587. image: {
  20588. source: "./media/characters/claude-delroute/side.svg",
  20589. extra: 908/853,
  20590. bottom: 16/924
  20591. }
  20592. },
  20593. back: {
  20594. height: math.unit(7, "feet"),
  20595. weight: math.unit(275, "lb"),
  20596. name: "Back",
  20597. image: {
  20598. source: "./media/characters/claude-delroute/back.svg",
  20599. extra: 911/829,
  20600. bottom: 18/929
  20601. }
  20602. },
  20603. maw: {
  20604. height: math.unit(0.6407, "meters"),
  20605. name: "Maw",
  20606. image: {
  20607. source: "./media/characters/claude-delroute/maw.svg"
  20608. }
  20609. },
  20610. },
  20611. [
  20612. {
  20613. name: "Normal",
  20614. height: math.unit(7, "feet"),
  20615. default: true
  20616. },
  20617. {
  20618. name: "Lorge",
  20619. height: math.unit(20, "feet")
  20620. },
  20621. ]
  20622. ))
  20623. characterMakers.push(() => makeCharacter(
  20624. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20625. {
  20626. front: {
  20627. height: math.unit(8 + 4 / 12, "feet"),
  20628. weight: math.unit(600, "lb"),
  20629. name: "Front",
  20630. image: {
  20631. source: "./media/characters/dragonien/front.svg",
  20632. extra: 100 / 94,
  20633. bottom: 3.3 / 103.3445
  20634. }
  20635. },
  20636. back: {
  20637. height: math.unit(8 + 4 / 12, "feet"),
  20638. weight: math.unit(600, "lb"),
  20639. name: "Back",
  20640. image: {
  20641. source: "./media/characters/dragonien/back.svg",
  20642. extra: 776 / 746,
  20643. bottom: 6.4 / 782.0616
  20644. }
  20645. },
  20646. foot: {
  20647. height: math.unit(1.54, "feet"),
  20648. name: "Foot",
  20649. image: {
  20650. source: "./media/characters/dragonien/foot.svg",
  20651. }
  20652. },
  20653. },
  20654. [
  20655. {
  20656. name: "Normal",
  20657. height: math.unit(8 + 4 / 12, "feet"),
  20658. default: true
  20659. },
  20660. {
  20661. name: "Macro",
  20662. height: math.unit(200, "feet")
  20663. },
  20664. {
  20665. name: "Megamacro",
  20666. height: math.unit(1, "mile")
  20667. },
  20668. {
  20669. name: "Gigamacro",
  20670. height: math.unit(1000, "miles")
  20671. },
  20672. ]
  20673. ))
  20674. characterMakers.push(() => makeCharacter(
  20675. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20676. {
  20677. front: {
  20678. height: math.unit(5 + 2 / 12, "feet"),
  20679. weight: math.unit(110, "lb"),
  20680. name: "Front",
  20681. image: {
  20682. source: "./media/characters/desta/front.svg",
  20683. extra: 767 / 726,
  20684. bottom: 11.7 / 779
  20685. }
  20686. },
  20687. back: {
  20688. height: math.unit(5 + 2 / 12, "feet"),
  20689. weight: math.unit(110, "lb"),
  20690. name: "Back",
  20691. image: {
  20692. source: "./media/characters/desta/back.svg",
  20693. extra: 777 / 728,
  20694. bottom: 6 / 784
  20695. }
  20696. },
  20697. frontAlt: {
  20698. height: math.unit(5 + 2 / 12, "feet"),
  20699. weight: math.unit(110, "lb"),
  20700. name: "Front",
  20701. image: {
  20702. source: "./media/characters/desta/front-alt.svg",
  20703. extra: 1482 / 1417
  20704. }
  20705. },
  20706. side: {
  20707. height: math.unit(5 + 2 / 12, "feet"),
  20708. weight: math.unit(110, "lb"),
  20709. name: "Side",
  20710. image: {
  20711. source: "./media/characters/desta/side.svg",
  20712. extra: 2579 / 2491,
  20713. bottom: 0.053
  20714. }
  20715. },
  20716. },
  20717. [
  20718. {
  20719. name: "Micro",
  20720. height: math.unit(6, "inches")
  20721. },
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(5 + 2 / 12, "feet"),
  20725. default: true
  20726. },
  20727. {
  20728. name: "Macro",
  20729. height: math.unit(62, "feet")
  20730. },
  20731. {
  20732. name: "Megamacro",
  20733. height: math.unit(1800, "feet")
  20734. },
  20735. ]
  20736. ))
  20737. characterMakers.push(() => makeCharacter(
  20738. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20739. {
  20740. front: {
  20741. height: math.unit(10, "feet"),
  20742. weight: math.unit(700, "lb"),
  20743. name: "Front",
  20744. image: {
  20745. source: "./media/characters/storm-alystar/front.svg",
  20746. extra: 2112 / 1898,
  20747. bottom: 0.034
  20748. }
  20749. },
  20750. },
  20751. [
  20752. {
  20753. name: "Micro",
  20754. height: math.unit(3.5, "inches")
  20755. },
  20756. {
  20757. name: "Normal",
  20758. height: math.unit(10, "feet"),
  20759. default: true
  20760. },
  20761. {
  20762. name: "Macro",
  20763. height: math.unit(400, "feet")
  20764. },
  20765. {
  20766. name: "Deific",
  20767. height: math.unit(60, "miles")
  20768. },
  20769. ]
  20770. ))
  20771. characterMakers.push(() => makeCharacter(
  20772. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20773. {
  20774. front: {
  20775. height: math.unit(2.35, "meters"),
  20776. weight: math.unit(119, "kg"),
  20777. name: "Front",
  20778. image: {
  20779. source: "./media/characters/ilia/front.svg",
  20780. extra: 1285 / 1255,
  20781. bottom: 0.06
  20782. }
  20783. },
  20784. },
  20785. [
  20786. {
  20787. name: "Normal",
  20788. height: math.unit(2.35, "meters")
  20789. },
  20790. {
  20791. name: "Macro",
  20792. height: math.unit(140, "meters"),
  20793. default: true
  20794. },
  20795. {
  20796. name: "Megamacro",
  20797. height: math.unit(100, "miles")
  20798. },
  20799. ]
  20800. ))
  20801. characterMakers.push(() => makeCharacter(
  20802. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20803. {
  20804. front: {
  20805. height: math.unit(6 + 5 / 12, "feet"),
  20806. weight: math.unit(190, "lb"),
  20807. name: "Front",
  20808. image: {
  20809. source: "./media/characters/kingdead/front.svg",
  20810. extra: 1228 / 1177
  20811. }
  20812. },
  20813. },
  20814. [
  20815. {
  20816. name: "Micro",
  20817. height: math.unit(7, "inches")
  20818. },
  20819. {
  20820. name: "Normal",
  20821. height: math.unit(6 + 5 / 12, "feet")
  20822. },
  20823. {
  20824. name: "Macro",
  20825. height: math.unit(150, "feet"),
  20826. default: true
  20827. },
  20828. {
  20829. name: "Megamacro",
  20830. height: math.unit(200, "miles")
  20831. },
  20832. ]
  20833. ))
  20834. characterMakers.push(() => makeCharacter(
  20835. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20836. {
  20837. front: {
  20838. height: math.unit(8, "feet"),
  20839. weight: math.unit(600, "lb"),
  20840. name: "Front",
  20841. image: {
  20842. source: "./media/characters/kyrehx/front.svg",
  20843. extra: 1195 / 1095,
  20844. bottom: 0.034
  20845. }
  20846. },
  20847. },
  20848. [
  20849. {
  20850. name: "Micro",
  20851. height: math.unit(2, "inches")
  20852. },
  20853. {
  20854. name: "Normal",
  20855. height: math.unit(8, "feet"),
  20856. default: true
  20857. },
  20858. {
  20859. name: "Macro",
  20860. height: math.unit(255, "feet")
  20861. },
  20862. ]
  20863. ))
  20864. characterMakers.push(() => makeCharacter(
  20865. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20866. {
  20867. front: {
  20868. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20869. weight: math.unit(184, "lb"),
  20870. name: "Front",
  20871. image: {
  20872. source: "./media/characters/xang/front.svg",
  20873. extra: 845 / 755
  20874. }
  20875. },
  20876. },
  20877. [
  20878. {
  20879. name: "Normal",
  20880. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20881. default: true
  20882. },
  20883. {
  20884. name: "Macro",
  20885. height: math.unit(0.935 * 146, "feet")
  20886. },
  20887. {
  20888. name: "Megamacro",
  20889. height: math.unit(0.935 * 3, "miles")
  20890. },
  20891. ]
  20892. ))
  20893. characterMakers.push(() => makeCharacter(
  20894. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20895. {
  20896. frontDressed: {
  20897. height: math.unit(5 + 7 / 12, "feet"),
  20898. weight: math.unit(140, "lb"),
  20899. name: "Front (Dressed)",
  20900. image: {
  20901. source: "./media/characters/doc-weardno/front-dressed.svg",
  20902. extra: 263 / 234
  20903. }
  20904. },
  20905. backDressed: {
  20906. height: math.unit(5 + 7 / 12, "feet"),
  20907. weight: math.unit(140, "lb"),
  20908. name: "Back (Dressed)",
  20909. image: {
  20910. source: "./media/characters/doc-weardno/back-dressed.svg",
  20911. extra: 266 / 238
  20912. }
  20913. },
  20914. front: {
  20915. height: math.unit(5 + 7 / 12, "feet"),
  20916. weight: math.unit(140, "lb"),
  20917. name: "Front",
  20918. image: {
  20919. source: "./media/characters/doc-weardno/front.svg",
  20920. extra: 254 / 233
  20921. }
  20922. },
  20923. },
  20924. [
  20925. {
  20926. name: "Micro",
  20927. height: math.unit(3, "inches")
  20928. },
  20929. {
  20930. name: "Normal",
  20931. height: math.unit(5 + 7 / 12, "feet"),
  20932. default: true
  20933. },
  20934. {
  20935. name: "Macro",
  20936. height: math.unit(25, "feet")
  20937. },
  20938. {
  20939. name: "Megamacro",
  20940. height: math.unit(2, "miles")
  20941. },
  20942. ]
  20943. ))
  20944. characterMakers.push(() => makeCharacter(
  20945. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20946. {
  20947. front: {
  20948. height: math.unit(6 + 2 / 12, "feet"),
  20949. weight: math.unit(153, "lb"),
  20950. name: "Front",
  20951. image: {
  20952. source: "./media/characters/seth-whilst/front.svg",
  20953. bottom: 0.07
  20954. }
  20955. },
  20956. },
  20957. [
  20958. {
  20959. name: "Micro",
  20960. height: math.unit(5, "inches")
  20961. },
  20962. {
  20963. name: "Normal",
  20964. height: math.unit(6 + 2 / 12, "feet"),
  20965. default: true
  20966. },
  20967. ]
  20968. ))
  20969. characterMakers.push(() => makeCharacter(
  20970. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20971. {
  20972. front: {
  20973. height: math.unit(3, "inches"),
  20974. weight: math.unit(8, "grams"),
  20975. name: "Front",
  20976. image: {
  20977. source: "./media/characters/pocket-jabari/front.svg",
  20978. extra: 1024 / 974,
  20979. bottom: 0.039
  20980. }
  20981. },
  20982. },
  20983. [
  20984. {
  20985. name: "Minimicro",
  20986. height: math.unit(8, "mm")
  20987. },
  20988. {
  20989. name: "Micro",
  20990. height: math.unit(3, "inches"),
  20991. default: true
  20992. },
  20993. {
  20994. name: "Normal",
  20995. height: math.unit(3, "feet")
  20996. },
  20997. ]
  20998. ))
  20999. characterMakers.push(() => makeCharacter(
  21000. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21001. {
  21002. frontDressed: {
  21003. height: math.unit(15, "feet"),
  21004. weight: math.unit(3280, "lb"),
  21005. name: "Front (Dressed)",
  21006. image: {
  21007. source: "./media/characters/sapphy/front-dressed.svg",
  21008. extra: 1951/1654,
  21009. bottom: 194/2145
  21010. },
  21011. form: "anthro",
  21012. default: true
  21013. },
  21014. backDressed: {
  21015. height: math.unit(15, "feet"),
  21016. weight: math.unit(3280, "lb"),
  21017. name: "Back (Dressed)",
  21018. image: {
  21019. source: "./media/characters/sapphy/back-dressed.svg",
  21020. extra: 2058/1918,
  21021. bottom: 125/2183
  21022. },
  21023. form: "anthro"
  21024. },
  21025. frontNude: {
  21026. height: math.unit(15, "feet"),
  21027. weight: math.unit(3280, "lb"),
  21028. name: "Front (Nude)",
  21029. image: {
  21030. source: "./media/characters/sapphy/front-nude.svg",
  21031. extra: 1951/1654,
  21032. bottom: 194/2145
  21033. },
  21034. form: "anthro"
  21035. },
  21036. backNude: {
  21037. height: math.unit(15, "feet"),
  21038. weight: math.unit(3280, "lb"),
  21039. name: "Back (Nude)",
  21040. image: {
  21041. source: "./media/characters/sapphy/back-nude.svg",
  21042. extra: 2058/1918,
  21043. bottom: 125/2183
  21044. },
  21045. form: "anthro"
  21046. },
  21047. full: {
  21048. height: math.unit(15, "feet"),
  21049. weight: math.unit(3280, "lb"),
  21050. name: "Full",
  21051. image: {
  21052. source: "./media/characters/sapphy/full.svg",
  21053. extra: 1396/1317,
  21054. bottom: 44/1440
  21055. },
  21056. form: "anthro"
  21057. },
  21058. dick: {
  21059. height: math.unit(3.8, "feet"),
  21060. name: "Dick",
  21061. image: {
  21062. source: "./media/characters/sapphy/dick.svg"
  21063. },
  21064. form: "anthro"
  21065. },
  21066. feral: {
  21067. height: math.unit(35, "feet"),
  21068. weight: math.unit(160, "tons"),
  21069. name: "Feral",
  21070. image: {
  21071. source: "./media/characters/sapphy/feral.svg",
  21072. extra: 1050/573,
  21073. bottom: 60/1110
  21074. },
  21075. form: "feral",
  21076. default: true
  21077. },
  21078. },
  21079. [
  21080. {
  21081. name: "Normal",
  21082. height: math.unit(15, "feet"),
  21083. form: "anthro"
  21084. },
  21085. {
  21086. name: "Casual Macro",
  21087. height: math.unit(120, "feet"),
  21088. form: "anthro"
  21089. },
  21090. {
  21091. name: "Macro",
  21092. height: math.unit(2150, "feet"),
  21093. default: true,
  21094. form: "anthro"
  21095. },
  21096. {
  21097. name: "Megamacro",
  21098. height: math.unit(8, "miles"),
  21099. form: "anthro"
  21100. },
  21101. {
  21102. name: "Galaxy Mom",
  21103. height: math.unit(6, "megalightyears"),
  21104. form: "anthro"
  21105. },
  21106. {
  21107. name: "Normal",
  21108. height: math.unit(35, "feet"),
  21109. form: "feral",
  21110. default: true
  21111. },
  21112. {
  21113. name: "Macro",
  21114. height: math.unit(300, "feet"),
  21115. form: "feral"
  21116. },
  21117. {
  21118. name: "Galaxy Mom",
  21119. height: math.unit(10, "megalightyears"),
  21120. form: "feral"
  21121. },
  21122. ],
  21123. {
  21124. "anthro": {
  21125. name: "Anthro",
  21126. default: true
  21127. },
  21128. "feral": {
  21129. name: "Feral"
  21130. }
  21131. }
  21132. ))
  21133. characterMakers.push(() => makeCharacter(
  21134. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21135. {
  21136. hyenaFront: {
  21137. height: math.unit(6, "feet"),
  21138. weight: math.unit(190, "lb"),
  21139. name: "Front",
  21140. image: {
  21141. source: "./media/characters/kiro/hyena-front.svg",
  21142. extra: 927/839,
  21143. bottom: 91/1018
  21144. },
  21145. form: "hyena",
  21146. default: true
  21147. },
  21148. front: {
  21149. height: math.unit(6, "feet"),
  21150. weight: math.unit(170, "lb"),
  21151. name: "Front",
  21152. image: {
  21153. source: "./media/characters/kiro/front.svg",
  21154. extra: 1064 / 1012,
  21155. bottom: 0.052
  21156. },
  21157. form: "folf",
  21158. default: true
  21159. },
  21160. },
  21161. [
  21162. {
  21163. name: "Micro",
  21164. height: math.unit(6, "inches"),
  21165. form: "folf"
  21166. },
  21167. {
  21168. name: "Normal",
  21169. height: math.unit(6, "feet"),
  21170. form: "folf",
  21171. default: true
  21172. },
  21173. {
  21174. name: "Macro",
  21175. height: math.unit(72, "feet"),
  21176. form: "folf"
  21177. },
  21178. {
  21179. name: "Micro",
  21180. height: math.unit(6, "inches"),
  21181. form: "hyena"
  21182. },
  21183. {
  21184. name: "Normal",
  21185. height: math.unit(6, "feet"),
  21186. form: "hyena",
  21187. default: true
  21188. },
  21189. {
  21190. name: "Macro",
  21191. height: math.unit(72, "feet"),
  21192. form: "hyena"
  21193. },
  21194. ],
  21195. {
  21196. "hyena": {
  21197. name: "Hyena",
  21198. default: true
  21199. },
  21200. "folf": {
  21201. name: "Folf",
  21202. },
  21203. }
  21204. ))
  21205. characterMakers.push(() => makeCharacter(
  21206. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21207. {
  21208. front: {
  21209. height: math.unit(5 + 9 / 12, "feet"),
  21210. weight: math.unit(175, "lb"),
  21211. name: "Front",
  21212. image: {
  21213. source: "./media/characters/irishfox/front.svg",
  21214. extra: 1912 / 1680,
  21215. bottom: 0.02
  21216. }
  21217. },
  21218. },
  21219. [
  21220. {
  21221. name: "Nano",
  21222. height: math.unit(1, "mm")
  21223. },
  21224. {
  21225. name: "Micro",
  21226. height: math.unit(2, "inches")
  21227. },
  21228. {
  21229. name: "Normal",
  21230. height: math.unit(5 + 9 / 12, "feet"),
  21231. default: true
  21232. },
  21233. {
  21234. name: "Macro",
  21235. height: math.unit(45, "feet")
  21236. },
  21237. ]
  21238. ))
  21239. characterMakers.push(() => makeCharacter(
  21240. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21241. {
  21242. front: {
  21243. height: math.unit(6 + 1 / 12, "feet"),
  21244. weight: math.unit(75, "lb"),
  21245. name: "Front",
  21246. image: {
  21247. source: "./media/characters/aronai-sieyes/front.svg",
  21248. extra: 1532/1450,
  21249. bottom: 42/1574
  21250. }
  21251. },
  21252. side: {
  21253. height: math.unit(6 + 1 / 12, "feet"),
  21254. weight: math.unit(75, "lb"),
  21255. name: "Side",
  21256. image: {
  21257. source: "./media/characters/aronai-sieyes/side.svg",
  21258. extra: 1422/1365,
  21259. bottom: 148/1570
  21260. }
  21261. },
  21262. back: {
  21263. height: math.unit(6 + 1 / 12, "feet"),
  21264. weight: math.unit(75, "lb"),
  21265. name: "Back",
  21266. image: {
  21267. source: "./media/characters/aronai-sieyes/back.svg",
  21268. extra: 1526/1464,
  21269. bottom: 51/1577
  21270. }
  21271. },
  21272. dressed: {
  21273. height: math.unit(6 + 1 / 12, "feet"),
  21274. weight: math.unit(75, "lb"),
  21275. name: "Dressed",
  21276. image: {
  21277. source: "./media/characters/aronai-sieyes/dressed.svg",
  21278. extra: 1559/1483,
  21279. bottom: 39/1598
  21280. }
  21281. },
  21282. slit: {
  21283. height: math.unit(1.3, "feet"),
  21284. name: "Slit",
  21285. image: {
  21286. source: "./media/characters/aronai-sieyes/slit.svg"
  21287. }
  21288. },
  21289. slitSpread: {
  21290. height: math.unit(0.9, "feet"),
  21291. name: "Slit (Spread)",
  21292. image: {
  21293. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21294. }
  21295. },
  21296. rump: {
  21297. height: math.unit(1.3, "feet"),
  21298. name: "Rump",
  21299. image: {
  21300. source: "./media/characters/aronai-sieyes/rump.svg"
  21301. }
  21302. },
  21303. maw: {
  21304. height: math.unit(1.25, "feet"),
  21305. name: "Maw",
  21306. image: {
  21307. source: "./media/characters/aronai-sieyes/maw.svg"
  21308. }
  21309. },
  21310. feral: {
  21311. height: math.unit(18, "feet"),
  21312. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21313. name: "Feral",
  21314. image: {
  21315. source: "./media/characters/aronai-sieyes/feral.svg",
  21316. extra: 1530 / 1240,
  21317. bottom: 0.035
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Micro",
  21324. height: math.unit(2, "inches")
  21325. },
  21326. {
  21327. name: "Normal",
  21328. height: math.unit(6 + 1 / 12, "feet"),
  21329. default: true
  21330. }
  21331. ]
  21332. ))
  21333. characterMakers.push(() => makeCharacter(
  21334. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21335. {
  21336. front: {
  21337. height: math.unit(12, "feet"),
  21338. weight: math.unit(410, "kg"),
  21339. name: "Front",
  21340. image: {
  21341. source: "./media/characters/xuna/front.svg",
  21342. extra: 2184 / 1980
  21343. }
  21344. },
  21345. side: {
  21346. height: math.unit(12, "feet"),
  21347. weight: math.unit(410, "kg"),
  21348. name: "Side",
  21349. image: {
  21350. source: "./media/characters/xuna/side.svg",
  21351. extra: 2184 / 1980
  21352. }
  21353. },
  21354. back: {
  21355. height: math.unit(12, "feet"),
  21356. weight: math.unit(410, "kg"),
  21357. name: "Back",
  21358. image: {
  21359. source: "./media/characters/xuna/back.svg",
  21360. extra: 2184 / 1980
  21361. }
  21362. },
  21363. },
  21364. [
  21365. {
  21366. name: "Nano glow",
  21367. height: math.unit(10, "nm")
  21368. },
  21369. {
  21370. name: "Micro floof",
  21371. height: math.unit(0.3, "m")
  21372. },
  21373. {
  21374. name: "Huggable softy boi",
  21375. height: math.unit(3.6576, "m"),
  21376. default: true
  21377. },
  21378. {
  21379. name: "Admirable floof",
  21380. height: math.unit(80, "meters")
  21381. },
  21382. {
  21383. name: "Gentle macro",
  21384. height: math.unit(300, "meters")
  21385. },
  21386. {
  21387. name: "Very careful floof",
  21388. height: math.unit(3200, "meters")
  21389. },
  21390. {
  21391. name: "The mega floof",
  21392. height: math.unit(36000, "meters")
  21393. },
  21394. {
  21395. name: "Giga-fur-Wicker",
  21396. height: math.unit(4800000, "meters")
  21397. },
  21398. {
  21399. name: "Licky world",
  21400. height: math.unit(20000000, "meters")
  21401. },
  21402. {
  21403. name: "Floofy cyan sun",
  21404. height: math.unit(1500000000, "meters")
  21405. },
  21406. {
  21407. name: "Milky Wicker",
  21408. height: math.unit(1000000000000000000000, "meters")
  21409. },
  21410. {
  21411. name: "The observing Wicker",
  21412. height: math.unit(999999999999999999999999999, "meters")
  21413. },
  21414. ]
  21415. ))
  21416. characterMakers.push(() => makeCharacter(
  21417. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21418. {
  21419. front: {
  21420. height: math.unit(5 + 9 / 12, "feet"),
  21421. weight: math.unit(150, "lb"),
  21422. name: "Front",
  21423. image: {
  21424. source: "./media/characters/arokha-sieyes/front.svg",
  21425. extra: 1425 / 1284,
  21426. bottom: 0.05
  21427. }
  21428. },
  21429. },
  21430. [
  21431. {
  21432. name: "Normal",
  21433. height: math.unit(5 + 9 / 12, "feet")
  21434. },
  21435. {
  21436. name: "Macro",
  21437. height: math.unit(30, "meters"),
  21438. default: true
  21439. },
  21440. ]
  21441. ))
  21442. characterMakers.push(() => makeCharacter(
  21443. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21444. {
  21445. front: {
  21446. height: math.unit(6, "feet"),
  21447. weight: math.unit(180, "lb"),
  21448. name: "Front",
  21449. image: {
  21450. source: "./media/characters/arokh-sieyes/front.svg",
  21451. extra: 1830 / 1769,
  21452. bottom: 0.01
  21453. }
  21454. },
  21455. },
  21456. [
  21457. {
  21458. name: "Normal",
  21459. height: math.unit(6, "feet")
  21460. },
  21461. {
  21462. name: "Macro",
  21463. height: math.unit(30, "meters"),
  21464. default: true
  21465. },
  21466. ]
  21467. ))
  21468. characterMakers.push(() => makeCharacter(
  21469. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21470. {
  21471. side: {
  21472. height: math.unit(13 + 1 / 12, "feet"),
  21473. weight: math.unit(8.5, "tonnes"),
  21474. preyCapacity: math.unit(36, "people"),
  21475. name: "Side",
  21476. image: {
  21477. source: "./media/characters/goldeneye/side.svg",
  21478. extra: 1139/741,
  21479. bottom: 98/1237
  21480. }
  21481. },
  21482. front: {
  21483. height: math.unit(5.1, "feet"),
  21484. weight: math.unit(8.5, "tonnes"),
  21485. preyCapacity: math.unit(36, "people"),
  21486. name: "Front",
  21487. image: {
  21488. source: "./media/characters/goldeneye/front.svg",
  21489. extra: 635/365,
  21490. bottom: 598/1233
  21491. }
  21492. },
  21493. maw: {
  21494. height: math.unit(6.6, "feet"),
  21495. name: "Maw",
  21496. image: {
  21497. source: "./media/characters/goldeneye/maw.svg"
  21498. }
  21499. },
  21500. headFront: {
  21501. height: math.unit(8, "feet"),
  21502. name: "Head (Front)",
  21503. image: {
  21504. source: "./media/characters/goldeneye/head-front.svg"
  21505. }
  21506. },
  21507. headSide: {
  21508. height: math.unit(6, "feet"),
  21509. name: "Head (Side)",
  21510. image: {
  21511. source: "./media/characters/goldeneye/head-side.svg"
  21512. }
  21513. },
  21514. headBack: {
  21515. height: math.unit(8, "feet"),
  21516. name: "Head (Back)",
  21517. image: {
  21518. source: "./media/characters/goldeneye/head-back.svg"
  21519. }
  21520. },
  21521. paw: {
  21522. height: math.unit(3.4, "feet"),
  21523. name: "Paw",
  21524. image: {
  21525. source: "./media/characters/goldeneye/paw.svg"
  21526. }
  21527. },
  21528. toering: {
  21529. height: math.unit(0.45, "feet"),
  21530. name: "Toering",
  21531. image: {
  21532. source: "./media/characters/goldeneye/toering.svg"
  21533. }
  21534. },
  21535. eyes: {
  21536. height: math.unit(0.5, "feet"),
  21537. name: "Eyes",
  21538. image: {
  21539. source: "./media/characters/goldeneye/eyes.svg"
  21540. }
  21541. },
  21542. },
  21543. [
  21544. {
  21545. name: "Normal",
  21546. height: math.unit(13 + 1 / 12, "feet"),
  21547. default: true
  21548. },
  21549. ]
  21550. ))
  21551. characterMakers.push(() => makeCharacter(
  21552. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21553. {
  21554. front: {
  21555. height: math.unit(6 + 1 / 12, "feet"),
  21556. weight: math.unit(210, "lb"),
  21557. name: "Front",
  21558. image: {
  21559. source: "./media/characters/leonardo-lycheborne/front.svg",
  21560. extra: 776/723,
  21561. bottom: 34/810
  21562. }
  21563. },
  21564. side: {
  21565. height: math.unit(6 + 1 / 12, "feet"),
  21566. weight: math.unit(210, "lb"),
  21567. name: "Side",
  21568. image: {
  21569. source: "./media/characters/leonardo-lycheborne/side.svg",
  21570. extra: 780/728,
  21571. bottom: 12/792
  21572. }
  21573. },
  21574. back: {
  21575. height: math.unit(6 + 1 / 12, "feet"),
  21576. weight: math.unit(210, "lb"),
  21577. name: "Back",
  21578. image: {
  21579. source: "./media/characters/leonardo-lycheborne/back.svg",
  21580. extra: 775/721,
  21581. bottom: 17/792
  21582. }
  21583. },
  21584. hand: {
  21585. height: math.unit(1.08, "feet"),
  21586. name: "Hand",
  21587. image: {
  21588. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21589. }
  21590. },
  21591. foot: {
  21592. height: math.unit(1.32, "feet"),
  21593. name: "Foot",
  21594. image: {
  21595. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21596. }
  21597. },
  21598. maw: {
  21599. height: math.unit(1, "feet"),
  21600. name: "Maw",
  21601. image: {
  21602. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21603. }
  21604. },
  21605. were: {
  21606. height: math.unit(20, "feet"),
  21607. weight: math.unit(7800, "lb"),
  21608. name: "Were",
  21609. image: {
  21610. source: "./media/characters/leonardo-lycheborne/were.svg",
  21611. extra: 1224/1165,
  21612. bottom: 72/1296
  21613. }
  21614. },
  21615. feral: {
  21616. height: math.unit(7.5, "feet"),
  21617. weight: math.unit(600, "lb"),
  21618. name: "Feral",
  21619. image: {
  21620. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21621. extra: 797/702,
  21622. bottom: 139/936
  21623. }
  21624. },
  21625. taur: {
  21626. height: math.unit(11, "feet"),
  21627. weight: math.unit(3300, "lb"),
  21628. name: "Taur",
  21629. image: {
  21630. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21631. extra: 1271/1197,
  21632. bottom: 47/1318
  21633. }
  21634. },
  21635. barghest: {
  21636. height: math.unit(11, "feet"),
  21637. weight: math.unit(1300, "lb"),
  21638. name: "Barghest",
  21639. image: {
  21640. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21641. extra: 1291/1204,
  21642. bottom: 37/1328
  21643. }
  21644. },
  21645. dick: {
  21646. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21647. name: "Dick",
  21648. image: {
  21649. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21650. }
  21651. },
  21652. dickWere: {
  21653. height: math.unit((20) / 3.8, "feet"),
  21654. name: "Dick (Were)",
  21655. image: {
  21656. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21657. }
  21658. },
  21659. },
  21660. [
  21661. {
  21662. name: "Normal",
  21663. height: math.unit(6 + 1 / 12, "feet"),
  21664. default: true
  21665. },
  21666. ]
  21667. ))
  21668. characterMakers.push(() => makeCharacter(
  21669. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21670. {
  21671. front: {
  21672. height: math.unit(10, "feet"),
  21673. weight: math.unit(350, "lb"),
  21674. name: "Front",
  21675. image: {
  21676. source: "./media/characters/jet/front.svg",
  21677. extra: 2050 / 1980,
  21678. bottom: 0.013
  21679. }
  21680. },
  21681. back: {
  21682. height: math.unit(10, "feet"),
  21683. weight: math.unit(350, "lb"),
  21684. name: "Back",
  21685. image: {
  21686. source: "./media/characters/jet/back.svg",
  21687. extra: 2050 / 1980,
  21688. bottom: 0.013
  21689. }
  21690. },
  21691. },
  21692. [
  21693. {
  21694. name: "Micro",
  21695. height: math.unit(6, "inches")
  21696. },
  21697. {
  21698. name: "Normal",
  21699. height: math.unit(10, "feet"),
  21700. default: true
  21701. },
  21702. {
  21703. name: "Macro",
  21704. height: math.unit(100, "feet")
  21705. },
  21706. ]
  21707. ))
  21708. characterMakers.push(() => makeCharacter(
  21709. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21710. {
  21711. front: {
  21712. height: math.unit(15, "feet"),
  21713. weight: math.unit(2800, "lb"),
  21714. name: "Front",
  21715. image: {
  21716. source: "./media/characters/tanarath/front.svg",
  21717. extra: 2392 / 2220,
  21718. bottom: 0.03
  21719. }
  21720. },
  21721. back: {
  21722. height: math.unit(15, "feet"),
  21723. weight: math.unit(2800, "lb"),
  21724. name: "Back",
  21725. image: {
  21726. source: "./media/characters/tanarath/back.svg",
  21727. extra: 2392 / 2220,
  21728. bottom: 0.03
  21729. }
  21730. },
  21731. },
  21732. [
  21733. {
  21734. name: "Normal",
  21735. height: math.unit(15, "feet"),
  21736. default: true
  21737. },
  21738. ]
  21739. ))
  21740. characterMakers.push(() => makeCharacter(
  21741. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21742. {
  21743. front: {
  21744. height: math.unit(7 + 1 / 12, "feet"),
  21745. weight: math.unit(175, "lb"),
  21746. name: "Front",
  21747. image: {
  21748. source: "./media/characters/patty-cattybatty/front.svg",
  21749. extra: 908 / 874,
  21750. bottom: 0.025
  21751. }
  21752. },
  21753. },
  21754. [
  21755. {
  21756. name: "Micro",
  21757. height: math.unit(1, "inch")
  21758. },
  21759. {
  21760. name: "Normal",
  21761. height: math.unit(7 + 1 / 12, "feet")
  21762. },
  21763. {
  21764. name: "Mini Macro",
  21765. height: math.unit(155, "feet")
  21766. },
  21767. {
  21768. name: "Macro",
  21769. height: math.unit(1077, "feet")
  21770. },
  21771. {
  21772. name: "Mega Macro",
  21773. height: math.unit(47650, "feet"),
  21774. default: true
  21775. },
  21776. {
  21777. name: "Giga Macro",
  21778. height: math.unit(440, "miles")
  21779. },
  21780. {
  21781. name: "Tera Macro",
  21782. height: math.unit(8700, "miles")
  21783. },
  21784. {
  21785. name: "Planetary Macro",
  21786. height: math.unit(32700, "miles")
  21787. },
  21788. {
  21789. name: "Solar Macro",
  21790. height: math.unit(550000, "miles")
  21791. },
  21792. {
  21793. name: "Celestial Macro",
  21794. height: math.unit(2.5, "AU")
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21800. {
  21801. front: {
  21802. height: math.unit(4 + 5 / 12, "feet"),
  21803. weight: math.unit(90, "lb"),
  21804. name: "Front",
  21805. image: {
  21806. source: "./media/characters/cappu/front.svg",
  21807. extra: 1247 / 1152,
  21808. bottom: 0.012
  21809. }
  21810. },
  21811. },
  21812. [
  21813. {
  21814. name: "Normal",
  21815. height: math.unit(4 + 5 / 12, "feet"),
  21816. default: true
  21817. },
  21818. ]
  21819. ))
  21820. characterMakers.push(() => makeCharacter(
  21821. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21822. {
  21823. frontDressed: {
  21824. height: math.unit(70, "cm"),
  21825. weight: math.unit(6, "kg"),
  21826. name: "Front (Dressed)",
  21827. image: {
  21828. source: "./media/characters/sebi/front-dressed.svg",
  21829. extra: 713.5 / 686.5,
  21830. bottom: 0.003
  21831. }
  21832. },
  21833. front: {
  21834. height: math.unit(70, "cm"),
  21835. weight: math.unit(5, "kg"),
  21836. name: "Front",
  21837. image: {
  21838. source: "./media/characters/sebi/front.svg",
  21839. extra: 713.5 / 686.5,
  21840. bottom: 0.003
  21841. }
  21842. }
  21843. },
  21844. [
  21845. {
  21846. name: "Normal",
  21847. height: math.unit(70, "cm"),
  21848. default: true
  21849. },
  21850. {
  21851. name: "Macro",
  21852. height: math.unit(8, "meters")
  21853. },
  21854. ]
  21855. ))
  21856. characterMakers.push(() => makeCharacter(
  21857. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21858. {
  21859. front: {
  21860. height: math.unit(6, "feet"),
  21861. weight: math.unit(150, "lb"),
  21862. name: "Front",
  21863. image: {
  21864. source: "./media/characters/typhek/front.svg",
  21865. extra: 1948 / 1929,
  21866. bottom: 0.025
  21867. }
  21868. },
  21869. side: {
  21870. height: math.unit(6, "feet"),
  21871. weight: math.unit(150, "lb"),
  21872. name: "Side",
  21873. image: {
  21874. source: "./media/characters/typhek/side.svg",
  21875. extra: 2034 / 2010,
  21876. bottom: 0.003
  21877. }
  21878. },
  21879. back: {
  21880. height: math.unit(6, "feet"),
  21881. weight: math.unit(150, "lb"),
  21882. name: "Back",
  21883. image: {
  21884. source: "./media/characters/typhek/back.svg",
  21885. extra: 2005 / 1978,
  21886. bottom: 0.004
  21887. }
  21888. },
  21889. palm: {
  21890. height: math.unit(1.2, "feet"),
  21891. name: "Palm",
  21892. image: {
  21893. source: "./media/characters/typhek/palm.svg"
  21894. }
  21895. },
  21896. fist: {
  21897. height: math.unit(1.1, "feet"),
  21898. name: "Fist",
  21899. image: {
  21900. source: "./media/characters/typhek/fist.svg"
  21901. }
  21902. },
  21903. foot: {
  21904. height: math.unit(1.57, "feet"),
  21905. name: "Foot",
  21906. image: {
  21907. source: "./media/characters/typhek/foot.svg"
  21908. }
  21909. },
  21910. sole: {
  21911. height: math.unit(2.05, "feet"),
  21912. name: "Sole",
  21913. image: {
  21914. source: "./media/characters/typhek/sole.svg"
  21915. }
  21916. },
  21917. },
  21918. [
  21919. {
  21920. name: "Macro",
  21921. height: math.unit(40, "stories"),
  21922. default: true
  21923. },
  21924. {
  21925. name: "Megamacro",
  21926. height: math.unit(1, "mile")
  21927. },
  21928. {
  21929. name: "Gigamacro",
  21930. height: math.unit(4000, "solarradii")
  21931. },
  21932. {
  21933. name: "Universal",
  21934. height: math.unit(1.1, "universes")
  21935. }
  21936. ]
  21937. ))
  21938. characterMakers.push(() => makeCharacter(
  21939. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21940. {
  21941. side: {
  21942. height: math.unit(5 + 7 / 12, "feet"),
  21943. weight: math.unit(150, "lb"),
  21944. name: "Side",
  21945. image: {
  21946. source: "./media/characters/kassy/side.svg",
  21947. extra: 1280 / 1225,
  21948. bottom: 0.002
  21949. }
  21950. },
  21951. front: {
  21952. height: math.unit(5 + 7 / 12, "feet"),
  21953. weight: math.unit(150, "lb"),
  21954. name: "Front",
  21955. image: {
  21956. source: "./media/characters/kassy/front.svg",
  21957. extra: 1280 / 1225,
  21958. bottom: 0.025
  21959. }
  21960. },
  21961. back: {
  21962. height: math.unit(5 + 7 / 12, "feet"),
  21963. weight: math.unit(150, "lb"),
  21964. name: "Back",
  21965. image: {
  21966. source: "./media/characters/kassy/back.svg",
  21967. extra: 1280 / 1225,
  21968. bottom: 0.002
  21969. }
  21970. },
  21971. foot: {
  21972. height: math.unit(1.266, "feet"),
  21973. name: "Foot",
  21974. image: {
  21975. source: "./media/characters/kassy/foot.svg"
  21976. }
  21977. },
  21978. },
  21979. [
  21980. {
  21981. name: "Normal",
  21982. height: math.unit(5 + 7 / 12, "feet")
  21983. },
  21984. {
  21985. name: "Macro",
  21986. height: math.unit(137, "feet"),
  21987. default: true
  21988. },
  21989. {
  21990. name: "Megamacro",
  21991. height: math.unit(1, "mile")
  21992. },
  21993. ]
  21994. ))
  21995. characterMakers.push(() => makeCharacter(
  21996. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21997. {
  21998. front: {
  21999. height: math.unit(6 + 1 / 12, "feet"),
  22000. weight: math.unit(200, "lb"),
  22001. name: "Front",
  22002. image: {
  22003. source: "./media/characters/neil/front.svg",
  22004. extra: 1326 / 1250,
  22005. bottom: 0.023
  22006. }
  22007. },
  22008. },
  22009. [
  22010. {
  22011. name: "Normal",
  22012. height: math.unit(6 + 1 / 12, "feet"),
  22013. default: true
  22014. },
  22015. {
  22016. name: "Macro",
  22017. height: math.unit(200, "feet")
  22018. },
  22019. ]
  22020. ))
  22021. characterMakers.push(() => makeCharacter(
  22022. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22023. {
  22024. front: {
  22025. height: math.unit(5 + 9 / 12, "feet"),
  22026. weight: math.unit(190, "lb"),
  22027. name: "Front",
  22028. image: {
  22029. source: "./media/characters/atticus/front.svg",
  22030. extra: 2934 / 2785,
  22031. bottom: 0.025
  22032. }
  22033. },
  22034. },
  22035. [
  22036. {
  22037. name: "Normal",
  22038. height: math.unit(5 + 9 / 12, "feet"),
  22039. default: true
  22040. },
  22041. {
  22042. name: "Macro",
  22043. height: math.unit(180, "feet")
  22044. },
  22045. ]
  22046. ))
  22047. characterMakers.push(() => makeCharacter(
  22048. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22049. {
  22050. side: {
  22051. height: math.unit(9, "feet"),
  22052. weight: math.unit(650, "lb"),
  22053. name: "Side",
  22054. image: {
  22055. source: "./media/characters/milo/side.svg",
  22056. extra: 2644 / 2310,
  22057. bottom: 0.032
  22058. }
  22059. },
  22060. },
  22061. [
  22062. {
  22063. name: "Normal",
  22064. height: math.unit(9, "feet"),
  22065. default: true
  22066. },
  22067. {
  22068. name: "Macro",
  22069. height: math.unit(300, "feet")
  22070. },
  22071. ]
  22072. ))
  22073. characterMakers.push(() => makeCharacter(
  22074. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22075. {
  22076. side: {
  22077. height: math.unit(8, "meters"),
  22078. weight: math.unit(90000, "kg"),
  22079. name: "Side",
  22080. image: {
  22081. source: "./media/characters/ijzer/side.svg",
  22082. extra: 2756 / 1600,
  22083. bottom: 0.01
  22084. }
  22085. },
  22086. },
  22087. [
  22088. {
  22089. name: "Small",
  22090. height: math.unit(3, "meters")
  22091. },
  22092. {
  22093. name: "Normal",
  22094. height: math.unit(8, "meters"),
  22095. default: true
  22096. },
  22097. {
  22098. name: "Normal+",
  22099. height: math.unit(10, "meters")
  22100. },
  22101. {
  22102. name: "Bigger",
  22103. height: math.unit(24, "meters")
  22104. },
  22105. {
  22106. name: "Huge",
  22107. height: math.unit(80, "meters")
  22108. },
  22109. ]
  22110. ))
  22111. characterMakers.push(() => makeCharacter(
  22112. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22113. {
  22114. front: {
  22115. height: math.unit(6 + 2 / 12, "feet"),
  22116. weight: math.unit(153, "lb"),
  22117. name: "Front",
  22118. image: {
  22119. source: "./media/characters/luca-cervicum/front.svg",
  22120. extra: 370 / 327,
  22121. bottom: 0.015
  22122. }
  22123. },
  22124. back: {
  22125. height: math.unit(6 + 2 / 12, "feet"),
  22126. weight: math.unit(153, "lb"),
  22127. name: "Back",
  22128. image: {
  22129. source: "./media/characters/luca-cervicum/back.svg",
  22130. extra: 367 / 333,
  22131. bottom: 0.005
  22132. }
  22133. },
  22134. frontGear: {
  22135. height: math.unit(6 + 2 / 12, "feet"),
  22136. weight: math.unit(173, "lb"),
  22137. name: "Front (Gear)",
  22138. image: {
  22139. source: "./media/characters/luca-cervicum/front-gear.svg",
  22140. extra: 377 / 333,
  22141. bottom: 0.006
  22142. }
  22143. },
  22144. },
  22145. [
  22146. {
  22147. name: "Normal",
  22148. height: math.unit(6 + 2 / 12, "feet"),
  22149. default: true
  22150. },
  22151. ]
  22152. ))
  22153. characterMakers.push(() => makeCharacter(
  22154. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22155. {
  22156. front: {
  22157. height: math.unit(6 + 1 / 12, "feet"),
  22158. weight: math.unit(304, "lb"),
  22159. name: "Front",
  22160. image: {
  22161. source: "./media/characters/oliver/front.svg",
  22162. extra: 157 / 143,
  22163. bottom: 0.08
  22164. }
  22165. },
  22166. },
  22167. [
  22168. {
  22169. name: "Normal",
  22170. height: math.unit(6 + 1 / 12, "feet"),
  22171. default: true
  22172. },
  22173. ]
  22174. ))
  22175. characterMakers.push(() => makeCharacter(
  22176. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22177. {
  22178. front: {
  22179. height: math.unit(5 + 7 / 12, "feet"),
  22180. weight: math.unit(140, "lb"),
  22181. name: "Front",
  22182. image: {
  22183. source: "./media/characters/shane/front.svg",
  22184. extra: 304 / 289,
  22185. bottom: 0.005
  22186. }
  22187. },
  22188. },
  22189. [
  22190. {
  22191. name: "Normal",
  22192. height: math.unit(5 + 7 / 12, "feet"),
  22193. default: true
  22194. },
  22195. ]
  22196. ))
  22197. characterMakers.push(() => makeCharacter(
  22198. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22199. {
  22200. front: {
  22201. height: math.unit(5 + 9 / 12, "feet"),
  22202. weight: math.unit(178, "lb"),
  22203. name: "Front",
  22204. image: {
  22205. source: "./media/characters/shin/front.svg",
  22206. extra: 159 / 151,
  22207. bottom: 0.015
  22208. }
  22209. },
  22210. },
  22211. [
  22212. {
  22213. name: "Normal",
  22214. height: math.unit(5 + 9 / 12, "feet"),
  22215. default: true
  22216. },
  22217. ]
  22218. ))
  22219. characterMakers.push(() => makeCharacter(
  22220. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22221. {
  22222. front: {
  22223. height: math.unit(5 + 10 / 12, "feet"),
  22224. weight: math.unit(168, "lb"),
  22225. name: "Front",
  22226. image: {
  22227. source: "./media/characters/xerxes/front.svg",
  22228. extra: 282 / 260,
  22229. bottom: 0.045
  22230. }
  22231. },
  22232. },
  22233. [
  22234. {
  22235. name: "Normal",
  22236. height: math.unit(5 + 10 / 12, "feet"),
  22237. default: true
  22238. },
  22239. ]
  22240. ))
  22241. characterMakers.push(() => makeCharacter(
  22242. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22243. {
  22244. front: {
  22245. height: math.unit(6 + 7 / 12, "feet"),
  22246. weight: math.unit(208, "lb"),
  22247. name: "Front",
  22248. image: {
  22249. source: "./media/characters/chaska/front.svg",
  22250. extra: 332 / 319,
  22251. bottom: 0.015
  22252. }
  22253. },
  22254. },
  22255. [
  22256. {
  22257. name: "Normal",
  22258. height: math.unit(6 + 7 / 12, "feet"),
  22259. default: true
  22260. },
  22261. ]
  22262. ))
  22263. characterMakers.push(() => makeCharacter(
  22264. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22265. {
  22266. front: {
  22267. height: math.unit(5 + 8 / 12, "feet"),
  22268. weight: math.unit(208, "lb"),
  22269. name: "Front",
  22270. image: {
  22271. source: "./media/characters/enuk/front.svg",
  22272. extra: 437 / 406,
  22273. bottom: 0.02
  22274. }
  22275. },
  22276. },
  22277. [
  22278. {
  22279. name: "Normal",
  22280. height: math.unit(5 + 8 / 12, "feet"),
  22281. default: true
  22282. },
  22283. ]
  22284. ))
  22285. characterMakers.push(() => makeCharacter(
  22286. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22287. {
  22288. front: {
  22289. height: math.unit(5 + 10 / 12, "feet"),
  22290. weight: math.unit(252, "lb"),
  22291. name: "Front",
  22292. image: {
  22293. source: "./media/characters/bruun/front.svg",
  22294. extra: 197 / 187,
  22295. bottom: 0.012
  22296. }
  22297. },
  22298. },
  22299. [
  22300. {
  22301. name: "Normal",
  22302. height: math.unit(5 + 10 / 12, "feet"),
  22303. default: true
  22304. },
  22305. ]
  22306. ))
  22307. characterMakers.push(() => makeCharacter(
  22308. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22309. {
  22310. front: {
  22311. height: math.unit(6 + 10 / 12, "feet"),
  22312. weight: math.unit(255, "lb"),
  22313. name: "Front",
  22314. image: {
  22315. source: "./media/characters/alexeev/front.svg",
  22316. extra: 213 / 200,
  22317. bottom: 0.05
  22318. }
  22319. },
  22320. },
  22321. [
  22322. {
  22323. name: "Normal",
  22324. height: math.unit(6 + 10 / 12, "feet"),
  22325. default: true
  22326. },
  22327. ]
  22328. ))
  22329. characterMakers.push(() => makeCharacter(
  22330. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22331. {
  22332. front: {
  22333. height: math.unit(2 + 8 / 12, "feet"),
  22334. weight: math.unit(22, "lb"),
  22335. name: "Front",
  22336. image: {
  22337. source: "./media/characters/evelyn/front.svg",
  22338. extra: 208 / 180
  22339. }
  22340. },
  22341. },
  22342. [
  22343. {
  22344. name: "Normal",
  22345. height: math.unit(2 + 8 / 12, "feet"),
  22346. default: true
  22347. },
  22348. ]
  22349. ))
  22350. characterMakers.push(() => makeCharacter(
  22351. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22352. {
  22353. front: {
  22354. height: math.unit(5 + 9 / 12, "feet"),
  22355. weight: math.unit(139, "lb"),
  22356. name: "Front",
  22357. image: {
  22358. source: "./media/characters/inca/front.svg",
  22359. extra: 294 / 291,
  22360. bottom: 0.03
  22361. }
  22362. },
  22363. },
  22364. [
  22365. {
  22366. name: "Normal",
  22367. height: math.unit(5 + 9 / 12, "feet"),
  22368. default: true
  22369. },
  22370. ]
  22371. ))
  22372. characterMakers.push(() => makeCharacter(
  22373. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22374. {
  22375. front: {
  22376. height: math.unit(6 + 3 / 12, "feet"),
  22377. weight: math.unit(185, "lb"),
  22378. name: "Front",
  22379. image: {
  22380. source: "./media/characters/mera/front.svg",
  22381. extra: 291 / 277,
  22382. bottom: 0.03
  22383. }
  22384. },
  22385. },
  22386. [
  22387. {
  22388. name: "Normal",
  22389. height: math.unit(6 + 3 / 12, "feet"),
  22390. default: true
  22391. },
  22392. ]
  22393. ))
  22394. characterMakers.push(() => makeCharacter(
  22395. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22396. {
  22397. front: {
  22398. height: math.unit(6 + 7 / 12, "feet"),
  22399. weight: math.unit(160, "lb"),
  22400. name: "Front",
  22401. image: {
  22402. source: "./media/characters/ceres/front.svg",
  22403. extra: 1023 / 950,
  22404. bottom: 0.027
  22405. }
  22406. },
  22407. back: {
  22408. height: math.unit(6 + 7 / 12, "feet"),
  22409. weight: math.unit(160, "lb"),
  22410. name: "Back",
  22411. image: {
  22412. source: "./media/characters/ceres/back.svg",
  22413. extra: 1023 / 950
  22414. }
  22415. },
  22416. },
  22417. [
  22418. {
  22419. name: "Normal",
  22420. height: math.unit(6 + 7 / 12, "feet"),
  22421. default: true
  22422. },
  22423. ]
  22424. ))
  22425. characterMakers.push(() => makeCharacter(
  22426. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22427. {
  22428. front: {
  22429. height: math.unit(5 + 10 / 12, "feet"),
  22430. weight: math.unit(150, "lb"),
  22431. name: "Front",
  22432. image: {
  22433. source: "./media/characters/kris/front.svg",
  22434. extra: 885 / 803,
  22435. bottom: 0.03
  22436. }
  22437. },
  22438. },
  22439. [
  22440. {
  22441. name: "Normal",
  22442. height: math.unit(5 + 10 / 12, "feet"),
  22443. default: true
  22444. },
  22445. ]
  22446. ))
  22447. characterMakers.push(() => makeCharacter(
  22448. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22449. {
  22450. dragon_front: {
  22451. height: math.unit(5, "feet"),
  22452. name: "Front",
  22453. image: {
  22454. source: "./media/characters/taluthus/dragon-front.svg",
  22455. extra: 1203/1098,
  22456. bottom: 46/1249
  22457. },
  22458. form: "dragon",
  22459. default: true
  22460. },
  22461. dragon_maw: {
  22462. height: math.unit(2.35, "feet"),
  22463. name: "Maw",
  22464. image: {
  22465. source: "./media/characters/taluthus/dragon-maw.svg"
  22466. },
  22467. form: "dragon",
  22468. },
  22469. kitsune_front: {
  22470. height: math.unit(7, "feet"),
  22471. name: "Front",
  22472. image: {
  22473. source: "./media/characters/taluthus/kitsune-front.svg",
  22474. extra: 900/841,
  22475. bottom: 65/965
  22476. },
  22477. form: "kitsune",
  22478. default: true
  22479. },
  22480. },
  22481. [
  22482. {
  22483. name: "Normal",
  22484. height: math.unit(5, "feet"),
  22485. form: "dragon",
  22486. default: true,
  22487. },
  22488. {
  22489. name: "Normal",
  22490. height: math.unit(7, "feet"),
  22491. form: "kitsune",
  22492. default: true
  22493. },
  22494. {
  22495. name: "Macro",
  22496. height: math.unit(300, "feet"),
  22497. allForms: true
  22498. },
  22499. ],
  22500. {
  22501. "dragon": {
  22502. name: "Dragon",
  22503. default: true
  22504. },
  22505. "kitsune": {
  22506. name: "Kitsune",
  22507. },
  22508. }
  22509. ))
  22510. characterMakers.push(() => makeCharacter(
  22511. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22512. {
  22513. front: {
  22514. height: math.unit(5 + 9 / 12, "feet"),
  22515. weight: math.unit(145, "lb"),
  22516. name: "Front",
  22517. image: {
  22518. source: "./media/characters/dawn/front.svg",
  22519. extra: 2094 / 2016,
  22520. bottom: 0.025
  22521. }
  22522. },
  22523. back: {
  22524. height: math.unit(5 + 9 / 12, "feet"),
  22525. weight: math.unit(160, "lb"),
  22526. name: "Back",
  22527. image: {
  22528. source: "./media/characters/dawn/back.svg",
  22529. extra: 2112 / 2080,
  22530. bottom: 0.005
  22531. }
  22532. },
  22533. },
  22534. [
  22535. {
  22536. name: "Normal",
  22537. height: math.unit(6 + 7 / 12, "feet"),
  22538. default: true
  22539. },
  22540. ]
  22541. ))
  22542. characterMakers.push(() => makeCharacter(
  22543. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22544. {
  22545. anthro: {
  22546. height: math.unit(8 + 3 / 12, "feet"),
  22547. weight: math.unit(450, "lb"),
  22548. name: "Anthro",
  22549. image: {
  22550. source: "./media/characters/arador/anthro.svg",
  22551. extra: 1835 / 1718,
  22552. bottom: 0.025
  22553. }
  22554. },
  22555. feral: {
  22556. height: math.unit(4, "feet"),
  22557. weight: math.unit(200, "lb"),
  22558. name: "Feral",
  22559. image: {
  22560. source: "./media/characters/arador/feral.svg",
  22561. extra: 1683 / 1514,
  22562. bottom: 0.07
  22563. }
  22564. },
  22565. },
  22566. [
  22567. {
  22568. name: "Normal",
  22569. height: math.unit(8 + 3 / 12, "feet")
  22570. },
  22571. {
  22572. name: "Macro",
  22573. height: math.unit(82.5, "feet"),
  22574. default: true
  22575. },
  22576. ]
  22577. ))
  22578. characterMakers.push(() => makeCharacter(
  22579. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22580. {
  22581. front: {
  22582. height: math.unit(5 + 10 / 12, "feet"),
  22583. weight: math.unit(125, "lb"),
  22584. name: "Front",
  22585. image: {
  22586. source: "./media/characters/dharsi/front.svg",
  22587. extra: 716 / 630,
  22588. bottom: 0.035
  22589. }
  22590. },
  22591. },
  22592. [
  22593. {
  22594. name: "Nano",
  22595. height: math.unit(100, "nm")
  22596. },
  22597. {
  22598. name: "Micro",
  22599. height: math.unit(2, "inches")
  22600. },
  22601. {
  22602. name: "Normal",
  22603. height: math.unit(5 + 10 / 12, "feet"),
  22604. default: true
  22605. },
  22606. {
  22607. name: "Macro",
  22608. height: math.unit(1000, "feet")
  22609. },
  22610. {
  22611. name: "Megamacro",
  22612. height: math.unit(10, "miles")
  22613. },
  22614. {
  22615. name: "Gigamacro",
  22616. height: math.unit(3000, "miles")
  22617. },
  22618. {
  22619. name: "Teramacro",
  22620. height: math.unit(500000, "miles")
  22621. },
  22622. {
  22623. name: "Teramacro+",
  22624. height: math.unit(30, "galaxies")
  22625. },
  22626. ]
  22627. ))
  22628. characterMakers.push(() => makeCharacter(
  22629. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22630. {
  22631. front: {
  22632. height: math.unit(6, "feet"),
  22633. weight: math.unit(150, "lb"),
  22634. name: "Front",
  22635. image: {
  22636. source: "./media/characters/deathy/front.svg",
  22637. extra: 1552 / 1463,
  22638. bottom: 0.025
  22639. }
  22640. },
  22641. side: {
  22642. height: math.unit(6, "feet"),
  22643. weight: math.unit(150, "lb"),
  22644. name: "Side",
  22645. image: {
  22646. source: "./media/characters/deathy/side.svg",
  22647. extra: 1604 / 1455,
  22648. bottom: 0.025
  22649. }
  22650. },
  22651. back: {
  22652. height: math.unit(6, "feet"),
  22653. weight: math.unit(150, "lb"),
  22654. name: "Back",
  22655. image: {
  22656. source: "./media/characters/deathy/back.svg",
  22657. extra: 1580 / 1463,
  22658. bottom: 0.005
  22659. }
  22660. },
  22661. },
  22662. [
  22663. {
  22664. name: "Micro",
  22665. height: math.unit(5, "millimeters")
  22666. },
  22667. {
  22668. name: "Normal",
  22669. height: math.unit(6 + 5 / 12, "feet"),
  22670. default: true
  22671. },
  22672. ]
  22673. ))
  22674. characterMakers.push(() => makeCharacter(
  22675. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22676. {
  22677. front: {
  22678. height: math.unit(16, "feet"),
  22679. weight: math.unit(4000, "lb"),
  22680. name: "Front",
  22681. image: {
  22682. source: "./media/characters/juniper/front.svg",
  22683. bottom: 0.04
  22684. }
  22685. },
  22686. },
  22687. [
  22688. {
  22689. name: "Normal",
  22690. height: math.unit(16, "feet"),
  22691. default: true
  22692. },
  22693. ]
  22694. ))
  22695. characterMakers.push(() => makeCharacter(
  22696. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22697. {
  22698. front: {
  22699. height: math.unit(6, "feet"),
  22700. weight: math.unit(150, "lb"),
  22701. name: "Front",
  22702. image: {
  22703. source: "./media/characters/hipster/front.svg",
  22704. extra: 1312 / 1209,
  22705. bottom: 0.025
  22706. }
  22707. },
  22708. back: {
  22709. height: math.unit(6, "feet"),
  22710. weight: math.unit(150, "lb"),
  22711. name: "Back",
  22712. image: {
  22713. source: "./media/characters/hipster/back.svg",
  22714. extra: 1281 / 1196,
  22715. bottom: 0.01
  22716. }
  22717. },
  22718. },
  22719. [
  22720. {
  22721. name: "Micro",
  22722. height: math.unit(1, "mm")
  22723. },
  22724. {
  22725. name: "Normal",
  22726. height: math.unit(4, "inches"),
  22727. default: true
  22728. },
  22729. {
  22730. name: "Macro",
  22731. height: math.unit(500, "feet")
  22732. },
  22733. {
  22734. name: "Megamacro",
  22735. height: math.unit(1000, "miles")
  22736. },
  22737. ]
  22738. ))
  22739. characterMakers.push(() => makeCharacter(
  22740. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22741. {
  22742. front: {
  22743. height: math.unit(6, "feet"),
  22744. weight: math.unit(150, "lb"),
  22745. name: "Front",
  22746. image: {
  22747. source: "./media/characters/tendirmuldr/front.svg",
  22748. extra: 1878 / 1772,
  22749. bottom: 0.015
  22750. }
  22751. },
  22752. },
  22753. [
  22754. {
  22755. name: "Megamacro",
  22756. height: math.unit(1500, "miles"),
  22757. default: true
  22758. },
  22759. ]
  22760. ))
  22761. characterMakers.push(() => makeCharacter(
  22762. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22763. {
  22764. front: {
  22765. height: math.unit(14, "feet"),
  22766. weight: math.unit(12000, "lb"),
  22767. name: "Front",
  22768. image: {
  22769. source: "./media/characters/mort/front.svg",
  22770. extra: 365 / 318,
  22771. bottom: 0.01
  22772. }
  22773. },
  22774. side: {
  22775. height: math.unit(14, "feet"),
  22776. weight: math.unit(12000, "lb"),
  22777. name: "Side",
  22778. image: {
  22779. source: "./media/characters/mort/side.svg",
  22780. extra: 365 / 318,
  22781. bottom: 0.052
  22782. },
  22783. default: true
  22784. },
  22785. back: {
  22786. height: math.unit(14, "feet"),
  22787. weight: math.unit(12000, "lb"),
  22788. name: "Back",
  22789. image: {
  22790. source: "./media/characters/mort/back.svg",
  22791. extra: 371 / 332,
  22792. bottom: 0.18
  22793. }
  22794. },
  22795. },
  22796. [
  22797. {
  22798. name: "Normal",
  22799. height: math.unit(14, "feet"),
  22800. default: true
  22801. },
  22802. ]
  22803. ))
  22804. characterMakers.push(() => makeCharacter(
  22805. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22806. {
  22807. front: {
  22808. height: math.unit(8, "feet"),
  22809. weight: math.unit(1, "ton"),
  22810. name: "Front",
  22811. image: {
  22812. source: "./media/characters/lycoa/front.svg",
  22813. extra: 1836/1728,
  22814. bottom: 81/1917
  22815. }
  22816. },
  22817. back: {
  22818. height: math.unit(8, "feet"),
  22819. weight: math.unit(1, "ton"),
  22820. name: "Back",
  22821. image: {
  22822. source: "./media/characters/lycoa/back.svg",
  22823. extra: 1785/1720,
  22824. bottom: 91/1876
  22825. }
  22826. },
  22827. head: {
  22828. height: math.unit(1.6243, "feet"),
  22829. name: "Head",
  22830. image: {
  22831. source: "./media/characters/lycoa/head.svg",
  22832. extra: 1011/782,
  22833. bottom: 0/1011
  22834. }
  22835. },
  22836. tailmaw: {
  22837. height: math.unit(1.9, "feet"),
  22838. name: "Tailmaw",
  22839. image: {
  22840. source: "./media/characters/lycoa/tailmaw.svg"
  22841. }
  22842. },
  22843. tentacles: {
  22844. height: math.unit(2.1, "feet"),
  22845. name: "Tentacles",
  22846. image: {
  22847. source: "./media/characters/lycoa/tentacles.svg"
  22848. }
  22849. },
  22850. dick: {
  22851. height: math.unit(1.73, "feet"),
  22852. name: "Dick",
  22853. image: {
  22854. source: "./media/characters/lycoa/dick.svg"
  22855. }
  22856. },
  22857. },
  22858. [
  22859. {
  22860. name: "Normal",
  22861. height: math.unit(8, "feet"),
  22862. default: true
  22863. },
  22864. {
  22865. name: "Macro",
  22866. height: math.unit(30, "feet")
  22867. },
  22868. ]
  22869. ))
  22870. characterMakers.push(() => makeCharacter(
  22871. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22872. {
  22873. front: {
  22874. height: math.unit(4 + 2 / 12, "feet"),
  22875. weight: math.unit(70, "lb"),
  22876. name: "Front",
  22877. image: {
  22878. source: "./media/characters/naldara/front.svg",
  22879. extra: 1664/1387,
  22880. bottom: 81/1745
  22881. },
  22882. form: "anthro",
  22883. default: true
  22884. },
  22885. naga: {
  22886. height: math.unit(20, "feet"),
  22887. weight: math.unit(15000, "kg"),
  22888. name: "Front",
  22889. image: {
  22890. source: "./media/characters/naldara/naga.svg",
  22891. extra: 1590/1396,
  22892. bottom: 285/1875
  22893. },
  22894. form: "naga",
  22895. default: true
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Normal",
  22901. height: math.unit(4 + 2 / 12, "feet"),
  22902. form: "anthro",
  22903. default: true
  22904. },
  22905. {
  22906. name: "Normal",
  22907. height: math.unit(20, "feet"),
  22908. form: "naga",
  22909. default: true
  22910. },
  22911. ],
  22912. {
  22913. "anthro": {
  22914. name: "Anthro",
  22915. default: true
  22916. },
  22917. "naga": {
  22918. name: "Naga"
  22919. }
  22920. }
  22921. ))
  22922. characterMakers.push(() => makeCharacter(
  22923. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22924. {
  22925. front: {
  22926. height: math.unit(13 + 7 / 12, "feet"),
  22927. weight: math.unit(1500, "lb"),
  22928. name: "Front",
  22929. image: {
  22930. source: "./media/characters/briar/front.svg",
  22931. extra: 1223/1157,
  22932. bottom: 123/1346
  22933. }
  22934. },
  22935. },
  22936. [
  22937. {
  22938. name: "Normal",
  22939. height: math.unit(13 + 7 / 12, "feet"),
  22940. default: true
  22941. },
  22942. ]
  22943. ))
  22944. characterMakers.push(() => makeCharacter(
  22945. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22946. {
  22947. side: {
  22948. height: math.unit(16, "feet"),
  22949. weight: math.unit(500, "lb"),
  22950. name: "Side",
  22951. image: {
  22952. source: "./media/characters/vanguard/side.svg",
  22953. extra: 1022/914,
  22954. bottom: 30/1052
  22955. }
  22956. },
  22957. sideAlt: {
  22958. height: math.unit(10, "feet"),
  22959. weight: math.unit(500, "lb"),
  22960. name: "Side (Alt)",
  22961. image: {
  22962. source: "./media/characters/vanguard/side-alt.svg",
  22963. extra: 502 / 425,
  22964. bottom: 0.087
  22965. }
  22966. },
  22967. },
  22968. [
  22969. {
  22970. name: "Normal",
  22971. height: math.unit(17.71, "feet"),
  22972. default: true
  22973. },
  22974. ]
  22975. ))
  22976. characterMakers.push(() => makeCharacter(
  22977. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22978. {
  22979. front: {
  22980. height: math.unit(7.5, "feet"),
  22981. weight: math.unit(2, "lb"),
  22982. name: "Front",
  22983. image: {
  22984. source: "./media/characters/artemis/work-safe-front.svg",
  22985. extra: 1192 / 1075,
  22986. bottom: 0.07
  22987. },
  22988. form: "work-safe",
  22989. default: true
  22990. },
  22991. frontNsfw: {
  22992. height: math.unit(7.5, "feet"),
  22993. weight: math.unit(2, "lb"),
  22994. name: "Front",
  22995. image: {
  22996. source: "./media/characters/artemis/calibrating-front.svg",
  22997. extra: 1192 / 1075,
  22998. bottom: 0.07
  22999. },
  23000. form: "calibrating",
  23001. default: true
  23002. },
  23003. frontNsfwer: {
  23004. height: math.unit(7.5, "feet"),
  23005. weight: math.unit(2, "lb"),
  23006. name: "Front",
  23007. image: {
  23008. source: "./media/characters/artemis/oversize-load-front.svg",
  23009. extra: 1192 / 1075,
  23010. bottom: 0.07
  23011. },
  23012. form: "oversize-load",
  23013. default: true
  23014. },
  23015. side: {
  23016. height: math.unit(7.5, "feet"),
  23017. weight: math.unit(2, "lb"),
  23018. name: "Side",
  23019. image: {
  23020. source: "./media/characters/artemis/work-safe-side.svg",
  23021. extra: 1192 / 1075,
  23022. bottom: 0.07
  23023. },
  23024. form: "work-safe"
  23025. },
  23026. sideNsfw: {
  23027. height: math.unit(7.5, "feet"),
  23028. weight: math.unit(2, "lb"),
  23029. name: "Side",
  23030. image: {
  23031. source: "./media/characters/artemis/calibrating-side.svg",
  23032. extra: 1192 / 1075,
  23033. bottom: 0.07
  23034. },
  23035. form: "calibrating"
  23036. },
  23037. sideNsfwer: {
  23038. height: math.unit(7.5, "feet"),
  23039. weight: math.unit(2, "lb"),
  23040. name: "Side",
  23041. image: {
  23042. source: "./media/characters/artemis/oversize-load-side.svg",
  23043. extra: 1192 / 1075,
  23044. bottom: 0.07
  23045. },
  23046. form: "oversize-load"
  23047. },
  23048. maw: {
  23049. height: math.unit(1.1, "feet"),
  23050. name: "Maw",
  23051. image: {
  23052. source: "./media/characters/artemis/maw.svg"
  23053. },
  23054. form: "work-safe"
  23055. },
  23056. stomach: {
  23057. height: math.unit(0.95, "feet"),
  23058. name: "Stomach",
  23059. image: {
  23060. source: "./media/characters/artemis/stomach.svg"
  23061. },
  23062. form: "work-safe"
  23063. },
  23064. dickCanine: {
  23065. height: math.unit(1, "feet"),
  23066. name: "Dick (Canine)",
  23067. image: {
  23068. source: "./media/characters/artemis/dick-canine.svg"
  23069. },
  23070. form: "calibrating"
  23071. },
  23072. dickEquine: {
  23073. height: math.unit(0.85, "feet"),
  23074. name: "Dick (Equine)",
  23075. image: {
  23076. source: "./media/characters/artemis/dick-equine.svg"
  23077. },
  23078. form: "calibrating"
  23079. },
  23080. dickExotic: {
  23081. height: math.unit(0.85, "feet"),
  23082. name: "Dick (Exotic)",
  23083. image: {
  23084. source: "./media/characters/artemis/dick-exotic.svg"
  23085. },
  23086. form: "calibrating"
  23087. },
  23088. dickCanineBigger: {
  23089. height: math.unit(1 * 1.33, "feet"),
  23090. name: "Dick (Canine)",
  23091. image: {
  23092. source: "./media/characters/artemis/dick-canine.svg"
  23093. },
  23094. form: "oversize-load"
  23095. },
  23096. dickEquineBigger: {
  23097. height: math.unit(0.85 * 1.33, "feet"),
  23098. name: "Dick (Equine)",
  23099. image: {
  23100. source: "./media/characters/artemis/dick-equine.svg"
  23101. },
  23102. form: "oversize-load"
  23103. },
  23104. dickExoticBigger: {
  23105. height: math.unit(0.85 * 1.33, "feet"),
  23106. name: "Dick (Exotic)",
  23107. image: {
  23108. source: "./media/characters/artemis/dick-exotic.svg"
  23109. },
  23110. form: "oversize-load"
  23111. },
  23112. },
  23113. [
  23114. {
  23115. name: "Normal",
  23116. height: math.unit(7.5, "feet"),
  23117. form: "work-safe",
  23118. default: true
  23119. },
  23120. {
  23121. name: "Normal",
  23122. height: math.unit(7.5, "feet"),
  23123. form: "calibrating",
  23124. default: true
  23125. },
  23126. {
  23127. name: "Normal",
  23128. height: math.unit(7.5, "feet"),
  23129. form: "oversize-load",
  23130. default: true
  23131. },
  23132. {
  23133. name: "Enlarged",
  23134. height: math.unit(12, "feet"),
  23135. form: "work-safe",
  23136. },
  23137. {
  23138. name: "Enlarged",
  23139. height: math.unit(12, "feet"),
  23140. form: "calibrating",
  23141. },
  23142. {
  23143. name: "Enlarged",
  23144. height: math.unit(12, "feet"),
  23145. form: "oversize-load",
  23146. },
  23147. ],
  23148. {
  23149. "work-safe": {
  23150. name: "Work-Safe",
  23151. default: true
  23152. },
  23153. "calibrating": {
  23154. name: "Calibrating"
  23155. },
  23156. "oversize-load": {
  23157. name: "Oversize Load"
  23158. }
  23159. }
  23160. ))
  23161. characterMakers.push(() => makeCharacter(
  23162. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23163. {
  23164. front: {
  23165. height: math.unit(5 + 3 / 12, "feet"),
  23166. weight: math.unit(160, "lb"),
  23167. name: "Front",
  23168. image: {
  23169. source: "./media/characters/kira/front.svg",
  23170. extra: 906 / 786,
  23171. bottom: 0.01
  23172. }
  23173. },
  23174. back: {
  23175. height: math.unit(5 + 3 / 12, "feet"),
  23176. weight: math.unit(160, "lb"),
  23177. name: "Back",
  23178. image: {
  23179. source: "./media/characters/kira/back.svg",
  23180. extra: 882 / 757,
  23181. bottom: 0.005
  23182. }
  23183. },
  23184. frontDressed: {
  23185. height: math.unit(5 + 3 / 12, "feet"),
  23186. weight: math.unit(160, "lb"),
  23187. name: "Front (Dressed)",
  23188. image: {
  23189. source: "./media/characters/kira/front-dressed.svg",
  23190. extra: 906 / 786,
  23191. bottom: 0.01
  23192. }
  23193. },
  23194. beans: {
  23195. height: math.unit(0.92, "feet"),
  23196. name: "Beans",
  23197. image: {
  23198. source: "./media/characters/kira/beans.svg"
  23199. }
  23200. },
  23201. },
  23202. [
  23203. {
  23204. name: "Normal",
  23205. height: math.unit(5 + 3 / 12, "feet"),
  23206. default: true
  23207. },
  23208. ]
  23209. ))
  23210. characterMakers.push(() => makeCharacter(
  23211. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23212. {
  23213. front: {
  23214. height: math.unit(5 + 4 / 12, "feet"),
  23215. weight: math.unit(145, "lb"),
  23216. name: "Front",
  23217. image: {
  23218. source: "./media/characters/scramble/front.svg",
  23219. extra: 763 / 727,
  23220. bottom: 0.05
  23221. }
  23222. },
  23223. back: {
  23224. height: math.unit(5 + 4 / 12, "feet"),
  23225. weight: math.unit(145, "lb"),
  23226. name: "Back",
  23227. image: {
  23228. source: "./media/characters/scramble/back.svg",
  23229. extra: 826 / 737,
  23230. bottom: 0.002
  23231. }
  23232. },
  23233. },
  23234. [
  23235. {
  23236. name: "Normal",
  23237. height: math.unit(5 + 4 / 12, "feet"),
  23238. default: true
  23239. },
  23240. ]
  23241. ))
  23242. characterMakers.push(() => makeCharacter(
  23243. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23244. {
  23245. side: {
  23246. height: math.unit(6 + 2 / 12, "feet"),
  23247. weight: math.unit(190, "lb"),
  23248. name: "Side",
  23249. image: {
  23250. source: "./media/characters/biscuit/side.svg",
  23251. extra: 858 / 791,
  23252. bottom: 0.044
  23253. }
  23254. },
  23255. },
  23256. [
  23257. {
  23258. name: "Normal",
  23259. height: math.unit(6 + 2 / 12, "feet"),
  23260. default: true
  23261. },
  23262. ]
  23263. ))
  23264. characterMakers.push(() => makeCharacter(
  23265. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23266. {
  23267. front: {
  23268. height: math.unit(5 + 2 / 12, "feet"),
  23269. weight: math.unit(120, "lb"),
  23270. name: "Front",
  23271. image: {
  23272. source: "./media/characters/poffin/front.svg",
  23273. extra: 786 / 680,
  23274. bottom: 0.005
  23275. }
  23276. },
  23277. },
  23278. [
  23279. {
  23280. name: "Normal",
  23281. height: math.unit(5 + 2 / 12, "feet"),
  23282. default: true
  23283. },
  23284. ]
  23285. ))
  23286. characterMakers.push(() => makeCharacter(
  23287. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23288. {
  23289. front: {
  23290. height: math.unit(6 + 3 / 12, "feet"),
  23291. weight: math.unit(519, "lb"),
  23292. name: "Front",
  23293. image: {
  23294. source: "./media/characters/dhari/front.svg",
  23295. extra: 1048 / 946,
  23296. bottom: 0.015
  23297. }
  23298. },
  23299. back: {
  23300. height: math.unit(6 + 3 / 12, "feet"),
  23301. weight: math.unit(519, "lb"),
  23302. name: "Back",
  23303. image: {
  23304. source: "./media/characters/dhari/back.svg",
  23305. extra: 1048 / 931,
  23306. bottom: 0.005
  23307. }
  23308. },
  23309. frontDressed: {
  23310. height: math.unit(6 + 3 / 12, "feet"),
  23311. weight: math.unit(519, "lb"),
  23312. name: "Front (Dressed)",
  23313. image: {
  23314. source: "./media/characters/dhari/front-dressed.svg",
  23315. extra: 1713 / 1546,
  23316. bottom: 0.02
  23317. }
  23318. },
  23319. backDressed: {
  23320. height: math.unit(6 + 3 / 12, "feet"),
  23321. weight: math.unit(519, "lb"),
  23322. name: "Back (Dressed)",
  23323. image: {
  23324. source: "./media/characters/dhari/back-dressed.svg",
  23325. extra: 1699 / 1537,
  23326. bottom: 0.01
  23327. }
  23328. },
  23329. maw: {
  23330. height: math.unit(0.95, "feet"),
  23331. name: "Maw",
  23332. image: {
  23333. source: "./media/characters/dhari/maw.svg"
  23334. }
  23335. },
  23336. wereFront: {
  23337. height: math.unit(12 + 8 / 12, "feet"),
  23338. weight: math.unit(4000, "lb"),
  23339. name: "Front (Were)",
  23340. image: {
  23341. source: "./media/characters/dhari/were-front.svg",
  23342. extra: 1065 / 969,
  23343. bottom: 0.015
  23344. }
  23345. },
  23346. wereBack: {
  23347. height: math.unit(12 + 8 / 12, "feet"),
  23348. weight: math.unit(4000, "lb"),
  23349. name: "Back (Were)",
  23350. image: {
  23351. source: "./media/characters/dhari/were-back.svg",
  23352. extra: 1065 / 969,
  23353. bottom: 0.012
  23354. }
  23355. },
  23356. wereMaw: {
  23357. height: math.unit(0.625, "meters"),
  23358. name: "Maw (Were)",
  23359. image: {
  23360. source: "./media/characters/dhari/were-maw.svg"
  23361. }
  23362. },
  23363. },
  23364. [
  23365. {
  23366. name: "Normal",
  23367. height: math.unit(6 + 3 / 12, "feet"),
  23368. default: true
  23369. },
  23370. ]
  23371. ))
  23372. characterMakers.push(() => makeCharacter(
  23373. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23374. {
  23375. anthro: {
  23376. height: math.unit(5 + 7 / 12, "feet"),
  23377. weight: math.unit(175, "lb"),
  23378. name: "Anthro",
  23379. image: {
  23380. source: "./media/characters/rena-dyne/anthro.svg",
  23381. extra: 1849 / 1785,
  23382. bottom: 0.005
  23383. }
  23384. },
  23385. taur: {
  23386. height: math.unit(15 + 6 / 12, "feet"),
  23387. weight: math.unit(8000, "lb"),
  23388. name: "Taur",
  23389. image: {
  23390. source: "./media/characters/rena-dyne/taur.svg",
  23391. extra: 2315 / 2234,
  23392. bottom: 0.033
  23393. }
  23394. },
  23395. },
  23396. [
  23397. {
  23398. name: "Normal",
  23399. height: math.unit(5 + 7 / 12, "feet"),
  23400. default: true
  23401. },
  23402. ]
  23403. ))
  23404. characterMakers.push(() => makeCharacter(
  23405. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23406. {
  23407. front: {
  23408. height: math.unit(8, "feet"),
  23409. weight: math.unit(600, "lb"),
  23410. name: "Front",
  23411. image: {
  23412. source: "./media/characters/weremeep/front.svg",
  23413. extra: 970/849,
  23414. bottom: 7/977
  23415. }
  23416. },
  23417. },
  23418. [
  23419. {
  23420. name: "Normal",
  23421. height: math.unit(8, "feet"),
  23422. default: true
  23423. },
  23424. {
  23425. name: "Lorg",
  23426. height: math.unit(12, "feet")
  23427. },
  23428. {
  23429. name: "Oh Lawd She Comin'",
  23430. height: math.unit(20, "feet")
  23431. },
  23432. ]
  23433. ))
  23434. characterMakers.push(() => makeCharacter(
  23435. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23436. {
  23437. front: {
  23438. height: math.unit(4, "feet"),
  23439. weight: math.unit(90, "lb"),
  23440. name: "Front",
  23441. image: {
  23442. source: "./media/characters/reza/front.svg",
  23443. extra: 1183 / 1111,
  23444. bottom: 0.017
  23445. }
  23446. },
  23447. back: {
  23448. height: math.unit(4, "feet"),
  23449. weight: math.unit(90, "lb"),
  23450. name: "Back",
  23451. image: {
  23452. source: "./media/characters/reza/back.svg",
  23453. extra: 1183 / 1111,
  23454. bottom: 0.01
  23455. }
  23456. },
  23457. drake: {
  23458. height: math.unit(30, "feet"),
  23459. weight: math.unit(246960, "lb"),
  23460. name: "Drake",
  23461. image: {
  23462. source: "./media/characters/reza/drake.svg",
  23463. extra: 2350 / 2024,
  23464. bottom: 60.7 / 2403
  23465. }
  23466. },
  23467. },
  23468. [
  23469. {
  23470. name: "Normal",
  23471. height: math.unit(4, "feet"),
  23472. default: true
  23473. },
  23474. ]
  23475. ))
  23476. characterMakers.push(() => makeCharacter(
  23477. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23478. {
  23479. side: {
  23480. height: math.unit(15, "feet"),
  23481. weight: math.unit(14, "tons"),
  23482. name: "Side",
  23483. image: {
  23484. source: "./media/characters/athea/side.svg",
  23485. extra: 960 / 540,
  23486. bottom: 0.003
  23487. }
  23488. },
  23489. sitting: {
  23490. height: math.unit(6 * 2.85, "feet"),
  23491. weight: math.unit(14, "tons"),
  23492. name: "Sitting",
  23493. image: {
  23494. source: "./media/characters/athea/sitting.svg",
  23495. extra: 621 / 581,
  23496. bottom: 0.075
  23497. }
  23498. },
  23499. maw: {
  23500. height: math.unit(7.59498031496063, "feet"),
  23501. name: "Maw",
  23502. image: {
  23503. source: "./media/characters/athea/maw.svg"
  23504. }
  23505. },
  23506. },
  23507. [
  23508. {
  23509. name: "Lap Cat",
  23510. height: math.unit(2.5, "feet")
  23511. },
  23512. {
  23513. name: "Minimacro",
  23514. height: math.unit(15, "feet"),
  23515. default: true
  23516. },
  23517. {
  23518. name: "Macro",
  23519. height: math.unit(120, "feet")
  23520. },
  23521. {
  23522. name: "Macro+",
  23523. height: math.unit(640, "feet")
  23524. },
  23525. {
  23526. name: "Colossus",
  23527. height: math.unit(2.2, "miles")
  23528. },
  23529. ]
  23530. ))
  23531. characterMakers.push(() => makeCharacter(
  23532. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23533. {
  23534. front: {
  23535. height: math.unit(8 + 8 / 12, "feet"),
  23536. weight: math.unit(130, "kg"),
  23537. name: "Front",
  23538. image: {
  23539. source: "./media/characters/seroko/front.svg",
  23540. extra: 1385 / 1280,
  23541. bottom: 0.025
  23542. }
  23543. },
  23544. back: {
  23545. height: math.unit(8 + 8 / 12, "feet"),
  23546. weight: math.unit(130, "kg"),
  23547. name: "Back",
  23548. image: {
  23549. source: "./media/characters/seroko/back.svg",
  23550. extra: 1369 / 1238,
  23551. bottom: 0.018
  23552. }
  23553. },
  23554. frontDressed: {
  23555. height: math.unit(8 + 8 / 12, "feet"),
  23556. weight: math.unit(130, "kg"),
  23557. name: "Front (Dressed)",
  23558. image: {
  23559. source: "./media/characters/seroko/front-dressed.svg",
  23560. extra: 1366 / 1275,
  23561. bottom: 0.03
  23562. }
  23563. },
  23564. },
  23565. [
  23566. {
  23567. name: "Normal",
  23568. height: math.unit(8 + 8 / 12, "feet"),
  23569. default: true
  23570. },
  23571. ]
  23572. ))
  23573. characterMakers.push(() => makeCharacter(
  23574. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23575. {
  23576. front: {
  23577. height: math.unit(5.5, "feet"),
  23578. weight: math.unit(160, "lb"),
  23579. name: "Front",
  23580. image: {
  23581. source: "./media/characters/quatzi/front.svg",
  23582. extra: 2346 / 2242,
  23583. bottom: 0.015
  23584. }
  23585. },
  23586. },
  23587. [
  23588. {
  23589. name: "Normal",
  23590. height: math.unit(5.5, "feet"),
  23591. default: true
  23592. },
  23593. {
  23594. name: "Big",
  23595. height: math.unit(7.7, "feet")
  23596. },
  23597. ]
  23598. ))
  23599. characterMakers.push(() => makeCharacter(
  23600. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23601. {
  23602. front: {
  23603. height: math.unit(5 + 11 / 12, "feet"),
  23604. weight: math.unit(180, "lb"),
  23605. name: "Front",
  23606. image: {
  23607. source: "./media/characters/sen/front.svg",
  23608. extra: 1321 / 1254,
  23609. bottom: 0.015
  23610. }
  23611. },
  23612. side: {
  23613. height: math.unit(5 + 11 / 12, "feet"),
  23614. weight: math.unit(180, "lb"),
  23615. name: "Side",
  23616. image: {
  23617. source: "./media/characters/sen/side.svg",
  23618. extra: 1321 / 1254,
  23619. bottom: 0.007
  23620. }
  23621. },
  23622. back: {
  23623. height: math.unit(5 + 11 / 12, "feet"),
  23624. weight: math.unit(180, "lb"),
  23625. name: "Back",
  23626. image: {
  23627. source: "./media/characters/sen/back.svg",
  23628. extra: 1321 / 1254
  23629. }
  23630. },
  23631. },
  23632. [
  23633. {
  23634. name: "Normal",
  23635. height: math.unit(5 + 11 / 12, "feet"),
  23636. default: true
  23637. },
  23638. ]
  23639. ))
  23640. characterMakers.push(() => makeCharacter(
  23641. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23642. {
  23643. front: {
  23644. height: math.unit(166.6, "cm"),
  23645. weight: math.unit(66.6, "kg"),
  23646. name: "Front",
  23647. image: {
  23648. source: "./media/characters/fruity/front.svg",
  23649. extra: 1510 / 1386,
  23650. bottom: 0.04
  23651. }
  23652. },
  23653. back: {
  23654. height: math.unit(166.6, "cm"),
  23655. weight: math.unit(66.6, "lb"),
  23656. name: "Back",
  23657. image: {
  23658. source: "./media/characters/fruity/back.svg",
  23659. extra: 1563 / 1435,
  23660. bottom: 0.005
  23661. }
  23662. },
  23663. },
  23664. [
  23665. {
  23666. name: "Normal",
  23667. height: math.unit(166.6, "cm"),
  23668. default: true
  23669. },
  23670. {
  23671. name: "Demonic",
  23672. height: math.unit(166.6, "feet")
  23673. },
  23674. ]
  23675. ))
  23676. characterMakers.push(() => makeCharacter(
  23677. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23678. {
  23679. side: {
  23680. height: math.unit(10, "feet"),
  23681. weight: math.unit(500, "lb"),
  23682. name: "Side",
  23683. image: {
  23684. source: "./media/characters/zost/side.svg",
  23685. extra: 2870/2533,
  23686. bottom: 252/3122
  23687. }
  23688. },
  23689. mawFront: {
  23690. height: math.unit(1.08, "meters"),
  23691. name: "Maw (Front)",
  23692. image: {
  23693. source: "./media/characters/zost/maw-front.svg"
  23694. }
  23695. },
  23696. mawSide: {
  23697. height: math.unit(2.66, "feet"),
  23698. name: "Maw (Side)",
  23699. image: {
  23700. source: "./media/characters/zost/maw-side.svg"
  23701. }
  23702. },
  23703. wingspan: {
  23704. height: math.unit(7.4, "feet"),
  23705. name: "Wingspan",
  23706. image: {
  23707. source: "./media/characters/zost/wingspan.svg"
  23708. }
  23709. },
  23710. },
  23711. [
  23712. {
  23713. name: "Normal",
  23714. height: math.unit(10, "feet"),
  23715. default: true
  23716. },
  23717. ]
  23718. ))
  23719. characterMakers.push(() => makeCharacter(
  23720. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23721. {
  23722. front: {
  23723. height: math.unit(5 + 4 / 12, "feet"),
  23724. weight: math.unit(120, "lb"),
  23725. name: "Front",
  23726. image: {
  23727. source: "./media/characters/luci/front.svg",
  23728. extra: 1985 / 1884,
  23729. bottom: 0.04
  23730. }
  23731. },
  23732. back: {
  23733. height: math.unit(5 + 4 / 12, "feet"),
  23734. weight: math.unit(120, "lb"),
  23735. name: "Back",
  23736. image: {
  23737. source: "./media/characters/luci/back.svg",
  23738. extra: 1892 / 1791,
  23739. bottom: 0.002
  23740. }
  23741. },
  23742. },
  23743. [
  23744. {
  23745. name: "Normal",
  23746. height: math.unit(5 + 4 / 12, "feet"),
  23747. default: true
  23748. },
  23749. ]
  23750. ))
  23751. characterMakers.push(() => makeCharacter(
  23752. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23753. {
  23754. front: {
  23755. height: math.unit(1500, "feet"),
  23756. weight: math.unit(3.8e6, "tons"),
  23757. name: "Front",
  23758. image: {
  23759. source: "./media/characters/2th/front.svg",
  23760. extra: 3489 / 3350,
  23761. bottom: 0.1
  23762. }
  23763. },
  23764. foot: {
  23765. height: math.unit(461, "feet"),
  23766. name: "Foot",
  23767. image: {
  23768. source: "./media/characters/2th/foot.svg"
  23769. }
  23770. },
  23771. },
  23772. [
  23773. {
  23774. name: "\"Micro\"",
  23775. height: math.unit(15 + 7 / 12, "feet")
  23776. },
  23777. {
  23778. name: "Normal",
  23779. height: math.unit(1500, "feet"),
  23780. default: true
  23781. },
  23782. {
  23783. name: "Macro",
  23784. height: math.unit(5000, "feet")
  23785. },
  23786. {
  23787. name: "Megamacro",
  23788. height: math.unit(15, "miles")
  23789. },
  23790. {
  23791. name: "Gigamacro",
  23792. height: math.unit(4000, "miles")
  23793. },
  23794. {
  23795. name: "Galactic",
  23796. height: math.unit(50, "AU")
  23797. },
  23798. ]
  23799. ))
  23800. characterMakers.push(() => makeCharacter(
  23801. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23802. {
  23803. front: {
  23804. height: math.unit(5 + 6 / 12, "feet"),
  23805. weight: math.unit(220, "lb"),
  23806. name: "Front",
  23807. image: {
  23808. source: "./media/characters/amethyst/front.svg",
  23809. extra: 2078 / 2040,
  23810. bottom: 0.045
  23811. }
  23812. },
  23813. back: {
  23814. height: math.unit(5 + 6 / 12, "feet"),
  23815. weight: math.unit(220, "lb"),
  23816. name: "Back",
  23817. image: {
  23818. source: "./media/characters/amethyst/back.svg",
  23819. extra: 2021 / 1989,
  23820. bottom: 0.02
  23821. }
  23822. },
  23823. },
  23824. [
  23825. {
  23826. name: "Normal",
  23827. height: math.unit(5 + 6 / 12, "feet"),
  23828. default: true
  23829. },
  23830. ]
  23831. ))
  23832. characterMakers.push(() => makeCharacter(
  23833. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23834. {
  23835. front: {
  23836. height: math.unit(4 + 11 / 12, "feet"),
  23837. weight: math.unit(120, "lb"),
  23838. name: "Front",
  23839. image: {
  23840. source: "./media/characters/yumi-akiyama/front.svg",
  23841. extra: 2638/2432,
  23842. bottom: 70/2708
  23843. }
  23844. },
  23845. back: {
  23846. height: math.unit(4 + 11 / 12, "feet"),
  23847. weight: math.unit(120, "lb"),
  23848. name: "Back",
  23849. image: {
  23850. source: "./media/characters/yumi-akiyama/back.svg",
  23851. extra: 2502/2397,
  23852. bottom: 80/2582
  23853. }
  23854. },
  23855. casual: {
  23856. height: math.unit(4 + 11 / 12, "feet"),
  23857. weight: math.unit(120, "lb"),
  23858. name: "Casual",
  23859. image: {
  23860. source: "./media/characters/yumi-akiyama/casual.svg",
  23861. extra: 958/887,
  23862. bottom: 41/999
  23863. }
  23864. },
  23865. jammies: {
  23866. height: math.unit(4 + 11 / 12, "feet"),
  23867. weight: math.unit(120, "lb"),
  23868. name: "Jammies",
  23869. image: {
  23870. source: "./media/characters/yumi-akiyama/jammies.svg",
  23871. extra: 958/894,
  23872. bottom: 37/995
  23873. }
  23874. },
  23875. warmWeather: {
  23876. height: math.unit(4 + 11 / 12, "feet"),
  23877. weight: math.unit(120, "lb"),
  23878. name: "Warm Weather",
  23879. image: {
  23880. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23881. extra: 929/865,
  23882. bottom: 76/1005
  23883. }
  23884. },
  23885. mouth: {
  23886. height: math.unit(0.35, "feet"),
  23887. name: "Mouth",
  23888. image: {
  23889. source: "./media/characters/yumi-akiyama/mouth.svg"
  23890. }
  23891. },
  23892. paws: {
  23893. height: math.unit(1.05, "feet"),
  23894. name: "Paws",
  23895. image: {
  23896. source: "./media/characters/yumi-akiyama/paws.svg"
  23897. }
  23898. },
  23899. cockRing: {
  23900. height: math.unit(0.225, "feet"),
  23901. name: "Cock Ring",
  23902. image: {
  23903. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  23904. }
  23905. },
  23906. },
  23907. [
  23908. {
  23909. name: "Galactic",
  23910. height: math.unit(50, "galaxies"),
  23911. default: true
  23912. },
  23913. {
  23914. name: "Universal",
  23915. height: math.unit(100, "universes")
  23916. },
  23917. ]
  23918. ))
  23919. characterMakers.push(() => makeCharacter(
  23920. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23921. {
  23922. front: {
  23923. height: math.unit(8, "feet"),
  23924. weight: math.unit(500, "lb"),
  23925. name: "Front",
  23926. image: {
  23927. source: "./media/characters/rifter-yrmori/front.svg",
  23928. extra: 1180 / 1125,
  23929. bottom: 0.02
  23930. }
  23931. },
  23932. back: {
  23933. height: math.unit(8, "feet"),
  23934. weight: math.unit(500, "lb"),
  23935. name: "Back",
  23936. image: {
  23937. source: "./media/characters/rifter-yrmori/back.svg",
  23938. extra: 1190 / 1145,
  23939. bottom: 0.001
  23940. }
  23941. },
  23942. wings: {
  23943. height: math.unit(7.75, "feet"),
  23944. weight: math.unit(500, "lb"),
  23945. name: "Wings",
  23946. image: {
  23947. source: "./media/characters/rifter-yrmori/wings.svg",
  23948. extra: 1357 / 1285
  23949. }
  23950. },
  23951. maw: {
  23952. height: math.unit(0.8, "feet"),
  23953. name: "Maw",
  23954. image: {
  23955. source: "./media/characters/rifter-yrmori/maw.svg"
  23956. }
  23957. },
  23958. mawfront: {
  23959. height: math.unit(1.45, "feet"),
  23960. name: "Maw (Front)",
  23961. image: {
  23962. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23963. }
  23964. },
  23965. },
  23966. [
  23967. {
  23968. name: "Normal",
  23969. height: math.unit(8, "feet"),
  23970. default: true
  23971. },
  23972. {
  23973. name: "Macro",
  23974. height: math.unit(42, "meters")
  23975. },
  23976. ]
  23977. ))
  23978. characterMakers.push(() => makeCharacter(
  23979. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23980. {
  23981. were: {
  23982. height: math.unit(25 + 6 / 12, "feet"),
  23983. weight: math.unit(10000, "lb"),
  23984. name: "Were",
  23985. image: {
  23986. source: "./media/characters/tahajin/were.svg",
  23987. extra: 801 / 770,
  23988. bottom: 0.042
  23989. }
  23990. },
  23991. aquatic: {
  23992. height: math.unit(6 + 4 / 12, "feet"),
  23993. weight: math.unit(160, "lb"),
  23994. name: "Aquatic",
  23995. image: {
  23996. source: "./media/characters/tahajin/aquatic.svg",
  23997. extra: 572 / 542,
  23998. bottom: 0.04
  23999. }
  24000. },
  24001. chow: {
  24002. height: math.unit(8 + 11 / 12, "feet"),
  24003. weight: math.unit(450, "lb"),
  24004. name: "Chow",
  24005. image: {
  24006. source: "./media/characters/tahajin/chow.svg",
  24007. extra: 660 / 640,
  24008. bottom: 0.015
  24009. }
  24010. },
  24011. demiNaga: {
  24012. height: math.unit(6 + 8 / 12, "feet"),
  24013. weight: math.unit(300, "lb"),
  24014. name: "Demi Naga",
  24015. image: {
  24016. source: "./media/characters/tahajin/demi-naga.svg",
  24017. extra: 643 / 615,
  24018. bottom: 0.1
  24019. }
  24020. },
  24021. data: {
  24022. height: math.unit(5, "inches"),
  24023. weight: math.unit(0.1, "lb"),
  24024. name: "Data",
  24025. image: {
  24026. source: "./media/characters/tahajin/data.svg"
  24027. }
  24028. },
  24029. fluu: {
  24030. height: math.unit(5 + 7 / 12, "feet"),
  24031. weight: math.unit(140, "lb"),
  24032. name: "Fluu",
  24033. image: {
  24034. source: "./media/characters/tahajin/fluu.svg",
  24035. extra: 628 / 592,
  24036. bottom: 0.02
  24037. }
  24038. },
  24039. starWarrior: {
  24040. height: math.unit(4 + 5 / 12, "feet"),
  24041. weight: math.unit(50, "lb"),
  24042. name: "Star Warrior",
  24043. image: {
  24044. source: "./media/characters/tahajin/star-warrior.svg"
  24045. }
  24046. },
  24047. },
  24048. [
  24049. {
  24050. name: "Normal",
  24051. height: math.unit(25 + 6 / 12, "feet"),
  24052. default: true
  24053. },
  24054. ]
  24055. ))
  24056. characterMakers.push(() => makeCharacter(
  24057. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24058. {
  24059. front: {
  24060. height: math.unit(8, "feet"),
  24061. weight: math.unit(350, "lb"),
  24062. name: "Front",
  24063. image: {
  24064. source: "./media/characters/gabira/front.svg",
  24065. extra: 1261/1154,
  24066. bottom: 51/1312
  24067. }
  24068. },
  24069. back: {
  24070. height: math.unit(8, "feet"),
  24071. weight: math.unit(350, "lb"),
  24072. name: "Back",
  24073. image: {
  24074. source: "./media/characters/gabira/back.svg",
  24075. extra: 1265/1163,
  24076. bottom: 46/1311
  24077. }
  24078. },
  24079. head: {
  24080. height: math.unit(2.85, "feet"),
  24081. name: "Head",
  24082. image: {
  24083. source: "./media/characters/gabira/head.svg"
  24084. }
  24085. },
  24086. },
  24087. [
  24088. {
  24089. name: "Normal",
  24090. height: math.unit(8, "feet"),
  24091. default: true
  24092. },
  24093. ]
  24094. ))
  24095. characterMakers.push(() => makeCharacter(
  24096. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24097. {
  24098. front: {
  24099. height: math.unit(5 + 3 / 12, "feet"),
  24100. weight: math.unit(137, "lb"),
  24101. name: "Front",
  24102. image: {
  24103. source: "./media/characters/sasha-katraine/front.svg",
  24104. extra: 1745/1694,
  24105. bottom: 37/1782
  24106. }
  24107. },
  24108. back: {
  24109. height: math.unit(5 + 3 / 12, "feet"),
  24110. weight: math.unit(137, "lb"),
  24111. name: "Back",
  24112. image: {
  24113. source: "./media/characters/sasha-katraine/back.svg",
  24114. extra: 1776/1699,
  24115. bottom: 26/1802
  24116. }
  24117. },
  24118. },
  24119. [
  24120. {
  24121. name: "Micro",
  24122. height: math.unit(5, "inches")
  24123. },
  24124. {
  24125. name: "Normal",
  24126. height: math.unit(5 + 3 / 12, "feet"),
  24127. default: true
  24128. },
  24129. ]
  24130. ))
  24131. characterMakers.push(() => makeCharacter(
  24132. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24133. {
  24134. side: {
  24135. height: math.unit(4, "inches"),
  24136. weight: math.unit(200, "grams"),
  24137. name: "Side",
  24138. image: {
  24139. source: "./media/characters/der/side.svg",
  24140. extra: 719 / 400,
  24141. bottom: 30.6 / 749.9187
  24142. }
  24143. },
  24144. },
  24145. [
  24146. {
  24147. name: "Micro",
  24148. height: math.unit(4, "inches"),
  24149. default: true
  24150. },
  24151. ]
  24152. ))
  24153. characterMakers.push(() => makeCharacter(
  24154. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24155. {
  24156. side: {
  24157. height: math.unit(30, "meters"),
  24158. weight: math.unit(700, "tonnes"),
  24159. name: "Side",
  24160. image: {
  24161. source: "./media/characters/fixerdragon/side.svg",
  24162. extra: (1293.0514 - 116.03) / 1106.86,
  24163. bottom: 116.03 / 1293.0514
  24164. }
  24165. },
  24166. },
  24167. [
  24168. {
  24169. name: "Planck",
  24170. height: math.unit(1.6e-35, "meters")
  24171. },
  24172. {
  24173. name: "Micro",
  24174. height: math.unit(0.4, "meters")
  24175. },
  24176. {
  24177. name: "Normal",
  24178. height: math.unit(30, "meters"),
  24179. default: true
  24180. },
  24181. {
  24182. name: "Megamacro",
  24183. height: math.unit(1.2, "megameters")
  24184. },
  24185. {
  24186. name: "Teramacro",
  24187. height: math.unit(130, "terameters")
  24188. },
  24189. {
  24190. name: "Yottamacro",
  24191. height: math.unit(6200, "yottameters")
  24192. },
  24193. ]
  24194. ));
  24195. characterMakers.push(() => makeCharacter(
  24196. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24197. {
  24198. front: {
  24199. height: math.unit(8, "feet"),
  24200. weight: math.unit(250, "lb"),
  24201. name: "Front",
  24202. image: {
  24203. source: "./media/characters/kite/front.svg",
  24204. extra: 2796 / 2659,
  24205. bottom: 0.002
  24206. }
  24207. },
  24208. },
  24209. [
  24210. {
  24211. name: "Normal",
  24212. height: math.unit(8, "feet"),
  24213. default: true
  24214. },
  24215. {
  24216. name: "Macro",
  24217. height: math.unit(360, "feet")
  24218. },
  24219. {
  24220. name: "Megamacro",
  24221. height: math.unit(1500, "feet")
  24222. },
  24223. ]
  24224. ))
  24225. characterMakers.push(() => makeCharacter(
  24226. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24227. {
  24228. anthro_front: {
  24229. height: math.unit(5 + 11/12, "feet"),
  24230. weight: math.unit(170, "lb"),
  24231. name: "Front",
  24232. image: {
  24233. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24234. extra: 1735/1585,
  24235. bottom: 96/1831
  24236. },
  24237. form: "anthro",
  24238. default: true
  24239. },
  24240. anthro_back: {
  24241. height: math.unit(5 + 11/12, "feet"),
  24242. weight: math.unit(170, "lb"),
  24243. name: "Back",
  24244. image: {
  24245. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24246. extra: 1749/1607,
  24247. bottom: 28/1777
  24248. },
  24249. form: "anthro"
  24250. },
  24251. anthro_male: {
  24252. height: math.unit(5 + 11/12, "feet"),
  24253. weight: math.unit(170, "lb"),
  24254. name: "Male",
  24255. image: {
  24256. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24257. extra: 1855/1713,
  24258. bottom: 63/1918
  24259. },
  24260. form: "anthro"
  24261. },
  24262. taur_front: {
  24263. height: math.unit(5 + 7/12, "feet"),
  24264. weight: math.unit(170, "lb"),
  24265. name: "Front",
  24266. image: {
  24267. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24268. extra: 1151/1059,
  24269. bottom: 356/1507
  24270. },
  24271. form: "taur",
  24272. default: true
  24273. },
  24274. anthro_frontDressed: {
  24275. height: math.unit(5 + 11/12, "feet"),
  24276. weight: math.unit(170, "lb"),
  24277. name: "Front (Dressed)",
  24278. image: {
  24279. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24280. extra: 1735/1585,
  24281. bottom: 96/1831
  24282. },
  24283. form: "anthro"
  24284. },
  24285. anthro_backDressed: {
  24286. height: math.unit(5 + 11/12, "feet"),
  24287. weight: math.unit(170, "lb"),
  24288. name: "Back (Dressed)",
  24289. image: {
  24290. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24291. extra: 1749/1607,
  24292. bottom: 28/1777
  24293. },
  24294. form: "anthro"
  24295. },
  24296. anthro_maleDressed: {
  24297. height: math.unit(5 + 11/12, "feet"),
  24298. weight: math.unit(170, "lb"),
  24299. name: "Male (Dressed)",
  24300. image: {
  24301. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24302. extra: 1855/1713,
  24303. bottom: 63/1918
  24304. },
  24305. form: "anthro"
  24306. },
  24307. taur_frontDressed: {
  24308. height: math.unit(5 + 7/12, "feet"),
  24309. weight: math.unit(170, "lb"),
  24310. name: "Front (Dressed)",
  24311. image: {
  24312. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24313. extra: 1151/1059,
  24314. bottom: 356/1507
  24315. },
  24316. form: "taur"
  24317. },
  24318. maw: {
  24319. height: math.unit(1.46, "feet"),
  24320. name: "Maw",
  24321. image: {
  24322. source: "./media/characters/poojawa-vynar/maw.svg"
  24323. },
  24324. allForms: true
  24325. },
  24326. head: {
  24327. height: math.unit(2.34, "feet"),
  24328. name: "Head",
  24329. image: {
  24330. source: "./media/characters/poojawa-vynar/head.svg"
  24331. },
  24332. allForms: true
  24333. },
  24334. leftPaw: {
  24335. height: math.unit(1.72, "feet"),
  24336. name: "Left Paw",
  24337. image: {
  24338. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24339. },
  24340. allForms: true
  24341. },
  24342. rightPaw: {
  24343. height: math.unit(1.61, "feet"),
  24344. name: "Right Paw",
  24345. image: {
  24346. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24347. },
  24348. allForms: true
  24349. },
  24350. toering: {
  24351. height: math.unit(2.9, "inches"),
  24352. name: "Toering",
  24353. image: {
  24354. source: "./media/characters/poojawa-vynar/toering.svg"
  24355. },
  24356. allForms: true
  24357. },
  24358. shaft: {
  24359. height: math.unit(0.625, "feet"),
  24360. name: "Shaft",
  24361. image: {
  24362. source: "./media/characters/poojawa-vynar/shaft.svg"
  24363. },
  24364. allForms: true
  24365. },
  24366. spade: {
  24367. height: math.unit(0.42, "feet"),
  24368. name: "Spade",
  24369. image: {
  24370. source: "./media/characters/poojawa-vynar/spade.svg"
  24371. },
  24372. allForms: true
  24373. },
  24374. },
  24375. [
  24376. {
  24377. name: "Shortstack",
  24378. height: math.unit(4, "feet"),
  24379. form: "anthro"
  24380. },
  24381. {
  24382. name: "Normal",
  24383. height: math.unit(5 + 11 / 12, "feet"),
  24384. form: "anthro",
  24385. default: true
  24386. },
  24387. {
  24388. name: "Tauric",
  24389. height: math.unit(4, "meters"),
  24390. form: "taur",
  24391. default: true
  24392. },
  24393. ],
  24394. {
  24395. "anthro": {
  24396. name: "Anthro",
  24397. default: true
  24398. },
  24399. "taur": {
  24400. name: "Taur",
  24401. },
  24402. }
  24403. ))
  24404. characterMakers.push(() => makeCharacter(
  24405. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24406. {
  24407. front: {
  24408. height: math.unit(293, "meters"),
  24409. weight: math.unit(70400, "tons"),
  24410. name: "Front",
  24411. image: {
  24412. source: "./media/characters/violette/front.svg",
  24413. extra: 1227 / 1180,
  24414. bottom: 0.005
  24415. }
  24416. },
  24417. back: {
  24418. height: math.unit(293, "meters"),
  24419. weight: math.unit(70400, "tons"),
  24420. name: "Back",
  24421. image: {
  24422. source: "./media/characters/violette/back.svg",
  24423. extra: 1227 / 1180,
  24424. bottom: 0.005
  24425. }
  24426. },
  24427. },
  24428. [
  24429. {
  24430. name: "Macro",
  24431. height: math.unit(293, "meters"),
  24432. default: true
  24433. },
  24434. ]
  24435. ))
  24436. characterMakers.push(() => makeCharacter(
  24437. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24438. {
  24439. front: {
  24440. height: math.unit(1050, "feet"),
  24441. weight: math.unit(200000, "tons"),
  24442. name: "Front",
  24443. image: {
  24444. source: "./media/characters/alessandra/front.svg",
  24445. extra: 960 / 912,
  24446. bottom: 0.06
  24447. }
  24448. },
  24449. },
  24450. [
  24451. {
  24452. name: "Macro",
  24453. height: math.unit(1050, "feet")
  24454. },
  24455. {
  24456. name: "Macro+",
  24457. height: math.unit(900, "meters"),
  24458. default: true
  24459. },
  24460. ]
  24461. ))
  24462. characterMakers.push(() => makeCharacter(
  24463. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24464. {
  24465. front: {
  24466. height: math.unit(5, "feet"),
  24467. weight: math.unit(187, "lb"),
  24468. name: "Front",
  24469. image: {
  24470. source: "./media/characters/person/front.svg",
  24471. extra: 3087 / 2945,
  24472. bottom: 91 / 3181
  24473. }
  24474. },
  24475. },
  24476. [
  24477. {
  24478. name: "Micro",
  24479. height: math.unit(3, "inches")
  24480. },
  24481. {
  24482. name: "Normal",
  24483. height: math.unit(5, "feet"),
  24484. default: true
  24485. },
  24486. {
  24487. name: "Macro",
  24488. height: math.unit(90, "feet")
  24489. },
  24490. {
  24491. name: "Max Size",
  24492. height: math.unit(280, "feet")
  24493. },
  24494. ]
  24495. ))
  24496. characterMakers.push(() => makeCharacter(
  24497. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24498. {
  24499. front: {
  24500. height: math.unit(4.5, "meters"),
  24501. weight: math.unit(3200, "lb"),
  24502. name: "Front",
  24503. image: {
  24504. source: "./media/characters/ty/front.svg",
  24505. extra: 1038 / 960,
  24506. bottom: 31.156 / 1068
  24507. }
  24508. },
  24509. back: {
  24510. height: math.unit(4.5, "meters"),
  24511. weight: math.unit(3200, "lb"),
  24512. name: "Back",
  24513. image: {
  24514. source: "./media/characters/ty/back.svg",
  24515. extra: 1044 / 966,
  24516. bottom: 7.48 / 1049
  24517. }
  24518. },
  24519. },
  24520. [
  24521. {
  24522. name: "Normal",
  24523. height: math.unit(4.5, "meters"),
  24524. default: true
  24525. },
  24526. ]
  24527. ))
  24528. characterMakers.push(() => makeCharacter(
  24529. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24530. {
  24531. front: {
  24532. height: math.unit(5 + 4 / 12, "feet"),
  24533. weight: math.unit(115, "lb"),
  24534. name: "Front",
  24535. image: {
  24536. source: "./media/characters/rocky/front.svg",
  24537. extra: 1012 / 975,
  24538. bottom: 54 / 1066
  24539. }
  24540. },
  24541. },
  24542. [
  24543. {
  24544. name: "Normal",
  24545. height: math.unit(5 + 4 / 12, "feet"),
  24546. default: true
  24547. },
  24548. ]
  24549. ))
  24550. characterMakers.push(() => makeCharacter(
  24551. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24552. {
  24553. upright: {
  24554. height: math.unit(6, "meters"),
  24555. weight: math.unit(4000, "kg"),
  24556. name: "Upright",
  24557. image: {
  24558. source: "./media/characters/ruin/upright.svg",
  24559. extra: 668 / 661,
  24560. bottom: 42 / 799.8396
  24561. }
  24562. },
  24563. },
  24564. [
  24565. {
  24566. name: "Normal",
  24567. height: math.unit(6, "meters"),
  24568. default: true
  24569. },
  24570. ]
  24571. ))
  24572. characterMakers.push(() => makeCharacter(
  24573. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24574. {
  24575. front: {
  24576. height: math.unit(5, "feet"),
  24577. weight: math.unit(106, "lb"),
  24578. name: "Front",
  24579. image: {
  24580. source: "./media/characters/robin/front.svg",
  24581. extra: 862 / 799,
  24582. bottom: 42.4 / 914.8856
  24583. }
  24584. },
  24585. },
  24586. [
  24587. {
  24588. name: "Normal",
  24589. height: math.unit(5, "feet"),
  24590. default: true
  24591. },
  24592. ]
  24593. ))
  24594. characterMakers.push(() => makeCharacter(
  24595. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24596. {
  24597. side: {
  24598. height: math.unit(3, "feet"),
  24599. weight: math.unit(225, "lb"),
  24600. name: "Side",
  24601. image: {
  24602. source: "./media/characters/saian/side.svg",
  24603. extra: 566 / 356,
  24604. bottom: 79.7 / 643
  24605. }
  24606. },
  24607. maw: {
  24608. height: math.unit(2.85, "feet"),
  24609. name: "Maw",
  24610. image: {
  24611. source: "./media/characters/saian/maw.svg"
  24612. }
  24613. },
  24614. },
  24615. [
  24616. {
  24617. name: "Normal",
  24618. height: math.unit(3, "feet"),
  24619. default: true
  24620. },
  24621. ]
  24622. ))
  24623. characterMakers.push(() => makeCharacter(
  24624. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24625. {
  24626. side: {
  24627. height: math.unit(8, "feet"),
  24628. weight: math.unit(300, "lb"),
  24629. name: "Side",
  24630. image: {
  24631. source: "./media/characters/equus-silvermane/side.svg",
  24632. extra: 2176 / 2050,
  24633. bottom: 65.7 / 2245
  24634. }
  24635. },
  24636. front: {
  24637. height: math.unit(8, "feet"),
  24638. weight: math.unit(300, "lb"),
  24639. name: "Front",
  24640. image: {
  24641. source: "./media/characters/equus-silvermane/front.svg",
  24642. extra: 4633 / 4400,
  24643. bottom: 71.3 / 4706.915
  24644. }
  24645. },
  24646. sideStepping: {
  24647. height: math.unit(8, "feet"),
  24648. weight: math.unit(300, "lb"),
  24649. name: "Side (Stepping)",
  24650. image: {
  24651. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24652. extra: 1968 / 1860,
  24653. bottom: 16.4 / 1989
  24654. }
  24655. },
  24656. },
  24657. [
  24658. {
  24659. name: "Normal",
  24660. height: math.unit(8, "feet")
  24661. },
  24662. {
  24663. name: "Minimacro",
  24664. height: math.unit(75, "feet"),
  24665. default: true
  24666. },
  24667. {
  24668. name: "Macro",
  24669. height: math.unit(150, "feet")
  24670. },
  24671. {
  24672. name: "Macro+",
  24673. height: math.unit(1000, "feet")
  24674. },
  24675. {
  24676. name: "Megamacro",
  24677. height: math.unit(1, "mile")
  24678. },
  24679. ]
  24680. ))
  24681. characterMakers.push(() => makeCharacter(
  24682. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24683. {
  24684. side: {
  24685. height: math.unit(20, "feet"),
  24686. weight: math.unit(30000, "kg"),
  24687. name: "Side",
  24688. image: {
  24689. source: "./media/characters/windar/side.svg",
  24690. extra: 1491 / 1248,
  24691. bottom: 82.56 / 1568
  24692. }
  24693. },
  24694. },
  24695. [
  24696. {
  24697. name: "Normal",
  24698. height: math.unit(20, "feet"),
  24699. default: true
  24700. },
  24701. ]
  24702. ))
  24703. characterMakers.push(() => makeCharacter(
  24704. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24705. {
  24706. side: {
  24707. height: math.unit(15.66, "feet"),
  24708. weight: math.unit(150, "lb"),
  24709. name: "Side",
  24710. image: {
  24711. source: "./media/characters/melody/side.svg",
  24712. extra: 1097 / 944,
  24713. bottom: 11.8 / 1109
  24714. }
  24715. },
  24716. sideOutfit: {
  24717. height: math.unit(15.66, "feet"),
  24718. weight: math.unit(150, "lb"),
  24719. name: "Side (Outfit)",
  24720. image: {
  24721. source: "./media/characters/melody/side-outfit.svg",
  24722. extra: 1097 / 944,
  24723. bottom: 11.8 / 1109
  24724. }
  24725. },
  24726. },
  24727. [
  24728. {
  24729. name: "Normal",
  24730. height: math.unit(15.66, "feet"),
  24731. default: true
  24732. },
  24733. ]
  24734. ))
  24735. characterMakers.push(() => makeCharacter(
  24736. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24737. {
  24738. armoredFront: {
  24739. height: math.unit(8, "feet"),
  24740. weight: math.unit(325, "lb"),
  24741. name: "Front",
  24742. image: {
  24743. source: "./media/characters/windera/armored-front.svg",
  24744. extra: 1830/1598,
  24745. bottom: 151/1981
  24746. },
  24747. form: "armored",
  24748. default: true
  24749. },
  24750. macroFront: {
  24751. height: math.unit(70, "feet"),
  24752. weight: math.unit(315453, "lb"),
  24753. name: "Front",
  24754. image: {
  24755. source: "./media/characters/windera/macro-front.svg",
  24756. extra: 963/883,
  24757. bottom: 23/986
  24758. },
  24759. form: "macro",
  24760. default: true
  24761. },
  24762. },
  24763. [
  24764. {
  24765. name: "Normal",
  24766. height: math.unit(8, "feet"),
  24767. default: true,
  24768. form: "armored"
  24769. },
  24770. {
  24771. name: "Normal",
  24772. height: math.unit(70, "feet"),
  24773. default: true,
  24774. form: "macro"
  24775. },
  24776. ],
  24777. {
  24778. "armored": {
  24779. name: "Armored",
  24780. default: true
  24781. },
  24782. "macro": {
  24783. name: "Macro",
  24784. },
  24785. }
  24786. ))
  24787. characterMakers.push(() => makeCharacter(
  24788. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24789. {
  24790. front: {
  24791. height: math.unit(28.75, "feet"),
  24792. weight: math.unit(2000, "kg"),
  24793. name: "Front",
  24794. image: {
  24795. source: "./media/characters/sonear/front.svg",
  24796. extra: 1041.1 / 964.9,
  24797. bottom: 53.7 / 1096.6
  24798. }
  24799. },
  24800. },
  24801. [
  24802. {
  24803. name: "Normal",
  24804. height: math.unit(28.75, "feet"),
  24805. default: true
  24806. },
  24807. ]
  24808. ))
  24809. characterMakers.push(() => makeCharacter(
  24810. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24811. {
  24812. side: {
  24813. height: math.unit(25.5, "feet"),
  24814. weight: math.unit(23000, "kg"),
  24815. name: "Side",
  24816. image: {
  24817. source: "./media/characters/kanara/side.svg"
  24818. }
  24819. },
  24820. },
  24821. [
  24822. {
  24823. name: "Normal",
  24824. height: math.unit(25.5, "feet"),
  24825. default: true
  24826. },
  24827. ]
  24828. ))
  24829. characterMakers.push(() => makeCharacter(
  24830. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24831. {
  24832. side: {
  24833. height: math.unit(10, "feet"),
  24834. weight: math.unit(1000, "kg"),
  24835. name: "Side",
  24836. image: {
  24837. source: "./media/characters/ereus/side.svg",
  24838. extra: 1157 / 959,
  24839. bottom: 153 / 1312.5
  24840. }
  24841. },
  24842. },
  24843. [
  24844. {
  24845. name: "Normal",
  24846. height: math.unit(10, "feet"),
  24847. default: true
  24848. },
  24849. ]
  24850. ))
  24851. characterMakers.push(() => makeCharacter(
  24852. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24853. {
  24854. side: {
  24855. height: math.unit(4.5, "feet"),
  24856. weight: math.unit(500, "lb"),
  24857. name: "Side",
  24858. image: {
  24859. source: "./media/characters/e-ter/side.svg",
  24860. extra: 1550 / 1248,
  24861. bottom: 146 / 1694
  24862. }
  24863. },
  24864. },
  24865. [
  24866. {
  24867. name: "Normal",
  24868. height: math.unit(4.5, "feet"),
  24869. default: true
  24870. },
  24871. ]
  24872. ))
  24873. characterMakers.push(() => makeCharacter(
  24874. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24875. {
  24876. side: {
  24877. height: math.unit(9.7, "feet"),
  24878. weight: math.unit(4000, "kg"),
  24879. name: "Side",
  24880. image: {
  24881. source: "./media/characters/yamie/side.svg"
  24882. }
  24883. },
  24884. },
  24885. [
  24886. {
  24887. name: "Normal",
  24888. height: math.unit(9.7, "feet"),
  24889. default: true
  24890. },
  24891. ]
  24892. ))
  24893. characterMakers.push(() => makeCharacter(
  24894. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24895. {
  24896. front: {
  24897. height: math.unit(50, "feet"),
  24898. weight: math.unit(50000, "kg"),
  24899. name: "Front",
  24900. image: {
  24901. source: "./media/characters/anders/front.svg",
  24902. extra: 570 / 539,
  24903. bottom: 14.7 / 586.7
  24904. }
  24905. },
  24906. },
  24907. [
  24908. {
  24909. name: "Large",
  24910. height: math.unit(50, "feet")
  24911. },
  24912. {
  24913. name: "Macro",
  24914. height: math.unit(2000, "feet"),
  24915. default: true
  24916. },
  24917. {
  24918. name: "Megamacro",
  24919. height: math.unit(12, "miles")
  24920. },
  24921. ]
  24922. ))
  24923. characterMakers.push(() => makeCharacter(
  24924. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24925. {
  24926. front: {
  24927. height: math.unit(7 + 2 / 12, "feet"),
  24928. weight: math.unit(300, "lb"),
  24929. name: "Front",
  24930. image: {
  24931. source: "./media/characters/reban/front.svg",
  24932. extra: 1287/1212,
  24933. bottom: 148/1435
  24934. }
  24935. },
  24936. head: {
  24937. height: math.unit(1.95, "feet"),
  24938. name: "Head",
  24939. image: {
  24940. source: "./media/characters/reban/head.svg"
  24941. }
  24942. },
  24943. maw: {
  24944. height: math.unit(0.95, "feet"),
  24945. name: "Maw",
  24946. image: {
  24947. source: "./media/characters/reban/maw.svg"
  24948. }
  24949. },
  24950. foot: {
  24951. height: math.unit(1.65, "feet"),
  24952. name: "Foot",
  24953. image: {
  24954. source: "./media/characters/reban/foot.svg"
  24955. }
  24956. },
  24957. dick: {
  24958. height: math.unit(7 / 5, "feet"),
  24959. name: "Dick",
  24960. image: {
  24961. source: "./media/characters/reban/dick.svg"
  24962. }
  24963. },
  24964. },
  24965. [
  24966. {
  24967. name: "Natural Height",
  24968. height: math.unit(7 + 2 / 12, "feet")
  24969. },
  24970. {
  24971. name: "Macro",
  24972. height: math.unit(500, "feet"),
  24973. default: true
  24974. },
  24975. {
  24976. name: "Canon Height",
  24977. height: math.unit(50, "AU")
  24978. },
  24979. ]
  24980. ))
  24981. characterMakers.push(() => makeCharacter(
  24982. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24983. {
  24984. front: {
  24985. height: math.unit(6, "feet"),
  24986. weight: math.unit(150, "lb"),
  24987. name: "Front",
  24988. image: {
  24989. source: "./media/characters/terrance-keayes/front.svg",
  24990. extra: 1.005,
  24991. bottom: 151 / 1615
  24992. }
  24993. },
  24994. side: {
  24995. height: math.unit(6, "feet"),
  24996. weight: math.unit(150, "lb"),
  24997. name: "Side",
  24998. image: {
  24999. source: "./media/characters/terrance-keayes/side.svg",
  25000. extra: 1.005,
  25001. bottom: 129.4 / 1544
  25002. }
  25003. },
  25004. back: {
  25005. height: math.unit(6, "feet"),
  25006. weight: math.unit(150, "lb"),
  25007. name: "Back",
  25008. image: {
  25009. source: "./media/characters/terrance-keayes/back.svg",
  25010. extra: 1.005,
  25011. bottom: 58.4 / 1557.3
  25012. }
  25013. },
  25014. dick: {
  25015. height: math.unit(6 * 0.208, "feet"),
  25016. name: "Dick",
  25017. image: {
  25018. source: "./media/characters/terrance-keayes/dick.svg"
  25019. }
  25020. },
  25021. },
  25022. [
  25023. {
  25024. name: "Canon Height",
  25025. height: math.unit(35, "miles"),
  25026. default: true
  25027. },
  25028. ]
  25029. ))
  25030. characterMakers.push(() => makeCharacter(
  25031. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25032. {
  25033. front: {
  25034. height: math.unit(6, "feet"),
  25035. weight: math.unit(150, "lb"),
  25036. name: "Front",
  25037. image: {
  25038. source: "./media/characters/ofelia/front.svg",
  25039. extra: 1130/1117,
  25040. bottom: 91/1221
  25041. }
  25042. },
  25043. back: {
  25044. height: math.unit(6, "feet"),
  25045. weight: math.unit(150, "lb"),
  25046. name: "Back",
  25047. image: {
  25048. source: "./media/characters/ofelia/back.svg",
  25049. extra: 1172/1159,
  25050. bottom: 28/1200
  25051. }
  25052. },
  25053. maw: {
  25054. height: math.unit(1, "feet"),
  25055. name: "Maw",
  25056. image: {
  25057. source: "./media/characters/ofelia/maw.svg"
  25058. }
  25059. },
  25060. foot: {
  25061. height: math.unit(1.949, "feet"),
  25062. name: "Foot",
  25063. image: {
  25064. source: "./media/characters/ofelia/foot.svg"
  25065. }
  25066. },
  25067. },
  25068. [
  25069. {
  25070. name: "Canon Height",
  25071. height: math.unit(2000, "miles"),
  25072. default: true
  25073. },
  25074. ]
  25075. ))
  25076. characterMakers.push(() => makeCharacter(
  25077. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25078. {
  25079. front: {
  25080. height: math.unit(6, "feet"),
  25081. weight: math.unit(150, "lb"),
  25082. name: "Front",
  25083. image: {
  25084. source: "./media/characters/samuel/front.svg",
  25085. extra: 265 / 258,
  25086. bottom: 2 / 266.1566
  25087. }
  25088. },
  25089. },
  25090. [
  25091. {
  25092. name: "Macro",
  25093. height: math.unit(100, "feet"),
  25094. default: true
  25095. },
  25096. {
  25097. name: "Full Size",
  25098. height: math.unit(1000, "miles")
  25099. },
  25100. ]
  25101. ))
  25102. characterMakers.push(() => makeCharacter(
  25103. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25104. {
  25105. front: {
  25106. height: math.unit(6, "feet"),
  25107. weight: math.unit(300, "lb"),
  25108. name: "Front",
  25109. image: {
  25110. source: "./media/characters/beishir-kiel/front.svg",
  25111. extra: 569 / 547,
  25112. bottom: 41.9 / 609
  25113. }
  25114. },
  25115. maw: {
  25116. height: math.unit(6 * 0.202, "feet"),
  25117. name: "Maw",
  25118. image: {
  25119. source: "./media/characters/beishir-kiel/maw.svg"
  25120. }
  25121. },
  25122. },
  25123. [
  25124. {
  25125. name: "Macro",
  25126. height: math.unit(300, "feet"),
  25127. default: true
  25128. },
  25129. ]
  25130. ))
  25131. characterMakers.push(() => makeCharacter(
  25132. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25133. {
  25134. front: {
  25135. height: math.unit(5 + 7/12, "feet"),
  25136. weight: math.unit(120, "lb"),
  25137. name: "Front",
  25138. image: {
  25139. source: "./media/characters/logan-grey/front.svg",
  25140. extra: 1836/1738,
  25141. bottom: 108/1944
  25142. }
  25143. },
  25144. back: {
  25145. height: math.unit(5 + 7/12, "feet"),
  25146. weight: math.unit(120, "lb"),
  25147. name: "Back",
  25148. image: {
  25149. source: "./media/characters/logan-grey/back.svg",
  25150. extra: 1880/1794,
  25151. bottom: 24/1904
  25152. }
  25153. },
  25154. frontSfw: {
  25155. height: math.unit(5 + 7/12, "feet"),
  25156. weight: math.unit(120, "lb"),
  25157. name: "Front (SFW)",
  25158. image: {
  25159. source: "./media/characters/logan-grey/front-sfw.svg",
  25160. extra: 1836/1738,
  25161. bottom: 108/1944
  25162. }
  25163. },
  25164. backSfw: {
  25165. height: math.unit(5 + 7/12, "feet"),
  25166. weight: math.unit(120, "lb"),
  25167. name: "Back (SFW)",
  25168. image: {
  25169. source: "./media/characters/logan-grey/back-sfw.svg",
  25170. extra: 1880/1794,
  25171. bottom: 24/1904
  25172. }
  25173. },
  25174. hands: {
  25175. height: math.unit(0.84, "feet"),
  25176. name: "Hands",
  25177. image: {
  25178. source: "./media/characters/logan-grey/hands.svg"
  25179. }
  25180. },
  25181. paws: {
  25182. height: math.unit(0.72, "feet"),
  25183. name: "Paws",
  25184. image: {
  25185. source: "./media/characters/logan-grey/paws.svg"
  25186. }
  25187. },
  25188. cock: {
  25189. height: math.unit(1.45, "feet"),
  25190. name: "Cock",
  25191. image: {
  25192. source: "./media/characters/logan-grey/cock.svg"
  25193. }
  25194. },
  25195. cockAlt: {
  25196. height: math.unit(1.437, "feet"),
  25197. name: "Cock (alt)",
  25198. image: {
  25199. source: "./media/characters/logan-grey/cock-alt.svg"
  25200. }
  25201. },
  25202. },
  25203. [
  25204. {
  25205. name: "Normal",
  25206. height: math.unit(5 + 8 / 12, "feet")
  25207. },
  25208. {
  25209. name: "The 500 Foot Femboy",
  25210. height: math.unit(500, "feet"),
  25211. default: true
  25212. },
  25213. {
  25214. name: "Megmacro",
  25215. height: math.unit(20, "miles")
  25216. },
  25217. ]
  25218. ))
  25219. characterMakers.push(() => makeCharacter(
  25220. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25221. {
  25222. front: {
  25223. height: math.unit(8 + 2 / 12, "feet"),
  25224. weight: math.unit(275, "lb"),
  25225. name: "Front",
  25226. image: {
  25227. source: "./media/characters/draganta/front.svg",
  25228. extra: 1177 / 1135,
  25229. bottom: 33.46 / 1212.1
  25230. }
  25231. },
  25232. },
  25233. [
  25234. {
  25235. name: "Normal",
  25236. height: math.unit(8 + 6 / 12, "feet"),
  25237. default: true
  25238. },
  25239. {
  25240. name: "Macro",
  25241. height: math.unit(150, "feet")
  25242. },
  25243. {
  25244. name: "Megamacro",
  25245. height: math.unit(1000, "miles")
  25246. },
  25247. ]
  25248. ))
  25249. characterMakers.push(() => makeCharacter(
  25250. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25251. {
  25252. front: {
  25253. height: math.unit(1.72, "m"),
  25254. weight: math.unit(80, "lb"),
  25255. name: "Front",
  25256. image: {
  25257. source: "./media/characters/voski/front.svg",
  25258. extra: 2076.22 / 2022.4,
  25259. bottom: 102.7 / 2177.3866
  25260. }
  25261. },
  25262. frontFlaccid: {
  25263. height: math.unit(1.72, "m"),
  25264. weight: math.unit(80, "lb"),
  25265. name: "Front (Flaccid)",
  25266. image: {
  25267. source: "./media/characters/voski/front-flaccid.svg",
  25268. extra: 2076.22 / 2022.4,
  25269. bottom: 102.7 / 2177.3866
  25270. }
  25271. },
  25272. frontErect: {
  25273. height: math.unit(1.72, "m"),
  25274. weight: math.unit(80, "lb"),
  25275. name: "Front (Erect)",
  25276. image: {
  25277. source: "./media/characters/voski/front-erect.svg",
  25278. extra: 2076.22 / 2022.4,
  25279. bottom: 102.7 / 2177.3866
  25280. }
  25281. },
  25282. back: {
  25283. height: math.unit(1.72, "m"),
  25284. weight: math.unit(80, "lb"),
  25285. name: "Back",
  25286. image: {
  25287. source: "./media/characters/voski/back.svg",
  25288. extra: 2104 / 2051,
  25289. bottom: 10.45 / 2113.63
  25290. }
  25291. },
  25292. },
  25293. [
  25294. {
  25295. name: "Normal",
  25296. height: math.unit(1.72, "m")
  25297. },
  25298. {
  25299. name: "Macro",
  25300. height: math.unit(55, "m"),
  25301. default: true
  25302. },
  25303. {
  25304. name: "Macro+",
  25305. height: math.unit(300, "m")
  25306. },
  25307. {
  25308. name: "Macro++",
  25309. height: math.unit(700, "m")
  25310. },
  25311. {
  25312. name: "Macro+++",
  25313. height: math.unit(4500, "m")
  25314. },
  25315. {
  25316. name: "Macro++++",
  25317. height: math.unit(45, "km")
  25318. },
  25319. {
  25320. name: "Macro+++++",
  25321. height: math.unit(1220, "km")
  25322. },
  25323. ]
  25324. ))
  25325. characterMakers.push(() => makeCharacter(
  25326. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25327. {
  25328. front: {
  25329. height: math.unit(2.3, "m"),
  25330. weight: math.unit(304, "kg"),
  25331. name: "Front",
  25332. image: {
  25333. source: "./media/characters/icowom-lee/front.svg",
  25334. extra: 985 / 955,
  25335. bottom: 25.4 / 1012
  25336. }
  25337. },
  25338. fronttentacles: {
  25339. height: math.unit(2.3, "m"),
  25340. weight: math.unit(304, "kg"),
  25341. name: "Front-tentacles",
  25342. image: {
  25343. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25344. extra: 985 / 955,
  25345. bottom: 25.4 / 1012
  25346. }
  25347. },
  25348. back: {
  25349. height: math.unit(2.3, "m"),
  25350. weight: math.unit(304, "kg"),
  25351. name: "Back",
  25352. image: {
  25353. source: "./media/characters/icowom-lee/back.svg",
  25354. extra: 975 / 954,
  25355. bottom: 9.5 / 985
  25356. }
  25357. },
  25358. backtentacles: {
  25359. height: math.unit(2.3, "m"),
  25360. weight: math.unit(304, "kg"),
  25361. name: "Back-tentacles",
  25362. image: {
  25363. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25364. extra: 975 / 954,
  25365. bottom: 9.5 / 985
  25366. }
  25367. },
  25368. frontDressed: {
  25369. height: math.unit(2.3, "m"),
  25370. weight: math.unit(304, "kg"),
  25371. name: "Front (Dressed)",
  25372. image: {
  25373. source: "./media/characters/icowom-lee/front-dressed.svg",
  25374. extra: 3076 / 2933,
  25375. bottom: 51.4 / 3125.1889
  25376. }
  25377. },
  25378. rump: {
  25379. height: math.unit(0.776, "meters"),
  25380. name: "Rump",
  25381. image: {
  25382. source: "./media/characters/icowom-lee/rump.svg"
  25383. }
  25384. },
  25385. genitals: {
  25386. height: math.unit(0.78, "meters"),
  25387. name: "Genitals",
  25388. image: {
  25389. source: "./media/characters/icowom-lee/genitals.svg"
  25390. }
  25391. },
  25392. },
  25393. [
  25394. {
  25395. name: "Normal",
  25396. height: math.unit(2.3, "meters"),
  25397. default: true
  25398. },
  25399. {
  25400. name: "Macro",
  25401. height: math.unit(94, "meters"),
  25402. default: true
  25403. },
  25404. ]
  25405. ))
  25406. characterMakers.push(() => makeCharacter(
  25407. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25408. {
  25409. front: {
  25410. height: math.unit(22, "meters"),
  25411. weight: math.unit(21000, "kg"),
  25412. name: "Front",
  25413. image: {
  25414. source: "./media/characters/shock-diamond/front.svg",
  25415. extra: 2204 / 2053,
  25416. bottom: 65 / 2239.47
  25417. }
  25418. },
  25419. frontNude: {
  25420. height: math.unit(22, "meters"),
  25421. weight: math.unit(21000, "kg"),
  25422. name: "Front (Nude)",
  25423. image: {
  25424. source: "./media/characters/shock-diamond/front-nude.svg",
  25425. extra: 2514 / 2285,
  25426. bottom: 13 / 2527.56
  25427. }
  25428. },
  25429. },
  25430. [
  25431. {
  25432. name: "Normal",
  25433. height: math.unit(3, "meters")
  25434. },
  25435. {
  25436. name: "Macro",
  25437. height: math.unit(22, "meters"),
  25438. default: true
  25439. },
  25440. ]
  25441. ))
  25442. characterMakers.push(() => makeCharacter(
  25443. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25444. {
  25445. front: {
  25446. height: math.unit(5 + 4/12, "feet"),
  25447. weight: math.unit(125, "lb"),
  25448. name: "Front",
  25449. image: {
  25450. source: "./media/characters/rory/front.svg",
  25451. extra: 1790/1681,
  25452. bottom: 66/1856
  25453. },
  25454. form: "normal",
  25455. default: true
  25456. },
  25457. back: {
  25458. height: math.unit(5 + 4/12, "feet"),
  25459. weight: math.unit(125, "lb"),
  25460. name: "Back",
  25461. image: {
  25462. source: "./media/characters/rory/back.svg",
  25463. extra: 1805/1690,
  25464. bottom: 56/1861
  25465. },
  25466. form: "normal"
  25467. },
  25468. frontDressed: {
  25469. height: math.unit(5 + 4/12, "feet"),
  25470. weight: math.unit(125, "lb"),
  25471. name: "Front (Dressed)",
  25472. image: {
  25473. source: "./media/characters/rory/front-dressed.svg",
  25474. extra: 1790/1681,
  25475. bottom: 66/1856
  25476. },
  25477. form: "normal"
  25478. },
  25479. backDressed: {
  25480. height: math.unit(5 + 4/12, "feet"),
  25481. weight: math.unit(125, "lb"),
  25482. name: "Back (Dressed)",
  25483. image: {
  25484. source: "./media/characters/rory/back-dressed.svg",
  25485. extra: 1805/1690,
  25486. bottom: 56/1861
  25487. },
  25488. form: "normal"
  25489. },
  25490. frontNsfw: {
  25491. height: math.unit(5 + 4/12, "feet"),
  25492. weight: math.unit(125, "lb"),
  25493. name: "Front (NSFW)",
  25494. image: {
  25495. source: "./media/characters/rory/front-nsfw.svg",
  25496. extra: 1790/1681,
  25497. bottom: 66/1856
  25498. },
  25499. form: "normal"
  25500. },
  25501. backNsfw: {
  25502. height: math.unit(5 + 4/12, "feet"),
  25503. weight: math.unit(125, "lb"),
  25504. name: "Back (NSFW)",
  25505. image: {
  25506. source: "./media/characters/rory/back-nsfw.svg",
  25507. extra: 1805/1690,
  25508. bottom: 56/1861
  25509. },
  25510. form: "normal"
  25511. },
  25512. dick: {
  25513. height: math.unit(0.8, "feet"),
  25514. name: "Dick",
  25515. image: {
  25516. source: "./media/characters/rory/dick.svg"
  25517. },
  25518. form: "normal"
  25519. },
  25520. thicc_front: {
  25521. height: math.unit(5 + 4/12, "feet"),
  25522. weight: math.unit(195, "lb"),
  25523. name: "Front",
  25524. image: {
  25525. source: "./media/characters/rory/thicc-front.svg",
  25526. extra: 1220/1100,
  25527. bottom: 103/1323
  25528. },
  25529. form: "thicc",
  25530. default: true
  25531. },
  25532. thicc_back: {
  25533. height: math.unit(5 + 4/12, "feet"),
  25534. weight: math.unit(195, "lb"),
  25535. name: "Back",
  25536. image: {
  25537. source: "./media/characters/rory/thicc-back.svg",
  25538. extra: 1166/1086,
  25539. bottom: 35/1201
  25540. },
  25541. form: "thicc"
  25542. },
  25543. },
  25544. [
  25545. {
  25546. name: "Micro",
  25547. height: math.unit(3, "inches"),
  25548. allForms: true
  25549. },
  25550. {
  25551. name: "Normal",
  25552. height: math.unit(5 + 4/12, "feet"),
  25553. allForms: true,
  25554. default: true
  25555. },
  25556. {
  25557. name: "Macro",
  25558. height: math.unit(90, "feet"),
  25559. allForms: true
  25560. },
  25561. {
  25562. name: "Supercharged",
  25563. height: math.unit(270, "feet"),
  25564. allForms: true
  25565. },
  25566. ],
  25567. {
  25568. "normal": {
  25569. name: "Normal",
  25570. default: true
  25571. },
  25572. "thicc": {
  25573. name: "Thicc",
  25574. },
  25575. }
  25576. ))
  25577. characterMakers.push(() => makeCharacter(
  25578. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25579. {
  25580. front: {
  25581. height: math.unit(5 + 9 / 12, "feet"),
  25582. weight: math.unit(190, "lb"),
  25583. name: "Front",
  25584. image: {
  25585. source: "./media/characters/sprisk/front.svg",
  25586. extra: 1225 / 1180,
  25587. bottom: 42.7 / 1266.4
  25588. }
  25589. },
  25590. frontNsfw: {
  25591. height: math.unit(5 + 9 / 12, "feet"),
  25592. weight: math.unit(190, "lb"),
  25593. name: "Front (NSFW)",
  25594. image: {
  25595. source: "./media/characters/sprisk/front-nsfw.svg",
  25596. extra: 1225 / 1180,
  25597. bottom: 42.7 / 1266.4
  25598. }
  25599. },
  25600. back: {
  25601. height: math.unit(5 + 9 / 12, "feet"),
  25602. weight: math.unit(190, "lb"),
  25603. name: "Back",
  25604. image: {
  25605. source: "./media/characters/sprisk/back.svg",
  25606. extra: 1247 / 1200,
  25607. bottom: 5.6 / 1253.04
  25608. }
  25609. },
  25610. },
  25611. [
  25612. {
  25613. name: "Tiny",
  25614. height: math.unit(2, "inches")
  25615. },
  25616. {
  25617. name: "Normal",
  25618. height: math.unit(5 + 9 / 12, "feet"),
  25619. default: true
  25620. },
  25621. {
  25622. name: "Mini Macro",
  25623. height: math.unit(18, "feet")
  25624. },
  25625. {
  25626. name: "Macro",
  25627. height: math.unit(100, "feet")
  25628. },
  25629. {
  25630. name: "MACRO",
  25631. height: math.unit(50, "miles")
  25632. },
  25633. {
  25634. name: "M A C R O",
  25635. height: math.unit(300, "miles")
  25636. },
  25637. ]
  25638. ))
  25639. characterMakers.push(() => makeCharacter(
  25640. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25641. {
  25642. side: {
  25643. height: math.unit(15.6, "meters"),
  25644. weight: math.unit(700000, "kg"),
  25645. name: "Side",
  25646. image: {
  25647. source: "./media/characters/bunsen/side.svg",
  25648. extra: 1644 / 358
  25649. }
  25650. },
  25651. foot: {
  25652. height: math.unit(1.611 * 1644 / 358, "meter"),
  25653. name: "Foot",
  25654. image: {
  25655. source: "./media/characters/bunsen/foot.svg"
  25656. }
  25657. },
  25658. },
  25659. [
  25660. {
  25661. name: "Small",
  25662. height: math.unit(10, "feet")
  25663. },
  25664. {
  25665. name: "Normal",
  25666. height: math.unit(15.6, "meters"),
  25667. default: true
  25668. },
  25669. ]
  25670. ))
  25671. characterMakers.push(() => makeCharacter(
  25672. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25673. {
  25674. front: {
  25675. height: math.unit(4 + 11 / 12, "feet"),
  25676. weight: math.unit(140, "lb"),
  25677. name: "Front",
  25678. image: {
  25679. source: "./media/characters/sesh/front.svg",
  25680. extra: 3420 / 3231,
  25681. bottom: 72 / 3949.5
  25682. }
  25683. },
  25684. },
  25685. [
  25686. {
  25687. name: "Normal",
  25688. height: math.unit(4 + 11 / 12, "feet")
  25689. },
  25690. {
  25691. name: "Grown",
  25692. height: math.unit(15, "feet"),
  25693. default: true
  25694. },
  25695. {
  25696. name: "Macro",
  25697. height: math.unit(1500, "feet")
  25698. },
  25699. {
  25700. name: "Megamacro",
  25701. height: math.unit(30, "miles")
  25702. },
  25703. {
  25704. name: "Continental",
  25705. height: math.unit(3000, "miles")
  25706. },
  25707. {
  25708. name: "Gravity Mass",
  25709. height: math.unit(300000, "miles")
  25710. },
  25711. {
  25712. name: "Planet Buster",
  25713. height: math.unit(30000000, "miles")
  25714. },
  25715. {
  25716. name: "Big",
  25717. height: math.unit(3000000000, "miles")
  25718. },
  25719. ]
  25720. ))
  25721. characterMakers.push(() => makeCharacter(
  25722. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25723. {
  25724. front: {
  25725. height: math.unit(9, "feet"),
  25726. weight: math.unit(350, "lb"),
  25727. name: "Front",
  25728. image: {
  25729. source: "./media/characters/pepper/front.svg",
  25730. extra: 1448 / 1312,
  25731. bottom: 9.4 / 1457.88
  25732. }
  25733. },
  25734. back: {
  25735. height: math.unit(9, "feet"),
  25736. weight: math.unit(350, "lb"),
  25737. name: "Back",
  25738. image: {
  25739. source: "./media/characters/pepper/back.svg",
  25740. extra: 1423 / 1300,
  25741. bottom: 4.6 / 1429
  25742. }
  25743. },
  25744. maw: {
  25745. height: math.unit(0.932, "feet"),
  25746. name: "Maw",
  25747. image: {
  25748. source: "./media/characters/pepper/maw.svg"
  25749. }
  25750. },
  25751. },
  25752. [
  25753. {
  25754. name: "Normal",
  25755. height: math.unit(9, "feet"),
  25756. default: true
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25762. {
  25763. front: {
  25764. height: math.unit(6, "feet"),
  25765. weight: math.unit(150, "lb"),
  25766. name: "Front",
  25767. image: {
  25768. source: "./media/characters/maelstrom/front.svg",
  25769. extra: 2100 / 1883,
  25770. bottom: 94 / 2196.7
  25771. }
  25772. },
  25773. },
  25774. [
  25775. {
  25776. name: "Less Kaiju",
  25777. height: math.unit(200, "feet")
  25778. },
  25779. {
  25780. name: "Kaiju",
  25781. height: math.unit(400, "feet"),
  25782. default: true
  25783. },
  25784. {
  25785. name: "Kaiju-er",
  25786. height: math.unit(600, "feet")
  25787. },
  25788. ]
  25789. ))
  25790. characterMakers.push(() => makeCharacter(
  25791. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25792. {
  25793. front: {
  25794. height: math.unit(6 + 5 / 12, "feet"),
  25795. weight: math.unit(180, "lb"),
  25796. name: "Front",
  25797. image: {
  25798. source: "./media/characters/lexir/front.svg",
  25799. extra: 180 / 172,
  25800. bottom: 12 / 192
  25801. }
  25802. },
  25803. back: {
  25804. height: math.unit(6 + 5 / 12, "feet"),
  25805. weight: math.unit(180, "lb"),
  25806. name: "Back",
  25807. image: {
  25808. source: "./media/characters/lexir/back.svg",
  25809. extra: 1273/1201,
  25810. bottom: 39/1312
  25811. }
  25812. },
  25813. },
  25814. [
  25815. {
  25816. name: "Very Smal",
  25817. height: math.unit(1, "nm")
  25818. },
  25819. {
  25820. name: "Normal",
  25821. height: math.unit(6 + 5 / 12, "feet"),
  25822. default: true
  25823. },
  25824. {
  25825. name: "Macro",
  25826. height: math.unit(1, "mile")
  25827. },
  25828. {
  25829. name: "Megamacro",
  25830. height: math.unit(50, "miles")
  25831. },
  25832. ]
  25833. ))
  25834. characterMakers.push(() => makeCharacter(
  25835. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25836. {
  25837. front: {
  25838. height: math.unit(1.5, "meters"),
  25839. weight: math.unit(100, "lb"),
  25840. name: "Front",
  25841. image: {
  25842. source: "./media/characters/maksio/front.svg",
  25843. extra: 1549 / 1531,
  25844. bottom: 123.7 / 1674.5429
  25845. }
  25846. },
  25847. back: {
  25848. height: math.unit(1.5, "meters"),
  25849. weight: math.unit(100, "lb"),
  25850. name: "Back",
  25851. image: {
  25852. source: "./media/characters/maksio/back.svg",
  25853. extra: 1541 / 1509,
  25854. bottom: 97 / 1639
  25855. }
  25856. },
  25857. hand: {
  25858. height: math.unit(0.621, "feet"),
  25859. name: "Hand",
  25860. image: {
  25861. source: "./media/characters/maksio/hand.svg"
  25862. }
  25863. },
  25864. foot: {
  25865. height: math.unit(1.611, "feet"),
  25866. name: "Foot",
  25867. image: {
  25868. source: "./media/characters/maksio/foot.svg"
  25869. }
  25870. },
  25871. },
  25872. [
  25873. {
  25874. name: "Shrunken",
  25875. height: math.unit(10, "cm")
  25876. },
  25877. {
  25878. name: "Normal",
  25879. height: math.unit(150, "cm"),
  25880. default: true
  25881. },
  25882. ]
  25883. ))
  25884. characterMakers.push(() => makeCharacter(
  25885. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25886. {
  25887. front: {
  25888. height: math.unit(100, "feet"),
  25889. name: "Front",
  25890. image: {
  25891. source: "./media/characters/erza-bear/front.svg",
  25892. extra: 2449 / 2390,
  25893. bottom: 46 / 2494
  25894. }
  25895. },
  25896. back: {
  25897. height: math.unit(100, "feet"),
  25898. name: "Back",
  25899. image: {
  25900. source: "./media/characters/erza-bear/back.svg",
  25901. extra: 2489 / 2430,
  25902. bottom: 85.4 / 2480
  25903. }
  25904. },
  25905. tail: {
  25906. height: math.unit(42, "feet"),
  25907. name: "Tail",
  25908. image: {
  25909. source: "./media/characters/erza-bear/tail.svg"
  25910. }
  25911. },
  25912. tongue: {
  25913. height: math.unit(8, "feet"),
  25914. name: "Tongue",
  25915. image: {
  25916. source: "./media/characters/erza-bear/tongue.svg"
  25917. }
  25918. },
  25919. dick: {
  25920. height: math.unit(10.5, "feet"),
  25921. name: "Dick",
  25922. image: {
  25923. source: "./media/characters/erza-bear/dick.svg"
  25924. }
  25925. },
  25926. dickVertical: {
  25927. height: math.unit(16.9, "feet"),
  25928. name: "Dick (Vertical)",
  25929. image: {
  25930. source: "./media/characters/erza-bear/dick-vertical.svg"
  25931. }
  25932. },
  25933. },
  25934. [
  25935. {
  25936. name: "Macro",
  25937. height: math.unit(100, "feet"),
  25938. default: true
  25939. },
  25940. ]
  25941. ))
  25942. characterMakers.push(() => makeCharacter(
  25943. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25944. {
  25945. front: {
  25946. height: math.unit(172, "cm"),
  25947. weight: math.unit(73, "kg"),
  25948. name: "Front",
  25949. image: {
  25950. source: "./media/characters/violet-flor/front.svg",
  25951. extra: 1474/1379,
  25952. bottom: 113/1587
  25953. }
  25954. },
  25955. back: {
  25956. height: math.unit(180, "cm"),
  25957. weight: math.unit(73, "kg"),
  25958. name: "Back",
  25959. image: {
  25960. source: "./media/characters/violet-flor/back.svg",
  25961. extra: 1660/1567,
  25962. bottom: 49/1709
  25963. }
  25964. },
  25965. },
  25966. [
  25967. {
  25968. name: "Normal",
  25969. height: math.unit(172, "cm"),
  25970. default: true
  25971. },
  25972. ]
  25973. ))
  25974. characterMakers.push(() => makeCharacter(
  25975. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25976. {
  25977. front: {
  25978. height: math.unit(6, "feet"),
  25979. weight: math.unit(220, "lb"),
  25980. name: "Front",
  25981. image: {
  25982. source: "./media/characters/lynn-rhea/front.svg",
  25983. extra: 310 / 273
  25984. }
  25985. },
  25986. back: {
  25987. height: math.unit(6, "feet"),
  25988. weight: math.unit(220, "lb"),
  25989. name: "Back",
  25990. image: {
  25991. source: "./media/characters/lynn-rhea/back.svg",
  25992. extra: 310 / 273
  25993. }
  25994. },
  25995. dicks: {
  25996. height: math.unit(0.9, "feet"),
  25997. name: "Dicks",
  25998. image: {
  25999. source: "./media/characters/lynn-rhea/dicks.svg"
  26000. }
  26001. },
  26002. slit: {
  26003. height: math.unit(0.4, "feet"),
  26004. name: "Slit",
  26005. image: {
  26006. source: "./media/characters/lynn-rhea/slit.svg"
  26007. }
  26008. },
  26009. },
  26010. [
  26011. {
  26012. name: "Micro",
  26013. height: math.unit(1, "inch")
  26014. },
  26015. {
  26016. name: "Macro",
  26017. height: math.unit(60, "feet"),
  26018. default: true
  26019. },
  26020. {
  26021. name: "Megamacro",
  26022. height: math.unit(2, "miles")
  26023. },
  26024. {
  26025. name: "Gigamacro",
  26026. height: math.unit(3, "earths")
  26027. },
  26028. {
  26029. name: "Galactic",
  26030. height: math.unit(0.8, "galaxies")
  26031. },
  26032. ]
  26033. ))
  26034. characterMakers.push(() => makeCharacter(
  26035. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26036. {
  26037. front: {
  26038. height: math.unit(1600, "feet"),
  26039. weight: math.unit(85758785169, "kg"),
  26040. name: "Front",
  26041. image: {
  26042. source: "./media/characters/valathos/front.svg",
  26043. extra: 1451 / 1339
  26044. }
  26045. },
  26046. },
  26047. [
  26048. {
  26049. name: "Macro",
  26050. height: math.unit(1600, "feet"),
  26051. default: true
  26052. },
  26053. ]
  26054. ))
  26055. characterMakers.push(() => makeCharacter(
  26056. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26057. {
  26058. front: {
  26059. height: math.unit(7 + 5 / 12, "feet"),
  26060. weight: math.unit(300, "lb"),
  26061. name: "Front",
  26062. image: {
  26063. source: "./media/characters/azula/front.svg",
  26064. extra: 3208 / 2880,
  26065. bottom: 80.2 / 3277
  26066. }
  26067. },
  26068. back: {
  26069. height: math.unit(7 + 5 / 12, "feet"),
  26070. weight: math.unit(300, "lb"),
  26071. name: "Back",
  26072. image: {
  26073. source: "./media/characters/azula/back.svg",
  26074. extra: 3169 / 2822,
  26075. bottom: 150.6 / 3321
  26076. }
  26077. },
  26078. },
  26079. [
  26080. {
  26081. name: "Normal",
  26082. height: math.unit(7 + 5 / 12, "feet"),
  26083. default: true
  26084. },
  26085. {
  26086. name: "Big",
  26087. height: math.unit(20, "feet")
  26088. },
  26089. ]
  26090. ))
  26091. characterMakers.push(() => makeCharacter(
  26092. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26093. {
  26094. front: {
  26095. height: math.unit(5 + 1 / 12, "feet"),
  26096. weight: math.unit(110, "lb"),
  26097. name: "Front",
  26098. image: {
  26099. source: "./media/characters/rupert/front.svg",
  26100. extra: 1549 / 1495,
  26101. bottom: 54.2 / 1604.4
  26102. }
  26103. },
  26104. },
  26105. [
  26106. {
  26107. name: "Normal",
  26108. height: math.unit(5 + 1 / 12, "feet"),
  26109. default: true
  26110. },
  26111. ]
  26112. ))
  26113. characterMakers.push(() => makeCharacter(
  26114. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26115. {
  26116. front: {
  26117. height: math.unit(8 + 4 / 12, "feet"),
  26118. weight: math.unit(350, "lb"),
  26119. name: "Front",
  26120. image: {
  26121. source: "./media/characters/sheera-castellar/front.svg",
  26122. extra: 1957 / 1894,
  26123. bottom: 26.97 / 1975.017
  26124. }
  26125. },
  26126. side: {
  26127. height: math.unit(8 + 4 / 12, "feet"),
  26128. weight: math.unit(350, "lb"),
  26129. name: "Side",
  26130. image: {
  26131. source: "./media/characters/sheera-castellar/side.svg",
  26132. extra: 1957 / 1894
  26133. }
  26134. },
  26135. back: {
  26136. height: math.unit(8 + 4 / 12, "feet"),
  26137. weight: math.unit(350, "lb"),
  26138. name: "Back",
  26139. image: {
  26140. source: "./media/characters/sheera-castellar/back.svg",
  26141. extra: 1957 / 1894
  26142. }
  26143. },
  26144. angled: {
  26145. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26146. weight: math.unit(350, "lb"),
  26147. name: "Angled",
  26148. image: {
  26149. source: "./media/characters/sheera-castellar/angled.svg",
  26150. extra: 1807 / 1707,
  26151. bottom: 68 / 1875
  26152. }
  26153. },
  26154. genitals: {
  26155. height: math.unit(2.2, "feet"),
  26156. name: "Genitals",
  26157. image: {
  26158. source: "./media/characters/sheera-castellar/genitals.svg"
  26159. }
  26160. },
  26161. taur: {
  26162. height: math.unit(10 + 6/12, "feet"),
  26163. name: "Taur",
  26164. image: {
  26165. source: "./media/characters/sheera-castellar/taur.svg",
  26166. extra: 2017/1909,
  26167. bottom: 185/2202
  26168. }
  26169. },
  26170. },
  26171. [
  26172. {
  26173. name: "Normal",
  26174. height: math.unit(8 + 4 / 12, "feet")
  26175. },
  26176. {
  26177. name: "Macro",
  26178. height: math.unit(150, "feet"),
  26179. default: true
  26180. },
  26181. {
  26182. name: "Macro+",
  26183. height: math.unit(800, "feet")
  26184. },
  26185. ]
  26186. ))
  26187. characterMakers.push(() => makeCharacter(
  26188. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26189. {
  26190. front: {
  26191. height: math.unit(6, "feet"),
  26192. weight: math.unit(150, "lb"),
  26193. name: "Front",
  26194. image: {
  26195. source: "./media/characters/jaipur/front.svg",
  26196. extra: 3860 / 3731,
  26197. bottom: 287 / 4140
  26198. }
  26199. },
  26200. back: {
  26201. height: math.unit(6, "feet"),
  26202. weight: math.unit(150, "lb"),
  26203. name: "Back",
  26204. image: {
  26205. source: "./media/characters/jaipur/back.svg",
  26206. extra: 1637/1561,
  26207. bottom: 154/1791
  26208. }
  26209. },
  26210. },
  26211. [
  26212. {
  26213. name: "Normal",
  26214. height: math.unit(1.85, "meters"),
  26215. default: true
  26216. },
  26217. {
  26218. name: "Macro",
  26219. height: math.unit(150, "meters")
  26220. },
  26221. {
  26222. name: "Macro+",
  26223. height: math.unit(0.5, "miles")
  26224. },
  26225. {
  26226. name: "Macro++",
  26227. height: math.unit(2.5, "miles")
  26228. },
  26229. {
  26230. name: "Macro+++",
  26231. height: math.unit(12, "miles")
  26232. },
  26233. {
  26234. name: "Macro++++",
  26235. height: math.unit(120, "miles")
  26236. },
  26237. {
  26238. name: "Macro+++++",
  26239. height: math.unit(1200, "miles")
  26240. },
  26241. ]
  26242. ))
  26243. characterMakers.push(() => makeCharacter(
  26244. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26245. {
  26246. front: {
  26247. height: math.unit(6, "feet"),
  26248. weight: math.unit(150, "lb"),
  26249. name: "Front",
  26250. image: {
  26251. source: "./media/characters/sheila-wolf/front.svg",
  26252. extra: 1931 / 1808,
  26253. bottom: 29.5 / 1960
  26254. }
  26255. },
  26256. dick: {
  26257. height: math.unit(1.464, "feet"),
  26258. name: "Dick",
  26259. image: {
  26260. source: "./media/characters/sheila-wolf/dick.svg"
  26261. }
  26262. },
  26263. muzzle: {
  26264. height: math.unit(0.513, "feet"),
  26265. name: "Muzzle",
  26266. image: {
  26267. source: "./media/characters/sheila-wolf/muzzle.svg"
  26268. }
  26269. },
  26270. },
  26271. [
  26272. {
  26273. name: "Macro",
  26274. height: math.unit(70, "feet"),
  26275. default: true
  26276. },
  26277. ]
  26278. ))
  26279. characterMakers.push(() => makeCharacter(
  26280. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26281. {
  26282. front: {
  26283. height: math.unit(32, "meters"),
  26284. weight: math.unit(300000, "kg"),
  26285. name: "Front",
  26286. image: {
  26287. source: "./media/characters/almor/front.svg",
  26288. extra: 1408 / 1322,
  26289. bottom: 94.6 / 1506.5
  26290. }
  26291. },
  26292. },
  26293. [
  26294. {
  26295. name: "Macro",
  26296. height: math.unit(32, "meters"),
  26297. default: true
  26298. },
  26299. ]
  26300. ))
  26301. characterMakers.push(() => makeCharacter(
  26302. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26303. {
  26304. front: {
  26305. height: math.unit(7, "feet"),
  26306. weight: math.unit(200, "lb"),
  26307. name: "Front",
  26308. image: {
  26309. source: "./media/characters/silver/front.svg",
  26310. extra: 472.1 / 450.5,
  26311. bottom: 26.5 / 499.424
  26312. }
  26313. },
  26314. },
  26315. [
  26316. {
  26317. name: "Normal",
  26318. height: math.unit(7, "feet"),
  26319. default: true
  26320. },
  26321. {
  26322. name: "Macro",
  26323. height: math.unit(800, "feet")
  26324. },
  26325. {
  26326. name: "Megamacro",
  26327. height: math.unit(250, "miles")
  26328. },
  26329. ]
  26330. ))
  26331. characterMakers.push(() => makeCharacter(
  26332. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26333. {
  26334. front: {
  26335. height: math.unit(6, "feet"),
  26336. weight: math.unit(150, "lb"),
  26337. name: "Front",
  26338. image: {
  26339. source: "./media/characters/pliskin/front.svg",
  26340. extra: 1469 / 1359,
  26341. bottom: 70 / 1540
  26342. }
  26343. },
  26344. },
  26345. [
  26346. {
  26347. name: "Micro",
  26348. height: math.unit(3, "inches")
  26349. },
  26350. {
  26351. name: "Normal",
  26352. height: math.unit(5 + 11 / 12, "feet"),
  26353. default: true
  26354. },
  26355. {
  26356. name: "Macro",
  26357. height: math.unit(120, "feet")
  26358. },
  26359. ]
  26360. ))
  26361. characterMakers.push(() => makeCharacter(
  26362. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26363. {
  26364. front: {
  26365. height: math.unit(6, "feet"),
  26366. weight: math.unit(150, "lb"),
  26367. name: "Front",
  26368. image: {
  26369. source: "./media/characters/sammy/front.svg",
  26370. extra: 1193 / 1089,
  26371. bottom: 30.5 / 1226
  26372. }
  26373. },
  26374. },
  26375. [
  26376. {
  26377. name: "Macro",
  26378. height: math.unit(1700, "feet"),
  26379. default: true
  26380. },
  26381. {
  26382. name: "Examacro",
  26383. height: math.unit(2.5e9, "lightyears")
  26384. },
  26385. ]
  26386. ))
  26387. characterMakers.push(() => makeCharacter(
  26388. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26389. {
  26390. front: {
  26391. height: math.unit(21, "meters"),
  26392. weight: math.unit(12, "tonnes"),
  26393. name: "Front",
  26394. image: {
  26395. source: "./media/characters/kuru/front.svg",
  26396. extra: 4301 / 3785,
  26397. bottom: 371.3 / 4691
  26398. }
  26399. },
  26400. },
  26401. [
  26402. {
  26403. name: "Macro",
  26404. height: math.unit(21, "meters"),
  26405. default: true
  26406. },
  26407. ]
  26408. ))
  26409. characterMakers.push(() => makeCharacter(
  26410. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26411. {
  26412. front: {
  26413. height: math.unit(23, "meters"),
  26414. weight: math.unit(12.2, "tonnes"),
  26415. name: "Front",
  26416. image: {
  26417. source: "./media/characters/rakka/front.svg",
  26418. extra: 4670 / 4169,
  26419. bottom: 301 / 4968.7
  26420. }
  26421. },
  26422. },
  26423. [
  26424. {
  26425. name: "Macro",
  26426. height: math.unit(23, "meters"),
  26427. default: true
  26428. },
  26429. ]
  26430. ))
  26431. characterMakers.push(() => makeCharacter(
  26432. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26433. {
  26434. front: {
  26435. height: math.unit(6, "feet"),
  26436. weight: math.unit(150, "lb"),
  26437. name: "Front",
  26438. image: {
  26439. source: "./media/characters/rhys-feline/front.svg",
  26440. extra: 2488 / 2308,
  26441. bottom: 35.67 / 2519.19
  26442. }
  26443. },
  26444. },
  26445. [
  26446. {
  26447. name: "Really Small",
  26448. height: math.unit(1, "nm")
  26449. },
  26450. {
  26451. name: "Micro",
  26452. height: math.unit(4, "inches")
  26453. },
  26454. {
  26455. name: "Normal",
  26456. height: math.unit(4 + 10 / 12, "feet"),
  26457. default: true
  26458. },
  26459. {
  26460. name: "Macro",
  26461. height: math.unit(100, "feet")
  26462. },
  26463. {
  26464. name: "Megamacto",
  26465. height: math.unit(50, "miles")
  26466. },
  26467. ]
  26468. ))
  26469. characterMakers.push(() => makeCharacter(
  26470. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26471. {
  26472. side: {
  26473. height: math.unit(30, "feet"),
  26474. weight: math.unit(35000, "kg"),
  26475. name: "Side",
  26476. image: {
  26477. source: "./media/characters/alydar/side.svg",
  26478. extra: 234 / 222,
  26479. bottom: 6.5 / 241
  26480. }
  26481. },
  26482. front: {
  26483. height: math.unit(30, "feet"),
  26484. weight: math.unit(35000, "kg"),
  26485. name: "Front",
  26486. image: {
  26487. source: "./media/characters/alydar/front.svg",
  26488. extra: 223.37 / 210.2,
  26489. bottom: 22.3 / 246.76
  26490. }
  26491. },
  26492. top: {
  26493. height: math.unit(64.54, "feet"),
  26494. weight: math.unit(35000, "kg"),
  26495. name: "Top",
  26496. image: {
  26497. source: "./media/characters/alydar/top.svg"
  26498. }
  26499. },
  26500. anthro: {
  26501. height: math.unit(30, "feet"),
  26502. weight: math.unit(9000, "kg"),
  26503. name: "Anthro",
  26504. image: {
  26505. source: "./media/characters/alydar/anthro.svg",
  26506. extra: 432 / 421,
  26507. bottom: 7.18 / 440
  26508. }
  26509. },
  26510. maw: {
  26511. height: math.unit(11.693, "feet"),
  26512. name: "Maw",
  26513. image: {
  26514. source: "./media/characters/alydar/maw.svg"
  26515. }
  26516. },
  26517. head: {
  26518. height: math.unit(11.693, "feet"),
  26519. name: "Head",
  26520. image: {
  26521. source: "./media/characters/alydar/head.svg"
  26522. }
  26523. },
  26524. headAlt: {
  26525. height: math.unit(12.861, "feet"),
  26526. name: "Head (Alt)",
  26527. image: {
  26528. source: "./media/characters/alydar/head-alt.svg"
  26529. }
  26530. },
  26531. wing: {
  26532. height: math.unit(20.712, "feet"),
  26533. name: "Wing",
  26534. image: {
  26535. source: "./media/characters/alydar/wing.svg"
  26536. }
  26537. },
  26538. wingFeather: {
  26539. height: math.unit(9.662, "feet"),
  26540. name: "Wing Feather",
  26541. image: {
  26542. source: "./media/characters/alydar/wing-feather.svg"
  26543. }
  26544. },
  26545. countourFeather: {
  26546. height: math.unit(4.154, "feet"),
  26547. name: "Contour Feather",
  26548. image: {
  26549. source: "./media/characters/alydar/contour-feather.svg"
  26550. }
  26551. },
  26552. },
  26553. [
  26554. {
  26555. name: "Diplomatic",
  26556. height: math.unit(13, "feet"),
  26557. default: true
  26558. },
  26559. {
  26560. name: "Small",
  26561. height: math.unit(30, "feet")
  26562. },
  26563. {
  26564. name: "Normal",
  26565. height: math.unit(95, "feet"),
  26566. default: true
  26567. },
  26568. {
  26569. name: "Large",
  26570. height: math.unit(285, "feet")
  26571. },
  26572. {
  26573. name: "Incomprehensible",
  26574. height: math.unit(450, "megameters")
  26575. },
  26576. ]
  26577. ))
  26578. characterMakers.push(() => makeCharacter(
  26579. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26580. {
  26581. side: {
  26582. height: math.unit(11, "feet"),
  26583. weight: math.unit(1750, "kg"),
  26584. name: "Side",
  26585. image: {
  26586. source: "./media/characters/selicia/side.svg",
  26587. extra: 440 / 396,
  26588. bottom: 24.8 / 465.979
  26589. }
  26590. },
  26591. maw: {
  26592. height: math.unit(4.665, "feet"),
  26593. name: "Maw",
  26594. image: {
  26595. source: "./media/characters/selicia/maw.svg"
  26596. }
  26597. },
  26598. },
  26599. [
  26600. {
  26601. name: "Normal",
  26602. height: math.unit(11, "feet"),
  26603. default: true
  26604. },
  26605. ]
  26606. ))
  26607. characterMakers.push(() => makeCharacter(
  26608. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26609. {
  26610. side: {
  26611. height: math.unit(2 + 6 / 12, "feet"),
  26612. weight: math.unit(30, "lb"),
  26613. name: "Side",
  26614. image: {
  26615. source: "./media/characters/layla/side.svg",
  26616. extra: 244 / 188,
  26617. bottom: 18.2 / 262.1
  26618. }
  26619. },
  26620. back: {
  26621. height: math.unit(2 + 6 / 12, "feet"),
  26622. weight: math.unit(30, "lb"),
  26623. name: "Back",
  26624. image: {
  26625. source: "./media/characters/layla/back.svg",
  26626. extra: 308 / 241.5,
  26627. bottom: 8.9 / 316.8
  26628. }
  26629. },
  26630. cumming: {
  26631. height: math.unit(2 + 6 / 12, "feet"),
  26632. weight: math.unit(30, "lb"),
  26633. name: "Cumming",
  26634. image: {
  26635. source: "./media/characters/layla/cumming.svg",
  26636. extra: 342 / 279,
  26637. bottom: 595 / 938
  26638. }
  26639. },
  26640. dickFlaccid: {
  26641. height: math.unit(2.595, "feet"),
  26642. name: "Flaccid Genitals",
  26643. image: {
  26644. source: "./media/characters/layla/dick-flaccid.svg"
  26645. }
  26646. },
  26647. dickErect: {
  26648. height: math.unit(2.359, "feet"),
  26649. name: "Erect Genitals",
  26650. image: {
  26651. source: "./media/characters/layla/dick-erect.svg"
  26652. }
  26653. },
  26654. dragon: {
  26655. height: math.unit(40, "feet"),
  26656. name: "Dragon",
  26657. image: {
  26658. source: "./media/characters/layla/dragon.svg",
  26659. extra: 610/535,
  26660. bottom: 367/977
  26661. }
  26662. },
  26663. taur: {
  26664. height: math.unit(30, "feet"),
  26665. name: "Taur",
  26666. image: {
  26667. source: "./media/characters/layla/taur.svg",
  26668. extra: 1268/1199,
  26669. bottom: 112/1380
  26670. }
  26671. },
  26672. },
  26673. [
  26674. {
  26675. name: "Micro",
  26676. height: math.unit(1, "inch")
  26677. },
  26678. {
  26679. name: "Small",
  26680. height: math.unit(1, "foot")
  26681. },
  26682. {
  26683. name: "Normal",
  26684. height: math.unit(2 + 6 / 12, "feet"),
  26685. default: true
  26686. },
  26687. {
  26688. name: "Macro",
  26689. height: math.unit(200, "feet")
  26690. },
  26691. {
  26692. name: "Megamacro",
  26693. height: math.unit(1000, "miles")
  26694. },
  26695. {
  26696. name: "Planetary",
  26697. height: math.unit(8000, "miles")
  26698. },
  26699. {
  26700. name: "True Layla",
  26701. height: math.unit(200000 * 7, "multiverses")
  26702. },
  26703. ]
  26704. ))
  26705. characterMakers.push(() => makeCharacter(
  26706. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26707. {
  26708. back: {
  26709. height: math.unit(10.5, "feet"),
  26710. weight: math.unit(800, "lb"),
  26711. name: "Back",
  26712. image: {
  26713. source: "./media/characters/knox/back.svg",
  26714. extra: 1486 / 1089,
  26715. bottom: 107 / 1601.4
  26716. }
  26717. },
  26718. side: {
  26719. height: math.unit(10.5, "feet"),
  26720. weight: math.unit(800, "lb"),
  26721. name: "Side",
  26722. image: {
  26723. source: "./media/characters/knox/side.svg",
  26724. extra: 244 / 218,
  26725. bottom: 14 / 260
  26726. }
  26727. },
  26728. },
  26729. [
  26730. {
  26731. name: "Compact",
  26732. height: math.unit(10.5, "feet"),
  26733. default: true
  26734. },
  26735. {
  26736. name: "Dynamax",
  26737. height: math.unit(210, "feet")
  26738. },
  26739. {
  26740. name: "Full Macro",
  26741. height: math.unit(850, "feet")
  26742. },
  26743. ]
  26744. ))
  26745. characterMakers.push(() => makeCharacter(
  26746. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26747. {
  26748. front: {
  26749. height: math.unit(28, "feet"),
  26750. weight: math.unit(10500, "lb"),
  26751. name: "Front",
  26752. image: {
  26753. source: "./media/characters/kayda/front.svg",
  26754. extra: 1536 / 1428,
  26755. bottom: 68.7 / 1603
  26756. }
  26757. },
  26758. back: {
  26759. height: math.unit(28, "feet"),
  26760. weight: math.unit(10500, "lb"),
  26761. name: "Back",
  26762. image: {
  26763. source: "./media/characters/kayda/back.svg",
  26764. extra: 1557 / 1464,
  26765. bottom: 39.5 / 1597.49
  26766. }
  26767. },
  26768. dick: {
  26769. height: math.unit(3.858, "feet"),
  26770. name: "Dick",
  26771. image: {
  26772. source: "./media/characters/kayda/dick.svg"
  26773. }
  26774. },
  26775. },
  26776. [
  26777. {
  26778. name: "Macro",
  26779. height: math.unit(28, "feet"),
  26780. default: true
  26781. },
  26782. ]
  26783. ))
  26784. characterMakers.push(() => makeCharacter(
  26785. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26786. {
  26787. front: {
  26788. height: math.unit(10 + 11 / 12, "feet"),
  26789. weight: math.unit(1400, "lb"),
  26790. name: "Front",
  26791. image: {
  26792. source: "./media/characters/brian/front.svg",
  26793. extra: 737 / 692,
  26794. bottom: 55.4 / 785
  26795. }
  26796. },
  26797. },
  26798. [
  26799. {
  26800. name: "Normal",
  26801. height: math.unit(10 + 11 / 12, "feet"),
  26802. default: true
  26803. },
  26804. ]
  26805. ))
  26806. characterMakers.push(() => makeCharacter(
  26807. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26808. {
  26809. front: {
  26810. height: math.unit(5 + 8 / 12, "feet"),
  26811. weight: math.unit(140, "lb"),
  26812. name: "Front",
  26813. image: {
  26814. source: "./media/characters/khemri/front.svg",
  26815. extra: 4780 / 4059,
  26816. bottom: 80.1 / 4859.25
  26817. }
  26818. },
  26819. },
  26820. [
  26821. {
  26822. name: "Micro",
  26823. height: math.unit(6, "inches")
  26824. },
  26825. {
  26826. name: "Normal",
  26827. height: math.unit(5 + 8 / 12, "feet"),
  26828. default: true
  26829. },
  26830. ]
  26831. ))
  26832. characterMakers.push(() => makeCharacter(
  26833. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26834. {
  26835. front: {
  26836. height: math.unit(13, "feet"),
  26837. weight: math.unit(1700, "lb"),
  26838. name: "Front",
  26839. image: {
  26840. source: "./media/characters/felix-braveheart/front.svg",
  26841. extra: 1222 / 1157,
  26842. bottom: 53.2 / 1280
  26843. }
  26844. },
  26845. back: {
  26846. height: math.unit(13, "feet"),
  26847. weight: math.unit(1700, "lb"),
  26848. name: "Back",
  26849. image: {
  26850. source: "./media/characters/felix-braveheart/back.svg",
  26851. extra: 1277 / 1203,
  26852. bottom: 50.2 / 1327
  26853. }
  26854. },
  26855. feral: {
  26856. height: math.unit(6, "feet"),
  26857. weight: math.unit(400, "lb"),
  26858. name: "Feral",
  26859. image: {
  26860. source: "./media/characters/felix-braveheart/feral.svg",
  26861. extra: 682 / 625,
  26862. bottom: 6.9 / 688
  26863. }
  26864. },
  26865. },
  26866. [
  26867. {
  26868. name: "Normal",
  26869. height: math.unit(13, "feet"),
  26870. default: true
  26871. },
  26872. ]
  26873. ))
  26874. characterMakers.push(() => makeCharacter(
  26875. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26876. {
  26877. side: {
  26878. height: math.unit(5 + 11 / 12, "feet"),
  26879. weight: math.unit(1400, "lb"),
  26880. name: "Side",
  26881. image: {
  26882. source: "./media/characters/shadow-blade/side.svg",
  26883. extra: 1726 / 1267,
  26884. bottom: 58.4 / 1785
  26885. }
  26886. },
  26887. },
  26888. [
  26889. {
  26890. name: "Normal",
  26891. height: math.unit(5 + 11 / 12, "feet"),
  26892. default: true
  26893. },
  26894. ]
  26895. ))
  26896. characterMakers.push(() => makeCharacter(
  26897. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26898. {
  26899. front: {
  26900. height: math.unit(1 + 6 / 12, "feet"),
  26901. weight: math.unit(25, "lb"),
  26902. name: "Front",
  26903. image: {
  26904. source: "./media/characters/karla-halldor/front.svg",
  26905. extra: 1459 / 1383,
  26906. bottom: 12 / 1472
  26907. }
  26908. },
  26909. },
  26910. [
  26911. {
  26912. name: "Normal",
  26913. height: math.unit(1 + 6 / 12, "feet"),
  26914. default: true
  26915. },
  26916. ]
  26917. ))
  26918. characterMakers.push(() => makeCharacter(
  26919. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26920. {
  26921. front: {
  26922. height: math.unit(6 + 2 / 12, "feet"),
  26923. weight: math.unit(160, "lb"),
  26924. name: "Front",
  26925. image: {
  26926. source: "./media/characters/ariam/front.svg",
  26927. extra: 1073/976,
  26928. bottom: 52/1125
  26929. }
  26930. },
  26931. back: {
  26932. height: math.unit(6 + 2/12, "feet"),
  26933. weight: math.unit(160, "lb"),
  26934. name: "Back",
  26935. image: {
  26936. source: "./media/characters/ariam/back.svg",
  26937. extra: 1103/1023,
  26938. bottom: 9/1112
  26939. }
  26940. },
  26941. dressed: {
  26942. height: math.unit(6 + 2/12, "feet"),
  26943. weight: math.unit(160, "lb"),
  26944. name: "Dressed",
  26945. image: {
  26946. source: "./media/characters/ariam/dressed.svg",
  26947. extra: 1099/1009,
  26948. bottom: 25/1124
  26949. }
  26950. },
  26951. squatting: {
  26952. height: math.unit(4.1, "feet"),
  26953. weight: math.unit(160, "lb"),
  26954. name: "Squatting",
  26955. image: {
  26956. source: "./media/characters/ariam/squatting.svg",
  26957. extra: 2617 / 2112,
  26958. bottom: 61.2 / 2681,
  26959. }
  26960. },
  26961. },
  26962. [
  26963. {
  26964. name: "Normal",
  26965. height: math.unit(6 + 2 / 12, "feet"),
  26966. default: true
  26967. },
  26968. {
  26969. name: "Normal+",
  26970. height: math.unit(4, "meters")
  26971. },
  26972. {
  26973. name: "Macro",
  26974. height: math.unit(50, "meters")
  26975. },
  26976. {
  26977. name: "Macro+",
  26978. height: math.unit(100, "meters")
  26979. },
  26980. {
  26981. name: "Megamacro",
  26982. height: math.unit(20, "km")
  26983. },
  26984. {
  26985. name: "Caretaker",
  26986. height: math.unit(444, "megameters")
  26987. },
  26988. ]
  26989. ))
  26990. characterMakers.push(() => makeCharacter(
  26991. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26992. {
  26993. front: {
  26994. height: math.unit(1.67, "meters"),
  26995. weight: math.unit(140, "lb"),
  26996. name: "Front",
  26997. image: {
  26998. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26999. extra: 438 / 410,
  27000. bottom: 0.75 / 439
  27001. }
  27002. },
  27003. },
  27004. [
  27005. {
  27006. name: "Shrunken",
  27007. height: math.unit(7.6, "cm")
  27008. },
  27009. {
  27010. name: "Human Scale",
  27011. height: math.unit(1.67, "meters")
  27012. },
  27013. {
  27014. name: "Wolxi Scale",
  27015. height: math.unit(36.7, "meters"),
  27016. default: true
  27017. },
  27018. ]
  27019. ))
  27020. characterMakers.push(() => makeCharacter(
  27021. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27022. {
  27023. front: {
  27024. height: math.unit(1.73, "meters"),
  27025. weight: math.unit(240, "lb"),
  27026. name: "Front",
  27027. image: {
  27028. source: "./media/characters/izue-two-mothers/front.svg",
  27029. extra: 469 / 437,
  27030. bottom: 1.24 / 470.6
  27031. }
  27032. },
  27033. },
  27034. [
  27035. {
  27036. name: "Shrunken",
  27037. height: math.unit(7.86, "cm")
  27038. },
  27039. {
  27040. name: "Human Scale",
  27041. height: math.unit(1.73, "meters")
  27042. },
  27043. {
  27044. name: "Wolxi Scale",
  27045. height: math.unit(38, "meters"),
  27046. default: true
  27047. },
  27048. ]
  27049. ))
  27050. characterMakers.push(() => makeCharacter(
  27051. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27052. {
  27053. front: {
  27054. height: math.unit(1.55, "meters"),
  27055. weight: math.unit(120, "lb"),
  27056. name: "Front",
  27057. image: {
  27058. source: "./media/characters/teeku-love-shack/front.svg",
  27059. extra: 387 / 362,
  27060. bottom: 1.51 / 388
  27061. }
  27062. },
  27063. },
  27064. [
  27065. {
  27066. name: "Shrunken",
  27067. height: math.unit(7, "cm")
  27068. },
  27069. {
  27070. name: "Human Scale",
  27071. height: math.unit(1.55, "meters")
  27072. },
  27073. {
  27074. name: "Wolxi Scale",
  27075. height: math.unit(34.1, "meters"),
  27076. default: true
  27077. },
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27082. {
  27083. front: {
  27084. height: math.unit(1.83, "meters"),
  27085. weight: math.unit(135, "lb"),
  27086. name: "Front",
  27087. image: {
  27088. source: "./media/characters/dejma-the-red/front.svg",
  27089. extra: 480 / 458,
  27090. bottom: 1.8 / 482
  27091. }
  27092. },
  27093. },
  27094. [
  27095. {
  27096. name: "Shrunken",
  27097. height: math.unit(8.3, "cm")
  27098. },
  27099. {
  27100. name: "Human Scale",
  27101. height: math.unit(1.83, "meters")
  27102. },
  27103. {
  27104. name: "Wolxi Scale",
  27105. height: math.unit(40, "meters"),
  27106. default: true
  27107. },
  27108. ]
  27109. ))
  27110. characterMakers.push(() => makeCharacter(
  27111. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27112. {
  27113. front: {
  27114. height: math.unit(1.78, "meters"),
  27115. weight: math.unit(65, "kg"),
  27116. name: "Front",
  27117. image: {
  27118. source: "./media/characters/aki/front.svg",
  27119. extra: 452 / 415
  27120. }
  27121. },
  27122. frontNsfw: {
  27123. height: math.unit(1.78, "meters"),
  27124. weight: math.unit(65, "kg"),
  27125. name: "Front (NSFW)",
  27126. image: {
  27127. source: "./media/characters/aki/front-nsfw.svg",
  27128. extra: 452 / 415
  27129. }
  27130. },
  27131. back: {
  27132. height: math.unit(1.78, "meters"),
  27133. weight: math.unit(65, "kg"),
  27134. name: "Back",
  27135. image: {
  27136. source: "./media/characters/aki/back.svg",
  27137. extra: 452 / 415
  27138. }
  27139. },
  27140. rump: {
  27141. height: math.unit(2.05, "feet"),
  27142. name: "Rump",
  27143. image: {
  27144. source: "./media/characters/aki/rump.svg"
  27145. }
  27146. },
  27147. dick: {
  27148. height: math.unit(0.95, "feet"),
  27149. name: "Dick",
  27150. image: {
  27151. source: "./media/characters/aki/dick.svg"
  27152. }
  27153. },
  27154. },
  27155. [
  27156. {
  27157. name: "Micro",
  27158. height: math.unit(15, "cm")
  27159. },
  27160. {
  27161. name: "Normal",
  27162. height: math.unit(178, "cm"),
  27163. default: true
  27164. },
  27165. {
  27166. name: "Macro",
  27167. height: math.unit(214, "m")
  27168. },
  27169. {
  27170. name: "Macro+",
  27171. height: math.unit(534, "m")
  27172. },
  27173. ]
  27174. ))
  27175. characterMakers.push(() => makeCharacter(
  27176. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27177. {
  27178. front: {
  27179. height: math.unit(5 + 5 / 12, "feet"),
  27180. weight: math.unit(120, "lb"),
  27181. name: "Front",
  27182. image: {
  27183. source: "./media/characters/ari/front.svg",
  27184. extra: 1550/1471,
  27185. bottom: 39/1589
  27186. }
  27187. },
  27188. },
  27189. [
  27190. {
  27191. name: "Normal",
  27192. height: math.unit(5 + 5 / 12, "feet")
  27193. },
  27194. {
  27195. name: "Macro",
  27196. height: math.unit(100, "feet"),
  27197. default: true
  27198. },
  27199. {
  27200. name: "Megamacro",
  27201. height: math.unit(100, "miles")
  27202. },
  27203. {
  27204. name: "Gigamacro",
  27205. height: math.unit(80000, "miles")
  27206. },
  27207. ]
  27208. ))
  27209. characterMakers.push(() => makeCharacter(
  27210. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27211. {
  27212. side: {
  27213. height: math.unit(9, "feet"),
  27214. weight: math.unit(400, "kg"),
  27215. name: "Side",
  27216. image: {
  27217. source: "./media/characters/bolt/side.svg",
  27218. extra: 1126 / 896,
  27219. bottom: 60 / 1187.3,
  27220. }
  27221. },
  27222. },
  27223. [
  27224. {
  27225. name: "Micro",
  27226. height: math.unit(5, "inches")
  27227. },
  27228. {
  27229. name: "Normal",
  27230. height: math.unit(9, "feet"),
  27231. default: true
  27232. },
  27233. {
  27234. name: "Macro",
  27235. height: math.unit(700, "feet")
  27236. },
  27237. {
  27238. name: "Max Size",
  27239. height: math.unit(1.52e22, "yottameters")
  27240. },
  27241. ]
  27242. ))
  27243. characterMakers.push(() => makeCharacter(
  27244. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27245. {
  27246. front: {
  27247. height: math.unit(4.3, "meters"),
  27248. weight: math.unit(3, "tons"),
  27249. name: "Front",
  27250. image: {
  27251. source: "./media/characters/draekon-sylviar/front.svg",
  27252. extra: 2072/1512,
  27253. bottom: 74/2146
  27254. }
  27255. },
  27256. back: {
  27257. height: math.unit(4.3, "meters"),
  27258. weight: math.unit(3, "tons"),
  27259. name: "Back",
  27260. image: {
  27261. source: "./media/characters/draekon-sylviar/back.svg",
  27262. extra: 1639/1483,
  27263. bottom: 41/1680
  27264. }
  27265. },
  27266. feral: {
  27267. height: math.unit(1.15, "meters"),
  27268. weight: math.unit(3, "tons"),
  27269. name: "Feral",
  27270. image: {
  27271. source: "./media/characters/draekon-sylviar/feral.svg",
  27272. extra: 1033/395,
  27273. bottom: 130/1163
  27274. }
  27275. },
  27276. maw: {
  27277. height: math.unit(1.3, "meters"),
  27278. name: "Maw",
  27279. image: {
  27280. source: "./media/characters/draekon-sylviar/maw.svg"
  27281. }
  27282. },
  27283. mawSeparated: {
  27284. height: math.unit(1.53, "meters"),
  27285. name: "Separated Maw",
  27286. image: {
  27287. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27288. }
  27289. },
  27290. tail: {
  27291. height: math.unit(1.15, "meters"),
  27292. name: "Tail",
  27293. image: {
  27294. source: "./media/characters/draekon-sylviar/tail.svg"
  27295. }
  27296. },
  27297. tailDick: {
  27298. height: math.unit(1.15, "meters"),
  27299. name: "Tail (Dick)",
  27300. image: {
  27301. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27302. }
  27303. },
  27304. tailDickSeparated: {
  27305. height: math.unit(1.19, "meters"),
  27306. name: "Tail (Separated Dick)",
  27307. image: {
  27308. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27309. }
  27310. },
  27311. slit: {
  27312. height: math.unit(1, "meters"),
  27313. name: "Slit",
  27314. image: {
  27315. source: "./media/characters/draekon-sylviar/slit.svg"
  27316. }
  27317. },
  27318. dick: {
  27319. height: math.unit(1.15, "meters"),
  27320. name: "Dick",
  27321. image: {
  27322. source: "./media/characters/draekon-sylviar/dick.svg"
  27323. }
  27324. },
  27325. dickSeparated: {
  27326. height: math.unit(1.1, "meters"),
  27327. name: "Separated Dick",
  27328. image: {
  27329. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27330. }
  27331. },
  27332. sheath: {
  27333. height: math.unit(1.15, "meters"),
  27334. name: "Sheath",
  27335. image: {
  27336. source: "./media/characters/draekon-sylviar/sheath.svg"
  27337. }
  27338. },
  27339. },
  27340. [
  27341. {
  27342. name: "Small",
  27343. height: math.unit(4.53 / 2, "meters"),
  27344. default: true
  27345. },
  27346. {
  27347. name: "Normal",
  27348. height: math.unit(4.53, "meters"),
  27349. default: true
  27350. },
  27351. {
  27352. name: "Large",
  27353. height: math.unit(4.53 * 2, "meters"),
  27354. },
  27355. ]
  27356. ))
  27357. characterMakers.push(() => makeCharacter(
  27358. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27359. {
  27360. front: {
  27361. height: math.unit(6 + 2 / 12, "feet"),
  27362. weight: math.unit(180, "lb"),
  27363. name: "Front",
  27364. image: {
  27365. source: "./media/characters/brawler/front.svg",
  27366. extra: 3301 / 3027,
  27367. bottom: 138 / 3439
  27368. }
  27369. },
  27370. },
  27371. [
  27372. {
  27373. name: "Normal",
  27374. height: math.unit(6 + 2 / 12, "feet"),
  27375. default: true
  27376. },
  27377. ]
  27378. ))
  27379. characterMakers.push(() => makeCharacter(
  27380. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27381. {
  27382. front: {
  27383. height: math.unit(11, "feet"),
  27384. weight: math.unit(1000, "lb"),
  27385. name: "Front",
  27386. image: {
  27387. source: "./media/characters/alex/front.svg",
  27388. bottom: 44.5 / 620
  27389. }
  27390. },
  27391. },
  27392. [
  27393. {
  27394. name: "Micro",
  27395. height: math.unit(5, "inches")
  27396. },
  27397. {
  27398. name: "Normal",
  27399. height: math.unit(11, "feet"),
  27400. default: true
  27401. },
  27402. {
  27403. name: "Macro",
  27404. height: math.unit(9.5e9, "feet")
  27405. },
  27406. {
  27407. name: "Max Size",
  27408. height: math.unit(1.4e283, "yottameters")
  27409. },
  27410. ]
  27411. ))
  27412. characterMakers.push(() => makeCharacter(
  27413. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27414. {
  27415. female: {
  27416. height: math.unit(29.9, "m"),
  27417. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27418. name: "Female",
  27419. image: {
  27420. source: "./media/characters/zenari/female.svg",
  27421. extra: 3281.6 / 3217,
  27422. bottom: 72.2 / 3353
  27423. }
  27424. },
  27425. male: {
  27426. height: math.unit(27.7, "m"),
  27427. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27428. name: "Male",
  27429. image: {
  27430. source: "./media/characters/zenari/male.svg",
  27431. extra: 3008 / 2991,
  27432. bottom: 54.6 / 3069
  27433. }
  27434. },
  27435. },
  27436. [
  27437. {
  27438. name: "Macro",
  27439. height: math.unit(29.7, "meters"),
  27440. default: true
  27441. },
  27442. ]
  27443. ))
  27444. characterMakers.push(() => makeCharacter(
  27445. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27446. {
  27447. female: {
  27448. height: math.unit(23.8, "m"),
  27449. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27450. name: "Female",
  27451. image: {
  27452. source: "./media/characters/mactarian/female.svg",
  27453. extra: 2662 / 2569,
  27454. bottom: 73 / 2736
  27455. }
  27456. },
  27457. male: {
  27458. height: math.unit(23.8, "m"),
  27459. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27460. name: "Male",
  27461. image: {
  27462. source: "./media/characters/mactarian/male.svg",
  27463. extra: 2673 / 2600,
  27464. bottom: 76 / 2750
  27465. }
  27466. },
  27467. },
  27468. [
  27469. {
  27470. name: "Macro",
  27471. height: math.unit(23.8, "meters"),
  27472. default: true
  27473. },
  27474. ]
  27475. ))
  27476. characterMakers.push(() => makeCharacter(
  27477. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27478. {
  27479. female: {
  27480. height: math.unit(19.3, "m"),
  27481. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27482. name: "Female",
  27483. image: {
  27484. source: "./media/characters/umok/female.svg",
  27485. extra: 2186 / 2078,
  27486. bottom: 87 / 2277
  27487. }
  27488. },
  27489. male: {
  27490. height: math.unit(19.5, "m"),
  27491. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27492. name: "Male",
  27493. image: {
  27494. source: "./media/characters/umok/male.svg",
  27495. extra: 2233 / 2140,
  27496. bottom: 24.4 / 2258
  27497. }
  27498. },
  27499. },
  27500. [
  27501. {
  27502. name: "Macro",
  27503. height: math.unit(19.3, "meters"),
  27504. default: true
  27505. },
  27506. ]
  27507. ))
  27508. characterMakers.push(() => makeCharacter(
  27509. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27510. {
  27511. female: {
  27512. height: math.unit(26.15, "m"),
  27513. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27514. name: "Female",
  27515. image: {
  27516. source: "./media/characters/joraxian/female.svg",
  27517. extra: 2912 / 2824,
  27518. bottom: 36 / 2956
  27519. }
  27520. },
  27521. male: {
  27522. height: math.unit(25.4, "m"),
  27523. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27524. name: "Male",
  27525. image: {
  27526. source: "./media/characters/joraxian/male.svg",
  27527. extra: 2877 / 2721,
  27528. bottom: 82 / 2967
  27529. }
  27530. },
  27531. },
  27532. [
  27533. {
  27534. name: "Macro",
  27535. height: math.unit(26.15, "meters"),
  27536. default: true
  27537. },
  27538. ]
  27539. ))
  27540. characterMakers.push(() => makeCharacter(
  27541. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27542. {
  27543. female: {
  27544. height: math.unit(21.6, "m"),
  27545. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27546. name: "Female",
  27547. image: {
  27548. source: "./media/characters/sthara/female.svg",
  27549. extra: 2516 / 2347,
  27550. bottom: 21.5 / 2537
  27551. }
  27552. },
  27553. male: {
  27554. height: math.unit(24, "m"),
  27555. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27556. name: "Male",
  27557. image: {
  27558. source: "./media/characters/sthara/male.svg",
  27559. extra: 2732 / 2607,
  27560. bottom: 23 / 2732
  27561. }
  27562. },
  27563. },
  27564. [
  27565. {
  27566. name: "Macro",
  27567. height: math.unit(21.6, "meters"),
  27568. default: true
  27569. },
  27570. ]
  27571. ))
  27572. characterMakers.push(() => makeCharacter(
  27573. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27574. {
  27575. front: {
  27576. height: math.unit(6 + 4 / 12, "feet"),
  27577. weight: math.unit(175, "lb"),
  27578. name: "Front",
  27579. image: {
  27580. source: "./media/characters/luka-bryzant/front.svg",
  27581. extra: 311 / 289,
  27582. bottom: 4 / 315
  27583. }
  27584. },
  27585. back: {
  27586. height: math.unit(6 + 4 / 12, "feet"),
  27587. weight: math.unit(175, "lb"),
  27588. name: "Back",
  27589. image: {
  27590. source: "./media/characters/luka-bryzant/back.svg",
  27591. extra: 311 / 289,
  27592. bottom: 3.8 / 313.7
  27593. }
  27594. },
  27595. },
  27596. [
  27597. {
  27598. name: "Micro",
  27599. height: math.unit(10, "inches")
  27600. },
  27601. {
  27602. name: "Normal",
  27603. height: math.unit(6 + 4 / 12, "feet"),
  27604. default: true
  27605. },
  27606. {
  27607. name: "Large",
  27608. height: math.unit(12, "feet")
  27609. },
  27610. ]
  27611. ))
  27612. characterMakers.push(() => makeCharacter(
  27613. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27614. {
  27615. front: {
  27616. height: math.unit(5 + 7 / 12, "feet"),
  27617. weight: math.unit(185, "lb"),
  27618. name: "Front",
  27619. image: {
  27620. source: "./media/characters/aman-aquila/front.svg",
  27621. extra: 1013 / 976,
  27622. bottom: 45.6 / 1057
  27623. }
  27624. },
  27625. side: {
  27626. height: math.unit(5 + 7 / 12, "feet"),
  27627. weight: math.unit(185, "lb"),
  27628. name: "Side",
  27629. image: {
  27630. source: "./media/characters/aman-aquila/side.svg",
  27631. extra: 1054 / 1011,
  27632. bottom: 15 / 1070
  27633. }
  27634. },
  27635. back: {
  27636. height: math.unit(5 + 7 / 12, "feet"),
  27637. weight: math.unit(185, "lb"),
  27638. name: "Back",
  27639. image: {
  27640. source: "./media/characters/aman-aquila/back.svg",
  27641. extra: 1026 / 970,
  27642. bottom: 12 / 1039
  27643. }
  27644. },
  27645. head: {
  27646. height: math.unit(1.211, "feet"),
  27647. name: "Head",
  27648. image: {
  27649. source: "./media/characters/aman-aquila/head.svg",
  27650. }
  27651. },
  27652. },
  27653. [
  27654. {
  27655. name: "Minimicro",
  27656. height: math.unit(0.057, "inches")
  27657. },
  27658. {
  27659. name: "Micro",
  27660. height: math.unit(7, "inches")
  27661. },
  27662. {
  27663. name: "Mini",
  27664. height: math.unit(3 + 7 / 12, "feet")
  27665. },
  27666. {
  27667. name: "Normal",
  27668. height: math.unit(5 + 7 / 12, "feet"),
  27669. default: true
  27670. },
  27671. {
  27672. name: "Macro",
  27673. height: math.unit(157 + 7 / 12, "feet")
  27674. },
  27675. {
  27676. name: "Megamacro",
  27677. height: math.unit(1557 + 7 / 12, "feet")
  27678. },
  27679. {
  27680. name: "Gigamacro",
  27681. height: math.unit(15557 + 7 / 12, "feet")
  27682. },
  27683. ]
  27684. ))
  27685. characterMakers.push(() => makeCharacter(
  27686. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27687. {
  27688. front: {
  27689. height: math.unit(3 + 2 / 12, "inches"),
  27690. weight: math.unit(0.3, "ounces"),
  27691. name: "Front",
  27692. image: {
  27693. source: "./media/characters/hiphae/front.svg",
  27694. extra: 1931 / 1683,
  27695. bottom: 24 / 1955
  27696. }
  27697. },
  27698. },
  27699. [
  27700. {
  27701. name: "Normal",
  27702. height: math.unit(3 + 1 / 2, "inches"),
  27703. default: true
  27704. },
  27705. ]
  27706. ))
  27707. characterMakers.push(() => makeCharacter(
  27708. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27709. {
  27710. front: {
  27711. height: math.unit(5 + 10 / 12, "feet"),
  27712. weight: math.unit(165, "lb"),
  27713. name: "Front",
  27714. image: {
  27715. source: "./media/characters/nicky/front.svg",
  27716. extra: 3144 / 2886,
  27717. bottom: 45.6 / 3192
  27718. }
  27719. },
  27720. back: {
  27721. height: math.unit(5 + 10 / 12, "feet"),
  27722. weight: math.unit(165, "lb"),
  27723. name: "Back",
  27724. image: {
  27725. source: "./media/characters/nicky/back.svg",
  27726. extra: 3055 / 2804,
  27727. bottom: 28.4 / 3087
  27728. }
  27729. },
  27730. frontclothed: {
  27731. height: math.unit(5 + 10 / 12, "feet"),
  27732. weight: math.unit(165, "lb"),
  27733. name: "Front-clothed",
  27734. image: {
  27735. source: "./media/characters/nicky/front-clothed.svg",
  27736. extra: 3184.9 / 2926.9,
  27737. bottom: 86.5 / 3239.9
  27738. }
  27739. },
  27740. foot: {
  27741. height: math.unit(1.16, "feet"),
  27742. name: "Foot",
  27743. image: {
  27744. source: "./media/characters/nicky/foot.svg"
  27745. }
  27746. },
  27747. feet: {
  27748. height: math.unit(1.34, "feet"),
  27749. name: "Feet",
  27750. image: {
  27751. source: "./media/characters/nicky/feet.svg"
  27752. }
  27753. },
  27754. maw: {
  27755. height: math.unit(0.9, "feet"),
  27756. name: "Maw",
  27757. image: {
  27758. source: "./media/characters/nicky/maw.svg"
  27759. }
  27760. },
  27761. },
  27762. [
  27763. {
  27764. name: "Normal",
  27765. height: math.unit(5 + 10 / 12, "feet"),
  27766. default: true
  27767. },
  27768. {
  27769. name: "Macro",
  27770. height: math.unit(60, "feet")
  27771. },
  27772. {
  27773. name: "Megamacro",
  27774. height: math.unit(1, "mile")
  27775. },
  27776. ]
  27777. ))
  27778. characterMakers.push(() => makeCharacter(
  27779. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27780. {
  27781. side: {
  27782. height: math.unit(10, "feet"),
  27783. weight: math.unit(600, "lb"),
  27784. name: "Side",
  27785. image: {
  27786. source: "./media/characters/blair/side.svg",
  27787. bottom: 16.6 / 475,
  27788. extra: 458 / 431
  27789. }
  27790. },
  27791. },
  27792. [
  27793. {
  27794. name: "Micro",
  27795. height: math.unit(8, "inches")
  27796. },
  27797. {
  27798. name: "Normal",
  27799. height: math.unit(10, "feet"),
  27800. default: true
  27801. },
  27802. {
  27803. name: "Macro",
  27804. height: math.unit(180, "feet")
  27805. },
  27806. ]
  27807. ))
  27808. characterMakers.push(() => makeCharacter(
  27809. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27810. {
  27811. front: {
  27812. height: math.unit(5 + 4 / 12, "feet"),
  27813. weight: math.unit(125, "lb"),
  27814. name: "Front",
  27815. image: {
  27816. source: "./media/characters/fisher/front.svg",
  27817. extra: 444 / 390,
  27818. bottom: 2 / 444.8
  27819. }
  27820. },
  27821. },
  27822. [
  27823. {
  27824. name: "Micro",
  27825. height: math.unit(4, "inches")
  27826. },
  27827. {
  27828. name: "Normal",
  27829. height: math.unit(5 + 4 / 12, "feet"),
  27830. default: true
  27831. },
  27832. {
  27833. name: "Macro",
  27834. height: math.unit(100, "feet")
  27835. },
  27836. ]
  27837. ))
  27838. characterMakers.push(() => makeCharacter(
  27839. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27840. {
  27841. front: {
  27842. height: math.unit(6.71, "feet"),
  27843. weight: math.unit(200, "lb"),
  27844. preyCapacity: math.unit(1000000, "people"),
  27845. name: "Front",
  27846. image: {
  27847. source: "./media/characters/gliss/front.svg",
  27848. extra: 2347 / 2231,
  27849. bottom: 113 / 2462
  27850. }
  27851. },
  27852. hammerspaceSize: {
  27853. height: math.unit(6.71 * 717, "feet"),
  27854. weight: math.unit(200, "lb"),
  27855. preyCapacity: math.unit(1000000, "people"),
  27856. name: "Hammerspace Size",
  27857. image: {
  27858. source: "./media/characters/gliss/front.svg",
  27859. extra: 2347 / 2231,
  27860. bottom: 113 / 2462
  27861. }
  27862. },
  27863. },
  27864. [
  27865. {
  27866. name: "Normal",
  27867. height: math.unit(6.71, "feet"),
  27868. default: true
  27869. },
  27870. ]
  27871. ))
  27872. characterMakers.push(() => makeCharacter(
  27873. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27874. {
  27875. side: {
  27876. height: math.unit(1.44, "m"),
  27877. weight: math.unit(80, "kg"),
  27878. name: "Side",
  27879. image: {
  27880. source: "./media/characters/dune-anderson/side.svg",
  27881. bottom: 49 / 1426
  27882. }
  27883. },
  27884. },
  27885. [
  27886. {
  27887. name: "Wolf-sized",
  27888. height: math.unit(1.44, "meters")
  27889. },
  27890. {
  27891. name: "Normal",
  27892. height: math.unit(5.05, "meters"),
  27893. default: true
  27894. },
  27895. {
  27896. name: "Big",
  27897. height: math.unit(14.4, "meters")
  27898. },
  27899. {
  27900. name: "Huge",
  27901. height: math.unit(144, "meters")
  27902. },
  27903. ]
  27904. ))
  27905. characterMakers.push(() => makeCharacter(
  27906. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27907. {
  27908. front: {
  27909. height: math.unit(6, "feet"),
  27910. weight: math.unit(220, "lb"),
  27911. name: "Front",
  27912. image: {
  27913. source: "./media/characters/hind/front.svg",
  27914. extra: 1912/1787,
  27915. bottom: 52/1964
  27916. }
  27917. },
  27918. back: {
  27919. height: math.unit(6, "feet"),
  27920. weight: math.unit(220, "lb"),
  27921. name: "Back",
  27922. image: {
  27923. source: "./media/characters/hind/back.svg",
  27924. extra: 1901/1794,
  27925. bottom: 26/1927
  27926. }
  27927. },
  27928. },
  27929. [
  27930. {
  27931. name: "Normal",
  27932. height: math.unit(6, "feet"),
  27933. default: true
  27934. },
  27935. ]
  27936. ))
  27937. characterMakers.push(() => makeCharacter(
  27938. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27939. {
  27940. front: {
  27941. height: math.unit(2.1, "meters"),
  27942. weight: math.unit(150, "lb"),
  27943. name: "Front",
  27944. image: {
  27945. source: "./media/characters/tharquench-sizestealer/front.svg",
  27946. extra: 1605/1470,
  27947. bottom: 36/1641
  27948. }
  27949. },
  27950. frontAlt: {
  27951. height: math.unit(2.1, "meters"),
  27952. weight: math.unit(150, "lb"),
  27953. name: "Front (Alt)",
  27954. image: {
  27955. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27956. extra: 2318 / 2063,
  27957. bottom: 93.4 / 2410
  27958. }
  27959. },
  27960. },
  27961. [
  27962. {
  27963. name: "Nano",
  27964. height: math.unit(1, "mm")
  27965. },
  27966. {
  27967. name: "Micro",
  27968. height: math.unit(1, "cm")
  27969. },
  27970. {
  27971. name: "Normal",
  27972. height: math.unit(2.1, "meters"),
  27973. default: true
  27974. },
  27975. ]
  27976. ))
  27977. characterMakers.push(() => makeCharacter(
  27978. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27979. {
  27980. front: {
  27981. height: math.unit(7 + 5 / 12, "feet"),
  27982. weight: math.unit(357, "lb"),
  27983. name: "Front",
  27984. image: {
  27985. source: "./media/characters/solex-draconov/front.svg",
  27986. extra: 1993 / 1865,
  27987. bottom: 117 / 2111
  27988. }
  27989. },
  27990. },
  27991. [
  27992. {
  27993. name: "Natural Height",
  27994. height: math.unit(7 + 5 / 12, "feet"),
  27995. default: true
  27996. },
  27997. {
  27998. name: "Macro",
  27999. height: math.unit(350, "feet")
  28000. },
  28001. {
  28002. name: "Macro+",
  28003. height: math.unit(1000, "feet")
  28004. },
  28005. {
  28006. name: "Megamacro",
  28007. height: math.unit(20, "km")
  28008. },
  28009. {
  28010. name: "Megamacro+",
  28011. height: math.unit(1000, "km")
  28012. },
  28013. {
  28014. name: "Gigamacro",
  28015. height: math.unit(2.5, "Gm")
  28016. },
  28017. {
  28018. name: "Teramacro",
  28019. height: math.unit(15, "Tm")
  28020. },
  28021. {
  28022. name: "Galactic",
  28023. height: math.unit(30, "Zm")
  28024. },
  28025. {
  28026. name: "Universal",
  28027. height: math.unit(21000, "Ym")
  28028. },
  28029. {
  28030. name: "Omniversal",
  28031. height: math.unit(9.861e50, "Ym")
  28032. },
  28033. {
  28034. name: "Existential",
  28035. height: math.unit(1e300, "meters")
  28036. },
  28037. ]
  28038. ))
  28039. characterMakers.push(() => makeCharacter(
  28040. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28041. {
  28042. side: {
  28043. height: math.unit(25, "feet"),
  28044. weight: math.unit(90000, "lb"),
  28045. name: "Side",
  28046. image: {
  28047. source: "./media/characters/mandarax/side.svg",
  28048. extra: 614 / 332,
  28049. bottom: 55 / 630
  28050. }
  28051. },
  28052. lounging: {
  28053. height: math.unit(15.4, "feet"),
  28054. weight: math.unit(90000, "lb"),
  28055. name: "Lounging",
  28056. image: {
  28057. source: "./media/characters/mandarax/lounging.svg",
  28058. extra: 817/609,
  28059. bottom: 685/1502
  28060. }
  28061. },
  28062. head: {
  28063. height: math.unit(11.4, "feet"),
  28064. name: "Head",
  28065. image: {
  28066. source: "./media/characters/mandarax/head.svg"
  28067. }
  28068. },
  28069. belly: {
  28070. height: math.unit(33, "feet"),
  28071. name: "Belly",
  28072. preyCapacity: math.unit(500, "people"),
  28073. image: {
  28074. source: "./media/characters/mandarax/belly.svg"
  28075. }
  28076. },
  28077. dick: {
  28078. height: math.unit(8.46, "feet"),
  28079. name: "Dick",
  28080. image: {
  28081. source: "./media/characters/mandarax/dick.svg"
  28082. }
  28083. },
  28084. top: {
  28085. height: math.unit(28, "meters"),
  28086. name: "Top",
  28087. image: {
  28088. source: "./media/characters/mandarax/top.svg"
  28089. }
  28090. },
  28091. },
  28092. [
  28093. {
  28094. name: "Normal",
  28095. height: math.unit(25, "feet"),
  28096. default: true
  28097. },
  28098. ]
  28099. ))
  28100. characterMakers.push(() => makeCharacter(
  28101. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28102. {
  28103. front: {
  28104. height: math.unit(5, "feet"),
  28105. weight: math.unit(90, "lb"),
  28106. name: "Front",
  28107. image: {
  28108. source: "./media/characters/pixil/front.svg",
  28109. extra: 2000 / 1618,
  28110. bottom: 12.3 / 2011
  28111. }
  28112. },
  28113. },
  28114. [
  28115. {
  28116. name: "Normal",
  28117. height: math.unit(5, "feet"),
  28118. default: true
  28119. },
  28120. {
  28121. name: "Megamacro",
  28122. height: math.unit(10, "miles"),
  28123. },
  28124. ]
  28125. ))
  28126. characterMakers.push(() => makeCharacter(
  28127. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28128. {
  28129. front: {
  28130. height: math.unit(7 + 2 / 12, "feet"),
  28131. weight: math.unit(200, "lb"),
  28132. name: "Front",
  28133. image: {
  28134. source: "./media/characters/angel/front.svg",
  28135. extra: 1946/1840,
  28136. bottom: 30/1976
  28137. }
  28138. },
  28139. },
  28140. [
  28141. {
  28142. name: "Normal",
  28143. height: math.unit(7 + 2 / 12, "feet"),
  28144. default: true
  28145. },
  28146. {
  28147. name: "Macro",
  28148. height: math.unit(1000, "feet")
  28149. },
  28150. {
  28151. name: "Megamacro",
  28152. height: math.unit(2, "miles")
  28153. },
  28154. {
  28155. name: "Gigamacro",
  28156. height: math.unit(20, "earths")
  28157. },
  28158. ]
  28159. ))
  28160. characterMakers.push(() => makeCharacter(
  28161. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28162. {
  28163. front: {
  28164. height: math.unit(5, "feet"),
  28165. weight: math.unit(180, "lb"),
  28166. name: "Front",
  28167. image: {
  28168. source: "./media/characters/mekana/front.svg",
  28169. extra: 1671 / 1605,
  28170. bottom: 3.5 / 1691
  28171. }
  28172. },
  28173. side: {
  28174. height: math.unit(5, "feet"),
  28175. weight: math.unit(180, "lb"),
  28176. name: "Side",
  28177. image: {
  28178. source: "./media/characters/mekana/side.svg",
  28179. extra: 1671 / 1605,
  28180. bottom: 3.5 / 1691
  28181. }
  28182. },
  28183. back: {
  28184. height: math.unit(5, "feet"),
  28185. weight: math.unit(180, "lb"),
  28186. name: "Back",
  28187. image: {
  28188. source: "./media/characters/mekana/back.svg",
  28189. extra: 1671 / 1605,
  28190. bottom: 3.5 / 1691
  28191. }
  28192. },
  28193. },
  28194. [
  28195. {
  28196. name: "Normal",
  28197. height: math.unit(5, "feet"),
  28198. default: true
  28199. },
  28200. ]
  28201. ))
  28202. characterMakers.push(() => makeCharacter(
  28203. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28204. {
  28205. front: {
  28206. height: math.unit(4 + 6 / 12, "feet"),
  28207. weight: math.unit(80, "lb"),
  28208. name: "Front",
  28209. image: {
  28210. source: "./media/characters/pixie/front.svg",
  28211. extra: 1924 / 1825,
  28212. bottom: 22.4 / 1946
  28213. }
  28214. },
  28215. },
  28216. [
  28217. {
  28218. name: "Normal",
  28219. height: math.unit(4 + 6 / 12, "feet"),
  28220. default: true
  28221. },
  28222. {
  28223. name: "Macro",
  28224. height: math.unit(40, "feet")
  28225. },
  28226. ]
  28227. ))
  28228. characterMakers.push(() => makeCharacter(
  28229. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28230. {
  28231. front: {
  28232. height: math.unit(2.1, "meters"),
  28233. weight: math.unit(200, "lb"),
  28234. name: "Front",
  28235. image: {
  28236. source: "./media/characters/the-lascivious/front.svg",
  28237. extra: 1 / 0.893,
  28238. bottom: 3.5 / 573.7
  28239. }
  28240. },
  28241. },
  28242. [
  28243. {
  28244. name: "Human Scale",
  28245. height: math.unit(2.1, "meters")
  28246. },
  28247. {
  28248. name: "Wolxi Scale",
  28249. height: math.unit(46.2, "m"),
  28250. default: true
  28251. },
  28252. {
  28253. name: "Boinker of Buildings",
  28254. height: math.unit(10, "km")
  28255. },
  28256. {
  28257. name: "Shagger of Skyscrapers",
  28258. height: math.unit(40, "km")
  28259. },
  28260. {
  28261. name: "Banger of Boroughs",
  28262. height: math.unit(4000, "km")
  28263. },
  28264. {
  28265. name: "Screwer of States",
  28266. height: math.unit(100000, "km")
  28267. },
  28268. {
  28269. name: "Pounder of Planets",
  28270. height: math.unit(2000000, "km")
  28271. },
  28272. ]
  28273. ))
  28274. characterMakers.push(() => makeCharacter(
  28275. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28276. {
  28277. front: {
  28278. height: math.unit(6, "feet"),
  28279. weight: math.unit(150, "lb"),
  28280. name: "Front",
  28281. image: {
  28282. source: "./media/characters/aj/front.svg",
  28283. extra: 2039 / 1562,
  28284. bottom: 40 / 2079
  28285. }
  28286. },
  28287. },
  28288. [
  28289. {
  28290. name: "Normal",
  28291. height: math.unit(11 + 6 / 12, "feet"),
  28292. default: true
  28293. },
  28294. {
  28295. name: "Megamacro",
  28296. height: math.unit(60, "megameters")
  28297. },
  28298. ]
  28299. ))
  28300. characterMakers.push(() => makeCharacter(
  28301. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28302. {
  28303. side: {
  28304. height: math.unit(31 + 8 / 12, "feet"),
  28305. weight: math.unit(75000, "kg"),
  28306. name: "Side",
  28307. image: {
  28308. source: "./media/characters/koros/side.svg",
  28309. extra: 1442 / 1297,
  28310. bottom: 122.7 / 1562
  28311. }
  28312. },
  28313. dicksKingsCrown: {
  28314. height: math.unit(6, "feet"),
  28315. name: "Dicks (King's Crown)",
  28316. image: {
  28317. source: "./media/characters/koros/dicks-kings-crown.svg"
  28318. }
  28319. },
  28320. dicksTailSet: {
  28321. height: math.unit(3, "feet"),
  28322. name: "Dicks (Tail Set)",
  28323. image: {
  28324. source: "./media/characters/koros/dicks-tail-set.svg"
  28325. }
  28326. },
  28327. dickCumming: {
  28328. height: math.unit(7.98, "feet"),
  28329. name: "Dick (Cumming)",
  28330. image: {
  28331. source: "./media/characters/koros/dick-cumming.svg"
  28332. }
  28333. },
  28334. dicksBack: {
  28335. height: math.unit(5.9, "feet"),
  28336. name: "Dicks (Back)",
  28337. image: {
  28338. source: "./media/characters/koros/dicks-back.svg"
  28339. }
  28340. },
  28341. dicksFront: {
  28342. height: math.unit(3.72, "feet"),
  28343. name: "Dicks (Front)",
  28344. image: {
  28345. source: "./media/characters/koros/dicks-front.svg"
  28346. }
  28347. },
  28348. dicksPeeking: {
  28349. height: math.unit(3.0, "feet"),
  28350. name: "Dicks (Peeking)",
  28351. image: {
  28352. source: "./media/characters/koros/dicks-peeking.svg"
  28353. }
  28354. },
  28355. eye: {
  28356. height: math.unit(1.7, "feet"),
  28357. name: "Eye",
  28358. image: {
  28359. source: "./media/characters/koros/eye.svg"
  28360. }
  28361. },
  28362. headFront: {
  28363. height: math.unit(11.69, "feet"),
  28364. name: "Head (Front)",
  28365. image: {
  28366. source: "./media/characters/koros/head-front.svg"
  28367. }
  28368. },
  28369. headSide: {
  28370. height: math.unit(14, "feet"),
  28371. name: "Head (Side)",
  28372. image: {
  28373. source: "./media/characters/koros/head-side.svg"
  28374. }
  28375. },
  28376. leg: {
  28377. height: math.unit(17, "feet"),
  28378. name: "Leg",
  28379. image: {
  28380. source: "./media/characters/koros/leg.svg"
  28381. }
  28382. },
  28383. mawSide: {
  28384. height: math.unit(12.8, "feet"),
  28385. name: "Maw (Side)",
  28386. image: {
  28387. source: "./media/characters/koros/maw-side.svg"
  28388. }
  28389. },
  28390. mawSpitting: {
  28391. height: math.unit(17, "feet"),
  28392. name: "Maw (Spitting)",
  28393. image: {
  28394. source: "./media/characters/koros/maw-spitting.svg"
  28395. }
  28396. },
  28397. slit: {
  28398. height: math.unit(2.8, "feet"),
  28399. name: "Slit",
  28400. image: {
  28401. source: "./media/characters/koros/slit.svg"
  28402. }
  28403. },
  28404. stomach: {
  28405. height: math.unit(6.8, "feet"),
  28406. preyCapacity: math.unit(20, "people"),
  28407. name: "Stomach",
  28408. image: {
  28409. source: "./media/characters/koros/stomach.svg"
  28410. }
  28411. },
  28412. wingspanBottom: {
  28413. height: math.unit(114, "feet"),
  28414. name: "Wingspan (Bottom)",
  28415. image: {
  28416. source: "./media/characters/koros/wingspan-bottom.svg"
  28417. }
  28418. },
  28419. wingspanTop: {
  28420. height: math.unit(104, "feet"),
  28421. name: "Wingspan (Top)",
  28422. image: {
  28423. source: "./media/characters/koros/wingspan-top.svg"
  28424. }
  28425. },
  28426. },
  28427. [
  28428. {
  28429. name: "Normal",
  28430. height: math.unit(31 + 8 / 12, "feet"),
  28431. default: true
  28432. },
  28433. ]
  28434. ))
  28435. characterMakers.push(() => makeCharacter(
  28436. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28437. {
  28438. front: {
  28439. height: math.unit(18 + 5 / 12, "feet"),
  28440. weight: math.unit(3750, "kg"),
  28441. name: "Front",
  28442. image: {
  28443. source: "./media/characters/vexx/front.svg",
  28444. extra: 426 / 396,
  28445. bottom: 31.5 / 458
  28446. }
  28447. },
  28448. maw: {
  28449. height: math.unit(6, "feet"),
  28450. name: "Maw",
  28451. image: {
  28452. source: "./media/characters/vexx/maw.svg"
  28453. }
  28454. },
  28455. },
  28456. [
  28457. {
  28458. name: "Normal",
  28459. height: math.unit(18 + 5 / 12, "feet"),
  28460. default: true
  28461. },
  28462. ]
  28463. ))
  28464. characterMakers.push(() => makeCharacter(
  28465. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28466. {
  28467. front: {
  28468. height: math.unit(17 + 6 / 12, "feet"),
  28469. weight: math.unit(150, "lb"),
  28470. name: "Front",
  28471. image: {
  28472. source: "./media/characters/baadra/front.svg",
  28473. extra: 1694/1553,
  28474. bottom: 179/1873
  28475. }
  28476. },
  28477. frontAlt: {
  28478. height: math.unit(17 + 6 / 12, "feet"),
  28479. weight: math.unit(150, "lb"),
  28480. name: "Front (Alt)",
  28481. image: {
  28482. source: "./media/characters/baadra/front-alt.svg",
  28483. extra: 3137 / 2890,
  28484. bottom: 168.4 / 3305
  28485. }
  28486. },
  28487. back: {
  28488. height: math.unit(17 + 6 / 12, "feet"),
  28489. weight: math.unit(150, "lb"),
  28490. name: "Back",
  28491. image: {
  28492. source: "./media/characters/baadra/back.svg",
  28493. extra: 3142 / 2890,
  28494. bottom: 220 / 3371
  28495. }
  28496. },
  28497. head: {
  28498. height: math.unit(5.45, "feet"),
  28499. name: "Head",
  28500. image: {
  28501. source: "./media/characters/baadra/head.svg"
  28502. }
  28503. },
  28504. headAngry: {
  28505. height: math.unit(4.95, "feet"),
  28506. name: "Head (Angry)",
  28507. image: {
  28508. source: "./media/characters/baadra/head-angry.svg"
  28509. }
  28510. },
  28511. headOpen: {
  28512. height: math.unit(6, "feet"),
  28513. name: "Head (Open)",
  28514. image: {
  28515. source: "./media/characters/baadra/head-open.svg"
  28516. }
  28517. },
  28518. },
  28519. [
  28520. {
  28521. name: "Normal",
  28522. height: math.unit(17 + 6 / 12, "feet"),
  28523. default: true
  28524. },
  28525. ]
  28526. ))
  28527. characterMakers.push(() => makeCharacter(
  28528. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28529. {
  28530. front: {
  28531. height: math.unit(7 + 3 / 12, "feet"),
  28532. weight: math.unit(180, "lb"),
  28533. name: "Front",
  28534. image: {
  28535. source: "./media/characters/juri/front.svg",
  28536. extra: 1401 / 1237,
  28537. bottom: 18.5 / 1418
  28538. }
  28539. },
  28540. side: {
  28541. height: math.unit(7 + 3 / 12, "feet"),
  28542. weight: math.unit(180, "lb"),
  28543. name: "Side",
  28544. image: {
  28545. source: "./media/characters/juri/side.svg",
  28546. extra: 1424 / 1242,
  28547. bottom: 18.5 / 1447
  28548. }
  28549. },
  28550. sitting: {
  28551. height: math.unit(6, "feet"),
  28552. weight: math.unit(180, "lb"),
  28553. name: "Sitting",
  28554. image: {
  28555. source: "./media/characters/juri/sitting.svg",
  28556. extra: 1270 / 1143,
  28557. bottom: 100 / 1343
  28558. }
  28559. },
  28560. back: {
  28561. height: math.unit(7 + 3 / 12, "feet"),
  28562. weight: math.unit(180, "lb"),
  28563. name: "Back",
  28564. image: {
  28565. source: "./media/characters/juri/back.svg",
  28566. extra: 1377 / 1240,
  28567. bottom: 23.7 / 1405
  28568. }
  28569. },
  28570. maw: {
  28571. height: math.unit(2.8, "feet"),
  28572. name: "Maw",
  28573. image: {
  28574. source: "./media/characters/juri/maw.svg"
  28575. }
  28576. },
  28577. stomach: {
  28578. height: math.unit(0.89, "feet"),
  28579. preyCapacity: math.unit(4, "liters"),
  28580. name: "Stomach",
  28581. image: {
  28582. source: "./media/characters/juri/stomach.svg"
  28583. }
  28584. },
  28585. },
  28586. [
  28587. {
  28588. name: "Normal",
  28589. height: math.unit(7 + 3 / 12, "feet"),
  28590. default: true
  28591. },
  28592. ]
  28593. ))
  28594. characterMakers.push(() => makeCharacter(
  28595. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28596. {
  28597. fox: {
  28598. height: math.unit(5 + 6 / 12, "feet"),
  28599. weight: math.unit(140, "lb"),
  28600. name: "Fox",
  28601. image: {
  28602. source: "./media/characters/maxene-sita/fox.svg",
  28603. extra: 146 / 138,
  28604. bottom: 2.1 / 148.19
  28605. }
  28606. },
  28607. foxLaying: {
  28608. height: math.unit(1.70, "feet"),
  28609. weight: math.unit(140, "lb"),
  28610. name: "Fox (Laying)",
  28611. image: {
  28612. source: "./media/characters/maxene-sita/fox-laying.svg",
  28613. extra: 910 / 572,
  28614. bottom: 71 / 981
  28615. }
  28616. },
  28617. kitsune: {
  28618. height: math.unit(10, "feet"),
  28619. weight: math.unit(800, "lb"),
  28620. name: "Kitsune",
  28621. image: {
  28622. source: "./media/characters/maxene-sita/kitsune.svg",
  28623. extra: 185 / 176,
  28624. bottom: 4.7 / 189.9
  28625. }
  28626. },
  28627. hellhound: {
  28628. height: math.unit(10, "feet"),
  28629. weight: math.unit(700, "lb"),
  28630. name: "Hellhound",
  28631. image: {
  28632. source: "./media/characters/maxene-sita/hellhound.svg",
  28633. extra: 1600 / 1545,
  28634. bottom: 81 / 1681
  28635. }
  28636. },
  28637. },
  28638. [
  28639. {
  28640. name: "Normal",
  28641. height: math.unit(5 + 6 / 12, "feet"),
  28642. default: true
  28643. },
  28644. ]
  28645. ))
  28646. characterMakers.push(() => makeCharacter(
  28647. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28648. {
  28649. front: {
  28650. height: math.unit(3 + 4 / 12, "feet"),
  28651. weight: math.unit(70, "lb"),
  28652. name: "Front",
  28653. image: {
  28654. source: "./media/characters/maia/front.svg",
  28655. extra: 227 / 219.5,
  28656. bottom: 40 / 267
  28657. }
  28658. },
  28659. back: {
  28660. height: math.unit(3 + 4 / 12, "feet"),
  28661. weight: math.unit(70, "lb"),
  28662. name: "Back",
  28663. image: {
  28664. source: "./media/characters/maia/back.svg",
  28665. extra: 237 / 225
  28666. }
  28667. },
  28668. },
  28669. [
  28670. {
  28671. name: "Normal",
  28672. height: math.unit(3 + 4 / 12, "feet"),
  28673. default: true
  28674. },
  28675. ]
  28676. ))
  28677. characterMakers.push(() => makeCharacter(
  28678. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28679. {
  28680. front: {
  28681. height: math.unit(5 + 10 / 12, "feet"),
  28682. weight: math.unit(197, "lb"),
  28683. name: "Front",
  28684. image: {
  28685. source: "./media/characters/jabaro/front.svg",
  28686. extra: 225 / 216,
  28687. bottom: 5.06 / 230
  28688. }
  28689. },
  28690. back: {
  28691. height: math.unit(5 + 10 / 12, "feet"),
  28692. weight: math.unit(197, "lb"),
  28693. name: "Back",
  28694. image: {
  28695. source: "./media/characters/jabaro/back.svg",
  28696. extra: 225 / 219,
  28697. bottom: 1.9 / 227
  28698. }
  28699. },
  28700. },
  28701. [
  28702. {
  28703. name: "Normal",
  28704. height: math.unit(5 + 10 / 12, "feet"),
  28705. default: true
  28706. },
  28707. ]
  28708. ))
  28709. characterMakers.push(() => makeCharacter(
  28710. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28711. {
  28712. front: {
  28713. height: math.unit(5 + 8 / 12, "feet"),
  28714. weight: math.unit(139, "lb"),
  28715. name: "Front",
  28716. image: {
  28717. source: "./media/characters/risa/front.svg",
  28718. extra: 270 / 260,
  28719. bottom: 11.2 / 282
  28720. }
  28721. },
  28722. back: {
  28723. height: math.unit(5 + 8 / 12, "feet"),
  28724. weight: math.unit(139, "lb"),
  28725. name: "Back",
  28726. image: {
  28727. source: "./media/characters/risa/back.svg",
  28728. extra: 264 / 255,
  28729. bottom: 4 / 268
  28730. }
  28731. },
  28732. },
  28733. [
  28734. {
  28735. name: "Normal",
  28736. height: math.unit(5 + 8 / 12, "feet"),
  28737. default: true
  28738. },
  28739. ]
  28740. ))
  28741. characterMakers.push(() => makeCharacter(
  28742. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28743. {
  28744. front: {
  28745. height: math.unit(2 + 11 / 12, "feet"),
  28746. weight: math.unit(30, "lb"),
  28747. name: "Front",
  28748. image: {
  28749. source: "./media/characters/weatley/front.svg",
  28750. bottom: 10.7 / 414,
  28751. extra: 403.5 / 362
  28752. }
  28753. },
  28754. back: {
  28755. height: math.unit(2 + 11 / 12, "feet"),
  28756. weight: math.unit(30, "lb"),
  28757. name: "Back",
  28758. image: {
  28759. source: "./media/characters/weatley/back.svg",
  28760. bottom: 10.7 / 414,
  28761. extra: 403.5 / 362
  28762. }
  28763. },
  28764. },
  28765. [
  28766. {
  28767. name: "Normal",
  28768. height: math.unit(2 + 11 / 12, "feet"),
  28769. default: true
  28770. },
  28771. ]
  28772. ))
  28773. characterMakers.push(() => makeCharacter(
  28774. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28775. {
  28776. front: {
  28777. height: math.unit(5 + 2 / 12, "feet"),
  28778. weight: math.unit(50, "kg"),
  28779. name: "Front",
  28780. image: {
  28781. source: "./media/characters/mercury-crescent/front.svg",
  28782. extra: 1088 / 1033,
  28783. bottom: 18.9 / 1109
  28784. }
  28785. },
  28786. },
  28787. [
  28788. {
  28789. name: "Normal",
  28790. height: math.unit(5 + 2 / 12, "feet"),
  28791. default: true
  28792. },
  28793. ]
  28794. ))
  28795. characterMakers.push(() => makeCharacter(
  28796. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28797. {
  28798. front: {
  28799. height: math.unit(2, "feet"),
  28800. weight: math.unit(15, "kg"),
  28801. name: "Front",
  28802. image: {
  28803. source: "./media/characters/diamond-jones/front.svg",
  28804. extra: 727/723,
  28805. bottom: 46/773
  28806. }
  28807. },
  28808. },
  28809. [
  28810. {
  28811. name: "Normal",
  28812. height: math.unit(2, "feet"),
  28813. default: true
  28814. },
  28815. ]
  28816. ))
  28817. characterMakers.push(() => makeCharacter(
  28818. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28819. {
  28820. front: {
  28821. height: math.unit(3, "feet"),
  28822. weight: math.unit(30, "kg"),
  28823. name: "Front",
  28824. image: {
  28825. source: "./media/characters/sweet-bit/front.svg",
  28826. extra: 675 / 567,
  28827. bottom: 27.7 / 703
  28828. }
  28829. },
  28830. },
  28831. [
  28832. {
  28833. name: "Normal",
  28834. height: math.unit(3, "feet"),
  28835. default: true
  28836. },
  28837. ]
  28838. ))
  28839. characterMakers.push(() => makeCharacter(
  28840. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28841. {
  28842. side: {
  28843. height: math.unit(9.178, "feet"),
  28844. weight: math.unit(500, "lb"),
  28845. name: "Side",
  28846. image: {
  28847. source: "./media/characters/umbrazen/side.svg",
  28848. extra: 1730 / 1473,
  28849. bottom: 34.6 / 1765
  28850. }
  28851. },
  28852. },
  28853. [
  28854. {
  28855. name: "Normal",
  28856. height: math.unit(9.178, "feet"),
  28857. default: true
  28858. },
  28859. ]
  28860. ))
  28861. characterMakers.push(() => makeCharacter(
  28862. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28863. {
  28864. front: {
  28865. height: math.unit(10, "feet"),
  28866. weight: math.unit(750, "lb"),
  28867. name: "Front",
  28868. image: {
  28869. source: "./media/characters/arlist/front.svg",
  28870. extra: 961 / 778,
  28871. bottom: 6.2 / 986
  28872. }
  28873. },
  28874. },
  28875. [
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(10, "feet"),
  28879. default: true
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(5 + 1 / 12, "feet"),
  28888. weight: math.unit(110, "lb"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/aradel/front.svg",
  28892. extra: 324 / 303,
  28893. bottom: 3.6 / 329.4
  28894. }
  28895. },
  28896. },
  28897. [
  28898. {
  28899. name: "Normal",
  28900. height: math.unit(5 + 1 / 12, "feet"),
  28901. default: true
  28902. },
  28903. ]
  28904. ))
  28905. characterMakers.push(() => makeCharacter(
  28906. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28907. {
  28908. dressed: {
  28909. height: math.unit(3 + 8 / 12, "feet"),
  28910. weight: math.unit(50, "lb"),
  28911. name: "Dressed",
  28912. image: {
  28913. source: "./media/characters/serryn/dressed.svg",
  28914. extra: 1792 / 1656,
  28915. bottom: 43.5 / 1840
  28916. }
  28917. },
  28918. nude: {
  28919. height: math.unit(3 + 8 / 12, "feet"),
  28920. weight: math.unit(50, "lb"),
  28921. name: "Nude",
  28922. image: {
  28923. source: "./media/characters/serryn/nude.svg",
  28924. extra: 1792 / 1656,
  28925. bottom: 43.5 / 1840
  28926. }
  28927. },
  28928. },
  28929. [
  28930. {
  28931. name: "Normal",
  28932. height: math.unit(3 + 8 / 12, "feet"),
  28933. default: true
  28934. },
  28935. ]
  28936. ))
  28937. characterMakers.push(() => makeCharacter(
  28938. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28939. {
  28940. front: {
  28941. height: math.unit(7 + 10 / 12, "feet"),
  28942. weight: math.unit(255, "lb"),
  28943. name: "Front",
  28944. image: {
  28945. source: "./media/characters/xavier-thyme/front.svg",
  28946. extra: 3733 / 3642,
  28947. bottom: 131 / 3869
  28948. }
  28949. },
  28950. frontRaven: {
  28951. height: math.unit(7 + 10 / 12, "feet"),
  28952. weight: math.unit(255, "lb"),
  28953. name: "Front (Raven)",
  28954. image: {
  28955. source: "./media/characters/xavier-thyme/front-raven.svg",
  28956. extra: 4385 / 3642,
  28957. bottom: 131 / 4517
  28958. }
  28959. },
  28960. },
  28961. [
  28962. {
  28963. name: "Normal",
  28964. height: math.unit(7 + 10 / 12, "feet"),
  28965. default: true
  28966. },
  28967. ]
  28968. ))
  28969. characterMakers.push(() => makeCharacter(
  28970. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28971. {
  28972. front: {
  28973. height: math.unit(1.6, "m"),
  28974. weight: math.unit(50, "kg"),
  28975. name: "Front",
  28976. image: {
  28977. source: "./media/characters/kiki/front.svg",
  28978. extra: 4682 / 3610,
  28979. bottom: 115 / 4777
  28980. }
  28981. },
  28982. },
  28983. [
  28984. {
  28985. name: "Normal",
  28986. height: math.unit(1.6, "meters"),
  28987. default: true
  28988. },
  28989. ]
  28990. ))
  28991. characterMakers.push(() => makeCharacter(
  28992. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28993. {
  28994. front: {
  28995. height: math.unit(50, "m"),
  28996. weight: math.unit(500, "tonnes"),
  28997. name: "Front",
  28998. image: {
  28999. source: "./media/characters/ryoko/front.svg",
  29000. extra: 4632 / 3926,
  29001. bottom: 193 / 4823
  29002. }
  29003. },
  29004. },
  29005. [
  29006. {
  29007. name: "Normal",
  29008. height: math.unit(50, "meters"),
  29009. default: true
  29010. },
  29011. ]
  29012. ))
  29013. characterMakers.push(() => makeCharacter(
  29014. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29015. {
  29016. front: {
  29017. height: math.unit(30, "m"),
  29018. weight: math.unit(22, "tonnes"),
  29019. name: "Front",
  29020. image: {
  29021. source: "./media/characters/elio/front.svg",
  29022. extra: 4582 / 3720,
  29023. bottom: 236 / 4828
  29024. }
  29025. },
  29026. },
  29027. [
  29028. {
  29029. name: "Normal",
  29030. height: math.unit(30, "meters"),
  29031. default: true
  29032. },
  29033. ]
  29034. ))
  29035. characterMakers.push(() => makeCharacter(
  29036. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29037. {
  29038. front: {
  29039. height: math.unit(6 + 3 / 12, "feet"),
  29040. weight: math.unit(120, "lb"),
  29041. name: "Front",
  29042. image: {
  29043. source: "./media/characters/azura/front.svg",
  29044. extra: 1149 / 1135,
  29045. bottom: 45 / 1194
  29046. }
  29047. },
  29048. frontClothed: {
  29049. height: math.unit(6 + 3 / 12, "feet"),
  29050. weight: math.unit(120, "lb"),
  29051. name: "Front (Clothed)",
  29052. image: {
  29053. source: "./media/characters/azura/front-clothed.svg",
  29054. extra: 1149 / 1135,
  29055. bottom: 45 / 1194
  29056. }
  29057. },
  29058. },
  29059. [
  29060. {
  29061. name: "Normal",
  29062. height: math.unit(6 + 3 / 12, "feet"),
  29063. default: true
  29064. },
  29065. {
  29066. name: "Macro",
  29067. height: math.unit(20 + 6 / 12, "feet")
  29068. },
  29069. {
  29070. name: "Megamacro",
  29071. height: math.unit(12, "miles")
  29072. },
  29073. {
  29074. name: "Gigamacro",
  29075. height: math.unit(10000, "miles")
  29076. },
  29077. {
  29078. name: "Teramacro",
  29079. height: math.unit(900000, "miles")
  29080. },
  29081. ]
  29082. ))
  29083. characterMakers.push(() => makeCharacter(
  29084. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29085. {
  29086. front: {
  29087. height: math.unit(12, "feet"),
  29088. weight: math.unit(1, "ton"),
  29089. capacity: math.unit(660000, "gallons"),
  29090. name: "Front",
  29091. image: {
  29092. source: "./media/characters/zeus/front.svg",
  29093. extra: 5005 / 4717,
  29094. bottom: 363 / 5388
  29095. }
  29096. },
  29097. },
  29098. [
  29099. {
  29100. name: "Normal",
  29101. height: math.unit(12, "feet")
  29102. },
  29103. {
  29104. name: "Preferred Size",
  29105. height: math.unit(0.5, "miles"),
  29106. default: true
  29107. },
  29108. {
  29109. name: "Giga Horse",
  29110. height: math.unit(300, "miles")
  29111. },
  29112. {
  29113. name: "Riding Planets",
  29114. height: math.unit(30, "megameters")
  29115. },
  29116. {
  29117. name: "Cosmic Giant",
  29118. height: math.unit(3, "zettameters")
  29119. },
  29120. {
  29121. name: "Breeding God",
  29122. height: math.unit(9.92e22, "yottameters")
  29123. },
  29124. ]
  29125. ))
  29126. characterMakers.push(() => makeCharacter(
  29127. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29128. {
  29129. side: {
  29130. height: math.unit(9, "feet"),
  29131. weight: math.unit(1500, "kg"),
  29132. name: "Side",
  29133. image: {
  29134. source: "./media/characters/fang/side.svg",
  29135. extra: 924 / 866,
  29136. bottom: 47.5 / 972.3
  29137. }
  29138. },
  29139. },
  29140. [
  29141. {
  29142. name: "Normal",
  29143. height: math.unit(9, "feet"),
  29144. default: true
  29145. },
  29146. {
  29147. name: "Macro",
  29148. height: math.unit(75 + 6 / 12, "feet")
  29149. },
  29150. {
  29151. name: "Teramacro",
  29152. height: math.unit(50000, "miles")
  29153. },
  29154. ]
  29155. ))
  29156. characterMakers.push(() => makeCharacter(
  29157. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29158. {
  29159. front: {
  29160. height: math.unit(10, "feet"),
  29161. weight: math.unit(2, "tons"),
  29162. name: "Front",
  29163. image: {
  29164. source: "./media/characters/rekhit/front.svg",
  29165. extra: 2796 / 2590,
  29166. bottom: 225 / 3022
  29167. }
  29168. },
  29169. },
  29170. [
  29171. {
  29172. name: "Normal",
  29173. height: math.unit(10, "feet"),
  29174. default: true
  29175. },
  29176. {
  29177. name: "Macro",
  29178. height: math.unit(500, "feet")
  29179. },
  29180. ]
  29181. ))
  29182. characterMakers.push(() => makeCharacter(
  29183. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29184. {
  29185. front: {
  29186. height: math.unit(7 + 6.451 / 12, "feet"),
  29187. weight: math.unit(310, "lb"),
  29188. name: "Front",
  29189. image: {
  29190. source: "./media/characters/dahlia-verrick/front.svg",
  29191. extra: 1488 / 1365,
  29192. bottom: 6.2 / 1495
  29193. }
  29194. },
  29195. back: {
  29196. height: math.unit(7 + 6.451 / 12, "feet"),
  29197. weight: math.unit(310, "lb"),
  29198. name: "Back",
  29199. image: {
  29200. source: "./media/characters/dahlia-verrick/back.svg",
  29201. extra: 1472 / 1351,
  29202. bottom: 5.28 / 1477
  29203. }
  29204. },
  29205. frontBusiness: {
  29206. height: math.unit(7 + 6.451 / 12, "feet"),
  29207. weight: math.unit(200, "lb"),
  29208. name: "Front (Business)",
  29209. image: {
  29210. source: "./media/characters/dahlia-verrick/front-business.svg",
  29211. extra: 1478 / 1381,
  29212. bottom: 5.5 / 1484
  29213. }
  29214. },
  29215. frontCasual: {
  29216. height: math.unit(7 + 6.451 / 12, "feet"),
  29217. weight: math.unit(200, "lb"),
  29218. name: "Front (Casual)",
  29219. image: {
  29220. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29221. extra: 1478 / 1381,
  29222. bottom: 5.5 / 1484
  29223. }
  29224. },
  29225. },
  29226. [
  29227. {
  29228. name: "Travel-Sized",
  29229. height: math.unit(7.45, "inches")
  29230. },
  29231. {
  29232. name: "Normal",
  29233. height: math.unit(7 + 6.451 / 12, "feet"),
  29234. default: true
  29235. },
  29236. {
  29237. name: "Hitting the Town",
  29238. height: math.unit(37 + 8 / 12, "feet")
  29239. },
  29240. {
  29241. name: "Stomp in the Suburbs",
  29242. height: math.unit(964 + 9.728 / 12, "feet")
  29243. },
  29244. {
  29245. name: "Sit on the City",
  29246. height: math.unit(61747 + 10.592 / 12, "feet")
  29247. },
  29248. {
  29249. name: "Glomp the Globe",
  29250. height: math.unit(252919327 + 4.832 / 12, "feet")
  29251. },
  29252. ]
  29253. ))
  29254. characterMakers.push(() => makeCharacter(
  29255. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29256. {
  29257. front: {
  29258. height: math.unit(6 + 4 / 12, "feet"),
  29259. weight: math.unit(320, "lb"),
  29260. name: "Front",
  29261. image: {
  29262. source: "./media/characters/balina-mahigan/front.svg",
  29263. extra: 447 / 428,
  29264. bottom: 18 / 466
  29265. }
  29266. },
  29267. back: {
  29268. height: math.unit(6 + 4 / 12, "feet"),
  29269. weight: math.unit(320, "lb"),
  29270. name: "Back",
  29271. image: {
  29272. source: "./media/characters/balina-mahigan/back.svg",
  29273. extra: 445 / 428,
  29274. bottom: 4.07 / 448
  29275. }
  29276. },
  29277. arm: {
  29278. height: math.unit(1.88, "feet"),
  29279. name: "Arm",
  29280. image: {
  29281. source: "./media/characters/balina-mahigan/arm.svg"
  29282. }
  29283. },
  29284. backPort: {
  29285. height: math.unit(0.685, "feet"),
  29286. name: "Back Port",
  29287. image: {
  29288. source: "./media/characters/balina-mahigan/back-port.svg"
  29289. }
  29290. },
  29291. hoofpaw: {
  29292. height: math.unit(1.41, "feet"),
  29293. name: "Hoofpaw",
  29294. image: {
  29295. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29296. }
  29297. },
  29298. leftHandBack: {
  29299. height: math.unit(0.938, "feet"),
  29300. name: "Left Hand (Back)",
  29301. image: {
  29302. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29303. }
  29304. },
  29305. leftHandFront: {
  29306. height: math.unit(0.938, "feet"),
  29307. name: "Left Hand (Front)",
  29308. image: {
  29309. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29310. }
  29311. },
  29312. rightHandBack: {
  29313. height: math.unit(0.95, "feet"),
  29314. name: "Right Hand (Back)",
  29315. image: {
  29316. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29317. }
  29318. },
  29319. rightHandFront: {
  29320. height: math.unit(0.95, "feet"),
  29321. name: "Right Hand (Front)",
  29322. image: {
  29323. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29324. }
  29325. },
  29326. },
  29327. [
  29328. {
  29329. name: "Normal",
  29330. height: math.unit(6 + 4 / 12, "feet"),
  29331. default: true
  29332. },
  29333. ]
  29334. ))
  29335. characterMakers.push(() => makeCharacter(
  29336. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29337. {
  29338. front: {
  29339. height: math.unit(6, "feet"),
  29340. weight: math.unit(320, "lb"),
  29341. name: "Front",
  29342. image: {
  29343. source: "./media/characters/balina-mejeri/front.svg",
  29344. extra: 517 / 488,
  29345. bottom: 44.2 / 561
  29346. }
  29347. },
  29348. },
  29349. [
  29350. {
  29351. name: "Normal",
  29352. height: math.unit(6 + 4 / 12, "feet")
  29353. },
  29354. {
  29355. name: "Business",
  29356. height: math.unit(155, "feet"),
  29357. default: true
  29358. },
  29359. ]
  29360. ))
  29361. characterMakers.push(() => makeCharacter(
  29362. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29363. {
  29364. kneeling: {
  29365. height: math.unit(6 + 4 / 12, "feet"),
  29366. weight: math.unit(300 * 20, "lb"),
  29367. name: "Kneeling",
  29368. image: {
  29369. source: "./media/characters/balbarian/kneeling.svg",
  29370. extra: 922 / 862,
  29371. bottom: 42.4 / 965
  29372. }
  29373. },
  29374. },
  29375. [
  29376. {
  29377. name: "Normal",
  29378. height: math.unit(6 + 4 / 12, "feet")
  29379. },
  29380. {
  29381. name: "Treasured",
  29382. height: math.unit(18 + 9 / 12, "feet"),
  29383. default: true
  29384. },
  29385. {
  29386. name: "Macro",
  29387. height: math.unit(900, "feet")
  29388. },
  29389. ]
  29390. ))
  29391. characterMakers.push(() => makeCharacter(
  29392. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29393. {
  29394. front: {
  29395. height: math.unit(6 + 4 / 12, "feet"),
  29396. weight: math.unit(325, "lb"),
  29397. name: "Front",
  29398. image: {
  29399. source: "./media/characters/balina-amarini/front.svg",
  29400. extra: 415 / 403,
  29401. bottom: 19 / 433.4
  29402. }
  29403. },
  29404. back: {
  29405. height: math.unit(6 + 4 / 12, "feet"),
  29406. weight: math.unit(325, "lb"),
  29407. name: "Back",
  29408. image: {
  29409. source: "./media/characters/balina-amarini/back.svg",
  29410. extra: 415 / 403,
  29411. bottom: 13.5 / 432
  29412. }
  29413. },
  29414. overdrive: {
  29415. height: math.unit(6 + 4 / 12, "feet"),
  29416. weight: math.unit(400, "lb"),
  29417. name: "Overdrive",
  29418. image: {
  29419. source: "./media/characters/balina-amarini/overdrive.svg",
  29420. extra: 269 / 259,
  29421. bottom: 12 / 282
  29422. }
  29423. },
  29424. },
  29425. [
  29426. {
  29427. name: "Boom",
  29428. height: math.unit(9 + 10 / 12, "feet"),
  29429. default: true
  29430. },
  29431. {
  29432. name: "Macro",
  29433. height: math.unit(280, "feet")
  29434. },
  29435. ]
  29436. ))
  29437. characterMakers.push(() => makeCharacter(
  29438. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29439. {
  29440. goddess: {
  29441. height: math.unit(600, "feet"),
  29442. weight: math.unit(2000000, "tons"),
  29443. name: "Goddess",
  29444. image: {
  29445. source: "./media/characters/lady-kubwa/goddess.svg",
  29446. extra: 1240.5 / 1223,
  29447. bottom: 22 / 1263
  29448. }
  29449. },
  29450. goddesser: {
  29451. height: math.unit(900, "feet"),
  29452. weight: math.unit(20000000, "lb"),
  29453. name: "Goddess-er",
  29454. image: {
  29455. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29456. extra: 899 / 888,
  29457. bottom: 12.6 / 912
  29458. }
  29459. },
  29460. },
  29461. [
  29462. {
  29463. name: "Macro",
  29464. height: math.unit(600, "feet"),
  29465. default: true
  29466. },
  29467. {
  29468. name: "Megamacro",
  29469. height: math.unit(250, "miles")
  29470. },
  29471. ]
  29472. ))
  29473. characterMakers.push(() => makeCharacter(
  29474. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29475. {
  29476. front: {
  29477. height: math.unit(7 + 7 / 12, "feet"),
  29478. weight: math.unit(250, "lb"),
  29479. name: "Front",
  29480. image: {
  29481. source: "./media/characters/tala-grovehorn/front.svg",
  29482. extra: 2636 / 2525,
  29483. bottom: 147 / 2781
  29484. }
  29485. },
  29486. back: {
  29487. height: math.unit(7 + 7 / 12, "feet"),
  29488. weight: math.unit(250, "lb"),
  29489. name: "Back",
  29490. image: {
  29491. source: "./media/characters/tala-grovehorn/back.svg",
  29492. extra: 2635 / 2539,
  29493. bottom: 100 / 2732.8
  29494. }
  29495. },
  29496. mouth: {
  29497. height: math.unit(1.15, "feet"),
  29498. name: "Mouth",
  29499. image: {
  29500. source: "./media/characters/tala-grovehorn/mouth.svg"
  29501. }
  29502. },
  29503. dick: {
  29504. height: math.unit(2.36, "feet"),
  29505. name: "Dick",
  29506. image: {
  29507. source: "./media/characters/tala-grovehorn/dick.svg"
  29508. }
  29509. },
  29510. slit: {
  29511. height: math.unit(0.61, "feet"),
  29512. name: "Slit",
  29513. image: {
  29514. source: "./media/characters/tala-grovehorn/slit.svg"
  29515. }
  29516. },
  29517. },
  29518. [
  29519. ]
  29520. ))
  29521. characterMakers.push(() => makeCharacter(
  29522. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29523. {
  29524. front: {
  29525. height: math.unit(7 + 7 / 12, "feet"),
  29526. weight: math.unit(225, "lb"),
  29527. name: "Front",
  29528. image: {
  29529. source: "./media/characters/epona/front.svg",
  29530. extra: 2445 / 2290,
  29531. bottom: 251 / 2696
  29532. }
  29533. },
  29534. back: {
  29535. height: math.unit(7 + 7 / 12, "feet"),
  29536. weight: math.unit(225, "lb"),
  29537. name: "Back",
  29538. image: {
  29539. source: "./media/characters/epona/back.svg",
  29540. extra: 2546 / 2408,
  29541. bottom: 44 / 2589
  29542. }
  29543. },
  29544. genitals: {
  29545. height: math.unit(1.5, "feet"),
  29546. name: "Genitals",
  29547. image: {
  29548. source: "./media/characters/epona/genitals.svg"
  29549. }
  29550. },
  29551. },
  29552. [
  29553. {
  29554. name: "Normal",
  29555. height: math.unit(7 + 7 / 12, "feet"),
  29556. default: true
  29557. },
  29558. ]
  29559. ))
  29560. characterMakers.push(() => makeCharacter(
  29561. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29562. {
  29563. front: {
  29564. height: math.unit(7, "feet"),
  29565. weight: math.unit(518, "lb"),
  29566. name: "Front",
  29567. image: {
  29568. source: "./media/characters/avia-bloodbourn/front.svg",
  29569. extra: 1466 / 1350,
  29570. bottom: 65 / 1527
  29571. }
  29572. },
  29573. },
  29574. [
  29575. ]
  29576. ))
  29577. characterMakers.push(() => makeCharacter(
  29578. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29579. {
  29580. front: {
  29581. height: math.unit(9.35, "feet"),
  29582. weight: math.unit(600, "lb"),
  29583. name: "Front",
  29584. image: {
  29585. source: "./media/characters/amera/front.svg",
  29586. extra: 891 / 818,
  29587. bottom: 30 / 922.7
  29588. }
  29589. },
  29590. back: {
  29591. height: math.unit(9.35, "feet"),
  29592. weight: math.unit(600, "lb"),
  29593. name: "Back",
  29594. image: {
  29595. source: "./media/characters/amera/back.svg",
  29596. extra: 876 / 824,
  29597. bottom: 6.8 / 884
  29598. }
  29599. },
  29600. dick: {
  29601. height: math.unit(2.14, "feet"),
  29602. name: "Dick",
  29603. image: {
  29604. source: "./media/characters/amera/dick.svg"
  29605. }
  29606. },
  29607. },
  29608. [
  29609. {
  29610. name: "Normal",
  29611. height: math.unit(9.35, "feet"),
  29612. default: true
  29613. },
  29614. ]
  29615. ))
  29616. characterMakers.push(() => makeCharacter(
  29617. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29618. {
  29619. kneeling: {
  29620. height: math.unit(3 + 4 / 12, "feet"),
  29621. weight: math.unit(90, "lb"),
  29622. name: "Kneeling",
  29623. image: {
  29624. source: "./media/characters/rosewen/kneeling.svg",
  29625. extra: 1835 / 1571,
  29626. bottom: 27.7 / 1862
  29627. }
  29628. },
  29629. },
  29630. [
  29631. {
  29632. name: "Normal",
  29633. height: math.unit(3 + 4 / 12, "feet"),
  29634. default: true
  29635. },
  29636. ]
  29637. ))
  29638. characterMakers.push(() => makeCharacter(
  29639. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29640. {
  29641. front: {
  29642. height: math.unit(5 + 10 / 12, "feet"),
  29643. weight: math.unit(200, "lb"),
  29644. name: "Front",
  29645. image: {
  29646. source: "./media/characters/sabah/front.svg",
  29647. extra: 849 / 763,
  29648. bottom: 33.9 / 881
  29649. }
  29650. },
  29651. },
  29652. [
  29653. {
  29654. name: "Normal",
  29655. height: math.unit(5 + 10 / 12, "feet"),
  29656. default: true
  29657. },
  29658. ]
  29659. ))
  29660. characterMakers.push(() => makeCharacter(
  29661. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29662. {
  29663. front: {
  29664. height: math.unit(3 + 5 / 12, "feet"),
  29665. weight: math.unit(40, "kg"),
  29666. name: "Front",
  29667. image: {
  29668. source: "./media/characters/purple-flame/front.svg",
  29669. extra: 1577 / 1412,
  29670. bottom: 97 / 1694
  29671. }
  29672. },
  29673. frontDressed: {
  29674. height: math.unit(3 + 5 / 12, "feet"),
  29675. weight: math.unit(40, "kg"),
  29676. name: "Front (Dressed)",
  29677. image: {
  29678. source: "./media/characters/purple-flame/front-dressed.svg",
  29679. extra: 1577 / 1412,
  29680. bottom: 97 / 1694
  29681. }
  29682. },
  29683. headphones: {
  29684. height: math.unit(0.85, "feet"),
  29685. name: "Headphones",
  29686. image: {
  29687. source: "./media/characters/purple-flame/headphones.svg"
  29688. }
  29689. },
  29690. },
  29691. [
  29692. {
  29693. name: "Really Small",
  29694. height: math.unit(5, "cm")
  29695. },
  29696. {
  29697. name: "Micro",
  29698. height: math.unit(1 + 5 / 12, "feet")
  29699. },
  29700. {
  29701. name: "Normal",
  29702. height: math.unit(3 + 5 / 12, "feet"),
  29703. default: true
  29704. },
  29705. {
  29706. name: "Minimacro",
  29707. height: math.unit(125, "feet")
  29708. },
  29709. {
  29710. name: "Macro",
  29711. height: math.unit(0.5, "miles")
  29712. },
  29713. {
  29714. name: "Megamacro",
  29715. height: math.unit(50, "miles")
  29716. },
  29717. {
  29718. name: "Gigantic",
  29719. height: math.unit(750, "miles")
  29720. },
  29721. {
  29722. name: "Planetary",
  29723. height: math.unit(15000, "miles")
  29724. },
  29725. ]
  29726. ))
  29727. characterMakers.push(() => makeCharacter(
  29728. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29729. {
  29730. front: {
  29731. height: math.unit(14, "feet"),
  29732. weight: math.unit(959, "lb"),
  29733. name: "Front",
  29734. image: {
  29735. source: "./media/characters/arsenal/front.svg",
  29736. extra: 2357 / 2157,
  29737. bottom: 93 / 2458
  29738. }
  29739. },
  29740. },
  29741. [
  29742. {
  29743. name: "Normal",
  29744. height: math.unit(14, "feet"),
  29745. default: true
  29746. },
  29747. ]
  29748. ))
  29749. characterMakers.push(() => makeCharacter(
  29750. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29751. {
  29752. front: {
  29753. height: math.unit(6, "feet"),
  29754. weight: math.unit(150, "lb"),
  29755. name: "Front",
  29756. image: {
  29757. source: "./media/characters/adira/front.svg",
  29758. extra: 2121/2013,
  29759. bottom: 206/2327
  29760. }
  29761. },
  29762. },
  29763. [
  29764. {
  29765. name: "Micro",
  29766. height: math.unit(4, "inches"),
  29767. default: true
  29768. },
  29769. {
  29770. name: "Macro",
  29771. height: math.unit(50, "feet")
  29772. },
  29773. ]
  29774. ))
  29775. characterMakers.push(() => makeCharacter(
  29776. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29777. {
  29778. front: {
  29779. height: math.unit(16, "feet"),
  29780. weight: math.unit(1000, "lb"),
  29781. name: "Front",
  29782. image: {
  29783. source: "./media/characters/grim/front.svg",
  29784. extra: 622 / 614,
  29785. bottom: 18.1 / 642
  29786. }
  29787. },
  29788. back: {
  29789. height: math.unit(16, "feet"),
  29790. weight: math.unit(1000, "lb"),
  29791. name: "Back",
  29792. image: {
  29793. source: "./media/characters/grim/back.svg",
  29794. extra: 610.6 / 602,
  29795. bottom: 40.8 / 652
  29796. }
  29797. },
  29798. hunched: {
  29799. height: math.unit(9.75, "feet"),
  29800. weight: math.unit(1000, "lb"),
  29801. name: "Hunched",
  29802. image: {
  29803. source: "./media/characters/grim/hunched.svg",
  29804. extra: 304 / 297,
  29805. bottom: 35.4 / 394
  29806. }
  29807. },
  29808. },
  29809. [
  29810. {
  29811. name: "Normal",
  29812. height: math.unit(16, "feet"),
  29813. default: true
  29814. },
  29815. ]
  29816. ))
  29817. characterMakers.push(() => makeCharacter(
  29818. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29819. {
  29820. front: {
  29821. height: math.unit(2.3, "meters"),
  29822. weight: math.unit(300, "lb"),
  29823. name: "Front",
  29824. image: {
  29825. source: "./media/characters/sinja/front-sfw.svg",
  29826. extra: 1393 / 1294,
  29827. bottom: 70 / 1463
  29828. }
  29829. },
  29830. frontNsfw: {
  29831. height: math.unit(2.3, "meters"),
  29832. weight: math.unit(300, "lb"),
  29833. name: "Front (NSFW)",
  29834. image: {
  29835. source: "./media/characters/sinja/front-nsfw.svg",
  29836. extra: 1393 / 1294,
  29837. bottom: 70 / 1463
  29838. }
  29839. },
  29840. back: {
  29841. height: math.unit(2.3, "meters"),
  29842. weight: math.unit(300, "lb"),
  29843. name: "Back",
  29844. image: {
  29845. source: "./media/characters/sinja/back.svg",
  29846. extra: 1393 / 1294,
  29847. bottom: 70 / 1463
  29848. }
  29849. },
  29850. head: {
  29851. height: math.unit(1.771, "feet"),
  29852. name: "Head",
  29853. image: {
  29854. source: "./media/characters/sinja/head.svg"
  29855. }
  29856. },
  29857. slit: {
  29858. height: math.unit(0.8, "feet"),
  29859. name: "Slit",
  29860. image: {
  29861. source: "./media/characters/sinja/slit.svg"
  29862. }
  29863. },
  29864. },
  29865. [
  29866. {
  29867. name: "Normal",
  29868. height: math.unit(2.3, "meters")
  29869. },
  29870. {
  29871. name: "Macro",
  29872. height: math.unit(91, "meters"),
  29873. default: true
  29874. },
  29875. {
  29876. name: "Megamacro",
  29877. height: math.unit(91440, "meters")
  29878. },
  29879. {
  29880. name: "Gigamacro",
  29881. height: math.unit(60960000, "meters")
  29882. },
  29883. {
  29884. name: "Teramacro",
  29885. height: math.unit(9144000000, "meters")
  29886. },
  29887. ]
  29888. ))
  29889. characterMakers.push(() => makeCharacter(
  29890. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29891. {
  29892. front: {
  29893. height: math.unit(1.7, "meters"),
  29894. weight: math.unit(130, "lb"),
  29895. name: "Front",
  29896. image: {
  29897. source: "./media/characters/kyu/front.svg",
  29898. extra: 415 / 395,
  29899. bottom: 5 / 420
  29900. }
  29901. },
  29902. head: {
  29903. height: math.unit(1.75, "feet"),
  29904. name: "Head",
  29905. image: {
  29906. source: "./media/characters/kyu/head.svg"
  29907. }
  29908. },
  29909. foot: {
  29910. height: math.unit(0.81, "feet"),
  29911. name: "Foot",
  29912. image: {
  29913. source: "./media/characters/kyu/foot.svg"
  29914. }
  29915. },
  29916. },
  29917. [
  29918. {
  29919. name: "Normal",
  29920. height: math.unit(1.7, "meters")
  29921. },
  29922. {
  29923. name: "Macro",
  29924. height: math.unit(131, "feet"),
  29925. default: true
  29926. },
  29927. {
  29928. name: "Megamacro",
  29929. height: math.unit(91440, "meters")
  29930. },
  29931. {
  29932. name: "Gigamacro",
  29933. height: math.unit(60960000, "meters")
  29934. },
  29935. {
  29936. name: "Teramacro",
  29937. height: math.unit(9144000000, "meters")
  29938. },
  29939. ]
  29940. ))
  29941. characterMakers.push(() => makeCharacter(
  29942. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29943. {
  29944. front: {
  29945. height: math.unit(7 + 1 / 12, "feet"),
  29946. weight: math.unit(250, "lb"),
  29947. name: "Front",
  29948. image: {
  29949. source: "./media/characters/joey/front.svg",
  29950. extra: 1791 / 1537,
  29951. bottom: 28 / 1816
  29952. }
  29953. },
  29954. },
  29955. [
  29956. {
  29957. name: "Micro",
  29958. height: math.unit(3, "inches")
  29959. },
  29960. {
  29961. name: "Normal",
  29962. height: math.unit(7 + 1 / 12, "feet"),
  29963. default: true
  29964. },
  29965. ]
  29966. ))
  29967. characterMakers.push(() => makeCharacter(
  29968. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29969. {
  29970. front: {
  29971. height: math.unit(165, "cm"),
  29972. weight: math.unit(140, "lb"),
  29973. name: "Front",
  29974. image: {
  29975. source: "./media/characters/sam-evans/front.svg",
  29976. extra: 3417 / 3230,
  29977. bottom: 41.3 / 3417
  29978. }
  29979. },
  29980. frontSixTails: {
  29981. height: math.unit(165, "cm"),
  29982. weight: math.unit(140, "lb"),
  29983. name: "Front-six-tails",
  29984. image: {
  29985. source: "./media/characters/sam-evans/front-six-tails.svg",
  29986. extra: 3417 / 3230,
  29987. bottom: 41.3 / 3417
  29988. }
  29989. },
  29990. back: {
  29991. height: math.unit(165, "cm"),
  29992. weight: math.unit(140, "lb"),
  29993. name: "Back",
  29994. image: {
  29995. source: "./media/characters/sam-evans/back.svg",
  29996. extra: 3227 / 3032,
  29997. bottom: 6.8 / 3234
  29998. }
  29999. },
  30000. face: {
  30001. height: math.unit(0.68, "feet"),
  30002. name: "Face",
  30003. image: {
  30004. source: "./media/characters/sam-evans/face.svg"
  30005. }
  30006. },
  30007. },
  30008. [
  30009. {
  30010. name: "Normal",
  30011. height: math.unit(165, "cm"),
  30012. default: true
  30013. },
  30014. {
  30015. name: "Macro",
  30016. height: math.unit(100, "meters")
  30017. },
  30018. {
  30019. name: "Macro+",
  30020. height: math.unit(800, "meters")
  30021. },
  30022. {
  30023. name: "Macro++",
  30024. height: math.unit(3, "km")
  30025. },
  30026. {
  30027. name: "Macro+++",
  30028. height: math.unit(30, "km")
  30029. },
  30030. ]
  30031. ))
  30032. characterMakers.push(() => makeCharacter(
  30033. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30034. {
  30035. front: {
  30036. height: math.unit(10, "feet"),
  30037. weight: math.unit(750, "lb"),
  30038. name: "Front",
  30039. image: {
  30040. source: "./media/characters/juliet-a/front.svg",
  30041. extra: 1766 / 1720,
  30042. bottom: 43 / 1809
  30043. }
  30044. },
  30045. back: {
  30046. height: math.unit(10, "feet"),
  30047. weight: math.unit(750, "lb"),
  30048. name: "Back",
  30049. image: {
  30050. source: "./media/characters/juliet-a/back.svg",
  30051. extra: 1781 / 1734,
  30052. bottom: 35 / 1810,
  30053. }
  30054. },
  30055. },
  30056. [
  30057. {
  30058. name: "Normal",
  30059. height: math.unit(10, "feet"),
  30060. default: true
  30061. },
  30062. {
  30063. name: "Dragon Form",
  30064. height: math.unit(250, "feet")
  30065. },
  30066. {
  30067. name: "Macro",
  30068. height: math.unit(1000, "feet")
  30069. },
  30070. {
  30071. name: "Megamacro",
  30072. height: math.unit(10000, "feet")
  30073. }
  30074. ]
  30075. ))
  30076. characterMakers.push(() => makeCharacter(
  30077. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30078. {
  30079. regular: {
  30080. height: math.unit(7 + 3 / 12, "feet"),
  30081. weight: math.unit(260, "lb"),
  30082. name: "Regular",
  30083. image: {
  30084. source: "./media/characters/wild/regular.svg",
  30085. extra: 97.45 / 92,
  30086. bottom: 6.8 / 104.3
  30087. }
  30088. },
  30089. biggums: {
  30090. height: math.unit(8 + 6 / 12, "feet"),
  30091. weight: math.unit(425, "lb"),
  30092. name: "Biggums",
  30093. image: {
  30094. source: "./media/characters/wild/biggums.svg",
  30095. extra: 97.45 / 92,
  30096. bottom: 7.5 / 132.34
  30097. }
  30098. },
  30099. mawRegular: {
  30100. height: math.unit(1.24, "feet"),
  30101. name: "Maw (Regular)",
  30102. image: {
  30103. source: "./media/characters/wild/maw.svg"
  30104. }
  30105. },
  30106. mawBiggums: {
  30107. height: math.unit(1.47, "feet"),
  30108. name: "Maw (Biggums)",
  30109. image: {
  30110. source: "./media/characters/wild/maw.svg"
  30111. }
  30112. },
  30113. },
  30114. [
  30115. {
  30116. name: "Normal",
  30117. height: math.unit(7 + 3 / 12, "feet"),
  30118. default: true
  30119. },
  30120. ]
  30121. ))
  30122. characterMakers.push(() => makeCharacter(
  30123. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30124. {
  30125. front: {
  30126. height: math.unit(2.5, "meters"),
  30127. weight: math.unit(200, "kg"),
  30128. name: "Front",
  30129. image: {
  30130. source: "./media/characters/vidar/front.svg",
  30131. extra: 2994 / 2795,
  30132. bottom: 56 / 3061
  30133. }
  30134. },
  30135. back: {
  30136. height: math.unit(2.5, "meters"),
  30137. weight: math.unit(200, "kg"),
  30138. name: "Back",
  30139. image: {
  30140. source: "./media/characters/vidar/back.svg",
  30141. extra: 3131 / 2928,
  30142. bottom: 13.5 / 3141.5
  30143. }
  30144. },
  30145. feral: {
  30146. height: math.unit(2.5, "meters"),
  30147. weight: math.unit(2000, "kg"),
  30148. name: "Feral",
  30149. image: {
  30150. source: "./media/characters/vidar/feral.svg",
  30151. extra: 2790 / 1765,
  30152. bottom: 6 / 2796
  30153. }
  30154. },
  30155. },
  30156. [
  30157. {
  30158. name: "Normal",
  30159. height: math.unit(2.5, "meters"),
  30160. default: true
  30161. },
  30162. {
  30163. name: "Macro",
  30164. height: math.unit(100, "meters")
  30165. },
  30166. ]
  30167. ))
  30168. characterMakers.push(() => makeCharacter(
  30169. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30170. {
  30171. front: {
  30172. height: math.unit(5 + 9 / 12, "feet"),
  30173. weight: math.unit(120, "lb"),
  30174. name: "Front",
  30175. image: {
  30176. source: "./media/characters/ash/front.svg",
  30177. extra: 2189 / 1961,
  30178. bottom: 5.2 / 2194
  30179. }
  30180. },
  30181. },
  30182. [
  30183. {
  30184. name: "Normal",
  30185. height: math.unit(5 + 9 / 12, "feet"),
  30186. default: true
  30187. },
  30188. ]
  30189. ))
  30190. characterMakers.push(() => makeCharacter(
  30191. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30192. {
  30193. front: {
  30194. height: math.unit(9, "feet"),
  30195. weight: math.unit(10000, "lb"),
  30196. name: "Front",
  30197. image: {
  30198. source: "./media/characters/gygabite/front.svg",
  30199. bottom: 31.7 / 537.8,
  30200. extra: 505 / 370
  30201. }
  30202. },
  30203. },
  30204. [
  30205. {
  30206. name: "Normal",
  30207. height: math.unit(9, "feet"),
  30208. default: true
  30209. },
  30210. ]
  30211. ))
  30212. characterMakers.push(() => makeCharacter(
  30213. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30214. {
  30215. front: {
  30216. height: math.unit(12, "feet"),
  30217. weight: math.unit(4000, "lb"),
  30218. name: "Front",
  30219. image: {
  30220. source: "./media/characters/p0tat0/front.svg",
  30221. extra: 1065 / 921,
  30222. bottom: 55.7 / 1121.25
  30223. }
  30224. },
  30225. },
  30226. [
  30227. {
  30228. name: "Normal",
  30229. height: math.unit(12, "feet"),
  30230. default: true
  30231. },
  30232. ]
  30233. ))
  30234. characterMakers.push(() => makeCharacter(
  30235. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30236. {
  30237. side: {
  30238. height: math.unit(6.5, "feet"),
  30239. weight: math.unit(800, "lb"),
  30240. name: "Side",
  30241. image: {
  30242. source: "./media/characters/dusk/side.svg",
  30243. extra: 615 / 373,
  30244. bottom: 53 / 664
  30245. }
  30246. },
  30247. sitting: {
  30248. height: math.unit(7, "feet"),
  30249. weight: math.unit(800, "lb"),
  30250. name: "Sitting",
  30251. image: {
  30252. source: "./media/characters/dusk/sitting.svg",
  30253. extra: 753 / 425,
  30254. bottom: 33 / 774
  30255. }
  30256. },
  30257. head: {
  30258. height: math.unit(6.1, "feet"),
  30259. name: "Head",
  30260. image: {
  30261. source: "./media/characters/dusk/head.svg"
  30262. }
  30263. },
  30264. },
  30265. [
  30266. {
  30267. name: "Normal",
  30268. height: math.unit(7, "feet"),
  30269. default: true
  30270. },
  30271. ]
  30272. ))
  30273. characterMakers.push(() => makeCharacter(
  30274. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30275. {
  30276. front: {
  30277. height: math.unit(15, "feet"),
  30278. weight: math.unit(7000, "lb"),
  30279. name: "Front",
  30280. image: {
  30281. source: "./media/characters/jay-direwolf/front.svg",
  30282. extra: 1810 / 1732,
  30283. bottom: 66 / 1892
  30284. }
  30285. },
  30286. },
  30287. [
  30288. {
  30289. name: "Normal",
  30290. height: math.unit(15, "feet"),
  30291. default: true
  30292. },
  30293. ]
  30294. ))
  30295. characterMakers.push(() => makeCharacter(
  30296. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30297. {
  30298. front: {
  30299. height: math.unit(4 + 9 / 12, "feet"),
  30300. weight: math.unit(130, "lb"),
  30301. name: "Front",
  30302. image: {
  30303. source: "./media/characters/anchovie/front.svg",
  30304. extra: 382 / 350,
  30305. bottom: 25 / 409
  30306. }
  30307. },
  30308. back: {
  30309. height: math.unit(4 + 9 / 12, "feet"),
  30310. weight: math.unit(130, "lb"),
  30311. name: "Back",
  30312. image: {
  30313. source: "./media/characters/anchovie/back.svg",
  30314. extra: 385 / 352,
  30315. bottom: 16.6 / 402
  30316. }
  30317. },
  30318. frontDressed: {
  30319. height: math.unit(4 + 9 / 12, "feet"),
  30320. weight: math.unit(130, "lb"),
  30321. name: "Front (Dressed)",
  30322. image: {
  30323. source: "./media/characters/anchovie/front-dressed.svg",
  30324. extra: 382 / 350,
  30325. bottom: 25 / 409
  30326. }
  30327. },
  30328. backDressed: {
  30329. height: math.unit(4 + 9 / 12, "feet"),
  30330. weight: math.unit(130, "lb"),
  30331. name: "Back (Dressed)",
  30332. image: {
  30333. source: "./media/characters/anchovie/back-dressed.svg",
  30334. extra: 385 / 352,
  30335. bottom: 16.6 / 402
  30336. }
  30337. },
  30338. },
  30339. [
  30340. {
  30341. name: "Micro",
  30342. height: math.unit(6.4, "inches")
  30343. },
  30344. {
  30345. name: "Normal",
  30346. height: math.unit(4 + 9 / 12, "feet"),
  30347. default: true
  30348. },
  30349. ]
  30350. ))
  30351. characterMakers.push(() => makeCharacter(
  30352. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30353. {
  30354. front: {
  30355. height: math.unit(2, "meters"),
  30356. weight: math.unit(180, "lb"),
  30357. name: "Front",
  30358. image: {
  30359. source: "./media/characters/acidrenamon/front.svg",
  30360. extra: 987 / 890,
  30361. bottom: 22.8 / 1009
  30362. }
  30363. },
  30364. back: {
  30365. height: math.unit(2, "meters"),
  30366. weight: math.unit(180, "lb"),
  30367. name: "Back",
  30368. image: {
  30369. source: "./media/characters/acidrenamon/back.svg",
  30370. extra: 983 / 891,
  30371. bottom: 8.4 / 992
  30372. }
  30373. },
  30374. head: {
  30375. height: math.unit(1.92, "feet"),
  30376. name: "Head",
  30377. image: {
  30378. source: "./media/characters/acidrenamon/head.svg"
  30379. }
  30380. },
  30381. rump: {
  30382. height: math.unit(1.72, "feet"),
  30383. name: "Rump",
  30384. image: {
  30385. source: "./media/characters/acidrenamon/rump.svg"
  30386. }
  30387. },
  30388. tail: {
  30389. height: math.unit(4.2, "feet"),
  30390. name: "Tail",
  30391. image: {
  30392. source: "./media/characters/acidrenamon/tail.svg"
  30393. }
  30394. },
  30395. },
  30396. [
  30397. {
  30398. name: "Normal",
  30399. height: math.unit(2, "meters"),
  30400. default: true
  30401. },
  30402. {
  30403. name: "Minimacro",
  30404. height: math.unit(7, "meters")
  30405. },
  30406. {
  30407. name: "Macro",
  30408. height: math.unit(200, "meters")
  30409. },
  30410. {
  30411. name: "Gigamacro",
  30412. height: math.unit(0.2, "earths")
  30413. },
  30414. ]
  30415. ))
  30416. characterMakers.push(() => makeCharacter(
  30417. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30418. {
  30419. front: {
  30420. height: math.unit(152, "feet"),
  30421. name: "Front",
  30422. image: {
  30423. source: "./media/characters/kenzie-lee/front.svg",
  30424. extra: 1869/1774,
  30425. bottom: 128/1997
  30426. }
  30427. },
  30428. side: {
  30429. height: math.unit(86, "feet"),
  30430. name: "Side",
  30431. image: {
  30432. source: "./media/characters/kenzie-lee/side.svg",
  30433. extra: 930/815,
  30434. bottom: 177/1107
  30435. }
  30436. },
  30437. paw: {
  30438. height: math.unit(15, "feet"),
  30439. name: "Paw",
  30440. image: {
  30441. source: "./media/characters/kenzie-lee/paw.svg"
  30442. }
  30443. },
  30444. },
  30445. [
  30446. {
  30447. name: "Kenzie Flea",
  30448. height: math.unit(2, "mm"),
  30449. default: true
  30450. },
  30451. {
  30452. name: "Micro",
  30453. height: math.unit(2, "inches")
  30454. },
  30455. {
  30456. name: "Normal",
  30457. height: math.unit(152, "feet")
  30458. },
  30459. {
  30460. name: "Megamacro",
  30461. height: math.unit(7, "miles")
  30462. },
  30463. {
  30464. name: "Gigamacro",
  30465. height: math.unit(8000, "miles")
  30466. },
  30467. ]
  30468. ))
  30469. characterMakers.push(() => makeCharacter(
  30470. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30471. {
  30472. front: {
  30473. height: math.unit(6, "feet"),
  30474. name: "Front",
  30475. image: {
  30476. source: "./media/characters/withers/front.svg",
  30477. extra: 1935/1760,
  30478. bottom: 72/2007
  30479. }
  30480. },
  30481. back: {
  30482. height: math.unit(6, "feet"),
  30483. name: "Back",
  30484. image: {
  30485. source: "./media/characters/withers/back.svg",
  30486. extra: 1944/1792,
  30487. bottom: 12/1956
  30488. }
  30489. },
  30490. dressed: {
  30491. height: math.unit(6, "feet"),
  30492. name: "Dressed",
  30493. image: {
  30494. source: "./media/characters/withers/dressed.svg",
  30495. extra: 1937/1765,
  30496. bottom: 73/2010
  30497. }
  30498. },
  30499. phase1: {
  30500. height: math.unit(1.1, "feet"),
  30501. name: "Phase 1",
  30502. image: {
  30503. source: "./media/characters/withers/phase-1.svg",
  30504. extra: 1885/1232,
  30505. bottom: 0/1885
  30506. }
  30507. },
  30508. phase2: {
  30509. height: math.unit(1.05, "feet"),
  30510. name: "Phase 2",
  30511. image: {
  30512. source: "./media/characters/withers/phase-2.svg",
  30513. extra: 1792/1090,
  30514. bottom: 0/1792
  30515. }
  30516. },
  30517. partyWipe: {
  30518. height: math.unit(1.1, "feet"),
  30519. name: "Party Wipe",
  30520. image: {
  30521. source: "./media/characters/withers/party-wipe.svg",
  30522. extra: 1864/1207,
  30523. bottom: 0/1864
  30524. }
  30525. },
  30526. },
  30527. [
  30528. {
  30529. name: "Macro",
  30530. height: math.unit(167, "feet"),
  30531. default: true
  30532. },
  30533. {
  30534. name: "Megamacro",
  30535. height: math.unit(15, "miles")
  30536. }
  30537. ]
  30538. ))
  30539. characterMakers.push(() => makeCharacter(
  30540. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30541. {
  30542. front: {
  30543. height: math.unit(6 + 7 / 12, "feet"),
  30544. weight: math.unit(250, "lb"),
  30545. name: "Front",
  30546. image: {
  30547. source: "./media/characters/nemoskii/front.svg",
  30548. extra: 2270 / 1734,
  30549. bottom: 86 / 2354
  30550. }
  30551. },
  30552. back: {
  30553. height: math.unit(6 + 7 / 12, "feet"),
  30554. weight: math.unit(250, "lb"),
  30555. name: "Back",
  30556. image: {
  30557. source: "./media/characters/nemoskii/back.svg",
  30558. extra: 1845 / 1788,
  30559. bottom: 10.5 / 1852
  30560. }
  30561. },
  30562. head: {
  30563. height: math.unit(1.31, "feet"),
  30564. name: "Head",
  30565. image: {
  30566. source: "./media/characters/nemoskii/head.svg"
  30567. }
  30568. },
  30569. },
  30570. [
  30571. {
  30572. name: "Micro",
  30573. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30574. },
  30575. {
  30576. name: "Normal",
  30577. height: math.unit(6 + 7 / 12, "feet"),
  30578. default: true
  30579. },
  30580. {
  30581. name: "Macro",
  30582. height: math.unit((6 + 7 / 12) * 150, "feet")
  30583. },
  30584. {
  30585. name: "Macro+",
  30586. height: math.unit((6 + 7 / 12) * 500, "feet")
  30587. },
  30588. {
  30589. name: "Megamacro",
  30590. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30591. },
  30592. ]
  30593. ))
  30594. characterMakers.push(() => makeCharacter(
  30595. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30596. {
  30597. front: {
  30598. height: math.unit(1, "mile"),
  30599. weight: math.unit(265261.9, "lb"),
  30600. name: "Front",
  30601. image: {
  30602. source: "./media/characters/shui/front.svg",
  30603. extra: 1633 / 1564,
  30604. bottom: 91.5 / 1726
  30605. }
  30606. },
  30607. },
  30608. [
  30609. {
  30610. name: "Macro",
  30611. height: math.unit(1, "mile"),
  30612. default: true
  30613. },
  30614. ]
  30615. ))
  30616. characterMakers.push(() => makeCharacter(
  30617. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30618. {
  30619. front: {
  30620. height: math.unit(12 + 6 / 12, "feet"),
  30621. weight: math.unit(1342, "lb"),
  30622. name: "Front",
  30623. image: {
  30624. source: "./media/characters/arokh-takakura/front.svg",
  30625. extra: 1089 / 1043,
  30626. bottom: 77.4 / 1176.7
  30627. }
  30628. },
  30629. back: {
  30630. height: math.unit(12 + 6 / 12, "feet"),
  30631. weight: math.unit(1342, "lb"),
  30632. name: "Back",
  30633. image: {
  30634. source: "./media/characters/arokh-takakura/back.svg",
  30635. extra: 1046 / 1019,
  30636. bottom: 102 / 1150
  30637. }
  30638. },
  30639. },
  30640. [
  30641. {
  30642. name: "Big",
  30643. height: math.unit(12 + 6 / 12, "feet"),
  30644. default: true
  30645. },
  30646. ]
  30647. ))
  30648. characterMakers.push(() => makeCharacter(
  30649. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30650. {
  30651. front: {
  30652. height: math.unit(5 + 6 / 12, "feet"),
  30653. weight: math.unit(150, "lb"),
  30654. name: "Front",
  30655. image: {
  30656. source: "./media/characters/theo/front.svg",
  30657. extra: 1184 / 1131,
  30658. bottom: 7.4 / 1191
  30659. }
  30660. },
  30661. },
  30662. [
  30663. {
  30664. name: "Micro",
  30665. height: math.unit(5, "inches")
  30666. },
  30667. {
  30668. name: "Normal",
  30669. height: math.unit(5 + 6 / 12, "feet"),
  30670. default: true
  30671. },
  30672. ]
  30673. ))
  30674. characterMakers.push(() => makeCharacter(
  30675. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30676. {
  30677. front: {
  30678. height: math.unit(5 + 9 / 12, "feet"),
  30679. weight: math.unit(130, "lb"),
  30680. name: "Front",
  30681. image: {
  30682. source: "./media/characters/cecelia-swift/front.svg",
  30683. extra: 502 / 484,
  30684. bottom: 23 / 523
  30685. }
  30686. },
  30687. back: {
  30688. height: math.unit(5 + 9 / 12, "feet"),
  30689. weight: math.unit(130, "lb"),
  30690. name: "Back",
  30691. image: {
  30692. source: "./media/characters/cecelia-swift/back.svg",
  30693. extra: 499 / 485,
  30694. bottom: 12 / 511
  30695. }
  30696. },
  30697. head: {
  30698. height: math.unit(0.90, "feet"),
  30699. name: "Head",
  30700. image: {
  30701. source: "./media/characters/cecelia-swift/head.svg"
  30702. }
  30703. },
  30704. rump: {
  30705. height: math.unit(1.75, "feet"),
  30706. name: "Rump",
  30707. image: {
  30708. source: "./media/characters/cecelia-swift/rump.svg"
  30709. }
  30710. },
  30711. },
  30712. [
  30713. {
  30714. name: "Normal",
  30715. height: math.unit(5 + 9 / 12, "feet"),
  30716. default: true
  30717. },
  30718. {
  30719. name: "Big",
  30720. height: math.unit(50, "feet")
  30721. },
  30722. {
  30723. name: "Macro",
  30724. height: math.unit(100, "feet")
  30725. },
  30726. {
  30727. name: "Macro+",
  30728. height: math.unit(500, "feet")
  30729. },
  30730. {
  30731. name: "Macro++",
  30732. height: math.unit(1000, "feet")
  30733. },
  30734. ]
  30735. ))
  30736. characterMakers.push(() => makeCharacter(
  30737. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30738. {
  30739. front: {
  30740. height: math.unit(6, "feet"),
  30741. weight: math.unit(150, "lb"),
  30742. name: "Front",
  30743. image: {
  30744. source: "./media/characters/kaunan/front.svg",
  30745. extra: 2890 / 2523,
  30746. bottom: 49 / 2939
  30747. }
  30748. },
  30749. },
  30750. [
  30751. {
  30752. name: "Macro",
  30753. height: math.unit(150, "feet"),
  30754. default: true
  30755. },
  30756. ]
  30757. ))
  30758. characterMakers.push(() => makeCharacter(
  30759. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30760. {
  30761. dressed: {
  30762. height: math.unit(175, "cm"),
  30763. weight: math.unit(60, "kg"),
  30764. name: "Dressed",
  30765. image: {
  30766. source: "./media/characters/fei/dressed.svg",
  30767. extra: 1402/1278,
  30768. bottom: 27/1429
  30769. }
  30770. },
  30771. nude: {
  30772. height: math.unit(175, "cm"),
  30773. weight: math.unit(60, "kg"),
  30774. name: "Nude",
  30775. image: {
  30776. source: "./media/characters/fei/nude.svg",
  30777. extra: 1402/1278,
  30778. bottom: 27/1429
  30779. }
  30780. },
  30781. heels: {
  30782. height: math.unit(0.466, "feet"),
  30783. name: "Heels",
  30784. image: {
  30785. source: "./media/characters/fei/heels.svg",
  30786. extra: 156/152,
  30787. bottom: 28/184
  30788. }
  30789. },
  30790. },
  30791. [
  30792. {
  30793. name: "Mortal",
  30794. height: math.unit(175, "cm")
  30795. },
  30796. {
  30797. name: "Normal",
  30798. height: math.unit(3500, "m")
  30799. },
  30800. {
  30801. name: "Stroll",
  30802. height: math.unit(18.4, "km"),
  30803. default: true
  30804. },
  30805. {
  30806. name: "Showoff",
  30807. height: math.unit(175, "km")
  30808. },
  30809. ]
  30810. ))
  30811. characterMakers.push(() => makeCharacter(
  30812. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30813. {
  30814. front: {
  30815. height: math.unit(7, "feet"),
  30816. weight: math.unit(1000, "kg"),
  30817. name: "Front",
  30818. image: {
  30819. source: "./media/characters/edrax/front.svg",
  30820. extra: 2838 / 2550,
  30821. bottom: 130 / 2968
  30822. }
  30823. },
  30824. },
  30825. [
  30826. {
  30827. name: "Small",
  30828. height: math.unit(7, "feet")
  30829. },
  30830. {
  30831. name: "Normal",
  30832. height: math.unit(1500, "meters")
  30833. },
  30834. {
  30835. name: "Mega",
  30836. height: math.unit(12000000, "km"),
  30837. default: true
  30838. },
  30839. {
  30840. name: "Megamacro",
  30841. height: math.unit(10600000, "lightyears")
  30842. },
  30843. {
  30844. name: "Hypermacro",
  30845. height: math.unit(256, "yottameters")
  30846. },
  30847. ]
  30848. ))
  30849. characterMakers.push(() => makeCharacter(
  30850. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30851. {
  30852. front: {
  30853. height: math.unit(10, "feet"),
  30854. weight: math.unit(750, "lb"),
  30855. name: "Front",
  30856. image: {
  30857. source: "./media/characters/clove/front.svg",
  30858. extra: 1918/1751,
  30859. bottom: 52/1970
  30860. }
  30861. },
  30862. back: {
  30863. height: math.unit(10, "feet"),
  30864. weight: math.unit(750, "lb"),
  30865. name: "Back",
  30866. image: {
  30867. source: "./media/characters/clove/back.svg",
  30868. extra: 1912/1747,
  30869. bottom: 50/1962
  30870. }
  30871. },
  30872. },
  30873. [
  30874. {
  30875. name: "Normal",
  30876. height: math.unit(10, "feet"),
  30877. default: true
  30878. },
  30879. ]
  30880. ))
  30881. characterMakers.push(() => makeCharacter(
  30882. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30883. {
  30884. front: {
  30885. height: math.unit(4, "feet"),
  30886. weight: math.unit(50, "lb"),
  30887. name: "Front",
  30888. image: {
  30889. source: "./media/characters/alex-rabbit/front.svg",
  30890. extra: 507 / 458,
  30891. bottom: 18.5 / 527
  30892. }
  30893. },
  30894. back: {
  30895. height: math.unit(4, "feet"),
  30896. weight: math.unit(50, "lb"),
  30897. name: "Back",
  30898. image: {
  30899. source: "./media/characters/alex-rabbit/back.svg",
  30900. extra: 502 / 460,
  30901. bottom: 18.9 / 521
  30902. }
  30903. },
  30904. },
  30905. [
  30906. {
  30907. name: "Normal",
  30908. height: math.unit(4, "feet"),
  30909. default: true
  30910. },
  30911. ]
  30912. ))
  30913. characterMakers.push(() => makeCharacter(
  30914. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30915. {
  30916. front: {
  30917. height: math.unit(1 + 3 / 12, "feet"),
  30918. weight: math.unit(80, "lb"),
  30919. name: "Front",
  30920. image: {
  30921. source: "./media/characters/zander-rose/front.svg",
  30922. extra: 916 / 797,
  30923. bottom: 17 / 933
  30924. }
  30925. },
  30926. back: {
  30927. height: math.unit(1 + 3 / 12, "feet"),
  30928. weight: math.unit(80, "lb"),
  30929. name: "Back",
  30930. image: {
  30931. source: "./media/characters/zander-rose/back.svg",
  30932. extra: 903 / 779,
  30933. bottom: 31 / 934
  30934. }
  30935. },
  30936. },
  30937. [
  30938. {
  30939. name: "Normal",
  30940. height: math.unit(1 + 3 / 12, "feet"),
  30941. default: true
  30942. },
  30943. ]
  30944. ))
  30945. characterMakers.push(() => makeCharacter(
  30946. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30947. {
  30948. anthro: {
  30949. height: math.unit(6, "feet"),
  30950. weight: math.unit(150, "lb"),
  30951. name: "Anthro",
  30952. image: {
  30953. source: "./media/characters/razz/anthro.svg",
  30954. extra: 1437 / 1343,
  30955. bottom: 48 / 1485
  30956. }
  30957. },
  30958. feral: {
  30959. height: math.unit(6, "feet"),
  30960. weight: math.unit(150, "lb"),
  30961. name: "Feral",
  30962. image: {
  30963. source: "./media/characters/razz/feral.svg",
  30964. extra: 2569 / 1385,
  30965. bottom: 95 / 2664
  30966. }
  30967. },
  30968. },
  30969. [
  30970. {
  30971. name: "Normal",
  30972. height: math.unit(6, "feet"),
  30973. default: true
  30974. },
  30975. ]
  30976. ))
  30977. characterMakers.push(() => makeCharacter(
  30978. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30979. {
  30980. front: {
  30981. height: math.unit(9 + 4 / 12, "feet"),
  30982. weight: math.unit(500, "lb"),
  30983. name: "Front",
  30984. image: {
  30985. source: "./media/characters/morrigan/front.svg",
  30986. extra: 2707 / 2579,
  30987. bottom: 156 / 2863
  30988. }
  30989. },
  30990. },
  30991. [
  30992. {
  30993. name: "Normal",
  30994. height: math.unit(9 + 4 / 12, "feet"),
  30995. default: true
  30996. },
  30997. ]
  30998. ))
  30999. characterMakers.push(() => makeCharacter(
  31000. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31001. {
  31002. front: {
  31003. height: math.unit(5, "stories"),
  31004. weight: math.unit(4000, "lb"),
  31005. name: "Front",
  31006. image: {
  31007. source: "./media/characters/jenene/front.svg",
  31008. extra: 1780 / 1710,
  31009. bottom: 57 / 1837
  31010. }
  31011. },
  31012. },
  31013. [
  31014. {
  31015. name: "Normal",
  31016. height: math.unit(5, "stories"),
  31017. default: true
  31018. },
  31019. ]
  31020. ))
  31021. characterMakers.push(() => makeCharacter(
  31022. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31023. {
  31024. taurSfw: {
  31025. height: math.unit(10, "meters"),
  31026. weight: math.unit(17500, "kg"),
  31027. name: "Taur",
  31028. image: {
  31029. source: "./media/characters/faey/taur-sfw.svg",
  31030. extra: 1200 / 968,
  31031. bottom: 41 / 1241
  31032. }
  31033. },
  31034. chestmaw: {
  31035. height: math.unit(2.01, "meters"),
  31036. name: "Chestmaw",
  31037. image: {
  31038. source: "./media/characters/faey/chestmaw.svg"
  31039. }
  31040. },
  31041. foot: {
  31042. height: math.unit(2.43, "meters"),
  31043. name: "Foot",
  31044. image: {
  31045. source: "./media/characters/faey/foot.svg"
  31046. }
  31047. },
  31048. jaws: {
  31049. height: math.unit(1.66, "meters"),
  31050. name: "Jaws",
  31051. image: {
  31052. source: "./media/characters/faey/jaws.svg"
  31053. }
  31054. },
  31055. tongues: {
  31056. height: math.unit(2.01, "meters"),
  31057. name: "Tongues",
  31058. image: {
  31059. source: "./media/characters/faey/tongues.svg"
  31060. }
  31061. },
  31062. },
  31063. [
  31064. {
  31065. name: "Small",
  31066. height: math.unit(10, "meters"),
  31067. default: true
  31068. },
  31069. {
  31070. name: "Big",
  31071. height: math.unit(500000, "km")
  31072. },
  31073. ]
  31074. ))
  31075. characterMakers.push(() => makeCharacter(
  31076. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31077. {
  31078. front: {
  31079. height: math.unit(7, "feet"),
  31080. weight: math.unit(275, "lb"),
  31081. name: "Front",
  31082. image: {
  31083. source: "./media/characters/roku/front.svg",
  31084. extra: 903 / 878,
  31085. bottom: 37 / 940
  31086. }
  31087. },
  31088. },
  31089. [
  31090. {
  31091. name: "Normal",
  31092. height: math.unit(7, "feet"),
  31093. default: true
  31094. },
  31095. {
  31096. name: "Macro",
  31097. height: math.unit(500, "feet")
  31098. },
  31099. {
  31100. name: "Megamacro",
  31101. height: math.unit(200, "miles")
  31102. },
  31103. ]
  31104. ))
  31105. characterMakers.push(() => makeCharacter(
  31106. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31107. {
  31108. front: {
  31109. height: math.unit(6 + 2 / 12, "feet"),
  31110. weight: math.unit(150, "lb"),
  31111. name: "Front",
  31112. image: {
  31113. source: "./media/characters/lira/front.svg",
  31114. extra: 1727 / 1605,
  31115. bottom: 26 / 1753
  31116. }
  31117. },
  31118. back: {
  31119. height: math.unit(6 + 2 / 12, "feet"),
  31120. weight: math.unit(150, "lb"),
  31121. name: "Back",
  31122. image: {
  31123. source: "./media/characters/lira/back.svg",
  31124. extra: 1713/1621,
  31125. bottom: 20/1733
  31126. }
  31127. },
  31128. hand: {
  31129. height: math.unit(0.75, "feet"),
  31130. name: "Hand",
  31131. image: {
  31132. source: "./media/characters/lira/hand.svg"
  31133. }
  31134. },
  31135. maw: {
  31136. height: math.unit(0.65, "feet"),
  31137. name: "Maw",
  31138. image: {
  31139. source: "./media/characters/lira/maw.svg"
  31140. }
  31141. },
  31142. pawDigi: {
  31143. height: math.unit(1.6, "feet"),
  31144. name: "Paw Digi",
  31145. image: {
  31146. source: "./media/characters/lira/paw-digi.svg"
  31147. }
  31148. },
  31149. pawPlanti: {
  31150. height: math.unit(1.4, "feet"),
  31151. name: "Paw Planti",
  31152. image: {
  31153. source: "./media/characters/lira/paw-planti.svg"
  31154. }
  31155. },
  31156. },
  31157. [
  31158. {
  31159. name: "Normal",
  31160. height: math.unit(6 + 2 / 12, "feet"),
  31161. default: true
  31162. },
  31163. {
  31164. name: "Macro",
  31165. height: math.unit(100, "feet")
  31166. },
  31167. {
  31168. name: "Macro²",
  31169. height: math.unit(1600, "feet")
  31170. },
  31171. {
  31172. name: "Planetary",
  31173. height: math.unit(20, "earths")
  31174. },
  31175. ]
  31176. ))
  31177. characterMakers.push(() => makeCharacter(
  31178. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31179. {
  31180. front: {
  31181. height: math.unit(6, "feet"),
  31182. weight: math.unit(150, "lb"),
  31183. name: "Front",
  31184. image: {
  31185. source: "./media/characters/hadjet/front.svg",
  31186. extra: 1480 / 1346,
  31187. bottom: 26 / 1506
  31188. }
  31189. },
  31190. frontNsfw: {
  31191. height: math.unit(6, "feet"),
  31192. weight: math.unit(150, "lb"),
  31193. name: "Front (NSFW)",
  31194. image: {
  31195. source: "./media/characters/hadjet/front-nsfw.svg",
  31196. extra: 1440 / 1358,
  31197. bottom: 52 / 1492
  31198. }
  31199. },
  31200. },
  31201. [
  31202. {
  31203. name: "Macro",
  31204. height: math.unit(10, "stories"),
  31205. default: true
  31206. },
  31207. {
  31208. name: "Megamacro",
  31209. height: math.unit(1.5, "miles")
  31210. },
  31211. {
  31212. name: "Megamacro+",
  31213. height: math.unit(5, "miles")
  31214. },
  31215. ]
  31216. ))
  31217. characterMakers.push(() => makeCharacter(
  31218. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31219. {
  31220. side: {
  31221. height: math.unit(106, "feet"),
  31222. weight: math.unit(500, "tonnes"),
  31223. name: "Side",
  31224. image: {
  31225. source: "./media/characters/kodran/side.svg",
  31226. extra: 553 / 480,
  31227. bottom: 33 / 586
  31228. }
  31229. },
  31230. front: {
  31231. height: math.unit(132, "feet"),
  31232. weight: math.unit(500, "tonnes"),
  31233. name: "Front",
  31234. image: {
  31235. source: "./media/characters/kodran/front.svg",
  31236. extra: 667 / 643,
  31237. bottom: 42 / 709
  31238. }
  31239. },
  31240. flying: {
  31241. height: math.unit(350, "feet"),
  31242. weight: math.unit(500, "tonnes"),
  31243. name: "Flying",
  31244. image: {
  31245. source: "./media/characters/kodran/flying.svg"
  31246. }
  31247. },
  31248. foot: {
  31249. height: math.unit(33, "feet"),
  31250. name: "Foot",
  31251. image: {
  31252. source: "./media/characters/kodran/foot.svg"
  31253. }
  31254. },
  31255. footFront: {
  31256. height: math.unit(19, "feet"),
  31257. name: "Foot (Front)",
  31258. image: {
  31259. source: "./media/characters/kodran/foot-front.svg",
  31260. extra: 261 / 261,
  31261. bottom: 91 / 352
  31262. }
  31263. },
  31264. headFront: {
  31265. height: math.unit(53, "feet"),
  31266. name: "Head (Front)",
  31267. image: {
  31268. source: "./media/characters/kodran/head-front.svg"
  31269. }
  31270. },
  31271. headSide: {
  31272. height: math.unit(65, "feet"),
  31273. name: "Head (Side)",
  31274. image: {
  31275. source: "./media/characters/kodran/head-side.svg"
  31276. }
  31277. },
  31278. throat: {
  31279. height: math.unit(79, "feet"),
  31280. name: "Throat",
  31281. image: {
  31282. source: "./media/characters/kodran/throat.svg"
  31283. }
  31284. },
  31285. },
  31286. [
  31287. {
  31288. name: "Large",
  31289. height: math.unit(106, "feet"),
  31290. default: true
  31291. },
  31292. ]
  31293. ))
  31294. characterMakers.push(() => makeCharacter(
  31295. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31296. {
  31297. side: {
  31298. height: math.unit(11, "feet"),
  31299. weight: math.unit(150, "lb"),
  31300. name: "Side",
  31301. image: {
  31302. source: "./media/characters/pyxaron/side.svg",
  31303. extra: 305 / 195,
  31304. bottom: 17 / 322
  31305. }
  31306. },
  31307. },
  31308. [
  31309. {
  31310. name: "Normal",
  31311. height: math.unit(11, "feet"),
  31312. default: true
  31313. },
  31314. ]
  31315. ))
  31316. characterMakers.push(() => makeCharacter(
  31317. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31318. {
  31319. front: {
  31320. height: math.unit(6, "feet"),
  31321. weight: math.unit(150, "lb"),
  31322. name: "Front",
  31323. image: {
  31324. source: "./media/characters/meep/front.svg",
  31325. extra: 88 / 80,
  31326. bottom: 6 / 94
  31327. }
  31328. },
  31329. },
  31330. [
  31331. {
  31332. name: "Fun Sized",
  31333. height: math.unit(2, "inches"),
  31334. default: true
  31335. },
  31336. {
  31337. name: "Friend Sized",
  31338. height: math.unit(8, "inches")
  31339. },
  31340. ]
  31341. ))
  31342. characterMakers.push(() => makeCharacter(
  31343. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31344. {
  31345. front: {
  31346. height: math.unit(15, "feet"),
  31347. weight: math.unit(2500, "lb"),
  31348. name: "Front",
  31349. image: {
  31350. source: "./media/characters/holly-rabbit/front.svg",
  31351. extra: 1433 / 1233,
  31352. bottom: 125 / 1558
  31353. }
  31354. },
  31355. dick: {
  31356. height: math.unit(4.6, "feet"),
  31357. name: "Dick",
  31358. image: {
  31359. source: "./media/characters/holly-rabbit/dick.svg"
  31360. }
  31361. },
  31362. },
  31363. [
  31364. {
  31365. name: "Normal",
  31366. height: math.unit(15, "feet"),
  31367. default: true
  31368. },
  31369. {
  31370. name: "Macro",
  31371. height: math.unit(250, "feet")
  31372. },
  31373. {
  31374. name: "Macro+",
  31375. height: math.unit(2500, "feet")
  31376. },
  31377. ]
  31378. ))
  31379. characterMakers.push(() => makeCharacter(
  31380. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31381. {
  31382. front: {
  31383. height: math.unit(3.02, "meters"),
  31384. weight: math.unit(500, "kg"),
  31385. name: "Front",
  31386. image: {
  31387. source: "./media/characters/drena/front.svg",
  31388. extra: 282 / 243,
  31389. bottom: 8 / 290
  31390. }
  31391. },
  31392. side: {
  31393. height: math.unit(3.02, "meters"),
  31394. weight: math.unit(500, "kg"),
  31395. name: "Side",
  31396. image: {
  31397. source: "./media/characters/drena/side.svg",
  31398. extra: 280 / 245,
  31399. bottom: 10 / 290
  31400. }
  31401. },
  31402. back: {
  31403. height: math.unit(3.02, "meters"),
  31404. weight: math.unit(500, "kg"),
  31405. name: "Back",
  31406. image: {
  31407. source: "./media/characters/drena/back.svg",
  31408. extra: 278 / 243,
  31409. bottom: 2 / 280
  31410. }
  31411. },
  31412. foot: {
  31413. height: math.unit(0.75, "meters"),
  31414. name: "Foot",
  31415. image: {
  31416. source: "./media/characters/drena/foot.svg"
  31417. }
  31418. },
  31419. maw: {
  31420. height: math.unit(0.82, "meters"),
  31421. name: "Maw",
  31422. image: {
  31423. source: "./media/characters/drena/maw.svg"
  31424. }
  31425. },
  31426. eating: {
  31427. height: math.unit(0.75, "meters"),
  31428. name: "Eating",
  31429. image: {
  31430. source: "./media/characters/drena/eating.svg"
  31431. }
  31432. },
  31433. rump: {
  31434. height: math.unit(0.93, "meters"),
  31435. name: "Rump",
  31436. image: {
  31437. source: "./media/characters/drena/rump.svg"
  31438. }
  31439. },
  31440. },
  31441. [
  31442. {
  31443. name: "Normal",
  31444. height: math.unit(3.02, "meters"),
  31445. default: true
  31446. },
  31447. ]
  31448. ))
  31449. characterMakers.push(() => makeCharacter(
  31450. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31451. {
  31452. front: {
  31453. height: math.unit(6 + 4 / 12, "feet"),
  31454. weight: math.unit(250, "lb"),
  31455. name: "Front",
  31456. image: {
  31457. source: "./media/characters/remmyzilla/front.svg",
  31458. extra: 4033 / 3588,
  31459. bottom: 123 / 4156
  31460. }
  31461. },
  31462. back: {
  31463. height: math.unit(6 + 4 / 12, "feet"),
  31464. weight: math.unit(250, "lb"),
  31465. name: "Back",
  31466. image: {
  31467. source: "./media/characters/remmyzilla/back.svg",
  31468. extra: 1696/1602,
  31469. bottom: 63/1759
  31470. }
  31471. },
  31472. paw: {
  31473. height: math.unit(1.73, "feet"),
  31474. name: "Paw",
  31475. image: {
  31476. source: "./media/characters/remmyzilla/paw.svg"
  31477. },
  31478. extraAttributes: {
  31479. "toeSize": {
  31480. name: "Toe Size",
  31481. power: 2,
  31482. type: "area",
  31483. base: math.unit(0.0035, "m^2")
  31484. },
  31485. "padSize": {
  31486. name: "Pad Size",
  31487. power: 2,
  31488. type: "area",
  31489. base: math.unit(0.015, "m^2")
  31490. },
  31491. "pawsize": {
  31492. name: "Paw Size",
  31493. power: 2,
  31494. type: "area",
  31495. base: math.unit(0.072, "m^2")
  31496. },
  31497. }
  31498. },
  31499. maw: {
  31500. height: math.unit(1.73, "feet"),
  31501. name: "Maw",
  31502. image: {
  31503. source: "./media/characters/remmyzilla/maw.svg"
  31504. }
  31505. },
  31506. },
  31507. [
  31508. {
  31509. name: "Normal",
  31510. height: math.unit(6 + 4 / 12, "feet")
  31511. },
  31512. {
  31513. name: "Minimacro",
  31514. height: math.unit(12 + 8 / 12, "feet")
  31515. },
  31516. {
  31517. name: "Normal",
  31518. height: math.unit(640, "feet"),
  31519. default: true
  31520. },
  31521. {
  31522. name: "Megamacro",
  31523. height: math.unit(6400, "feet")
  31524. },
  31525. {
  31526. name: "Gigamacro",
  31527. height: math.unit(64000, "miles")
  31528. },
  31529. ]
  31530. ))
  31531. characterMakers.push(() => makeCharacter(
  31532. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31533. {
  31534. front: {
  31535. height: math.unit(2.5, "meters"),
  31536. weight: math.unit(300, "lb"),
  31537. name: "Front",
  31538. image: {
  31539. source: "./media/characters/lawrence/front.svg",
  31540. extra: 357 / 335,
  31541. bottom: 30 / 387
  31542. }
  31543. },
  31544. back: {
  31545. height: math.unit(2.5, "meters"),
  31546. weight: math.unit(300, "lb"),
  31547. name: "Back",
  31548. image: {
  31549. source: "./media/characters/lawrence/back.svg",
  31550. extra: 357 / 338,
  31551. bottom: 16 / 373
  31552. }
  31553. },
  31554. head: {
  31555. height: math.unit(0.9, "meter"),
  31556. name: "Head",
  31557. image: {
  31558. source: "./media/characters/lawrence/head.svg"
  31559. }
  31560. },
  31561. maw: {
  31562. height: math.unit(0.7, "meter"),
  31563. name: "Maw",
  31564. image: {
  31565. source: "./media/characters/lawrence/maw.svg"
  31566. }
  31567. },
  31568. footBottom: {
  31569. height: math.unit(0.5, "meter"),
  31570. name: "Foot (Bottom)",
  31571. image: {
  31572. source: "./media/characters/lawrence/foot-bottom.svg"
  31573. }
  31574. },
  31575. footTop: {
  31576. height: math.unit(0.5, "meter"),
  31577. name: "Foot (Top)",
  31578. image: {
  31579. source: "./media/characters/lawrence/foot-top.svg"
  31580. }
  31581. },
  31582. },
  31583. [
  31584. {
  31585. name: "Normal",
  31586. height: math.unit(2.5, "meters"),
  31587. default: true
  31588. },
  31589. {
  31590. name: "Macro",
  31591. height: math.unit(95, "meters")
  31592. },
  31593. {
  31594. name: "Megamacro",
  31595. height: math.unit(150, "km")
  31596. },
  31597. ]
  31598. ))
  31599. characterMakers.push(() => makeCharacter(
  31600. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31601. {
  31602. front: {
  31603. height: math.unit(4.2, "meters"),
  31604. preyCapacity: math.unit(50, "m^3"),
  31605. weight: math.unit(30, "tonnes"),
  31606. name: "Front",
  31607. image: {
  31608. source: "./media/characters/sydney/front.svg",
  31609. extra: 1177/1129,
  31610. bottom: 197/1374
  31611. },
  31612. extraAttributes: {
  31613. "length": {
  31614. name: "Length",
  31615. power: 1,
  31616. type: "length",
  31617. base: math.unit(21, "meters")
  31618. },
  31619. }
  31620. },
  31621. },
  31622. [
  31623. {
  31624. name: "Normal",
  31625. height: math.unit(4.2, "meters"),
  31626. default: true
  31627. },
  31628. ]
  31629. ))
  31630. characterMakers.push(() => makeCharacter(
  31631. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31632. {
  31633. back: {
  31634. height: math.unit(201, "feet"),
  31635. name: "Back",
  31636. image: {
  31637. source: "./media/characters/jessica/back.svg",
  31638. extra: 273 / 259,
  31639. bottom: 7 / 280
  31640. }
  31641. },
  31642. },
  31643. [
  31644. {
  31645. name: "Normal",
  31646. height: math.unit(201, "feet"),
  31647. default: true
  31648. },
  31649. {
  31650. name: "Megamacro",
  31651. height: math.unit(8, "miles")
  31652. },
  31653. ]
  31654. ))
  31655. characterMakers.push(() => makeCharacter(
  31656. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31657. {
  31658. side: {
  31659. height: math.unit(5.6, "m"),
  31660. weight: math.unit(8000, "kg"),
  31661. name: "Side",
  31662. image: {
  31663. source: "./media/characters/victoria/side.svg",
  31664. extra: 1542/1229,
  31665. bottom: 124/1666
  31666. }
  31667. },
  31668. maw: {
  31669. height: math.unit(7.14, "feet"),
  31670. name: "Maw",
  31671. image: {
  31672. source: "./media/characters/victoria/maw.svg"
  31673. }
  31674. },
  31675. },
  31676. [
  31677. {
  31678. name: "Normal",
  31679. height: math.unit(5.6, "m"),
  31680. default: true
  31681. },
  31682. ]
  31683. ))
  31684. characterMakers.push(() => makeCharacter(
  31685. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31686. {
  31687. front: {
  31688. height: math.unit(5 + 6 / 12, "feet"),
  31689. name: "Front",
  31690. image: {
  31691. source: "./media/characters/cat/cat-front.svg",
  31692. extra: 1422/1262,
  31693. bottom: 61/1483
  31694. },
  31695. form: "cat",
  31696. default: true
  31697. },
  31698. back: {
  31699. height: math.unit(5 + 6 / 12, "feet"),
  31700. name: "Back",
  31701. image: {
  31702. source: "./media/characters/cat/cat-back.svg",
  31703. extra: 1466/1301,
  31704. bottom: 19/1485
  31705. },
  31706. form: "cat"
  31707. },
  31708. taur: {
  31709. height: math.unit(7, "feet"),
  31710. name: "Side",
  31711. image: {
  31712. source: "./media/characters/cat/taur-side.svg",
  31713. extra: 1389/1233,
  31714. bottom: 83/1472
  31715. },
  31716. form: "taur",
  31717. default: true
  31718. },
  31719. lucarioFront: {
  31720. height: math.unit(4, "feet"),
  31721. name: "Front",
  31722. image: {
  31723. source: "./media/characters/cat/lucario-front.svg",
  31724. extra: 1149/1019,
  31725. bottom: 84/1233
  31726. },
  31727. form: "lucario",
  31728. default: true
  31729. },
  31730. lucarioBack: {
  31731. height: math.unit(4, "feet"),
  31732. name: "Back",
  31733. image: {
  31734. source: "./media/characters/cat/lucario-back.svg",
  31735. extra: 1190/1059,
  31736. bottom: 33/1223
  31737. },
  31738. form: "lucario"
  31739. },
  31740. riolu_front: {
  31741. height: math.unit(2 + 4/12, "feet"),
  31742. name: "Front",
  31743. image: {
  31744. source: "./media/characters/cat/riolu-front.svg",
  31745. extra: 1104/956,
  31746. bottom: 70/1174
  31747. },
  31748. form: "riolu",
  31749. default: true
  31750. },
  31751. nickit: {
  31752. height: math.unit(2, "feet"),
  31753. name: "Side",
  31754. image: {
  31755. source: "./media/characters/cat/nickit-side.svg",
  31756. extra: 1087/852,
  31757. bottom: 67/1154
  31758. },
  31759. form: "nickit",
  31760. default: true
  31761. },
  31762. lopunnyFront: {
  31763. height: math.unit(5, "feet"),
  31764. name: "Front",
  31765. image: {
  31766. source: "./media/characters/cat/lopunny-front.svg",
  31767. extra: 1217/1078,
  31768. bottom: 23/1240
  31769. },
  31770. form: "lopunny",
  31771. default: true
  31772. },
  31773. lopunnyBack: {
  31774. height: math.unit(5, "feet"),
  31775. name: "Back",
  31776. image: {
  31777. source: "./media/characters/cat/lopunny-back.svg",
  31778. extra: 1205/1057,
  31779. bottom: 33/1238
  31780. },
  31781. form: "lopunny"
  31782. },
  31783. dog_front: {
  31784. height: math.unit(5 + 9/12, "feet"),
  31785. name: "Front",
  31786. image: {
  31787. source: "./media/characters/cat/dog-front.svg",
  31788. extra: 1403/1309,
  31789. bottom: 31/1434
  31790. },
  31791. form: "dog",
  31792. default: true
  31793. },
  31794. dog_back: {
  31795. height: math.unit(5 + 9/12, "feet"),
  31796. name: "Back",
  31797. image: {
  31798. source: "./media/characters/cat/dog-back.svg",
  31799. extra: 1393/1297,
  31800. bottom: 38/1431
  31801. },
  31802. form: "dog",
  31803. },
  31804. pikachu_front: {
  31805. height: math.unit(2.64, "feet"),
  31806. name: "Front",
  31807. image: {
  31808. source: "./media/characters/cat/pikachu-front.svg",
  31809. extra: 1224/958,
  31810. bottom: 34/1258
  31811. },
  31812. form: "pikachu",
  31813. default: true
  31814. },
  31815. pikachu_back: {
  31816. height: math.unit(2.64, "feet"),
  31817. name: "Back",
  31818. image: {
  31819. source: "./media/characters/cat/pikachu-back.svg",
  31820. extra: 1228/958,
  31821. bottom: 16/1244
  31822. },
  31823. form: "pikachu",
  31824. },
  31825. gigachuFront: {
  31826. height: math.unit(75, "feet"),
  31827. name: "Front",
  31828. image: {
  31829. source: "./media/characters/cat/gigachu-front.svg",
  31830. extra: 1239/1027,
  31831. bottom: 32/1271
  31832. },
  31833. form: "gigachu",
  31834. default: true
  31835. },
  31836. gigachuBack: {
  31837. height: math.unit(75, "feet"),
  31838. name: "Back",
  31839. image: {
  31840. source: "./media/characters/cat/gigachu-back.svg",
  31841. extra: 1229/1030,
  31842. bottom: 9/1238
  31843. },
  31844. form: "gigachu"
  31845. },
  31846. },
  31847. [
  31848. {
  31849. name: "Really small",
  31850. height: math.unit(1, "nm"),
  31851. allForms: true
  31852. },
  31853. {
  31854. name: "Micro",
  31855. height: math.unit(5, "inches"),
  31856. allForms: true
  31857. },
  31858. {
  31859. name: "Normal",
  31860. height: math.unit(5 + 6 / 12, "feet"),
  31861. default: true,
  31862. form: "cat"
  31863. },
  31864. {
  31865. name: "Normal",
  31866. height: math.unit(7, "feet"),
  31867. default: true,
  31868. form: "taur"
  31869. },
  31870. {
  31871. name: "Normal",
  31872. height: math.unit(4, "feet"),
  31873. default: true,
  31874. form: "lucario"
  31875. },
  31876. {
  31877. name: "Normal",
  31878. height: math.unit(2, "feet"),
  31879. default: true,
  31880. form: "nickit"
  31881. },
  31882. {
  31883. name: "Normal",
  31884. height: math.unit(5, "feet"),
  31885. default: true,
  31886. form: "lopunny"
  31887. },
  31888. {
  31889. name: "Normal",
  31890. height: math.unit(2 + 4/12, "feet"),
  31891. default: true,
  31892. form: "riolu"
  31893. },
  31894. {
  31895. name: "Normal",
  31896. height: math.unit(5 + 6 / 12, "feet"),
  31897. default: true,
  31898. form: "dog"
  31899. },
  31900. {
  31901. name: "Macro",
  31902. height: math.unit(50, "feet"),
  31903. allForms: true
  31904. },
  31905. {
  31906. name: "Normal",
  31907. height: math.unit(2.64, "feet"),
  31908. default: true,
  31909. form: "pikachu"
  31910. },
  31911. {
  31912. name: "Dynamax",
  31913. height: math.unit(75, "feet"),
  31914. form: "gigachu",
  31915. default: true
  31916. },
  31917. {
  31918. name: "Macro+",
  31919. height: math.unit(150, "feet"),
  31920. allForms: true
  31921. },
  31922. {
  31923. name: "Megamacro",
  31924. height: math.unit(100, "miles"),
  31925. allForms: true
  31926. },
  31927. ],
  31928. {
  31929. "cat": {
  31930. name: "Cat",
  31931. default: true
  31932. },
  31933. "taur": {
  31934. name: "Taur",
  31935. },
  31936. "lucario": {
  31937. name: "Lucario",
  31938. },
  31939. "riolu": {
  31940. name: "Riolu",
  31941. },
  31942. "nickit": {
  31943. name: "Nickit",
  31944. },
  31945. "lopunny": {
  31946. name: "Lopunny",
  31947. },
  31948. "dog": {
  31949. name: "Dog",
  31950. },
  31951. "pikachu": {
  31952. name: "Pikachu",
  31953. },
  31954. "gigachu": {
  31955. name: "Gigachu",
  31956. ignoreAllFormSizes: true
  31957. }
  31958. }
  31959. ))
  31960. characterMakers.push(() => makeCharacter(
  31961. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31962. {
  31963. front: {
  31964. height: math.unit(63.4, "meters"),
  31965. weight: math.unit(3.28349e+6, "kilograms"),
  31966. name: "Front",
  31967. image: {
  31968. source: "./media/characters/kirina-violet/front.svg",
  31969. extra: 2812 / 2725,
  31970. bottom: 0 / 2812
  31971. }
  31972. },
  31973. back: {
  31974. height: math.unit(63.4, "meters"),
  31975. weight: math.unit(3.28349e+6, "kilograms"),
  31976. name: "Back",
  31977. image: {
  31978. source: "./media/characters/kirina-violet/back.svg",
  31979. extra: 2812 / 2725,
  31980. bottom: 0 / 2812
  31981. }
  31982. },
  31983. mouth: {
  31984. height: math.unit(4.35, "meters"),
  31985. name: "Mouth",
  31986. image: {
  31987. source: "./media/characters/kirina-violet/mouth.svg"
  31988. }
  31989. },
  31990. paw: {
  31991. height: math.unit(5.6, "meters"),
  31992. name: "Paw",
  31993. image: {
  31994. source: "./media/characters/kirina-violet/paw.svg"
  31995. }
  31996. },
  31997. tail: {
  31998. height: math.unit(18, "meters"),
  31999. name: "Tail",
  32000. image: {
  32001. source: "./media/characters/kirina-violet/tail.svg"
  32002. }
  32003. },
  32004. },
  32005. [
  32006. {
  32007. name: "Macro",
  32008. height: math.unit(63.4, "meters"),
  32009. default: true
  32010. },
  32011. ]
  32012. ))
  32013. characterMakers.push(() => makeCharacter(
  32014. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32015. {
  32016. front: {
  32017. height: math.unit(6, "feet"),
  32018. weight: math.unit(150, "lb"),
  32019. name: "Front",
  32020. image: {
  32021. source: "./media/characters/sfaiyan/front.svg",
  32022. extra: 999 / 978,
  32023. bottom: 5 / 1004
  32024. }
  32025. },
  32026. },
  32027. [
  32028. {
  32029. name: "Normal",
  32030. height: math.unit(1.82, "meters")
  32031. },
  32032. {
  32033. name: "Giant",
  32034. height: math.unit(2.27, "km"),
  32035. default: true
  32036. },
  32037. ]
  32038. ))
  32039. characterMakers.push(() => makeCharacter(
  32040. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32041. {
  32042. front: {
  32043. height: math.unit(179, "cm"),
  32044. weight: math.unit(100, "kg"),
  32045. name: "Front",
  32046. image: {
  32047. source: "./media/characters/raunehkeli/front.svg",
  32048. extra: 1934 / 1926,
  32049. bottom: 0 / 1934
  32050. }
  32051. },
  32052. },
  32053. [
  32054. {
  32055. name: "Normal",
  32056. height: math.unit(179, "cm")
  32057. },
  32058. {
  32059. name: "Maximum",
  32060. height: math.unit(575, "meters"),
  32061. default: true
  32062. },
  32063. ]
  32064. ))
  32065. characterMakers.push(() => makeCharacter(
  32066. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32067. {
  32068. front: {
  32069. height: math.unit(6, "feet"),
  32070. weight: math.unit(150, "lb"),
  32071. name: "Front",
  32072. image: {
  32073. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  32074. extra: 2625 / 2518,
  32075. bottom: 60 / 2685
  32076. }
  32077. },
  32078. },
  32079. [
  32080. {
  32081. name: "Normal",
  32082. height: math.unit(6 + 2 / 12, "feet")
  32083. },
  32084. {
  32085. name: "Macro",
  32086. height: math.unit(1180, "feet"),
  32087. default: true
  32088. },
  32089. ]
  32090. ))
  32091. characterMakers.push(() => makeCharacter(
  32092. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32093. {
  32094. front: {
  32095. height: math.unit(5 + 6 / 12, "feet"),
  32096. weight: math.unit(108, "lb"),
  32097. name: "Front",
  32098. image: {
  32099. source: "./media/characters/lilith-zott/front.svg",
  32100. extra: 2510 / 2238,
  32101. bottom: 100 / 2610
  32102. }
  32103. },
  32104. frontDressed: {
  32105. height: math.unit(5 + 6 / 12, "feet"),
  32106. weight: math.unit(108, "lb"),
  32107. name: "Front (Dressed)",
  32108. image: {
  32109. source: "./media/characters/lilith-zott/front-dressed.svg",
  32110. extra: 2510 / 2238,
  32111. bottom: 100 / 2610
  32112. }
  32113. },
  32114. },
  32115. [
  32116. {
  32117. name: "Normal",
  32118. height: math.unit(5 + 6 / 12, "feet")
  32119. },
  32120. {
  32121. name: "Macro",
  32122. height: math.unit(1030, "feet"),
  32123. default: true
  32124. },
  32125. ]
  32126. ))
  32127. characterMakers.push(() => makeCharacter(
  32128. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32129. {
  32130. front: {
  32131. height: math.unit(6, "feet"),
  32132. weight: math.unit(150, "lb"),
  32133. name: "Front",
  32134. image: {
  32135. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  32136. extra: 2567 / 2435,
  32137. bottom: 39 / 2606
  32138. }
  32139. },
  32140. frontSuper: {
  32141. height: math.unit(6, "feet"),
  32142. name: "Front (Super)",
  32143. image: {
  32144. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  32145. extra: 2567 / 2435,
  32146. bottom: 39 / 2606
  32147. }
  32148. },
  32149. },
  32150. [
  32151. {
  32152. name: "Normal",
  32153. height: math.unit(5 + 10 / 12, "feet")
  32154. },
  32155. {
  32156. name: "Macro",
  32157. height: math.unit(1100, "feet"),
  32158. default: true
  32159. },
  32160. ]
  32161. ))
  32162. characterMakers.push(() => makeCharacter(
  32163. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32164. {
  32165. front: {
  32166. height: math.unit(100, "miles"),
  32167. name: "Front",
  32168. image: {
  32169. source: "./media/characters/sona/front.svg",
  32170. extra: 2433 / 2201,
  32171. bottom: 53 / 2486
  32172. }
  32173. },
  32174. foot: {
  32175. height: math.unit(16.1, "miles"),
  32176. name: "Foot",
  32177. image: {
  32178. source: "./media/characters/sona/foot.svg"
  32179. }
  32180. },
  32181. },
  32182. [
  32183. {
  32184. name: "Macro",
  32185. height: math.unit(100, "miles"),
  32186. default: true
  32187. },
  32188. ]
  32189. ))
  32190. characterMakers.push(() => makeCharacter(
  32191. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32192. {
  32193. front: {
  32194. height: math.unit(6, "feet"),
  32195. weight: math.unit(150, "lb"),
  32196. name: "Front",
  32197. image: {
  32198. source: "./media/characters/bailey/front.svg",
  32199. extra: 1778 / 1724,
  32200. bottom: 30 / 1808
  32201. }
  32202. },
  32203. },
  32204. [
  32205. {
  32206. name: "Micro",
  32207. height: math.unit(4, "inches")
  32208. },
  32209. {
  32210. name: "Normal",
  32211. height: math.unit(5 + 5 / 12, "feet"),
  32212. default: true
  32213. },
  32214. {
  32215. name: "Macro",
  32216. height: math.unit(250, "feet")
  32217. },
  32218. {
  32219. name: "Megamacro",
  32220. height: math.unit(100, "miles")
  32221. },
  32222. ]
  32223. ))
  32224. characterMakers.push(() => makeCharacter(
  32225. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32226. {
  32227. front: {
  32228. height: math.unit(5 + 2 / 12, "feet"),
  32229. weight: math.unit(120, "lb"),
  32230. name: "Front",
  32231. image: {
  32232. source: "./media/characters/snaps/front.svg",
  32233. extra: 2370 / 2177,
  32234. bottom: 48 / 2418
  32235. }
  32236. },
  32237. back: {
  32238. height: math.unit(5 + 2 / 12, "feet"),
  32239. weight: math.unit(120, "lb"),
  32240. name: "Back",
  32241. image: {
  32242. source: "./media/characters/snaps/back.svg",
  32243. extra: 2408 / 2258,
  32244. bottom: 15 / 2423
  32245. }
  32246. },
  32247. },
  32248. [
  32249. {
  32250. name: "Micro",
  32251. height: math.unit(9, "inches")
  32252. },
  32253. {
  32254. name: "Normal",
  32255. height: math.unit(5 + 2 / 12, "feet"),
  32256. default: true
  32257. },
  32258. {
  32259. name: "Mini Macro",
  32260. height: math.unit(10, "feet")
  32261. },
  32262. ]
  32263. ))
  32264. characterMakers.push(() => makeCharacter(
  32265. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32266. {
  32267. front: {
  32268. height: math.unit(1.8, "meters"),
  32269. weight: math.unit(85, "kg"),
  32270. name: "Front",
  32271. image: {
  32272. source: "./media/characters/azteck/front.svg",
  32273. extra: 2815 / 2625,
  32274. bottom: 89 / 2904
  32275. }
  32276. },
  32277. back: {
  32278. height: math.unit(1.8, "meters"),
  32279. weight: math.unit(85, "kg"),
  32280. name: "Back",
  32281. image: {
  32282. source: "./media/characters/azteck/back.svg",
  32283. extra: 2856 / 2648,
  32284. bottom: 85 / 2941
  32285. }
  32286. },
  32287. frontDressed: {
  32288. height: math.unit(1.8, "meters"),
  32289. weight: math.unit(85, "kg"),
  32290. name: "Front (Dressed)",
  32291. image: {
  32292. source: "./media/characters/azteck/front-dressed.svg",
  32293. extra: 2147 / 2003,
  32294. bottom: 68 / 2215
  32295. }
  32296. },
  32297. head: {
  32298. height: math.unit(0.47, "meters"),
  32299. weight: math.unit(85, "kg"),
  32300. name: "Head",
  32301. image: {
  32302. source: "./media/characters/azteck/head.svg"
  32303. }
  32304. },
  32305. },
  32306. [
  32307. {
  32308. name: "Bite sized",
  32309. height: math.unit(16, "cm")
  32310. },
  32311. {
  32312. name: "Normal",
  32313. height: math.unit(1.8, "meters"),
  32314. default: true
  32315. },
  32316. ]
  32317. ))
  32318. characterMakers.push(() => makeCharacter(
  32319. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32320. {
  32321. front: {
  32322. height: math.unit(6, "feet"),
  32323. weight: math.unit(150, "lb"),
  32324. name: "Front",
  32325. image: {
  32326. source: "./media/characters/pidge/front.svg",
  32327. extra: 1936/1820,
  32328. bottom: 0/1936
  32329. }
  32330. },
  32331. back: {
  32332. height: math.unit(6, "feet"),
  32333. weight: math.unit(150, "lb"),
  32334. name: "Back",
  32335. image: {
  32336. source: "./media/characters/pidge/back.svg",
  32337. extra: 1938/1843,
  32338. bottom: 0/1938
  32339. }
  32340. },
  32341. casual: {
  32342. height: math.unit(6, "feet"),
  32343. weight: math.unit(150, "lb"),
  32344. name: "Casual",
  32345. image: {
  32346. source: "./media/characters/pidge/casual.svg",
  32347. extra: 1936/1820,
  32348. bottom: 0/1936
  32349. }
  32350. },
  32351. tech: {
  32352. height: math.unit(6, "feet"),
  32353. weight: math.unit(150, "lb"),
  32354. name: "Tech",
  32355. image: {
  32356. source: "./media/characters/pidge/tech.svg",
  32357. extra: 1802/1682,
  32358. bottom: 0/1802
  32359. }
  32360. },
  32361. head: {
  32362. height: math.unit(1.61, "feet"),
  32363. name: "Head",
  32364. image: {
  32365. source: "./media/characters/pidge/head.svg"
  32366. }
  32367. },
  32368. collar: {
  32369. height: math.unit(0.82, "feet"),
  32370. name: "Collar",
  32371. image: {
  32372. source: "./media/characters/pidge/collar.svg"
  32373. }
  32374. },
  32375. },
  32376. [
  32377. {
  32378. name: "Macro",
  32379. height: math.unit(2, "mile"),
  32380. default: true
  32381. },
  32382. {
  32383. name: "PUPPY",
  32384. height: math.unit(20, "miles")
  32385. },
  32386. ]
  32387. ))
  32388. characterMakers.push(() => makeCharacter(
  32389. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32390. {
  32391. front: {
  32392. height: math.unit(6, "feet"),
  32393. weight: math.unit(150, "lb"),
  32394. name: "Front",
  32395. image: {
  32396. source: "./media/characters/en/front.svg",
  32397. extra: 1697 / 1563,
  32398. bottom: 103 / 1800
  32399. }
  32400. },
  32401. back: {
  32402. height: math.unit(6, "feet"),
  32403. weight: math.unit(150, "lb"),
  32404. name: "Back",
  32405. image: {
  32406. source: "./media/characters/en/back.svg",
  32407. extra: 1700 / 1570,
  32408. bottom: 51 / 1751
  32409. }
  32410. },
  32411. frontDressed: {
  32412. height: math.unit(6, "feet"),
  32413. weight: math.unit(150, "lb"),
  32414. name: "Front (Dressed)",
  32415. image: {
  32416. source: "./media/characters/en/front-dressed.svg",
  32417. extra: 1697 / 1563,
  32418. bottom: 103 / 1800
  32419. }
  32420. },
  32421. backDressed: {
  32422. height: math.unit(6, "feet"),
  32423. weight: math.unit(150, "lb"),
  32424. name: "Back (Dressed)",
  32425. image: {
  32426. source: "./media/characters/en/back-dressed.svg",
  32427. extra: 1700 / 1570,
  32428. bottom: 51 / 1751
  32429. }
  32430. },
  32431. },
  32432. [
  32433. {
  32434. name: "Macro",
  32435. height: math.unit(210, "feet"),
  32436. default: true
  32437. },
  32438. ]
  32439. ))
  32440. characterMakers.push(() => makeCharacter(
  32441. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32442. {
  32443. front: {
  32444. height: math.unit(6, "feet"),
  32445. weight: math.unit(150, "lb"),
  32446. name: "Front",
  32447. image: {
  32448. source: "./media/characters/haze-orris/front.svg",
  32449. extra: 3975 / 3525,
  32450. bottom: 137 / 4112
  32451. }
  32452. },
  32453. },
  32454. [
  32455. {
  32456. name: "Micro",
  32457. height: math.unit(150, "mm"),
  32458. default: true
  32459. },
  32460. ]
  32461. ))
  32462. characterMakers.push(() => makeCharacter(
  32463. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32464. {
  32465. front: {
  32466. height: math.unit(6, "feet"),
  32467. weight: math.unit(150, "lb"),
  32468. name: "Front",
  32469. image: {
  32470. source: "./media/characters/casselene-yaro/front.svg",
  32471. extra: 4721 / 4541,
  32472. bottom: 82 / 4803
  32473. }
  32474. },
  32475. back: {
  32476. height: math.unit(6, "feet"),
  32477. weight: math.unit(150, "lb"),
  32478. name: "Back",
  32479. image: {
  32480. source: "./media/characters/casselene-yaro/back.svg",
  32481. extra: 4569 / 4377,
  32482. bottom: 69 / 4638
  32483. }
  32484. },
  32485. dressed: {
  32486. height: math.unit(6, "feet"),
  32487. weight: math.unit(150, "lb"),
  32488. name: "Dressed",
  32489. image: {
  32490. source: "./media/characters/casselene-yaro/dressed.svg",
  32491. extra: 4721 / 4541,
  32492. bottom: 82 / 4803
  32493. }
  32494. },
  32495. maw: {
  32496. height: math.unit(1, "feet"),
  32497. name: "Maw",
  32498. image: {
  32499. source: "./media/characters/casselene-yaro/maw.svg"
  32500. }
  32501. },
  32502. },
  32503. [
  32504. {
  32505. name: "Macro",
  32506. height: math.unit(190, "feet"),
  32507. default: true
  32508. },
  32509. ]
  32510. ))
  32511. characterMakers.push(() => makeCharacter(
  32512. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32513. {
  32514. front: {
  32515. height: math.unit(10, "feet"),
  32516. weight: math.unit(15015, "lb"),
  32517. name: "Front",
  32518. image: {
  32519. source: "./media/characters/platine/front.svg",
  32520. extra: 1741/1650,
  32521. bottom: 84/1825
  32522. }
  32523. },
  32524. side: {
  32525. height: math.unit(10, "feet"),
  32526. weight: math.unit(15015, "lb"),
  32527. name: "Side",
  32528. image: {
  32529. source: "./media/characters/platine/side.svg",
  32530. extra: 1790/1705,
  32531. bottom: 29/1819
  32532. }
  32533. },
  32534. },
  32535. [
  32536. {
  32537. name: "Normal",
  32538. height: math.unit(10, "feet"),
  32539. default: true
  32540. },
  32541. {
  32542. name: "Macro",
  32543. height: math.unit(100, "feet")
  32544. },
  32545. {
  32546. name: "Megamacro",
  32547. height: math.unit(1000, "feet")
  32548. },
  32549. ]
  32550. ))
  32551. characterMakers.push(() => makeCharacter(
  32552. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32553. {
  32554. front: {
  32555. height: math.unit(15 + 5 / 12, "feet"),
  32556. weight: math.unit(4600, "lb"),
  32557. name: "Front",
  32558. image: {
  32559. source: "./media/characters/neapolitan-ananassa/front.svg",
  32560. extra: 2903 / 2736,
  32561. bottom: 0 / 2903
  32562. }
  32563. },
  32564. side: {
  32565. height: math.unit(15 + 5 / 12, "feet"),
  32566. weight: math.unit(4600, "lb"),
  32567. name: "Side",
  32568. image: {
  32569. source: "./media/characters/neapolitan-ananassa/side.svg",
  32570. extra: 2925 / 2719,
  32571. bottom: 0 / 2925
  32572. }
  32573. },
  32574. back: {
  32575. height: math.unit(15 + 5 / 12, "feet"),
  32576. weight: math.unit(4600, "lb"),
  32577. name: "Back",
  32578. image: {
  32579. source: "./media/characters/neapolitan-ananassa/back.svg",
  32580. extra: 2903 / 2736,
  32581. bottom: 0 / 2903
  32582. }
  32583. },
  32584. },
  32585. [
  32586. {
  32587. name: "Normal",
  32588. height: math.unit(15 + 5 / 12, "feet"),
  32589. default: true
  32590. },
  32591. {
  32592. name: "Post-Millenium",
  32593. height: math.unit(35 + 5 / 12, "feet")
  32594. },
  32595. {
  32596. name: "Post-Era",
  32597. height: math.unit(450 + 5 / 12, "feet")
  32598. },
  32599. ]
  32600. ))
  32601. characterMakers.push(() => makeCharacter(
  32602. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32603. {
  32604. front: {
  32605. height: math.unit(300, "meters"),
  32606. weight: math.unit(125000, "tonnes"),
  32607. name: "Front",
  32608. image: {
  32609. source: "./media/characters/pazuzu/front.svg",
  32610. extra: 877 / 794,
  32611. bottom: 47 / 924
  32612. }
  32613. },
  32614. },
  32615. [
  32616. {
  32617. name: "Macro",
  32618. height: math.unit(300, "meters"),
  32619. default: true
  32620. },
  32621. ]
  32622. ))
  32623. characterMakers.push(() => makeCharacter(
  32624. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32625. {
  32626. side: {
  32627. height: math.unit(10 + 7 / 12, "feet"),
  32628. weight: math.unit(2.5, "tons"),
  32629. name: "Side",
  32630. image: {
  32631. source: "./media/characters/aasha/side.svg",
  32632. extra: 1345 / 1245,
  32633. bottom: 111 / 1456
  32634. }
  32635. },
  32636. back: {
  32637. height: math.unit(10 + 7 / 12, "feet"),
  32638. weight: math.unit(2.5, "tons"),
  32639. name: "Back",
  32640. image: {
  32641. source: "./media/characters/aasha/back.svg",
  32642. extra: 1133 / 1057,
  32643. bottom: 257 / 1390
  32644. }
  32645. },
  32646. },
  32647. [
  32648. {
  32649. name: "Normal",
  32650. height: math.unit(10 + 7 / 12, "feet"),
  32651. default: true
  32652. },
  32653. ]
  32654. ))
  32655. characterMakers.push(() => makeCharacter(
  32656. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32657. {
  32658. front: {
  32659. height: math.unit(6 + 3 / 12, "feet"),
  32660. name: "Front",
  32661. image: {
  32662. source: "./media/characters/nevan/front.svg",
  32663. extra: 704 / 704,
  32664. bottom: 28 / 732
  32665. }
  32666. },
  32667. back: {
  32668. height: math.unit(6 + 3 / 12, "feet"),
  32669. name: "Back",
  32670. image: {
  32671. source: "./media/characters/nevan/back.svg",
  32672. extra: 714 / 714,
  32673. bottom: 21 / 735
  32674. }
  32675. },
  32676. frontFlaccid: {
  32677. height: math.unit(6 + 3 / 12, "feet"),
  32678. name: "Front (Flaccid)",
  32679. image: {
  32680. source: "./media/characters/nevan/front-flaccid.svg",
  32681. extra: 704 / 704,
  32682. bottom: 28 / 732
  32683. }
  32684. },
  32685. frontErect: {
  32686. height: math.unit(6 + 3 / 12, "feet"),
  32687. name: "Front (Erect)",
  32688. image: {
  32689. source: "./media/characters/nevan/front-erect.svg",
  32690. extra: 704 / 704,
  32691. bottom: 28 / 732
  32692. }
  32693. },
  32694. backFlaccid: {
  32695. height: math.unit(6 + 3 / 12, "feet"),
  32696. name: "Back (Flaccid)",
  32697. image: {
  32698. source: "./media/characters/nevan/back-flaccid.svg",
  32699. extra: 714 / 714,
  32700. bottom: 21 / 735
  32701. }
  32702. },
  32703. },
  32704. [
  32705. {
  32706. name: "Normal",
  32707. height: math.unit(6 + 3 / 12, "feet"),
  32708. default: true
  32709. },
  32710. ]
  32711. ))
  32712. characterMakers.push(() => makeCharacter(
  32713. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32714. {
  32715. front: {
  32716. height: math.unit(4, "feet"),
  32717. name: "Front",
  32718. image: {
  32719. source: "./media/characters/arhan/front.svg",
  32720. extra: 3368 / 3133,
  32721. bottom: 0 / 3368
  32722. }
  32723. },
  32724. side: {
  32725. height: math.unit(4, "feet"),
  32726. name: "Side",
  32727. image: {
  32728. source: "./media/characters/arhan/side.svg",
  32729. extra: 3347 / 3105,
  32730. bottom: 0 / 3347
  32731. }
  32732. },
  32733. tongue: {
  32734. height: math.unit(1.42, "feet"),
  32735. name: "Tongue",
  32736. image: {
  32737. source: "./media/characters/arhan/tongue.svg"
  32738. }
  32739. },
  32740. head: {
  32741. height: math.unit(0.85, "feet"),
  32742. name: "Head",
  32743. image: {
  32744. source: "./media/characters/arhan/head.svg"
  32745. }
  32746. },
  32747. },
  32748. [
  32749. {
  32750. name: "Normal",
  32751. height: math.unit(4, "feet"),
  32752. default: true
  32753. },
  32754. ]
  32755. ))
  32756. characterMakers.push(() => makeCharacter(
  32757. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32758. {
  32759. front: {
  32760. height: math.unit(5 + 7.5 / 12, "feet"),
  32761. weight: math.unit(120, "lb"),
  32762. name: "Front",
  32763. image: {
  32764. source: "./media/characters/digi-duncan/front.svg",
  32765. extra: 330 / 326,
  32766. bottom: 16 / 346
  32767. }
  32768. },
  32769. side: {
  32770. height: math.unit(5 + 7.5 / 12, "feet"),
  32771. weight: math.unit(120, "lb"),
  32772. name: "Side",
  32773. image: {
  32774. source: "./media/characters/digi-duncan/side.svg",
  32775. extra: 341 / 337,
  32776. bottom: 1 / 342
  32777. }
  32778. },
  32779. back: {
  32780. height: math.unit(5 + 7.5 / 12, "feet"),
  32781. weight: math.unit(120, "lb"),
  32782. name: "Back",
  32783. image: {
  32784. source: "./media/characters/digi-duncan/back.svg",
  32785. extra: 330 / 326,
  32786. bottom: 12 / 342
  32787. }
  32788. },
  32789. },
  32790. [
  32791. {
  32792. name: "Speck",
  32793. height: math.unit(0.25, "mm")
  32794. },
  32795. {
  32796. name: "Micro",
  32797. height: math.unit(5, "mm")
  32798. },
  32799. {
  32800. name: "Tiny",
  32801. height: math.unit(0.5, "inches"),
  32802. default: true
  32803. },
  32804. {
  32805. name: "Human",
  32806. height: math.unit(5 + 7.5 / 12, "feet")
  32807. },
  32808. {
  32809. name: "Minigiant",
  32810. height: math.unit(8 + 5.25, "feet")
  32811. },
  32812. {
  32813. name: "Giant",
  32814. height: math.unit(2000, "feet")
  32815. },
  32816. {
  32817. name: "Mega",
  32818. height: math.unit(371.1, "miles")
  32819. },
  32820. ]
  32821. ))
  32822. characterMakers.push(() => makeCharacter(
  32823. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32824. {
  32825. front: {
  32826. height: math.unit(2, "meters"),
  32827. weight: math.unit(350, "kg"),
  32828. name: "Front",
  32829. image: {
  32830. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32831. extra: 898 / 838,
  32832. bottom: 9 / 907
  32833. }
  32834. },
  32835. },
  32836. [
  32837. {
  32838. name: "Micro",
  32839. height: math.unit(8, "meters")
  32840. },
  32841. {
  32842. name: "Normal",
  32843. height: math.unit(50, "meters"),
  32844. default: true
  32845. },
  32846. {
  32847. name: "Macro",
  32848. height: math.unit(500, "meters")
  32849. },
  32850. ]
  32851. ))
  32852. characterMakers.push(() => makeCharacter(
  32853. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32854. {
  32855. front: {
  32856. height: math.unit(6 + 6 / 12, "feet"),
  32857. name: "Front",
  32858. image: {
  32859. source: "./media/characters/khardesh/front.svg",
  32860. extra: 1788/1596,
  32861. bottom: 66/1854
  32862. }
  32863. },
  32864. back: {
  32865. height: math.unit(6 + 6 / 12, "feet"),
  32866. name: "Back",
  32867. image: {
  32868. source: "./media/characters/khardesh/back.svg",
  32869. extra: 1781/1584,
  32870. bottom: 68/1849
  32871. }
  32872. },
  32873. },
  32874. [
  32875. {
  32876. name: "Normal",
  32877. height: math.unit(6 + 6 / 12, "feet"),
  32878. default: true
  32879. },
  32880. {
  32881. name: "Normal+",
  32882. height: math.unit(4, "meters")
  32883. },
  32884. {
  32885. name: "Macro",
  32886. height: math.unit(50, "meters")
  32887. },
  32888. {
  32889. name: "Macro+",
  32890. height: math.unit(100, "meters")
  32891. },
  32892. {
  32893. name: "Megamacro",
  32894. height: math.unit(20, "km")
  32895. },
  32896. ]
  32897. ))
  32898. characterMakers.push(() => makeCharacter(
  32899. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32900. {
  32901. front: {
  32902. height: math.unit(6, "feet"),
  32903. weight: math.unit(150, "lb"),
  32904. name: "Front",
  32905. image: {
  32906. source: "./media/characters/kosho/front.svg",
  32907. extra: 1847 / 1847,
  32908. bottom: 86 / 1933
  32909. }
  32910. },
  32911. },
  32912. [
  32913. {
  32914. name: "Second-stage micro",
  32915. height: math.unit(0.5, "inches")
  32916. },
  32917. {
  32918. name: "First-stage micro",
  32919. height: math.unit(6, "inches")
  32920. },
  32921. {
  32922. name: "Normal",
  32923. height: math.unit(6, "feet"),
  32924. default: true
  32925. },
  32926. {
  32927. name: "First-stage macro",
  32928. height: math.unit(72, "feet")
  32929. },
  32930. {
  32931. name: "Second-stage macro",
  32932. height: math.unit(864, "feet")
  32933. },
  32934. ]
  32935. ))
  32936. characterMakers.push(() => makeCharacter(
  32937. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32938. {
  32939. normal: {
  32940. height: math.unit(4 + 6 / 12, "feet"),
  32941. name: "Normal",
  32942. image: {
  32943. source: "./media/characters/hydra/normal.svg",
  32944. extra: 2833 / 2634,
  32945. bottom: 68 / 2901
  32946. }
  32947. },
  32948. smol: {
  32949. height: math.unit(0.705, "inches"),
  32950. name: "Smol",
  32951. image: {
  32952. source: "./media/characters/hydra/smol.svg",
  32953. extra: 2715 / 2540,
  32954. bottom: 0 / 2715
  32955. }
  32956. },
  32957. },
  32958. [
  32959. {
  32960. name: "Normal",
  32961. height: math.unit(4 + 6 / 12, "feet"),
  32962. default: true
  32963. }
  32964. ]
  32965. ))
  32966. characterMakers.push(() => makeCharacter(
  32967. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32968. {
  32969. front: {
  32970. height: math.unit(0.6, "cm"),
  32971. name: "Front",
  32972. image: {
  32973. source: "./media/characters/daz/front.svg",
  32974. extra: 1682 / 1164,
  32975. bottom: 42 / 1724
  32976. }
  32977. },
  32978. },
  32979. [
  32980. {
  32981. name: "Normal",
  32982. height: math.unit(0.6, "cm"),
  32983. default: true
  32984. },
  32985. ]
  32986. ))
  32987. characterMakers.push(() => makeCharacter(
  32988. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32989. {
  32990. front: {
  32991. height: math.unit(6, "feet"),
  32992. weight: math.unit(235, "lb"),
  32993. name: "Front",
  32994. image: {
  32995. source: "./media/characters/theo-pangolin/front.svg",
  32996. extra: 1996 / 1969,
  32997. bottom: 115 / 2111
  32998. }
  32999. },
  33000. back: {
  33001. height: math.unit(6, "feet"),
  33002. weight: math.unit(235, "lb"),
  33003. name: "Back",
  33004. image: {
  33005. source: "./media/characters/theo-pangolin/back.svg",
  33006. extra: 1979 / 1979,
  33007. bottom: 40 / 2019
  33008. }
  33009. },
  33010. feral: {
  33011. height: math.unit(2, "feet"),
  33012. weight: math.unit(30, "lb"),
  33013. name: "Feral",
  33014. image: {
  33015. source: "./media/characters/theo-pangolin/feral.svg",
  33016. extra: 803 / 791,
  33017. bottom: 181 / 984
  33018. }
  33019. },
  33020. footFive: {
  33021. height: math.unit(1.43, "feet"),
  33022. name: "Foot (Five Toes)",
  33023. image: {
  33024. source: "./media/characters/theo-pangolin/foot-five.svg"
  33025. }
  33026. },
  33027. footFour: {
  33028. height: math.unit(1.43, "feet"),
  33029. name: "Foot (Four Toes)",
  33030. image: {
  33031. source: "./media/characters/theo-pangolin/foot-four.svg"
  33032. }
  33033. },
  33034. handFour: {
  33035. height: math.unit(0.81, "feet"),
  33036. name: "Hand (Four Fingers)",
  33037. image: {
  33038. source: "./media/characters/theo-pangolin/hand-four.svg"
  33039. }
  33040. },
  33041. handThree: {
  33042. height: math.unit(0.81, "feet"),
  33043. name: "Hand (Three Fingers)",
  33044. image: {
  33045. source: "./media/characters/theo-pangolin/hand-three.svg"
  33046. }
  33047. },
  33048. headFront: {
  33049. height: math.unit(1.37, "feet"),
  33050. name: "Head (Front)",
  33051. image: {
  33052. source: "./media/characters/theo-pangolin/head-front.svg"
  33053. }
  33054. },
  33055. headSide: {
  33056. height: math.unit(1.43, "feet"),
  33057. name: "Head (Side)",
  33058. image: {
  33059. source: "./media/characters/theo-pangolin/head-side.svg"
  33060. }
  33061. },
  33062. tongue: {
  33063. height: math.unit(2.29, "feet"),
  33064. name: "Tongue",
  33065. image: {
  33066. source: "./media/characters/theo-pangolin/tongue.svg"
  33067. }
  33068. },
  33069. },
  33070. [
  33071. {
  33072. name: "Normal",
  33073. height: math.unit(6, "feet")
  33074. },
  33075. {
  33076. name: "Macro",
  33077. height: math.unit(400, "feet"),
  33078. default: true
  33079. },
  33080. ]
  33081. ))
  33082. characterMakers.push(() => makeCharacter(
  33083. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33084. {
  33085. front: {
  33086. height: math.unit(6, "inches"),
  33087. weight: math.unit(0.036, "kg"),
  33088. name: "Front",
  33089. image: {
  33090. source: "./media/characters/renée/front.svg",
  33091. extra: 900 / 886,
  33092. bottom: 8 / 908
  33093. }
  33094. },
  33095. },
  33096. [
  33097. {
  33098. name: "Nano",
  33099. height: math.unit(1, "nm")
  33100. },
  33101. {
  33102. name: "Micro",
  33103. height: math.unit(1, "mm")
  33104. },
  33105. {
  33106. name: "Normal",
  33107. height: math.unit(6, "inches")
  33108. },
  33109. {
  33110. name: "Macro",
  33111. height: math.unit(2000, "feet"),
  33112. default: true
  33113. },
  33114. {
  33115. name: "Megamacro",
  33116. height: math.unit(2, "km")
  33117. },
  33118. {
  33119. name: "Gigamacro",
  33120. height: math.unit(2000, "km")
  33121. },
  33122. {
  33123. name: "Teramacro",
  33124. height: math.unit(250000, "km")
  33125. },
  33126. ]
  33127. ))
  33128. characterMakers.push(() => makeCharacter(
  33129. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33130. {
  33131. front: {
  33132. height: math.unit(4, "meters"),
  33133. weight: math.unit(150, "kg"),
  33134. name: "Front",
  33135. image: {
  33136. source: "./media/characters/caledvwlch/front.svg",
  33137. extra: 1757/1537,
  33138. bottom: 31/1788
  33139. }
  33140. },
  33141. side: {
  33142. height: math.unit(4, "meters"),
  33143. weight: math.unit(150, "kg"),
  33144. name: "Side",
  33145. image: {
  33146. source: "./media/characters/caledvwlch/side.svg",
  33147. extra: 1605 / 1536,
  33148. bottom: 31 / 1636
  33149. }
  33150. },
  33151. back: {
  33152. height: math.unit(4, "meters"),
  33153. weight: math.unit(150, "kg"),
  33154. name: "Back",
  33155. image: {
  33156. source: "./media/characters/caledvwlch/back.svg",
  33157. extra: 1635 / 1565,
  33158. bottom: 27 / 1662
  33159. }
  33160. },
  33161. },
  33162. [
  33163. {
  33164. name: "\"Incognito\"",
  33165. height: math.unit(4, "meters")
  33166. },
  33167. {
  33168. name: "Small rampage",
  33169. height: math.unit(600, "meters")
  33170. },
  33171. {
  33172. name: "Mega",
  33173. height: math.unit(30, "km")
  33174. },
  33175. {
  33176. name: "Home-size",
  33177. height: math.unit(50, "km"),
  33178. default: true
  33179. },
  33180. {
  33181. name: "Giga",
  33182. height: math.unit(300, "km")
  33183. },
  33184. {
  33185. name: "Lounging",
  33186. height: math.unit(11000, "km")
  33187. },
  33188. {
  33189. name: "Planet snacking",
  33190. height: math.unit(2000000, "km")
  33191. },
  33192. ]
  33193. ))
  33194. characterMakers.push(() => makeCharacter(
  33195. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33196. {
  33197. front: {
  33198. height: math.unit(6, "feet"),
  33199. weight: math.unit(215, "lb"),
  33200. name: "Front",
  33201. image: {
  33202. source: "./media/characters/sapphire-svell/front.svg",
  33203. extra: 495 / 455,
  33204. bottom: 20 / 515
  33205. }
  33206. },
  33207. back: {
  33208. height: math.unit(6, "feet"),
  33209. weight: math.unit(216, "lb"),
  33210. name: "Back",
  33211. image: {
  33212. source: "./media/characters/sapphire-svell/back.svg",
  33213. extra: 497 / 477,
  33214. bottom: 7 / 504
  33215. }
  33216. },
  33217. maw: {
  33218. height: math.unit(1.57, "feet"),
  33219. name: "Maw",
  33220. image: {
  33221. source: "./media/characters/sapphire-svell/maw.svg"
  33222. }
  33223. },
  33224. foot: {
  33225. height: math.unit(1.07, "feet"),
  33226. name: "Foot",
  33227. image: {
  33228. source: "./media/characters/sapphire-svell/foot.svg"
  33229. }
  33230. },
  33231. toering: {
  33232. height: math.unit(1.7, "inch"),
  33233. name: "Toering",
  33234. image: {
  33235. source: "./media/characters/sapphire-svell/toering.svg"
  33236. }
  33237. },
  33238. },
  33239. [
  33240. {
  33241. name: "Normal",
  33242. height: math.unit(300, "feet"),
  33243. default: true
  33244. },
  33245. {
  33246. name: "Augmented",
  33247. height: math.unit(1250, "feet")
  33248. },
  33249. {
  33250. name: "Unleashed",
  33251. height: math.unit(3000, "feet")
  33252. },
  33253. ]
  33254. ))
  33255. characterMakers.push(() => makeCharacter(
  33256. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33257. {
  33258. side: {
  33259. height: math.unit(2 + 3 / 12, "feet"),
  33260. weight: math.unit(110, "lb"),
  33261. name: "Side",
  33262. image: {
  33263. source: "./media/characters/glitch-flux/side.svg",
  33264. extra: 997 / 805,
  33265. bottom: 20 / 1017
  33266. }
  33267. },
  33268. },
  33269. [
  33270. {
  33271. name: "Normal",
  33272. height: math.unit(2 + 3 / 12, "feet"),
  33273. default: true
  33274. },
  33275. ]
  33276. ))
  33277. characterMakers.push(() => makeCharacter(
  33278. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33279. {
  33280. front: {
  33281. height: math.unit(4, "meters"),
  33282. name: "Front",
  33283. image: {
  33284. source: "./media/characters/mid/front.svg",
  33285. extra: 507 / 476,
  33286. bottom: 17 / 524
  33287. }
  33288. },
  33289. back: {
  33290. height: math.unit(4, "meters"),
  33291. name: "Back",
  33292. image: {
  33293. source: "./media/characters/mid/back.svg",
  33294. extra: 519 / 487,
  33295. bottom: 7 / 526
  33296. }
  33297. },
  33298. stuck: {
  33299. height: math.unit(2.2, "meters"),
  33300. name: "Stuck",
  33301. image: {
  33302. source: "./media/characters/mid/stuck.svg",
  33303. extra: 1951 / 1869,
  33304. bottom: 88 / 2039
  33305. }
  33306. }
  33307. },
  33308. [
  33309. {
  33310. name: "Normal",
  33311. height: math.unit(4, "meters"),
  33312. default: true
  33313. },
  33314. {
  33315. name: "Big",
  33316. height: math.unit(10, "meters")
  33317. },
  33318. {
  33319. name: "Macro",
  33320. height: math.unit(800, "meters")
  33321. },
  33322. {
  33323. name: "Megamacro",
  33324. height: math.unit(100, "km")
  33325. },
  33326. {
  33327. name: "Overgrown",
  33328. height: math.unit(1, "parsec")
  33329. },
  33330. ]
  33331. ))
  33332. characterMakers.push(() => makeCharacter(
  33333. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33334. {
  33335. front: {
  33336. height: math.unit(2.5, "meters"),
  33337. weight: math.unit(225, "kg"),
  33338. name: "Front",
  33339. image: {
  33340. source: "./media/characters/iris/front.svg",
  33341. extra: 3348 / 3251,
  33342. bottom: 205 / 3553
  33343. }
  33344. },
  33345. maw: {
  33346. height: math.unit(0.56, "meter"),
  33347. name: "Maw",
  33348. image: {
  33349. source: "./media/characters/iris/maw.svg"
  33350. }
  33351. },
  33352. },
  33353. [
  33354. {
  33355. name: "Mewter cat",
  33356. height: math.unit(1.2, "meters")
  33357. },
  33358. {
  33359. name: "Normal",
  33360. height: math.unit(2.5, "meters"),
  33361. default: true
  33362. },
  33363. {
  33364. name: "Minimacro",
  33365. height: math.unit(18, "feet")
  33366. },
  33367. {
  33368. name: "Macro",
  33369. height: math.unit(140, "feet")
  33370. },
  33371. {
  33372. name: "Macro+",
  33373. height: math.unit(180, "meters")
  33374. },
  33375. {
  33376. name: "Megamacro",
  33377. height: math.unit(2746, "meters")
  33378. },
  33379. ]
  33380. ))
  33381. characterMakers.push(() => makeCharacter(
  33382. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33383. {
  33384. front: {
  33385. height: math.unit(6, "feet"),
  33386. weight: math.unit(135, "lb"),
  33387. name: "Front",
  33388. image: {
  33389. source: "./media/characters/axel/front.svg",
  33390. extra: 908 / 908,
  33391. bottom: 58 / 966
  33392. }
  33393. },
  33394. side: {
  33395. height: math.unit(6, "feet"),
  33396. weight: math.unit(135, "lb"),
  33397. name: "Side",
  33398. image: {
  33399. source: "./media/characters/axel/side.svg",
  33400. extra: 958 / 958,
  33401. bottom: 11 / 969
  33402. }
  33403. },
  33404. back: {
  33405. height: math.unit(6, "feet"),
  33406. weight: math.unit(135, "lb"),
  33407. name: "Back",
  33408. image: {
  33409. source: "./media/characters/axel/back.svg",
  33410. extra: 887 / 887,
  33411. bottom: 34 / 921
  33412. }
  33413. },
  33414. head: {
  33415. height: math.unit(1.07, "feet"),
  33416. name: "Head",
  33417. image: {
  33418. source: "./media/characters/axel/head.svg"
  33419. }
  33420. },
  33421. beak: {
  33422. height: math.unit(1.4, "feet"),
  33423. name: "Beak",
  33424. image: {
  33425. source: "./media/characters/axel/beak.svg"
  33426. }
  33427. },
  33428. beakSide: {
  33429. height: math.unit(1.4, "feet"),
  33430. name: "Beak Side",
  33431. image: {
  33432. source: "./media/characters/axel/beak-side.svg"
  33433. }
  33434. },
  33435. sheath: {
  33436. height: math.unit(0.5, "feet"),
  33437. name: "Sheath",
  33438. image: {
  33439. source: "./media/characters/axel/sheath.svg"
  33440. }
  33441. },
  33442. dick: {
  33443. height: math.unit(0.98, "feet"),
  33444. name: "Dick",
  33445. image: {
  33446. source: "./media/characters/axel/dick.svg"
  33447. }
  33448. },
  33449. },
  33450. [
  33451. {
  33452. name: "Macro",
  33453. height: math.unit(68, "meters"),
  33454. default: true
  33455. },
  33456. ]
  33457. ))
  33458. characterMakers.push(() => makeCharacter(
  33459. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33460. {
  33461. front: {
  33462. height: math.unit(3.5, "meters"),
  33463. weight: math.unit(1200, "kg"),
  33464. name: "Front",
  33465. image: {
  33466. source: "./media/characters/joanna/front.svg",
  33467. extra: 1596 / 1488,
  33468. bottom: 29 / 1625
  33469. }
  33470. },
  33471. back: {
  33472. height: math.unit(3.5, "meters"),
  33473. weight: math.unit(1200, "kg"),
  33474. name: "Back",
  33475. image: {
  33476. source: "./media/characters/joanna/back.svg",
  33477. extra: 1594 / 1495,
  33478. bottom: 26 / 1620
  33479. }
  33480. },
  33481. frontShorts: {
  33482. height: math.unit(3.5, "meters"),
  33483. weight: math.unit(1200, "kg"),
  33484. name: "Front (Shorts)",
  33485. image: {
  33486. source: "./media/characters/joanna/front-shorts.svg",
  33487. extra: 1596 / 1488,
  33488. bottom: 29 / 1625
  33489. }
  33490. },
  33491. frontBiker: {
  33492. height: math.unit(3.5, "meters"),
  33493. weight: math.unit(1200, "kg"),
  33494. name: "Front (Biker)",
  33495. image: {
  33496. source: "./media/characters/joanna/front-biker.svg",
  33497. extra: 1596 / 1488,
  33498. bottom: 29 / 1625
  33499. }
  33500. },
  33501. backBiker: {
  33502. height: math.unit(3.5, "meters"),
  33503. weight: math.unit(1200, "kg"),
  33504. name: "Back (Biker)",
  33505. image: {
  33506. source: "./media/characters/joanna/back-biker.svg",
  33507. extra: 1594 / 1495,
  33508. bottom: 88 / 1682
  33509. }
  33510. },
  33511. bikeLeft: {
  33512. height: math.unit(2.4, "meters"),
  33513. weight: math.unit(1600, "kg"),
  33514. name: "Bike (Left)",
  33515. image: {
  33516. source: "./media/characters/joanna/bike-left.svg",
  33517. extra: 720 / 720,
  33518. bottom: 8 / 728
  33519. }
  33520. },
  33521. bikeRight: {
  33522. height: math.unit(2.4, "meters"),
  33523. weight: math.unit(1600, "kg"),
  33524. name: "Bike (Right)",
  33525. image: {
  33526. source: "./media/characters/joanna/bike-right.svg",
  33527. extra: 720 / 720,
  33528. bottom: 8 / 728
  33529. }
  33530. },
  33531. },
  33532. [
  33533. {
  33534. name: "Incognito",
  33535. height: math.unit(3.5, "meters")
  33536. },
  33537. {
  33538. name: "Casual Big",
  33539. height: math.unit(200, "meters")
  33540. },
  33541. {
  33542. name: "Macro",
  33543. height: math.unit(600, "meters")
  33544. },
  33545. {
  33546. name: "Original",
  33547. height: math.unit(20, "km"),
  33548. default: true
  33549. },
  33550. {
  33551. name: "Giga",
  33552. height: math.unit(400, "km")
  33553. },
  33554. {
  33555. name: "Lounging",
  33556. height: math.unit(1500, "km")
  33557. },
  33558. {
  33559. name: "Planetary",
  33560. height: math.unit(200000, "km")
  33561. },
  33562. ]
  33563. ))
  33564. characterMakers.push(() => makeCharacter(
  33565. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33566. {
  33567. front: {
  33568. height: math.unit(6, "feet"),
  33569. weight: math.unit(150, "lb"),
  33570. name: "Front",
  33571. image: {
  33572. source: "./media/characters/hugo-sigil/front.svg",
  33573. extra: 522 / 500,
  33574. bottom: 2 / 524
  33575. }
  33576. },
  33577. back: {
  33578. height: math.unit(6, "feet"),
  33579. weight: math.unit(150, "lb"),
  33580. name: "Back",
  33581. image: {
  33582. source: "./media/characters/hugo-sigil/back.svg",
  33583. extra: 519 / 495,
  33584. bottom: 5 / 524
  33585. }
  33586. },
  33587. maw: {
  33588. height: math.unit(1.4, "feet"),
  33589. weight: math.unit(150, "lb"),
  33590. name: "Maw",
  33591. image: {
  33592. source: "./media/characters/hugo-sigil/maw.svg"
  33593. }
  33594. },
  33595. feet: {
  33596. height: math.unit(1.56, "feet"),
  33597. weight: math.unit(150, "lb"),
  33598. name: "Feet",
  33599. image: {
  33600. source: "./media/characters/hugo-sigil/feet.svg",
  33601. extra: 177 / 177,
  33602. bottom: 12 / 189
  33603. }
  33604. },
  33605. },
  33606. [
  33607. {
  33608. name: "Normal",
  33609. height: math.unit(6, "feet")
  33610. },
  33611. {
  33612. name: "Macro",
  33613. height: math.unit(200, "feet"),
  33614. default: true
  33615. },
  33616. ]
  33617. ))
  33618. characterMakers.push(() => makeCharacter(
  33619. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33620. {
  33621. front: {
  33622. height: math.unit(6, "feet"),
  33623. weight: math.unit(150, "lb"),
  33624. name: "Front",
  33625. image: {
  33626. source: "./media/characters/peri/front.svg",
  33627. extra: 2354 / 2233,
  33628. bottom: 49 / 2403
  33629. }
  33630. },
  33631. },
  33632. [
  33633. {
  33634. name: "Really Small",
  33635. height: math.unit(1, "nm")
  33636. },
  33637. {
  33638. name: "Micro",
  33639. height: math.unit(4, "inches")
  33640. },
  33641. {
  33642. name: "Normal",
  33643. height: math.unit(7, "inches"),
  33644. default: true
  33645. },
  33646. {
  33647. name: "Macro",
  33648. height: math.unit(400, "feet")
  33649. },
  33650. {
  33651. name: "Megamacro",
  33652. height: math.unit(100, "miles")
  33653. },
  33654. ]
  33655. ))
  33656. characterMakers.push(() => makeCharacter(
  33657. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33658. {
  33659. frontSlim: {
  33660. height: math.unit(7, "feet"),
  33661. name: "Front (Slim)",
  33662. image: {
  33663. source: "./media/characters/issilora/front-slim.svg",
  33664. extra: 529 / 449,
  33665. bottom: 53 / 582
  33666. }
  33667. },
  33668. sideSlim: {
  33669. height: math.unit(7, "feet"),
  33670. name: "Side (Slim)",
  33671. image: {
  33672. source: "./media/characters/issilora/side-slim.svg",
  33673. extra: 570 / 480,
  33674. bottom: 30 / 600
  33675. }
  33676. },
  33677. backSlim: {
  33678. height: math.unit(7, "feet"),
  33679. name: "Back (Slim)",
  33680. image: {
  33681. source: "./media/characters/issilora/back-slim.svg",
  33682. extra: 537 / 455,
  33683. bottom: 46 / 583
  33684. }
  33685. },
  33686. frontBuff: {
  33687. height: math.unit(7, "feet"),
  33688. name: "Front (Buff)",
  33689. image: {
  33690. source: "./media/characters/issilora/front-buff.svg",
  33691. extra: 2310 / 2035,
  33692. bottom: 335 / 2645
  33693. }
  33694. },
  33695. head: {
  33696. height: math.unit(1.94, "feet"),
  33697. name: "Head",
  33698. image: {
  33699. source: "./media/characters/issilora/head.svg"
  33700. }
  33701. },
  33702. },
  33703. [
  33704. {
  33705. name: "Minimum",
  33706. height: math.unit(7, "feet")
  33707. },
  33708. {
  33709. name: "Comfortable",
  33710. height: math.unit(17, "feet")
  33711. },
  33712. {
  33713. name: "Fun Size",
  33714. height: math.unit(47, "feet")
  33715. },
  33716. {
  33717. name: "Natural Macro",
  33718. height: math.unit(137, "feet"),
  33719. default: true
  33720. },
  33721. {
  33722. name: "Maximum Kaiju",
  33723. height: math.unit(397, "feet")
  33724. },
  33725. ]
  33726. ))
  33727. characterMakers.push(() => makeCharacter(
  33728. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33729. {
  33730. front: {
  33731. height: math.unit(50 + 9/12, "feet"),
  33732. weight: math.unit(32.8, "tons"),
  33733. name: "Front",
  33734. image: {
  33735. source: "./media/characters/irb'iiritaahn/front.svg",
  33736. extra: 1878/1826,
  33737. bottom: 326/2204
  33738. }
  33739. },
  33740. back: {
  33741. height: math.unit(50 + 9/12, "feet"),
  33742. weight: math.unit(32.8, "tons"),
  33743. name: "Back",
  33744. image: {
  33745. source: "./media/characters/irb'iiritaahn/back.svg",
  33746. extra: 2052/2018,
  33747. bottom: 152/2204
  33748. }
  33749. },
  33750. head: {
  33751. height: math.unit(12.86, "feet"),
  33752. name: "Head",
  33753. image: {
  33754. source: "./media/characters/irb'iiritaahn/head.svg"
  33755. }
  33756. },
  33757. maw: {
  33758. height: math.unit(9.66, "feet"),
  33759. name: "Maw",
  33760. image: {
  33761. source: "./media/characters/irb'iiritaahn/maw.svg"
  33762. }
  33763. },
  33764. frontDick: {
  33765. height: math.unit(8.78461, "feet"),
  33766. name: "Front Dick",
  33767. image: {
  33768. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33769. }
  33770. },
  33771. rearDick: {
  33772. height: math.unit(8.78461, "feet"),
  33773. name: "Rear Dick",
  33774. image: {
  33775. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33776. }
  33777. },
  33778. rearDickUnfolded: {
  33779. height: math.unit(8.78, "feet"),
  33780. name: "Rear Dick (Unfolded)",
  33781. image: {
  33782. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33783. }
  33784. },
  33785. wings: {
  33786. height: math.unit(43, "feet"),
  33787. name: "Wings",
  33788. image: {
  33789. source: "./media/characters/irb'iiritaahn/wings.svg"
  33790. }
  33791. },
  33792. },
  33793. [
  33794. {
  33795. name: "Macro",
  33796. height: math.unit(50 + 9/12, "feet"),
  33797. default: true
  33798. },
  33799. ]
  33800. ))
  33801. characterMakers.push(() => makeCharacter(
  33802. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33803. {
  33804. front: {
  33805. height: math.unit(205, "cm"),
  33806. weight: math.unit(102, "kg"),
  33807. name: "Front",
  33808. image: {
  33809. source: "./media/characters/irbisgreif/front.svg",
  33810. extra: 785/706,
  33811. bottom: 13/798
  33812. }
  33813. },
  33814. back: {
  33815. height: math.unit(205, "cm"),
  33816. weight: math.unit(102, "kg"),
  33817. name: "Back",
  33818. image: {
  33819. source: "./media/characters/irbisgreif/back.svg",
  33820. extra: 713/701,
  33821. bottom: 26/739
  33822. }
  33823. },
  33824. frontDressed: {
  33825. height: math.unit(216, "cm"),
  33826. weight: math.unit(102, "kg"),
  33827. name: "Front-dressed",
  33828. image: {
  33829. source: "./media/characters/irbisgreif/front-dressed.svg",
  33830. extra: 902/776,
  33831. bottom: 14/916
  33832. }
  33833. },
  33834. sideDressed: {
  33835. height: math.unit(195, "cm"),
  33836. weight: math.unit(102, "kg"),
  33837. name: "Side-dressed",
  33838. image: {
  33839. source: "./media/characters/irbisgreif/side-dressed.svg",
  33840. extra: 788/688,
  33841. bottom: 21/809
  33842. }
  33843. },
  33844. backDressed: {
  33845. height: math.unit(216, "cm"),
  33846. weight: math.unit(102, "kg"),
  33847. name: "Back-dressed",
  33848. image: {
  33849. source: "./media/characters/irbisgreif/back-dressed.svg",
  33850. extra: 901/783,
  33851. bottom: 10/911
  33852. }
  33853. },
  33854. dick: {
  33855. height: math.unit(0.49, "feet"),
  33856. name: "Dick",
  33857. image: {
  33858. source: "./media/characters/irbisgreif/dick.svg"
  33859. }
  33860. },
  33861. wingTop: {
  33862. height: math.unit(1.93 , "feet"),
  33863. name: "Wing-top",
  33864. image: {
  33865. source: "./media/characters/irbisgreif/wing-top.svg"
  33866. }
  33867. },
  33868. wingBottom: {
  33869. height: math.unit(1.93 , "feet"),
  33870. name: "Wing-bottom",
  33871. image: {
  33872. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33873. }
  33874. },
  33875. },
  33876. [
  33877. {
  33878. name: "Normal",
  33879. height: math.unit(216, "cm"),
  33880. default: true
  33881. },
  33882. ]
  33883. ))
  33884. characterMakers.push(() => makeCharacter(
  33885. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33886. {
  33887. front: {
  33888. height: math.unit(6, "feet"),
  33889. weight: math.unit(150, "lb"),
  33890. name: "Front",
  33891. image: {
  33892. source: "./media/characters/pride/front.svg",
  33893. extra: 1299/1230,
  33894. bottom: 18/1317
  33895. }
  33896. },
  33897. },
  33898. [
  33899. {
  33900. name: "Normal",
  33901. height: math.unit(7, "feet")
  33902. },
  33903. {
  33904. name: "Mini-macro",
  33905. height: math.unit(11, "feet")
  33906. },
  33907. {
  33908. name: "Macro",
  33909. height: math.unit(15, "meters"),
  33910. default: true
  33911. },
  33912. {
  33913. name: "Macro+",
  33914. height: math.unit(40, "meters")
  33915. },
  33916. ]
  33917. ))
  33918. characterMakers.push(() => makeCharacter(
  33919. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33920. {
  33921. front: {
  33922. height: math.unit(4 + 2 / 12, "feet"),
  33923. weight: math.unit(95, "lb"),
  33924. name: "Front",
  33925. image: {
  33926. source: "./media/characters/vaelophis-nyx/front.svg",
  33927. extra: 2532/2330,
  33928. bottom: 0/2532
  33929. }
  33930. },
  33931. back: {
  33932. height: math.unit(4 + 2 / 12, "feet"),
  33933. weight: math.unit(95, "lb"),
  33934. name: "Back",
  33935. image: {
  33936. source: "./media/characters/vaelophis-nyx/back.svg",
  33937. extra: 2484/2361,
  33938. bottom: 0/2484
  33939. }
  33940. },
  33941. feralSide: {
  33942. height: math.unit(2 + 1/12, "feet"),
  33943. weight: math.unit(20, "lb"),
  33944. name: "Feral (Side)",
  33945. image: {
  33946. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33947. extra: 1721/1581,
  33948. bottom: 70/1791
  33949. }
  33950. },
  33951. feralLazing: {
  33952. height: math.unit(1.08, "feet"),
  33953. weight: math.unit(20, "lb"),
  33954. name: "Feral (Lazing)",
  33955. image: {
  33956. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33957. extra: 822/822,
  33958. bottom: 248/1070
  33959. }
  33960. },
  33961. ear: {
  33962. height: math.unit(0.416, "feet"),
  33963. name: "Ear",
  33964. image: {
  33965. source: "./media/characters/vaelophis-nyx/ear.svg"
  33966. }
  33967. },
  33968. eye: {
  33969. height: math.unit(0.0748, "feet"),
  33970. name: "Eye",
  33971. image: {
  33972. source: "./media/characters/vaelophis-nyx/eye.svg"
  33973. }
  33974. },
  33975. mouth: {
  33976. height: math.unit(0.378, "feet"),
  33977. name: "Mouth",
  33978. image: {
  33979. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33980. }
  33981. },
  33982. spade: {
  33983. height: math.unit(0.55, "feet"),
  33984. name: "Spade",
  33985. image: {
  33986. source: "./media/characters/vaelophis-nyx/spade.svg"
  33987. }
  33988. },
  33989. },
  33990. [
  33991. {
  33992. name: "Normal",
  33993. height: math.unit(4 + 2/12, "feet"),
  33994. default: true
  33995. },
  33996. ]
  33997. ))
  33998. characterMakers.push(() => makeCharacter(
  33999. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34000. {
  34001. front: {
  34002. height: math.unit(7, "feet"),
  34003. weight: math.unit(231, "lb"),
  34004. name: "Front",
  34005. image: {
  34006. source: "./media/characters/flux/front.svg",
  34007. extra: 919/871,
  34008. bottom: 0/919
  34009. }
  34010. },
  34011. back: {
  34012. height: math.unit(7, "feet"),
  34013. weight: math.unit(231, "lb"),
  34014. name: "Back",
  34015. image: {
  34016. source: "./media/characters/flux/back.svg",
  34017. extra: 1040/992,
  34018. bottom: 0/1040
  34019. }
  34020. },
  34021. frontDressed: {
  34022. height: math.unit(7, "feet"),
  34023. weight: math.unit(231, "lb"),
  34024. name: "Front (Dressed)",
  34025. image: {
  34026. source: "./media/characters/flux/front-dressed.svg",
  34027. extra: 919/871,
  34028. bottom: 0/919
  34029. }
  34030. },
  34031. feralSide: {
  34032. height: math.unit(5, "feet"),
  34033. weight: math.unit(150, "lb"),
  34034. name: "Feral (Side)",
  34035. image: {
  34036. source: "./media/characters/flux/feral-side.svg",
  34037. extra: 598/528,
  34038. bottom: 28/626
  34039. }
  34040. },
  34041. head: {
  34042. height: math.unit(1.585, "feet"),
  34043. name: "Head",
  34044. image: {
  34045. source: "./media/characters/flux/head.svg"
  34046. }
  34047. },
  34048. headSide: {
  34049. height: math.unit(1.74, "feet"),
  34050. name: "Head (Side)",
  34051. image: {
  34052. source: "./media/characters/flux/head-side.svg"
  34053. }
  34054. },
  34055. headSideFire: {
  34056. height: math.unit(1.76, "feet"),
  34057. name: "Head (Side, Fire)",
  34058. image: {
  34059. source: "./media/characters/flux/head-side-fire.svg"
  34060. }
  34061. },
  34062. },
  34063. [
  34064. {
  34065. name: "Normal",
  34066. height: math.unit(7, "feet"),
  34067. default: true
  34068. },
  34069. ]
  34070. ))
  34071. characterMakers.push(() => makeCharacter(
  34072. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34073. {
  34074. front: {
  34075. height: math.unit(9, "feet"),
  34076. weight: math.unit(1012, "lb"),
  34077. name: "Front",
  34078. image: {
  34079. source: "./media/characters/ulfra-lupae/front.svg",
  34080. extra: 1083/1011,
  34081. bottom: 67/1150
  34082. }
  34083. },
  34084. },
  34085. [
  34086. {
  34087. name: "Micro",
  34088. height: math.unit(6, "inches")
  34089. },
  34090. {
  34091. name: "Socializing",
  34092. height: math.unit(6 + 5/12, "feet")
  34093. },
  34094. {
  34095. name: "Normal",
  34096. height: math.unit(9, "feet"),
  34097. default: true
  34098. },
  34099. {
  34100. name: "Macro",
  34101. height: math.unit(150, "feet")
  34102. },
  34103. ]
  34104. ))
  34105. characterMakers.push(() => makeCharacter(
  34106. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34107. {
  34108. front: {
  34109. height: math.unit(5 + 2/12, "feet"),
  34110. weight: math.unit(120, "lb"),
  34111. name: "Front",
  34112. image: {
  34113. source: "./media/characters/timber/front.svg",
  34114. extra: 2814/2705,
  34115. bottom: 181/2995
  34116. }
  34117. },
  34118. },
  34119. [
  34120. {
  34121. name: "Normal",
  34122. height: math.unit(5 + 2/12, "feet"),
  34123. default: true
  34124. },
  34125. ]
  34126. ))
  34127. characterMakers.push(() => makeCharacter(
  34128. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34129. {
  34130. front: {
  34131. height: math.unit(9, "feet"),
  34132. name: "Front",
  34133. image: {
  34134. source: "./media/characters/nicki/front.svg",
  34135. extra: 1240/990,
  34136. bottom: 45/1285
  34137. },
  34138. form: "anthro",
  34139. default: true
  34140. },
  34141. side: {
  34142. height: math.unit(9, "feet"),
  34143. name: "Side",
  34144. image: {
  34145. source: "./media/characters/nicki/side.svg",
  34146. extra: 1047/973,
  34147. bottom: 61/1108
  34148. },
  34149. form: "anthro"
  34150. },
  34151. back: {
  34152. height: math.unit(9, "feet"),
  34153. name: "Back",
  34154. image: {
  34155. source: "./media/characters/nicki/back.svg",
  34156. extra: 1006/965,
  34157. bottom: 39/1045
  34158. },
  34159. form: "anthro"
  34160. },
  34161. taur: {
  34162. height: math.unit(15, "feet"),
  34163. name: "Taur",
  34164. image: {
  34165. source: "./media/characters/nicki/taur.svg",
  34166. extra: 1592/1347,
  34167. bottom: 0/1592
  34168. },
  34169. form: "taur",
  34170. default: true
  34171. },
  34172. },
  34173. [
  34174. {
  34175. name: "Normal",
  34176. height: math.unit(9, "feet"),
  34177. form: "anthro",
  34178. default: true
  34179. },
  34180. {
  34181. name: "Normal",
  34182. height: math.unit(15, "feet"),
  34183. form: "taur",
  34184. default: true
  34185. }
  34186. ],
  34187. {
  34188. "anthro": {
  34189. name: "Anthro",
  34190. default: true
  34191. },
  34192. "taur": {
  34193. name: "Taur"
  34194. }
  34195. }
  34196. ))
  34197. characterMakers.push(() => makeCharacter(
  34198. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34199. {
  34200. front: {
  34201. height: math.unit(7 + 10/12, "feet"),
  34202. weight: math.unit(3.5, "tons"),
  34203. name: "Front",
  34204. image: {
  34205. source: "./media/characters/lee/front.svg",
  34206. extra: 1773/1615,
  34207. bottom: 86/1859
  34208. }
  34209. },
  34210. hand: {
  34211. height: math.unit(1.78, "feet"),
  34212. name: "Hand",
  34213. image: {
  34214. source: "./media/characters/lee/hand.svg"
  34215. }
  34216. },
  34217. maw: {
  34218. height: math.unit(1.18, "feet"),
  34219. name: "Maw",
  34220. image: {
  34221. source: "./media/characters/lee/maw.svg"
  34222. }
  34223. },
  34224. },
  34225. [
  34226. {
  34227. name: "Normal",
  34228. height: math.unit(7 + 10/12, "feet"),
  34229. default: true
  34230. },
  34231. ]
  34232. ))
  34233. characterMakers.push(() => makeCharacter(
  34234. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34235. {
  34236. front: {
  34237. height: math.unit(9, "feet"),
  34238. name: "Front",
  34239. image: {
  34240. source: "./media/characters/guti/front.svg",
  34241. extra: 4551/4355,
  34242. bottom: 123/4674
  34243. }
  34244. },
  34245. tongue: {
  34246. height: math.unit(1, "feet"),
  34247. name: "Tongue",
  34248. image: {
  34249. source: "./media/characters/guti/tongue.svg"
  34250. }
  34251. },
  34252. paw: {
  34253. height: math.unit(1.18, "feet"),
  34254. name: "Paw",
  34255. image: {
  34256. source: "./media/characters/guti/paw.svg"
  34257. }
  34258. },
  34259. },
  34260. [
  34261. {
  34262. name: "Normal",
  34263. height: math.unit(9, "feet"),
  34264. default: true
  34265. },
  34266. ]
  34267. ))
  34268. characterMakers.push(() => makeCharacter(
  34269. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34270. {
  34271. side: {
  34272. height: math.unit(5, "meters"),
  34273. name: "Side",
  34274. image: {
  34275. source: "./media/characters/vesper/side.svg",
  34276. extra: 1605/1518,
  34277. bottom: 0/1605
  34278. }
  34279. },
  34280. },
  34281. [
  34282. {
  34283. name: "Small",
  34284. height: math.unit(5, "meters")
  34285. },
  34286. {
  34287. name: "Sage",
  34288. height: math.unit(100, "meters"),
  34289. default: true
  34290. },
  34291. {
  34292. name: "Fun Size",
  34293. height: math.unit(600, "meters")
  34294. },
  34295. {
  34296. name: "Goddess",
  34297. height: math.unit(20000, "km")
  34298. },
  34299. {
  34300. name: "Maximum",
  34301. height: math.unit(5, "galaxies")
  34302. },
  34303. ]
  34304. ))
  34305. characterMakers.push(() => makeCharacter(
  34306. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34307. {
  34308. front: {
  34309. height: math.unit(6 + 3/12, "feet"),
  34310. weight: math.unit(190, "lb"),
  34311. name: "Front",
  34312. image: {
  34313. source: "./media/characters/gawain/front.svg",
  34314. extra: 2222/2139,
  34315. bottom: 90/2312
  34316. }
  34317. },
  34318. back: {
  34319. height: math.unit(6 + 3/12, "feet"),
  34320. weight: math.unit(190, "lb"),
  34321. name: "Back",
  34322. image: {
  34323. source: "./media/characters/gawain/back.svg",
  34324. extra: 2199/2111,
  34325. bottom: 73/2272
  34326. }
  34327. },
  34328. },
  34329. [
  34330. {
  34331. name: "Normal",
  34332. height: math.unit(6 + 3/12, "feet"),
  34333. default: true
  34334. },
  34335. ]
  34336. ))
  34337. characterMakers.push(() => makeCharacter(
  34338. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34339. {
  34340. side: {
  34341. height: math.unit(3.5, "meters"),
  34342. weight: math.unit(16000, "lb"),
  34343. name: "Side",
  34344. image: {
  34345. source: "./media/characters/dascalti/side.svg",
  34346. extra: 392/273,
  34347. bottom: 47/439
  34348. }
  34349. },
  34350. breath: {
  34351. height: math.unit(7.4, "feet"),
  34352. name: "Breath",
  34353. image: {
  34354. source: "./media/characters/dascalti/breath.svg"
  34355. }
  34356. },
  34357. fed: {
  34358. height: math.unit(3.6, "meters"),
  34359. weight: math.unit(16000, "lb"),
  34360. name: "Fed",
  34361. image: {
  34362. source: "./media/characters/dascalti/fed.svg",
  34363. extra: 1419/820,
  34364. bottom: 95/1514
  34365. }
  34366. },
  34367. },
  34368. [
  34369. {
  34370. name: "Normal",
  34371. height: math.unit(3.5, "meters"),
  34372. default: true
  34373. },
  34374. ]
  34375. ))
  34376. characterMakers.push(() => makeCharacter(
  34377. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34378. {
  34379. front: {
  34380. height: math.unit(3 + 5/12, "feet"),
  34381. name: "Front",
  34382. image: {
  34383. source: "./media/characters/mauve/front.svg",
  34384. extra: 1126/1033,
  34385. bottom: 65/1191
  34386. }
  34387. },
  34388. side: {
  34389. height: math.unit(3 + 5/12, "feet"),
  34390. name: "Side",
  34391. image: {
  34392. source: "./media/characters/mauve/side.svg",
  34393. extra: 1089/1001,
  34394. bottom: 29/1118
  34395. }
  34396. },
  34397. back: {
  34398. height: math.unit(3 + 5/12, "feet"),
  34399. name: "Back",
  34400. image: {
  34401. source: "./media/characters/mauve/back.svg",
  34402. extra: 1173/1053,
  34403. bottom: 109/1282
  34404. }
  34405. },
  34406. },
  34407. [
  34408. {
  34409. name: "Normal",
  34410. height: math.unit(3 + 5/12, "feet"),
  34411. default: true
  34412. },
  34413. ]
  34414. ))
  34415. characterMakers.push(() => makeCharacter(
  34416. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34417. {
  34418. front: {
  34419. height: math.unit(6 + 3/12, "feet"),
  34420. weight: math.unit(430, "lb"),
  34421. name: "Front",
  34422. image: {
  34423. source: "./media/characters/carlos/front.svg",
  34424. extra: 1964/1913,
  34425. bottom: 70/2034
  34426. }
  34427. },
  34428. },
  34429. [
  34430. {
  34431. name: "Normal",
  34432. height: math.unit(6 + 3/12, "feet"),
  34433. default: true
  34434. },
  34435. ]
  34436. ))
  34437. characterMakers.push(() => makeCharacter(
  34438. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34439. {
  34440. back: {
  34441. height: math.unit(5 + 10/12, "feet"),
  34442. weight: math.unit(200, "lb"),
  34443. name: "Back",
  34444. image: {
  34445. source: "./media/characters/jax/back.svg",
  34446. extra: 764/739,
  34447. bottom: 25/789
  34448. }
  34449. },
  34450. },
  34451. [
  34452. {
  34453. name: "Normal",
  34454. height: math.unit(5 + 10/12, "feet"),
  34455. default: true
  34456. },
  34457. ]
  34458. ))
  34459. characterMakers.push(() => makeCharacter(
  34460. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34461. {
  34462. front: {
  34463. height: math.unit(8, "feet"),
  34464. weight: math.unit(250, "lb"),
  34465. name: "Front",
  34466. image: {
  34467. source: "./media/characters/eikthynir/front.svg",
  34468. extra: 1332/1166,
  34469. bottom: 82/1414
  34470. }
  34471. },
  34472. back: {
  34473. height: math.unit(8, "feet"),
  34474. weight: math.unit(250, "lb"),
  34475. name: "Back",
  34476. image: {
  34477. source: "./media/characters/eikthynir/back.svg",
  34478. extra: 1342/1190,
  34479. bottom: 19/1361
  34480. }
  34481. },
  34482. dick: {
  34483. height: math.unit(2.35, "feet"),
  34484. name: "Dick",
  34485. image: {
  34486. source: "./media/characters/eikthynir/dick.svg"
  34487. }
  34488. },
  34489. },
  34490. [
  34491. {
  34492. name: "Normal",
  34493. height: math.unit(8, "feet"),
  34494. default: true
  34495. },
  34496. ]
  34497. ))
  34498. characterMakers.push(() => makeCharacter(
  34499. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34500. {
  34501. front: {
  34502. height: math.unit(99, "meters"),
  34503. weight: math.unit(13000, "tons"),
  34504. name: "Front",
  34505. image: {
  34506. source: "./media/characters/zlmos/front.svg",
  34507. extra: 2202/1992,
  34508. bottom: 315/2517
  34509. }
  34510. },
  34511. },
  34512. [
  34513. {
  34514. name: "Macro",
  34515. height: math.unit(99, "meters"),
  34516. default: true
  34517. },
  34518. ]
  34519. ))
  34520. characterMakers.push(() => makeCharacter(
  34521. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34522. {
  34523. front: {
  34524. height: math.unit(6 + 5/12, "feet"),
  34525. name: "Front",
  34526. image: {
  34527. source: "./media/characters/purri/front.svg",
  34528. extra: 1698/1610,
  34529. bottom: 32/1730
  34530. }
  34531. },
  34532. frontAlt: {
  34533. height: math.unit(6 + 5/12, "feet"),
  34534. name: "Front (Alt)",
  34535. image: {
  34536. source: "./media/characters/purri/front-alt.svg",
  34537. extra: 450/420,
  34538. bottom: 26/476
  34539. }
  34540. },
  34541. boots: {
  34542. height: math.unit(5.5, "feet"),
  34543. name: "Boots",
  34544. image: {
  34545. source: "./media/characters/purri/boots.svg",
  34546. extra: 905/853,
  34547. bottom: 18/923
  34548. },
  34549. extraAttributes: {
  34550. "shoeSize": {
  34551. name: "Shoe Size",
  34552. power: 1,
  34553. type: "length",
  34554. base: math.unit(12, "ShoeSizeMensUS")
  34555. },
  34556. "platformHeight": {
  34557. name: "Platform Height",
  34558. power: 1,
  34559. type: "length",
  34560. base: math.unit(2, "inches")
  34561. },
  34562. }
  34563. },
  34564. lying: {
  34565. height: math.unit(2, "feet"),
  34566. name: "Lying",
  34567. image: {
  34568. source: "./media/characters/purri/lying.svg",
  34569. extra: 940/843,
  34570. bottom: 146/1086
  34571. }
  34572. },
  34573. devious: {
  34574. height: math.unit(1.77, "feet"),
  34575. name: "Devious",
  34576. image: {
  34577. source: "./media/characters/purri/devious.svg",
  34578. extra: 1440/1155,
  34579. bottom: 147/1587
  34580. }
  34581. },
  34582. bean: {
  34583. height: math.unit(1.94, "feet"),
  34584. name: "Bean",
  34585. image: {
  34586. source: "./media/characters/purri/bean.svg"
  34587. }
  34588. },
  34589. },
  34590. [
  34591. {
  34592. name: "Micro",
  34593. height: math.unit(1, "mm")
  34594. },
  34595. {
  34596. name: "Normal",
  34597. height: math.unit(6 + 5/12, "feet"),
  34598. default: true
  34599. },
  34600. {
  34601. name: "Macro :3c",
  34602. height: math.unit(2, "miles")
  34603. },
  34604. ]
  34605. ))
  34606. characterMakers.push(() => makeCharacter(
  34607. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34608. {
  34609. front: {
  34610. height: math.unit(6 + 2/12, "feet"),
  34611. weight: math.unit(250, "lb"),
  34612. name: "Front",
  34613. image: {
  34614. source: "./media/characters/moonlight/front.svg",
  34615. extra: 1044/908,
  34616. bottom: 56/1100
  34617. }
  34618. },
  34619. feral: {
  34620. height: math.unit(3 + 1/12, "feet"),
  34621. weight: math.unit(50, "kg"),
  34622. name: "Feral",
  34623. image: {
  34624. source: "./media/characters/moonlight/feral.svg",
  34625. extra: 3705/2791,
  34626. bottom: 145/3850
  34627. }
  34628. },
  34629. paw: {
  34630. height: math.unit(1, "feet"),
  34631. name: "Paw",
  34632. image: {
  34633. source: "./media/characters/moonlight/paw.svg"
  34634. }
  34635. },
  34636. paws: {
  34637. height: math.unit(0.98, "feet"),
  34638. name: "Paws",
  34639. image: {
  34640. source: "./media/characters/moonlight/paws.svg",
  34641. extra: 939/939,
  34642. bottom: 50/989
  34643. }
  34644. },
  34645. mouth: {
  34646. height: math.unit(0.48, "feet"),
  34647. name: "Mouth",
  34648. image: {
  34649. source: "./media/characters/moonlight/mouth.svg"
  34650. }
  34651. },
  34652. dick: {
  34653. height: math.unit(1.46, "feet"),
  34654. name: "Dick",
  34655. image: {
  34656. source: "./media/characters/moonlight/dick.svg"
  34657. }
  34658. },
  34659. },
  34660. [
  34661. {
  34662. name: "Normal",
  34663. height: math.unit(6 + 2/12, "feet"),
  34664. default: true
  34665. },
  34666. {
  34667. name: "Macro",
  34668. height: math.unit(300, "feet")
  34669. },
  34670. {
  34671. name: "Macro+",
  34672. height: math.unit(1, "mile")
  34673. },
  34674. {
  34675. name: "Mt. Moon",
  34676. height: math.unit(5, "miles")
  34677. },
  34678. {
  34679. name: "Megamacro",
  34680. height: math.unit(15, "miles")
  34681. },
  34682. ]
  34683. ))
  34684. characterMakers.push(() => makeCharacter(
  34685. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34686. {
  34687. back: {
  34688. height: math.unit(6, "feet"),
  34689. weight: math.unit(150, "lb"),
  34690. name: "Back",
  34691. image: {
  34692. source: "./media/characters/sylen/back.svg",
  34693. extra: 1335/1273,
  34694. bottom: 107/1442
  34695. }
  34696. },
  34697. },
  34698. [
  34699. {
  34700. name: "Normal",
  34701. height: math.unit(5 + 5/12, "feet")
  34702. },
  34703. {
  34704. name: "Megamacro",
  34705. height: math.unit(3, "miles"),
  34706. default: true
  34707. },
  34708. ]
  34709. ))
  34710. characterMakers.push(() => makeCharacter(
  34711. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34712. {
  34713. front: {
  34714. height: math.unit(6, "feet"),
  34715. weight: math.unit(190, "lb"),
  34716. name: "Front",
  34717. image: {
  34718. source: "./media/characters/huttser/front.svg",
  34719. extra: 1152/1058,
  34720. bottom: 23/1175
  34721. }
  34722. },
  34723. side: {
  34724. height: math.unit(6, "feet"),
  34725. weight: math.unit(190, "lb"),
  34726. name: "Side",
  34727. image: {
  34728. source: "./media/characters/huttser/side.svg",
  34729. extra: 1174/1065,
  34730. bottom: 18/1192
  34731. }
  34732. },
  34733. back: {
  34734. height: math.unit(6, "feet"),
  34735. weight: math.unit(190, "lb"),
  34736. name: "Back",
  34737. image: {
  34738. source: "./media/characters/huttser/back.svg",
  34739. extra: 1158/1056,
  34740. bottom: 12/1170
  34741. }
  34742. },
  34743. },
  34744. [
  34745. ]
  34746. ))
  34747. characterMakers.push(() => makeCharacter(
  34748. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34749. {
  34750. side: {
  34751. height: math.unit(12 + 9/12, "feet"),
  34752. weight: math.unit(15000, "lb"),
  34753. name: "Side",
  34754. image: {
  34755. source: "./media/characters/faan/side.svg",
  34756. extra: 2747/2697,
  34757. bottom: 0/2747
  34758. }
  34759. },
  34760. front: {
  34761. height: math.unit(12 + 9/12, "feet"),
  34762. weight: math.unit(15000, "lb"),
  34763. name: "Front",
  34764. image: {
  34765. source: "./media/characters/faan/front.svg",
  34766. extra: 607/571,
  34767. bottom: 24/631
  34768. }
  34769. },
  34770. head: {
  34771. height: math.unit(2.85, "feet"),
  34772. name: "Head",
  34773. image: {
  34774. source: "./media/characters/faan/head.svg"
  34775. }
  34776. },
  34777. headAlt: {
  34778. height: math.unit(3.13, "feet"),
  34779. name: "Head-alt",
  34780. image: {
  34781. source: "./media/characters/faan/head-alt.svg"
  34782. }
  34783. },
  34784. },
  34785. [
  34786. {
  34787. name: "Normal",
  34788. height: math.unit(12 + 9/12, "feet"),
  34789. default: true
  34790. },
  34791. ]
  34792. ))
  34793. characterMakers.push(() => makeCharacter(
  34794. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34795. {
  34796. front: {
  34797. height: math.unit(6, "feet"),
  34798. weight: math.unit(300, "lb"),
  34799. name: "Front",
  34800. image: {
  34801. source: "./media/characters/tanio/front.svg",
  34802. extra: 711/673,
  34803. bottom: 25/736
  34804. }
  34805. },
  34806. },
  34807. [
  34808. {
  34809. name: "Normal",
  34810. height: math.unit(6, "feet"),
  34811. default: true
  34812. },
  34813. ]
  34814. ))
  34815. characterMakers.push(() => makeCharacter(
  34816. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34817. {
  34818. front: {
  34819. height: math.unit(3, "inches"),
  34820. name: "Front",
  34821. image: {
  34822. source: "./media/characters/noboru/front.svg",
  34823. extra: 1039/932,
  34824. bottom: 18/1057
  34825. }
  34826. },
  34827. },
  34828. [
  34829. {
  34830. name: "Micro",
  34831. height: math.unit(3, "inches"),
  34832. default: true
  34833. },
  34834. ]
  34835. ))
  34836. characterMakers.push(() => makeCharacter(
  34837. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34838. {
  34839. front: {
  34840. height: math.unit(1.85, "meters"),
  34841. weight: math.unit(80, "kg"),
  34842. name: "Front",
  34843. image: {
  34844. source: "./media/characters/daniel-barrett/front.svg",
  34845. extra: 355/337,
  34846. bottom: 9/364
  34847. }
  34848. },
  34849. },
  34850. [
  34851. {
  34852. name: "Pico",
  34853. height: math.unit(0.0433, "mm")
  34854. },
  34855. {
  34856. name: "Nano",
  34857. height: math.unit(1.5, "mm")
  34858. },
  34859. {
  34860. name: "Micro",
  34861. height: math.unit(5.3, "cm"),
  34862. default: true
  34863. },
  34864. {
  34865. name: "Normal",
  34866. height: math.unit(1.85, "meters")
  34867. },
  34868. {
  34869. name: "Macro",
  34870. height: math.unit(64.7, "meters")
  34871. },
  34872. {
  34873. name: "Megamacro",
  34874. height: math.unit(2.26, "km")
  34875. },
  34876. {
  34877. name: "Gigamacro",
  34878. height: math.unit(79, "km")
  34879. },
  34880. {
  34881. name: "Teramacro",
  34882. height: math.unit(2765, "km")
  34883. },
  34884. {
  34885. name: "Petamacro",
  34886. height: math.unit(96678, "km")
  34887. },
  34888. ]
  34889. ))
  34890. characterMakers.push(() => makeCharacter(
  34891. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34892. {
  34893. front: {
  34894. height: math.unit(30, "meters"),
  34895. weight: math.unit(400, "tons"),
  34896. name: "Front",
  34897. image: {
  34898. source: "./media/characters/zeel/front.svg",
  34899. extra: 2599/2599,
  34900. bottom: 226/2825
  34901. }
  34902. },
  34903. },
  34904. [
  34905. {
  34906. name: "Macro",
  34907. height: math.unit(30, "meters"),
  34908. default: true
  34909. },
  34910. ]
  34911. ))
  34912. characterMakers.push(() => makeCharacter(
  34913. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34914. {
  34915. front: {
  34916. height: math.unit(6 + 7/12, "feet"),
  34917. weight: math.unit(210, "lb"),
  34918. name: "Front",
  34919. image: {
  34920. source: "./media/characters/tarn/front.svg",
  34921. extra: 3517/3220,
  34922. bottom: 91/3608
  34923. }
  34924. },
  34925. back: {
  34926. height: math.unit(6 + 7/12, "feet"),
  34927. weight: math.unit(210, "lb"),
  34928. name: "Back",
  34929. image: {
  34930. source: "./media/characters/tarn/back.svg",
  34931. extra: 3566/3241,
  34932. bottom: 34/3600
  34933. }
  34934. },
  34935. dick: {
  34936. height: math.unit(1.65, "feet"),
  34937. name: "Dick",
  34938. image: {
  34939. source: "./media/characters/tarn/dick.svg"
  34940. }
  34941. },
  34942. paw: {
  34943. height: math.unit(1.80, "feet"),
  34944. name: "Paw",
  34945. image: {
  34946. source: "./media/characters/tarn/paw.svg"
  34947. }
  34948. },
  34949. tongue: {
  34950. height: math.unit(0.97, "feet"),
  34951. name: "Tongue",
  34952. image: {
  34953. source: "./media/characters/tarn/tongue.svg"
  34954. }
  34955. },
  34956. },
  34957. [
  34958. {
  34959. name: "Micro",
  34960. height: math.unit(4, "inches")
  34961. },
  34962. {
  34963. name: "Normal",
  34964. height: math.unit(6 + 7/12, "feet"),
  34965. default: true
  34966. },
  34967. {
  34968. name: "Macro",
  34969. height: math.unit(300, "feet")
  34970. },
  34971. ]
  34972. ))
  34973. characterMakers.push(() => makeCharacter(
  34974. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34975. {
  34976. front: {
  34977. height: math.unit(5 + 7/12, "feet"),
  34978. weight: math.unit(80, "kg"),
  34979. name: "Front",
  34980. image: {
  34981. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34982. extra: 3023/2865,
  34983. bottom: 33/3056
  34984. }
  34985. },
  34986. back: {
  34987. height: math.unit(5 + 7/12, "feet"),
  34988. weight: math.unit(80, "kg"),
  34989. name: "Back",
  34990. image: {
  34991. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34992. extra: 3020/2886,
  34993. bottom: 30/3050
  34994. }
  34995. },
  34996. dick: {
  34997. height: math.unit(0.98, "feet"),
  34998. name: "Dick",
  34999. image: {
  35000. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35001. }
  35002. },
  35003. anatomy: {
  35004. height: math.unit(2.86, "feet"),
  35005. name: "Anatomy",
  35006. image: {
  35007. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35008. }
  35009. },
  35010. },
  35011. [
  35012. {
  35013. name: "Really Small",
  35014. height: math.unit(2, "inches")
  35015. },
  35016. {
  35017. name: "Micro",
  35018. height: math.unit(5.583, "inches")
  35019. },
  35020. {
  35021. name: "Normal",
  35022. height: math.unit(5 + 7/12, "feet"),
  35023. default: true
  35024. },
  35025. {
  35026. name: "Macro",
  35027. height: math.unit(67, "feet")
  35028. },
  35029. {
  35030. name: "Megamacro",
  35031. height: math.unit(134, "feet")
  35032. },
  35033. ]
  35034. ))
  35035. characterMakers.push(() => makeCharacter(
  35036. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35037. {
  35038. front: {
  35039. height: math.unit(9, "feet"),
  35040. weight: math.unit(120, "lb"),
  35041. name: "Front",
  35042. image: {
  35043. source: "./media/characters/sally/front.svg",
  35044. extra: 1506/1349,
  35045. bottom: 66/1572
  35046. }
  35047. },
  35048. },
  35049. [
  35050. {
  35051. name: "Normal",
  35052. height: math.unit(9, "feet"),
  35053. default: true
  35054. },
  35055. ]
  35056. ))
  35057. characterMakers.push(() => makeCharacter(
  35058. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35059. {
  35060. front: {
  35061. height: math.unit(8, "feet"),
  35062. weight: math.unit(900, "lb"),
  35063. name: "Front",
  35064. image: {
  35065. source: "./media/characters/owen/front.svg",
  35066. extra: 1761/1657,
  35067. bottom: 74/1835
  35068. }
  35069. },
  35070. side: {
  35071. height: math.unit(8, "feet"),
  35072. weight: math.unit(900, "lb"),
  35073. name: "Side",
  35074. image: {
  35075. source: "./media/characters/owen/side.svg",
  35076. extra: 1797/1734,
  35077. bottom: 30/1827
  35078. }
  35079. },
  35080. back: {
  35081. height: math.unit(8, "feet"),
  35082. weight: math.unit(900, "lb"),
  35083. name: "Back",
  35084. image: {
  35085. source: "./media/characters/owen/back.svg",
  35086. extra: 1796/1706,
  35087. bottom: 59/1855
  35088. }
  35089. },
  35090. maw: {
  35091. height: math.unit(1.76, "feet"),
  35092. name: "Maw",
  35093. image: {
  35094. source: "./media/characters/owen/maw.svg"
  35095. }
  35096. },
  35097. },
  35098. [
  35099. {
  35100. name: "Normal",
  35101. height: math.unit(8, "feet"),
  35102. default: true
  35103. },
  35104. ]
  35105. ))
  35106. characterMakers.push(() => makeCharacter(
  35107. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35108. {
  35109. front: {
  35110. height: math.unit(4, "feet"),
  35111. weight: math.unit(400, "lb"),
  35112. name: "Front",
  35113. image: {
  35114. source: "./media/characters/ryth/front.svg",
  35115. extra: 1920/1748,
  35116. bottom: 42/1962
  35117. }
  35118. },
  35119. back: {
  35120. height: math.unit(4, "feet"),
  35121. weight: math.unit(400, "lb"),
  35122. name: "Back",
  35123. image: {
  35124. source: "./media/characters/ryth/back.svg",
  35125. extra: 1897/1690,
  35126. bottom: 89/1986
  35127. }
  35128. },
  35129. mouth: {
  35130. height: math.unit(1.39, "feet"),
  35131. name: "Mouth",
  35132. image: {
  35133. source: "./media/characters/ryth/mouth.svg"
  35134. }
  35135. },
  35136. tailmaw: {
  35137. height: math.unit(1.23, "feet"),
  35138. name: "Tailmaw",
  35139. image: {
  35140. source: "./media/characters/ryth/tailmaw.svg"
  35141. }
  35142. },
  35143. goia: {
  35144. height: math.unit(4, "meters"),
  35145. weight: math.unit(10800, "lb"),
  35146. name: "Goia",
  35147. image: {
  35148. source: "./media/characters/ryth/goia.svg",
  35149. extra: 745/640,
  35150. bottom: 107/852
  35151. }
  35152. },
  35153. goiaFront: {
  35154. height: math.unit(4, "meters"),
  35155. weight: math.unit(10800, "lb"),
  35156. name: "Goia (Front)",
  35157. image: {
  35158. source: "./media/characters/ryth/goia-front.svg",
  35159. extra: 750/586,
  35160. bottom: 114/864
  35161. }
  35162. },
  35163. goiaMaw: {
  35164. height: math.unit(5.55, "feet"),
  35165. name: "Goia Maw",
  35166. image: {
  35167. source: "./media/characters/ryth/goia-maw.svg"
  35168. }
  35169. },
  35170. goiaForepaw: {
  35171. height: math.unit(3.5, "feet"),
  35172. name: "Goia Forepaw",
  35173. image: {
  35174. source: "./media/characters/ryth/goia-forepaw.svg"
  35175. }
  35176. },
  35177. goiaHindpaw: {
  35178. height: math.unit(5.55, "feet"),
  35179. name: "Goia Hindpaw",
  35180. image: {
  35181. source: "./media/characters/ryth/goia-hindpaw.svg"
  35182. }
  35183. },
  35184. },
  35185. [
  35186. {
  35187. name: "Normal",
  35188. height: math.unit(4, "feet"),
  35189. default: true
  35190. },
  35191. ]
  35192. ))
  35193. characterMakers.push(() => makeCharacter(
  35194. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35195. {
  35196. front: {
  35197. height: math.unit(7, "feet"),
  35198. weight: math.unit(180, "lb"),
  35199. name: "Front",
  35200. image: {
  35201. source: "./media/characters/necrolance/front.svg",
  35202. extra: 1062/947,
  35203. bottom: 41/1103
  35204. }
  35205. },
  35206. back: {
  35207. height: math.unit(7, "feet"),
  35208. weight: math.unit(180, "lb"),
  35209. name: "Back",
  35210. image: {
  35211. source: "./media/characters/necrolance/back.svg",
  35212. extra: 1045/984,
  35213. bottom: 14/1059
  35214. }
  35215. },
  35216. wing: {
  35217. height: math.unit(2.67, "feet"),
  35218. name: "Wing",
  35219. image: {
  35220. source: "./media/characters/necrolance/wing.svg"
  35221. }
  35222. },
  35223. },
  35224. [
  35225. {
  35226. name: "Normal",
  35227. height: math.unit(7, "feet"),
  35228. default: true
  35229. },
  35230. ]
  35231. ))
  35232. characterMakers.push(() => makeCharacter(
  35233. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35234. {
  35235. front: {
  35236. height: math.unit(76, "meters"),
  35237. weight: math.unit(30000, "tons"),
  35238. name: "Front",
  35239. image: {
  35240. source: "./media/characters/tyler/front.svg",
  35241. extra: 1640/1640,
  35242. bottom: 114/1754
  35243. }
  35244. },
  35245. },
  35246. [
  35247. {
  35248. name: "Macro",
  35249. height: math.unit(76, "meters"),
  35250. default: true
  35251. },
  35252. ]
  35253. ))
  35254. characterMakers.push(() => makeCharacter(
  35255. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35256. {
  35257. front: {
  35258. height: math.unit(4 + 11/12, "feet"),
  35259. weight: math.unit(132, "lb"),
  35260. name: "Front",
  35261. image: {
  35262. source: "./media/characters/icey/front.svg",
  35263. extra: 2750/2550,
  35264. bottom: 33/2783
  35265. }
  35266. },
  35267. back: {
  35268. height: math.unit(4 + 11/12, "feet"),
  35269. weight: math.unit(132, "lb"),
  35270. name: "Back",
  35271. image: {
  35272. source: "./media/characters/icey/back.svg",
  35273. extra: 2624/2481,
  35274. bottom: 35/2659
  35275. }
  35276. },
  35277. },
  35278. [
  35279. {
  35280. name: "Normal",
  35281. height: math.unit(4 + 11/12, "feet"),
  35282. default: true
  35283. },
  35284. ]
  35285. ))
  35286. characterMakers.push(() => makeCharacter(
  35287. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35288. {
  35289. front: {
  35290. height: math.unit(100, "feet"),
  35291. weight: math.unit(0, "lb"),
  35292. name: "Front",
  35293. image: {
  35294. source: "./media/characters/smile/front.svg",
  35295. extra: 2983/2912,
  35296. bottom: 162/3145
  35297. }
  35298. },
  35299. back: {
  35300. height: math.unit(100, "feet"),
  35301. weight: math.unit(0, "lb"),
  35302. name: "Back",
  35303. image: {
  35304. source: "./media/characters/smile/back.svg",
  35305. extra: 3143/3031,
  35306. bottom: 91/3234
  35307. }
  35308. },
  35309. head: {
  35310. height: math.unit(26.3, "feet"),
  35311. weight: math.unit(0, "lb"),
  35312. name: "Head",
  35313. image: {
  35314. source: "./media/characters/smile/head.svg"
  35315. }
  35316. },
  35317. collar: {
  35318. height: math.unit(5.3, "feet"),
  35319. weight: math.unit(0, "lb"),
  35320. name: "Collar",
  35321. image: {
  35322. source: "./media/characters/smile/collar.svg"
  35323. }
  35324. },
  35325. },
  35326. [
  35327. {
  35328. name: "Macro",
  35329. height: math.unit(100, "feet"),
  35330. default: true
  35331. },
  35332. ]
  35333. ))
  35334. characterMakers.push(() => makeCharacter(
  35335. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35336. {
  35337. dragon: {
  35338. height: math.unit(26, "feet"),
  35339. weight: math.unit(36, "tons"),
  35340. name: "Dragon",
  35341. image: {
  35342. source: "./media/characters/arimphae/dragon.svg",
  35343. extra: 1574/983,
  35344. bottom: 357/1931
  35345. }
  35346. },
  35347. drake: {
  35348. height: math.unit(9, "feet"),
  35349. weight: math.unit(1.5, "tons"),
  35350. name: "Drake",
  35351. image: {
  35352. source: "./media/characters/arimphae/drake.svg",
  35353. extra: 1120/925,
  35354. bottom: 435/1555
  35355. }
  35356. },
  35357. },
  35358. [
  35359. {
  35360. name: "Small",
  35361. height: math.unit(26*5/9, "feet")
  35362. },
  35363. {
  35364. name: "Normal",
  35365. height: math.unit(26, "feet"),
  35366. default: true
  35367. },
  35368. ]
  35369. ))
  35370. characterMakers.push(() => makeCharacter(
  35371. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35372. {
  35373. front: {
  35374. height: math.unit(8 + 9/12, "feet"),
  35375. name: "Front",
  35376. image: {
  35377. source: "./media/characters/xander/front.svg",
  35378. extra: 1237/974,
  35379. bottom: 94/1331
  35380. }
  35381. },
  35382. },
  35383. [
  35384. {
  35385. name: "Normal",
  35386. height: math.unit(8 + 9/12, "feet"),
  35387. default: true
  35388. },
  35389. {
  35390. name: "Gaze Grabber",
  35391. height: math.unit(13 + 8/12, "feet")
  35392. },
  35393. {
  35394. name: "Jaw Dropper",
  35395. height: math.unit(27, "feet")
  35396. },
  35397. {
  35398. name: "Show Stopper",
  35399. height: math.unit(136, "feet")
  35400. },
  35401. {
  35402. name: "Superstar",
  35403. height: math.unit(1.9e6, "miles")
  35404. },
  35405. ]
  35406. ))
  35407. characterMakers.push(() => makeCharacter(
  35408. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35409. {
  35410. side: {
  35411. height: math.unit(2100, "feet"),
  35412. name: "Side",
  35413. image: {
  35414. source: "./media/characters/osiris/side.svg",
  35415. extra: 1105/939,
  35416. bottom: 167/1272
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Macro",
  35423. height: math.unit(2100, "feet"),
  35424. default: true
  35425. },
  35426. ]
  35427. ))
  35428. characterMakers.push(() => makeCharacter(
  35429. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35430. {
  35431. front: {
  35432. height: math.unit(6 + 8/12, "feet"),
  35433. weight: math.unit(225, "lb"),
  35434. name: "Front",
  35435. image: {
  35436. source: "./media/characters/rhys-londe/front.svg",
  35437. extra: 2258/2141,
  35438. bottom: 188/2446
  35439. }
  35440. },
  35441. back: {
  35442. height: math.unit(6 + 8/12, "feet"),
  35443. weight: math.unit(225, "lb"),
  35444. name: "Back",
  35445. image: {
  35446. source: "./media/characters/rhys-londe/back.svg",
  35447. extra: 2237/2137,
  35448. bottom: 63/2300
  35449. }
  35450. },
  35451. frontNsfw: {
  35452. height: math.unit(6 + 8/12, "feet"),
  35453. weight: math.unit(225, "lb"),
  35454. name: "Front (NSFW)",
  35455. image: {
  35456. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35457. extra: 2258/2141,
  35458. bottom: 188/2446
  35459. }
  35460. },
  35461. backNsfw: {
  35462. height: math.unit(6 + 8/12, "feet"),
  35463. weight: math.unit(225, "lb"),
  35464. name: "Back (NSFW)",
  35465. image: {
  35466. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35467. extra: 2237/2137,
  35468. bottom: 63/2300
  35469. }
  35470. },
  35471. dick: {
  35472. height: math.unit(30, "inches"),
  35473. name: "Dick",
  35474. image: {
  35475. source: "./media/characters/rhys-londe/dick.svg"
  35476. }
  35477. },
  35478. maw: {
  35479. height: math.unit(1.6, "feet"),
  35480. name: "Maw",
  35481. image: {
  35482. source: "./media/characters/rhys-londe/maw.svg"
  35483. }
  35484. },
  35485. },
  35486. [
  35487. {
  35488. name: "Normal",
  35489. height: math.unit(6 + 8/12, "feet"),
  35490. default: true
  35491. },
  35492. ]
  35493. ))
  35494. characterMakers.push(() => makeCharacter(
  35495. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35496. {
  35497. front: {
  35498. height: math.unit(3 + 10/12, "feet"),
  35499. weight: math.unit(90, "lb"),
  35500. name: "Front",
  35501. image: {
  35502. source: "./media/characters/taivas-ensim/front.svg",
  35503. extra: 1327/1216,
  35504. bottom: 96/1423
  35505. }
  35506. },
  35507. back: {
  35508. height: math.unit(3 + 10/12, "feet"),
  35509. weight: math.unit(90, "lb"),
  35510. name: "Back",
  35511. image: {
  35512. source: "./media/characters/taivas-ensim/back.svg",
  35513. extra: 1355/1247,
  35514. bottom: 11/1366
  35515. }
  35516. },
  35517. frontNsfw: {
  35518. height: math.unit(3 + 10/12, "feet"),
  35519. weight: math.unit(90, "lb"),
  35520. name: "Front (NSFW)",
  35521. image: {
  35522. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35523. extra: 1327/1216,
  35524. bottom: 96/1423
  35525. }
  35526. },
  35527. backNsfw: {
  35528. height: math.unit(3 + 10/12, "feet"),
  35529. weight: math.unit(90, "lb"),
  35530. name: "Back (NSFW)",
  35531. image: {
  35532. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35533. extra: 1355/1247,
  35534. bottom: 11/1366
  35535. }
  35536. },
  35537. },
  35538. [
  35539. {
  35540. name: "Normal",
  35541. height: math.unit(3 + 10/12, "feet"),
  35542. default: true
  35543. },
  35544. ]
  35545. ))
  35546. characterMakers.push(() => makeCharacter(
  35547. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35548. {
  35549. front: {
  35550. height: math.unit(9 + 6/12, "feet"),
  35551. weight: math.unit(940, "lb"),
  35552. name: "Front",
  35553. image: {
  35554. source: "./media/characters/byliss/front.svg",
  35555. extra: 1327/1290,
  35556. bottom: 82/1409
  35557. }
  35558. },
  35559. back: {
  35560. height: math.unit(9 + 6/12, "feet"),
  35561. weight: math.unit(940, "lb"),
  35562. name: "Back",
  35563. image: {
  35564. source: "./media/characters/byliss/back.svg",
  35565. extra: 1376/1349,
  35566. bottom: 9/1385
  35567. }
  35568. },
  35569. frontNsfw: {
  35570. height: math.unit(9 + 6/12, "feet"),
  35571. weight: math.unit(940, "lb"),
  35572. name: "Front (NSFW)",
  35573. image: {
  35574. source: "./media/characters/byliss/front-nsfw.svg",
  35575. extra: 1327/1290,
  35576. bottom: 82/1409
  35577. }
  35578. },
  35579. backNsfw: {
  35580. height: math.unit(9 + 6/12, "feet"),
  35581. weight: math.unit(940, "lb"),
  35582. name: "Back (NSFW)",
  35583. image: {
  35584. source: "./media/characters/byliss/back-nsfw.svg",
  35585. extra: 1376/1349,
  35586. bottom: 9/1385
  35587. }
  35588. },
  35589. },
  35590. [
  35591. {
  35592. name: "Normal",
  35593. height: math.unit(9 + 6/12, "feet"),
  35594. default: true
  35595. },
  35596. ]
  35597. ))
  35598. characterMakers.push(() => makeCharacter(
  35599. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35600. {
  35601. front: {
  35602. height: math.unit(5 + 2/12, "feet"),
  35603. weight: math.unit(200, "lb"),
  35604. name: "Front",
  35605. image: {
  35606. source: "./media/characters/noraly/front.svg",
  35607. extra: 4985/4773,
  35608. bottom: 150/5135
  35609. }
  35610. },
  35611. full: {
  35612. height: math.unit(5 + 2/12, "feet"),
  35613. weight: math.unit(164, "lb"),
  35614. name: "Full",
  35615. image: {
  35616. source: "./media/characters/noraly/full.svg",
  35617. extra: 1114/1059,
  35618. bottom: 35/1149
  35619. }
  35620. },
  35621. fuller: {
  35622. height: math.unit(5 + 2/12, "feet"),
  35623. weight: math.unit(230, "lb"),
  35624. name: "Fuller",
  35625. image: {
  35626. source: "./media/characters/noraly/fuller.svg",
  35627. extra: 1114/1059,
  35628. bottom: 35/1149
  35629. }
  35630. },
  35631. fullest: {
  35632. height: math.unit(5 + 2/12, "feet"),
  35633. weight: math.unit(300, "lb"),
  35634. name: "Fullest",
  35635. image: {
  35636. source: "./media/characters/noraly/fullest.svg",
  35637. extra: 1114/1059,
  35638. bottom: 35/1149
  35639. }
  35640. },
  35641. },
  35642. [
  35643. {
  35644. name: "Normal",
  35645. height: math.unit(5 + 2/12, "feet"),
  35646. default: true
  35647. },
  35648. ]
  35649. ))
  35650. characterMakers.push(() => makeCharacter(
  35651. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35652. {
  35653. front: {
  35654. height: math.unit(5 + 2/12, "feet"),
  35655. weight: math.unit(210, "lb"),
  35656. name: "Front",
  35657. image: {
  35658. source: "./media/characters/pera/front.svg",
  35659. extra: 1560/1531,
  35660. bottom: 165/1725
  35661. }
  35662. },
  35663. back: {
  35664. height: math.unit(5 + 2/12, "feet"),
  35665. weight: math.unit(210, "lb"),
  35666. name: "Back",
  35667. image: {
  35668. source: "./media/characters/pera/back.svg",
  35669. extra: 1523/1493,
  35670. bottom: 152/1675
  35671. }
  35672. },
  35673. dick: {
  35674. height: math.unit(2.4, "feet"),
  35675. name: "Dick",
  35676. image: {
  35677. source: "./media/characters/pera/dick.svg"
  35678. }
  35679. },
  35680. },
  35681. [
  35682. {
  35683. name: "Normal",
  35684. height: math.unit(5 + 2/12, "feet"),
  35685. default: true
  35686. },
  35687. ]
  35688. ))
  35689. characterMakers.push(() => makeCharacter(
  35690. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35691. {
  35692. front: {
  35693. height: math.unit(12, "feet"),
  35694. weight: math.unit(3200, "lb"),
  35695. name: "Front",
  35696. image: {
  35697. source: "./media/characters/julian/front.svg",
  35698. extra: 2962/2701,
  35699. bottom: 184/3146
  35700. }
  35701. },
  35702. maw: {
  35703. height: math.unit(5.35, "feet"),
  35704. name: "Maw",
  35705. image: {
  35706. source: "./media/characters/julian/maw.svg"
  35707. }
  35708. },
  35709. paw: {
  35710. height: math.unit(3.07, "feet"),
  35711. name: "Paw",
  35712. image: {
  35713. source: "./media/characters/julian/paw.svg"
  35714. }
  35715. },
  35716. },
  35717. [
  35718. {
  35719. name: "Default",
  35720. height: math.unit(12, "feet"),
  35721. default: true
  35722. },
  35723. {
  35724. name: "Big",
  35725. height: math.unit(50, "feet")
  35726. },
  35727. {
  35728. name: "Really Big",
  35729. height: math.unit(1, "mile")
  35730. },
  35731. {
  35732. name: "Extremely Big",
  35733. height: math.unit(100, "miles")
  35734. },
  35735. {
  35736. name: "Planet Hugger",
  35737. height: math.unit(200, "megameters")
  35738. },
  35739. {
  35740. name: "Unreasonably Big",
  35741. height: math.unit(1e300, "meters")
  35742. },
  35743. ]
  35744. ))
  35745. characterMakers.push(() => makeCharacter(
  35746. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35747. {
  35748. solgooleo: {
  35749. height: math.unit(4, "meters"),
  35750. weight: math.unit(6000*1.5, "kg"),
  35751. volume: math.unit(6000, "liters"),
  35752. name: "Solgooleo",
  35753. image: {
  35754. source: "./media/characters/pi/solgooleo.svg",
  35755. extra: 388/331,
  35756. bottom: 29/417
  35757. }
  35758. },
  35759. },
  35760. [
  35761. {
  35762. name: "Normal",
  35763. height: math.unit(4, "meters"),
  35764. default: true
  35765. },
  35766. ]
  35767. ))
  35768. characterMakers.push(() => makeCharacter(
  35769. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35770. {
  35771. front: {
  35772. height: math.unit(8, "feet"),
  35773. weight: math.unit(4, "tons"),
  35774. name: "Front",
  35775. image: {
  35776. source: "./media/characters/shaun/front.svg",
  35777. extra: 503/495,
  35778. bottom: 20/523
  35779. }
  35780. },
  35781. back: {
  35782. height: math.unit(8, "feet"),
  35783. weight: math.unit(4, "tons"),
  35784. name: "Back",
  35785. image: {
  35786. source: "./media/characters/shaun/back.svg",
  35787. extra: 487/480,
  35788. bottom: 20/507
  35789. }
  35790. },
  35791. },
  35792. [
  35793. {
  35794. name: "Lorg",
  35795. height: math.unit(8, "feet"),
  35796. default: true
  35797. },
  35798. ]
  35799. ))
  35800. characterMakers.push(() => makeCharacter(
  35801. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35802. {
  35803. frontAnthro: {
  35804. height: math.unit(7, "feet"),
  35805. name: "Front",
  35806. image: {
  35807. source: "./media/characters/sini/front-anthro.svg",
  35808. extra: 726/678,
  35809. bottom: 35/761
  35810. },
  35811. form: "anthro",
  35812. default: true
  35813. },
  35814. backAnthro: {
  35815. height: math.unit(7, "feet"),
  35816. name: "Back",
  35817. image: {
  35818. source: "./media/characters/sini/back-anthro.svg",
  35819. extra: 743/701,
  35820. bottom: 12/755
  35821. },
  35822. form: "anthro",
  35823. },
  35824. frontAnthroNsfw: {
  35825. height: math.unit(7, "feet"),
  35826. name: "Front (NSFW)",
  35827. image: {
  35828. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35829. extra: 726/678,
  35830. bottom: 35/761
  35831. },
  35832. form: "anthro"
  35833. },
  35834. backAnthroNsfw: {
  35835. height: math.unit(7, "feet"),
  35836. name: "Back (NSFW)",
  35837. image: {
  35838. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35839. extra: 743/701,
  35840. bottom: 12/755
  35841. },
  35842. form: "anthro",
  35843. },
  35844. mawAnthro: {
  35845. height: math.unit(2.14, "feet"),
  35846. name: "Maw",
  35847. image: {
  35848. source: "./media/characters/sini/maw-anthro.svg"
  35849. },
  35850. form: "anthro"
  35851. },
  35852. dick: {
  35853. height: math.unit(1.45, "feet"),
  35854. name: "Dick",
  35855. image: {
  35856. source: "./media/characters/sini/dick-anthro.svg"
  35857. },
  35858. form: "anthro"
  35859. },
  35860. feral: {
  35861. height: math.unit(16, "feet"),
  35862. name: "Feral",
  35863. image: {
  35864. source: "./media/characters/sini/feral.svg",
  35865. extra: 814/605,
  35866. bottom: 11/825
  35867. },
  35868. form: "feral",
  35869. default: true
  35870. },
  35871. feralNsfw: {
  35872. height: math.unit(16, "feet"),
  35873. name: "Feral (NSFW)",
  35874. image: {
  35875. source: "./media/characters/sini/feral-nsfw.svg",
  35876. extra: 814/605,
  35877. bottom: 11/825
  35878. },
  35879. form: "feral"
  35880. },
  35881. mawFeral: {
  35882. height: math.unit(5.66, "feet"),
  35883. name: "Maw",
  35884. image: {
  35885. source: "./media/characters/sini/maw-feral.svg"
  35886. },
  35887. form: "feral",
  35888. },
  35889. pawFeral: {
  35890. height: math.unit(5.17, "feet"),
  35891. name: "Paw",
  35892. image: {
  35893. source: "./media/characters/sini/paw-feral.svg"
  35894. },
  35895. form: "feral",
  35896. },
  35897. rumpFeral: {
  35898. height: math.unit(13.11, "feet"),
  35899. name: "Rump",
  35900. image: {
  35901. source: "./media/characters/sini/rump-feral.svg"
  35902. },
  35903. form: "feral",
  35904. },
  35905. dickFeral: {
  35906. height: math.unit(1, "feet"),
  35907. name: "Dick",
  35908. image: {
  35909. source: "./media/characters/sini/dick-feral.svg"
  35910. },
  35911. form: "feral",
  35912. },
  35913. eyeFeral: {
  35914. height: math.unit(1.23, "feet"),
  35915. name: "Eye",
  35916. image: {
  35917. source: "./media/characters/sini/eye-feral.svg"
  35918. },
  35919. form: "feral",
  35920. },
  35921. },
  35922. [
  35923. {
  35924. name: "Normal",
  35925. height: math.unit(7, "feet"),
  35926. default: true,
  35927. form: "anthro"
  35928. },
  35929. {
  35930. name: "Normal",
  35931. height: math.unit(16, "feet"),
  35932. default: true,
  35933. form: "feral"
  35934. },
  35935. ],
  35936. {
  35937. "anthro": {
  35938. name: "Anthro",
  35939. default: true
  35940. },
  35941. "feral": {
  35942. name: "Feral",
  35943. }
  35944. }
  35945. ))
  35946. characterMakers.push(() => makeCharacter(
  35947. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35948. {
  35949. side: {
  35950. height: math.unit(47.2, "meters"),
  35951. weight: math.unit(10000, "tons"),
  35952. name: "Side",
  35953. image: {
  35954. source: "./media/characters/raylldo/side.svg",
  35955. extra: 2363/642,
  35956. bottom: 221/2584
  35957. }
  35958. },
  35959. top: {
  35960. height: math.unit(240, "meters"),
  35961. weight: math.unit(10000, "tons"),
  35962. name: "Top",
  35963. image: {
  35964. source: "./media/characters/raylldo/top.svg"
  35965. }
  35966. },
  35967. bottom: {
  35968. height: math.unit(240, "meters"),
  35969. weight: math.unit(10000, "tons"),
  35970. name: "Bottom",
  35971. image: {
  35972. source: "./media/characters/raylldo/bottom.svg"
  35973. }
  35974. },
  35975. head: {
  35976. height: math.unit(38.6, "meters"),
  35977. name: "Head",
  35978. image: {
  35979. source: "./media/characters/raylldo/head.svg",
  35980. extra: 1335/1112,
  35981. bottom: 0/1335
  35982. }
  35983. },
  35984. maw: {
  35985. height: math.unit(16.37, "meters"),
  35986. name: "Maw",
  35987. image: {
  35988. source: "./media/characters/raylldo/maw.svg",
  35989. extra: 883/660,
  35990. bottom: 0/883
  35991. },
  35992. extraAttributes: {
  35993. preyCapacity: {
  35994. name: "Capacity",
  35995. power: 3,
  35996. type: "volume",
  35997. base: math.unit(1000, "people")
  35998. },
  35999. tongueSize: {
  36000. name: "Tongue Size",
  36001. power: 2,
  36002. type: "area",
  36003. base: math.unit(21, "m^2")
  36004. }
  36005. }
  36006. },
  36007. forepaw: {
  36008. height: math.unit(18, "meters"),
  36009. name: "Forepaw",
  36010. image: {
  36011. source: "./media/characters/raylldo/forepaw.svg"
  36012. }
  36013. },
  36014. hindpaw: {
  36015. height: math.unit(23, "meters"),
  36016. name: "Hindpaw",
  36017. image: {
  36018. source: "./media/characters/raylldo/hindpaw.svg"
  36019. }
  36020. },
  36021. genitals: {
  36022. height: math.unit(42, "meters"),
  36023. name: "Genitals",
  36024. image: {
  36025. source: "./media/characters/raylldo/genitals.svg"
  36026. }
  36027. },
  36028. },
  36029. [
  36030. {
  36031. name: "Normal",
  36032. height: math.unit(47.2, "meters"),
  36033. default: true
  36034. },
  36035. ]
  36036. ))
  36037. characterMakers.push(() => makeCharacter(
  36038. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36039. {
  36040. anthroFront: {
  36041. height: math.unit(9, "feet"),
  36042. weight: math.unit(600, "lb"),
  36043. name: "Anthro (Front)",
  36044. image: {
  36045. source: "./media/characters/glint/anthro-front.svg",
  36046. extra: 1097/1018,
  36047. bottom: 28/1125
  36048. }
  36049. },
  36050. anthroBack: {
  36051. height: math.unit(9, "feet"),
  36052. weight: math.unit(600, "lb"),
  36053. name: "Anthro (Back)",
  36054. image: {
  36055. source: "./media/characters/glint/anthro-back.svg",
  36056. extra: 1154/997,
  36057. bottom: 36/1190
  36058. }
  36059. },
  36060. feral: {
  36061. height: math.unit(11, "feet"),
  36062. weight: math.unit(50000, "lb"),
  36063. name: "Feral",
  36064. image: {
  36065. source: "./media/characters/glint/feral.svg",
  36066. extra: 3035/1585,
  36067. bottom: 1169/4204
  36068. }
  36069. },
  36070. dickAnthro: {
  36071. height: math.unit(0.7, "meters"),
  36072. name: "Dick (Anthro)",
  36073. image: {
  36074. source: "./media/characters/glint/dick-anthro.svg"
  36075. }
  36076. },
  36077. dickFeral: {
  36078. height: math.unit(2.65, "meters"),
  36079. name: "Dick (Feral)",
  36080. image: {
  36081. source: "./media/characters/glint/dick-feral.svg"
  36082. }
  36083. },
  36084. slitHidden: {
  36085. height: math.unit(5.85, "meters"),
  36086. name: "Slit (Hidden)",
  36087. image: {
  36088. source: "./media/characters/glint/slit-hidden.svg"
  36089. }
  36090. },
  36091. slitErect: {
  36092. height: math.unit(5.85, "meters"),
  36093. name: "Slit (Erect)",
  36094. image: {
  36095. source: "./media/characters/glint/slit-erect.svg"
  36096. }
  36097. },
  36098. mawAnthro: {
  36099. height: math.unit(0.63, "meters"),
  36100. name: "Maw (Anthro)",
  36101. image: {
  36102. source: "./media/characters/glint/maw.svg"
  36103. }
  36104. },
  36105. mawFeral: {
  36106. height: math.unit(2.89, "meters"),
  36107. name: "Maw (Feral)",
  36108. image: {
  36109. source: "./media/characters/glint/maw.svg"
  36110. }
  36111. },
  36112. },
  36113. [
  36114. {
  36115. name: "Normal",
  36116. height: math.unit(9, "feet"),
  36117. default: true
  36118. },
  36119. ]
  36120. ))
  36121. characterMakers.push(() => makeCharacter(
  36122. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36123. {
  36124. side: {
  36125. height: math.unit(15, "feet"),
  36126. weight: math.unit(5000, "kg"),
  36127. name: "Side",
  36128. image: {
  36129. source: "./media/characters/kairne/side.svg",
  36130. extra: 979/811,
  36131. bottom: 13/992
  36132. }
  36133. },
  36134. front: {
  36135. height: math.unit(15, "feet"),
  36136. weight: math.unit(5000, "kg"),
  36137. name: "Front",
  36138. image: {
  36139. source: "./media/characters/kairne/front.svg",
  36140. extra: 908/814,
  36141. bottom: 26/934
  36142. }
  36143. },
  36144. sideNsfw: {
  36145. height: math.unit(15, "feet"),
  36146. weight: math.unit(5000, "kg"),
  36147. name: "Side (NSFW)",
  36148. image: {
  36149. source: "./media/characters/kairne/side-nsfw.svg",
  36150. extra: 979/811,
  36151. bottom: 13/992
  36152. }
  36153. },
  36154. frontNsfw: {
  36155. height: math.unit(15, "feet"),
  36156. weight: math.unit(5000, "kg"),
  36157. name: "Front (NSFW)",
  36158. image: {
  36159. source: "./media/characters/kairne/front-nsfw.svg",
  36160. extra: 908/814,
  36161. bottom: 26/934
  36162. }
  36163. },
  36164. dickCaged: {
  36165. height: math.unit(0.65, "meters"),
  36166. name: "Dick-caged",
  36167. image: {
  36168. source: "./media/characters/kairne/dick-caged.svg"
  36169. }
  36170. },
  36171. dick: {
  36172. height: math.unit(0.79, "meters"),
  36173. name: "Dick",
  36174. image: {
  36175. source: "./media/characters/kairne/dick.svg"
  36176. }
  36177. },
  36178. genitals: {
  36179. height: math.unit(1.29, "meters"),
  36180. name: "Genitals",
  36181. image: {
  36182. source: "./media/characters/kairne/genitals.svg"
  36183. }
  36184. },
  36185. maw: {
  36186. height: math.unit(1.73, "meters"),
  36187. name: "Maw",
  36188. image: {
  36189. source: "./media/characters/kairne/maw.svg"
  36190. }
  36191. },
  36192. },
  36193. [
  36194. {
  36195. name: "Normal",
  36196. height: math.unit(15, "feet"),
  36197. default: true
  36198. },
  36199. ]
  36200. ))
  36201. characterMakers.push(() => makeCharacter(
  36202. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36203. {
  36204. front: {
  36205. height: math.unit(5 + 8/12, "feet"),
  36206. weight: math.unit(139, "lb"),
  36207. name: "Front",
  36208. image: {
  36209. source: "./media/characters/biscuit-jackal/front.svg",
  36210. extra: 2106/1961,
  36211. bottom: 58/2164
  36212. }
  36213. },
  36214. back: {
  36215. height: math.unit(5 + 8/12, "feet"),
  36216. weight: math.unit(139, "lb"),
  36217. name: "Back",
  36218. image: {
  36219. source: "./media/characters/biscuit-jackal/back.svg",
  36220. extra: 2132/1976,
  36221. bottom: 57/2189
  36222. }
  36223. },
  36224. werejackal: {
  36225. height: math.unit(6 + 3/12, "feet"),
  36226. weight: math.unit(188, "lb"),
  36227. name: "Werejackal",
  36228. image: {
  36229. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36230. extra: 2373/2178,
  36231. bottom: 53/2426
  36232. }
  36233. },
  36234. },
  36235. [
  36236. {
  36237. name: "Normal",
  36238. height: math.unit(5 + 8/12, "feet"),
  36239. default: true
  36240. },
  36241. ]
  36242. ))
  36243. characterMakers.push(() => makeCharacter(
  36244. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36245. {
  36246. front: {
  36247. height: math.unit(140, "cm"),
  36248. weight: math.unit(45, "kg"),
  36249. name: "Front",
  36250. image: {
  36251. source: "./media/characters/tayra-white/front.svg",
  36252. extra: 2229/2192,
  36253. bottom: 75/2304
  36254. }
  36255. },
  36256. },
  36257. [
  36258. {
  36259. name: "Normal",
  36260. height: math.unit(140, "cm"),
  36261. default: true
  36262. },
  36263. ]
  36264. ))
  36265. characterMakers.push(() => makeCharacter(
  36266. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36267. {
  36268. front: {
  36269. height: math.unit(4 + 5/12, "feet"),
  36270. name: "Front",
  36271. image: {
  36272. source: "./media/characters/scoop/front.svg",
  36273. extra: 1257/1136,
  36274. bottom: 69/1326
  36275. }
  36276. },
  36277. back: {
  36278. height: math.unit(4 + 5/12, "feet"),
  36279. name: "Back",
  36280. image: {
  36281. source: "./media/characters/scoop/back.svg",
  36282. extra: 1321/1152,
  36283. bottom: 32/1353
  36284. }
  36285. },
  36286. maw: {
  36287. height: math.unit(0.68, "feet"),
  36288. name: "Maw",
  36289. image: {
  36290. source: "./media/characters/scoop/maw.svg"
  36291. }
  36292. },
  36293. },
  36294. [
  36295. {
  36296. name: "Really Small",
  36297. height: math.unit(1, "mm")
  36298. },
  36299. {
  36300. name: "Micro",
  36301. height: math.unit(1, "inch")
  36302. },
  36303. {
  36304. name: "Normal",
  36305. height: math.unit(4 + 5/12, "feet"),
  36306. default: true
  36307. },
  36308. {
  36309. name: "Macro",
  36310. height: math.unit(200, "feet")
  36311. },
  36312. {
  36313. name: "Megamacro",
  36314. height: math.unit(3240, "feet")
  36315. },
  36316. {
  36317. name: "Teramacro",
  36318. height: math.unit(2500, "miles")
  36319. },
  36320. ]
  36321. ))
  36322. characterMakers.push(() => makeCharacter(
  36323. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36324. {
  36325. front: {
  36326. height: math.unit(15 + 7/12, "feet"),
  36327. weight: math.unit(1150, "tons"),
  36328. name: "Front",
  36329. image: {
  36330. source: "./media/characters/saphinara/front.svg",
  36331. extra: 1837/1643,
  36332. bottom: 84/1921
  36333. },
  36334. form: "normal",
  36335. default: true
  36336. },
  36337. side: {
  36338. height: math.unit(15 + 7/12, "feet"),
  36339. weight: math.unit(1150, "tons"),
  36340. name: "Side",
  36341. image: {
  36342. source: "./media/characters/saphinara/side.svg",
  36343. extra: 605/547,
  36344. bottom: 6/611
  36345. },
  36346. form: "normal"
  36347. },
  36348. back: {
  36349. height: math.unit(15 + 7/12, "feet"),
  36350. weight: math.unit(1150, "tons"),
  36351. name: "Back",
  36352. image: {
  36353. source: "./media/characters/saphinara/back.svg",
  36354. extra: 591/531,
  36355. bottom: 13/604
  36356. },
  36357. form: "normal"
  36358. },
  36359. frontTail: {
  36360. height: math.unit(15 + 7/12, "feet"),
  36361. weight: math.unit(1150, "tons"),
  36362. name: "Front (Full Tail)",
  36363. image: {
  36364. source: "./media/characters/saphinara/front-tail.svg",
  36365. extra: 2256/1630,
  36366. bottom: 261/2517
  36367. },
  36368. form: "normal"
  36369. },
  36370. insides: {
  36371. height: math.unit(11.92, "feet"),
  36372. name: "Insides",
  36373. image: {
  36374. source: "./media/characters/saphinara/insides.svg"
  36375. },
  36376. form: "normal"
  36377. },
  36378. head: {
  36379. height: math.unit(4.17, "feet"),
  36380. name: "Head",
  36381. image: {
  36382. source: "./media/characters/saphinara/head.svg"
  36383. },
  36384. form: "normal"
  36385. },
  36386. tongue: {
  36387. height: math.unit(4.60, "feet"),
  36388. name: "Tongue",
  36389. image: {
  36390. source: "./media/characters/saphinara/tongue.svg"
  36391. },
  36392. form: "normal"
  36393. },
  36394. headEnraged: {
  36395. height: math.unit(5.55, "feet"),
  36396. name: "Head (Enraged)",
  36397. image: {
  36398. source: "./media/characters/saphinara/head-enraged.svg"
  36399. },
  36400. form: "normal"
  36401. },
  36402. wings: {
  36403. height: math.unit(11.95, "feet"),
  36404. name: "Wings",
  36405. image: {
  36406. source: "./media/characters/saphinara/wings.svg"
  36407. },
  36408. form: "normal"
  36409. },
  36410. feathers: {
  36411. height: math.unit(8.92, "feet"),
  36412. name: "Feathers",
  36413. image: {
  36414. source: "./media/characters/saphinara/feathers.svg"
  36415. },
  36416. form: "normal"
  36417. },
  36418. shackles: {
  36419. height: math.unit(2, "feet"),
  36420. name: "Shackles",
  36421. image: {
  36422. source: "./media/characters/saphinara/shackles.svg"
  36423. },
  36424. form: "normal"
  36425. },
  36426. eyes: {
  36427. height: math.unit(1.331, "feet"),
  36428. name: "Eyes",
  36429. image: {
  36430. source: "./media/characters/saphinara/eyes.svg"
  36431. },
  36432. form: "normal"
  36433. },
  36434. eyesEnraged: {
  36435. height: math.unit(1.331, "feet"),
  36436. name: "Eyes (Enraged)",
  36437. image: {
  36438. source: "./media/characters/saphinara/eyes-enraged.svg"
  36439. },
  36440. form: "normal"
  36441. },
  36442. trueFormSide: {
  36443. height: math.unit(200, "feet"),
  36444. weight: math.unit(1e7, "tons"),
  36445. name: "Side",
  36446. image: {
  36447. source: "./media/characters/saphinara/true-form-side.svg",
  36448. extra: 1399/770,
  36449. bottom: 97/1496
  36450. },
  36451. form: "true-form",
  36452. default: true
  36453. },
  36454. trueFormMaw: {
  36455. height: math.unit(71.5, "feet"),
  36456. name: "Maw",
  36457. image: {
  36458. source: "./media/characters/saphinara/true-form-maw.svg",
  36459. extra: 2302/1453,
  36460. bottom: 0/2302
  36461. },
  36462. form: "true-form"
  36463. },
  36464. meowberusSide: {
  36465. height: math.unit(75, "feet"),
  36466. weight: math.unit(180000, "kg"),
  36467. preyCapacity: math.unit(50000, "people"),
  36468. name: "Side",
  36469. image: {
  36470. source: "./media/characters/saphinara/meowberus-side.svg",
  36471. extra: 1400/711,
  36472. bottom: 126/1526
  36473. },
  36474. form: "meowberus",
  36475. extraAttributes: {
  36476. "pawArea": {
  36477. name: "Paw Size",
  36478. power: 2,
  36479. type: "area",
  36480. base: math.unit(35, "m^2")
  36481. }
  36482. }
  36483. },
  36484. },
  36485. [
  36486. {
  36487. name: "Normal",
  36488. height: math.unit(15 + 7/12, "feet"),
  36489. default: true,
  36490. form: "normal"
  36491. },
  36492. {
  36493. name: "Angry",
  36494. height: math.unit(30 + 6/12, "feet"),
  36495. form: "normal"
  36496. },
  36497. {
  36498. name: "Enraged",
  36499. height: math.unit(102 + 1/12, "feet"),
  36500. form: "normal"
  36501. },
  36502. {
  36503. name: "True",
  36504. height: math.unit(200, "feet"),
  36505. default: true,
  36506. form: "true-form"
  36507. },
  36508. {
  36509. name: "Normal",
  36510. height: math.unit(75, "feet"),
  36511. default: true,
  36512. form: "meowberus"
  36513. },
  36514. ],
  36515. {
  36516. "normal": {
  36517. name: "Normal",
  36518. default: true
  36519. },
  36520. "true-form": {
  36521. name: "True Form"
  36522. },
  36523. "meowberus": {
  36524. name: "Meowberus",
  36525. },
  36526. }
  36527. ))
  36528. characterMakers.push(() => makeCharacter(
  36529. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36530. {
  36531. front: {
  36532. height: math.unit(6 + 8/12, "feet"),
  36533. weight: math.unit(300, "lb"),
  36534. name: "Front",
  36535. image: {
  36536. source: "./media/characters/jrain/front.svg",
  36537. extra: 3039/2865,
  36538. bottom: 399/3438
  36539. }
  36540. },
  36541. back: {
  36542. height: math.unit(6 + 8/12, "feet"),
  36543. weight: math.unit(300, "lb"),
  36544. name: "Back",
  36545. image: {
  36546. source: "./media/characters/jrain/back.svg",
  36547. extra: 3089/2938,
  36548. bottom: 172/3261
  36549. }
  36550. },
  36551. head: {
  36552. height: math.unit(2.14, "feet"),
  36553. name: "Head",
  36554. image: {
  36555. source: "./media/characters/jrain/head.svg"
  36556. }
  36557. },
  36558. maw: {
  36559. height: math.unit(1.77, "feet"),
  36560. name: "Maw",
  36561. image: {
  36562. source: "./media/characters/jrain/maw.svg"
  36563. }
  36564. },
  36565. leftHand: {
  36566. height: math.unit(1.1, "feet"),
  36567. name: "Left Hand",
  36568. image: {
  36569. source: "./media/characters/jrain/left-hand.svg"
  36570. }
  36571. },
  36572. rightHand: {
  36573. height: math.unit(1.1, "feet"),
  36574. name: "Right Hand",
  36575. image: {
  36576. source: "./media/characters/jrain/right-hand.svg"
  36577. }
  36578. },
  36579. eye: {
  36580. height: math.unit(0.35, "feet"),
  36581. name: "Eye",
  36582. image: {
  36583. source: "./media/characters/jrain/eye.svg"
  36584. }
  36585. },
  36586. },
  36587. [
  36588. {
  36589. name: "Normal",
  36590. height: math.unit(6 + 8/12, "feet"),
  36591. default: true
  36592. },
  36593. {
  36594. name: "Casually Large",
  36595. height: math.unit(25, "feet")
  36596. },
  36597. {
  36598. name: "Giant",
  36599. height: math.unit(100, "feet")
  36600. },
  36601. {
  36602. name: "Kaiju",
  36603. height: math.unit(300, "feet")
  36604. },
  36605. ]
  36606. ))
  36607. characterMakers.push(() => makeCharacter(
  36608. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36609. {
  36610. dragon: {
  36611. height: math.unit(5, "meters"),
  36612. name: "Dragon",
  36613. image: {
  36614. source: "./media/characters/sabrina/dragon.svg",
  36615. extra: 3670 / 2365,
  36616. bottom: 333 / 4003
  36617. }
  36618. },
  36619. gryphon: {
  36620. height: math.unit(3, "meters"),
  36621. name: "Gryphon",
  36622. image: {
  36623. source: "./media/characters/sabrina/gryphon.svg",
  36624. extra: 1576 / 945,
  36625. bottom: 71 / 1647
  36626. }
  36627. },
  36628. snake: {
  36629. height: math.unit(12, "meters"),
  36630. name: "Snake",
  36631. image: {
  36632. source: "./media/characters/sabrina/snake.svg",
  36633. extra: 1758 / 1320,
  36634. bottom: 186 / 1944
  36635. }
  36636. },
  36637. collar: {
  36638. height: math.unit(1.86, "meters"),
  36639. name: "Collar",
  36640. image: {
  36641. source: "./media/characters/sabrina/collar.svg"
  36642. }
  36643. },
  36644. eye: {
  36645. height: math.unit(0.53, "meters"),
  36646. name: "Eye",
  36647. image: {
  36648. source: "./media/characters/sabrina/eye.svg"
  36649. }
  36650. },
  36651. foot: {
  36652. height: math.unit(1.86, "meters"),
  36653. name: "Foot",
  36654. image: {
  36655. source: "./media/characters/sabrina/foot.svg"
  36656. }
  36657. },
  36658. hand: {
  36659. height: math.unit(1.32, "meters"),
  36660. name: "Hand",
  36661. image: {
  36662. source: "./media/characters/sabrina/hand.svg"
  36663. }
  36664. },
  36665. head: {
  36666. height: math.unit(2.44, "meters"),
  36667. name: "Head",
  36668. image: {
  36669. source: "./media/characters/sabrina/head.svg"
  36670. }
  36671. },
  36672. headAngry: {
  36673. height: math.unit(2.44, "meters"),
  36674. name: "Head (Angry))",
  36675. image: {
  36676. source: "./media/characters/sabrina/head-angry.svg"
  36677. }
  36678. },
  36679. maw: {
  36680. height: math.unit(1.65, "meters"),
  36681. name: "Maw",
  36682. image: {
  36683. source: "./media/characters/sabrina/maw.svg"
  36684. }
  36685. },
  36686. spikes: {
  36687. height: math.unit(1.69, "meters"),
  36688. name: "Spikes",
  36689. image: {
  36690. source: "./media/characters/sabrina/spikes.svg"
  36691. }
  36692. },
  36693. stomach: {
  36694. height: math.unit(1.15, "meters"),
  36695. name: "Stomach",
  36696. image: {
  36697. source: "./media/characters/sabrina/stomach.svg"
  36698. }
  36699. },
  36700. tongue: {
  36701. height: math.unit(1.27, "meters"),
  36702. name: "Tongue",
  36703. image: {
  36704. source: "./media/characters/sabrina/tongue.svg"
  36705. }
  36706. },
  36707. wingDorsal: {
  36708. height: math.unit(4.85, "meters"),
  36709. name: "Wing (Dorsal)",
  36710. image: {
  36711. source: "./media/characters/sabrina/wing-dorsal.svg"
  36712. }
  36713. },
  36714. wingVentral: {
  36715. height: math.unit(4.85, "meters"),
  36716. name: "Wing (Ventral)",
  36717. image: {
  36718. source: "./media/characters/sabrina/wing-ventral.svg"
  36719. }
  36720. },
  36721. },
  36722. [
  36723. {
  36724. name: "Normal",
  36725. height: math.unit(5, "meters"),
  36726. default: true
  36727. },
  36728. ]
  36729. ))
  36730. characterMakers.push(() => makeCharacter(
  36731. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36732. {
  36733. frontMaid: {
  36734. height: math.unit(5 + 5/12, "feet"),
  36735. weight: math.unit(130, "lb"),
  36736. name: "Front (Maid)",
  36737. image: {
  36738. source: "./media/characters/midnight-tales/front-maid.svg",
  36739. extra: 489/454,
  36740. bottom: 61/550
  36741. }
  36742. },
  36743. frontFormal: {
  36744. height: math.unit(5 + 5/12, "feet"),
  36745. weight: math.unit(130, "lb"),
  36746. name: "Front (Formal)",
  36747. image: {
  36748. source: "./media/characters/midnight-tales/front-formal.svg",
  36749. extra: 489/454,
  36750. bottom: 61/550
  36751. }
  36752. },
  36753. back: {
  36754. height: math.unit(5 + 5/12, "feet"),
  36755. weight: math.unit(130, "lb"),
  36756. name: "Back",
  36757. image: {
  36758. source: "./media/characters/midnight-tales/back.svg",
  36759. extra: 498/456,
  36760. bottom: 33/531
  36761. }
  36762. },
  36763. frontBeast: {
  36764. height: math.unit(40, "feet"),
  36765. weight: math.unit(64000, "lb"),
  36766. name: "Front (Beast)",
  36767. image: {
  36768. source: "./media/characters/midnight-tales/front-beast.svg",
  36769. extra: 927/860,
  36770. bottom: 53/980
  36771. }
  36772. },
  36773. backBeast: {
  36774. height: math.unit(40, "feet"),
  36775. weight: math.unit(64000, "lb"),
  36776. name: "Back (Beast)",
  36777. image: {
  36778. source: "./media/characters/midnight-tales/back-beast.svg",
  36779. extra: 929/855,
  36780. bottom: 16/945
  36781. }
  36782. },
  36783. footBeast: {
  36784. height: math.unit(6.7, "feet"),
  36785. name: "Foot (Beast)",
  36786. image: {
  36787. source: "./media/characters/midnight-tales/foot-beast.svg"
  36788. }
  36789. },
  36790. headBeast: {
  36791. height: math.unit(8, "feet"),
  36792. name: "Head (Beast)",
  36793. image: {
  36794. source: "./media/characters/midnight-tales/head-beast.svg"
  36795. }
  36796. },
  36797. },
  36798. [
  36799. {
  36800. name: "Normal",
  36801. height: math.unit(5 + 5 / 12, "feet"),
  36802. default: true
  36803. },
  36804. {
  36805. name: "Macro",
  36806. height: math.unit(25, "feet")
  36807. },
  36808. ]
  36809. ))
  36810. characterMakers.push(() => makeCharacter(
  36811. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36812. {
  36813. front: {
  36814. height: math.unit(5 + 10/12, "feet"),
  36815. name: "Front",
  36816. image: {
  36817. source: "./media/characters/argon/front.svg",
  36818. extra: 2009/1935,
  36819. bottom: 118/2127
  36820. }
  36821. },
  36822. back: {
  36823. height: math.unit(5 + 10/12, "feet"),
  36824. name: "Back",
  36825. image: {
  36826. source: "./media/characters/argon/back.svg",
  36827. extra: 2047/1992,
  36828. bottom: 20/2067
  36829. }
  36830. },
  36831. frontDressed: {
  36832. height: math.unit(5 + 10/12, "feet"),
  36833. name: "Front (Dressed)",
  36834. image: {
  36835. source: "./media/characters/argon/front-dressed.svg",
  36836. extra: 2009/1935,
  36837. bottom: 118/2127
  36838. }
  36839. },
  36840. },
  36841. [
  36842. {
  36843. name: "Normal",
  36844. height: math.unit(5 + 10/12, "feet"),
  36845. default: true
  36846. },
  36847. ]
  36848. ))
  36849. characterMakers.push(() => makeCharacter(
  36850. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36851. {
  36852. front: {
  36853. height: math.unit(8 + 6/12, "feet"),
  36854. weight: math.unit(1150, "lb"),
  36855. name: "Front",
  36856. image: {
  36857. source: "./media/characters/kichi/front.svg",
  36858. extra: 1267/1164,
  36859. bottom: 61/1328
  36860. }
  36861. },
  36862. back: {
  36863. height: math.unit(8 + 6/12, "feet"),
  36864. weight: math.unit(1150, "lb"),
  36865. name: "Back",
  36866. image: {
  36867. source: "./media/characters/kichi/back.svg",
  36868. extra: 1273/1166,
  36869. bottom: 33/1306
  36870. }
  36871. },
  36872. },
  36873. [
  36874. {
  36875. name: "Normal",
  36876. height: math.unit(8 + 6/12, "feet"),
  36877. default: true
  36878. },
  36879. ]
  36880. ))
  36881. characterMakers.push(() => makeCharacter(
  36882. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36883. {
  36884. front: {
  36885. height: math.unit(6, "feet"),
  36886. weight: math.unit(210, "lb"),
  36887. name: "Front",
  36888. image: {
  36889. source: "./media/characters/manetel-greyscale/front.svg",
  36890. extra: 350/312,
  36891. bottom: 8/358
  36892. }
  36893. },
  36894. },
  36895. [
  36896. {
  36897. name: "Micro",
  36898. height: math.unit(2, "inches")
  36899. },
  36900. {
  36901. name: "Normal",
  36902. height: math.unit(6, "feet"),
  36903. default: true
  36904. },
  36905. {
  36906. name: "Minimacro",
  36907. height: math.unit(17, "feet")
  36908. },
  36909. {
  36910. name: "Macro",
  36911. height: math.unit(117, "feet")
  36912. },
  36913. ]
  36914. ))
  36915. characterMakers.push(() => makeCharacter(
  36916. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36917. {
  36918. side: {
  36919. height: math.unit(5 + 1/12, "feet"),
  36920. weight: math.unit(418, "lb"),
  36921. name: "Side",
  36922. image: {
  36923. source: "./media/characters/softpurr/side.svg",
  36924. extra: 1993/1945,
  36925. bottom: 134/2127
  36926. }
  36927. },
  36928. front: {
  36929. height: math.unit(5 + 1/12, "feet"),
  36930. weight: math.unit(418, "lb"),
  36931. name: "Front",
  36932. image: {
  36933. source: "./media/characters/softpurr/front.svg",
  36934. extra: 1950/1856,
  36935. bottom: 174/2124
  36936. }
  36937. },
  36938. paw: {
  36939. height: math.unit(1, "feet"),
  36940. name: "Paw",
  36941. image: {
  36942. source: "./media/characters/softpurr/paw.svg"
  36943. }
  36944. },
  36945. },
  36946. [
  36947. {
  36948. name: "Normal",
  36949. height: math.unit(5 + 1/12, "feet"),
  36950. default: true
  36951. },
  36952. ]
  36953. ))
  36954. characterMakers.push(() => makeCharacter(
  36955. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36956. {
  36957. front: {
  36958. height: math.unit(260, "meters"),
  36959. name: "Front",
  36960. image: {
  36961. source: "./media/characters/anahita/front.svg",
  36962. extra: 665/635,
  36963. bottom: 89/754
  36964. }
  36965. },
  36966. },
  36967. [
  36968. {
  36969. name: "Macro",
  36970. height: math.unit(260, "meters"),
  36971. default: true
  36972. },
  36973. ]
  36974. ))
  36975. characterMakers.push(() => makeCharacter(
  36976. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36977. {
  36978. front: {
  36979. height: math.unit(4 + 10/12, "feet"),
  36980. weight: math.unit(160, "lb"),
  36981. name: "Front",
  36982. image: {
  36983. source: "./media/characters/chip-mouse/front.svg",
  36984. extra: 3528/3408,
  36985. bottom: 0/3528
  36986. }
  36987. },
  36988. frontNsfw: {
  36989. height: math.unit(4 + 10/12, "feet"),
  36990. weight: math.unit(160, "lb"),
  36991. name: "Front (NSFW)",
  36992. image: {
  36993. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36994. extra: 3528/3408,
  36995. bottom: 0/3528
  36996. }
  36997. },
  36998. },
  36999. [
  37000. {
  37001. name: "Normal",
  37002. height: math.unit(4 + 10/12, "feet"),
  37003. default: true
  37004. },
  37005. ]
  37006. ))
  37007. characterMakers.push(() => makeCharacter(
  37008. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37009. {
  37010. side: {
  37011. height: math.unit(10, "feet"),
  37012. weight: math.unit(14000, "lb"),
  37013. name: "Side",
  37014. image: {
  37015. source: "./media/characters/kremm/side.svg",
  37016. extra: 1390/1053,
  37017. bottom: 90/1480
  37018. }
  37019. },
  37020. gut: {
  37021. height: math.unit(5.8, "feet"),
  37022. name: "Gut",
  37023. image: {
  37024. source: "./media/characters/kremm/gut.svg"
  37025. }
  37026. },
  37027. ass: {
  37028. height: math.unit(6.1, "feet"),
  37029. name: "Ass",
  37030. image: {
  37031. source: "./media/characters/kremm/ass.svg"
  37032. }
  37033. },
  37034. jaws: {
  37035. height: math.unit(2.2, "feet"),
  37036. name: "Jaws",
  37037. image: {
  37038. source: "./media/characters/kremm/jaws.svg"
  37039. }
  37040. },
  37041. dick: {
  37042. height: math.unit(4.26, "feet"),
  37043. name: "Dick",
  37044. image: {
  37045. source: "./media/characters/kremm/dick.svg"
  37046. }
  37047. },
  37048. },
  37049. [
  37050. {
  37051. name: "Normal",
  37052. height: math.unit(10, "feet"),
  37053. default: true
  37054. },
  37055. ]
  37056. ))
  37057. characterMakers.push(() => makeCharacter(
  37058. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37059. {
  37060. front: {
  37061. height: math.unit(30, "stories"),
  37062. name: "Front",
  37063. image: {
  37064. source: "./media/characters/kai/front.svg",
  37065. extra: 1892/1718,
  37066. bottom: 162/2054
  37067. }
  37068. },
  37069. },
  37070. [
  37071. {
  37072. name: "Macro",
  37073. height: math.unit(30, "stories"),
  37074. default: true
  37075. },
  37076. ]
  37077. ))
  37078. characterMakers.push(() => makeCharacter(
  37079. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37080. {
  37081. front: {
  37082. height: math.unit(6 + 4/12, "feet"),
  37083. weight: math.unit(145, "lb"),
  37084. name: "Front",
  37085. image: {
  37086. source: "./media/characters/sykes/front.svg",
  37087. extra: 1321 / 1187,
  37088. bottom: 66 / 1387
  37089. }
  37090. },
  37091. back: {
  37092. height: math.unit(6 + 4/12, "feet"),
  37093. weight: math.unit(145, "lb"),
  37094. name: "Back",
  37095. image: {
  37096. source: "./media/characters/sykes/back.svg",
  37097. extra: 1326/1181,
  37098. bottom: 31/1357
  37099. }
  37100. },
  37101. traditionalOutfit: {
  37102. height: math.unit(6 + 4/12, "feet"),
  37103. weight: math.unit(145, "lb"),
  37104. name: "Traditional Outfit",
  37105. image: {
  37106. source: "./media/characters/sykes/traditional-outfit.svg",
  37107. extra: 1321 / 1187,
  37108. bottom: 66 / 1387
  37109. }
  37110. },
  37111. adventureOutfit: {
  37112. height: math.unit(6 + 4/12, "feet"),
  37113. weight: math.unit(145, "lb"),
  37114. name: "Adventure Outfit",
  37115. image: {
  37116. source: "./media/characters/sykes/adventure-outfit.svg",
  37117. extra: 1321 / 1187,
  37118. bottom: 66 / 1387
  37119. }
  37120. },
  37121. handLeft: {
  37122. height: math.unit(0.9, "feet"),
  37123. name: "Hand (Left)",
  37124. image: {
  37125. source: "./media/characters/sykes/hand-left.svg"
  37126. }
  37127. },
  37128. handRight: {
  37129. height: math.unit(0.839, "feet"),
  37130. name: "Hand (Right)",
  37131. image: {
  37132. source: "./media/characters/sykes/hand-right.svg"
  37133. }
  37134. },
  37135. leftFoot: {
  37136. height: math.unit(1.2, "feet"),
  37137. name: "Foot (Left)",
  37138. image: {
  37139. source: "./media/characters/sykes/foot-left.svg"
  37140. }
  37141. },
  37142. rightFoot: {
  37143. height: math.unit(1.2, "feet"),
  37144. name: "Foot (Right)",
  37145. image: {
  37146. source: "./media/characters/sykes/foot-right.svg"
  37147. }
  37148. },
  37149. maw: {
  37150. height: math.unit(1.93, "feet"),
  37151. name: "Maw",
  37152. image: {
  37153. source: "./media/characters/sykes/maw.svg"
  37154. }
  37155. },
  37156. teeth: {
  37157. height: math.unit(0.51, "feet"),
  37158. name: "Teeth",
  37159. image: {
  37160. source: "./media/characters/sykes/teeth.svg"
  37161. }
  37162. },
  37163. tongue: {
  37164. height: math.unit(2.13, "feet"),
  37165. name: "Tongue",
  37166. image: {
  37167. source: "./media/characters/sykes/tongue.svg"
  37168. }
  37169. },
  37170. uvula: {
  37171. height: math.unit(0.16, "feet"),
  37172. name: "Uvula",
  37173. image: {
  37174. source: "./media/characters/sykes/uvula.svg"
  37175. }
  37176. },
  37177. collar: {
  37178. height: math.unit(0.287, "feet"),
  37179. name: "Collar",
  37180. image: {
  37181. source: "./media/characters/sykes/collar.svg"
  37182. }
  37183. },
  37184. tail: {
  37185. height: math.unit(3.8, "feet"),
  37186. name: "Tail",
  37187. image: {
  37188. source: "./media/characters/sykes/tail.svg"
  37189. }
  37190. },
  37191. },
  37192. [
  37193. {
  37194. name: "Shrunken",
  37195. height: math.unit(5, "inches")
  37196. },
  37197. {
  37198. name: "Normal",
  37199. height: math.unit(6 + 4 / 12, "feet"),
  37200. default: true
  37201. },
  37202. {
  37203. name: "Big",
  37204. height: math.unit(15, "feet")
  37205. },
  37206. ]
  37207. ))
  37208. characterMakers.push(() => makeCharacter(
  37209. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37210. {
  37211. front: {
  37212. height: math.unit(5 + 8/12, "feet"),
  37213. weight: math.unit(190, "lb"),
  37214. name: "Front",
  37215. image: {
  37216. source: "./media/characters/oven-otter/front.svg",
  37217. extra: 1809/1740,
  37218. bottom: 181/1990
  37219. }
  37220. },
  37221. back: {
  37222. height: math.unit(5 + 8/12, "feet"),
  37223. weight: math.unit(190, "lb"),
  37224. name: "Back",
  37225. image: {
  37226. source: "./media/characters/oven-otter/back.svg",
  37227. extra: 1709/1635,
  37228. bottom: 118/1827
  37229. }
  37230. },
  37231. hand: {
  37232. height: math.unit(1.07, "feet"),
  37233. name: "Hand",
  37234. image: {
  37235. source: "./media/characters/oven-otter/hand.svg"
  37236. }
  37237. },
  37238. beans: {
  37239. height: math.unit(1.74, "feet"),
  37240. name: "Beans",
  37241. image: {
  37242. source: "./media/characters/oven-otter/beans.svg"
  37243. }
  37244. },
  37245. },
  37246. [
  37247. {
  37248. name: "Micro",
  37249. height: math.unit(0.5, "inches")
  37250. },
  37251. {
  37252. name: "Normal",
  37253. height: math.unit(5 + 8/12, "feet"),
  37254. default: true
  37255. },
  37256. {
  37257. name: "Macro",
  37258. height: math.unit(250, "feet")
  37259. },
  37260. {
  37261. name: "Really High",
  37262. height: math.unit(420, "feet")
  37263. },
  37264. ]
  37265. ))
  37266. characterMakers.push(() => makeCharacter(
  37267. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37268. {
  37269. front: {
  37270. height: math.unit(5, "meters"),
  37271. weight: math.unit(292000000000000, "kg"),
  37272. name: "Front",
  37273. image: {
  37274. source: "./media/characters/devourer/front.svg",
  37275. extra: 1800/1733,
  37276. bottom: 211/2011
  37277. }
  37278. },
  37279. maw: {
  37280. height: math.unit(1.1, "meter"),
  37281. name: "Maw",
  37282. image: {
  37283. source: "./media/characters/devourer/maw.svg"
  37284. }
  37285. },
  37286. },
  37287. [
  37288. {
  37289. name: "Small",
  37290. height: math.unit(3, "meters")
  37291. },
  37292. {
  37293. name: "Large",
  37294. height: math.unit(5, "meters"),
  37295. default: true
  37296. },
  37297. ]
  37298. ))
  37299. characterMakers.push(() => makeCharacter(
  37300. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37301. {
  37302. front: {
  37303. height: math.unit(6, "feet"),
  37304. weight: math.unit(400, "lb"),
  37305. name: "Front",
  37306. image: {
  37307. source: "./media/characters/ellarby/front.svg",
  37308. extra: 1909/1763,
  37309. bottom: 80/1989
  37310. }
  37311. },
  37312. back: {
  37313. height: math.unit(6, "feet"),
  37314. weight: math.unit(400, "lb"),
  37315. name: "Back",
  37316. image: {
  37317. source: "./media/characters/ellarby/back.svg",
  37318. extra: 1914/1784,
  37319. bottom: 172/2086
  37320. }
  37321. },
  37322. },
  37323. [
  37324. {
  37325. name: "Mischief",
  37326. height: math.unit(18, "inches")
  37327. },
  37328. {
  37329. name: "Trouble",
  37330. height: math.unit(12, "feet")
  37331. },
  37332. {
  37333. name: "Havoc",
  37334. height: math.unit(200, "feet"),
  37335. default: true
  37336. },
  37337. {
  37338. name: "Pandemonium",
  37339. height: math.unit(1, "mile")
  37340. },
  37341. {
  37342. name: "Catastrophe",
  37343. height: math.unit(100, "miles")
  37344. },
  37345. ]
  37346. ))
  37347. characterMakers.push(() => makeCharacter(
  37348. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37349. {
  37350. front: {
  37351. height: math.unit(4.7, "meters"),
  37352. weight: math.unit(6500, "kg"),
  37353. name: "Front",
  37354. image: {
  37355. source: "./media/characters/vex/front.svg",
  37356. extra: 1288/1140,
  37357. bottom: 100/1388
  37358. }
  37359. },
  37360. },
  37361. [
  37362. {
  37363. name: "Normal",
  37364. height: math.unit(4.7, "meters"),
  37365. default: true
  37366. },
  37367. ]
  37368. ))
  37369. characterMakers.push(() => makeCharacter(
  37370. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37371. {
  37372. normal: {
  37373. height: math.unit(6, "feet"),
  37374. weight: math.unit(350, "lb"),
  37375. name: "Normal",
  37376. image: {
  37377. source: "./media/characters/teshy/normal.svg",
  37378. extra: 1795/1735,
  37379. bottom: 16/1811
  37380. }
  37381. },
  37382. monsterFront: {
  37383. height: math.unit(12, "feet"),
  37384. weight: math.unit(4700, "lb"),
  37385. name: "Monster (Front)",
  37386. image: {
  37387. source: "./media/characters/teshy/monster-front.svg",
  37388. extra: 2042/2034,
  37389. bottom: 128/2170
  37390. }
  37391. },
  37392. monsterSide: {
  37393. height: math.unit(12, "feet"),
  37394. weight: math.unit(4700, "lb"),
  37395. name: "Monster (Side)",
  37396. image: {
  37397. source: "./media/characters/teshy/monster-side.svg",
  37398. extra: 2067/2056,
  37399. bottom: 70/2137
  37400. }
  37401. },
  37402. monsterBack: {
  37403. height: math.unit(12, "feet"),
  37404. weight: math.unit(4700, "lb"),
  37405. name: "Monster (Back)",
  37406. image: {
  37407. source: "./media/characters/teshy/monster-back.svg",
  37408. extra: 1921/1914,
  37409. bottom: 171/2092
  37410. }
  37411. },
  37412. },
  37413. [
  37414. {
  37415. name: "Normal",
  37416. height: math.unit(6, "feet"),
  37417. default: true
  37418. },
  37419. ]
  37420. ))
  37421. characterMakers.push(() => makeCharacter(
  37422. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37423. {
  37424. front: {
  37425. height: math.unit(6, "feet"),
  37426. name: "Front",
  37427. image: {
  37428. source: "./media/characters/ramey/front.svg",
  37429. extra: 790/787,
  37430. bottom: 27/817
  37431. }
  37432. },
  37433. },
  37434. [
  37435. {
  37436. name: "Normal",
  37437. height: math.unit(6, "feet"),
  37438. default: true
  37439. },
  37440. ]
  37441. ))
  37442. characterMakers.push(() => makeCharacter(
  37443. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37444. {
  37445. front: {
  37446. height: math.unit(5 + 5/12, "feet"),
  37447. weight: math.unit(120, "lb"),
  37448. name: "Front",
  37449. image: {
  37450. source: "./media/characters/phirae/front.svg",
  37451. extra: 2491/2436,
  37452. bottom: 38/2529
  37453. }
  37454. },
  37455. },
  37456. [
  37457. {
  37458. name: "Normal",
  37459. height: math.unit(5 + 5/12, "feet"),
  37460. default: true
  37461. },
  37462. ]
  37463. ))
  37464. characterMakers.push(() => makeCharacter(
  37465. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37466. {
  37467. front: {
  37468. height: math.unit(5 + 3/12, "feet"),
  37469. name: "Front",
  37470. image: {
  37471. source: "./media/characters/stagglas/front.svg",
  37472. extra: 962/882,
  37473. bottom: 53/1015
  37474. }
  37475. },
  37476. feral: {
  37477. height: math.unit(335, "cm"),
  37478. name: "Feral",
  37479. image: {
  37480. source: "./media/characters/stagglas/feral.svg",
  37481. extra: 1732/1090,
  37482. bottom: 48/1780
  37483. }
  37484. },
  37485. },
  37486. [
  37487. {
  37488. name: "Normal",
  37489. height: math.unit(5 + 3/12, "feet"),
  37490. default: true
  37491. },
  37492. ]
  37493. ))
  37494. characterMakers.push(() => makeCharacter(
  37495. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37496. {
  37497. front: {
  37498. height: math.unit(5 + 4/12, "feet"),
  37499. weight: math.unit(145, "lb"),
  37500. name: "Front",
  37501. image: {
  37502. source: "./media/characters/starra/front.svg",
  37503. extra: 1790/1691,
  37504. bottom: 91/1881
  37505. }
  37506. },
  37507. },
  37508. [
  37509. {
  37510. name: "Normal",
  37511. height: math.unit(5 + 4/12, "feet"),
  37512. default: true
  37513. },
  37514. ]
  37515. ))
  37516. characterMakers.push(() => makeCharacter(
  37517. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37518. {
  37519. front: {
  37520. height: math.unit(3.5, "meters"),
  37521. name: "Front",
  37522. image: {
  37523. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37524. extra: 1248/972,
  37525. bottom: 38/1286
  37526. }
  37527. },
  37528. },
  37529. [
  37530. {
  37531. name: "Normal",
  37532. height: math.unit(3.5, "meters"),
  37533. default: true
  37534. },
  37535. ]
  37536. ))
  37537. characterMakers.push(() => makeCharacter(
  37538. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37539. {
  37540. side: {
  37541. height: math.unit(8 + 2/12, "feet"),
  37542. weight: math.unit(1240, "lb"),
  37543. name: "Side",
  37544. image: {
  37545. source: "./media/characters/mika-valentine/side.svg",
  37546. extra: 2670/2501,
  37547. bottom: 250/2920
  37548. }
  37549. },
  37550. },
  37551. [
  37552. {
  37553. name: "Normal",
  37554. height: math.unit(8 + 2/12, "feet"),
  37555. default: true
  37556. },
  37557. ]
  37558. ))
  37559. characterMakers.push(() => makeCharacter(
  37560. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37561. {
  37562. front: {
  37563. height: math.unit(7 + 2/12, "feet"),
  37564. name: "Front",
  37565. image: {
  37566. source: "./media/characters/xoltol/front.svg",
  37567. extra: 2212/2124,
  37568. bottom: 84/2296
  37569. }
  37570. },
  37571. side: {
  37572. height: math.unit(7 + 2/12, "feet"),
  37573. name: "Side",
  37574. image: {
  37575. source: "./media/characters/xoltol/side.svg",
  37576. extra: 2273/2197,
  37577. bottom: 26/2299
  37578. }
  37579. },
  37580. hand: {
  37581. height: math.unit(2.5, "feet"),
  37582. name: "Hand",
  37583. image: {
  37584. source: "./media/characters/xoltol/hand.svg"
  37585. }
  37586. },
  37587. },
  37588. [
  37589. {
  37590. name: "Small-ish",
  37591. height: math.unit(5 + 11/12, "feet")
  37592. },
  37593. {
  37594. name: "Normal",
  37595. height: math.unit(7 + 2/12, "feet")
  37596. },
  37597. {
  37598. name: "\"Macro\"",
  37599. height: math.unit(14 + 9/12, "feet"),
  37600. default: true
  37601. },
  37602. {
  37603. name: "Alternate Height",
  37604. height: math.unit(20, "feet")
  37605. },
  37606. {
  37607. name: "Actually Macro",
  37608. height: math.unit(100, "feet")
  37609. },
  37610. ]
  37611. ))
  37612. characterMakers.push(() => makeCharacter(
  37613. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37614. {
  37615. front: {
  37616. height: math.unit(5 + 2/12, "feet"),
  37617. weight: math.unit(75, "kg"),
  37618. name: "Front",
  37619. image: {
  37620. source: "./media/characters/kotetsu-redwood/front.svg",
  37621. extra: 1053/942,
  37622. bottom: 60/1113
  37623. }
  37624. },
  37625. },
  37626. [
  37627. {
  37628. name: "Normal",
  37629. height: math.unit(5 + 2/12, "feet"),
  37630. default: true
  37631. },
  37632. ]
  37633. ))
  37634. characterMakers.push(() => makeCharacter(
  37635. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37636. {
  37637. front: {
  37638. height: math.unit(2.4, "meters"),
  37639. weight: math.unit(125, "kg"),
  37640. name: "Front",
  37641. image: {
  37642. source: "./media/characters/lilith/front.svg",
  37643. extra: 1590/1513,
  37644. bottom: 203/1793
  37645. }
  37646. },
  37647. },
  37648. [
  37649. {
  37650. name: "Humanoid",
  37651. height: math.unit(2.4, "meters")
  37652. },
  37653. {
  37654. name: "Normal",
  37655. height: math.unit(6, "meters"),
  37656. default: true
  37657. },
  37658. {
  37659. name: "Largest",
  37660. height: math.unit(55, "meters")
  37661. },
  37662. ]
  37663. ))
  37664. characterMakers.push(() => makeCharacter(
  37665. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37666. {
  37667. front: {
  37668. height: math.unit(8 + 4/12, "feet"),
  37669. weight: math.unit(535, "lb"),
  37670. name: "Front",
  37671. image: {
  37672. source: "./media/characters/beh'kah-bolger/front.svg",
  37673. extra: 1660/1603,
  37674. bottom: 37/1697
  37675. }
  37676. },
  37677. },
  37678. [
  37679. {
  37680. name: "Normal",
  37681. height: math.unit(8 + 4/12, "feet"),
  37682. default: true
  37683. },
  37684. {
  37685. name: "Kaiju",
  37686. height: math.unit(250, "feet")
  37687. },
  37688. {
  37689. name: "Still Growing",
  37690. height: math.unit(10, "miles")
  37691. },
  37692. {
  37693. name: "Continental",
  37694. height: math.unit(5000, "miles")
  37695. },
  37696. {
  37697. name: "Final Form",
  37698. height: math.unit(2500000, "miles")
  37699. },
  37700. ]
  37701. ))
  37702. characterMakers.push(() => makeCharacter(
  37703. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37704. {
  37705. front: {
  37706. height: math.unit(7 + 2/12, "feet"),
  37707. weight: math.unit(230, "kg"),
  37708. name: "Front",
  37709. image: {
  37710. source: "./media/characters/tatyana-milewska/front.svg",
  37711. extra: 1199/1150,
  37712. bottom: 86/1285
  37713. }
  37714. },
  37715. },
  37716. [
  37717. {
  37718. name: "Normal",
  37719. height: math.unit(7 + 2/12, "feet"),
  37720. default: true
  37721. },
  37722. {
  37723. name: "Big",
  37724. height: math.unit(12, "feet")
  37725. },
  37726. {
  37727. name: "Minimacro",
  37728. height: math.unit(20, "feet")
  37729. },
  37730. {
  37731. name: "Macro",
  37732. height: math.unit(120, "feet")
  37733. },
  37734. ]
  37735. ))
  37736. characterMakers.push(() => makeCharacter(
  37737. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37738. {
  37739. front: {
  37740. height: math.unit(7 + 8/12, "feet"),
  37741. weight: math.unit(152, "kg"),
  37742. name: "Front",
  37743. image: {
  37744. source: "./media/characters/helen-arri/front.svg",
  37745. extra: 440/423,
  37746. bottom: 14/454
  37747. }
  37748. },
  37749. back: {
  37750. height: math.unit(7 + 8/12, "feet"),
  37751. weight: math.unit(152, "kg"),
  37752. name: "Back",
  37753. image: {
  37754. source: "./media/characters/helen-arri/back.svg",
  37755. extra: 443/426,
  37756. bottom: 8/451
  37757. }
  37758. },
  37759. },
  37760. [
  37761. {
  37762. name: "Normal",
  37763. height: math.unit(7 + 8/12, "feet"),
  37764. default: true
  37765. },
  37766. {
  37767. name: "Big",
  37768. height: math.unit(14, "feet")
  37769. },
  37770. {
  37771. name: "Minimacro",
  37772. height: math.unit(24, "feet")
  37773. },
  37774. {
  37775. name: "Macro",
  37776. height: math.unit(140, "feet")
  37777. },
  37778. ]
  37779. ))
  37780. characterMakers.push(() => makeCharacter(
  37781. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37782. {
  37783. front: {
  37784. height: math.unit(6, "meters"),
  37785. name: "Front",
  37786. image: {
  37787. source: "./media/characters/ehanu-rehu/front.svg",
  37788. extra: 1800/1800,
  37789. bottom: 59/1859
  37790. }
  37791. },
  37792. },
  37793. [
  37794. {
  37795. name: "Normal",
  37796. height: math.unit(6, "meters"),
  37797. default: true
  37798. },
  37799. ]
  37800. ))
  37801. characterMakers.push(() => makeCharacter(
  37802. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37803. {
  37804. front: {
  37805. height: math.unit(7 + 3/12, "feet"),
  37806. name: "Front",
  37807. image: {
  37808. source: "./media/characters/renholder/front.svg",
  37809. extra: 3096/2960,
  37810. bottom: 250/3346
  37811. }
  37812. },
  37813. },
  37814. [
  37815. {
  37816. name: "Normal Bat",
  37817. height: math.unit(7 + 3/12, "feet"),
  37818. default: true
  37819. },
  37820. {
  37821. name: "Slightly Tall Bat",
  37822. height: math.unit(100, "feet")
  37823. },
  37824. {
  37825. name: "Big Bat",
  37826. height: math.unit(1000, "feet")
  37827. },
  37828. {
  37829. name: "City-Sized Bat",
  37830. height: math.unit(200000, "feet")
  37831. },
  37832. {
  37833. name: "Bigger Bat",
  37834. height: math.unit(10000, "miles")
  37835. },
  37836. {
  37837. name: "Solar Sized Bat",
  37838. height: math.unit(100, "AU")
  37839. },
  37840. {
  37841. name: "Galactic Bat",
  37842. height: math.unit(200000, "lightyears")
  37843. },
  37844. {
  37845. name: "Universally Known Bat",
  37846. height: math.unit(1, "universe")
  37847. },
  37848. ]
  37849. ))
  37850. characterMakers.push(() => makeCharacter(
  37851. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37852. {
  37853. front: {
  37854. height: math.unit(6 + 11/12, "feet"),
  37855. weight: math.unit(250, "lb"),
  37856. name: "Front",
  37857. image: {
  37858. source: "./media/characters/cookiecat/front.svg",
  37859. extra: 893/827,
  37860. bottom: 14/907
  37861. }
  37862. },
  37863. },
  37864. [
  37865. {
  37866. name: "Micro",
  37867. height: math.unit(3, "inches")
  37868. },
  37869. {
  37870. name: "Normal",
  37871. height: math.unit(6 + 11/12, "feet"),
  37872. default: true
  37873. },
  37874. {
  37875. name: "Macro",
  37876. height: math.unit(100, "feet")
  37877. },
  37878. {
  37879. name: "Macro+",
  37880. height: math.unit(404, "feet")
  37881. },
  37882. {
  37883. name: "Megamacro",
  37884. height: math.unit(165, "miles")
  37885. },
  37886. {
  37887. name: "Planetary",
  37888. height: math.unit(4600, "miles")
  37889. },
  37890. ]
  37891. ))
  37892. characterMakers.push(() => makeCharacter(
  37893. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37894. {
  37895. front: {
  37896. height: math.unit(10 + 3/12, "feet"),
  37897. weight: math.unit(1500, "lb"),
  37898. name: "Front",
  37899. image: {
  37900. source: "./media/characters/tux-kusanagi/front.svg",
  37901. extra: 944/840,
  37902. bottom: 39/983
  37903. }
  37904. },
  37905. back: {
  37906. height: math.unit(10 + 3/12, "feet"),
  37907. weight: math.unit(1500, "lb"),
  37908. name: "Back",
  37909. image: {
  37910. source: "./media/characters/tux-kusanagi/back.svg",
  37911. extra: 941/842,
  37912. bottom: 28/969
  37913. }
  37914. },
  37915. rump: {
  37916. height: math.unit(5.25, "feet"),
  37917. name: "Rump",
  37918. image: {
  37919. source: "./media/characters/tux-kusanagi/rump.svg"
  37920. }
  37921. },
  37922. beak: {
  37923. height: math.unit(1.54, "feet"),
  37924. name: "Beak",
  37925. image: {
  37926. source: "./media/characters/tux-kusanagi/beak.svg"
  37927. }
  37928. },
  37929. },
  37930. [
  37931. {
  37932. name: "Normal",
  37933. height: math.unit(10 + 3/12, "feet"),
  37934. default: true
  37935. },
  37936. ]
  37937. ))
  37938. characterMakers.push(() => makeCharacter(
  37939. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37940. {
  37941. front: {
  37942. height: math.unit(58, "feet"),
  37943. weight: math.unit(200, "tons"),
  37944. name: "Front",
  37945. image: {
  37946. source: "./media/characters/uzarmazari/front.svg",
  37947. extra: 1575/1455,
  37948. bottom: 152/1727
  37949. }
  37950. },
  37951. back: {
  37952. height: math.unit(58, "feet"),
  37953. weight: math.unit(200, "tons"),
  37954. name: "Back",
  37955. image: {
  37956. source: "./media/characters/uzarmazari/back.svg",
  37957. extra: 1585/1510,
  37958. bottom: 157/1742
  37959. }
  37960. },
  37961. head: {
  37962. height: math.unit(26, "feet"),
  37963. name: "Head",
  37964. image: {
  37965. source: "./media/characters/uzarmazari/head.svg"
  37966. }
  37967. },
  37968. },
  37969. [
  37970. {
  37971. name: "Normal",
  37972. height: math.unit(58, "feet"),
  37973. default: true
  37974. },
  37975. ]
  37976. ))
  37977. characterMakers.push(() => makeCharacter(
  37978. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37979. {
  37980. side: {
  37981. height: math.unit(15, "feet"),
  37982. name: "Side",
  37983. image: {
  37984. source: "./media/characters/akitu/side.svg",
  37985. extra: 1421/1321,
  37986. bottom: 157/1578
  37987. }
  37988. },
  37989. front: {
  37990. height: math.unit(15, "feet"),
  37991. name: "Front",
  37992. image: {
  37993. source: "./media/characters/akitu/front.svg",
  37994. extra: 1435/1326,
  37995. bottom: 232/1667
  37996. }
  37997. },
  37998. },
  37999. [
  38000. {
  38001. name: "Normal",
  38002. height: math.unit(15, "feet"),
  38003. default: true
  38004. },
  38005. ]
  38006. ))
  38007. characterMakers.push(() => makeCharacter(
  38008. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38009. {
  38010. front: {
  38011. height: math.unit(10 + 8/12, "feet"),
  38012. name: "Front",
  38013. image: {
  38014. source: "./media/characters/azalie-croixland/front.svg",
  38015. extra: 1972/1856,
  38016. bottom: 31/2003
  38017. }
  38018. },
  38019. },
  38020. [
  38021. {
  38022. name: "Original Height",
  38023. height: math.unit(5 + 4/12, "feet")
  38024. },
  38025. {
  38026. name: "Normal Height",
  38027. height: math.unit(10 + 8/12, "feet"),
  38028. default: true
  38029. },
  38030. ]
  38031. ))
  38032. characterMakers.push(() => makeCharacter(
  38033. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38034. {
  38035. side: {
  38036. height: math.unit(7 + 1/12, "feet"),
  38037. weight: math.unit(245, "lb"),
  38038. name: "Side",
  38039. image: {
  38040. source: "./media/characters/kavus-kazian/side.svg",
  38041. extra: 349/342,
  38042. bottom: 15/364
  38043. }
  38044. },
  38045. },
  38046. [
  38047. {
  38048. name: "Normal",
  38049. height: math.unit(7 + 1/12, "feet"),
  38050. default: true
  38051. },
  38052. ]
  38053. ))
  38054. characterMakers.push(() => makeCharacter(
  38055. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38056. {
  38057. normalFront: {
  38058. height: math.unit(5 + 11/12, "feet"),
  38059. name: "Front",
  38060. image: {
  38061. source: "./media/characters/moonlight-rose/normal-front.svg",
  38062. extra: 1980/1825,
  38063. bottom: 18/1998
  38064. },
  38065. form: "normal",
  38066. default: true
  38067. },
  38068. normalBack: {
  38069. height: math.unit(5 + 11/12, "feet"),
  38070. name: "Back",
  38071. image: {
  38072. source: "./media/characters/moonlight-rose/normal-back.svg",
  38073. extra: 2010/1839,
  38074. bottom: 10/2020
  38075. },
  38076. form: "normal"
  38077. },
  38078. demonFront: {
  38079. height: math.unit(1.5, "earths"),
  38080. name: "Front",
  38081. image: {
  38082. source: "./media/characters/moonlight-rose/demon.svg",
  38083. extra: 1400/1294,
  38084. bottom: 45/1445
  38085. },
  38086. form: "demon",
  38087. default: true
  38088. },
  38089. terraFront: {
  38090. height: math.unit(1.5, "earths"),
  38091. name: "Front",
  38092. image: {
  38093. source: "./media/characters/moonlight-rose/terra.svg"
  38094. },
  38095. form: "terra",
  38096. default: true
  38097. },
  38098. jupiterFront: {
  38099. height: math.unit(69911*2, "km"),
  38100. name: "Front",
  38101. image: {
  38102. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38103. extra: 1367/1286,
  38104. bottom: 55/1422
  38105. },
  38106. form: "jupiter",
  38107. default: true
  38108. },
  38109. neptuneFront: {
  38110. height: math.unit(24622*2, "feet"),
  38111. name: "Front",
  38112. image: {
  38113. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38114. extra: 1851/1712,
  38115. bottom: 0/1851
  38116. },
  38117. form: "neptune",
  38118. default: true
  38119. },
  38120. },
  38121. [
  38122. {
  38123. name: "\"Natural\" Height",
  38124. height: math.unit(5 + 11/12, "feet"),
  38125. form: "normal"
  38126. },
  38127. {
  38128. name: "Smallest comfortable size",
  38129. height: math.unit(40, "meters"),
  38130. form: "normal"
  38131. },
  38132. {
  38133. name: "Common size",
  38134. height: math.unit(50, "km"),
  38135. form: "normal",
  38136. default: true
  38137. },
  38138. {
  38139. name: "Normal",
  38140. height: math.unit(1.5, "earths"),
  38141. form: "demon",
  38142. default: true
  38143. },
  38144. {
  38145. name: "Universal",
  38146. height: math.unit(15, "universes"),
  38147. form: "demon"
  38148. },
  38149. {
  38150. name: "Earth",
  38151. height: math.unit(1.5, "earths"),
  38152. form: "terra",
  38153. default: true
  38154. },
  38155. {
  38156. name: "Super Earth",
  38157. height: math.unit(67.5, "earths"),
  38158. form: "terra"
  38159. },
  38160. {
  38161. name: "Doesn't fit in a solar system...",
  38162. height: math.unit(1, "galaxy"),
  38163. form: "terra"
  38164. },
  38165. {
  38166. name: "Saturn",
  38167. height: math.unit(58232*2, "km"),
  38168. form: "jupiter"
  38169. },
  38170. {
  38171. name: "Jupiter",
  38172. height: math.unit(69911*2, "km"),
  38173. form: "jupiter",
  38174. default: true
  38175. },
  38176. {
  38177. name: "HD 100546 b",
  38178. height: math.unit(482938, "km"),
  38179. form: "jupiter"
  38180. },
  38181. {
  38182. name: "Enceladus",
  38183. height: math.unit(513*2, "km"),
  38184. form: "neptune"
  38185. },
  38186. {
  38187. name: "Europe",
  38188. height: math.unit(1560*2, "km"),
  38189. form: "neptune"
  38190. },
  38191. {
  38192. name: "Neptune",
  38193. height: math.unit(24622*2, "km"),
  38194. form: "neptune",
  38195. default: true
  38196. },
  38197. {
  38198. name: "CoRoT-9b",
  38199. height: math.unit(75067*2, "km"),
  38200. form: "neptune"
  38201. },
  38202. ],
  38203. {
  38204. "normal": {
  38205. name: "Normal",
  38206. default: true
  38207. },
  38208. "demon": {
  38209. name: "Demon"
  38210. },
  38211. "terra": {
  38212. name: "Terra"
  38213. },
  38214. "jupiter": {
  38215. name: "Jupiter"
  38216. },
  38217. "neptune": {
  38218. name: "Neptune"
  38219. }
  38220. }
  38221. ))
  38222. characterMakers.push(() => makeCharacter(
  38223. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38224. {
  38225. front: {
  38226. height: math.unit(16, "feet"),
  38227. weight: math.unit(610, "kg"),
  38228. name: "Front",
  38229. image: {
  38230. source: "./media/characters/huckle/front.svg",
  38231. extra: 1731/1625,
  38232. bottom: 33/1764
  38233. }
  38234. },
  38235. back: {
  38236. height: math.unit(16, "feet"),
  38237. weight: math.unit(610, "kg"),
  38238. name: "Back",
  38239. image: {
  38240. source: "./media/characters/huckle/back.svg",
  38241. extra: 1738/1651,
  38242. bottom: 37/1775
  38243. }
  38244. },
  38245. laughing: {
  38246. height: math.unit(3.75, "feet"),
  38247. name: "Laughing",
  38248. image: {
  38249. source: "./media/characters/huckle/laughing.svg"
  38250. }
  38251. },
  38252. angry: {
  38253. height: math.unit(4.15, "feet"),
  38254. name: "Angry",
  38255. image: {
  38256. source: "./media/characters/huckle/angry.svg"
  38257. }
  38258. },
  38259. },
  38260. [
  38261. {
  38262. name: "Normal",
  38263. height: math.unit(16, "feet"),
  38264. default: true
  38265. },
  38266. {
  38267. name: "Mini Macro",
  38268. height: math.unit(463, "feet")
  38269. },
  38270. {
  38271. name: "Macro",
  38272. height: math.unit(1680, "meters")
  38273. },
  38274. {
  38275. name: "Mega Macro",
  38276. height: math.unit(175, "km")
  38277. },
  38278. {
  38279. name: "Terra Macro",
  38280. height: math.unit(32, "gigameters")
  38281. },
  38282. {
  38283. name: "Multiverse+",
  38284. height: math.unit(2.56e23, "yottameters")
  38285. },
  38286. ]
  38287. ))
  38288. characterMakers.push(() => makeCharacter(
  38289. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38290. {
  38291. front: {
  38292. height: math.unit(6 + 9/12, "feet"),
  38293. weight: math.unit(280, "lb"),
  38294. name: "Front",
  38295. image: {
  38296. source: "./media/characters/candy/front.svg",
  38297. extra: 234/217,
  38298. bottom: 11/245
  38299. }
  38300. },
  38301. },
  38302. [
  38303. {
  38304. name: "Really Small",
  38305. height: math.unit(0.1, "nm")
  38306. },
  38307. {
  38308. name: "Micro",
  38309. height: math.unit(2, "inches")
  38310. },
  38311. {
  38312. name: "Normal",
  38313. height: math.unit(6 + 9/12, "feet"),
  38314. default: true
  38315. },
  38316. {
  38317. name: "Small Macro",
  38318. height: math.unit(69, "feet")
  38319. },
  38320. {
  38321. name: "Macro",
  38322. height: math.unit(160, "feet")
  38323. },
  38324. {
  38325. name: "Megamacro",
  38326. height: math.unit(22000, "miles")
  38327. },
  38328. {
  38329. name: "Gigamacro",
  38330. height: math.unit(50000, "miles")
  38331. },
  38332. ]
  38333. ))
  38334. characterMakers.push(() => makeCharacter(
  38335. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38336. {
  38337. front: {
  38338. height: math.unit(4, "feet"),
  38339. weight: math.unit(90, "lb"),
  38340. name: "Front",
  38341. image: {
  38342. source: "./media/characters/joey-mcdonald/front.svg",
  38343. extra: 1059/852,
  38344. bottom: 33/1092
  38345. }
  38346. },
  38347. back: {
  38348. height: math.unit(4, "feet"),
  38349. weight: math.unit(90, "lb"),
  38350. name: "Back",
  38351. image: {
  38352. source: "./media/characters/joey-mcdonald/back.svg",
  38353. extra: 1077/879,
  38354. bottom: 5/1082
  38355. }
  38356. },
  38357. frontKobold: {
  38358. height: math.unit(4, "feet"),
  38359. weight: math.unit(100, "lb"),
  38360. name: "Front-kobold",
  38361. image: {
  38362. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38363. extra: 1480/1367,
  38364. bottom: 0/1480
  38365. }
  38366. },
  38367. backKobold: {
  38368. height: math.unit(4, "feet"),
  38369. weight: math.unit(100, "lb"),
  38370. name: "Back-kobold",
  38371. image: {
  38372. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38373. extra: 1449/1361,
  38374. bottom: 0/1449
  38375. }
  38376. },
  38377. },
  38378. [
  38379. {
  38380. name: "Normal",
  38381. height: math.unit(4, "feet"),
  38382. default: true
  38383. },
  38384. ]
  38385. ))
  38386. characterMakers.push(() => makeCharacter(
  38387. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38388. {
  38389. front: {
  38390. height: math.unit(12 + 6/12, "feet"),
  38391. name: "Front",
  38392. image: {
  38393. source: "./media/characters/kass-lockheed/front.svg",
  38394. extra: 354/343,
  38395. bottom: 9/363
  38396. }
  38397. },
  38398. back: {
  38399. height: math.unit(12 + 6/12, "feet"),
  38400. name: "Back",
  38401. image: {
  38402. source: "./media/characters/kass-lockheed/back.svg",
  38403. extra: 364/352,
  38404. bottom: 3/367
  38405. }
  38406. },
  38407. dick: {
  38408. height: math.unit(3.12, "feet"),
  38409. name: "Dick",
  38410. image: {
  38411. source: "./media/characters/kass-lockheed/dick.svg"
  38412. }
  38413. },
  38414. head: {
  38415. height: math.unit(2.6, "feet"),
  38416. name: "Head",
  38417. image: {
  38418. source: "./media/characters/kass-lockheed/head.svg"
  38419. }
  38420. },
  38421. bleh: {
  38422. height: math.unit(2.85, "feet"),
  38423. name: "Bleh",
  38424. image: {
  38425. source: "./media/characters/kass-lockheed/bleh.svg"
  38426. }
  38427. },
  38428. smug: {
  38429. height: math.unit(2.85, "feet"),
  38430. name: "Smug",
  38431. image: {
  38432. source: "./media/characters/kass-lockheed/smug.svg"
  38433. }
  38434. },
  38435. },
  38436. [
  38437. {
  38438. name: "Normal",
  38439. height: math.unit(12 + 6/12, "feet"),
  38440. default: true
  38441. },
  38442. ]
  38443. ))
  38444. characterMakers.push(() => makeCharacter(
  38445. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38446. {
  38447. front: {
  38448. height: math.unit(6 + 2/12, "feet"),
  38449. name: "Front",
  38450. image: {
  38451. source: "./media/characters/taylor/front.svg",
  38452. extra: 639/495,
  38453. bottom: 12/651
  38454. }
  38455. },
  38456. },
  38457. [
  38458. {
  38459. name: "Normal",
  38460. height: math.unit(6 + 2/12, "feet"),
  38461. default: true
  38462. },
  38463. {
  38464. name: "Big",
  38465. height: math.unit(15, "feet")
  38466. },
  38467. {
  38468. name: "Lorg",
  38469. height: math.unit(80, "feet")
  38470. },
  38471. {
  38472. name: "Too Lorg",
  38473. height: math.unit(120, "feet")
  38474. },
  38475. ]
  38476. ))
  38477. characterMakers.push(() => makeCharacter(
  38478. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38479. {
  38480. front: {
  38481. height: math.unit(15, "feet"),
  38482. name: "Front",
  38483. image: {
  38484. source: "./media/characters/kaizer/front.svg",
  38485. extra: 1612/1436,
  38486. bottom: 43/1655
  38487. }
  38488. },
  38489. },
  38490. [
  38491. {
  38492. name: "Normal",
  38493. height: math.unit(15, "feet"),
  38494. default: true
  38495. },
  38496. ]
  38497. ))
  38498. characterMakers.push(() => makeCharacter(
  38499. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38500. {
  38501. front: {
  38502. height: math.unit(2, "feet"),
  38503. weight: math.unit(30, "lb"),
  38504. name: "Front",
  38505. image: {
  38506. source: "./media/characters/sandy/front.svg",
  38507. extra: 1439/1307,
  38508. bottom: 194/1633
  38509. }
  38510. },
  38511. },
  38512. [
  38513. {
  38514. name: "Normal",
  38515. height: math.unit(2, "feet"),
  38516. default: true
  38517. },
  38518. ]
  38519. ))
  38520. characterMakers.push(() => makeCharacter(
  38521. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38522. {
  38523. front: {
  38524. height: math.unit(3, "feet"),
  38525. name: "Front",
  38526. image: {
  38527. source: "./media/characters/mellvi/front.svg",
  38528. extra: 1831/1630,
  38529. bottom: 58/1889
  38530. }
  38531. },
  38532. },
  38533. [
  38534. {
  38535. name: "Normal",
  38536. height: math.unit(3, "feet"),
  38537. default: true
  38538. },
  38539. ]
  38540. ))
  38541. characterMakers.push(() => makeCharacter(
  38542. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38543. {
  38544. front: {
  38545. height: math.unit(5 + 11/12, "feet"),
  38546. weight: math.unit(200, "lb"),
  38547. name: "Front",
  38548. image: {
  38549. source: "./media/characters/shirou/front.svg",
  38550. extra: 2491/2383,
  38551. bottom: 189/2680
  38552. }
  38553. },
  38554. back: {
  38555. height: math.unit(5 + 11/12, "feet"),
  38556. weight: math.unit(200, "lb"),
  38557. name: "Back",
  38558. image: {
  38559. source: "./media/characters/shirou/back.svg",
  38560. extra: 2554/2450,
  38561. bottom: 76/2630
  38562. }
  38563. },
  38564. },
  38565. [
  38566. {
  38567. name: "Normal",
  38568. height: math.unit(5 + 11/12, "feet"),
  38569. default: true
  38570. },
  38571. ]
  38572. ))
  38573. characterMakers.push(() => makeCharacter(
  38574. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38575. {
  38576. front: {
  38577. height: math.unit(6 + 3/12, "feet"),
  38578. weight: math.unit(177, "lb"),
  38579. name: "Front",
  38580. image: {
  38581. source: "./media/characters/noryu/front.svg",
  38582. extra: 973/885,
  38583. bottom: 10/983
  38584. }
  38585. },
  38586. },
  38587. [
  38588. {
  38589. name: "Normal",
  38590. height: math.unit(6 + 3/12, "feet"),
  38591. default: true
  38592. },
  38593. ]
  38594. ))
  38595. characterMakers.push(() => makeCharacter(
  38596. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38597. {
  38598. front: {
  38599. height: math.unit(5 + 6/12, "feet"),
  38600. weight: math.unit(170, "lb"),
  38601. name: "Front",
  38602. image: {
  38603. source: "./media/characters/mevolas-rubenido/front.svg",
  38604. extra: 2109/1901,
  38605. bottom: 96/2205
  38606. }
  38607. },
  38608. },
  38609. [
  38610. {
  38611. name: "Normal",
  38612. height: math.unit(5 + 6/12, "feet"),
  38613. default: true
  38614. },
  38615. ]
  38616. ))
  38617. characterMakers.push(() => makeCharacter(
  38618. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38619. {
  38620. front: {
  38621. height: math.unit(100, "feet"),
  38622. name: "Front",
  38623. image: {
  38624. source: "./media/characters/dee/front.svg",
  38625. extra: 2153/2036,
  38626. bottom: 59/2212
  38627. }
  38628. },
  38629. back: {
  38630. height: math.unit(100, "feet"),
  38631. name: "Back",
  38632. image: {
  38633. source: "./media/characters/dee/back.svg",
  38634. extra: 2183/2058,
  38635. bottom: 75/2258
  38636. }
  38637. },
  38638. foot: {
  38639. height: math.unit(19.43, "feet"),
  38640. name: "Foot",
  38641. image: {
  38642. source: "./media/characters/dee/foot.svg"
  38643. }
  38644. },
  38645. hoof: {
  38646. height: math.unit(20.6, "feet"),
  38647. name: "Hoof",
  38648. image: {
  38649. source: "./media/characters/dee/hoof.svg"
  38650. }
  38651. },
  38652. },
  38653. [
  38654. {
  38655. name: "Macro",
  38656. height: math.unit(100, "feet"),
  38657. default: true
  38658. },
  38659. ]
  38660. ))
  38661. characterMakers.push(() => makeCharacter(
  38662. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38663. {
  38664. front: {
  38665. height: math.unit(5 + 6/12, "feet"),
  38666. name: "Front",
  38667. image: {
  38668. source: "./media/characters/teh/front.svg",
  38669. extra: 1002/847,
  38670. bottom: 62/1064
  38671. }
  38672. },
  38673. },
  38674. [
  38675. {
  38676. name: "Normal",
  38677. height: math.unit(5 + 6/12, "feet"),
  38678. default: true
  38679. },
  38680. ]
  38681. ))
  38682. characterMakers.push(() => makeCharacter(
  38683. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38684. {
  38685. side: {
  38686. height: math.unit(6 + 1/12, "feet"),
  38687. weight: math.unit(204, "lb"),
  38688. name: "Side",
  38689. image: {
  38690. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38691. extra: 974/775,
  38692. bottom: 169/1143
  38693. }
  38694. },
  38695. sitting: {
  38696. height: math.unit(6 + 2/12, "feet"),
  38697. weight: math.unit(204, "lb"),
  38698. name: "Sitting",
  38699. image: {
  38700. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38701. extra: 1175/964,
  38702. bottom: 378/1553
  38703. }
  38704. },
  38705. },
  38706. [
  38707. {
  38708. name: "Normal",
  38709. height: math.unit(6 + 1/12, "feet"),
  38710. default: true
  38711. },
  38712. ]
  38713. ))
  38714. characterMakers.push(() => makeCharacter(
  38715. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38716. {
  38717. front: {
  38718. height: math.unit(6, "inches"),
  38719. name: "Front",
  38720. image: {
  38721. source: "./media/characters/tululi/front.svg",
  38722. extra: 1997/1876,
  38723. bottom: 20/2017
  38724. }
  38725. },
  38726. },
  38727. [
  38728. {
  38729. name: "Normal",
  38730. height: math.unit(6, "inches"),
  38731. default: true
  38732. },
  38733. ]
  38734. ))
  38735. characterMakers.push(() => makeCharacter(
  38736. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38737. {
  38738. front: {
  38739. height: math.unit(4 + 1/12, "feet"),
  38740. name: "Front",
  38741. image: {
  38742. source: "./media/characters/star/front.svg",
  38743. extra: 1493/1189,
  38744. bottom: 48/1541
  38745. }
  38746. },
  38747. },
  38748. [
  38749. {
  38750. name: "Normal",
  38751. height: math.unit(4 + 1/12, "feet"),
  38752. default: true
  38753. },
  38754. ]
  38755. ))
  38756. characterMakers.push(() => makeCharacter(
  38757. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38758. {
  38759. front: {
  38760. height: math.unit(6 + 3/12, "feet"),
  38761. name: "Front",
  38762. image: {
  38763. source: "./media/characters/comet/front.svg",
  38764. extra: 1681/1462,
  38765. bottom: 26/1707
  38766. }
  38767. },
  38768. },
  38769. [
  38770. {
  38771. name: "Normal",
  38772. height: math.unit(6 + 3/12, "feet"),
  38773. default: true
  38774. },
  38775. ]
  38776. ))
  38777. characterMakers.push(() => makeCharacter(
  38778. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38779. {
  38780. front: {
  38781. height: math.unit(950, "feet"),
  38782. name: "Front",
  38783. image: {
  38784. source: "./media/characters/vortex/front.svg",
  38785. extra: 1497/1434,
  38786. bottom: 56/1553
  38787. }
  38788. },
  38789. maw: {
  38790. height: math.unit(285, "feet"),
  38791. name: "Maw",
  38792. image: {
  38793. source: "./media/characters/vortex/maw.svg"
  38794. }
  38795. },
  38796. },
  38797. [
  38798. {
  38799. name: "Macro",
  38800. height: math.unit(950, "feet"),
  38801. default: true
  38802. },
  38803. ]
  38804. ))
  38805. characterMakers.push(() => makeCharacter(
  38806. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38807. {
  38808. front: {
  38809. height: math.unit(600, "feet"),
  38810. weight: math.unit(0.02, "grams"),
  38811. name: "Front",
  38812. image: {
  38813. source: "./media/characters/doodle/front.svg",
  38814. extra: 1578/1413,
  38815. bottom: 37/1615
  38816. }
  38817. },
  38818. },
  38819. [
  38820. {
  38821. name: "Macro",
  38822. height: math.unit(600, "feet"),
  38823. default: true
  38824. },
  38825. ]
  38826. ))
  38827. characterMakers.push(() => makeCharacter(
  38828. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38829. {
  38830. front: {
  38831. height: math.unit(6 + 6/12, "feet"),
  38832. name: "Front",
  38833. image: {
  38834. source: "./media/characters/jai/front.svg",
  38835. extra: 1645/1534,
  38836. bottom: 115/1760
  38837. }
  38838. },
  38839. },
  38840. [
  38841. {
  38842. name: "Normal",
  38843. height: math.unit(6 + 6/12, "feet"),
  38844. default: true
  38845. },
  38846. ]
  38847. ))
  38848. characterMakers.push(() => makeCharacter(
  38849. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38850. {
  38851. front: {
  38852. height: math.unit(6 + 8/12, "feet"),
  38853. name: "Front",
  38854. image: {
  38855. source: "./media/characters/pixel/front.svg",
  38856. extra: 1900/1735,
  38857. bottom: 63/1963
  38858. }
  38859. },
  38860. },
  38861. [
  38862. {
  38863. name: "Normal",
  38864. height: math.unit(6 + 8/12, "feet"),
  38865. default: true
  38866. },
  38867. ]
  38868. ))
  38869. characterMakers.push(() => makeCharacter(
  38870. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38871. {
  38872. back: {
  38873. height: math.unit(4 + 1/12, "feet"),
  38874. weight: math.unit(75, "lb"),
  38875. name: "Back",
  38876. image: {
  38877. source: "./media/characters/rhett/back.svg",
  38878. extra: 930/878,
  38879. bottom: 25/955
  38880. }
  38881. },
  38882. front: {
  38883. height: math.unit(4 + 1/12, "feet"),
  38884. weight: math.unit(75, "lb"),
  38885. name: "Front",
  38886. image: {
  38887. source: "./media/characters/rhett/front.svg",
  38888. extra: 1682/1586,
  38889. bottom: 92/1774
  38890. }
  38891. },
  38892. },
  38893. [
  38894. {
  38895. name: "Micro",
  38896. height: math.unit(8, "inches")
  38897. },
  38898. {
  38899. name: "Tiny",
  38900. height: math.unit(2, "feet")
  38901. },
  38902. {
  38903. name: "Normal",
  38904. height: math.unit(4 + 1/12, "feet"),
  38905. default: true
  38906. },
  38907. ]
  38908. ))
  38909. characterMakers.push(() => makeCharacter(
  38910. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38911. {
  38912. front: {
  38913. height: math.unit(3 + 3/12, "feet"),
  38914. name: "Front",
  38915. image: {
  38916. source: "./media/characters/penny/front.svg",
  38917. extra: 1406/1311,
  38918. bottom: 26/1432
  38919. }
  38920. },
  38921. },
  38922. [
  38923. {
  38924. name: "Normal",
  38925. height: math.unit(3 + 3/12, "feet"),
  38926. default: true
  38927. },
  38928. ]
  38929. ))
  38930. characterMakers.push(() => makeCharacter(
  38931. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38932. {
  38933. front: {
  38934. height: math.unit(4 + 11/12, "feet"),
  38935. name: "Front",
  38936. image: {
  38937. source: "./media/characters/monty/front.svg",
  38938. extra: 1479/1209,
  38939. bottom: 0/1479
  38940. }
  38941. },
  38942. },
  38943. [
  38944. {
  38945. name: "Normal",
  38946. height: math.unit(4 + 11/12, "feet"),
  38947. default: true
  38948. },
  38949. ]
  38950. ))
  38951. characterMakers.push(() => makeCharacter(
  38952. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38953. {
  38954. front: {
  38955. height: math.unit(8 + 4/12, "feet"),
  38956. name: "Front",
  38957. image: {
  38958. source: "./media/characters/sterling/front.svg",
  38959. extra: 1420/1236,
  38960. bottom: 27/1447
  38961. }
  38962. },
  38963. },
  38964. [
  38965. {
  38966. name: "Normal",
  38967. height: math.unit(8 + 4/12, "feet"),
  38968. default: true
  38969. },
  38970. ]
  38971. ))
  38972. characterMakers.push(() => makeCharacter(
  38973. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38974. {
  38975. front: {
  38976. height: math.unit(15, "feet"),
  38977. name: "Front",
  38978. image: {
  38979. source: "./media/characters/marble/front.svg",
  38980. extra: 973/937,
  38981. bottom: 32/1005
  38982. }
  38983. },
  38984. },
  38985. [
  38986. {
  38987. name: "Normal",
  38988. height: math.unit(15, "feet"),
  38989. default: true
  38990. },
  38991. ]
  38992. ))
  38993. characterMakers.push(() => makeCharacter(
  38994. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38995. {
  38996. front: {
  38997. height: math.unit(3, "inches"),
  38998. name: "Front",
  38999. image: {
  39000. source: "./media/characters/powder/front.svg",
  39001. extra: 1504/1334,
  39002. bottom: 518/2022
  39003. }
  39004. },
  39005. },
  39006. [
  39007. {
  39008. name: "Normal",
  39009. height: math.unit(3, "inches"),
  39010. default: true
  39011. },
  39012. ]
  39013. ))
  39014. characterMakers.push(() => makeCharacter(
  39015. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39016. {
  39017. front: {
  39018. height: math.unit(4 + 5/12, "feet"),
  39019. name: "Front",
  39020. image: {
  39021. source: "./media/characters/joey-raccoon/front.svg",
  39022. extra: 1273/1197,
  39023. bottom: 0/1273
  39024. }
  39025. },
  39026. },
  39027. [
  39028. {
  39029. name: "Normal",
  39030. height: math.unit(4 + 5/12, "feet"),
  39031. default: true
  39032. },
  39033. ]
  39034. ))
  39035. characterMakers.push(() => makeCharacter(
  39036. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39037. {
  39038. front: {
  39039. height: math.unit(8 + 4/12, "feet"),
  39040. name: "Front",
  39041. image: {
  39042. source: "./media/characters/vick/front.svg",
  39043. extra: 2187/2118,
  39044. bottom: 47/2234
  39045. }
  39046. },
  39047. },
  39048. [
  39049. {
  39050. name: "Normal",
  39051. height: math.unit(8 + 4/12, "feet"),
  39052. default: true
  39053. },
  39054. ]
  39055. ))
  39056. characterMakers.push(() => makeCharacter(
  39057. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39058. {
  39059. front: {
  39060. height: math.unit(5 + 5/12, "feet"),
  39061. name: "Front",
  39062. image: {
  39063. source: "./media/characters/mitsy/front.svg",
  39064. extra: 1842/1695,
  39065. bottom: 0/1842
  39066. }
  39067. },
  39068. },
  39069. [
  39070. {
  39071. name: "Normal",
  39072. height: math.unit(5 + 5/12, "feet"),
  39073. default: true
  39074. },
  39075. ]
  39076. ))
  39077. characterMakers.push(() => makeCharacter(
  39078. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39079. {
  39080. front: {
  39081. height: math.unit(6 + 3/12, "feet"),
  39082. name: "Front",
  39083. image: {
  39084. source: "./media/characters/silvy/front.svg",
  39085. extra: 1995/1836,
  39086. bottom: 225/2220
  39087. }
  39088. },
  39089. },
  39090. [
  39091. {
  39092. name: "Normal",
  39093. height: math.unit(6 + 3/12, "feet"),
  39094. default: true
  39095. },
  39096. ]
  39097. ))
  39098. characterMakers.push(() => makeCharacter(
  39099. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39100. {
  39101. front: {
  39102. height: math.unit(3 + 8/12, "feet"),
  39103. name: "Front",
  39104. image: {
  39105. source: "./media/characters/rodney/front.svg",
  39106. extra: 1956/1747,
  39107. bottom: 31/1987
  39108. }
  39109. },
  39110. frontDressed: {
  39111. height: math.unit(2.9, "feet"),
  39112. name: "Front (Dressed)",
  39113. image: {
  39114. source: "./media/characters/rodney/front-dressed.svg",
  39115. extra: 1382/1241,
  39116. bottom: 385/1767
  39117. }
  39118. },
  39119. },
  39120. [
  39121. {
  39122. name: "Normal",
  39123. height: math.unit(3 + 8/12, "feet"),
  39124. default: true
  39125. },
  39126. ]
  39127. ))
  39128. characterMakers.push(() => makeCharacter(
  39129. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39130. {
  39131. front: {
  39132. height: math.unit(5 + 9/12, "feet"),
  39133. weight: math.unit(194, "lbs"),
  39134. name: "Front",
  39135. image: {
  39136. source: "./media/characters/zakail-sudekai/front.svg",
  39137. extra: 2696/2533,
  39138. bottom: 248/2944
  39139. }
  39140. },
  39141. maw: {
  39142. height: math.unit(1.35, "feet"),
  39143. name: "Maw",
  39144. image: {
  39145. source: "./media/characters/zakail-sudekai/maw.svg"
  39146. }
  39147. },
  39148. },
  39149. [
  39150. {
  39151. name: "Normal",
  39152. height: math.unit(5 + 9/12, "feet"),
  39153. default: true
  39154. },
  39155. ]
  39156. ))
  39157. characterMakers.push(() => makeCharacter(
  39158. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39159. {
  39160. front: {
  39161. height: math.unit(8 + 4/12, "feet"),
  39162. weight: math.unit(1200, "lb"),
  39163. name: "Front",
  39164. image: {
  39165. source: "./media/characters/eleanor/front.svg",
  39166. extra: 1226/1192,
  39167. bottom: 52/1278
  39168. }
  39169. },
  39170. back: {
  39171. height: math.unit(8 + 4/12, "feet"),
  39172. weight: math.unit(1200, "lb"),
  39173. name: "Back",
  39174. image: {
  39175. source: "./media/characters/eleanor/back.svg",
  39176. extra: 1242/1184,
  39177. bottom: 60/1302
  39178. }
  39179. },
  39180. head: {
  39181. height: math.unit(2.62, "feet"),
  39182. name: "Head",
  39183. image: {
  39184. source: "./media/characters/eleanor/head.svg"
  39185. }
  39186. },
  39187. },
  39188. [
  39189. {
  39190. name: "Normal",
  39191. height: math.unit(8 + 4/12, "feet"),
  39192. default: true
  39193. },
  39194. ]
  39195. ))
  39196. characterMakers.push(() => makeCharacter(
  39197. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39198. {
  39199. front: {
  39200. height: math.unit(8 + 4/12, "feet"),
  39201. weight: math.unit(750, "lb"),
  39202. name: "Front",
  39203. image: {
  39204. source: "./media/characters/tanya/front.svg",
  39205. extra: 1749/1615,
  39206. bottom: 33/1782
  39207. }
  39208. },
  39209. },
  39210. [
  39211. {
  39212. name: "Normal",
  39213. height: math.unit(8 + 4/12, "feet"),
  39214. default: true
  39215. },
  39216. ]
  39217. ))
  39218. characterMakers.push(() => makeCharacter(
  39219. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39220. {
  39221. front: {
  39222. height: math.unit(5, "feet"),
  39223. weight: math.unit(225, "lb"),
  39224. name: "Front",
  39225. image: {
  39226. source: "./media/characters/cindy/front.svg",
  39227. extra: 1320/1250,
  39228. bottom: 42/1362
  39229. }
  39230. },
  39231. frontDressed: {
  39232. height: math.unit(5, "feet"),
  39233. weight: math.unit(225, "lb"),
  39234. name: "Front (Dressed)",
  39235. image: {
  39236. source: "./media/characters/cindy/front-dressed.svg",
  39237. extra: 1320/1250,
  39238. bottom: 42/1362
  39239. }
  39240. },
  39241. back: {
  39242. height: math.unit(5, "feet"),
  39243. weight: math.unit(225, "lb"),
  39244. name: "Back",
  39245. image: {
  39246. source: "./media/characters/cindy/back.svg",
  39247. extra: 1384/1346,
  39248. bottom: 14/1398
  39249. }
  39250. },
  39251. },
  39252. [
  39253. {
  39254. name: "Normal",
  39255. height: math.unit(5, "feet"),
  39256. default: true
  39257. },
  39258. ]
  39259. ))
  39260. characterMakers.push(() => makeCharacter(
  39261. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39262. {
  39263. front: {
  39264. height: math.unit(6 + 9/12, "feet"),
  39265. weight: math.unit(440, "lb"),
  39266. name: "Front",
  39267. image: {
  39268. source: "./media/characters/wilbur-owen/front.svg",
  39269. extra: 1575/1448,
  39270. bottom: 72/1647
  39271. }
  39272. },
  39273. back: {
  39274. height: math.unit(6 + 9/12, "feet"),
  39275. weight: math.unit(440, "lb"),
  39276. name: "Back",
  39277. image: {
  39278. source: "./media/characters/wilbur-owen/back.svg",
  39279. extra: 1578/1445,
  39280. bottom: 36/1614
  39281. }
  39282. },
  39283. },
  39284. [
  39285. {
  39286. name: "Normal",
  39287. height: math.unit(6 + 9/12, "feet"),
  39288. default: true
  39289. },
  39290. ]
  39291. ))
  39292. characterMakers.push(() => makeCharacter(
  39293. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39294. {
  39295. front: {
  39296. height: math.unit(6 + 5/12, "feet"),
  39297. weight: math.unit(650, "lb"),
  39298. name: "Front",
  39299. image: {
  39300. source: "./media/characters/keegan/front.svg",
  39301. extra: 2387/2198,
  39302. bottom: 33/2420
  39303. }
  39304. },
  39305. side: {
  39306. height: math.unit(6 + 5/12, "feet"),
  39307. weight: math.unit(650, "lb"),
  39308. name: "Side",
  39309. image: {
  39310. source: "./media/characters/keegan/side.svg",
  39311. extra: 2390/2202,
  39312. bottom: 47/2437
  39313. }
  39314. },
  39315. back: {
  39316. height: math.unit(6 + 5/12, "feet"),
  39317. weight: math.unit(650, "lb"),
  39318. name: "Back",
  39319. image: {
  39320. source: "./media/characters/keegan/back.svg",
  39321. extra: 2418/2268,
  39322. bottom: 15/2433
  39323. }
  39324. },
  39325. frontSfw: {
  39326. height: math.unit(6 + 5/12, "feet"),
  39327. weight: math.unit(650, "lb"),
  39328. name: "Front (SFW)",
  39329. image: {
  39330. source: "./media/characters/keegan/front-sfw.svg",
  39331. extra: 2387/2198,
  39332. bottom: 33/2420
  39333. }
  39334. },
  39335. beans: {
  39336. height: math.unit(1.85, "feet"),
  39337. name: "Beans",
  39338. image: {
  39339. source: "./media/characters/keegan/beans.svg"
  39340. }
  39341. },
  39342. },
  39343. [
  39344. {
  39345. name: "Normal",
  39346. height: math.unit(6 + 5/12, "feet"),
  39347. default: true
  39348. },
  39349. ]
  39350. ))
  39351. characterMakers.push(() => makeCharacter(
  39352. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39353. {
  39354. front: {
  39355. height: math.unit(9, "feet"),
  39356. name: "Front",
  39357. image: {
  39358. source: "./media/characters/colton/front.svg",
  39359. extra: 1589/1326,
  39360. bottom: 139/1728
  39361. }
  39362. },
  39363. },
  39364. [
  39365. {
  39366. name: "Normal",
  39367. height: math.unit(9, "feet"),
  39368. default: true
  39369. },
  39370. ]
  39371. ))
  39372. characterMakers.push(() => makeCharacter(
  39373. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39374. {
  39375. front: {
  39376. height: math.unit(2 + 9/12, "feet"),
  39377. name: "Front",
  39378. image: {
  39379. source: "./media/characters/bora/front.svg",
  39380. extra: 1265/1250,
  39381. bottom: 24/1289
  39382. }
  39383. },
  39384. },
  39385. [
  39386. {
  39387. name: "Normal",
  39388. height: math.unit(2 + 9/12, "feet"),
  39389. default: true
  39390. },
  39391. ]
  39392. ))
  39393. characterMakers.push(() => makeCharacter(
  39394. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39395. {
  39396. front: {
  39397. height: math.unit(8, "feet"),
  39398. name: "Front",
  39399. image: {
  39400. source: "./media/characters/myu-myu/front.svg",
  39401. extra: 1949/1857,
  39402. bottom: 90/2039
  39403. }
  39404. },
  39405. },
  39406. [
  39407. {
  39408. name: "Normal",
  39409. height: math.unit(8, "feet"),
  39410. default: true
  39411. },
  39412. {
  39413. name: "Big",
  39414. height: math.unit(15, "feet")
  39415. },
  39416. {
  39417. name: "BIG",
  39418. height: math.unit(25, "feet")
  39419. },
  39420. ]
  39421. ))
  39422. characterMakers.push(() => makeCharacter(
  39423. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39424. {
  39425. side: {
  39426. height: math.unit(7 + 5/12, "feet"),
  39427. weight: math.unit(2800, "lb"),
  39428. name: "Side",
  39429. image: {
  39430. source: "./media/characters/haloren/side.svg",
  39431. extra: 1793/409,
  39432. bottom: 59/1852
  39433. }
  39434. },
  39435. frontPaw: {
  39436. height: math.unit(2.36, "feet"),
  39437. name: "Front paw",
  39438. image: {
  39439. source: "./media/characters/haloren/front-paw.svg"
  39440. }
  39441. },
  39442. hindPaw: {
  39443. height: math.unit(3.18, "feet"),
  39444. name: "Hind paw",
  39445. image: {
  39446. source: "./media/characters/haloren/hind-paw.svg"
  39447. }
  39448. },
  39449. maw: {
  39450. height: math.unit(5.05, "feet"),
  39451. name: "Maw",
  39452. image: {
  39453. source: "./media/characters/haloren/maw.svg"
  39454. }
  39455. },
  39456. dick: {
  39457. height: math.unit(2.90, "feet"),
  39458. name: "Dick",
  39459. image: {
  39460. source: "./media/characters/haloren/dick.svg"
  39461. }
  39462. },
  39463. },
  39464. [
  39465. {
  39466. name: "Normal",
  39467. height: math.unit(7 + 5/12, "feet"),
  39468. default: true
  39469. },
  39470. {
  39471. name: "Enhanced",
  39472. height: math.unit(14 + 3/12, "feet")
  39473. },
  39474. ]
  39475. ))
  39476. characterMakers.push(() => makeCharacter(
  39477. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39478. {
  39479. front: {
  39480. height: math.unit(171, "cm"),
  39481. name: "Front",
  39482. image: {
  39483. source: "./media/characters/kimmy/front.svg",
  39484. extra: 1491/1435,
  39485. bottom: 53/1544
  39486. }
  39487. },
  39488. },
  39489. [
  39490. {
  39491. name: "Small",
  39492. height: math.unit(9, "cm")
  39493. },
  39494. {
  39495. name: "Normal",
  39496. height: math.unit(171, "cm"),
  39497. default: true
  39498. },
  39499. ]
  39500. ))
  39501. characterMakers.push(() => makeCharacter(
  39502. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39503. {
  39504. front: {
  39505. height: math.unit(8, "feet"),
  39506. weight: math.unit(300, "lb"),
  39507. name: "Front",
  39508. image: {
  39509. source: "./media/characters/galeboomer/front.svg",
  39510. extra: 4651/4415,
  39511. bottom: 162/4813
  39512. }
  39513. },
  39514. back: {
  39515. height: math.unit(8, "feet"),
  39516. weight: math.unit(300, "lb"),
  39517. name: "Back",
  39518. image: {
  39519. source: "./media/characters/galeboomer/back.svg",
  39520. extra: 4544/4314,
  39521. bottom: 16/4560
  39522. }
  39523. },
  39524. frontAlt: {
  39525. height: math.unit(8, "feet"),
  39526. weight: math.unit(300, "lb"),
  39527. name: "Front (Alt)",
  39528. image: {
  39529. source: "./media/characters/galeboomer/front-alt.svg",
  39530. extra: 4458/4228,
  39531. bottom: 68/4526
  39532. }
  39533. },
  39534. maw: {
  39535. height: math.unit(1.2, "feet"),
  39536. name: "Maw",
  39537. image: {
  39538. source: "./media/characters/galeboomer/maw.svg"
  39539. }
  39540. },
  39541. },
  39542. [
  39543. {
  39544. name: "Normal",
  39545. height: math.unit(8, "feet"),
  39546. default: true
  39547. },
  39548. ]
  39549. ))
  39550. characterMakers.push(() => makeCharacter(
  39551. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39552. {
  39553. front: {
  39554. height: math.unit(5 + 9/12, "feet"),
  39555. weight: math.unit(120, "lb"),
  39556. name: "Front",
  39557. image: {
  39558. source: "./media/characters/chyr/front.svg",
  39559. extra: 1323/1254,
  39560. bottom: 63/1386
  39561. }
  39562. },
  39563. back: {
  39564. height: math.unit(5 + 9/12, "feet"),
  39565. weight: math.unit(120, "lb"),
  39566. name: "Back",
  39567. image: {
  39568. source: "./media/characters/chyr/back.svg",
  39569. extra: 1323/1252,
  39570. bottom: 48/1371
  39571. }
  39572. },
  39573. },
  39574. [
  39575. {
  39576. name: "Normal",
  39577. height: math.unit(5 + 9/12, "feet"),
  39578. default: true
  39579. },
  39580. ]
  39581. ))
  39582. characterMakers.push(() => makeCharacter(
  39583. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39584. {
  39585. front: {
  39586. height: math.unit(7, "feet"),
  39587. weight: math.unit(310, "lb"),
  39588. name: "Front",
  39589. image: {
  39590. source: "./media/characters/solarus/front.svg",
  39591. extra: 2415/2021,
  39592. bottom: 103/2518
  39593. }
  39594. },
  39595. back: {
  39596. height: math.unit(7, "feet"),
  39597. weight: math.unit(310, "lb"),
  39598. name: "Back",
  39599. image: {
  39600. source: "./media/characters/solarus/back.svg",
  39601. extra: 2463/2089,
  39602. bottom: 79/2542
  39603. }
  39604. },
  39605. },
  39606. [
  39607. {
  39608. name: "Normal",
  39609. height: math.unit(7, "feet"),
  39610. default: true
  39611. },
  39612. ]
  39613. ))
  39614. characterMakers.push(() => makeCharacter(
  39615. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39616. {
  39617. front: {
  39618. height: math.unit(16, "feet"),
  39619. name: "Front",
  39620. image: {
  39621. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39622. extra: 1844/1780,
  39623. bottom: 58/1902
  39624. }
  39625. },
  39626. winterCoat: {
  39627. height: math.unit(16, "feet"),
  39628. name: "Winter Coat",
  39629. image: {
  39630. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39631. extra: 1807/1775,
  39632. bottom: 69/1876
  39633. }
  39634. },
  39635. },
  39636. [
  39637. {
  39638. name: "Normal",
  39639. height: math.unit(16, "feet"),
  39640. default: true
  39641. },
  39642. {
  39643. name: "Chicago Size",
  39644. height: math.unit(560, "feet")
  39645. },
  39646. ]
  39647. ))
  39648. characterMakers.push(() => makeCharacter(
  39649. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39650. {
  39651. front: {
  39652. height: math.unit(11 + 6/12, "feet"),
  39653. weight: math.unit(1366, "lb"),
  39654. name: "Front",
  39655. image: {
  39656. source: "./media/characters/lexor/front.svg",
  39657. extra: 1560/1481,
  39658. bottom: 211/1771
  39659. }
  39660. },
  39661. back: {
  39662. height: math.unit(11 + 6/12, "feet"),
  39663. weight: math.unit(1366, "lb"),
  39664. name: "Back",
  39665. image: {
  39666. source: "./media/characters/lexor/back.svg",
  39667. extra: 1614/1533,
  39668. bottom: 76/1690
  39669. }
  39670. },
  39671. maw: {
  39672. height: math.unit(3, "feet"),
  39673. name: "Maw",
  39674. image: {
  39675. source: "./media/characters/lexor/maw.svg"
  39676. }
  39677. },
  39678. dick: {
  39679. height: math.unit(2.59, "feet"),
  39680. name: "Dick",
  39681. image: {
  39682. source: "./media/characters/lexor/dick.svg"
  39683. }
  39684. },
  39685. },
  39686. [
  39687. {
  39688. name: "Normal",
  39689. height: math.unit(11 + 6/12, "feet"),
  39690. default: true
  39691. },
  39692. ]
  39693. ))
  39694. characterMakers.push(() => makeCharacter(
  39695. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39696. {
  39697. front: {
  39698. height: math.unit(5 + 8/12, "feet"),
  39699. name: "Front",
  39700. image: {
  39701. source: "./media/characters/magnum/front.svg",
  39702. extra: 942/855,
  39703. bottom: 26/968
  39704. }
  39705. },
  39706. },
  39707. [
  39708. {
  39709. name: "Normal",
  39710. height: math.unit(5 + 8/12, "feet"),
  39711. default: true
  39712. },
  39713. ]
  39714. ))
  39715. characterMakers.push(() => makeCharacter(
  39716. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39717. {
  39718. front: {
  39719. height: math.unit(18 + 4/12, "feet"),
  39720. weight: math.unit(1500, "kg"),
  39721. name: "Front",
  39722. image: {
  39723. source: "./media/characters/solas-sharpsman/front.svg",
  39724. extra: 1698/1589,
  39725. bottom: 0/1698
  39726. }
  39727. },
  39728. },
  39729. [
  39730. {
  39731. name: "Normal",
  39732. height: math.unit(18 + 4/12, "feet"),
  39733. default: true
  39734. },
  39735. ]
  39736. ))
  39737. characterMakers.push(() => makeCharacter(
  39738. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39739. {
  39740. front: {
  39741. height: math.unit(5 + 5/12, "feet"),
  39742. weight: math.unit(180, "lb"),
  39743. name: "Front",
  39744. image: {
  39745. source: "./media/characters/october/front.svg",
  39746. extra: 1800/1650,
  39747. bottom: 0/1800
  39748. }
  39749. },
  39750. frontNsfw: {
  39751. height: math.unit(5 + 5/12, "feet"),
  39752. weight: math.unit(180, "lb"),
  39753. name: "Front (NSFW)",
  39754. image: {
  39755. source: "./media/characters/october/front-nsfw.svg",
  39756. extra: 1392/1307,
  39757. bottom: 42/1434
  39758. }
  39759. },
  39760. },
  39761. [
  39762. {
  39763. name: "Normal",
  39764. height: math.unit(5 + 5/12, "feet"),
  39765. default: true
  39766. },
  39767. ]
  39768. ))
  39769. characterMakers.push(() => makeCharacter(
  39770. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39771. {
  39772. front: {
  39773. height: math.unit(8 + 6/12, "feet"),
  39774. name: "Front",
  39775. image: {
  39776. source: "./media/characters/essynkardi/front.svg",
  39777. extra: 1541/1457,
  39778. bottom: 47/1588
  39779. }
  39780. },
  39781. },
  39782. [
  39783. {
  39784. name: "Normal",
  39785. height: math.unit(8 + 6/12, "feet"),
  39786. default: true
  39787. },
  39788. ]
  39789. ))
  39790. characterMakers.push(() => makeCharacter(
  39791. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39792. {
  39793. front: {
  39794. height: math.unit(6 + 6/12, "feet"),
  39795. weight: math.unit(7, "lb"),
  39796. name: "Front",
  39797. image: {
  39798. source: "./media/characters/icky/front.svg",
  39799. extra: 813/782,
  39800. bottom: 66/879
  39801. }
  39802. },
  39803. back: {
  39804. height: math.unit(6 + 6/12, "feet"),
  39805. weight: math.unit(7, "lb"),
  39806. name: "Back",
  39807. image: {
  39808. source: "./media/characters/icky/back.svg",
  39809. extra: 754/735,
  39810. bottom: 56/810
  39811. }
  39812. },
  39813. },
  39814. [
  39815. {
  39816. name: "Normal",
  39817. height: math.unit(6 + 6/12, "feet"),
  39818. default: true
  39819. },
  39820. ]
  39821. ))
  39822. characterMakers.push(() => makeCharacter(
  39823. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39824. {
  39825. front: {
  39826. height: math.unit(15, "feet"),
  39827. name: "Front",
  39828. image: {
  39829. source: "./media/characters/rojas/front.svg",
  39830. extra: 1462/1408,
  39831. bottom: 95/1557
  39832. }
  39833. },
  39834. back: {
  39835. height: math.unit(15, "feet"),
  39836. name: "Back",
  39837. image: {
  39838. source: "./media/characters/rojas/back.svg",
  39839. extra: 1023/954,
  39840. bottom: 28/1051
  39841. }
  39842. },
  39843. },
  39844. [
  39845. {
  39846. name: "Normal",
  39847. height: math.unit(15, "feet"),
  39848. default: true
  39849. },
  39850. ]
  39851. ))
  39852. characterMakers.push(() => makeCharacter(
  39853. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39854. {
  39855. frontHuman: {
  39856. height: math.unit(5 + 7/12, "feet"),
  39857. name: "Front (Human)",
  39858. image: {
  39859. source: "./media/characters/alek-dryagan/front-human.svg",
  39860. extra: 1687/1667,
  39861. bottom: 69/1756
  39862. }
  39863. },
  39864. backHuman: {
  39865. height: math.unit(5 + 7/12, "feet"),
  39866. name: "Back (Human)",
  39867. image: {
  39868. source: "./media/characters/alek-dryagan/back-human.svg",
  39869. extra: 1670/1649,
  39870. bottom: 65/1735
  39871. }
  39872. },
  39873. frontDemi: {
  39874. height: math.unit(65, "feet"),
  39875. name: "Front (Demi)",
  39876. image: {
  39877. source: "./media/characters/alek-dryagan/front-demi.svg",
  39878. extra: 1669/1642,
  39879. bottom: 49/1718
  39880. }
  39881. },
  39882. backDemi: {
  39883. height: math.unit(65, "feet"),
  39884. name: "Back (Demi)",
  39885. image: {
  39886. source: "./media/characters/alek-dryagan/back-demi.svg",
  39887. extra: 1658/1637,
  39888. bottom: 40/1698
  39889. }
  39890. },
  39891. mawHuman: {
  39892. height: math.unit(0.3, "feet"),
  39893. name: "Maw (Human)",
  39894. image: {
  39895. source: "./media/characters/alek-dryagan/maw-human.svg"
  39896. }
  39897. },
  39898. mawDemi: {
  39899. height: math.unit(3.8, "feet"),
  39900. name: "Maw (Demi)",
  39901. image: {
  39902. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39903. }
  39904. },
  39905. },
  39906. [
  39907. {
  39908. name: "Normal",
  39909. height: math.unit(5 + 7/12, "feet"),
  39910. default: true
  39911. },
  39912. ]
  39913. ))
  39914. characterMakers.push(() => makeCharacter(
  39915. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39916. {
  39917. frontHuman: {
  39918. height: math.unit(5 + 2/12, "feet"),
  39919. name: "Front (Human)",
  39920. image: {
  39921. source: "./media/characters/gen/front-human.svg",
  39922. extra: 1627/1538,
  39923. bottom: 71/1698
  39924. }
  39925. },
  39926. backHuman: {
  39927. height: math.unit(5 + 2/12, "feet"),
  39928. name: "Back (Human)",
  39929. image: {
  39930. source: "./media/characters/gen/back-human.svg",
  39931. extra: 1638/1548,
  39932. bottom: 69/1707
  39933. }
  39934. },
  39935. frontDemi: {
  39936. height: math.unit(5 + 2/12, "feet"),
  39937. name: "Front (Demi)",
  39938. image: {
  39939. source: "./media/characters/gen/front-demi.svg",
  39940. extra: 1627/1538,
  39941. bottom: 71/1698
  39942. }
  39943. },
  39944. backDemi: {
  39945. height: math.unit(5 + 2/12, "feet"),
  39946. name: "Back (Demi)",
  39947. image: {
  39948. source: "./media/characters/gen/back-demi.svg",
  39949. extra: 1638/1548,
  39950. bottom: 69/1707
  39951. }
  39952. },
  39953. },
  39954. [
  39955. {
  39956. name: "Normal",
  39957. height: math.unit(5 + 2/12, "feet"),
  39958. default: true
  39959. },
  39960. ]
  39961. ))
  39962. characterMakers.push(() => makeCharacter(
  39963. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39964. {
  39965. frontImp: {
  39966. height: math.unit(1 + 11/12, "feet"),
  39967. name: "Front (Imp)",
  39968. image: {
  39969. source: "./media/characters/max-kobold/front-imp.svg",
  39970. extra: 1238/1134,
  39971. bottom: 81/1319
  39972. }
  39973. },
  39974. backImp: {
  39975. height: math.unit(1 + 11/12, "feet"),
  39976. name: "Back (Imp)",
  39977. image: {
  39978. source: "./media/characters/max-kobold/back-imp.svg",
  39979. extra: 1334/1175,
  39980. bottom: 34/1368
  39981. }
  39982. },
  39983. frontDemi: {
  39984. height: math.unit(5 + 9/12, "feet"),
  39985. name: "Front (Demi)",
  39986. image: {
  39987. source: "./media/characters/max-kobold/front-demi.svg",
  39988. extra: 1715/1685,
  39989. bottom: 54/1769
  39990. }
  39991. },
  39992. backDemi: {
  39993. height: math.unit(5 + 9/12, "feet"),
  39994. name: "Back (Demi)",
  39995. image: {
  39996. source: "./media/characters/max-kobold/back-demi.svg",
  39997. extra: 1752/1729,
  39998. bottom: 41/1793
  39999. }
  40000. },
  40001. handImp: {
  40002. height: math.unit(0.45, "feet"),
  40003. name: "Hand (Imp)",
  40004. image: {
  40005. source: "./media/characters/max-kobold/hand.svg"
  40006. }
  40007. },
  40008. pawImp: {
  40009. height: math.unit(0.46, "feet"),
  40010. name: "Paw (Imp)",
  40011. image: {
  40012. source: "./media/characters/max-kobold/paw.svg"
  40013. }
  40014. },
  40015. handDemi: {
  40016. height: math.unit(0.80, "feet"),
  40017. name: "Hand (Demi)",
  40018. image: {
  40019. source: "./media/characters/max-kobold/hand.svg"
  40020. }
  40021. },
  40022. pawDemi: {
  40023. height: math.unit(1.1, "feet"),
  40024. name: "Paw (Demi)",
  40025. image: {
  40026. source: "./media/characters/max-kobold/paw.svg"
  40027. }
  40028. },
  40029. headImp: {
  40030. height: math.unit(1.33, "feet"),
  40031. name: "Head (Imp)",
  40032. image: {
  40033. source: "./media/characters/max-kobold/head-imp.svg"
  40034. }
  40035. },
  40036. mawImp: {
  40037. height: math.unit(0.75, "feet"),
  40038. name: "Maw (Imp)",
  40039. image: {
  40040. source: "./media/characters/max-kobold/maw-imp.svg"
  40041. }
  40042. },
  40043. mawDemi: {
  40044. height: math.unit(0.42, "feet"),
  40045. name: "Maw (Demi)",
  40046. image: {
  40047. source: "./media/characters/max-kobold/maw-demi.svg"
  40048. }
  40049. },
  40050. },
  40051. [
  40052. {
  40053. name: "Normal",
  40054. height: math.unit(1 + 11/12, "feet"),
  40055. default: true
  40056. },
  40057. ]
  40058. ))
  40059. characterMakers.push(() => makeCharacter(
  40060. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40061. {
  40062. front: {
  40063. height: math.unit(7 + 5/12, "feet"),
  40064. name: "Front",
  40065. image: {
  40066. source: "./media/characters/carbon/front.svg",
  40067. extra: 1754/1689,
  40068. bottom: 65/1819
  40069. }
  40070. },
  40071. back: {
  40072. height: math.unit(7 + 5/12, "feet"),
  40073. name: "Back",
  40074. image: {
  40075. source: "./media/characters/carbon/back.svg",
  40076. extra: 1762/1695,
  40077. bottom: 24/1786
  40078. }
  40079. },
  40080. frontGigantamax: {
  40081. height: math.unit(150, "feet"),
  40082. name: "Front (Gigantamax)",
  40083. image: {
  40084. source: "./media/characters/carbon/front-gigantamax.svg",
  40085. extra: 1826/1669,
  40086. bottom: 59/1885
  40087. }
  40088. },
  40089. backGigantamax: {
  40090. height: math.unit(150, "feet"),
  40091. name: "Back (Gigantamax)",
  40092. image: {
  40093. source: "./media/characters/carbon/back-gigantamax.svg",
  40094. extra: 1796/1653,
  40095. bottom: 53/1849
  40096. }
  40097. },
  40098. maw: {
  40099. height: math.unit(0.48, "feet"),
  40100. name: "Maw",
  40101. image: {
  40102. source: "./media/characters/carbon/maw.svg"
  40103. }
  40104. },
  40105. mawGigantamax: {
  40106. height: math.unit(7.5, "feet"),
  40107. name: "Maw (Gigantamax)",
  40108. image: {
  40109. source: "./media/characters/carbon/maw-gigantamax.svg"
  40110. }
  40111. },
  40112. },
  40113. [
  40114. {
  40115. name: "Normal",
  40116. height: math.unit(7 + 5/12, "feet"),
  40117. default: true
  40118. },
  40119. ]
  40120. ))
  40121. characterMakers.push(() => makeCharacter(
  40122. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40123. {
  40124. front: {
  40125. height: math.unit(6, "feet"),
  40126. name: "Front",
  40127. image: {
  40128. source: "./media/characters/maverick/front.svg",
  40129. extra: 1672/1661,
  40130. bottom: 85/1757
  40131. }
  40132. },
  40133. back: {
  40134. height: math.unit(6, "feet"),
  40135. name: "Back",
  40136. image: {
  40137. source: "./media/characters/maverick/back.svg",
  40138. extra: 1642/1631,
  40139. bottom: 38/1680
  40140. }
  40141. },
  40142. },
  40143. [
  40144. {
  40145. name: "Normal",
  40146. height: math.unit(6, "feet"),
  40147. default: true
  40148. },
  40149. ]
  40150. ))
  40151. characterMakers.push(() => makeCharacter(
  40152. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40153. {
  40154. front: {
  40155. height: math.unit(15, "feet"),
  40156. weight: math.unit(615, "lb"),
  40157. name: "Front",
  40158. image: {
  40159. source: "./media/characters/grockle/front.svg",
  40160. extra: 1535/1427,
  40161. bottom: 56/1591
  40162. }
  40163. },
  40164. },
  40165. [
  40166. {
  40167. name: "Normal",
  40168. height: math.unit(15, "feet"),
  40169. default: true
  40170. },
  40171. {
  40172. name: "Large",
  40173. height: math.unit(150, "feet")
  40174. },
  40175. {
  40176. name: "Macro",
  40177. height: math.unit(1876, "feet")
  40178. },
  40179. {
  40180. name: "Mega Macro",
  40181. height: math.unit(121940, "feet")
  40182. },
  40183. {
  40184. name: "Giga Macro",
  40185. height: math.unit(750, "km")
  40186. },
  40187. {
  40188. name: "Tera Macro",
  40189. height: math.unit(750000, "km")
  40190. },
  40191. {
  40192. name: "Galactic",
  40193. height: math.unit(1.4e5, "km")
  40194. },
  40195. {
  40196. name: "Godlike",
  40197. height: math.unit(9.8e280, "galaxies")
  40198. },
  40199. ]
  40200. ))
  40201. characterMakers.push(() => makeCharacter(
  40202. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40203. {
  40204. front: {
  40205. height: math.unit(11, "meters"),
  40206. weight: math.unit(20, "tonnes"),
  40207. name: "Front",
  40208. image: {
  40209. source: "./media/characters/alistair/front.svg",
  40210. extra: 1265/1009,
  40211. bottom: 93/1358
  40212. }
  40213. },
  40214. },
  40215. [
  40216. {
  40217. name: "Normal",
  40218. height: math.unit(11, "meters"),
  40219. default: true
  40220. },
  40221. ]
  40222. ))
  40223. characterMakers.push(() => makeCharacter(
  40224. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40225. {
  40226. front: {
  40227. height: math.unit(5 + 8/12, "feet"),
  40228. name: "Front",
  40229. image: {
  40230. source: "./media/characters/haruka/front.svg",
  40231. extra: 2012/1952,
  40232. bottom: 0/2012
  40233. }
  40234. },
  40235. },
  40236. [
  40237. {
  40238. name: "Normal",
  40239. height: math.unit(5 + 8/12, "feet"),
  40240. default: true
  40241. },
  40242. ]
  40243. ))
  40244. characterMakers.push(() => makeCharacter(
  40245. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40246. {
  40247. back: {
  40248. height: math.unit(9, "feet"),
  40249. name: "Back",
  40250. image: {
  40251. source: "./media/characters/vivian-sylveon/back.svg",
  40252. extra: 1853/1714,
  40253. bottom: 0/1853
  40254. }
  40255. },
  40256. hyper: {
  40257. height: math.unit(5.58, "feet"),
  40258. name: "Hyper",
  40259. preyCapacity: math.unit(2.80616218797, "m^3"),
  40260. image: {
  40261. source: "./media/characters/vivian-sylveon/hyper.svg",
  40262. extra: 999/676,
  40263. bottom: 697/1696
  40264. },
  40265. },
  40266. paw: {
  40267. height: math.unit(1.8, "feet"),
  40268. name: "Paw",
  40269. image: {
  40270. source: "./media/characters/vivian-sylveon/paw.svg"
  40271. }
  40272. },
  40273. danger: {
  40274. height: math.unit(7.5, "feet"),
  40275. name: "DANGER",
  40276. image: {
  40277. source: "./media/characters/vivian-sylveon/danger.svg"
  40278. }
  40279. },
  40280. },
  40281. [
  40282. {
  40283. name: "Normal",
  40284. height: math.unit(9, "feet"),
  40285. default: true
  40286. },
  40287. {
  40288. name: "Macro",
  40289. height: math.unit(500, "feet")
  40290. },
  40291. {
  40292. name: "Megamacro",
  40293. height: math.unit(600, "miles")
  40294. },
  40295. {
  40296. name: "Gigamacro",
  40297. height: math.unit(30000, "miles")
  40298. },
  40299. ]
  40300. ))
  40301. characterMakers.push(() => makeCharacter(
  40302. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40303. {
  40304. anthro: {
  40305. height: math.unit(5 + 10/12, "feet"),
  40306. weight: math.unit(100, "lb"),
  40307. name: "Anthro",
  40308. image: {
  40309. source: "./media/characters/daiki/anthro.svg",
  40310. extra: 1115/1027,
  40311. bottom: 69/1184
  40312. }
  40313. },
  40314. feral: {
  40315. height: math.unit(200, "feet"),
  40316. name: "Feral",
  40317. image: {
  40318. source: "./media/characters/daiki/feral.svg",
  40319. extra: 1256/313,
  40320. bottom: 39/1295
  40321. }
  40322. },
  40323. feralHead: {
  40324. height: math.unit(171, "feet"),
  40325. name: "Feral Head",
  40326. image: {
  40327. source: "./media/characters/daiki/feral-head.svg"
  40328. }
  40329. },
  40330. manaDragon: {
  40331. height: math.unit(170, "meters"),
  40332. name: "Mana-dragon",
  40333. image: {
  40334. source: "./media/characters/daiki/mana-dragon.svg",
  40335. extra: 763/420,
  40336. bottom: 97/860
  40337. }
  40338. },
  40339. },
  40340. [
  40341. {
  40342. name: "Normal",
  40343. height: math.unit(5 + 10/12, "feet"),
  40344. default: true
  40345. },
  40346. ]
  40347. ))
  40348. characterMakers.push(() => makeCharacter(
  40349. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40350. {
  40351. fullyEquippedFront: {
  40352. height: math.unit(3 + 1/12, "feet"),
  40353. weight: math.unit(24, "lb"),
  40354. name: "Fully Equipped (Front)",
  40355. image: {
  40356. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40357. extra: 687/605,
  40358. bottom: 18/705
  40359. }
  40360. },
  40361. fullyEquippedBack: {
  40362. height: math.unit(3 + 1/12, "feet"),
  40363. weight: math.unit(24, "lb"),
  40364. name: "Fully Equipped (Back)",
  40365. image: {
  40366. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40367. extra: 689/590,
  40368. bottom: 18/707
  40369. }
  40370. },
  40371. dailyWear: {
  40372. height: math.unit(3 + 1/12, "feet"),
  40373. weight: math.unit(24, "lb"),
  40374. name: "Daily Wear",
  40375. image: {
  40376. source: "./media/characters/tea-spot/daily-wear.svg",
  40377. extra: 701/620,
  40378. bottom: 21/722
  40379. }
  40380. },
  40381. maidWork: {
  40382. height: math.unit(3 + 1/12, "feet"),
  40383. weight: math.unit(24, "lb"),
  40384. name: "Maid Work",
  40385. image: {
  40386. source: "./media/characters/tea-spot/maid-work.svg",
  40387. extra: 693/609,
  40388. bottom: 15/708
  40389. }
  40390. },
  40391. },
  40392. [
  40393. {
  40394. name: "Normal",
  40395. height: math.unit(3 + 1/12, "feet"),
  40396. default: true
  40397. },
  40398. ]
  40399. ))
  40400. characterMakers.push(() => makeCharacter(
  40401. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40402. {
  40403. front: {
  40404. height: math.unit(175, "cm"),
  40405. weight: math.unit(75, "kg"),
  40406. name: "Front",
  40407. image: {
  40408. source: "./media/characters/chee/front.svg",
  40409. extra: 1796/1740,
  40410. bottom: 40/1836
  40411. }
  40412. },
  40413. },
  40414. [
  40415. {
  40416. name: "Micro-Micro",
  40417. height: math.unit(1, "nm")
  40418. },
  40419. {
  40420. name: "Micro-erst",
  40421. height: math.unit(1, "micrometer")
  40422. },
  40423. {
  40424. name: "Micro-er",
  40425. height: math.unit(1, "cm")
  40426. },
  40427. {
  40428. name: "Normal",
  40429. height: math.unit(175, "cm"),
  40430. default: true
  40431. },
  40432. {
  40433. name: "Macro",
  40434. height: math.unit(100, "m")
  40435. },
  40436. {
  40437. name: "Macro-er",
  40438. height: math.unit(1, "km")
  40439. },
  40440. {
  40441. name: "Macro-erst",
  40442. height: math.unit(10, "km")
  40443. },
  40444. {
  40445. name: "Macro-Macro",
  40446. height: math.unit(100, "km")
  40447. },
  40448. ]
  40449. ))
  40450. characterMakers.push(() => makeCharacter(
  40451. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40452. {
  40453. front: {
  40454. height: math.unit(11 + 9/12, "feet"),
  40455. weight: math.unit(935, "lb"),
  40456. name: "Front",
  40457. image: {
  40458. source: "./media/characters/kingsley/front.svg",
  40459. extra: 1803/1674,
  40460. bottom: 127/1930
  40461. }
  40462. },
  40463. frontNude: {
  40464. height: math.unit(11 + 9/12, "feet"),
  40465. weight: math.unit(935, "lb"),
  40466. name: "Front (Nude)",
  40467. image: {
  40468. source: "./media/characters/kingsley/front-nude.svg",
  40469. extra: 1803/1674,
  40470. bottom: 127/1930
  40471. }
  40472. },
  40473. },
  40474. [
  40475. {
  40476. name: "Normal",
  40477. height: math.unit(11 + 9/12, "feet"),
  40478. default: true
  40479. },
  40480. ]
  40481. ))
  40482. characterMakers.push(() => makeCharacter(
  40483. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40484. {
  40485. side: {
  40486. height: math.unit(9, "feet"),
  40487. name: "Side",
  40488. image: {
  40489. source: "./media/characters/rymel/side.svg",
  40490. extra: 792/469,
  40491. bottom: 121/913
  40492. }
  40493. },
  40494. maw: {
  40495. height: math.unit(2.4, "meters"),
  40496. name: "Maw",
  40497. image: {
  40498. source: "./media/characters/rymel/maw.svg"
  40499. }
  40500. },
  40501. },
  40502. [
  40503. {
  40504. name: "House Drake",
  40505. height: math.unit(2, "feet")
  40506. },
  40507. {
  40508. name: "Reduced",
  40509. height: math.unit(4.5, "feet")
  40510. },
  40511. {
  40512. name: "Normal",
  40513. height: math.unit(9, "feet"),
  40514. default: true
  40515. },
  40516. ]
  40517. ))
  40518. characterMakers.push(() => makeCharacter(
  40519. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40520. {
  40521. front: {
  40522. height: math.unit(1.74, "meters"),
  40523. weight: math.unit(55, "kg"),
  40524. name: "Front",
  40525. image: {
  40526. source: "./media/characters/rubus/front.svg",
  40527. extra: 1894/1742,
  40528. bottom: 44/1938
  40529. }
  40530. },
  40531. },
  40532. [
  40533. {
  40534. name: "Normal",
  40535. height: math.unit(1.74, "meters"),
  40536. default: true
  40537. },
  40538. ]
  40539. ))
  40540. characterMakers.push(() => makeCharacter(
  40541. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40542. {
  40543. front: {
  40544. height: math.unit(5 + 2/12, "feet"),
  40545. weight: math.unit(112, "lb"),
  40546. name: "Front",
  40547. image: {
  40548. source: "./media/characters/cassie-kingston/front.svg",
  40549. extra: 1438/1390,
  40550. bottom: 47/1485
  40551. }
  40552. },
  40553. },
  40554. [
  40555. {
  40556. name: "Normal",
  40557. height: math.unit(5 + 2/12, "feet"),
  40558. default: true
  40559. },
  40560. {
  40561. name: "Macro",
  40562. height: math.unit(128, "feet")
  40563. },
  40564. {
  40565. name: "Megamacro",
  40566. height: math.unit(2.56, "miles")
  40567. },
  40568. ]
  40569. ))
  40570. characterMakers.push(() => makeCharacter(
  40571. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40572. {
  40573. front: {
  40574. height: math.unit(7, "feet"),
  40575. name: "Front",
  40576. image: {
  40577. source: "./media/characters/fox/front.svg",
  40578. extra: 1798/1703,
  40579. bottom: 55/1853
  40580. }
  40581. },
  40582. back: {
  40583. height: math.unit(7, "feet"),
  40584. name: "Back",
  40585. image: {
  40586. source: "./media/characters/fox/back.svg",
  40587. extra: 1748/1649,
  40588. bottom: 32/1780
  40589. }
  40590. },
  40591. head: {
  40592. height: math.unit(1.95, "feet"),
  40593. name: "Head",
  40594. image: {
  40595. source: "./media/characters/fox/head.svg"
  40596. }
  40597. },
  40598. dick: {
  40599. height: math.unit(1.33, "feet"),
  40600. name: "Dick",
  40601. image: {
  40602. source: "./media/characters/fox/dick.svg"
  40603. }
  40604. },
  40605. foot: {
  40606. height: math.unit(1, "feet"),
  40607. name: "Foot",
  40608. image: {
  40609. source: "./media/characters/fox/foot.svg"
  40610. }
  40611. },
  40612. paw: {
  40613. height: math.unit(0.92, "feet"),
  40614. name: "Paw",
  40615. image: {
  40616. source: "./media/characters/fox/paw.svg"
  40617. }
  40618. },
  40619. },
  40620. [
  40621. {
  40622. name: "Small",
  40623. height: math.unit(3, "inches")
  40624. },
  40625. {
  40626. name: "\"Realistic\"",
  40627. height: math.unit(7, "feet")
  40628. },
  40629. {
  40630. name: "Normal",
  40631. height: math.unit(150, "feet"),
  40632. default: true
  40633. },
  40634. {
  40635. name: "BIG",
  40636. height: math.unit(1200, "feet")
  40637. },
  40638. {
  40639. name: "👀",
  40640. height: math.unit(5, "miles")
  40641. },
  40642. {
  40643. name: "👀👀👀",
  40644. height: math.unit(64, "miles")
  40645. },
  40646. ]
  40647. ))
  40648. characterMakers.push(() => makeCharacter(
  40649. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40650. {
  40651. front: {
  40652. height: math.unit(625, "feet"),
  40653. name: "Front",
  40654. image: {
  40655. source: "./media/characters/asonja-rossa/front.svg",
  40656. extra: 1833/1686,
  40657. bottom: 24/1857
  40658. }
  40659. },
  40660. back: {
  40661. height: math.unit(625, "feet"),
  40662. name: "Back",
  40663. image: {
  40664. source: "./media/characters/asonja-rossa/back.svg",
  40665. extra: 1852/1753,
  40666. bottom: 26/1878
  40667. }
  40668. },
  40669. },
  40670. [
  40671. {
  40672. name: "Macro",
  40673. height: math.unit(625, "feet"),
  40674. default: true
  40675. },
  40676. ]
  40677. ))
  40678. characterMakers.push(() => makeCharacter(
  40679. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40680. {
  40681. side: {
  40682. height: math.unit(8, "feet"),
  40683. name: "Side",
  40684. image: {
  40685. source: "./media/characters/rezukii/side.svg",
  40686. extra: 979/542,
  40687. bottom: 87/1066
  40688. }
  40689. },
  40690. sitting: {
  40691. height: math.unit(14.6, "feet"),
  40692. name: "Sitting",
  40693. image: {
  40694. source: "./media/characters/rezukii/sitting.svg",
  40695. extra: 1023/813,
  40696. bottom: 45/1068
  40697. }
  40698. },
  40699. },
  40700. [
  40701. {
  40702. name: "Tiny",
  40703. height: math.unit(2, "feet")
  40704. },
  40705. {
  40706. name: "Smol",
  40707. height: math.unit(4, "feet")
  40708. },
  40709. {
  40710. name: "Normal",
  40711. height: math.unit(8, "feet"),
  40712. default: true
  40713. },
  40714. {
  40715. name: "Big",
  40716. height: math.unit(12, "feet")
  40717. },
  40718. {
  40719. name: "Macro",
  40720. height: math.unit(30, "feet")
  40721. },
  40722. ]
  40723. ))
  40724. characterMakers.push(() => makeCharacter(
  40725. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40726. {
  40727. front: {
  40728. height: math.unit(14, "feet"),
  40729. weight: math.unit(9.5, "tonnes"),
  40730. name: "Front",
  40731. image: {
  40732. source: "./media/characters/dawnheart/front.svg",
  40733. extra: 2792/2675,
  40734. bottom: 64/2856
  40735. }
  40736. },
  40737. },
  40738. [
  40739. {
  40740. name: "Normal",
  40741. height: math.unit(14, "feet"),
  40742. default: true
  40743. },
  40744. ]
  40745. ))
  40746. characterMakers.push(() => makeCharacter(
  40747. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40748. {
  40749. front: {
  40750. height: math.unit(1.7, "m"),
  40751. name: "Front",
  40752. image: {
  40753. source: "./media/characters/gladi/front.svg",
  40754. extra: 1460/1362,
  40755. bottom: 19/1479
  40756. }
  40757. },
  40758. back: {
  40759. height: math.unit(1.7, "m"),
  40760. name: "Back",
  40761. image: {
  40762. source: "./media/characters/gladi/back.svg",
  40763. extra: 1459/1357,
  40764. bottom: 12/1471
  40765. }
  40766. },
  40767. feral: {
  40768. height: math.unit(2.05, "m"),
  40769. name: "Feral",
  40770. image: {
  40771. source: "./media/characters/gladi/feral.svg",
  40772. extra: 821/557,
  40773. bottom: 91/912
  40774. }
  40775. },
  40776. },
  40777. [
  40778. {
  40779. name: "Shortest",
  40780. height: math.unit(70, "cm")
  40781. },
  40782. {
  40783. name: "Normal",
  40784. height: math.unit(1.7, "m")
  40785. },
  40786. {
  40787. name: "Macro",
  40788. height: math.unit(10, "m"),
  40789. default: true
  40790. },
  40791. {
  40792. name: "Tallest",
  40793. height: math.unit(200, "m")
  40794. },
  40795. ]
  40796. ))
  40797. characterMakers.push(() => makeCharacter(
  40798. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40799. {
  40800. front: {
  40801. height: math.unit(5 + 7/12, "feet"),
  40802. weight: math.unit(2, "tons"),
  40803. name: "Front",
  40804. image: {
  40805. source: "./media/characters/erdno/front.svg",
  40806. extra: 1234/1129,
  40807. bottom: 35/1269
  40808. }
  40809. },
  40810. angled: {
  40811. height: math.unit(5 + 7/12, "feet"),
  40812. weight: math.unit(2, "tons"),
  40813. name: "Angled",
  40814. image: {
  40815. source: "./media/characters/erdno/angled.svg",
  40816. extra: 1185/1139,
  40817. bottom: 36/1221
  40818. }
  40819. },
  40820. side: {
  40821. height: math.unit(5 + 7/12, "feet"),
  40822. weight: math.unit(2, "tons"),
  40823. name: "Side",
  40824. image: {
  40825. source: "./media/characters/erdno/side.svg",
  40826. extra: 1191/1144,
  40827. bottom: 40/1231
  40828. }
  40829. },
  40830. back: {
  40831. height: math.unit(5 + 7/12, "feet"),
  40832. weight: math.unit(2, "tons"),
  40833. name: "Back",
  40834. image: {
  40835. source: "./media/characters/erdno/back.svg",
  40836. extra: 1202/1146,
  40837. bottom: 17/1219
  40838. }
  40839. },
  40840. frontNsfw: {
  40841. height: math.unit(5 + 7/12, "feet"),
  40842. weight: math.unit(2, "tons"),
  40843. name: "Front (NSFW)",
  40844. image: {
  40845. source: "./media/characters/erdno/front-nsfw.svg",
  40846. extra: 1234/1129,
  40847. bottom: 35/1269
  40848. }
  40849. },
  40850. angledNsfw: {
  40851. height: math.unit(5 + 7/12, "feet"),
  40852. weight: math.unit(2, "tons"),
  40853. name: "Angled (NSFW)",
  40854. image: {
  40855. source: "./media/characters/erdno/angled-nsfw.svg",
  40856. extra: 1185/1139,
  40857. bottom: 36/1221
  40858. }
  40859. },
  40860. sideNsfw: {
  40861. height: math.unit(5 + 7/12, "feet"),
  40862. weight: math.unit(2, "tons"),
  40863. name: "Side (NSFW)",
  40864. image: {
  40865. source: "./media/characters/erdno/side-nsfw.svg",
  40866. extra: 1191/1144,
  40867. bottom: 40/1231
  40868. }
  40869. },
  40870. backNsfw: {
  40871. height: math.unit(5 + 7/12, "feet"),
  40872. weight: math.unit(2, "tons"),
  40873. name: "Back (NSFW)",
  40874. image: {
  40875. source: "./media/characters/erdno/back-nsfw.svg",
  40876. extra: 1202/1146,
  40877. bottom: 17/1219
  40878. }
  40879. },
  40880. frontHyper: {
  40881. height: math.unit(5 + 7/12, "feet"),
  40882. weight: math.unit(2, "tons"),
  40883. name: "Front (Hyper)",
  40884. image: {
  40885. source: "./media/characters/erdno/front-hyper.svg",
  40886. extra: 1298/1136,
  40887. bottom: 35/1333
  40888. }
  40889. },
  40890. },
  40891. [
  40892. {
  40893. name: "Normal",
  40894. height: math.unit(5 + 7/12, "feet"),
  40895. default: true
  40896. },
  40897. {
  40898. name: "Big",
  40899. height: math.unit(5.7, "meters")
  40900. },
  40901. {
  40902. name: "Macro",
  40903. height: math.unit(5.7, "kilometers")
  40904. },
  40905. {
  40906. name: "Megamacro",
  40907. height: math.unit(5.7, "earths")
  40908. },
  40909. ]
  40910. ))
  40911. characterMakers.push(() => makeCharacter(
  40912. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40913. {
  40914. front: {
  40915. height: math.unit(5 + 10/12, "feet"),
  40916. weight: math.unit(150, "lb"),
  40917. name: "Front",
  40918. image: {
  40919. source: "./media/characters/jamie/front.svg",
  40920. extra: 1908/1768,
  40921. bottom: 19/1927
  40922. }
  40923. },
  40924. },
  40925. [
  40926. {
  40927. name: "Minimum",
  40928. height: math.unit(2, "cm")
  40929. },
  40930. {
  40931. name: "Micro",
  40932. height: math.unit(3, "inches")
  40933. },
  40934. {
  40935. name: "Normal",
  40936. height: math.unit(5 + 10/12, "feet"),
  40937. default: true
  40938. },
  40939. {
  40940. name: "Macro",
  40941. height: math.unit(150, "feet")
  40942. },
  40943. {
  40944. name: "Megamacro",
  40945. height: math.unit(10000, "m")
  40946. },
  40947. ]
  40948. ))
  40949. characterMakers.push(() => makeCharacter(
  40950. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40951. {
  40952. front: {
  40953. height: math.unit(2, "meters"),
  40954. weight: math.unit(100, "kg"),
  40955. name: "Front",
  40956. image: {
  40957. source: "./media/characters/shiron/front.svg",
  40958. extra: 2103/1985,
  40959. bottom: 98/2201
  40960. }
  40961. },
  40962. back: {
  40963. height: math.unit(2, "meters"),
  40964. weight: math.unit(100, "kg"),
  40965. name: "Back",
  40966. image: {
  40967. source: "./media/characters/shiron/back.svg",
  40968. extra: 2110/2015,
  40969. bottom: 89/2199
  40970. }
  40971. },
  40972. hand: {
  40973. height: math.unit(0.96, "feet"),
  40974. name: "Hand",
  40975. image: {
  40976. source: "./media/characters/shiron/hand.svg"
  40977. }
  40978. },
  40979. foot: {
  40980. height: math.unit(1.464, "feet"),
  40981. name: "Foot",
  40982. image: {
  40983. source: "./media/characters/shiron/foot.svg"
  40984. }
  40985. },
  40986. },
  40987. [
  40988. {
  40989. name: "Normal",
  40990. height: math.unit(2, "meters")
  40991. },
  40992. {
  40993. name: "Macro",
  40994. height: math.unit(500, "meters"),
  40995. default: true
  40996. },
  40997. {
  40998. name: "Megamacro",
  40999. height: math.unit(20, "km")
  41000. },
  41001. ]
  41002. ))
  41003. characterMakers.push(() => makeCharacter(
  41004. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41005. {
  41006. front: {
  41007. height: math.unit(6, "feet"),
  41008. name: "Front",
  41009. image: {
  41010. source: "./media/characters/sam/front.svg",
  41011. extra: 849/826,
  41012. bottom: 19/868
  41013. }
  41014. },
  41015. },
  41016. [
  41017. {
  41018. name: "Normal",
  41019. height: math.unit(6, "feet"),
  41020. default: true
  41021. },
  41022. ]
  41023. ))
  41024. characterMakers.push(() => makeCharacter(
  41025. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41026. {
  41027. front: {
  41028. height: math.unit(8 + 4/12, "feet"),
  41029. weight: math.unit(122, "kg"),
  41030. name: "Front",
  41031. image: {
  41032. source: "./media/characters/namori-kurogawa/front.svg",
  41033. extra: 1894/1576,
  41034. bottom: 34/1928
  41035. }
  41036. },
  41037. },
  41038. [
  41039. {
  41040. name: "Normal",
  41041. height: math.unit(8 + 4/12, "feet"),
  41042. default: true
  41043. },
  41044. ]
  41045. ))
  41046. characterMakers.push(() => makeCharacter(
  41047. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41048. {
  41049. front: {
  41050. height: math.unit(9, "feet"),
  41051. weight: math.unit(621, "lb"),
  41052. name: "Front",
  41053. image: {
  41054. source: "./media/characters/unmru/front.svg",
  41055. extra: 1853/1747,
  41056. bottom: 73/1926
  41057. }
  41058. },
  41059. side: {
  41060. height: math.unit(9, "feet"),
  41061. weight: math.unit(621, "lb"),
  41062. name: "Side",
  41063. image: {
  41064. source: "./media/characters/unmru/side.svg",
  41065. extra: 1781/1671,
  41066. bottom: 127/1908
  41067. }
  41068. },
  41069. back: {
  41070. height: math.unit(9, "feet"),
  41071. weight: math.unit(621, "lb"),
  41072. name: "Back",
  41073. image: {
  41074. source: "./media/characters/unmru/back.svg",
  41075. extra: 1894/1765,
  41076. bottom: 75/1969
  41077. }
  41078. },
  41079. dick: {
  41080. height: math.unit(3, "feet"),
  41081. weight: math.unit(35, "lb"),
  41082. name: "Dick",
  41083. image: {
  41084. source: "./media/characters/unmru/dick.svg"
  41085. }
  41086. },
  41087. },
  41088. [
  41089. {
  41090. name: "Normal",
  41091. height: math.unit(9, "feet")
  41092. },
  41093. {
  41094. name: "Natural",
  41095. height: math.unit(27, "feet"),
  41096. default: true
  41097. },
  41098. {
  41099. name: "Giant",
  41100. height: math.unit(90, "feet")
  41101. },
  41102. {
  41103. name: "Kaiju",
  41104. height: math.unit(270, "feet")
  41105. },
  41106. {
  41107. name: "Macro",
  41108. height: math.unit(900, "feet")
  41109. },
  41110. {
  41111. name: "Macro+",
  41112. height: math.unit(2700, "feet")
  41113. },
  41114. {
  41115. name: "Megamacro",
  41116. height: math.unit(9000, "feet")
  41117. },
  41118. {
  41119. name: "City-Crushing",
  41120. height: math.unit(27000, "feet")
  41121. },
  41122. {
  41123. name: "Mountain-Mashing",
  41124. height: math.unit(90000, "feet")
  41125. },
  41126. {
  41127. name: "Earth-Eclipsing",
  41128. height: math.unit(2.7e8, "feet")
  41129. },
  41130. {
  41131. name: "Sol-Swallowing",
  41132. height: math.unit(9e10, "feet")
  41133. },
  41134. {
  41135. name: "Majoris-Munching",
  41136. height: math.unit(2.7e13, "feet")
  41137. },
  41138. ]
  41139. ))
  41140. characterMakers.push(() => makeCharacter(
  41141. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41142. {
  41143. front: {
  41144. height: math.unit(1, "inch"),
  41145. name: "Front",
  41146. image: {
  41147. source: "./media/characters/squeaks-mouse/front.svg",
  41148. extra: 352/308,
  41149. bottom: 25/377
  41150. }
  41151. },
  41152. },
  41153. [
  41154. {
  41155. name: "Micro",
  41156. height: math.unit(1, "inch"),
  41157. default: true
  41158. },
  41159. ]
  41160. ))
  41161. characterMakers.push(() => makeCharacter(
  41162. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41163. {
  41164. side: {
  41165. height: math.unit(35, "feet"),
  41166. name: "Side",
  41167. image: {
  41168. source: "./media/characters/sayko/side.svg",
  41169. extra: 1697/1021,
  41170. bottom: 82/1779
  41171. }
  41172. },
  41173. head: {
  41174. height: math.unit(16, "feet"),
  41175. name: "Head",
  41176. image: {
  41177. source: "./media/characters/sayko/head.svg"
  41178. }
  41179. },
  41180. forepaw: {
  41181. height: math.unit(7.85, "feet"),
  41182. name: "Forepaw",
  41183. image: {
  41184. source: "./media/characters/sayko/forepaw.svg"
  41185. }
  41186. },
  41187. hindpaw: {
  41188. height: math.unit(8.8, "feet"),
  41189. name: "Hindpaw",
  41190. image: {
  41191. source: "./media/characters/sayko/hindpaw.svg"
  41192. }
  41193. },
  41194. },
  41195. [
  41196. {
  41197. name: "Normal",
  41198. height: math.unit(35, "feet"),
  41199. default: true
  41200. },
  41201. {
  41202. name: "Colossus",
  41203. height: math.unit(100, "meters")
  41204. },
  41205. {
  41206. name: "\"Small\" Deity",
  41207. height: math.unit(1, "km")
  41208. },
  41209. {
  41210. name: "\"Large\" Deity",
  41211. height: math.unit(15, "km")
  41212. },
  41213. ]
  41214. ))
  41215. characterMakers.push(() => makeCharacter(
  41216. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41217. {
  41218. front: {
  41219. height: math.unit(6, "feet"),
  41220. weight: math.unit(250, "lb"),
  41221. name: "Front",
  41222. image: {
  41223. source: "./media/characters/mukiro/front.svg",
  41224. extra: 1368/1310,
  41225. bottom: 34/1402
  41226. }
  41227. },
  41228. },
  41229. [
  41230. {
  41231. name: "Normal",
  41232. height: math.unit(6, "feet"),
  41233. default: true
  41234. },
  41235. ]
  41236. ))
  41237. characterMakers.push(() => makeCharacter(
  41238. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41239. {
  41240. front: {
  41241. height: math.unit(12 + 4/12, "feet"),
  41242. name: "Front",
  41243. image: {
  41244. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41245. extra: 1346/1311,
  41246. bottom: 65/1411
  41247. }
  41248. },
  41249. },
  41250. [
  41251. {
  41252. name: "Base",
  41253. height: math.unit(12 + 4/12, "feet"),
  41254. default: true
  41255. },
  41256. {
  41257. name: "Macro",
  41258. height: math.unit(150, "feet")
  41259. },
  41260. {
  41261. name: "Mega",
  41262. height: math.unit(2, "miles")
  41263. },
  41264. {
  41265. name: "Demi God",
  41266. height: math.unit(4, "AU")
  41267. },
  41268. {
  41269. name: "God Size",
  41270. height: math.unit(1, "universe")
  41271. },
  41272. ]
  41273. ))
  41274. characterMakers.push(() => makeCharacter(
  41275. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41276. {
  41277. front: {
  41278. height: math.unit(3 + 3/12, "feet"),
  41279. weight: math.unit(88, "lb"),
  41280. name: "Front",
  41281. image: {
  41282. source: "./media/characters/trey/front.svg",
  41283. extra: 1815/1509,
  41284. bottom: 60/1875
  41285. }
  41286. },
  41287. },
  41288. [
  41289. {
  41290. name: "Normal",
  41291. height: math.unit(3 + 3/12, "feet"),
  41292. default: true
  41293. },
  41294. ]
  41295. ))
  41296. characterMakers.push(() => makeCharacter(
  41297. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41298. {
  41299. front: {
  41300. height: math.unit(4, "meters"),
  41301. name: "Front",
  41302. image: {
  41303. source: "./media/characters/adelonda/front.svg",
  41304. extra: 1077/982,
  41305. bottom: 39/1116
  41306. }
  41307. },
  41308. back: {
  41309. height: math.unit(4, "meters"),
  41310. name: "Back",
  41311. image: {
  41312. source: "./media/characters/adelonda/back.svg",
  41313. extra: 1105/1003,
  41314. bottom: 25/1130
  41315. }
  41316. },
  41317. feral: {
  41318. height: math.unit(40/1.5, "meters"),
  41319. name: "Feral",
  41320. image: {
  41321. source: "./media/characters/adelonda/feral.svg",
  41322. extra: 597/271,
  41323. bottom: 387/984
  41324. }
  41325. },
  41326. },
  41327. [
  41328. {
  41329. name: "Normal",
  41330. height: math.unit(4, "meters"),
  41331. default: true
  41332. },
  41333. ]
  41334. ))
  41335. characterMakers.push(() => makeCharacter(
  41336. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41337. {
  41338. front: {
  41339. height: math.unit(8 + 4/12, "feet"),
  41340. weight: math.unit(670, "lb"),
  41341. name: "Front",
  41342. image: {
  41343. source: "./media/characters/acadiel/front.svg",
  41344. extra: 1901/1595,
  41345. bottom: 142/2043
  41346. }
  41347. },
  41348. },
  41349. [
  41350. {
  41351. name: "Normal",
  41352. height: math.unit(8 + 4/12, "feet"),
  41353. default: true
  41354. },
  41355. {
  41356. name: "Macro",
  41357. height: math.unit(200, "feet")
  41358. },
  41359. ]
  41360. ))
  41361. characterMakers.push(() => makeCharacter(
  41362. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41363. {
  41364. front: {
  41365. height: math.unit(6 + 2/12, "feet"),
  41366. weight: math.unit(185, "lb"),
  41367. name: "Front",
  41368. image: {
  41369. source: "./media/characters/kayne-ein/front.svg",
  41370. extra: 1780/1560,
  41371. bottom: 81/1861
  41372. }
  41373. },
  41374. },
  41375. [
  41376. {
  41377. name: "Normal",
  41378. height: math.unit(6 + 2/12, "feet"),
  41379. default: true
  41380. },
  41381. {
  41382. name: "Transformation Stage",
  41383. height: math.unit(15, "feet")
  41384. },
  41385. {
  41386. name: "Macro",
  41387. height: math.unit(150, "feet")
  41388. },
  41389. {
  41390. name: "Earth's Shadow",
  41391. height: math.unit(6200, "miles")
  41392. },
  41393. {
  41394. name: "Universal Demon",
  41395. height: math.unit(28e9, "parsecs")
  41396. },
  41397. {
  41398. name: "Multiverse God",
  41399. height: math.unit(3, "multiverses")
  41400. },
  41401. ]
  41402. ))
  41403. characterMakers.push(() => makeCharacter(
  41404. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41405. {
  41406. front: {
  41407. height: math.unit(5 + 5/12, "feet"),
  41408. name: "Front",
  41409. image: {
  41410. source: "./media/characters/fawn/front.svg",
  41411. extra: 1873/1731,
  41412. bottom: 95/1968
  41413. }
  41414. },
  41415. back: {
  41416. height: math.unit(5 + 5/12, "feet"),
  41417. name: "Back",
  41418. image: {
  41419. source: "./media/characters/fawn/back.svg",
  41420. extra: 1813/1700,
  41421. bottom: 14/1827
  41422. }
  41423. },
  41424. hoof: {
  41425. height: math.unit(1.45, "feet"),
  41426. name: "Hoof",
  41427. image: {
  41428. source: "./media/characters/fawn/hoof.svg"
  41429. }
  41430. },
  41431. },
  41432. [
  41433. {
  41434. name: "Normal",
  41435. height: math.unit(5 + 5/12, "feet"),
  41436. default: true
  41437. },
  41438. ]
  41439. ))
  41440. characterMakers.push(() => makeCharacter(
  41441. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41442. {
  41443. front: {
  41444. height: math.unit(2 + 5/12, "feet"),
  41445. name: "Front",
  41446. image: {
  41447. source: "./media/characters/orion/front.svg",
  41448. extra: 1366/1304,
  41449. bottom: 43/1409
  41450. }
  41451. },
  41452. paw: {
  41453. height: math.unit(0.52, "feet"),
  41454. name: "Paw",
  41455. image: {
  41456. source: "./media/characters/orion/paw.svg"
  41457. }
  41458. },
  41459. },
  41460. [
  41461. {
  41462. name: "Normal",
  41463. height: math.unit(2 + 5/12, "feet"),
  41464. default: true
  41465. },
  41466. ]
  41467. ))
  41468. characterMakers.push(() => makeCharacter(
  41469. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41470. {
  41471. front: {
  41472. height: math.unit(5 + 10/12, "feet"),
  41473. name: "Front",
  41474. image: {
  41475. source: "./media/characters/vera/front.svg",
  41476. extra: 1680/1575,
  41477. bottom: 49/1729
  41478. }
  41479. },
  41480. back: {
  41481. height: math.unit(5 + 10/12, "feet"),
  41482. name: "Back",
  41483. image: {
  41484. source: "./media/characters/vera/back.svg",
  41485. extra: 1700/1588,
  41486. bottom: 18/1718
  41487. }
  41488. },
  41489. arcanine: {
  41490. height: math.unit(6 + 8/12, "feet"),
  41491. name: "Arcanine",
  41492. image: {
  41493. source: "./media/characters/vera/arcanine.svg",
  41494. extra: 1590/1511,
  41495. bottom: 71/1661
  41496. }
  41497. },
  41498. maw: {
  41499. height: math.unit(0.82, "feet"),
  41500. name: "Maw",
  41501. image: {
  41502. source: "./media/characters/vera/maw.svg"
  41503. }
  41504. },
  41505. mawArcanine: {
  41506. height: math.unit(0.97, "feet"),
  41507. name: "Maw (Arcanine)",
  41508. image: {
  41509. source: "./media/characters/vera/maw-arcanine.svg"
  41510. }
  41511. },
  41512. paw: {
  41513. height: math.unit(0.75, "feet"),
  41514. name: "Paw",
  41515. image: {
  41516. source: "./media/characters/vera/paw.svg"
  41517. }
  41518. },
  41519. pawprint: {
  41520. height: math.unit(0.52, "feet"),
  41521. name: "Pawprint",
  41522. image: {
  41523. source: "./media/characters/vera/pawprint.svg"
  41524. }
  41525. },
  41526. },
  41527. [
  41528. {
  41529. name: "Normal",
  41530. height: math.unit(5 + 10/12, "feet"),
  41531. default: true
  41532. },
  41533. {
  41534. name: "Macro",
  41535. height: math.unit(75, "feet")
  41536. },
  41537. ]
  41538. ))
  41539. characterMakers.push(() => makeCharacter(
  41540. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41541. {
  41542. front: {
  41543. height: math.unit(4, "feet"),
  41544. weight: math.unit(40, "lb"),
  41545. name: "Front",
  41546. image: {
  41547. source: "./media/characters/orvan-rabbit/front.svg",
  41548. extra: 1896/1642,
  41549. bottom: 29/1925
  41550. }
  41551. },
  41552. },
  41553. [
  41554. {
  41555. name: "Normal",
  41556. height: math.unit(4, "feet"),
  41557. default: true
  41558. },
  41559. ]
  41560. ))
  41561. characterMakers.push(() => makeCharacter(
  41562. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41563. {
  41564. front: {
  41565. height: math.unit(6, "feet"),
  41566. weight: math.unit(168, "lb"),
  41567. name: "Front",
  41568. image: {
  41569. source: "./media/characters/lisa/front.svg",
  41570. extra: 2065/1867,
  41571. bottom: 46/2111
  41572. }
  41573. },
  41574. back: {
  41575. height: math.unit(6, "feet"),
  41576. weight: math.unit(168, "lb"),
  41577. name: "Back",
  41578. image: {
  41579. source: "./media/characters/lisa/back.svg",
  41580. extra: 1982/1838,
  41581. bottom: 29/2011
  41582. }
  41583. },
  41584. maw: {
  41585. height: math.unit(0.81, "feet"),
  41586. name: "Maw",
  41587. image: {
  41588. source: "./media/characters/lisa/maw.svg"
  41589. }
  41590. },
  41591. paw: {
  41592. height: math.unit(0.9, "feet"),
  41593. name: "Paw",
  41594. image: {
  41595. source: "./media/characters/lisa/paw.svg"
  41596. }
  41597. },
  41598. caribousune: {
  41599. height: math.unit(7 + 2/12, "feet"),
  41600. weight: math.unit(268, "lb"),
  41601. name: "Caribousune",
  41602. image: {
  41603. source: "./media/characters/lisa/caribousune.svg",
  41604. extra: 1843/1633,
  41605. bottom: 29/1872
  41606. }
  41607. },
  41608. frontCaribousune: {
  41609. height: math.unit(7 + 2/12, "feet"),
  41610. weight: math.unit(268, "lb"),
  41611. name: "Front (Caribousune)",
  41612. image: {
  41613. source: "./media/characters/lisa/front-caribousune.svg",
  41614. extra: 1818/1638,
  41615. bottom: 52/1870
  41616. }
  41617. },
  41618. sideCaribousune: {
  41619. height: math.unit(7 + 2/12, "feet"),
  41620. weight: math.unit(268, "lb"),
  41621. name: "Side (Caribousune)",
  41622. image: {
  41623. source: "./media/characters/lisa/side-caribousune.svg",
  41624. extra: 1851/1635,
  41625. bottom: 16/1867
  41626. }
  41627. },
  41628. backCaribousune: {
  41629. height: math.unit(7 + 2/12, "feet"),
  41630. weight: math.unit(268, "lb"),
  41631. name: "Back (Caribousune)",
  41632. image: {
  41633. source: "./media/characters/lisa/back-caribousune.svg",
  41634. extra: 1801/1604,
  41635. bottom: 44/1845
  41636. }
  41637. },
  41638. caribou: {
  41639. height: math.unit(7 + 2/12, "feet"),
  41640. weight: math.unit(268, "lb"),
  41641. name: "Caribou",
  41642. image: {
  41643. source: "./media/characters/lisa/caribou.svg",
  41644. extra: 1843/1633,
  41645. bottom: 29/1872
  41646. }
  41647. },
  41648. frontCaribou: {
  41649. height: math.unit(7 + 2/12, "feet"),
  41650. weight: math.unit(268, "lb"),
  41651. name: "Front (Caribou)",
  41652. image: {
  41653. source: "./media/characters/lisa/front-caribou.svg",
  41654. extra: 1818/1638,
  41655. bottom: 52/1870
  41656. }
  41657. },
  41658. sideCaribou: {
  41659. height: math.unit(7 + 2/12, "feet"),
  41660. weight: math.unit(268, "lb"),
  41661. name: "Side (Caribou)",
  41662. image: {
  41663. source: "./media/characters/lisa/side-caribou.svg",
  41664. extra: 1851/1635,
  41665. bottom: 16/1867
  41666. }
  41667. },
  41668. backCaribou: {
  41669. height: math.unit(7 + 2/12, "feet"),
  41670. weight: math.unit(268, "lb"),
  41671. name: "Back (Caribou)",
  41672. image: {
  41673. source: "./media/characters/lisa/back-caribou.svg",
  41674. extra: 1801/1604,
  41675. bottom: 44/1845
  41676. }
  41677. },
  41678. mawCaribou: {
  41679. height: math.unit(1.45, "feet"),
  41680. name: "Maw (Caribou)",
  41681. image: {
  41682. source: "./media/characters/lisa/maw-caribou.svg"
  41683. }
  41684. },
  41685. mawCaribousune: {
  41686. height: math.unit(1.45, "feet"),
  41687. name: "Maw (Caribousune)",
  41688. image: {
  41689. source: "./media/characters/lisa/maw-caribousune.svg"
  41690. }
  41691. },
  41692. pawCaribousune: {
  41693. height: math.unit(1.61, "feet"),
  41694. name: "Paw (Caribou)",
  41695. image: {
  41696. source: "./media/characters/lisa/paw-caribousune.svg"
  41697. }
  41698. },
  41699. },
  41700. [
  41701. {
  41702. name: "Normal",
  41703. height: math.unit(6, "feet")
  41704. },
  41705. {
  41706. name: "God Size",
  41707. height: math.unit(72, "feet"),
  41708. default: true
  41709. },
  41710. {
  41711. name: "Towering",
  41712. height: math.unit(288, "feet")
  41713. },
  41714. {
  41715. name: "City Size",
  41716. height: math.unit(48384, "feet")
  41717. },
  41718. {
  41719. name: "Continental",
  41720. height: math.unit(4200, "miles")
  41721. },
  41722. {
  41723. name: "Planet Eater",
  41724. height: math.unit(42, "earths")
  41725. },
  41726. {
  41727. name: "Star Swallower",
  41728. height: math.unit(42, "solarradii")
  41729. },
  41730. {
  41731. name: "System Swallower",
  41732. height: math.unit(84000, "AU")
  41733. },
  41734. {
  41735. name: "Galaxy Gobbler",
  41736. height: math.unit(42, "galaxies")
  41737. },
  41738. {
  41739. name: "Universe Devourer",
  41740. height: math.unit(42, "universes")
  41741. },
  41742. {
  41743. name: "Multiverse Muncher",
  41744. height: math.unit(42, "multiverses")
  41745. },
  41746. ]
  41747. ))
  41748. characterMakers.push(() => makeCharacter(
  41749. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41750. {
  41751. front: {
  41752. height: math.unit(36, "feet"),
  41753. name: "Front",
  41754. image: {
  41755. source: "./media/characters/shadow-rat/front.svg",
  41756. extra: 1845/1758,
  41757. bottom: 83/1928
  41758. }
  41759. },
  41760. },
  41761. [
  41762. {
  41763. name: "Macro",
  41764. height: math.unit(36, "feet"),
  41765. default: true
  41766. },
  41767. ]
  41768. ))
  41769. characterMakers.push(() => makeCharacter(
  41770. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41771. {
  41772. side: {
  41773. height: math.unit(8, "feet"),
  41774. weight: math.unit(2630, "lb"),
  41775. name: "Side",
  41776. image: {
  41777. source: "./media/characters/torallia/side.svg",
  41778. extra: 2164/2021,
  41779. bottom: 371/2535
  41780. }
  41781. },
  41782. },
  41783. [
  41784. {
  41785. name: "Mortal Interaction",
  41786. height: math.unit(8, "feet")
  41787. },
  41788. {
  41789. name: "Natural",
  41790. height: math.unit(24, "feet"),
  41791. default: true
  41792. },
  41793. {
  41794. name: "Giant",
  41795. height: math.unit(80, "feet")
  41796. },
  41797. {
  41798. name: "Kaiju",
  41799. height: math.unit(240, "feet")
  41800. },
  41801. {
  41802. name: "Macro",
  41803. height: math.unit(800, "feet")
  41804. },
  41805. {
  41806. name: "Macro+",
  41807. height: math.unit(2400, "feet")
  41808. },
  41809. {
  41810. name: "Macro++",
  41811. height: math.unit(8000, "feet")
  41812. },
  41813. {
  41814. name: "City-Crushing",
  41815. height: math.unit(24000, "feet")
  41816. },
  41817. {
  41818. name: "Mountain-Mashing",
  41819. height: math.unit(80000, "feet")
  41820. },
  41821. {
  41822. name: "District Demolisher",
  41823. height: math.unit(240000, "feet")
  41824. },
  41825. {
  41826. name: "Tri-County Terror",
  41827. height: math.unit(800000, "feet")
  41828. },
  41829. {
  41830. name: "State Smasher",
  41831. height: math.unit(2.4e6, "feet")
  41832. },
  41833. {
  41834. name: "Nation Nemesis",
  41835. height: math.unit(8e6, "feet")
  41836. },
  41837. {
  41838. name: "Continent Cracker",
  41839. height: math.unit(2.4e7, "feet")
  41840. },
  41841. {
  41842. name: "Planet-Pillaging",
  41843. height: math.unit(8e7, "feet")
  41844. },
  41845. {
  41846. name: "Earth-Eclipsing",
  41847. height: math.unit(2.4e8, "feet")
  41848. },
  41849. {
  41850. name: "Jovian-Jostling",
  41851. height: math.unit(8e8, "feet")
  41852. },
  41853. {
  41854. name: "Gas Giant Gulper",
  41855. height: math.unit(2.4e9, "feet")
  41856. },
  41857. {
  41858. name: "Astral Annihilator",
  41859. height: math.unit(8e9, "feet")
  41860. },
  41861. {
  41862. name: "Celestial Conqueror",
  41863. height: math.unit(2.4e10, "feet")
  41864. },
  41865. {
  41866. name: "Sol-Swallowing",
  41867. height: math.unit(8e10, "feet")
  41868. },
  41869. {
  41870. name: "Hunter of the Heavens",
  41871. height: math.unit(2.4e13, "feet")
  41872. },
  41873. ]
  41874. ))
  41875. characterMakers.push(() => makeCharacter(
  41876. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41877. {
  41878. front: {
  41879. height: math.unit(10, "feet"),
  41880. weight: math.unit(844, "kilograms"),
  41881. name: "Front",
  41882. image: {
  41883. source: "./media/characters/rebecca-pawlson/front.svg",
  41884. extra: 1196/1099,
  41885. bottom: 81/1277
  41886. },
  41887. extraAttributes: {
  41888. "pawSize": {
  41889. name: "Paw Size",
  41890. power: 2,
  41891. type: "area",
  41892. base: math.unit(0.2 * 0.375, "meters^2")
  41893. },
  41894. "handSize": {
  41895. name: "Hand Size",
  41896. power: 2,
  41897. type: "area",
  41898. base: math.unit(0.2 * 0.35, "meters^2")
  41899. },
  41900. "breastDiameter": {
  41901. name: "Breast Diameter",
  41902. power: 1,
  41903. type: "length",
  41904. base: math.unit(0.5, "meters")
  41905. },
  41906. "breastVolume": {
  41907. name: "Breast Volume",
  41908. power: 3,
  41909. type: "volume",
  41910. base: math.unit(0.065, "m^3")
  41911. },
  41912. "breastMass": {
  41913. name: "Breast Mass",
  41914. power: 3,
  41915. type: "mass",
  41916. base: math.unit(65, "kg")
  41917. },
  41918. "nippleDiameter": {
  41919. name: "Nipple Diameter",
  41920. power: 1,
  41921. type: "length",
  41922. base: math.unit(0.1, "meters")
  41923. },
  41924. }
  41925. },
  41926. back: {
  41927. height: math.unit(10, "feet"),
  41928. weight: math.unit(844, "kilograms"),
  41929. name: "Back",
  41930. image: {
  41931. source: "./media/characters/rebecca-pawlson/back.svg",
  41932. extra: 879/776,
  41933. bottom: 43/922
  41934. },
  41935. extraAttributes: {
  41936. "pawSize": {
  41937. name: "Paw Size",
  41938. power: 2,
  41939. type: "area",
  41940. base: math.unit(0.2 * 0.375, "meters^2")
  41941. },
  41942. "handSize": {
  41943. name: "Hand Size",
  41944. power: 2,
  41945. type: "area",
  41946. base: math.unit(0.2 * 0.35, "meters^2")
  41947. },
  41948. "breastDiameter": {
  41949. name: "Breast Diameter",
  41950. power: 1,
  41951. type: "length",
  41952. base: math.unit(0.5, "meters")
  41953. },
  41954. "breastVolume": {
  41955. name: "Breast Volume",
  41956. power: 3,
  41957. type: "volume",
  41958. base: math.unit(0.065, "m^3")
  41959. },
  41960. "breastMass": {
  41961. name: "Breast Mass",
  41962. power: 3,
  41963. type: "mass",
  41964. base: math.unit(65, "kg")
  41965. },
  41966. "nippleDiameter": {
  41967. name: "Nipple Diameter",
  41968. power: 1,
  41969. type: "length",
  41970. base: math.unit(0.1, "meters")
  41971. },
  41972. }
  41973. },
  41974. },
  41975. [
  41976. {
  41977. name: "Normal",
  41978. height: math.unit(6 + 8/12, "feet")
  41979. },
  41980. {
  41981. name: "Mini Macro",
  41982. height: math.unit(10, "feet"),
  41983. default: true
  41984. },
  41985. {
  41986. name: "Macro",
  41987. height: math.unit(100, "feet")
  41988. },
  41989. {
  41990. name: "Mega Macro",
  41991. height: math.unit(2500, "feet")
  41992. },
  41993. {
  41994. name: "Giga Macro",
  41995. height: math.unit(50, "miles")
  41996. },
  41997. ]
  41998. ))
  41999. characterMakers.push(() => makeCharacter(
  42000. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42001. {
  42002. front: {
  42003. height: math.unit(7 + 6/12, "feet"),
  42004. weight: math.unit(600, "lb"),
  42005. name: "Front",
  42006. image: {
  42007. source: "./media/characters/moxie-nova/front.svg",
  42008. extra: 1734/1652,
  42009. bottom: 41/1775
  42010. }
  42011. },
  42012. },
  42013. [
  42014. {
  42015. name: "Normal",
  42016. height: math.unit(7 + 6/12, "feet"),
  42017. default: true
  42018. },
  42019. ]
  42020. ))
  42021. characterMakers.push(() => makeCharacter(
  42022. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42023. {
  42024. goat: {
  42025. height: math.unit(4, "feet"),
  42026. weight: math.unit(180, "lb"),
  42027. name: "Goat",
  42028. image: {
  42029. source: "./media/characters/tiffany/goat.svg",
  42030. extra: 1845/1595,
  42031. bottom: 106/1951
  42032. }
  42033. },
  42034. front: {
  42035. height: math.unit(5, "feet"),
  42036. weight: math.unit(150, "lb"),
  42037. name: "Foxcoon",
  42038. image: {
  42039. source: "./media/characters/tiffany/foxcoon.svg",
  42040. extra: 1941/1845,
  42041. bottom: 58/1999
  42042. }
  42043. },
  42044. },
  42045. [
  42046. {
  42047. name: "Normal",
  42048. height: math.unit(5, "feet"),
  42049. default: true
  42050. },
  42051. ]
  42052. ))
  42053. characterMakers.push(() => makeCharacter(
  42054. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42055. {
  42056. front: {
  42057. height: math.unit(8, "feet"),
  42058. weight: math.unit(300, "lb"),
  42059. name: "Front",
  42060. image: {
  42061. source: "./media/characters/raxinath/front.svg",
  42062. extra: 1407/1309,
  42063. bottom: 39/1446
  42064. }
  42065. },
  42066. back: {
  42067. height: math.unit(8, "feet"),
  42068. weight: math.unit(300, "lb"),
  42069. name: "Back",
  42070. image: {
  42071. source: "./media/characters/raxinath/back.svg",
  42072. extra: 1405/1315,
  42073. bottom: 9/1414
  42074. }
  42075. },
  42076. },
  42077. [
  42078. {
  42079. name: "Speck",
  42080. height: math.unit(0.5, "nm")
  42081. },
  42082. {
  42083. name: "Micro",
  42084. height: math.unit(3, "inches")
  42085. },
  42086. {
  42087. name: "Kobold",
  42088. height: math.unit(3, "feet")
  42089. },
  42090. {
  42091. name: "Normal",
  42092. height: math.unit(8, "feet"),
  42093. default: true
  42094. },
  42095. {
  42096. name: "Giant",
  42097. height: math.unit(50, "feet")
  42098. },
  42099. {
  42100. name: "Macro",
  42101. height: math.unit(1000, "feet")
  42102. },
  42103. {
  42104. name: "Megamacro",
  42105. height: math.unit(1, "mile")
  42106. },
  42107. ]
  42108. ))
  42109. characterMakers.push(() => makeCharacter(
  42110. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42111. {
  42112. front: {
  42113. height: math.unit(10, "feet"),
  42114. weight: math.unit(1442, "lb"),
  42115. name: "Front",
  42116. image: {
  42117. source: "./media/characters/mal-dragon/front.svg",
  42118. extra: 1515/1444,
  42119. bottom: 113/1628
  42120. }
  42121. },
  42122. back: {
  42123. height: math.unit(10, "feet"),
  42124. weight: math.unit(1442, "lb"),
  42125. name: "Back",
  42126. image: {
  42127. source: "./media/characters/mal-dragon/back.svg",
  42128. extra: 1527/1434,
  42129. bottom: 25/1552
  42130. }
  42131. },
  42132. },
  42133. [
  42134. {
  42135. name: "Mortal Interaction",
  42136. height: math.unit(10, "feet"),
  42137. default: true
  42138. },
  42139. {
  42140. name: "Large",
  42141. height: math.unit(30, "feet")
  42142. },
  42143. {
  42144. name: "Kaiju",
  42145. height: math.unit(300, "feet")
  42146. },
  42147. {
  42148. name: "Megamacro",
  42149. height: math.unit(10000, "feet")
  42150. },
  42151. {
  42152. name: "Continent Cracker",
  42153. height: math.unit(30000000, "feet")
  42154. },
  42155. {
  42156. name: "Sol-Swallowing",
  42157. height: math.unit(1e11, "feet")
  42158. },
  42159. {
  42160. name: "Light Universal",
  42161. height: math.unit(5, "universes")
  42162. },
  42163. {
  42164. name: "Universe Atoms",
  42165. height: math.unit(1.829e9, "universes")
  42166. },
  42167. {
  42168. name: "Light Multiversal",
  42169. height: math.unit(5, "multiverses")
  42170. },
  42171. {
  42172. name: "Multiverse Atoms",
  42173. height: math.unit(1.829e9, "multiverses")
  42174. },
  42175. {
  42176. name: "Fabric of Time",
  42177. height: math.unit(1e262, "multiverses")
  42178. },
  42179. ]
  42180. ))
  42181. characterMakers.push(() => makeCharacter(
  42182. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42183. {
  42184. front: {
  42185. height: math.unit(9, "feet"),
  42186. weight: math.unit(1050, "lb"),
  42187. name: "Front",
  42188. image: {
  42189. source: "./media/characters/tabitha/front.svg",
  42190. extra: 2083/1994,
  42191. bottom: 68/2151
  42192. }
  42193. },
  42194. },
  42195. [
  42196. {
  42197. name: "Baseline",
  42198. height: math.unit(9, "feet"),
  42199. default: true
  42200. },
  42201. {
  42202. name: "Giant",
  42203. height: math.unit(90, "feet")
  42204. },
  42205. {
  42206. name: "Macro",
  42207. height: math.unit(900, "feet")
  42208. },
  42209. {
  42210. name: "Megamacro",
  42211. height: math.unit(9000, "feet")
  42212. },
  42213. {
  42214. name: "City-Crushing",
  42215. height: math.unit(27000, "feet")
  42216. },
  42217. {
  42218. name: "Mountain-Mashing",
  42219. height: math.unit(90000, "feet")
  42220. },
  42221. {
  42222. name: "Nation Nemesis",
  42223. height: math.unit(9e6, "feet")
  42224. },
  42225. {
  42226. name: "Continent Cracker",
  42227. height: math.unit(27e6, "feet")
  42228. },
  42229. {
  42230. name: "Earth-Eclipsing",
  42231. height: math.unit(2.7e8, "feet")
  42232. },
  42233. {
  42234. name: "Gas Giant Gulper",
  42235. height: math.unit(2.7e9, "feet")
  42236. },
  42237. {
  42238. name: "Sol-Swallowing",
  42239. height: math.unit(9e10, "feet")
  42240. },
  42241. {
  42242. name: "Galaxy Gulper",
  42243. height: math.unit(9, "galaxies")
  42244. },
  42245. {
  42246. name: "Cosmos Churner",
  42247. height: math.unit(9, "universes")
  42248. },
  42249. ]
  42250. ))
  42251. characterMakers.push(() => makeCharacter(
  42252. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42253. {
  42254. front: {
  42255. height: math.unit(160, "cm"),
  42256. weight: math.unit(55, "kg"),
  42257. name: "Front",
  42258. image: {
  42259. source: "./media/characters/tow/front.svg",
  42260. extra: 1751/1722,
  42261. bottom: 74/1825
  42262. }
  42263. },
  42264. },
  42265. [
  42266. {
  42267. name: "Norm",
  42268. height: math.unit(160, "cm")
  42269. },
  42270. {
  42271. name: "Casual",
  42272. height: math.unit(3200, "m"),
  42273. default: true
  42274. },
  42275. {
  42276. name: "Show-Off",
  42277. height: math.unit(160, "km")
  42278. },
  42279. ]
  42280. ))
  42281. characterMakers.push(() => makeCharacter(
  42282. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42283. {
  42284. front: {
  42285. height: math.unit(7 + 11/12, "feet"),
  42286. weight: math.unit(342.8, "lb"),
  42287. name: "Front",
  42288. image: {
  42289. source: "./media/characters/vivian-orca-dragon/front.svg",
  42290. extra: 1890/1865,
  42291. bottom: 28/1918
  42292. }
  42293. },
  42294. },
  42295. [
  42296. {
  42297. name: "Micro",
  42298. height: math.unit(5, "inches")
  42299. },
  42300. {
  42301. name: "Normal",
  42302. height: math.unit(7 + 11/12, "feet"),
  42303. default: true
  42304. },
  42305. {
  42306. name: "Macro",
  42307. height: math.unit(395 + 7/12, "feet")
  42308. },
  42309. ]
  42310. ))
  42311. characterMakers.push(() => makeCharacter(
  42312. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42313. {
  42314. side: {
  42315. height: math.unit(10, "feet"),
  42316. weight: math.unit(1442, "lb"),
  42317. name: "Side",
  42318. image: {
  42319. source: "./media/characters/lotherakon/side.svg",
  42320. extra: 1604/1497,
  42321. bottom: 89/1693
  42322. }
  42323. },
  42324. },
  42325. [
  42326. {
  42327. name: "Mortal Interaction",
  42328. height: math.unit(10, "feet")
  42329. },
  42330. {
  42331. name: "Large",
  42332. height: math.unit(30, "feet"),
  42333. default: true
  42334. },
  42335. {
  42336. name: "Giant",
  42337. height: math.unit(100, "feet")
  42338. },
  42339. {
  42340. name: "Kaiju",
  42341. height: math.unit(300, "feet")
  42342. },
  42343. {
  42344. name: "Macro",
  42345. height: math.unit(1000, "feet")
  42346. },
  42347. {
  42348. name: "Macro+",
  42349. height: math.unit(3000, "feet")
  42350. },
  42351. {
  42352. name: "Megamacro",
  42353. height: math.unit(10000, "feet")
  42354. },
  42355. {
  42356. name: "City-Crushing",
  42357. height: math.unit(30000, "feet")
  42358. },
  42359. {
  42360. name: "Continent Cracker",
  42361. height: math.unit(30e6, "feet")
  42362. },
  42363. {
  42364. name: "Earth Eclipsing",
  42365. height: math.unit(3e8, "feet")
  42366. },
  42367. {
  42368. name: "Gas Giant Gulper",
  42369. height: math.unit(3e9, "feet")
  42370. },
  42371. {
  42372. name: "Sol-Swallowing",
  42373. height: math.unit(1e11, "feet")
  42374. },
  42375. {
  42376. name: "System Swallower",
  42377. height: math.unit(3e14, "feet")
  42378. },
  42379. {
  42380. name: "Galaxy Gulper",
  42381. height: math.unit(10, "galaxies")
  42382. },
  42383. {
  42384. name: "Light Universal",
  42385. height: math.unit(5, "universes")
  42386. },
  42387. {
  42388. name: "Universe Palm",
  42389. height: math.unit(20, "universes")
  42390. },
  42391. {
  42392. name: "Light Multiversal",
  42393. height: math.unit(5, "multiverses")
  42394. },
  42395. {
  42396. name: "Multiverse Palm",
  42397. height: math.unit(20, "multiverses")
  42398. },
  42399. {
  42400. name: "Inferno Incarnate",
  42401. height: math.unit(1e7, "multiverses")
  42402. },
  42403. ]
  42404. ))
  42405. characterMakers.push(() => makeCharacter(
  42406. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42407. {
  42408. front: {
  42409. height: math.unit(8, "feet"),
  42410. weight: math.unit(1200, "lb"),
  42411. name: "Front",
  42412. image: {
  42413. source: "./media/characters/malithee/front.svg",
  42414. extra: 1675/1640,
  42415. bottom: 162/1837
  42416. }
  42417. },
  42418. },
  42419. [
  42420. {
  42421. name: "Mortal Interaction",
  42422. height: math.unit(8, "feet"),
  42423. default: true
  42424. },
  42425. {
  42426. name: "Large",
  42427. height: math.unit(24, "feet")
  42428. },
  42429. {
  42430. name: "Kaiju",
  42431. height: math.unit(240, "feet")
  42432. },
  42433. {
  42434. name: "Megamacro",
  42435. height: math.unit(8000, "feet")
  42436. },
  42437. {
  42438. name: "Continent Cracker",
  42439. height: math.unit(24e6, "feet")
  42440. },
  42441. {
  42442. name: "Earth-Eclipsing",
  42443. height: math.unit(2.4e8, "feet")
  42444. },
  42445. {
  42446. name: "Sol-Swallowing",
  42447. height: math.unit(8e10, "feet")
  42448. },
  42449. {
  42450. name: "Galaxy Gulper",
  42451. height: math.unit(8, "galaxies")
  42452. },
  42453. {
  42454. name: "Light Universal",
  42455. height: math.unit(4, "universes")
  42456. },
  42457. {
  42458. name: "Universe Atoms",
  42459. height: math.unit(1.829e9, "universes")
  42460. },
  42461. {
  42462. name: "Light Multiversal",
  42463. height: math.unit(4, "multiverses")
  42464. },
  42465. {
  42466. name: "Multiverse Atoms",
  42467. height: math.unit(1.829e9, "multiverses")
  42468. },
  42469. {
  42470. name: "Nigh-Omnipresence",
  42471. height: math.unit(8e261, "multiverses")
  42472. },
  42473. ]
  42474. ))
  42475. characterMakers.push(() => makeCharacter(
  42476. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42477. {
  42478. front: {
  42479. height: math.unit(10, "feet"),
  42480. weight: math.unit(1500, "lb"),
  42481. name: "Front",
  42482. image: {
  42483. source: "./media/characters/miles-thestia/front.svg",
  42484. extra: 1812/1727,
  42485. bottom: 86/1898
  42486. }
  42487. },
  42488. back: {
  42489. height: math.unit(10, "feet"),
  42490. weight: math.unit(1500, "lb"),
  42491. name: "Back",
  42492. image: {
  42493. source: "./media/characters/miles-thestia/back.svg",
  42494. extra: 1799/1690,
  42495. bottom: 47/1846
  42496. }
  42497. },
  42498. frontNsfw: {
  42499. height: math.unit(10, "feet"),
  42500. weight: math.unit(1500, "lb"),
  42501. name: "Front (NSFW)",
  42502. image: {
  42503. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42504. extra: 1812/1727,
  42505. bottom: 86/1898
  42506. }
  42507. },
  42508. },
  42509. [
  42510. {
  42511. name: "Mini-Macro",
  42512. height: math.unit(10, "feet"),
  42513. default: true
  42514. },
  42515. ]
  42516. ))
  42517. characterMakers.push(() => makeCharacter(
  42518. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42519. {
  42520. front: {
  42521. height: math.unit(25, "feet"),
  42522. name: "Front",
  42523. image: {
  42524. source: "./media/characters/titan-s-wulf/front.svg",
  42525. extra: 1560/1484,
  42526. bottom: 76/1636
  42527. }
  42528. },
  42529. },
  42530. [
  42531. {
  42532. name: "Smallest",
  42533. height: math.unit(25, "feet"),
  42534. default: true
  42535. },
  42536. {
  42537. name: "Normal",
  42538. height: math.unit(200, "feet")
  42539. },
  42540. {
  42541. name: "Macro",
  42542. height: math.unit(200000, "feet")
  42543. },
  42544. {
  42545. name: "Multiversal Original",
  42546. height: math.unit(10000, "multiverses")
  42547. },
  42548. ]
  42549. ))
  42550. characterMakers.push(() => makeCharacter(
  42551. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42552. {
  42553. front: {
  42554. height: math.unit(8, "feet"),
  42555. weight: math.unit(553, "lb"),
  42556. name: "Front",
  42557. image: {
  42558. source: "./media/characters/tawendeh/front.svg",
  42559. extra: 2365/2268,
  42560. bottom: 83/2448
  42561. }
  42562. },
  42563. frontClothed: {
  42564. height: math.unit(8, "feet"),
  42565. weight: math.unit(553, "lb"),
  42566. name: "Front (Clothed)",
  42567. image: {
  42568. source: "./media/characters/tawendeh/front-clothed.svg",
  42569. extra: 2365/2268,
  42570. bottom: 83/2448
  42571. }
  42572. },
  42573. back: {
  42574. height: math.unit(8, "feet"),
  42575. weight: math.unit(553, "lb"),
  42576. name: "Back",
  42577. image: {
  42578. source: "./media/characters/tawendeh/back.svg",
  42579. extra: 2397/2294,
  42580. bottom: 42/2439
  42581. }
  42582. },
  42583. },
  42584. [
  42585. {
  42586. name: "Mortal Interaction",
  42587. height: math.unit(8, "feet"),
  42588. default: true
  42589. },
  42590. {
  42591. name: "Giant",
  42592. height: math.unit(80, "feet")
  42593. },
  42594. {
  42595. name: "Macro",
  42596. height: math.unit(800, "feet")
  42597. },
  42598. {
  42599. name: "Megamacro",
  42600. height: math.unit(8000, "feet")
  42601. },
  42602. {
  42603. name: "City-Crushing",
  42604. height: math.unit(24000, "feet")
  42605. },
  42606. {
  42607. name: "Mountain-Mashing",
  42608. height: math.unit(80000, "feet")
  42609. },
  42610. {
  42611. name: "Nation Nemesis",
  42612. height: math.unit(8e6, "feet")
  42613. },
  42614. {
  42615. name: "Continent Cracker",
  42616. height: math.unit(24e6, "feet")
  42617. },
  42618. {
  42619. name: "Earth-Eclipsing",
  42620. height: math.unit(2.4e8, "feet")
  42621. },
  42622. {
  42623. name: "Gas Giant Gulper",
  42624. height: math.unit(2.4e9, "feet")
  42625. },
  42626. {
  42627. name: "Sol-Swallowing",
  42628. height: math.unit(8e10, "feet")
  42629. },
  42630. {
  42631. name: "Galaxy Gulper",
  42632. height: math.unit(8, "galaxies")
  42633. },
  42634. {
  42635. name: "Cosmos Churner",
  42636. height: math.unit(8, "universes")
  42637. },
  42638. {
  42639. name: "Omnipotent Otter",
  42640. height: math.unit(80, "universes")
  42641. },
  42642. ]
  42643. ))
  42644. characterMakers.push(() => makeCharacter(
  42645. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42646. {
  42647. front: {
  42648. height: math.unit(2.6, "meters"),
  42649. weight: math.unit(900, "kg"),
  42650. name: "Front",
  42651. image: {
  42652. source: "./media/characters/neesha/front.svg",
  42653. extra: 1803/1653,
  42654. bottom: 128/1931
  42655. }
  42656. },
  42657. },
  42658. [
  42659. {
  42660. name: "Normal",
  42661. height: math.unit(2.6, "meters"),
  42662. default: true
  42663. },
  42664. {
  42665. name: "Macro",
  42666. height: math.unit(50, "meters")
  42667. },
  42668. ]
  42669. ))
  42670. characterMakers.push(() => makeCharacter(
  42671. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42672. {
  42673. front: {
  42674. height: math.unit(5, "feet"),
  42675. weight: math.unit(185, "lb"),
  42676. name: "Front",
  42677. image: {
  42678. source: "./media/characters/kyera/front.svg",
  42679. extra: 1875/1790,
  42680. bottom: 96/1971
  42681. }
  42682. },
  42683. },
  42684. [
  42685. {
  42686. name: "Normal",
  42687. height: math.unit(5, "feet"),
  42688. default: true
  42689. },
  42690. ]
  42691. ))
  42692. characterMakers.push(() => makeCharacter(
  42693. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42694. {
  42695. front: {
  42696. height: math.unit(7 + 6/12, "feet"),
  42697. weight: math.unit(540, "lb"),
  42698. name: "Front",
  42699. image: {
  42700. source: "./media/characters/yuko/front.svg",
  42701. extra: 1282/1222,
  42702. bottom: 101/1383
  42703. }
  42704. },
  42705. frontClothed: {
  42706. height: math.unit(7 + 6/12, "feet"),
  42707. weight: math.unit(540, "lb"),
  42708. name: "Front (Clothed)",
  42709. image: {
  42710. source: "./media/characters/yuko/front-clothed.svg",
  42711. extra: 1282/1222,
  42712. bottom: 101/1383
  42713. }
  42714. },
  42715. },
  42716. [
  42717. {
  42718. name: "Normal",
  42719. height: math.unit(7 + 6/12, "feet"),
  42720. default: true
  42721. },
  42722. {
  42723. name: "Macro",
  42724. height: math.unit(26 + 9/12, "feet")
  42725. },
  42726. {
  42727. name: "Megamacro",
  42728. height: math.unit(300, "feet")
  42729. },
  42730. {
  42731. name: "Gigamacro",
  42732. height: math.unit(5000, "feet")
  42733. },
  42734. {
  42735. name: "Planetary",
  42736. height: math.unit(10000, "miles")
  42737. },
  42738. ]
  42739. ))
  42740. characterMakers.push(() => makeCharacter(
  42741. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42742. {
  42743. front: {
  42744. height: math.unit(8 + 2/12, "feet"),
  42745. weight: math.unit(600, "lb"),
  42746. name: "Front",
  42747. image: {
  42748. source: "./media/characters/deam-nitrel/front.svg",
  42749. extra: 1308/1234,
  42750. bottom: 125/1433
  42751. }
  42752. },
  42753. },
  42754. [
  42755. {
  42756. name: "Normal",
  42757. height: math.unit(8 + 2/12, "feet"),
  42758. default: true
  42759. },
  42760. ]
  42761. ))
  42762. characterMakers.push(() => makeCharacter(
  42763. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42764. {
  42765. front: {
  42766. height: math.unit(6.1, "feet"),
  42767. weight: math.unit(180, "lb"),
  42768. name: "Front",
  42769. image: {
  42770. source: "./media/characters/skyress/front.svg",
  42771. extra: 1045/915,
  42772. bottom: 28/1073
  42773. }
  42774. },
  42775. maw: {
  42776. height: math.unit(1, "feet"),
  42777. name: "Maw",
  42778. image: {
  42779. source: "./media/characters/skyress/maw.svg"
  42780. }
  42781. },
  42782. },
  42783. [
  42784. {
  42785. name: "Normal",
  42786. height: math.unit(6.1, "feet"),
  42787. default: true
  42788. },
  42789. {
  42790. name: "Macro",
  42791. height: math.unit(200, "feet")
  42792. },
  42793. ]
  42794. ))
  42795. characterMakers.push(() => makeCharacter(
  42796. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42797. {
  42798. front: {
  42799. height: math.unit(4 + 2/12, "feet"),
  42800. weight: math.unit(40, "kg"),
  42801. name: "Front",
  42802. image: {
  42803. source: "./media/characters/amethyst-jones/front.svg",
  42804. extra: 1220/1150,
  42805. bottom: 101/1321
  42806. }
  42807. },
  42808. },
  42809. [
  42810. {
  42811. name: "Normal",
  42812. height: math.unit(4 + 2/12, "feet"),
  42813. default: true
  42814. },
  42815. ]
  42816. ))
  42817. characterMakers.push(() => makeCharacter(
  42818. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42819. {
  42820. front: {
  42821. height: math.unit(1.7, "m"),
  42822. weight: math.unit(135, "lb"),
  42823. name: "Front",
  42824. image: {
  42825. source: "./media/characters/jade/front.svg",
  42826. extra: 1818/1767,
  42827. bottom: 32/1850
  42828. }
  42829. },
  42830. back: {
  42831. height: math.unit(1.7, "m"),
  42832. weight: math.unit(135, "lb"),
  42833. name: "Back",
  42834. image: {
  42835. source: "./media/characters/jade/back.svg",
  42836. extra: 1869/1809,
  42837. bottom: 35/1904
  42838. }
  42839. },
  42840. hand: {
  42841. height: math.unit(0.24, "m"),
  42842. name: "Hand",
  42843. image: {
  42844. source: "./media/characters/jade/hand.svg"
  42845. }
  42846. },
  42847. foot: {
  42848. height: math.unit(0.263, "m"),
  42849. name: "Foot",
  42850. image: {
  42851. source: "./media/characters/jade/foot.svg"
  42852. }
  42853. },
  42854. dick: {
  42855. height: math.unit(0.47, "m"),
  42856. name: "Dick",
  42857. image: {
  42858. source: "./media/characters/jade/dick.svg"
  42859. }
  42860. },
  42861. },
  42862. [
  42863. {
  42864. name: "Micro",
  42865. height: math.unit(22, "cm")
  42866. },
  42867. {
  42868. name: "Normal",
  42869. height: math.unit(1.7, "m"),
  42870. default: true
  42871. },
  42872. {
  42873. name: "Macro",
  42874. height: math.unit(152, "m")
  42875. },
  42876. ]
  42877. ))
  42878. characterMakers.push(() => makeCharacter(
  42879. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42880. {
  42881. front: {
  42882. height: math.unit(100, "miles"),
  42883. weight: math.unit(20000, "tons"),
  42884. name: "Front",
  42885. image: {
  42886. source: "./media/characters/cookie/front.svg",
  42887. extra: 1125/1070,
  42888. bottom: 30/1155
  42889. }
  42890. },
  42891. },
  42892. [
  42893. {
  42894. name: "Big",
  42895. height: math.unit(50, "feet")
  42896. },
  42897. {
  42898. name: "Macro",
  42899. height: math.unit(100, "miles"),
  42900. default: true
  42901. },
  42902. {
  42903. name: "Megamacro",
  42904. height: math.unit(90000, "miles")
  42905. },
  42906. ]
  42907. ))
  42908. characterMakers.push(() => makeCharacter(
  42909. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42910. {
  42911. front: {
  42912. height: math.unit(6, "feet"),
  42913. weight: math.unit(145, "lb"),
  42914. name: "Front",
  42915. image: {
  42916. source: "./media/characters/farzian/front.svg",
  42917. extra: 1902/1693,
  42918. bottom: 108/2010
  42919. }
  42920. },
  42921. },
  42922. [
  42923. {
  42924. name: "Macro",
  42925. height: math.unit(500, "feet"),
  42926. default: true
  42927. },
  42928. ]
  42929. ))
  42930. characterMakers.push(() => makeCharacter(
  42931. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42932. {
  42933. front: {
  42934. height: math.unit(3 + 6/12, "feet"),
  42935. weight: math.unit(50, "lb"),
  42936. name: "Front",
  42937. image: {
  42938. source: "./media/characters/kimberly-tilson/front.svg",
  42939. extra: 1400/1322,
  42940. bottom: 36/1436
  42941. }
  42942. },
  42943. back: {
  42944. height: math.unit(3 + 6/12, "feet"),
  42945. weight: math.unit(50, "lb"),
  42946. name: "Back",
  42947. image: {
  42948. source: "./media/characters/kimberly-tilson/back.svg",
  42949. extra: 1370/1307,
  42950. bottom: 20/1390
  42951. }
  42952. },
  42953. },
  42954. [
  42955. {
  42956. name: "Normal",
  42957. height: math.unit(3 + 6/12, "feet"),
  42958. default: true
  42959. },
  42960. ]
  42961. ))
  42962. characterMakers.push(() => makeCharacter(
  42963. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42964. {
  42965. front: {
  42966. height: math.unit(350, "meters"),
  42967. weight: math.unit(7.57059e+8, "lb"),
  42968. name: "Front",
  42969. image: {
  42970. source: "./media/characters/harthos/front.svg",
  42971. extra: 455/446,
  42972. bottom: 15/470
  42973. },
  42974. form: "peacekeeper",
  42975. default: true
  42976. },
  42977. allusus_front: {
  42978. height: math.unit(270, "meters"),
  42979. weight: math.unit(3.47550e+8, "lb"),
  42980. name: "Front",
  42981. image: {
  42982. source: "./media/characters/harthos/allusus-front.svg",
  42983. extra: 455/446,
  42984. bottom: 15/470
  42985. },
  42986. form: "allusus",
  42987. },
  42988. },
  42989. [
  42990. {
  42991. name: "Macro",
  42992. height: math.unit(350, "meters"),
  42993. default: true,
  42994. form: "peacekeeper"
  42995. },
  42996. {
  42997. name: "Macro",
  42998. height: math.unit(270, "meters"),
  42999. default: true,
  43000. form: "allusus"
  43001. },
  43002. ],
  43003. {
  43004. "peacekeeper": {
  43005. name: "Peacekeeper",
  43006. default: true
  43007. },
  43008. "allusus": {
  43009. name: "Allusus",
  43010. },
  43011. }
  43012. ))
  43013. characterMakers.push(() => makeCharacter(
  43014. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43015. {
  43016. front: {
  43017. height: math.unit(15, "feet"),
  43018. name: "Front",
  43019. image: {
  43020. source: "./media/characters/hypatia/front.svg",
  43021. extra: 1653/1591,
  43022. bottom: 79/1732
  43023. }
  43024. },
  43025. },
  43026. [
  43027. {
  43028. name: "Normal",
  43029. height: math.unit(15, "feet")
  43030. },
  43031. {
  43032. name: "Small",
  43033. height: math.unit(300, "feet")
  43034. },
  43035. {
  43036. name: "Macro",
  43037. height: math.unit(2500, "feet"),
  43038. default: true
  43039. },
  43040. {
  43041. name: "Mega Macro",
  43042. height: math.unit(1500, "miles")
  43043. },
  43044. {
  43045. name: "Giga Macro",
  43046. height: math.unit(1.5e6, "miles")
  43047. },
  43048. ]
  43049. ))
  43050. characterMakers.push(() => makeCharacter(
  43051. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43052. {
  43053. front: {
  43054. height: math.unit(6, "feet"),
  43055. weight: math.unit(200, "lb"),
  43056. name: "Front",
  43057. image: {
  43058. source: "./media/characters/wulver/front.svg",
  43059. extra: 1724/1632,
  43060. bottom: 130/1854
  43061. }
  43062. },
  43063. frontNsfw: {
  43064. height: math.unit(6, "feet"),
  43065. weight: math.unit(200, "lb"),
  43066. name: "Front (NSFW)",
  43067. image: {
  43068. source: "./media/characters/wulver/front-nsfw.svg",
  43069. extra: 1724/1632,
  43070. bottom: 130/1854
  43071. }
  43072. },
  43073. },
  43074. [
  43075. {
  43076. name: "Human-Sized",
  43077. height: math.unit(6, "feet")
  43078. },
  43079. {
  43080. name: "Normal",
  43081. height: math.unit(4, "meters"),
  43082. default: true
  43083. },
  43084. {
  43085. name: "Large",
  43086. height: math.unit(6, "m")
  43087. },
  43088. ]
  43089. ))
  43090. characterMakers.push(() => makeCharacter(
  43091. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43092. {
  43093. front: {
  43094. height: math.unit(7, "feet"),
  43095. name: "Front",
  43096. image: {
  43097. source: "./media/characters/maru/front.svg",
  43098. extra: 1595/1570,
  43099. bottom: 0/1595
  43100. }
  43101. },
  43102. },
  43103. [
  43104. {
  43105. name: "Normal",
  43106. height: math.unit(7, "feet"),
  43107. default: true
  43108. },
  43109. {
  43110. name: "Macro",
  43111. height: math.unit(700, "feet")
  43112. },
  43113. {
  43114. name: "Mega Macro",
  43115. height: math.unit(25, "miles")
  43116. },
  43117. ]
  43118. ))
  43119. characterMakers.push(() => makeCharacter(
  43120. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43121. {
  43122. front: {
  43123. height: math.unit(6, "feet"),
  43124. weight: math.unit(170, "lb"),
  43125. name: "Front",
  43126. image: {
  43127. source: "./media/characters/xenon/front.svg",
  43128. extra: 1376/1305,
  43129. bottom: 56/1432
  43130. }
  43131. },
  43132. back: {
  43133. height: math.unit(6, "feet"),
  43134. weight: math.unit(170, "lb"),
  43135. name: "Back",
  43136. image: {
  43137. source: "./media/characters/xenon/back.svg",
  43138. extra: 1328/1259,
  43139. bottom: 95/1423
  43140. }
  43141. },
  43142. maw: {
  43143. height: math.unit(0.52, "feet"),
  43144. name: "Maw",
  43145. image: {
  43146. source: "./media/characters/xenon/maw.svg"
  43147. }
  43148. },
  43149. handLeft: {
  43150. height: math.unit(0.82 * 169 / 153, "feet"),
  43151. name: "Hand (Left)",
  43152. image: {
  43153. source: "./media/characters/xenon/hand-left.svg"
  43154. }
  43155. },
  43156. handRight: {
  43157. height: math.unit(0.82, "feet"),
  43158. name: "Hand (Right)",
  43159. image: {
  43160. source: "./media/characters/xenon/hand-right.svg"
  43161. }
  43162. },
  43163. footLeft: {
  43164. height: math.unit(1.13, "feet"),
  43165. name: "Foot (Left)",
  43166. image: {
  43167. source: "./media/characters/xenon/foot-left.svg"
  43168. }
  43169. },
  43170. footRight: {
  43171. height: math.unit(1.13 * 194 / 196, "feet"),
  43172. name: "Foot (Right)",
  43173. image: {
  43174. source: "./media/characters/xenon/foot-right.svg"
  43175. }
  43176. },
  43177. },
  43178. [
  43179. {
  43180. name: "Micro",
  43181. height: math.unit(0.8, "inches")
  43182. },
  43183. {
  43184. name: "Normal",
  43185. height: math.unit(6, "feet")
  43186. },
  43187. {
  43188. name: "Macro",
  43189. height: math.unit(50, "feet"),
  43190. default: true
  43191. },
  43192. {
  43193. name: "Macro+",
  43194. height: math.unit(250, "feet")
  43195. },
  43196. {
  43197. name: "Megamacro",
  43198. height: math.unit(1500, "feet")
  43199. },
  43200. ]
  43201. ))
  43202. characterMakers.push(() => makeCharacter(
  43203. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43204. {
  43205. front: {
  43206. height: math.unit(7 + 5/12, "feet"),
  43207. name: "Front",
  43208. image: {
  43209. source: "./media/characters/zane/front.svg",
  43210. extra: 1260/1203,
  43211. bottom: 94/1354
  43212. }
  43213. },
  43214. back: {
  43215. height: math.unit(5.05, "feet"),
  43216. name: "Back",
  43217. image: {
  43218. source: "./media/characters/zane/back.svg",
  43219. extra: 893/829,
  43220. bottom: 30/923
  43221. }
  43222. },
  43223. werewolf: {
  43224. height: math.unit(11, "feet"),
  43225. name: "Werewolf",
  43226. image: {
  43227. source: "./media/characters/zane/werewolf.svg",
  43228. extra: 1383/1323,
  43229. bottom: 89/1472
  43230. }
  43231. },
  43232. foot: {
  43233. height: math.unit(1.46, "feet"),
  43234. name: "Foot",
  43235. image: {
  43236. source: "./media/characters/zane/foot.svg"
  43237. }
  43238. },
  43239. footFront: {
  43240. height: math.unit(0.784, "feet"),
  43241. name: "Foot (Front)",
  43242. image: {
  43243. source: "./media/characters/zane/foot-front.svg"
  43244. }
  43245. },
  43246. dick: {
  43247. height: math.unit(1.95, "feet"),
  43248. name: "Dick",
  43249. image: {
  43250. source: "./media/characters/zane/dick.svg"
  43251. }
  43252. },
  43253. dickWerewolf: {
  43254. height: math.unit(3.77, "feet"),
  43255. name: "Dick (Werewolf)",
  43256. image: {
  43257. source: "./media/characters/zane/dick.svg"
  43258. }
  43259. },
  43260. },
  43261. [
  43262. {
  43263. name: "Normal",
  43264. height: math.unit(7 + 5/12, "feet"),
  43265. default: true
  43266. },
  43267. ]
  43268. ))
  43269. characterMakers.push(() => makeCharacter(
  43270. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43271. {
  43272. front: {
  43273. height: math.unit(6 + 2/12, "feet"),
  43274. weight: math.unit(284, "lb"),
  43275. name: "Front",
  43276. image: {
  43277. source: "./media/characters/benni-desparque/front.svg",
  43278. extra: 878/729,
  43279. bottom: 58/936
  43280. }
  43281. },
  43282. back: {
  43283. height: math.unit(6 + 2/12, "feet"),
  43284. weight: math.unit(284, "lb"),
  43285. name: "Back",
  43286. image: {
  43287. source: "./media/characters/benni-desparque/back.svg",
  43288. extra: 901/756,
  43289. bottom: 51/952
  43290. }
  43291. },
  43292. dressed: {
  43293. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43294. weight: math.unit(284, "lb"),
  43295. name: "Dressed",
  43296. image: {
  43297. source: "./media/characters/benni-desparque/dressed.svg",
  43298. extra: 1514/1276,
  43299. bottom: 65/1579
  43300. }
  43301. },
  43302. hand: {
  43303. height: math.unit(1.28, "feet"),
  43304. name: "Hand",
  43305. image: {
  43306. source: "./media/characters/benni-desparque/hand.svg"
  43307. }
  43308. },
  43309. foot: {
  43310. height: math.unit(1.53, "feet"),
  43311. name: "Foot",
  43312. image: {
  43313. source: "./media/characters/benni-desparque/foot.svg"
  43314. }
  43315. },
  43316. aiControlUnit: {
  43317. height: math.unit(0.175, "feet"),
  43318. name: "AI Control Unit",
  43319. image: {
  43320. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43321. }
  43322. },
  43323. },
  43324. [
  43325. {
  43326. name: "Civilian",
  43327. height: math.unit(6 + 2/12, "feet")
  43328. },
  43329. {
  43330. name: "Normal",
  43331. height: math.unit(98, "feet"),
  43332. default: true
  43333. },
  43334. {
  43335. name: "Kaiju Fighter",
  43336. height: math.unit(268, "feet")
  43337. },
  43338. ]
  43339. ))
  43340. characterMakers.push(() => makeCharacter(
  43341. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43342. {
  43343. front: {
  43344. height: math.unit(5, "feet"),
  43345. weight: math.unit(105, "lb"),
  43346. name: "Front",
  43347. image: {
  43348. source: "./media/characters/maxine/front.svg",
  43349. extra: 1386/1250,
  43350. bottom: 71/1457
  43351. }
  43352. },
  43353. },
  43354. [
  43355. {
  43356. name: "Normal",
  43357. height: math.unit(5, "feet"),
  43358. default: true
  43359. },
  43360. ]
  43361. ))
  43362. characterMakers.push(() => makeCharacter(
  43363. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43364. {
  43365. front: {
  43366. height: math.unit(11 + 7/12, "feet"),
  43367. weight: math.unit(9576, "lb"),
  43368. name: "Front",
  43369. image: {
  43370. source: "./media/characters/scaly/front.svg",
  43371. extra: 888/867,
  43372. bottom: 36/924
  43373. }
  43374. },
  43375. },
  43376. [
  43377. {
  43378. name: "Normal",
  43379. height: math.unit(11 + 7/12, "feet"),
  43380. default: true
  43381. },
  43382. ]
  43383. ))
  43384. characterMakers.push(() => makeCharacter(
  43385. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43386. {
  43387. front: {
  43388. height: math.unit(6 + 3/12, "feet"),
  43389. name: "Front",
  43390. image: {
  43391. source: "./media/characters/saelria/front.svg",
  43392. extra: 1243/1138,
  43393. bottom: 46/1289
  43394. }
  43395. },
  43396. },
  43397. [
  43398. {
  43399. name: "Micro",
  43400. height: math.unit(6, "inches"),
  43401. },
  43402. {
  43403. name: "Normal",
  43404. height: math.unit(6 + 3/12, "feet"),
  43405. default: true
  43406. },
  43407. {
  43408. name: "Macro",
  43409. height: math.unit(25, "feet")
  43410. },
  43411. ]
  43412. ))
  43413. characterMakers.push(() => makeCharacter(
  43414. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43415. {
  43416. front: {
  43417. height: math.unit(80, "meters"),
  43418. weight: math.unit(7000, "tonnes"),
  43419. name: "Front",
  43420. image: {
  43421. source: "./media/characters/tef/front.svg",
  43422. extra: 2036/1991,
  43423. bottom: 54/2090
  43424. }
  43425. },
  43426. back: {
  43427. height: math.unit(80, "meters"),
  43428. weight: math.unit(7000, "tonnes"),
  43429. name: "Back",
  43430. image: {
  43431. source: "./media/characters/tef/back.svg",
  43432. extra: 2036/1991,
  43433. bottom: 54/2090
  43434. }
  43435. },
  43436. },
  43437. [
  43438. {
  43439. name: "Macro",
  43440. height: math.unit(80, "meters"),
  43441. default: true
  43442. },
  43443. ]
  43444. ))
  43445. characterMakers.push(() => makeCharacter(
  43446. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43447. {
  43448. front: {
  43449. height: math.unit(13, "feet"),
  43450. weight: math.unit(6, "tons"),
  43451. name: "Front",
  43452. image: {
  43453. source: "./media/characters/rover/front.svg",
  43454. extra: 1233/1156,
  43455. bottom: 50/1283
  43456. }
  43457. },
  43458. back: {
  43459. height: math.unit(13, "feet"),
  43460. weight: math.unit(6, "tons"),
  43461. name: "Back",
  43462. image: {
  43463. source: "./media/characters/rover/back.svg",
  43464. extra: 1327/1258,
  43465. bottom: 39/1366
  43466. }
  43467. },
  43468. },
  43469. [
  43470. {
  43471. name: "Normal",
  43472. height: math.unit(13, "feet"),
  43473. default: true
  43474. },
  43475. {
  43476. name: "Macro",
  43477. height: math.unit(1300, "feet")
  43478. },
  43479. {
  43480. name: "Megamacro",
  43481. height: math.unit(1300, "miles")
  43482. },
  43483. {
  43484. name: "Gigamacro",
  43485. height: math.unit(1300000, "miles")
  43486. },
  43487. ]
  43488. ))
  43489. characterMakers.push(() => makeCharacter(
  43490. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43491. {
  43492. front: {
  43493. height: math.unit(10, "feet"),
  43494. weight: math.unit(500, "lb"),
  43495. name: "Front",
  43496. image: {
  43497. source: "./media/characters/ariz/front.svg",
  43498. extra: 461/450,
  43499. bottom: 16/477
  43500. }
  43501. },
  43502. },
  43503. [
  43504. {
  43505. name: "MiniMacro",
  43506. height: math.unit(10, "feet"),
  43507. default: true
  43508. },
  43509. ]
  43510. ))
  43511. characterMakers.push(() => makeCharacter(
  43512. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43513. {
  43514. front: {
  43515. height: math.unit(6, "feet"),
  43516. weight: math.unit(140, "lb"),
  43517. name: "Front",
  43518. image: {
  43519. source: "./media/characters/sigrun/front.svg",
  43520. extra: 1418/1359,
  43521. bottom: 27/1445
  43522. }
  43523. },
  43524. },
  43525. [
  43526. {
  43527. name: "Macro",
  43528. height: math.unit(35, "feet"),
  43529. default: true
  43530. },
  43531. ]
  43532. ))
  43533. characterMakers.push(() => makeCharacter(
  43534. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43535. {
  43536. front: {
  43537. height: math.unit(6, "feet"),
  43538. weight: math.unit(150, "lb"),
  43539. name: "Front",
  43540. image: {
  43541. source: "./media/characters/numin/front.svg",
  43542. extra: 1433/1388,
  43543. bottom: 12/1445
  43544. }
  43545. },
  43546. },
  43547. [
  43548. {
  43549. name: "Macro",
  43550. height: math.unit(21.5, "km"),
  43551. default: true
  43552. },
  43553. ]
  43554. ))
  43555. characterMakers.push(() => makeCharacter(
  43556. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43557. {
  43558. front: {
  43559. height: math.unit(6, "feet"),
  43560. weight: math.unit(463, "lb"),
  43561. name: "Front",
  43562. image: {
  43563. source: "./media/characters/melwa/front.svg",
  43564. extra: 1307/1248,
  43565. bottom: 93/1400
  43566. }
  43567. },
  43568. },
  43569. [
  43570. {
  43571. name: "Macro",
  43572. height: math.unit(50, "meters"),
  43573. default: true
  43574. },
  43575. ]
  43576. ))
  43577. characterMakers.push(() => makeCharacter(
  43578. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43579. {
  43580. front: {
  43581. height: math.unit(325, "feet"),
  43582. name: "Front",
  43583. image: {
  43584. source: "./media/characters/zorkaiju/front.svg",
  43585. extra: 1955/1814,
  43586. bottom: 40/1995
  43587. }
  43588. },
  43589. frontExtended: {
  43590. height: math.unit(325, "feet"),
  43591. name: "Front (Extended)",
  43592. image: {
  43593. source: "./media/characters/zorkaiju/front-extended.svg",
  43594. extra: 1955/1814,
  43595. bottom: 40/1995
  43596. }
  43597. },
  43598. side: {
  43599. height: math.unit(325, "feet"),
  43600. name: "Side",
  43601. image: {
  43602. source: "./media/characters/zorkaiju/side.svg",
  43603. extra: 1495/1396,
  43604. bottom: 17/1512
  43605. }
  43606. },
  43607. sideExtended: {
  43608. height: math.unit(325, "feet"),
  43609. name: "Side (Extended)",
  43610. image: {
  43611. source: "./media/characters/zorkaiju/side-extended.svg",
  43612. extra: 1495/1396,
  43613. bottom: 17/1512
  43614. }
  43615. },
  43616. back: {
  43617. height: math.unit(325, "feet"),
  43618. name: "Back",
  43619. image: {
  43620. source: "./media/characters/zorkaiju/back.svg",
  43621. extra: 1959/1821,
  43622. bottom: 31/1990
  43623. }
  43624. },
  43625. backExtended: {
  43626. height: math.unit(325, "feet"),
  43627. name: "Back (Extended)",
  43628. image: {
  43629. source: "./media/characters/zorkaiju/back-extended.svg",
  43630. extra: 1959/1821,
  43631. bottom: 31/1990
  43632. }
  43633. },
  43634. hand: {
  43635. height: math.unit(58.4, "feet"),
  43636. name: "Hand",
  43637. image: {
  43638. source: "./media/characters/zorkaiju/hand.svg"
  43639. }
  43640. },
  43641. handExtended: {
  43642. height: math.unit(61.4, "feet"),
  43643. name: "Hand (Extended)",
  43644. image: {
  43645. source: "./media/characters/zorkaiju/hand-extended.svg"
  43646. }
  43647. },
  43648. foot: {
  43649. height: math.unit(95, "feet"),
  43650. name: "Foot",
  43651. image: {
  43652. source: "./media/characters/zorkaiju/foot.svg"
  43653. }
  43654. },
  43655. leftArm: {
  43656. height: math.unit(59, "feet"),
  43657. name: "Left Arm",
  43658. image: {
  43659. source: "./media/characters/zorkaiju/left-arm.svg"
  43660. }
  43661. },
  43662. rightArm: {
  43663. height: math.unit(59, "feet"),
  43664. name: "Right Arm",
  43665. image: {
  43666. source: "./media/characters/zorkaiju/right-arm.svg"
  43667. }
  43668. },
  43669. leftArmExtended: {
  43670. height: math.unit(59 * 1.033546, "feet"),
  43671. name: "Left Arm (Extended)",
  43672. image: {
  43673. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43674. }
  43675. },
  43676. rightArmExtended: {
  43677. height: math.unit(59 * 1.0496, "feet"),
  43678. name: "Right Arm (Extended)",
  43679. image: {
  43680. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43681. }
  43682. },
  43683. tail: {
  43684. height: math.unit(104, "feet"),
  43685. name: "Tail",
  43686. image: {
  43687. source: "./media/characters/zorkaiju/tail.svg"
  43688. }
  43689. },
  43690. tailExtended: {
  43691. height: math.unit(104, "feet"),
  43692. name: "Tail (Extended)",
  43693. image: {
  43694. source: "./media/characters/zorkaiju/tail-extended.svg"
  43695. }
  43696. },
  43697. tailBottom: {
  43698. height: math.unit(104, "feet"),
  43699. name: "Tail Bottom",
  43700. image: {
  43701. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43702. }
  43703. },
  43704. crystal: {
  43705. height: math.unit(27.54, "feet"),
  43706. name: "Crystal",
  43707. image: {
  43708. source: "./media/characters/zorkaiju/crystal.svg"
  43709. }
  43710. },
  43711. },
  43712. [
  43713. {
  43714. name: "Kaiju",
  43715. height: math.unit(325, "feet"),
  43716. default: true
  43717. },
  43718. ]
  43719. ))
  43720. characterMakers.push(() => makeCharacter(
  43721. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43722. {
  43723. front: {
  43724. height: math.unit(6 + 1/12, "feet"),
  43725. weight: math.unit(115, "lb"),
  43726. name: "Front",
  43727. image: {
  43728. source: "./media/characters/bailey-belfry/front.svg",
  43729. extra: 1240/1121,
  43730. bottom: 101/1341
  43731. }
  43732. },
  43733. },
  43734. [
  43735. {
  43736. name: "Normal",
  43737. height: math.unit(6 + 1/12, "feet"),
  43738. default: true
  43739. },
  43740. ]
  43741. ))
  43742. characterMakers.push(() => makeCharacter(
  43743. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43744. {
  43745. side: {
  43746. height: math.unit(4, "meters"),
  43747. weight: math.unit(250, "kg"),
  43748. name: "Side",
  43749. image: {
  43750. source: "./media/characters/blacky/side.svg",
  43751. extra: 1027/919,
  43752. bottom: 43/1070
  43753. }
  43754. },
  43755. maw: {
  43756. height: math.unit(1, "meters"),
  43757. name: "Maw",
  43758. image: {
  43759. source: "./media/characters/blacky/maw.svg"
  43760. }
  43761. },
  43762. paw: {
  43763. height: math.unit(1, "meters"),
  43764. name: "Paw",
  43765. image: {
  43766. source: "./media/characters/blacky/paw.svg"
  43767. }
  43768. },
  43769. },
  43770. [
  43771. {
  43772. name: "Normal",
  43773. height: math.unit(4, "meters"),
  43774. default: true
  43775. },
  43776. ]
  43777. ))
  43778. characterMakers.push(() => makeCharacter(
  43779. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43780. {
  43781. front: {
  43782. height: math.unit(170, "cm"),
  43783. weight: math.unit(66, "kg"),
  43784. name: "Front",
  43785. image: {
  43786. source: "./media/characters/thux-ei/front.svg",
  43787. extra: 1109/1011,
  43788. bottom: 8/1117
  43789. }
  43790. },
  43791. },
  43792. [
  43793. {
  43794. name: "Normal",
  43795. height: math.unit(170, "cm"),
  43796. default: true
  43797. },
  43798. ]
  43799. ))
  43800. characterMakers.push(() => makeCharacter(
  43801. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43802. {
  43803. front: {
  43804. height: math.unit(5, "feet"),
  43805. weight: math.unit(120, "lb"),
  43806. name: "Front",
  43807. image: {
  43808. source: "./media/characters/roxanne-voltaire/front.svg",
  43809. extra: 1901/1779,
  43810. bottom: 53/1954
  43811. }
  43812. },
  43813. },
  43814. [
  43815. {
  43816. name: "Normal",
  43817. height: math.unit(5, "feet"),
  43818. default: true
  43819. },
  43820. {
  43821. name: "Giant",
  43822. height: math.unit(50, "feet")
  43823. },
  43824. {
  43825. name: "Titan",
  43826. height: math.unit(500, "feet")
  43827. },
  43828. {
  43829. name: "Macro",
  43830. height: math.unit(5000, "feet")
  43831. },
  43832. {
  43833. name: "Megamacro",
  43834. height: math.unit(50000, "feet")
  43835. },
  43836. {
  43837. name: "Gigamacro",
  43838. height: math.unit(500000, "feet")
  43839. },
  43840. {
  43841. name: "Teramacro",
  43842. height: math.unit(5e6, "feet")
  43843. },
  43844. ]
  43845. ))
  43846. characterMakers.push(() => makeCharacter(
  43847. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43848. {
  43849. front: {
  43850. height: math.unit(6 + 2/12, "feet"),
  43851. name: "Front",
  43852. image: {
  43853. source: "./media/characters/squeaks/front.svg",
  43854. extra: 1823/1768,
  43855. bottom: 138/1961
  43856. }
  43857. },
  43858. },
  43859. [
  43860. {
  43861. name: "Micro",
  43862. height: math.unit(0.5, "inches")
  43863. },
  43864. {
  43865. name: "Normal",
  43866. height: math.unit(6 + 2/12, "feet"),
  43867. default: true
  43868. },
  43869. {
  43870. name: "Macro",
  43871. height: math.unit(600, "feet")
  43872. },
  43873. ]
  43874. ))
  43875. characterMakers.push(() => makeCharacter(
  43876. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43877. {
  43878. front: {
  43879. height: math.unit(1.72, "meters"),
  43880. name: "Front",
  43881. image: {
  43882. source: "./media/characters/archinger/front.svg",
  43883. extra: 1861/1675,
  43884. bottom: 125/1986
  43885. }
  43886. },
  43887. back: {
  43888. height: math.unit(1.72, "meters"),
  43889. name: "Back",
  43890. image: {
  43891. source: "./media/characters/archinger/back.svg",
  43892. extra: 1844/1701,
  43893. bottom: 104/1948
  43894. }
  43895. },
  43896. cock: {
  43897. height: math.unit(0.59, "feet"),
  43898. name: "Cock",
  43899. image: {
  43900. source: "./media/characters/archinger/cock.svg"
  43901. }
  43902. },
  43903. },
  43904. [
  43905. {
  43906. name: "Normal",
  43907. height: math.unit(1.72, "meters"),
  43908. default: true
  43909. },
  43910. {
  43911. name: "Macro",
  43912. height: math.unit(84, "meters")
  43913. },
  43914. {
  43915. name: "Macro+",
  43916. height: math.unit(112, "meters")
  43917. },
  43918. {
  43919. name: "Macro++",
  43920. height: math.unit(960, "meters")
  43921. },
  43922. {
  43923. name: "Macro+++",
  43924. height: math.unit(4, "km")
  43925. },
  43926. {
  43927. name: "Macro++++",
  43928. height: math.unit(48, "km")
  43929. },
  43930. {
  43931. name: "Macro+++++",
  43932. height: math.unit(4500, "km")
  43933. },
  43934. ]
  43935. ))
  43936. characterMakers.push(() => makeCharacter(
  43937. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43938. {
  43939. front: {
  43940. height: math.unit(5 + 5/12, "feet"),
  43941. name: "Front",
  43942. image: {
  43943. source: "./media/characters/alsnapz/front.svg",
  43944. extra: 1157/1065,
  43945. bottom: 42/1199
  43946. }
  43947. },
  43948. },
  43949. [
  43950. {
  43951. name: "Normal",
  43952. height: math.unit(5 + 5/12, "feet"),
  43953. default: true
  43954. },
  43955. ]
  43956. ))
  43957. characterMakers.push(() => makeCharacter(
  43958. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43959. {
  43960. side: {
  43961. height: math.unit(3.2, "earths"),
  43962. name: "Side",
  43963. image: {
  43964. source: "./media/characters/mag/side.svg",
  43965. extra: 1331/1008,
  43966. bottom: 52/1383
  43967. }
  43968. },
  43969. wing: {
  43970. height: math.unit(1.94, "earths"),
  43971. name: "Wing",
  43972. image: {
  43973. source: "./media/characters/mag/wing.svg"
  43974. }
  43975. },
  43976. dick: {
  43977. height: math.unit(1.8, "earths"),
  43978. name: "Dick",
  43979. image: {
  43980. source: "./media/characters/mag/dick.svg"
  43981. }
  43982. },
  43983. ass: {
  43984. height: math.unit(1.33, "earths"),
  43985. name: "Ass",
  43986. image: {
  43987. source: "./media/characters/mag/ass.svg"
  43988. }
  43989. },
  43990. head: {
  43991. height: math.unit(1.1, "earths"),
  43992. name: "Head",
  43993. image: {
  43994. source: "./media/characters/mag/head.svg"
  43995. }
  43996. },
  43997. maw: {
  43998. height: math.unit(1.62, "earths"),
  43999. name: "Maw",
  44000. image: {
  44001. source: "./media/characters/mag/maw.svg"
  44002. }
  44003. },
  44004. },
  44005. [
  44006. {
  44007. name: "Small",
  44008. height: math.unit(162, "feet")
  44009. },
  44010. {
  44011. name: "Normal",
  44012. height: math.unit(3.2, "earths"),
  44013. default: true
  44014. },
  44015. ]
  44016. ))
  44017. characterMakers.push(() => makeCharacter(
  44018. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44019. {
  44020. front: {
  44021. height: math.unit(512, "feet"),
  44022. weight: math.unit(63509, "tonnes"),
  44023. name: "Front",
  44024. image: {
  44025. source: "./media/characters/vorrel-harroc/front.svg",
  44026. extra: 1075/1063,
  44027. bottom: 62/1137
  44028. }
  44029. },
  44030. },
  44031. [
  44032. {
  44033. name: "Normal",
  44034. height: math.unit(10, "feet")
  44035. },
  44036. {
  44037. name: "Macro",
  44038. height: math.unit(512, "feet"),
  44039. default: true
  44040. },
  44041. {
  44042. name: "Megamacro",
  44043. height: math.unit(256, "miles")
  44044. },
  44045. {
  44046. name: "Gigamacro",
  44047. height: math.unit(4096, "miles")
  44048. },
  44049. ]
  44050. ))
  44051. characterMakers.push(() => makeCharacter(
  44052. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44053. {
  44054. side: {
  44055. height: math.unit(50, "feet"),
  44056. name: "Side",
  44057. image: {
  44058. source: "./media/characters/froimar/side.svg",
  44059. extra: 855/638,
  44060. bottom: 99/954
  44061. }
  44062. },
  44063. },
  44064. [
  44065. {
  44066. name: "Macro",
  44067. height: math.unit(50, "feet"),
  44068. default: true
  44069. },
  44070. ]
  44071. ))
  44072. characterMakers.push(() => makeCharacter(
  44073. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44074. {
  44075. front: {
  44076. height: math.unit(210, "miles"),
  44077. name: "Front",
  44078. image: {
  44079. source: "./media/characters/timothy/front.svg",
  44080. extra: 1007/943,
  44081. bottom: 62/1069
  44082. }
  44083. },
  44084. frontSkirt: {
  44085. height: math.unit(210, "miles"),
  44086. name: "Front (Skirt)",
  44087. image: {
  44088. source: "./media/characters/timothy/front-skirt.svg",
  44089. extra: 1007/943,
  44090. bottom: 62/1069
  44091. }
  44092. },
  44093. frontCoat: {
  44094. height: math.unit(210, "miles"),
  44095. name: "Front (Coat)",
  44096. image: {
  44097. source: "./media/characters/timothy/front-coat.svg",
  44098. extra: 1007/943,
  44099. bottom: 62/1069
  44100. }
  44101. },
  44102. },
  44103. [
  44104. {
  44105. name: "Macro",
  44106. height: math.unit(210, "miles"),
  44107. default: true
  44108. },
  44109. {
  44110. name: "Megamacro",
  44111. height: math.unit(210000, "miles")
  44112. },
  44113. ]
  44114. ))
  44115. characterMakers.push(() => makeCharacter(
  44116. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44117. {
  44118. front: {
  44119. height: math.unit(188, "feet"),
  44120. name: "Front",
  44121. image: {
  44122. source: "./media/characters/pyotr/front.svg",
  44123. extra: 1912/1826,
  44124. bottom: 18/1930
  44125. }
  44126. },
  44127. },
  44128. [
  44129. {
  44130. name: "Macro",
  44131. height: math.unit(188, "feet"),
  44132. default: true
  44133. },
  44134. {
  44135. name: "Megamacro",
  44136. height: math.unit(8, "miles")
  44137. },
  44138. ]
  44139. ))
  44140. characterMakers.push(() => makeCharacter(
  44141. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44142. {
  44143. side: {
  44144. height: math.unit(10, "feet"),
  44145. weight: math.unit(4500, "lb"),
  44146. name: "Side",
  44147. image: {
  44148. source: "./media/characters/ackart/side.svg",
  44149. extra: 1776/1668,
  44150. bottom: 116/1892
  44151. }
  44152. },
  44153. },
  44154. [
  44155. {
  44156. name: "Normal",
  44157. height: math.unit(10, "feet"),
  44158. default: true
  44159. },
  44160. ]
  44161. ))
  44162. characterMakers.push(() => makeCharacter(
  44163. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44164. {
  44165. side: {
  44166. height: math.unit(21, "feet"),
  44167. name: "Side",
  44168. image: {
  44169. source: "./media/characters/nolow/side.svg",
  44170. extra: 1484/1434,
  44171. bottom: 85/1569
  44172. }
  44173. },
  44174. sideErect: {
  44175. height: math.unit(21, "feet"),
  44176. name: "Side-erect",
  44177. image: {
  44178. source: "./media/characters/nolow/side-erect.svg",
  44179. extra: 1484/1434,
  44180. bottom: 85/1569
  44181. }
  44182. },
  44183. },
  44184. [
  44185. {
  44186. name: "Regular",
  44187. height: math.unit(12, "feet")
  44188. },
  44189. {
  44190. name: "Big Chee",
  44191. height: math.unit(21, "feet"),
  44192. default: true
  44193. },
  44194. ]
  44195. ))
  44196. characterMakers.push(() => makeCharacter(
  44197. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44198. {
  44199. front: {
  44200. height: math.unit(7, "feet"),
  44201. weight: math.unit(250, "lb"),
  44202. name: "Front",
  44203. image: {
  44204. source: "./media/characters/nines/front.svg",
  44205. extra: 1741/1607,
  44206. bottom: 41/1782
  44207. }
  44208. },
  44209. side: {
  44210. height: math.unit(7, "feet"),
  44211. weight: math.unit(250, "lb"),
  44212. name: "Side",
  44213. image: {
  44214. source: "./media/characters/nines/side.svg",
  44215. extra: 1854/1735,
  44216. bottom: 93/1947
  44217. }
  44218. },
  44219. back: {
  44220. height: math.unit(7, "feet"),
  44221. weight: math.unit(250, "lb"),
  44222. name: "Back",
  44223. image: {
  44224. source: "./media/characters/nines/back.svg",
  44225. extra: 1748/1615,
  44226. bottom: 20/1768
  44227. }
  44228. },
  44229. },
  44230. [
  44231. {
  44232. name: "Megamacro",
  44233. height: math.unit(99, "km"),
  44234. default: true
  44235. },
  44236. ]
  44237. ))
  44238. characterMakers.push(() => makeCharacter(
  44239. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44240. {
  44241. front: {
  44242. height: math.unit(5 + 10/12, "feet"),
  44243. weight: math.unit(210, "lb"),
  44244. name: "Front",
  44245. image: {
  44246. source: "./media/characters/zenith/front.svg",
  44247. extra: 1531/1452,
  44248. bottom: 198/1729
  44249. }
  44250. },
  44251. back: {
  44252. height: math.unit(5 + 10/12, "feet"),
  44253. weight: math.unit(210, "lb"),
  44254. name: "Back",
  44255. image: {
  44256. source: "./media/characters/zenith/back.svg",
  44257. extra: 1571/1487,
  44258. bottom: 75/1646
  44259. }
  44260. },
  44261. },
  44262. [
  44263. {
  44264. name: "Normal",
  44265. height: math.unit(5 + 10/12, "feet"),
  44266. default: true
  44267. }
  44268. ]
  44269. ))
  44270. characterMakers.push(() => makeCharacter(
  44271. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44272. {
  44273. front: {
  44274. height: math.unit(4, "feet"),
  44275. weight: math.unit(60, "lb"),
  44276. name: "Front",
  44277. image: {
  44278. source: "./media/characters/jasper/front.svg",
  44279. extra: 1450/1379,
  44280. bottom: 19/1469
  44281. }
  44282. },
  44283. },
  44284. [
  44285. {
  44286. name: "Normal",
  44287. height: math.unit(4, "feet"),
  44288. default: true
  44289. },
  44290. ]
  44291. ))
  44292. characterMakers.push(() => makeCharacter(
  44293. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44294. {
  44295. front: {
  44296. height: math.unit(6 + 5/12, "feet"),
  44297. weight: math.unit(290, "lb"),
  44298. name: "Front",
  44299. image: {
  44300. source: "./media/characters/tiberius-thyben/front.svg",
  44301. extra: 757/739,
  44302. bottom: 39/796
  44303. }
  44304. },
  44305. },
  44306. [
  44307. {
  44308. name: "Micro",
  44309. height: math.unit(1.5, "inches")
  44310. },
  44311. {
  44312. name: "Normal",
  44313. height: math.unit(6 + 5/12, "feet"),
  44314. default: true
  44315. },
  44316. {
  44317. name: "Macro",
  44318. height: math.unit(300, "feet")
  44319. },
  44320. ]
  44321. ))
  44322. characterMakers.push(() => makeCharacter(
  44323. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44324. {
  44325. front: {
  44326. height: math.unit(5 + 6/12, "feet"),
  44327. weight: math.unit(60, "kg"),
  44328. name: "Front",
  44329. image: {
  44330. source: "./media/characters/sabre/front.svg",
  44331. extra: 738/671,
  44332. bottom: 27/765
  44333. }
  44334. },
  44335. },
  44336. [
  44337. {
  44338. name: "Teeny",
  44339. height: math.unit(2, "inches")
  44340. },
  44341. {
  44342. name: "Smol",
  44343. height: math.unit(8, "inches")
  44344. },
  44345. {
  44346. name: "Normal",
  44347. height: math.unit(5 + 6/12, "feet"),
  44348. default: true
  44349. },
  44350. {
  44351. name: "Mini-Macro",
  44352. height: math.unit(15, "feet")
  44353. },
  44354. {
  44355. name: "Macro",
  44356. height: math.unit(50, "feet")
  44357. },
  44358. ]
  44359. ))
  44360. characterMakers.push(() => makeCharacter(
  44361. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44362. {
  44363. front: {
  44364. height: math.unit(6 + 4/12, "feet"),
  44365. weight: math.unit(170, "lb"),
  44366. name: "Front",
  44367. image: {
  44368. source: "./media/characters/charlie/front.svg",
  44369. extra: 1348/1228,
  44370. bottom: 15/1363
  44371. }
  44372. },
  44373. },
  44374. [
  44375. {
  44376. name: "Macro",
  44377. height: math.unit(1700, "meters"),
  44378. default: true
  44379. },
  44380. {
  44381. name: "MegaMacro",
  44382. height: math.unit(20400, "meters")
  44383. },
  44384. ]
  44385. ))
  44386. characterMakers.push(() => makeCharacter(
  44387. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44388. {
  44389. front: {
  44390. height: math.unit(1.96, "meters"),
  44391. weight: math.unit(220, "lb"),
  44392. name: "Front",
  44393. image: {
  44394. source: "./media/characters/susan-grant/front.svg",
  44395. extra: 482/478,
  44396. bottom: 7/489
  44397. }
  44398. },
  44399. },
  44400. [
  44401. {
  44402. name: "Normal",
  44403. height: math.unit(1.96, "meters"),
  44404. default: true
  44405. },
  44406. {
  44407. name: "Macro",
  44408. height: math.unit(76.2, "meters")
  44409. },
  44410. {
  44411. name: "MegaMacro",
  44412. height: math.unit(305, "meters")
  44413. },
  44414. {
  44415. name: "GigaMacro",
  44416. height: math.unit(1220, "meters")
  44417. },
  44418. {
  44419. name: "SuperMacro",
  44420. height: math.unit(4878, "meters")
  44421. },
  44422. ]
  44423. ))
  44424. characterMakers.push(() => makeCharacter(
  44425. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44426. {
  44427. front: {
  44428. height: math.unit(5 + 4/12, "feet"),
  44429. weight: math.unit(110, "lb"),
  44430. name: "Front",
  44431. image: {
  44432. source: "./media/characters/axel-isanov/front.svg",
  44433. extra: 1096/1065,
  44434. bottom: 13/1109
  44435. }
  44436. },
  44437. },
  44438. [
  44439. {
  44440. name: "Normal",
  44441. height: math.unit(5 + 4/12, "feet"),
  44442. default: true
  44443. },
  44444. ]
  44445. ))
  44446. characterMakers.push(() => makeCharacter(
  44447. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44448. {
  44449. front: {
  44450. height: math.unit(9, "feet"),
  44451. weight: math.unit(467, "lb"),
  44452. name: "Front",
  44453. image: {
  44454. source: "./media/characters/necahual/front.svg",
  44455. extra: 920/873,
  44456. bottom: 26/946
  44457. }
  44458. },
  44459. back: {
  44460. height: math.unit(9, "feet"),
  44461. weight: math.unit(467, "lb"),
  44462. name: "Back",
  44463. image: {
  44464. source: "./media/characters/necahual/back.svg",
  44465. extra: 930/884,
  44466. bottom: 16/946
  44467. }
  44468. },
  44469. frontUnderwear: {
  44470. height: math.unit(9, "feet"),
  44471. weight: math.unit(467, "lb"),
  44472. name: "Front (Underwear)",
  44473. image: {
  44474. source: "./media/characters/necahual/front-underwear.svg",
  44475. extra: 920/873,
  44476. bottom: 26/946
  44477. }
  44478. },
  44479. frontDressed: {
  44480. height: math.unit(9, "feet"),
  44481. weight: math.unit(467, "lb"),
  44482. name: "Front (Dressed)",
  44483. image: {
  44484. source: "./media/characters/necahual/front-dressed.svg",
  44485. extra: 920/873,
  44486. bottom: 26/946
  44487. }
  44488. },
  44489. },
  44490. [
  44491. {
  44492. name: "Comprsesed",
  44493. height: math.unit(9, "feet")
  44494. },
  44495. {
  44496. name: "Natural",
  44497. height: math.unit(15, "feet"),
  44498. default: true
  44499. },
  44500. {
  44501. name: "Boosted",
  44502. height: math.unit(50, "feet")
  44503. },
  44504. {
  44505. name: "Boosted+",
  44506. height: math.unit(150, "feet")
  44507. },
  44508. {
  44509. name: "Max",
  44510. height: math.unit(500, "feet")
  44511. },
  44512. ]
  44513. ))
  44514. characterMakers.push(() => makeCharacter(
  44515. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44516. {
  44517. front: {
  44518. height: math.unit(22 + 1/12, "feet"),
  44519. weight: math.unit(3200, "lb"),
  44520. name: "Front",
  44521. image: {
  44522. source: "./media/characters/theo-acacia/front.svg",
  44523. extra: 1796/1741,
  44524. bottom: 83/1879
  44525. }
  44526. },
  44527. frontUnderwear: {
  44528. height: math.unit(22 + 1/12, "feet"),
  44529. weight: math.unit(3200, "lb"),
  44530. name: "Front (Underwear)",
  44531. image: {
  44532. source: "./media/characters/theo-acacia/front-underwear.svg",
  44533. extra: 1796/1741,
  44534. bottom: 83/1879
  44535. }
  44536. },
  44537. frontNude: {
  44538. height: math.unit(22 + 1/12, "feet"),
  44539. weight: math.unit(3200, "lb"),
  44540. name: "Front (Nude)",
  44541. image: {
  44542. source: "./media/characters/theo-acacia/front-nude.svg",
  44543. extra: 1796/1741,
  44544. bottom: 83/1879
  44545. }
  44546. },
  44547. },
  44548. [
  44549. {
  44550. name: "Normal",
  44551. height: math.unit(22 + 1/12, "feet"),
  44552. default: true
  44553. },
  44554. ]
  44555. ))
  44556. characterMakers.push(() => makeCharacter(
  44557. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44558. {
  44559. front: {
  44560. height: math.unit(20, "feet"),
  44561. name: "Front",
  44562. image: {
  44563. source: "./media/characters/astra/front.svg",
  44564. extra: 1850/1714,
  44565. bottom: 106/1956
  44566. }
  44567. },
  44568. frontUndressed: {
  44569. height: math.unit(20, "feet"),
  44570. name: "Front (Undressed)",
  44571. image: {
  44572. source: "./media/characters/astra/front-undressed.svg",
  44573. extra: 1926/1749,
  44574. bottom: 0/1926
  44575. }
  44576. },
  44577. hand: {
  44578. height: math.unit(1.53, "feet"),
  44579. name: "Hand",
  44580. image: {
  44581. source: "./media/characters/astra/hand.svg"
  44582. }
  44583. },
  44584. paw: {
  44585. height: math.unit(1.53, "feet"),
  44586. name: "Paw",
  44587. image: {
  44588. source: "./media/characters/astra/paw.svg"
  44589. }
  44590. },
  44591. },
  44592. [
  44593. {
  44594. name: "Smallest",
  44595. height: math.unit(20, "feet")
  44596. },
  44597. {
  44598. name: "Normal",
  44599. height: math.unit(1e9, "miles"),
  44600. default: true
  44601. },
  44602. {
  44603. name: "Larger",
  44604. height: math.unit(5, "multiverses")
  44605. },
  44606. {
  44607. name: "Largest",
  44608. height: math.unit(1e9, "multiverses")
  44609. },
  44610. ]
  44611. ))
  44612. characterMakers.push(() => makeCharacter(
  44613. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44614. {
  44615. front: {
  44616. height: math.unit(8, "feet"),
  44617. name: "Front",
  44618. image: {
  44619. source: "./media/characters/breanna/front.svg",
  44620. extra: 1912/1632,
  44621. bottom: 33/1945
  44622. }
  44623. },
  44624. },
  44625. [
  44626. {
  44627. name: "Smallest",
  44628. height: math.unit(8, "feet")
  44629. },
  44630. {
  44631. name: "Normal",
  44632. height: math.unit(1, "mile"),
  44633. default: true
  44634. },
  44635. {
  44636. name: "Maximum",
  44637. height: math.unit(1500000000000, "lightyears")
  44638. },
  44639. ]
  44640. ))
  44641. characterMakers.push(() => makeCharacter(
  44642. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44643. {
  44644. front: {
  44645. height: math.unit(5 + 11/12, "feet"),
  44646. weight: math.unit(155, "lb"),
  44647. name: "Front",
  44648. image: {
  44649. source: "./media/characters/cai/front.svg",
  44650. extra: 1823/1702,
  44651. bottom: 32/1855
  44652. }
  44653. },
  44654. back: {
  44655. height: math.unit(5 + 11/12, "feet"),
  44656. weight: math.unit(155, "lb"),
  44657. name: "Back",
  44658. image: {
  44659. source: "./media/characters/cai/back.svg",
  44660. extra: 1809/1708,
  44661. bottom: 31/1840
  44662. }
  44663. },
  44664. },
  44665. [
  44666. {
  44667. name: "Normal",
  44668. height: math.unit(5 + 11/12, "feet"),
  44669. default: true
  44670. },
  44671. {
  44672. name: "Big",
  44673. height: math.unit(15, "feet")
  44674. },
  44675. {
  44676. name: "Macro",
  44677. height: math.unit(200, "feet")
  44678. },
  44679. ]
  44680. ))
  44681. characterMakers.push(() => makeCharacter(
  44682. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44683. {
  44684. front: {
  44685. height: math.unit(5 + 6/12, "feet"),
  44686. weight: math.unit(160, "lb"),
  44687. name: "Front",
  44688. image: {
  44689. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44690. extra: 1227/1174,
  44691. bottom: 37/1264
  44692. }
  44693. },
  44694. },
  44695. [
  44696. {
  44697. name: "Macro",
  44698. height: math.unit(444, "meters"),
  44699. default: true
  44700. },
  44701. ]
  44702. ))
  44703. characterMakers.push(() => makeCharacter(
  44704. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44705. {
  44706. front: {
  44707. height: math.unit(18 + 7/12, "feet"),
  44708. name: "Front",
  44709. image: {
  44710. source: "./media/characters/rex/front.svg",
  44711. extra: 1941/1807,
  44712. bottom: 66/2007
  44713. }
  44714. },
  44715. back: {
  44716. height: math.unit(18 + 7/12, "feet"),
  44717. name: "Back",
  44718. image: {
  44719. source: "./media/characters/rex/back.svg",
  44720. extra: 1937/1822,
  44721. bottom: 42/1979
  44722. }
  44723. },
  44724. boot: {
  44725. height: math.unit(3.45, "feet"),
  44726. name: "Boot",
  44727. image: {
  44728. source: "./media/characters/rex/boot.svg"
  44729. }
  44730. },
  44731. paw: {
  44732. height: math.unit(4.17, "feet"),
  44733. name: "Paw",
  44734. image: {
  44735. source: "./media/characters/rex/paw.svg"
  44736. }
  44737. },
  44738. head: {
  44739. height: math.unit(6.728, "feet"),
  44740. name: "Head",
  44741. image: {
  44742. source: "./media/characters/rex/head.svg"
  44743. }
  44744. },
  44745. },
  44746. [
  44747. {
  44748. name: "Nano",
  44749. height: math.unit(18 + 7/12, "feet")
  44750. },
  44751. {
  44752. name: "Micro",
  44753. height: math.unit(1.5, "megameters")
  44754. },
  44755. {
  44756. name: "Normal",
  44757. height: math.unit(440, "megameters"),
  44758. default: true
  44759. },
  44760. {
  44761. name: "Macro",
  44762. height: math.unit(2.5, "gigameters")
  44763. },
  44764. {
  44765. name: "Gigamacro",
  44766. height: math.unit(2, "galaxies")
  44767. },
  44768. ]
  44769. ))
  44770. characterMakers.push(() => makeCharacter(
  44771. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44772. {
  44773. side: {
  44774. height: math.unit(32, "feet"),
  44775. weight: math.unit(250000, "lb"),
  44776. name: "Side",
  44777. image: {
  44778. source: "./media/characters/silverwing/side.svg",
  44779. extra: 1100/1019,
  44780. bottom: 204/1304
  44781. }
  44782. },
  44783. },
  44784. [
  44785. {
  44786. name: "Normal",
  44787. height: math.unit(32, "feet"),
  44788. default: true
  44789. },
  44790. ]
  44791. ))
  44792. characterMakers.push(() => makeCharacter(
  44793. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44794. {
  44795. front: {
  44796. height: math.unit(6 + 6/12, "feet"),
  44797. weight: math.unit(350, "lb"),
  44798. name: "Front",
  44799. image: {
  44800. source: "./media/characters/tristan-hawthorne/front.svg",
  44801. extra: 1159/1124,
  44802. bottom: 37/1196
  44803. },
  44804. form: "labrador",
  44805. default: true
  44806. },
  44807. skunkFront: {
  44808. height: math.unit(4 + 6/12, "feet"),
  44809. weight: math.unit(120, "lb"),
  44810. name: "Front",
  44811. image: {
  44812. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44813. extra: 1609/1551,
  44814. bottom: 169/1778
  44815. },
  44816. form: "skunk",
  44817. default: true
  44818. },
  44819. },
  44820. [
  44821. {
  44822. name: "Normal",
  44823. height: math.unit(6 + 6/12, "feet"),
  44824. form: "labrador",
  44825. default: true
  44826. },
  44827. {
  44828. name: "Normal",
  44829. height: math.unit(4 + 6/12, "feet"),
  44830. form: "skunk",
  44831. default: true
  44832. },
  44833. ],
  44834. {
  44835. "labrador": {
  44836. name: "Labrador",
  44837. default: true
  44838. },
  44839. "skunk": {
  44840. name: "Skunk"
  44841. }
  44842. }
  44843. ))
  44844. characterMakers.push(() => makeCharacter(
  44845. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44846. {
  44847. front: {
  44848. height: math.unit(5 + 11/12, "feet"),
  44849. weight: math.unit(190, "lb"),
  44850. name: "Front",
  44851. image: {
  44852. source: "./media/characters/mizu/front.svg",
  44853. extra: 1988/1788,
  44854. bottom: 14/2002
  44855. }
  44856. },
  44857. },
  44858. [
  44859. {
  44860. name: "Normal",
  44861. height: math.unit(5 + 11/12, "feet"),
  44862. default: true
  44863. },
  44864. ]
  44865. ))
  44866. characterMakers.push(() => makeCharacter(
  44867. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44868. {
  44869. front: {
  44870. height: math.unit(1.7, "feet"),
  44871. weight: math.unit(50, "lb"),
  44872. name: "Front",
  44873. image: {
  44874. source: "./media/characters/dechroma/front.svg",
  44875. extra: 1095/859,
  44876. bottom: 64/1159
  44877. }
  44878. },
  44879. },
  44880. [
  44881. {
  44882. name: "Normal",
  44883. height: math.unit(1.7, "feet"),
  44884. default: true
  44885. },
  44886. ]
  44887. ))
  44888. characterMakers.push(() => makeCharacter(
  44889. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44890. {
  44891. side: {
  44892. height: math.unit(30, "feet"),
  44893. name: "Side",
  44894. image: {
  44895. source: "./media/characters/veluren-thanazel/side.svg",
  44896. extra: 1611/633,
  44897. bottom: 118/1729
  44898. }
  44899. },
  44900. front: {
  44901. height: math.unit(30, "feet"),
  44902. name: "Front",
  44903. image: {
  44904. source: "./media/characters/veluren-thanazel/front.svg",
  44905. extra: 1486/636,
  44906. bottom: 238/1724
  44907. }
  44908. },
  44909. head: {
  44910. height: math.unit(21.4, "feet"),
  44911. name: "Head",
  44912. image: {
  44913. source: "./media/characters/veluren-thanazel/head.svg"
  44914. }
  44915. },
  44916. genitals: {
  44917. height: math.unit(19.4, "feet"),
  44918. name: "Genitals",
  44919. image: {
  44920. source: "./media/characters/veluren-thanazel/genitals.svg"
  44921. }
  44922. },
  44923. },
  44924. [
  44925. {
  44926. name: "Social",
  44927. height: math.unit(6, "feet")
  44928. },
  44929. {
  44930. name: "Play",
  44931. height: math.unit(12, "feet")
  44932. },
  44933. {
  44934. name: "True",
  44935. height: math.unit(30, "feet"),
  44936. default: true
  44937. },
  44938. ]
  44939. ))
  44940. characterMakers.push(() => makeCharacter(
  44941. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44942. {
  44943. front: {
  44944. height: math.unit(7 + 6/12, "feet"),
  44945. weight: math.unit(500, "kg"),
  44946. name: "Front",
  44947. image: {
  44948. source: "./media/characters/arcturas/front.svg",
  44949. extra: 1700/1500,
  44950. bottom: 145/1845
  44951. }
  44952. },
  44953. },
  44954. [
  44955. {
  44956. name: "Normal",
  44957. height: math.unit(7 + 6/12, "feet"),
  44958. default: true
  44959. },
  44960. ]
  44961. ))
  44962. characterMakers.push(() => makeCharacter(
  44963. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44964. {
  44965. side: {
  44966. height: math.unit(6, "feet"),
  44967. weight: math.unit(2, "tons"),
  44968. name: "Side",
  44969. image: {
  44970. source: "./media/characters/vitaen/side.svg",
  44971. extra: 1157/617,
  44972. bottom: 122/1279
  44973. }
  44974. },
  44975. },
  44976. [
  44977. {
  44978. name: "Normal",
  44979. height: math.unit(6, "feet"),
  44980. default: true
  44981. },
  44982. ]
  44983. ))
  44984. characterMakers.push(() => makeCharacter(
  44985. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44986. {
  44987. front: {
  44988. height: math.unit(19, "feet"),
  44989. name: "Front",
  44990. image: {
  44991. source: "./media/characters/fia-dreamweaver/front.svg",
  44992. extra: 1630/1504,
  44993. bottom: 25/1655
  44994. }
  44995. },
  44996. },
  44997. [
  44998. {
  44999. name: "Normal",
  45000. height: math.unit(19, "feet"),
  45001. default: true
  45002. },
  45003. ]
  45004. ))
  45005. characterMakers.push(() => makeCharacter(
  45006. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45007. {
  45008. front: {
  45009. height: math.unit(5 + 4/12, "feet"),
  45010. name: "Front",
  45011. image: {
  45012. source: "./media/characters/artan/front.svg",
  45013. extra: 1618/1535,
  45014. bottom: 46/1664
  45015. }
  45016. },
  45017. back: {
  45018. height: math.unit(5 + 4/12, "feet"),
  45019. name: "Back",
  45020. image: {
  45021. source: "./media/characters/artan/back.svg",
  45022. extra: 1618/1543,
  45023. bottom: 31/1649
  45024. }
  45025. },
  45026. },
  45027. [
  45028. {
  45029. name: "Normal",
  45030. height: math.unit(5 + 4/12, "feet"),
  45031. default: true
  45032. },
  45033. ]
  45034. ))
  45035. characterMakers.push(() => makeCharacter(
  45036. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45037. {
  45038. side: {
  45039. height: math.unit(182, "cm"),
  45040. weight: math.unit(1000, "lb"),
  45041. name: "Side",
  45042. image: {
  45043. source: "./media/characters/silver-dragon/side.svg",
  45044. extra: 710/287,
  45045. bottom: 88/798
  45046. }
  45047. },
  45048. },
  45049. [
  45050. {
  45051. name: "Normal",
  45052. height: math.unit(182, "cm"),
  45053. default: true
  45054. },
  45055. ]
  45056. ))
  45057. characterMakers.push(() => makeCharacter(
  45058. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45059. {
  45060. side: {
  45061. height: math.unit(6 + 6/12, "feet"),
  45062. weight: math.unit(1.5, "tons"),
  45063. name: "Side",
  45064. image: {
  45065. source: "./media/characters/zephyr/side.svg",
  45066. extra: 1433/586,
  45067. bottom: 109/1542
  45068. }
  45069. },
  45070. },
  45071. [
  45072. {
  45073. name: "Normal",
  45074. height: math.unit(6 + 6/12, "feet"),
  45075. default: true
  45076. },
  45077. ]
  45078. ))
  45079. characterMakers.push(() => makeCharacter(
  45080. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45081. {
  45082. side: {
  45083. height: math.unit(1, "feet"),
  45084. name: "Side",
  45085. image: {
  45086. source: "./media/characters/vixye/side.svg",
  45087. extra: 632/541,
  45088. bottom: 0/632
  45089. }
  45090. },
  45091. },
  45092. [
  45093. {
  45094. name: "Normal",
  45095. height: math.unit(1, "feet"),
  45096. default: true
  45097. },
  45098. {
  45099. name: "True",
  45100. height: math.unit(1e15, "multiverses")
  45101. },
  45102. ]
  45103. ))
  45104. characterMakers.push(() => makeCharacter(
  45105. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45106. {
  45107. front: {
  45108. height: math.unit(8 + 2/12, "feet"),
  45109. weight: math.unit(650, "lb"),
  45110. name: "Front",
  45111. image: {
  45112. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45113. extra: 1174/1137,
  45114. bottom: 82/1256
  45115. }
  45116. },
  45117. back: {
  45118. height: math.unit(8 + 2/12, "feet"),
  45119. weight: math.unit(650, "lb"),
  45120. name: "Back",
  45121. image: {
  45122. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45123. extra: 1204/1157,
  45124. bottom: 46/1250
  45125. }
  45126. },
  45127. },
  45128. [
  45129. {
  45130. name: "Wildform",
  45131. height: math.unit(8 + 2/12, "feet"),
  45132. default: true
  45133. },
  45134. ]
  45135. ))
  45136. characterMakers.push(() => makeCharacter(
  45137. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45138. {
  45139. front: {
  45140. height: math.unit(18, "feet"),
  45141. name: "Front",
  45142. image: {
  45143. source: "./media/characters/cyphin/front.svg",
  45144. extra: 970/886,
  45145. bottom: 42/1012
  45146. }
  45147. },
  45148. back: {
  45149. height: math.unit(18, "feet"),
  45150. name: "Back",
  45151. image: {
  45152. source: "./media/characters/cyphin/back.svg",
  45153. extra: 1009/894,
  45154. bottom: 24/1033
  45155. }
  45156. },
  45157. head: {
  45158. height: math.unit(5.05, "feet"),
  45159. name: "Head",
  45160. image: {
  45161. source: "./media/characters/cyphin/head.svg"
  45162. }
  45163. },
  45164. tailbud: {
  45165. height: math.unit(5, "feet"),
  45166. name: "Tailbud",
  45167. image: {
  45168. source: "./media/characters/cyphin/tailbud.svg"
  45169. }
  45170. },
  45171. },
  45172. [
  45173. ]
  45174. ))
  45175. characterMakers.push(() => makeCharacter(
  45176. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45177. {
  45178. side: {
  45179. height: math.unit(10, "feet"),
  45180. weight: math.unit(6, "tons"),
  45181. name: "Side",
  45182. image: {
  45183. source: "./media/characters/raijin/side.svg",
  45184. extra: 1529/613,
  45185. bottom: 337/1866
  45186. }
  45187. },
  45188. },
  45189. [
  45190. {
  45191. name: "Normal",
  45192. height: math.unit(10, "feet"),
  45193. default: true
  45194. },
  45195. ]
  45196. ))
  45197. characterMakers.push(() => makeCharacter(
  45198. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45199. {
  45200. side: {
  45201. height: math.unit(9, "feet"),
  45202. name: "Side",
  45203. image: {
  45204. source: "./media/characters/nilghais/side.svg",
  45205. extra: 1047/744,
  45206. bottom: 91/1138
  45207. }
  45208. },
  45209. head: {
  45210. height: math.unit(3.14, "feet"),
  45211. name: "Head",
  45212. image: {
  45213. source: "./media/characters/nilghais/head.svg"
  45214. }
  45215. },
  45216. mouth: {
  45217. height: math.unit(4.6, "feet"),
  45218. name: "Mouth",
  45219. image: {
  45220. source: "./media/characters/nilghais/mouth.svg"
  45221. }
  45222. },
  45223. wings: {
  45224. height: math.unit(24, "feet"),
  45225. name: "Wings",
  45226. image: {
  45227. source: "./media/characters/nilghais/wings.svg"
  45228. }
  45229. },
  45230. ass: {
  45231. height: math.unit(6.12, "feet"),
  45232. name: "Ass",
  45233. image: {
  45234. source: "./media/characters/nilghais/ass.svg"
  45235. }
  45236. },
  45237. },
  45238. [
  45239. {
  45240. name: "Normal",
  45241. height: math.unit(9, "feet"),
  45242. default: true
  45243. },
  45244. ]
  45245. ))
  45246. characterMakers.push(() => makeCharacter(
  45247. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45248. {
  45249. regular: {
  45250. height: math.unit(16 + 2/12, "feet"),
  45251. weight: math.unit(2300, "lb"),
  45252. name: "Regular",
  45253. image: {
  45254. source: "./media/characters/zolgar/regular.svg",
  45255. extra: 1246/1004,
  45256. bottom: 124/1370
  45257. }
  45258. },
  45259. boxers: {
  45260. height: math.unit(16 + 2/12, "feet"),
  45261. weight: math.unit(2300, "lb"),
  45262. name: "Boxers",
  45263. image: {
  45264. source: "./media/characters/zolgar/boxers.svg",
  45265. extra: 1246/1004,
  45266. bottom: 124/1370
  45267. }
  45268. },
  45269. armored: {
  45270. height: math.unit(16 + 2/12, "feet"),
  45271. weight: math.unit(2300, "lb"),
  45272. name: "Armored",
  45273. image: {
  45274. source: "./media/characters/zolgar/armored.svg",
  45275. extra: 1246/1004,
  45276. bottom: 124/1370
  45277. }
  45278. },
  45279. goth: {
  45280. height: math.unit(16 + 2/12, "feet"),
  45281. weight: math.unit(2300, "lb"),
  45282. name: "Goth",
  45283. image: {
  45284. source: "./media/characters/zolgar/goth.svg",
  45285. extra: 1246/1004,
  45286. bottom: 124/1370
  45287. }
  45288. },
  45289. },
  45290. [
  45291. {
  45292. name: "Shrunken Down",
  45293. height: math.unit(9 + 2/12, "feet")
  45294. },
  45295. {
  45296. name: "Normal",
  45297. height: math.unit(16 + 2/12, "feet"),
  45298. default: true
  45299. },
  45300. ]
  45301. ))
  45302. characterMakers.push(() => makeCharacter(
  45303. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45304. {
  45305. front: {
  45306. height: math.unit(6, "feet"),
  45307. weight: math.unit(168, "lb"),
  45308. name: "Front",
  45309. image: {
  45310. source: "./media/characters/luca/front.svg",
  45311. extra: 841/667,
  45312. bottom: 102/943
  45313. }
  45314. },
  45315. },
  45316. [
  45317. {
  45318. name: "Normal",
  45319. height: math.unit(6, "feet"),
  45320. default: true
  45321. },
  45322. ]
  45323. ))
  45324. characterMakers.push(() => makeCharacter(
  45325. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45326. {
  45327. side: {
  45328. height: math.unit(7 + 3/12, "feet"),
  45329. weight: math.unit(312, "lb"),
  45330. name: "Side",
  45331. image: {
  45332. source: "./media/characters/zezo/side.svg",
  45333. extra: 1192/1067,
  45334. bottom: 63/1255
  45335. }
  45336. },
  45337. },
  45338. [
  45339. {
  45340. name: "Normal",
  45341. height: math.unit(7 + 3/12, "feet"),
  45342. default: true
  45343. },
  45344. ]
  45345. ))
  45346. characterMakers.push(() => makeCharacter(
  45347. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45348. {
  45349. front: {
  45350. height: math.unit(5 + 5/12, "feet"),
  45351. weight: math.unit(170, "lb"),
  45352. name: "Front",
  45353. image: {
  45354. source: "./media/characters/mayso/front.svg",
  45355. extra: 1215/1108,
  45356. bottom: 16/1231
  45357. }
  45358. },
  45359. },
  45360. [
  45361. {
  45362. name: "Normal",
  45363. height: math.unit(5 + 5/12, "feet"),
  45364. default: true
  45365. },
  45366. ]
  45367. ))
  45368. characterMakers.push(() => makeCharacter(
  45369. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45370. {
  45371. front: {
  45372. height: math.unit(4 + 3/12, "feet"),
  45373. weight: math.unit(80, "lb"),
  45374. name: "Front",
  45375. image: {
  45376. source: "./media/characters/hess/front.svg",
  45377. extra: 1200/1123,
  45378. bottom: 16/1216
  45379. }
  45380. },
  45381. },
  45382. [
  45383. {
  45384. name: "Normal",
  45385. height: math.unit(4 + 3/12, "feet"),
  45386. default: true
  45387. },
  45388. ]
  45389. ))
  45390. characterMakers.push(() => makeCharacter(
  45391. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45392. {
  45393. front: {
  45394. height: math.unit(1.9, "meters"),
  45395. name: "Front",
  45396. image: {
  45397. source: "./media/characters/ashgar/front.svg",
  45398. extra: 1177/1146,
  45399. bottom: 99/1276
  45400. }
  45401. },
  45402. back: {
  45403. height: math.unit(1.9, "meters"),
  45404. name: "Back",
  45405. image: {
  45406. source: "./media/characters/ashgar/back.svg",
  45407. extra: 1201/1183,
  45408. bottom: 53/1254
  45409. }
  45410. },
  45411. feral: {
  45412. height: math.unit(1.4, "meters"),
  45413. name: "Feral",
  45414. image: {
  45415. source: "./media/characters/ashgar/feral.svg",
  45416. extra: 370/345,
  45417. bottom: 45/415
  45418. }
  45419. },
  45420. },
  45421. [
  45422. {
  45423. name: "Normal",
  45424. height: math.unit(1.9, "meters"),
  45425. default: true
  45426. },
  45427. ]
  45428. ))
  45429. characterMakers.push(() => makeCharacter(
  45430. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45431. {
  45432. regular: {
  45433. height: math.unit(6, "feet"),
  45434. weight: math.unit(220, "lb"),
  45435. name: "Regular",
  45436. image: {
  45437. source: "./media/characters/phillip/regular.svg",
  45438. extra: 1373/1277,
  45439. bottom: 75/1448
  45440. }
  45441. },
  45442. dressed: {
  45443. height: math.unit(6, "feet"),
  45444. weight: math.unit(220, "lb"),
  45445. name: "Dressed",
  45446. image: {
  45447. source: "./media/characters/phillip/dressed.svg",
  45448. extra: 1373/1277,
  45449. bottom: 75/1448
  45450. }
  45451. },
  45452. paw: {
  45453. height: math.unit(1.44, "feet"),
  45454. name: "Paw",
  45455. image: {
  45456. source: "./media/characters/phillip/paw.svg"
  45457. }
  45458. },
  45459. },
  45460. [
  45461. {
  45462. name: "Normal",
  45463. height: math.unit(6, "feet"),
  45464. default: true
  45465. },
  45466. ]
  45467. ))
  45468. characterMakers.push(() => makeCharacter(
  45469. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45470. {
  45471. side: {
  45472. height: math.unit(42, "feet"),
  45473. name: "Side",
  45474. image: {
  45475. source: "./media/characters/uvula/side.svg",
  45476. extra: 683/586,
  45477. bottom: 60/743
  45478. }
  45479. },
  45480. front: {
  45481. height: math.unit(42, "feet"),
  45482. name: "Front",
  45483. image: {
  45484. source: "./media/characters/uvula/front.svg",
  45485. extra: 705/613,
  45486. bottom: 54/759
  45487. }
  45488. },
  45489. maw: {
  45490. height: math.unit(23.5, "feet"),
  45491. name: "Maw",
  45492. image: {
  45493. source: "./media/characters/uvula/maw.svg"
  45494. }
  45495. },
  45496. },
  45497. [
  45498. {
  45499. name: "Original Size",
  45500. height: math.unit(14, "inches")
  45501. },
  45502. {
  45503. name: "Human Size",
  45504. height: math.unit(6, "feet")
  45505. },
  45506. {
  45507. name: "Big",
  45508. height: math.unit(42, "feet"),
  45509. default: true
  45510. },
  45511. {
  45512. name: "Bigger",
  45513. height: math.unit(100, "feet")
  45514. },
  45515. ]
  45516. ))
  45517. characterMakers.push(() => makeCharacter(
  45518. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45519. {
  45520. front: {
  45521. height: math.unit(5 + 11/12, "feet"),
  45522. name: "Front",
  45523. image: {
  45524. source: "./media/characters/lannah/front.svg",
  45525. extra: 1208/1113,
  45526. bottom: 97/1305
  45527. }
  45528. },
  45529. },
  45530. [
  45531. {
  45532. name: "Normal",
  45533. height: math.unit(5 + 11/12, "feet"),
  45534. default: true
  45535. },
  45536. ]
  45537. ))
  45538. characterMakers.push(() => makeCharacter(
  45539. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45540. {
  45541. front: {
  45542. height: math.unit(6 + 3/12, "feet"),
  45543. weight: math.unit(3.5, "tons"),
  45544. name: "Front",
  45545. image: {
  45546. source: "./media/characters/emberflame/front.svg",
  45547. extra: 1198/672,
  45548. bottom: 82/1280
  45549. }
  45550. },
  45551. side: {
  45552. height: math.unit(6 + 3/12, "feet"),
  45553. weight: math.unit(3.5, "tons"),
  45554. name: "Side",
  45555. image: {
  45556. source: "./media/characters/emberflame/side.svg",
  45557. extra: 938/527,
  45558. bottom: 56/994
  45559. }
  45560. },
  45561. },
  45562. [
  45563. {
  45564. name: "Normal",
  45565. height: math.unit(6 + 3/12, "feet"),
  45566. default: true
  45567. },
  45568. ]
  45569. ))
  45570. characterMakers.push(() => makeCharacter(
  45571. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45572. {
  45573. side: {
  45574. height: math.unit(17.5, "feet"),
  45575. weight: math.unit(35, "tons"),
  45576. name: "Side",
  45577. image: {
  45578. source: "./media/characters/sophie-ambrose/side.svg",
  45579. extra: 1573/1242,
  45580. bottom: 71/1644
  45581. }
  45582. },
  45583. maw: {
  45584. height: math.unit(7.4, "feet"),
  45585. name: "Maw",
  45586. image: {
  45587. source: "./media/characters/sophie-ambrose/maw.svg"
  45588. }
  45589. },
  45590. },
  45591. [
  45592. {
  45593. name: "Normal",
  45594. height: math.unit(17.5, "feet"),
  45595. default: true
  45596. },
  45597. ]
  45598. ))
  45599. characterMakers.push(() => makeCharacter(
  45600. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45601. {
  45602. front: {
  45603. height: math.unit(280, "feet"),
  45604. weight: math.unit(550, "tons"),
  45605. name: "Front",
  45606. image: {
  45607. source: "./media/characters/king-mugi/front.svg",
  45608. extra: 1102/947,
  45609. bottom: 104/1206
  45610. }
  45611. },
  45612. },
  45613. [
  45614. {
  45615. name: "King Mugi",
  45616. height: math.unit(280, "feet"),
  45617. default: true
  45618. },
  45619. ]
  45620. ))
  45621. characterMakers.push(() => makeCharacter(
  45622. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45623. {
  45624. female: {
  45625. height: math.unit(300, "meters"),
  45626. name: "Front",
  45627. image: {
  45628. source: "./media/characters/nova-fox/female.svg",
  45629. extra: 664/632,
  45630. bottom: 51/715
  45631. },
  45632. form: "female",
  45633. default: true
  45634. },
  45635. male: {
  45636. height: math.unit(300, "meters"),
  45637. name: "Front",
  45638. image: {
  45639. source: "./media/characters/nova-fox/male.svg",
  45640. extra: 663/631,
  45641. bottom: 30/693
  45642. },
  45643. form: "male",
  45644. default: true
  45645. },
  45646. },
  45647. [
  45648. {
  45649. name: "Macro",
  45650. height: math.unit(300, "meters"),
  45651. default: true,
  45652. allForms: true
  45653. },
  45654. ],
  45655. {
  45656. "female": {
  45657. name: "Female",
  45658. default: true
  45659. },
  45660. "male": {
  45661. name: "Male",
  45662. },
  45663. }
  45664. ))
  45665. characterMakers.push(() => makeCharacter(
  45666. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45667. {
  45668. front: {
  45669. height: math.unit(6 + 3/12, "feet"),
  45670. weight: math.unit(170, "lb"),
  45671. name: "Front",
  45672. image: {
  45673. source: "./media/characters/sam-bat/front.svg",
  45674. extra: 1601/1411,
  45675. bottom: 125/1726
  45676. }
  45677. },
  45678. back: {
  45679. height: math.unit(6 + 3/12, "feet"),
  45680. weight: math.unit(170, "lb"),
  45681. name: "Back",
  45682. image: {
  45683. source: "./media/characters/sam-bat/back.svg",
  45684. extra: 1577/1405,
  45685. bottom: 58/1635
  45686. }
  45687. },
  45688. },
  45689. [
  45690. {
  45691. name: "Normal",
  45692. height: math.unit(6 + 3/12, "feet"),
  45693. default: true
  45694. },
  45695. ]
  45696. ))
  45697. characterMakers.push(() => makeCharacter(
  45698. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45699. {
  45700. front: {
  45701. height: math.unit(59, "feet"),
  45702. weight: math.unit(40000, "lb"),
  45703. name: "Front",
  45704. image: {
  45705. source: "./media/characters/inari/front.svg",
  45706. extra: 1884/1350,
  45707. bottom: 95/1979
  45708. }
  45709. },
  45710. },
  45711. [
  45712. {
  45713. name: "Gigantamax",
  45714. height: math.unit(59, "feet"),
  45715. default: true
  45716. },
  45717. ]
  45718. ))
  45719. characterMakers.push(() => makeCharacter(
  45720. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45721. {
  45722. front: {
  45723. height: math.unit(5 + 8/12, "feet"),
  45724. name: "Front",
  45725. image: {
  45726. source: "./media/characters/elizabeth/front.svg",
  45727. extra: 1395/1298,
  45728. bottom: 54/1449
  45729. }
  45730. },
  45731. mouth: {
  45732. height: math.unit(1.97, "feet"),
  45733. name: "Mouth",
  45734. image: {
  45735. source: "./media/characters/elizabeth/mouth.svg"
  45736. }
  45737. },
  45738. foot: {
  45739. height: math.unit(1.17, "feet"),
  45740. name: "Foot",
  45741. image: {
  45742. source: "./media/characters/elizabeth/foot.svg"
  45743. }
  45744. },
  45745. },
  45746. [
  45747. {
  45748. name: "Normal",
  45749. height: math.unit(5 + 8/12, "feet"),
  45750. default: true
  45751. },
  45752. {
  45753. name: "Minimacro",
  45754. height: math.unit(18, "feet")
  45755. },
  45756. {
  45757. name: "Macro",
  45758. height: math.unit(180, "feet")
  45759. },
  45760. ]
  45761. ))
  45762. characterMakers.push(() => makeCharacter(
  45763. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45764. {
  45765. front: {
  45766. height: math.unit(5 + 2/12, "feet"),
  45767. name: "Front",
  45768. image: {
  45769. source: "./media/characters/october-gossamer/front.svg",
  45770. extra: 505/454,
  45771. bottom: 7/512
  45772. }
  45773. },
  45774. back: {
  45775. height: math.unit(5 + 2/12, "feet"),
  45776. name: "Back",
  45777. image: {
  45778. source: "./media/characters/october-gossamer/back.svg",
  45779. extra: 501/454,
  45780. bottom: 11/512
  45781. }
  45782. },
  45783. },
  45784. [
  45785. {
  45786. name: "Normal",
  45787. height: math.unit(5 + 2/12, "feet"),
  45788. default: true
  45789. },
  45790. ]
  45791. ))
  45792. characterMakers.push(() => makeCharacter(
  45793. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45794. {
  45795. front: {
  45796. height: math.unit(5, "feet"),
  45797. name: "Front",
  45798. image: {
  45799. source: "./media/characters/epiglottis/front.svg",
  45800. extra: 923/849,
  45801. bottom: 17/940
  45802. }
  45803. },
  45804. },
  45805. [
  45806. {
  45807. name: "Original Size",
  45808. height: math.unit(10, "inches")
  45809. },
  45810. {
  45811. name: "Human Size",
  45812. height: math.unit(5, "feet"),
  45813. default: true
  45814. },
  45815. {
  45816. name: "Big",
  45817. height: math.unit(25, "feet")
  45818. },
  45819. {
  45820. name: "Bigger",
  45821. height: math.unit(50, "feet")
  45822. },
  45823. {
  45824. name: "oh lawd",
  45825. height: math.unit(75, "feet")
  45826. },
  45827. ]
  45828. ))
  45829. characterMakers.push(() => makeCharacter(
  45830. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45831. {
  45832. front: {
  45833. height: math.unit(2 + 4/12, "feet"),
  45834. weight: math.unit(60, "lb"),
  45835. name: "Front",
  45836. image: {
  45837. source: "./media/characters/lerm/front.svg",
  45838. extra: 796/790,
  45839. bottom: 79/875
  45840. }
  45841. },
  45842. },
  45843. [
  45844. {
  45845. name: "Normal",
  45846. height: math.unit(2 + 4/12, "feet"),
  45847. default: true
  45848. },
  45849. ]
  45850. ))
  45851. characterMakers.push(() => makeCharacter(
  45852. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45853. {
  45854. front: {
  45855. height: math.unit(5.5, "feet"),
  45856. weight: math.unit(130, "lb"),
  45857. name: "Front",
  45858. image: {
  45859. source: "./media/characters/xena-nebadon/front.svg",
  45860. extra: 1828/1730,
  45861. bottom: 79/1907
  45862. }
  45863. },
  45864. },
  45865. [
  45866. {
  45867. name: "Tiny Puppy",
  45868. height: math.unit(3, "inches")
  45869. },
  45870. {
  45871. name: "Normal",
  45872. height: math.unit(5.5, "feet"),
  45873. default: true
  45874. },
  45875. {
  45876. name: "Lotta Lady",
  45877. height: math.unit(12, "feet")
  45878. },
  45879. {
  45880. name: "Pretty Big",
  45881. height: math.unit(100, "feet")
  45882. },
  45883. {
  45884. name: "Big",
  45885. height: math.unit(500, "feet")
  45886. },
  45887. {
  45888. name: "Skyscraper Toys",
  45889. height: math.unit(2500, "feet")
  45890. },
  45891. {
  45892. name: "Plane Catcher",
  45893. height: math.unit(8, "miles")
  45894. },
  45895. {
  45896. name: "Planet Toys",
  45897. height: math.unit(15, "earths")
  45898. },
  45899. {
  45900. name: "Stardust",
  45901. height: math.unit(0.25, "galaxies")
  45902. },
  45903. {
  45904. name: "Snacks",
  45905. height: math.unit(70, "universes")
  45906. },
  45907. ]
  45908. ))
  45909. characterMakers.push(() => makeCharacter(
  45910. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45911. {
  45912. front: {
  45913. height: math.unit(1.6, "meters"),
  45914. weight: math.unit(60, "kg"),
  45915. name: "Front",
  45916. image: {
  45917. source: "./media/characters/bounty/front.svg",
  45918. extra: 1426/1308,
  45919. bottom: 15/1441
  45920. }
  45921. },
  45922. back: {
  45923. height: math.unit(1.6, "meters"),
  45924. weight: math.unit(60, "kg"),
  45925. name: "Back",
  45926. image: {
  45927. source: "./media/characters/bounty/back.svg",
  45928. extra: 1417/1307,
  45929. bottom: 8/1425
  45930. }
  45931. },
  45932. },
  45933. [
  45934. {
  45935. name: "Normal",
  45936. height: math.unit(1.6, "meters"),
  45937. default: true
  45938. },
  45939. {
  45940. name: "Macro",
  45941. height: math.unit(300, "meters")
  45942. },
  45943. ]
  45944. ))
  45945. characterMakers.push(() => makeCharacter(
  45946. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45947. {
  45948. front: {
  45949. height: math.unit(2 + 8/12, "feet"),
  45950. weight: math.unit(15, "lb"),
  45951. name: "Front",
  45952. image: {
  45953. source: "./media/characters/mochi/front.svg",
  45954. extra: 1022/852,
  45955. bottom: 435/1457
  45956. }
  45957. },
  45958. back: {
  45959. height: math.unit(2 + 8/12, "feet"),
  45960. weight: math.unit(15, "lb"),
  45961. name: "Back",
  45962. image: {
  45963. source: "./media/characters/mochi/back.svg",
  45964. extra: 1335/1119,
  45965. bottom: 39/1374
  45966. }
  45967. },
  45968. bird: {
  45969. height: math.unit(2 + 8/12, "feet"),
  45970. weight: math.unit(15, "lb"),
  45971. name: "Bird",
  45972. image: {
  45973. source: "./media/characters/mochi/bird.svg",
  45974. extra: 1251/1113,
  45975. bottom: 178/1429
  45976. }
  45977. },
  45978. kaiju: {
  45979. height: math.unit(154, "feet"),
  45980. weight: math.unit(1e7, "lb"),
  45981. name: "Kaiju",
  45982. image: {
  45983. source: "./media/characters/mochi/kaiju.svg",
  45984. extra: 460/324,
  45985. bottom: 40/500
  45986. }
  45987. },
  45988. head: {
  45989. height: math.unit(1.21, "feet"),
  45990. name: "Head",
  45991. image: {
  45992. source: "./media/characters/mochi/head.svg"
  45993. }
  45994. },
  45995. alternateTail: {
  45996. height: math.unit(2 + 8/12, "feet"),
  45997. weight: math.unit(45, "lb"),
  45998. name: "Alternate Tail",
  45999. image: {
  46000. source: "./media/characters/mochi/alternate-tail.svg",
  46001. extra: 139/76,
  46002. bottom: 45/184
  46003. }
  46004. },
  46005. },
  46006. [
  46007. {
  46008. name: "Micro",
  46009. height: math.unit(2, "inches")
  46010. },
  46011. {
  46012. name: "Normal",
  46013. height: math.unit(2 + 8/12, "feet"),
  46014. default: true
  46015. },
  46016. {
  46017. name: "Macro",
  46018. height: math.unit(106, "feet")
  46019. },
  46020. ]
  46021. ))
  46022. characterMakers.push(() => makeCharacter(
  46023. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46024. {
  46025. front: {
  46026. height: math.unit(5.67, "feet"),
  46027. weight: math.unit(135, "lb"),
  46028. name: "Front",
  46029. image: {
  46030. source: "./media/characters/sarel/front.svg",
  46031. extra: 865/788,
  46032. bottom: 97/962
  46033. }
  46034. },
  46035. back: {
  46036. height: math.unit(5.67, "feet"),
  46037. weight: math.unit(135, "lb"),
  46038. name: "Back",
  46039. image: {
  46040. source: "./media/characters/sarel/back.svg",
  46041. extra: 857/777,
  46042. bottom: 32/889
  46043. }
  46044. },
  46045. chozoan: {
  46046. height: math.unit(5.67, "feet"),
  46047. weight: math.unit(135, "lb"),
  46048. name: "Chozoan",
  46049. image: {
  46050. source: "./media/characters/sarel/chozoan.svg",
  46051. extra: 865/788,
  46052. bottom: 97/962
  46053. }
  46054. },
  46055. current: {
  46056. height: math.unit(5.67, "feet"),
  46057. weight: math.unit(135, "lb"),
  46058. name: "Current",
  46059. image: {
  46060. source: "./media/characters/sarel/current.svg",
  46061. extra: 865/788,
  46062. bottom: 97/962
  46063. }
  46064. },
  46065. head: {
  46066. height: math.unit(1.77, "feet"),
  46067. name: "Head",
  46068. image: {
  46069. source: "./media/characters/sarel/head.svg"
  46070. }
  46071. },
  46072. claws: {
  46073. height: math.unit(1.8, "feet"),
  46074. name: "Claws",
  46075. image: {
  46076. source: "./media/characters/sarel/claws.svg"
  46077. }
  46078. },
  46079. clawsAlt: {
  46080. height: math.unit(1.8, "feet"),
  46081. name: "Claws-alt",
  46082. image: {
  46083. source: "./media/characters/sarel/claws-alt.svg"
  46084. }
  46085. },
  46086. },
  46087. [
  46088. {
  46089. name: "Normal",
  46090. height: math.unit(5.67, "feet"),
  46091. default: true
  46092. },
  46093. ]
  46094. ))
  46095. characterMakers.push(() => makeCharacter(
  46096. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46097. {
  46098. front: {
  46099. height: math.unit(5500, "feet"),
  46100. name: "Front",
  46101. image: {
  46102. source: "./media/characters/alyonia/front.svg",
  46103. extra: 1200/1135,
  46104. bottom: 29/1229
  46105. }
  46106. },
  46107. back: {
  46108. height: math.unit(5500, "feet"),
  46109. name: "Back",
  46110. image: {
  46111. source: "./media/characters/alyonia/back.svg",
  46112. extra: 1205/1138,
  46113. bottom: 10/1215
  46114. }
  46115. },
  46116. },
  46117. [
  46118. {
  46119. name: "Small",
  46120. height: math.unit(10, "feet")
  46121. },
  46122. {
  46123. name: "Macro",
  46124. height: math.unit(500, "feet")
  46125. },
  46126. {
  46127. name: "Mega Macro",
  46128. height: math.unit(5500, "feet"),
  46129. default: true
  46130. },
  46131. {
  46132. name: "Mega Macro+",
  46133. height: math.unit(500000, "feet")
  46134. },
  46135. {
  46136. name: "Giga Macro",
  46137. height: math.unit(3000, "miles")
  46138. },
  46139. {
  46140. name: "Tera Macro",
  46141. height: math.unit(2.8e6, "miles")
  46142. },
  46143. {
  46144. name: "Galactic",
  46145. height: math.unit(120000, "lightyears")
  46146. },
  46147. ]
  46148. ))
  46149. characterMakers.push(() => makeCharacter(
  46150. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46151. {
  46152. werewolf: {
  46153. height: math.unit(8, "feet"),
  46154. weight: math.unit(425, "lb"),
  46155. name: "Werewolf",
  46156. image: {
  46157. source: "./media/characters/autumn/werewolf.svg",
  46158. extra: 2154/2031,
  46159. bottom: 160/2314
  46160. }
  46161. },
  46162. human: {
  46163. height: math.unit(5 + 8/12, "feet"),
  46164. weight: math.unit(150, "lb"),
  46165. name: "Human",
  46166. image: {
  46167. source: "./media/characters/autumn/human.svg",
  46168. extra: 1200/1149,
  46169. bottom: 30/1230
  46170. }
  46171. },
  46172. },
  46173. [
  46174. {
  46175. name: "Normal",
  46176. height: math.unit(8, "feet"),
  46177. default: true
  46178. },
  46179. ]
  46180. ))
  46181. characterMakers.push(() => makeCharacter(
  46182. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46183. {
  46184. front: {
  46185. height: math.unit(8 + 5/12, "feet"),
  46186. weight: math.unit(825, "lb"),
  46187. name: "Front",
  46188. image: {
  46189. source: "./media/characters/cobalt-charizard/front.svg",
  46190. extra: 1268/1155,
  46191. bottom: 122/1390
  46192. }
  46193. },
  46194. side: {
  46195. height: math.unit(8 + 5/12, "feet"),
  46196. weight: math.unit(825, "lb"),
  46197. name: "Side",
  46198. image: {
  46199. source: "./media/characters/cobalt-charizard/side.svg",
  46200. extra: 1348/1257,
  46201. bottom: 58/1406
  46202. }
  46203. },
  46204. gMax: {
  46205. height: math.unit(134 + 11/12, "feet"),
  46206. name: "G-Max",
  46207. image: {
  46208. source: "./media/characters/cobalt-charizard/g-max.svg",
  46209. extra: 1835/1541,
  46210. bottom: 151/1986
  46211. }
  46212. },
  46213. },
  46214. [
  46215. {
  46216. name: "Normal",
  46217. height: math.unit(8 + 5/12, "feet"),
  46218. default: true
  46219. },
  46220. ]
  46221. ))
  46222. characterMakers.push(() => makeCharacter(
  46223. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46224. {
  46225. front: {
  46226. height: math.unit(6 + 3/12, "feet"),
  46227. weight: math.unit(210, "lb"),
  46228. name: "Front",
  46229. image: {
  46230. source: "./media/characters/stella/front.svg",
  46231. extra: 3549/3335,
  46232. bottom: 51/3600
  46233. }
  46234. },
  46235. },
  46236. [
  46237. {
  46238. name: "Normal",
  46239. height: math.unit(6 + 3/12, "feet"),
  46240. default: true
  46241. },
  46242. ]
  46243. ))
  46244. characterMakers.push(() => makeCharacter(
  46245. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46246. {
  46247. front: {
  46248. height: math.unit(5, "feet"),
  46249. weight: math.unit(90, "lb"),
  46250. name: "Front",
  46251. image: {
  46252. source: "./media/characters/riley-bishop/front.svg",
  46253. extra: 1450/1428,
  46254. bottom: 152/1602
  46255. }
  46256. },
  46257. },
  46258. [
  46259. {
  46260. name: "Normal",
  46261. height: math.unit(5, "feet"),
  46262. default: true
  46263. },
  46264. ]
  46265. ))
  46266. characterMakers.push(() => makeCharacter(
  46267. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46268. {
  46269. side: {
  46270. height: math.unit(8 + 2/12, "feet"),
  46271. weight: math.unit(500, "kg"),
  46272. name: "Side",
  46273. image: {
  46274. source: "./media/characters/theo-arcanine/side.svg",
  46275. extra: 1342/1074,
  46276. bottom: 111/1453
  46277. }
  46278. },
  46279. },
  46280. [
  46281. {
  46282. name: "Normal",
  46283. height: math.unit(8 + 2/12, "feet"),
  46284. default: true
  46285. },
  46286. ]
  46287. ))
  46288. characterMakers.push(() => makeCharacter(
  46289. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46290. {
  46291. front: {
  46292. height: math.unit(4, "feet"),
  46293. name: "Front",
  46294. image: {
  46295. source: "./media/characters/kali/front.svg",
  46296. extra: 1074/867,
  46297. bottom: 34/1108
  46298. }
  46299. },
  46300. back: {
  46301. height: math.unit(4, "feet"),
  46302. name: "Back",
  46303. image: {
  46304. source: "./media/characters/kali/back.svg",
  46305. extra: 1068/863,
  46306. bottom: 26/1094
  46307. }
  46308. },
  46309. frontAlt: {
  46310. height: math.unit(4, "feet"),
  46311. name: "Front (Alt)",
  46312. image: {
  46313. source: "./media/characters/kali/front-alt.svg",
  46314. extra: 1921/1357,
  46315. bottom: 70/1991
  46316. }
  46317. },
  46318. },
  46319. [
  46320. {
  46321. name: "Normal",
  46322. height: math.unit(4, "feet"),
  46323. default: true
  46324. },
  46325. {
  46326. name: "Big'vali",
  46327. height: math.unit(11, "feet")
  46328. },
  46329. {
  46330. name: "Macro",
  46331. height: math.unit(32, "meters")
  46332. },
  46333. {
  46334. name: "Macro+",
  46335. height: math.unit(150, "meters")
  46336. },
  46337. {
  46338. name: "Megamacro",
  46339. height: math.unit(7500, "meters")
  46340. },
  46341. {
  46342. name: "Megamacro+",
  46343. height: math.unit(80, "kilometers")
  46344. },
  46345. ]
  46346. ))
  46347. characterMakers.push(() => makeCharacter(
  46348. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46349. {
  46350. side: {
  46351. height: math.unit(5 + 11/12, "feet"),
  46352. weight: math.unit(236, "lb"),
  46353. name: "Side",
  46354. image: {
  46355. source: "./media/characters/gapp/side.svg",
  46356. extra: 775/340,
  46357. bottom: 58/833
  46358. }
  46359. },
  46360. mouth: {
  46361. height: math.unit(2.98, "feet"),
  46362. name: "Mouth",
  46363. image: {
  46364. source: "./media/characters/gapp/mouth.svg"
  46365. }
  46366. },
  46367. },
  46368. [
  46369. {
  46370. name: "Normal",
  46371. height: math.unit(5 + 1/12, "feet"),
  46372. default: true
  46373. },
  46374. ]
  46375. ))
  46376. characterMakers.push(() => makeCharacter(
  46377. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46378. {
  46379. front: {
  46380. height: math.unit(6, "feet"),
  46381. name: "Front",
  46382. image: {
  46383. source: "./media/characters/persephone/front.svg",
  46384. extra: 1895/1717,
  46385. bottom: 96/1991
  46386. }
  46387. },
  46388. back: {
  46389. height: math.unit(6, "feet"),
  46390. name: "Back",
  46391. image: {
  46392. source: "./media/characters/persephone/back.svg",
  46393. extra: 1868/1679,
  46394. bottom: 26/1894
  46395. }
  46396. },
  46397. casual: {
  46398. height: math.unit(6, "feet"),
  46399. name: "Casual",
  46400. image: {
  46401. source: "./media/characters/persephone/casual.svg",
  46402. extra: 1713/1541,
  46403. bottom: 76/1789
  46404. }
  46405. },
  46406. gaming: {
  46407. height: math.unit(3.55, "feet"),
  46408. name: "Gaming",
  46409. image: {
  46410. source: "./media/characters/persephone/gaming.svg",
  46411. extra: 1242/1038,
  46412. bottom: 66/1308
  46413. }
  46414. },
  46415. head: {
  46416. height: math.unit(2.15, "feet"),
  46417. name: "😐",
  46418. image: {
  46419. source: "./media/characters/persephone/head.svg"
  46420. }
  46421. },
  46422. talking: {
  46423. height: math.unit(2.5, "feet"),
  46424. name: "💬",
  46425. image: {
  46426. source: "./media/characters/persephone/talking.svg"
  46427. }
  46428. },
  46429. hmm: {
  46430. height: math.unit(2.28, "feet"),
  46431. name: "🤨",
  46432. image: {
  46433. source: "./media/characters/persephone/hmm.svg"
  46434. }
  46435. },
  46436. },
  46437. [
  46438. {
  46439. name: "Human Size",
  46440. height: math.unit(6, "feet")
  46441. },
  46442. {
  46443. name: "Big Steppy",
  46444. height: math.unit(600, "meters"),
  46445. default: true
  46446. },
  46447. {
  46448. name: "Galaxy Brain",
  46449. height: math.unit(1, "zettameter")
  46450. },
  46451. ]
  46452. ))
  46453. characterMakers.push(() => makeCharacter(
  46454. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46455. {
  46456. front: {
  46457. height: math.unit(1.85, "meters"),
  46458. name: "Front",
  46459. image: {
  46460. source: "./media/characters/riley-foxthing/front.svg",
  46461. extra: 1495/1354,
  46462. bottom: 122/1617
  46463. }
  46464. },
  46465. frontAlt: {
  46466. height: math.unit(1.85, "meters"),
  46467. name: "Front (Alt)",
  46468. image: {
  46469. source: "./media/characters/riley-foxthing/front-alt.svg",
  46470. extra: 1572/1389,
  46471. bottom: 116/1688
  46472. }
  46473. },
  46474. },
  46475. [
  46476. {
  46477. name: "Normal Sized",
  46478. height: math.unit(1.85, "meters"),
  46479. default: true
  46480. },
  46481. {
  46482. name: "Quite Sizable",
  46483. height: math.unit(5, "meters")
  46484. },
  46485. {
  46486. name: "Rather Large",
  46487. height: math.unit(20, "meters")
  46488. },
  46489. {
  46490. name: "Macro",
  46491. height: math.unit(450, "meters")
  46492. },
  46493. {
  46494. name: "Giga",
  46495. height: math.unit(5, "km")
  46496. },
  46497. ]
  46498. ))
  46499. characterMakers.push(() => makeCharacter(
  46500. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46501. {
  46502. front: {
  46503. height: math.unit(6, "feet"),
  46504. weight: math.unit(200, "lb"),
  46505. name: "Front",
  46506. image: {
  46507. source: "./media/characters/blizzard/front.svg",
  46508. extra: 1136/990,
  46509. bottom: 136/1272
  46510. }
  46511. },
  46512. back: {
  46513. height: math.unit(6, "feet"),
  46514. weight: math.unit(200, "lb"),
  46515. name: "Back",
  46516. image: {
  46517. source: "./media/characters/blizzard/back.svg",
  46518. extra: 1175/1034,
  46519. bottom: 97/1272
  46520. }
  46521. },
  46522. sitting: {
  46523. height: math.unit(3.725, "feet"),
  46524. weight: math.unit(200, "lb"),
  46525. name: "Sitting",
  46526. image: {
  46527. source: "./media/characters/blizzard/sitting.svg",
  46528. extra: 581/485,
  46529. bottom: 90/671
  46530. }
  46531. },
  46532. frontWizard: {
  46533. height: math.unit(7.9, "feet"),
  46534. weight: math.unit(200, "lb"),
  46535. name: "Front (Wizard)",
  46536. image: {
  46537. source: "./media/characters/blizzard/front-wizard.svg"
  46538. }
  46539. },
  46540. backWizard: {
  46541. height: math.unit(7.9, "feet"),
  46542. weight: math.unit(200, "lb"),
  46543. name: "Back (Wizard)",
  46544. image: {
  46545. source: "./media/characters/blizzard/back-wizard.svg"
  46546. }
  46547. },
  46548. frontNsfw: {
  46549. height: math.unit(6, "feet"),
  46550. weight: math.unit(200, "lb"),
  46551. name: "Front (NSFW)",
  46552. image: {
  46553. source: "./media/characters/blizzard/front-nsfw.svg",
  46554. extra: 1136/990,
  46555. bottom: 136/1272
  46556. }
  46557. },
  46558. backNsfw: {
  46559. height: math.unit(6, "feet"),
  46560. weight: math.unit(200, "lb"),
  46561. name: "Back (NSFW)",
  46562. image: {
  46563. source: "./media/characters/blizzard/back-nsfw.svg",
  46564. extra: 1175/1034,
  46565. bottom: 97/1272
  46566. }
  46567. },
  46568. sittingNsfw: {
  46569. height: math.unit(3.725, "feet"),
  46570. weight: math.unit(200, "lb"),
  46571. name: "Sitting (NSFW)",
  46572. image: {
  46573. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46574. extra: 581/485,
  46575. bottom: 90/671
  46576. }
  46577. },
  46578. wizardFrontNsfw: {
  46579. height: math.unit(7.9, "feet"),
  46580. weight: math.unit(200, "lb"),
  46581. name: "Wizard (Front, NSFW)",
  46582. image: {
  46583. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46584. }
  46585. },
  46586. },
  46587. [
  46588. {
  46589. name: "Normal",
  46590. height: math.unit(6, "feet"),
  46591. default: true
  46592. },
  46593. ]
  46594. ))
  46595. characterMakers.push(() => makeCharacter(
  46596. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46597. {
  46598. front: {
  46599. height: math.unit(5 + 2/12, "feet"),
  46600. name: "Front",
  46601. image: {
  46602. source: "./media/characters/lumi/front.svg",
  46603. extra: 1328/1268,
  46604. bottom: 103/1431
  46605. }
  46606. },
  46607. back: {
  46608. height: math.unit(5 + 2/12, "feet"),
  46609. name: "Back",
  46610. image: {
  46611. source: "./media/characters/lumi/back.svg",
  46612. extra: 1381/1327,
  46613. bottom: 43/1424
  46614. }
  46615. },
  46616. },
  46617. [
  46618. {
  46619. name: "Normal",
  46620. height: math.unit(5 + 2/12, "feet"),
  46621. default: true
  46622. },
  46623. ]
  46624. ))
  46625. characterMakers.push(() => makeCharacter(
  46626. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46627. {
  46628. front: {
  46629. height: math.unit(5 + 9/12, "feet"),
  46630. name: "Front",
  46631. image: {
  46632. source: "./media/characters/aliya-cotton/front.svg",
  46633. extra: 577/564,
  46634. bottom: 29/606
  46635. }
  46636. },
  46637. },
  46638. [
  46639. {
  46640. name: "Normal",
  46641. height: math.unit(5 + 9/12, "feet"),
  46642. default: true
  46643. },
  46644. ]
  46645. ))
  46646. characterMakers.push(() => makeCharacter(
  46647. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46648. {
  46649. front: {
  46650. height: math.unit(2.7, "meters"),
  46651. weight: math.unit(25000, "lb"),
  46652. name: "Front",
  46653. image: {
  46654. source: "./media/characters/noah-luxray/front.svg",
  46655. extra: 1644/825,
  46656. bottom: 339/1983
  46657. }
  46658. },
  46659. side: {
  46660. height: math.unit(2.97, "meters"),
  46661. weight: math.unit(25000, "lb"),
  46662. name: "Side",
  46663. image: {
  46664. source: "./media/characters/noah-luxray/side.svg",
  46665. extra: 1319/650,
  46666. bottom: 163/1482
  46667. }
  46668. },
  46669. dick: {
  46670. height: math.unit(7.4, "feet"),
  46671. weight: math.unit(2500, "lb"),
  46672. name: "Dick",
  46673. image: {
  46674. source: "./media/characters/noah-luxray/dick.svg"
  46675. }
  46676. },
  46677. dickAlt: {
  46678. height: math.unit(10.83, "feet"),
  46679. weight: math.unit(2500, "lb"),
  46680. name: "Dick-alt",
  46681. image: {
  46682. source: "./media/characters/noah-luxray/dick-alt.svg"
  46683. }
  46684. },
  46685. },
  46686. [
  46687. {
  46688. name: "BIG",
  46689. height: math.unit(2.7, "meters"),
  46690. default: true
  46691. },
  46692. ]
  46693. ))
  46694. characterMakers.push(() => makeCharacter(
  46695. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46696. {
  46697. standing: {
  46698. height: math.unit(183, "cm"),
  46699. weight: math.unit(68, "kg"),
  46700. name: "Standing",
  46701. image: {
  46702. source: "./media/characters/arion/standing.svg",
  46703. extra: 1869/1807,
  46704. bottom: 93/1962
  46705. }
  46706. },
  46707. reclining: {
  46708. height: math.unit(70.5, "cm"),
  46709. weight: math.unit(68, "lb"),
  46710. name: "Reclining",
  46711. image: {
  46712. source: "./media/characters/arion/reclining.svg",
  46713. extra: 937/870,
  46714. bottom: 63/1000
  46715. }
  46716. },
  46717. },
  46718. [
  46719. {
  46720. name: "Colossus Size, Low",
  46721. height: math.unit(33, "meters"),
  46722. default: true
  46723. },
  46724. {
  46725. name: "Colossus Size, Mid",
  46726. height: math.unit(52, "meters")
  46727. },
  46728. {
  46729. name: "Colossus Size, High",
  46730. height: math.unit(60, "meters")
  46731. },
  46732. {
  46733. name: "Titan Size, Low",
  46734. height: math.unit(91, "meters"),
  46735. },
  46736. {
  46737. name: "Titan Size, Mid",
  46738. height: math.unit(122, "meters")
  46739. },
  46740. {
  46741. name: "Titan Size, High",
  46742. height: math.unit(162, "meters")
  46743. },
  46744. ]
  46745. ))
  46746. characterMakers.push(() => makeCharacter(
  46747. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46748. {
  46749. front: {
  46750. height: math.unit(53, "meters"),
  46751. name: "Front",
  46752. image: {
  46753. source: "./media/characters/stellar-marbey/front.svg",
  46754. extra: 1913/1805,
  46755. bottom: 92/2005
  46756. }
  46757. },
  46758. back: {
  46759. height: math.unit(53, "meters"),
  46760. name: "Back",
  46761. image: {
  46762. source: "./media/characters/stellar-marbey/back.svg",
  46763. extra: 1960/1851,
  46764. bottom: 28/1988
  46765. }
  46766. },
  46767. mouth: {
  46768. height: math.unit(3.5, "meters"),
  46769. name: "Mouth",
  46770. image: {
  46771. source: "./media/characters/stellar-marbey/mouth.svg"
  46772. }
  46773. },
  46774. },
  46775. [
  46776. {
  46777. name: "Macro",
  46778. height: math.unit(53, "meters"),
  46779. default: true
  46780. },
  46781. ]
  46782. ))
  46783. characterMakers.push(() => makeCharacter(
  46784. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46785. {
  46786. front: {
  46787. height: math.unit(8 + 1/12, "feet"),
  46788. weight: math.unit(233, "lb"),
  46789. name: "Front",
  46790. image: {
  46791. source: "./media/characters/matsu/front.svg",
  46792. extra: 832/772,
  46793. bottom: 40/872
  46794. }
  46795. },
  46796. back: {
  46797. height: math.unit(8 + 1/12, "feet"),
  46798. weight: math.unit(233, "lb"),
  46799. name: "Back",
  46800. image: {
  46801. source: "./media/characters/matsu/back.svg",
  46802. extra: 839/780,
  46803. bottom: 47/886
  46804. }
  46805. },
  46806. },
  46807. [
  46808. {
  46809. name: "Normal",
  46810. height: math.unit(8 + 1/12, "feet"),
  46811. default: true
  46812. },
  46813. ]
  46814. ))
  46815. characterMakers.push(() => makeCharacter(
  46816. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46817. {
  46818. front: {
  46819. height: math.unit(4, "feet"),
  46820. weight: math.unit(148, "lb"),
  46821. name: "Front",
  46822. image: {
  46823. source: "./media/characters/thiz/front.svg",
  46824. extra: 1913/1748,
  46825. bottom: 62/1975
  46826. }
  46827. },
  46828. },
  46829. [
  46830. {
  46831. name: "Normal",
  46832. height: math.unit(4, "feet"),
  46833. default: true
  46834. },
  46835. ]
  46836. ))
  46837. characterMakers.push(() => makeCharacter(
  46838. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46839. {
  46840. front: {
  46841. height: math.unit(7 + 6/12, "feet"),
  46842. weight: math.unit(267, "lb"),
  46843. name: "Front",
  46844. image: {
  46845. source: "./media/characters/marcel/front.svg",
  46846. extra: 1221/1096,
  46847. bottom: 76/1297
  46848. }
  46849. },
  46850. },
  46851. [
  46852. {
  46853. name: "Normal",
  46854. height: math.unit(7 + 6/12, "feet"),
  46855. default: true
  46856. },
  46857. ]
  46858. ))
  46859. characterMakers.push(() => makeCharacter(
  46860. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46861. {
  46862. side: {
  46863. height: math.unit(42, "meters"),
  46864. name: "Side",
  46865. image: {
  46866. source: "./media/characters/flake/side.svg",
  46867. extra: 1525/1306,
  46868. bottom: 209/1734
  46869. }
  46870. },
  46871. },
  46872. [
  46873. {
  46874. name: "Normal",
  46875. height: math.unit(42, "meters"),
  46876. default: true
  46877. },
  46878. ]
  46879. ))
  46880. characterMakers.push(() => makeCharacter(
  46881. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46882. {
  46883. dressed: {
  46884. height: math.unit(6 + 4/12, "feet"),
  46885. weight: math.unit(520, "lb"),
  46886. name: "Dressed",
  46887. image: {
  46888. source: "./media/characters/someonne/dressed.svg",
  46889. extra: 1020/1010,
  46890. bottom: 178/1198
  46891. }
  46892. },
  46893. undressed: {
  46894. height: math.unit(6 + 4/12, "feet"),
  46895. weight: math.unit(520, "lb"),
  46896. name: "Undressed",
  46897. image: {
  46898. source: "./media/characters/someonne/undressed.svg",
  46899. extra: 1019/1014,
  46900. bottom: 169/1188
  46901. }
  46902. },
  46903. },
  46904. [
  46905. {
  46906. name: "Normal",
  46907. height: math.unit(6 + 4/12, "feet"),
  46908. default: true
  46909. },
  46910. ]
  46911. ))
  46912. characterMakers.push(() => makeCharacter(
  46913. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46914. {
  46915. front: {
  46916. height: math.unit(3, "feet"),
  46917. weight: math.unit(30, "lb"),
  46918. name: "Front",
  46919. image: {
  46920. source: "./media/characters/till/front.svg",
  46921. extra: 892/823,
  46922. bottom: 55/947
  46923. }
  46924. },
  46925. },
  46926. [
  46927. {
  46928. name: "Normal",
  46929. height: math.unit(3, "feet"),
  46930. default: true
  46931. },
  46932. ]
  46933. ))
  46934. characterMakers.push(() => makeCharacter(
  46935. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46936. {
  46937. front: {
  46938. height: math.unit(9 + 8/12, "feet"),
  46939. weight: math.unit(800, "lb"),
  46940. name: "Front",
  46941. image: {
  46942. source: "./media/characters/sydney-heki/front.svg",
  46943. extra: 1360/1300,
  46944. bottom: 22/1382
  46945. }
  46946. },
  46947. back: {
  46948. height: math.unit(9 + 8/12, "feet"),
  46949. weight: math.unit(800, "lb"),
  46950. name: "Back",
  46951. image: {
  46952. source: "./media/characters/sydney-heki/back.svg",
  46953. extra: 1356/1293,
  46954. bottom: 12/1368
  46955. }
  46956. },
  46957. frontDressed: {
  46958. height: math.unit(9 + 8/12, "feet"),
  46959. weight: math.unit(800, "lb"),
  46960. name: "Front-dressed",
  46961. image: {
  46962. source: "./media/characters/sydney-heki/front-dressed.svg",
  46963. extra: 1360/1300,
  46964. bottom: 22/1382
  46965. }
  46966. },
  46967. },
  46968. [
  46969. {
  46970. name: "Normal",
  46971. height: math.unit(9 + 8/12, "feet"),
  46972. default: true
  46973. },
  46974. {
  46975. name: "Macro",
  46976. height: math.unit(500, "feet")
  46977. },
  46978. {
  46979. name: "Megamacro",
  46980. height: math.unit(3.6, "miles")
  46981. },
  46982. ]
  46983. ))
  46984. characterMakers.push(() => makeCharacter(
  46985. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46986. {
  46987. front: {
  46988. height: math.unit(200, "cm"),
  46989. weight: math.unit(250, "lb"),
  46990. name: "Front",
  46991. image: {
  46992. source: "./media/characters/fowler-karlsson/front.svg",
  46993. extra: 897/845,
  46994. bottom: 123/1020
  46995. }
  46996. },
  46997. back: {
  46998. height: math.unit(200, "cm"),
  46999. weight: math.unit(250, "lb"),
  47000. name: "Back",
  47001. image: {
  47002. source: "./media/characters/fowler-karlsson/back.svg",
  47003. extra: 999/944,
  47004. bottom: 26/1025
  47005. }
  47006. },
  47007. dick: {
  47008. height: math.unit(1.92, "feet"),
  47009. weight: math.unit(150, "lb"),
  47010. name: "Dick",
  47011. image: {
  47012. source: "./media/characters/fowler-karlsson/dick.svg"
  47013. }
  47014. },
  47015. },
  47016. [
  47017. {
  47018. name: "Normal",
  47019. height: math.unit(200, "cm"),
  47020. default: true
  47021. },
  47022. {
  47023. name: "Smaller Macro",
  47024. height: math.unit(90, "m")
  47025. },
  47026. {
  47027. name: "Macro",
  47028. height: math.unit(150, "m")
  47029. },
  47030. {
  47031. name: "Bigger Macro",
  47032. height: math.unit(300, "m")
  47033. },
  47034. ]
  47035. ))
  47036. characterMakers.push(() => makeCharacter(
  47037. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47038. {
  47039. side: {
  47040. height: math.unit(8 + 2/12, "feet"),
  47041. weight: math.unit(1, "tonne"),
  47042. name: "Side",
  47043. image: {
  47044. source: "./media/characters/rylide/side.svg",
  47045. extra: 1318/1034,
  47046. bottom: 106/1424
  47047. }
  47048. },
  47049. sitting: {
  47050. height: math.unit(303, "cm"),
  47051. weight: math.unit(1, "tonne"),
  47052. name: "Sitting",
  47053. image: {
  47054. source: "./media/characters/rylide/sitting.svg",
  47055. extra: 1303/1103,
  47056. bottom: 36/1339
  47057. }
  47058. },
  47059. },
  47060. [
  47061. {
  47062. name: "Normal",
  47063. height: math.unit(8 + 2/12, "feet"),
  47064. default: true
  47065. },
  47066. ]
  47067. ))
  47068. characterMakers.push(() => makeCharacter(
  47069. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47070. {
  47071. front: {
  47072. height: math.unit(5 + 10/12, "feet"),
  47073. weight: math.unit(160, "lb"),
  47074. name: "Front",
  47075. image: {
  47076. source: "./media/characters/pudask/front.svg",
  47077. extra: 1616/1590,
  47078. bottom: 161/1777
  47079. }
  47080. },
  47081. },
  47082. [
  47083. {
  47084. name: "Ferret Height",
  47085. height: math.unit(2 + 5/12, "feet")
  47086. },
  47087. {
  47088. name: "Canon Height",
  47089. height: math.unit(5 + 10/12, "feet"),
  47090. default: true
  47091. },
  47092. ]
  47093. ))
  47094. characterMakers.push(() => makeCharacter(
  47095. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47096. {
  47097. front: {
  47098. height: math.unit(3 + 6/12, "feet"),
  47099. weight: math.unit(60, "lb"),
  47100. name: "Front",
  47101. image: {
  47102. source: "./media/characters/ramita/front.svg",
  47103. extra: 1402/1232,
  47104. bottom: 62/1464
  47105. }
  47106. },
  47107. dressed: {
  47108. height: math.unit(3 + 6/12, "feet"),
  47109. weight: math.unit(60, "lb"),
  47110. name: "Dressed",
  47111. image: {
  47112. source: "./media/characters/ramita/dressed.svg",
  47113. extra: 1534/1249,
  47114. bottom: 50/1584
  47115. }
  47116. },
  47117. },
  47118. [
  47119. {
  47120. name: "Normal",
  47121. height: math.unit(3 + 6/12, "feet"),
  47122. default: true
  47123. },
  47124. ]
  47125. ))
  47126. characterMakers.push(() => makeCharacter(
  47127. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47128. {
  47129. front: {
  47130. height: math.unit(8, "feet"),
  47131. name: "Front",
  47132. image: {
  47133. source: "./media/characters/ark/front.svg",
  47134. extra: 772/693,
  47135. bottom: 45/817
  47136. }
  47137. },
  47138. },
  47139. [
  47140. {
  47141. name: "Normal",
  47142. height: math.unit(8, "feet"),
  47143. default: true
  47144. },
  47145. ]
  47146. ))
  47147. characterMakers.push(() => makeCharacter(
  47148. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47149. {
  47150. front: {
  47151. height: math.unit(6, "feet"),
  47152. weight: math.unit(250, "lb"),
  47153. volume: math.unit(5/8, "gallons"),
  47154. name: "Front",
  47155. image: {
  47156. source: "./media/characters/ludwig-horn/front.svg",
  47157. extra: 1782/1635,
  47158. bottom: 96/1878
  47159. }
  47160. },
  47161. back: {
  47162. height: math.unit(6, "feet"),
  47163. weight: math.unit(250, "lb"),
  47164. volume: math.unit(5/8, "gallons"),
  47165. name: "Back",
  47166. image: {
  47167. source: "./media/characters/ludwig-horn/back.svg",
  47168. extra: 1874/1729,
  47169. bottom: 27/1901
  47170. }
  47171. },
  47172. dick: {
  47173. height: math.unit(1.05, "feet"),
  47174. weight: math.unit(15, "lb"),
  47175. volume: math.unit(5/8, "gallons"),
  47176. name: "Dick",
  47177. image: {
  47178. source: "./media/characters/ludwig-horn/dick.svg"
  47179. }
  47180. },
  47181. },
  47182. [
  47183. {
  47184. name: "Small",
  47185. height: math.unit(6, "feet")
  47186. },
  47187. {
  47188. name: "Typical",
  47189. height: math.unit(12, "feet"),
  47190. default: true
  47191. },
  47192. {
  47193. name: "Building",
  47194. height: math.unit(80, "feet")
  47195. },
  47196. {
  47197. name: "Town",
  47198. height: math.unit(800, "feet")
  47199. },
  47200. {
  47201. name: "Kingdom",
  47202. height: math.unit(80000, "feet")
  47203. },
  47204. {
  47205. name: "Planet",
  47206. height: math.unit(8000000, "feet")
  47207. },
  47208. {
  47209. name: "Universe",
  47210. height: math.unit(8000000000, "feet")
  47211. },
  47212. {
  47213. name: "Transcended",
  47214. height: math.unit(8e27, "feet")
  47215. },
  47216. ]
  47217. ))
  47218. characterMakers.push(() => makeCharacter(
  47219. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47220. {
  47221. front: {
  47222. height: math.unit(5, "feet"),
  47223. weight: math.unit(50, "kg"),
  47224. name: "Front",
  47225. image: {
  47226. source: "./media/characters/biot-avery/front.svg",
  47227. extra: 1295/1232,
  47228. bottom: 86/1381
  47229. }
  47230. },
  47231. },
  47232. [
  47233. {
  47234. name: "Normal",
  47235. height: math.unit(5, "feet"),
  47236. default: true
  47237. },
  47238. ]
  47239. ))
  47240. characterMakers.push(() => makeCharacter(
  47241. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47242. {
  47243. front: {
  47244. height: math.unit(6, "feet"),
  47245. name: "Front",
  47246. image: {
  47247. source: "./media/characters/kitsune-kiro/front.svg",
  47248. extra: 1270/1158,
  47249. bottom: 42/1312
  47250. }
  47251. },
  47252. frontAlt: {
  47253. height: math.unit(6, "feet"),
  47254. name: "Front-alt",
  47255. image: {
  47256. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47257. extra: 1130/1081,
  47258. bottom: 36/1166
  47259. }
  47260. },
  47261. },
  47262. [
  47263. {
  47264. name: "Smol",
  47265. height: math.unit(3, "feet")
  47266. },
  47267. {
  47268. name: "Normal",
  47269. height: math.unit(6, "feet"),
  47270. default: true
  47271. },
  47272. ]
  47273. ))
  47274. characterMakers.push(() => makeCharacter(
  47275. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47276. {
  47277. front: {
  47278. height: math.unit(6, "feet"),
  47279. weight: math.unit(125, "lb"),
  47280. name: "Front",
  47281. image: {
  47282. source: "./media/characters/jack-thatcher/front.svg",
  47283. extra: 1474/1370,
  47284. bottom: 26/1500
  47285. }
  47286. },
  47287. back: {
  47288. height: math.unit(6, "feet"),
  47289. weight: math.unit(125, "lb"),
  47290. name: "Back",
  47291. image: {
  47292. source: "./media/characters/jack-thatcher/back.svg",
  47293. extra: 1489/1384,
  47294. bottom: 18/1507
  47295. }
  47296. },
  47297. },
  47298. [
  47299. {
  47300. name: "Normal",
  47301. height: math.unit(6, "feet"),
  47302. default: true
  47303. },
  47304. {
  47305. name: "Macro",
  47306. height: math.unit(75, "feet")
  47307. },
  47308. {
  47309. name: "Macro-er",
  47310. height: math.unit(250, "feet")
  47311. },
  47312. ]
  47313. ))
  47314. characterMakers.push(() => makeCharacter(
  47315. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47316. {
  47317. front: {
  47318. height: math.unit(7, "feet"),
  47319. weight: math.unit(110, "kg"),
  47320. name: "Front",
  47321. image: {
  47322. source: "./media/characters/max-hyper/front.svg",
  47323. extra: 1969/1881,
  47324. bottom: 49/2018
  47325. }
  47326. },
  47327. },
  47328. [
  47329. {
  47330. name: "Normal",
  47331. height: math.unit(7, "feet"),
  47332. default: true
  47333. },
  47334. ]
  47335. ))
  47336. characterMakers.push(() => makeCharacter(
  47337. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47338. {
  47339. front: {
  47340. height: math.unit(5 + 5/12, "feet"),
  47341. weight: math.unit(160, "lb"),
  47342. name: "Front",
  47343. image: {
  47344. source: "./media/characters/spook/front.svg",
  47345. extra: 794/791,
  47346. bottom: 54/848
  47347. }
  47348. },
  47349. back: {
  47350. height: math.unit(5 + 5/12, "feet"),
  47351. weight: math.unit(160, "lb"),
  47352. name: "Back",
  47353. image: {
  47354. source: "./media/characters/spook/back.svg",
  47355. extra: 812/798,
  47356. bottom: 32/844
  47357. }
  47358. },
  47359. },
  47360. [
  47361. {
  47362. name: "Normal",
  47363. height: math.unit(5 + 5/12, "feet"),
  47364. default: true
  47365. },
  47366. ]
  47367. ))
  47368. characterMakers.push(() => makeCharacter(
  47369. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47370. {
  47371. front: {
  47372. height: math.unit(18, "feet"),
  47373. name: "Front",
  47374. image: {
  47375. source: "./media/characters/xeaduulix/front.svg",
  47376. extra: 1380/1166,
  47377. bottom: 110/1490
  47378. }
  47379. },
  47380. back: {
  47381. height: math.unit(18, "feet"),
  47382. name: "Back",
  47383. image: {
  47384. source: "./media/characters/xeaduulix/back.svg",
  47385. extra: 1592/1170,
  47386. bottom: 128/1720
  47387. }
  47388. },
  47389. frontNsfw: {
  47390. height: math.unit(18, "feet"),
  47391. name: "Front (NSFW)",
  47392. image: {
  47393. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47394. extra: 1380/1166,
  47395. bottom: 110/1490
  47396. }
  47397. },
  47398. backNsfw: {
  47399. height: math.unit(18, "feet"),
  47400. name: "Back (NSFW)",
  47401. image: {
  47402. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47403. extra: 1592/1170,
  47404. bottom: 128/1720
  47405. }
  47406. },
  47407. },
  47408. [
  47409. {
  47410. name: "Normal",
  47411. height: math.unit(18, "feet"),
  47412. default: true
  47413. },
  47414. ]
  47415. ))
  47416. characterMakers.push(() => makeCharacter(
  47417. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47418. {
  47419. spreadWings: {
  47420. height: math.unit(20, "feet"),
  47421. name: "Spread Wings",
  47422. image: {
  47423. source: "./media/characters/fledge/spread-wings.svg",
  47424. extra: 693/635,
  47425. bottom: 26/719
  47426. }
  47427. },
  47428. front: {
  47429. height: math.unit(20, "feet"),
  47430. name: "Front",
  47431. image: {
  47432. source: "./media/characters/fledge/front.svg",
  47433. extra: 684/637,
  47434. bottom: 18/702
  47435. }
  47436. },
  47437. frontAlt: {
  47438. height: math.unit(20, "feet"),
  47439. name: "Front (Alt)",
  47440. image: {
  47441. source: "./media/characters/fledge/front-alt.svg",
  47442. extra: 708/664,
  47443. bottom: 13/721
  47444. }
  47445. },
  47446. back: {
  47447. height: math.unit(20, "feet"),
  47448. name: "Back",
  47449. image: {
  47450. source: "./media/characters/fledge/back.svg",
  47451. extra: 718/634,
  47452. bottom: 22/740
  47453. }
  47454. },
  47455. head: {
  47456. height: math.unit(5.55, "feet"),
  47457. name: "Head",
  47458. image: {
  47459. source: "./media/characters/fledge/head.svg"
  47460. }
  47461. },
  47462. headAlt: {
  47463. height: math.unit(5.1, "feet"),
  47464. name: "Head (Alt)",
  47465. image: {
  47466. source: "./media/characters/fledge/head-alt.svg"
  47467. }
  47468. },
  47469. },
  47470. [
  47471. {
  47472. name: "Small",
  47473. height: math.unit(6 + 2/12, "feet")
  47474. },
  47475. {
  47476. name: "Big",
  47477. height: math.unit(20, "feet"),
  47478. default: true
  47479. },
  47480. {
  47481. name: "Giant",
  47482. height: math.unit(100, "feet")
  47483. },
  47484. {
  47485. name: "Macro",
  47486. height: math.unit(200, "feet")
  47487. },
  47488. ]
  47489. ))
  47490. characterMakers.push(() => makeCharacter(
  47491. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47492. {
  47493. front: {
  47494. height: math.unit(1, "meter"),
  47495. name: "Front",
  47496. image: {
  47497. source: "./media/characters/atlas-morenai/front.svg",
  47498. extra: 1275/1043,
  47499. bottom: 19/1294
  47500. }
  47501. },
  47502. back: {
  47503. height: math.unit(1, "meter"),
  47504. name: "Back",
  47505. image: {
  47506. source: "./media/characters/atlas-morenai/back.svg",
  47507. extra: 1141/1001,
  47508. bottom: 25/1166
  47509. }
  47510. },
  47511. },
  47512. [
  47513. {
  47514. name: "Normal",
  47515. height: math.unit(1, "meter"),
  47516. default: true
  47517. },
  47518. {
  47519. name: "Magic-Infused",
  47520. height: math.unit(5, "meters")
  47521. },
  47522. ]
  47523. ))
  47524. characterMakers.push(() => makeCharacter(
  47525. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47526. {
  47527. front: {
  47528. height: math.unit(5, "meters"),
  47529. name: "Front",
  47530. image: {
  47531. source: "./media/characters/cintia/front.svg",
  47532. extra: 1312/1228,
  47533. bottom: 38/1350
  47534. }
  47535. },
  47536. back: {
  47537. height: math.unit(5, "meters"),
  47538. name: "Back",
  47539. image: {
  47540. source: "./media/characters/cintia/back.svg",
  47541. extra: 1260/1166,
  47542. bottom: 98/1358
  47543. }
  47544. },
  47545. frontDick: {
  47546. height: math.unit(5, "meters"),
  47547. name: "Front (Dick)",
  47548. image: {
  47549. source: "./media/characters/cintia/front-dick.svg",
  47550. extra: 1312/1228,
  47551. bottom: 38/1350
  47552. }
  47553. },
  47554. backDick: {
  47555. height: math.unit(5, "meters"),
  47556. name: "Back (Dick)",
  47557. image: {
  47558. source: "./media/characters/cintia/back-dick.svg",
  47559. extra: 1260/1166,
  47560. bottom: 98/1358
  47561. }
  47562. },
  47563. bust: {
  47564. height: math.unit(1.97, "meters"),
  47565. name: "Bust",
  47566. image: {
  47567. source: "./media/characters/cintia/bust.svg",
  47568. extra: 617/565,
  47569. bottom: 0/617
  47570. }
  47571. },
  47572. },
  47573. [
  47574. {
  47575. name: "Normal",
  47576. height: math.unit(5, "meters"),
  47577. default: true
  47578. },
  47579. ]
  47580. ))
  47581. characterMakers.push(() => makeCharacter(
  47582. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47583. {
  47584. side: {
  47585. height: math.unit(100, "feet"),
  47586. name: "Side",
  47587. image: {
  47588. source: "./media/characters/denora/side.svg",
  47589. extra: 875/803,
  47590. bottom: 9/884
  47591. }
  47592. },
  47593. },
  47594. [
  47595. {
  47596. name: "Standard",
  47597. height: math.unit(100, "feet"),
  47598. default: true
  47599. },
  47600. {
  47601. name: "Grand",
  47602. height: math.unit(1000, "feet")
  47603. },
  47604. {
  47605. name: "Conquering",
  47606. height: math.unit(10000, "feet")
  47607. },
  47608. ]
  47609. ))
  47610. characterMakers.push(() => makeCharacter(
  47611. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47612. {
  47613. dressed: {
  47614. height: math.unit(8 + 5/12, "feet"),
  47615. weight: math.unit(700, "lb"),
  47616. name: "Dressed",
  47617. image: {
  47618. source: "./media/characters/kiva/dressed.svg",
  47619. extra: 1102/1055,
  47620. bottom: 60/1162
  47621. }
  47622. },
  47623. nude: {
  47624. height: math.unit(8 + 5/12, "feet"),
  47625. weight: math.unit(700, "lb"),
  47626. name: "Nude",
  47627. image: {
  47628. source: "./media/characters/kiva/nude.svg",
  47629. extra: 1102/1055,
  47630. bottom: 60/1162
  47631. }
  47632. },
  47633. },
  47634. [
  47635. {
  47636. name: "Base Height",
  47637. height: math.unit(8 + 5/12, "feet"),
  47638. default: true
  47639. },
  47640. {
  47641. name: "Macro",
  47642. height: math.unit(100, "feet")
  47643. },
  47644. {
  47645. name: "Max",
  47646. height: math.unit(3280, "feet")
  47647. },
  47648. ]
  47649. ))
  47650. characterMakers.push(() => makeCharacter(
  47651. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47652. {
  47653. front: {
  47654. height: math.unit(6 + 8/12, "feet"),
  47655. weight: math.unit(250, "lb"),
  47656. name: "Front",
  47657. image: {
  47658. source: "./media/characters/ztragon/front.svg",
  47659. extra: 1825/1684,
  47660. bottom: 98/1923
  47661. }
  47662. },
  47663. },
  47664. [
  47665. {
  47666. name: "Normal",
  47667. height: math.unit(6 + 8/12, "feet"),
  47668. default: true
  47669. },
  47670. {
  47671. name: "Macro",
  47672. height: math.unit(80, "feet")
  47673. },
  47674. ]
  47675. ))
  47676. characterMakers.push(() => makeCharacter(
  47677. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47678. {
  47679. front: {
  47680. height: math.unit(10.4, "feet"),
  47681. weight: math.unit(2, "tons"),
  47682. name: "Front",
  47683. image: {
  47684. source: "./media/characters/yesenia/front.svg",
  47685. extra: 1479/1474,
  47686. bottom: 233/1712
  47687. }
  47688. },
  47689. },
  47690. [
  47691. {
  47692. name: "Normal",
  47693. height: math.unit(10.4, "feet"),
  47694. default: true
  47695. },
  47696. ]
  47697. ))
  47698. characterMakers.push(() => makeCharacter(
  47699. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47700. {
  47701. normal: {
  47702. height: math.unit(6 + 1/12, "feet"),
  47703. weight: math.unit(180, "lb"),
  47704. name: "Normal",
  47705. image: {
  47706. source: "./media/characters/leanne-lycheborne/normal.svg",
  47707. extra: 1748/1660,
  47708. bottom: 98/1846
  47709. }
  47710. },
  47711. were: {
  47712. height: math.unit(12, "feet"),
  47713. weight: math.unit(1600, "lb"),
  47714. name: "Were",
  47715. image: {
  47716. source: "./media/characters/leanne-lycheborne/were.svg",
  47717. extra: 1485/1432,
  47718. bottom: 66/1551
  47719. }
  47720. },
  47721. },
  47722. [
  47723. {
  47724. name: "Normal",
  47725. height: math.unit(6 + 1/12, "feet"),
  47726. default: true
  47727. },
  47728. ]
  47729. ))
  47730. characterMakers.push(() => makeCharacter(
  47731. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47732. {
  47733. side: {
  47734. height: math.unit(13, "feet"),
  47735. name: "Side",
  47736. image: {
  47737. source: "./media/characters/kira-tyler/side.svg",
  47738. extra: 693/393,
  47739. bottom: 58/751
  47740. }
  47741. },
  47742. },
  47743. [
  47744. {
  47745. name: "Normal",
  47746. height: math.unit(13, "feet"),
  47747. default: true
  47748. },
  47749. ]
  47750. ))
  47751. characterMakers.push(() => makeCharacter(
  47752. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47753. {
  47754. front: {
  47755. height: math.unit(10.3, "feet"),
  47756. weight: math.unit(150, "lb"),
  47757. name: "Front",
  47758. image: {
  47759. source: "./media/characters/blaze/front.svg",
  47760. extra: 1378/1286,
  47761. bottom: 172/1550
  47762. }
  47763. },
  47764. },
  47765. [
  47766. {
  47767. name: "Normal",
  47768. height: math.unit(10.3, "feet"),
  47769. default: true
  47770. },
  47771. ]
  47772. ))
  47773. characterMakers.push(() => makeCharacter(
  47774. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47775. {
  47776. side: {
  47777. height: math.unit(2, "meters"),
  47778. weight: math.unit(400, "kg"),
  47779. name: "Side",
  47780. image: {
  47781. source: "./media/characters/anu/side.svg",
  47782. extra: 506/394,
  47783. bottom: 18/524
  47784. }
  47785. },
  47786. },
  47787. [
  47788. {
  47789. name: "Humanoid",
  47790. height: math.unit(2, "meters")
  47791. },
  47792. {
  47793. name: "Normal",
  47794. height: math.unit(5, "meters"),
  47795. default: true
  47796. },
  47797. ]
  47798. ))
  47799. characterMakers.push(() => makeCharacter(
  47800. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47801. {
  47802. front: {
  47803. height: math.unit(5 + 5/12, "feet"),
  47804. weight: math.unit(170, "lb"),
  47805. name: "Front",
  47806. image: {
  47807. source: "./media/characters/synx-the-lynx/front.svg",
  47808. extra: 1893/1745,
  47809. bottom: 17/1910
  47810. }
  47811. },
  47812. side: {
  47813. height: math.unit(5 + 5/12, "feet"),
  47814. weight: math.unit(170, "lb"),
  47815. name: "Side",
  47816. image: {
  47817. source: "./media/characters/synx-the-lynx/side.svg",
  47818. extra: 1884/1740,
  47819. bottom: 39/1923
  47820. }
  47821. },
  47822. back: {
  47823. height: math.unit(5 + 5/12, "feet"),
  47824. weight: math.unit(170, "lb"),
  47825. name: "Back",
  47826. image: {
  47827. source: "./media/characters/synx-the-lynx/back.svg",
  47828. extra: 1903/1755,
  47829. bottom: 14/1917
  47830. }
  47831. },
  47832. },
  47833. [
  47834. {
  47835. name: "Normal",
  47836. height: math.unit(5 + 5/12, "feet"),
  47837. default: true
  47838. },
  47839. ]
  47840. ))
  47841. characterMakers.push(() => makeCharacter(
  47842. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47843. {
  47844. back: {
  47845. height: math.unit(15, "feet"),
  47846. name: "Back",
  47847. image: {
  47848. source: "./media/characters/nadezda-fex/back.svg",
  47849. extra: 1695/1481,
  47850. bottom: 25/1720
  47851. }
  47852. },
  47853. },
  47854. [
  47855. {
  47856. name: "Normal",
  47857. height: math.unit(15, "feet"),
  47858. default: true
  47859. },
  47860. {
  47861. name: "Macro",
  47862. height: math.unit(2.5, "miles")
  47863. },
  47864. {
  47865. name: "Goddess",
  47866. height: math.unit(2, "multiverses")
  47867. },
  47868. ]
  47869. ))
  47870. characterMakers.push(() => makeCharacter(
  47871. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47872. {
  47873. front: {
  47874. height: math.unit(216, "cm"),
  47875. name: "Front",
  47876. image: {
  47877. source: "./media/characters/lev/front.svg",
  47878. extra: 1728/1670,
  47879. bottom: 82/1810
  47880. }
  47881. },
  47882. back: {
  47883. height: math.unit(216, "cm"),
  47884. name: "Back",
  47885. image: {
  47886. source: "./media/characters/lev/back.svg",
  47887. extra: 1738/1675,
  47888. bottom: 24/1762
  47889. }
  47890. },
  47891. dressed: {
  47892. height: math.unit(216, "cm"),
  47893. name: "Dressed",
  47894. image: {
  47895. source: "./media/characters/lev/dressed.svg",
  47896. extra: 1397/1351,
  47897. bottom: 73/1470
  47898. }
  47899. },
  47900. head: {
  47901. height: math.unit(0.51, "meter"),
  47902. name: "Head",
  47903. image: {
  47904. source: "./media/characters/lev/head.svg"
  47905. }
  47906. },
  47907. },
  47908. [
  47909. {
  47910. name: "Normal",
  47911. height: math.unit(216, "cm"),
  47912. default: true
  47913. },
  47914. {
  47915. name: "Relatively Macro",
  47916. height: math.unit(80, "meters")
  47917. },
  47918. {
  47919. name: "Megamacro",
  47920. height: math.unit(21600, "meters")
  47921. },
  47922. {
  47923. name: "Megamacro+",
  47924. height: math.unit(64800, "meters")
  47925. },
  47926. ]
  47927. ))
  47928. characterMakers.push(() => makeCharacter(
  47929. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47930. {
  47931. front: {
  47932. height: math.unit(2, "meters"),
  47933. weight: math.unit(80, "kg"),
  47934. name: "Front",
  47935. image: {
  47936. source: "./media/characters/moka/front.svg",
  47937. extra: 1337/1255,
  47938. bottom: 58/1395
  47939. }
  47940. },
  47941. },
  47942. [
  47943. {
  47944. name: "Micro",
  47945. height: math.unit(15, "cm")
  47946. },
  47947. {
  47948. name: "Normal",
  47949. height: math.unit(2, "meters"),
  47950. default: true
  47951. },
  47952. {
  47953. name: "Macro",
  47954. height: math.unit(20, "meters"),
  47955. },
  47956. ]
  47957. ))
  47958. characterMakers.push(() => makeCharacter(
  47959. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47960. {
  47961. front: {
  47962. height: math.unit(9, "feet"),
  47963. weight: math.unit(240, "lb"),
  47964. name: "Front",
  47965. image: {
  47966. source: "./media/characters/kuzco/front.svg",
  47967. extra: 1593/1487,
  47968. bottom: 32/1625
  47969. }
  47970. },
  47971. side: {
  47972. height: math.unit(9, "feet"),
  47973. weight: math.unit(240, "lb"),
  47974. name: "Side",
  47975. image: {
  47976. source: "./media/characters/kuzco/side.svg",
  47977. extra: 1575/1485,
  47978. bottom: 30/1605
  47979. }
  47980. },
  47981. back: {
  47982. height: math.unit(9, "feet"),
  47983. weight: math.unit(240, "lb"),
  47984. name: "Back",
  47985. image: {
  47986. source: "./media/characters/kuzco/back.svg",
  47987. extra: 1603/1514,
  47988. bottom: 14/1617
  47989. }
  47990. },
  47991. },
  47992. [
  47993. {
  47994. name: "Normal",
  47995. height: math.unit(9, "feet"),
  47996. default: true
  47997. },
  47998. ]
  47999. ))
  48000. characterMakers.push(() => makeCharacter(
  48001. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48002. {
  48003. side: {
  48004. height: math.unit(2, "meters"),
  48005. weight: math.unit(300, "kg"),
  48006. name: "Side",
  48007. image: {
  48008. source: "./media/characters/ceruleus/side.svg",
  48009. extra: 1068/974,
  48010. bottom: 126/1194
  48011. }
  48012. },
  48013. maw: {
  48014. height: math.unit(0.8125, "meter"),
  48015. name: "Maw",
  48016. image: {
  48017. source: "./media/characters/ceruleus/maw.svg"
  48018. }
  48019. },
  48020. },
  48021. [
  48022. {
  48023. name: "Normal",
  48024. height: math.unit(16, "meters"),
  48025. default: true
  48026. },
  48027. ]
  48028. ))
  48029. characterMakers.push(() => makeCharacter(
  48030. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48031. {
  48032. front: {
  48033. height: math.unit(9, "feet"),
  48034. weight: math.unit(500, "kg"),
  48035. name: "Front",
  48036. image: {
  48037. source: "./media/characters/acouya/front.svg",
  48038. extra: 1660/1473,
  48039. bottom: 28/1688
  48040. }
  48041. },
  48042. },
  48043. [
  48044. {
  48045. name: "Normal",
  48046. height: math.unit(9, "feet"),
  48047. default: true
  48048. },
  48049. ]
  48050. ))
  48051. characterMakers.push(() => makeCharacter(
  48052. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48053. {
  48054. front: {
  48055. height: math.unit(5 + 6/12, "feet"),
  48056. weight: math.unit(195, "lb"),
  48057. name: "Front",
  48058. image: {
  48059. source: "./media/characters/vant/front.svg",
  48060. extra: 1396/1320,
  48061. bottom: 20/1416
  48062. }
  48063. },
  48064. back: {
  48065. height: math.unit(5 + 6/12, "feet"),
  48066. weight: math.unit(195, "lb"),
  48067. name: "Back",
  48068. image: {
  48069. source: "./media/characters/vant/back.svg",
  48070. extra: 1396/1320,
  48071. bottom: 20/1416
  48072. }
  48073. },
  48074. maw: {
  48075. height: math.unit(0.75, "feet"),
  48076. name: "Maw",
  48077. image: {
  48078. source: "./media/characters/vant/maw.svg"
  48079. }
  48080. },
  48081. paw: {
  48082. height: math.unit(1.07, "feet"),
  48083. name: "Paw",
  48084. image: {
  48085. source: "./media/characters/vant/paw.svg"
  48086. }
  48087. },
  48088. },
  48089. [
  48090. {
  48091. name: "Micro",
  48092. height: math.unit(0.25, "inches")
  48093. },
  48094. {
  48095. name: "Normal",
  48096. height: math.unit(5 + 6/12, "feet"),
  48097. default: true
  48098. },
  48099. {
  48100. name: "Macro",
  48101. height: math.unit(75, "feet")
  48102. },
  48103. ]
  48104. ))
  48105. characterMakers.push(() => makeCharacter(
  48106. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48107. {
  48108. front: {
  48109. height: math.unit(30, "meters"),
  48110. weight: math.unit(363, "tons"),
  48111. name: "Front",
  48112. image: {
  48113. source: "./media/characters/ahra/front.svg",
  48114. extra: 1914/1814,
  48115. bottom: 46/1960
  48116. }
  48117. },
  48118. },
  48119. [
  48120. {
  48121. name: "Macro",
  48122. height: math.unit(30, "meters"),
  48123. default: true
  48124. },
  48125. ]
  48126. ))
  48127. characterMakers.push(() => makeCharacter(
  48128. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48129. {
  48130. undressed: {
  48131. height: math.unit(2, "m"),
  48132. weight: math.unit(250, "kg"),
  48133. name: "Undressed",
  48134. image: {
  48135. source: "./media/characters/coriander/undressed.svg",
  48136. extra: 1757/1606,
  48137. bottom: 107/1864
  48138. }
  48139. },
  48140. dressed: {
  48141. height: math.unit(2, "m"),
  48142. weight: math.unit(250, "kg"),
  48143. name: "Dressed",
  48144. image: {
  48145. source: "./media/characters/coriander/dressed.svg",
  48146. extra: 1757/1606,
  48147. bottom: 107/1864
  48148. }
  48149. },
  48150. },
  48151. [
  48152. {
  48153. name: "Normal",
  48154. height: math.unit(4, "meters"),
  48155. default: true
  48156. },
  48157. {
  48158. name: "XL",
  48159. height: math.unit(6, "meters")
  48160. },
  48161. {
  48162. name: "XXL",
  48163. height: math.unit(8, "meters")
  48164. },
  48165. ]
  48166. ))
  48167. characterMakers.push(() => makeCharacter(
  48168. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48169. {
  48170. front: {
  48171. height: math.unit(6, "feet"),
  48172. name: "Front",
  48173. image: {
  48174. source: "./media/characters/syrinx/front.svg",
  48175. extra: 1557/1259,
  48176. bottom: 171/1728
  48177. }
  48178. },
  48179. },
  48180. [
  48181. {
  48182. name: "Normal",
  48183. height: math.unit(6 + 3/12, "feet"),
  48184. default: true
  48185. },
  48186. ]
  48187. ))
  48188. characterMakers.push(() => makeCharacter(
  48189. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48190. {
  48191. front: {
  48192. height: math.unit(11 + 6/12, "feet"),
  48193. weight: math.unit(1.5, "tons"),
  48194. name: "Front",
  48195. image: {
  48196. source: "./media/characters/bor/front.svg",
  48197. extra: 1189/1109,
  48198. bottom: 170/1359
  48199. }
  48200. },
  48201. },
  48202. [
  48203. {
  48204. name: "Normal",
  48205. height: math.unit(11 + 6/12, "feet"),
  48206. default: true
  48207. },
  48208. {
  48209. name: "Macro",
  48210. height: math.unit(32 + 9/12, "feet")
  48211. },
  48212. ]
  48213. ))
  48214. characterMakers.push(() => makeCharacter(
  48215. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48216. {
  48217. anthro: {
  48218. height: math.unit(9, "feet"),
  48219. weight: math.unit(2076, "lb"),
  48220. name: "Anthro",
  48221. image: {
  48222. source: "./media/characters/abacus/anthro.svg",
  48223. extra: 1540/1494,
  48224. bottom: 233/1773
  48225. }
  48226. },
  48227. pigeon: {
  48228. height: math.unit(1, "feet"),
  48229. name: "Pigeon",
  48230. image: {
  48231. source: "./media/characters/abacus/pigeon.svg",
  48232. extra: 528/525,
  48233. bottom: 46/574
  48234. }
  48235. },
  48236. },
  48237. [
  48238. {
  48239. name: "Normal",
  48240. height: math.unit(9, "feet"),
  48241. default: true
  48242. },
  48243. ]
  48244. ))
  48245. characterMakers.push(() => makeCharacter(
  48246. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48247. {
  48248. side: {
  48249. height: math.unit(6, "feet"),
  48250. name: "Side",
  48251. image: {
  48252. source: "./media/characters/delkhan/side.svg",
  48253. extra: 1884/1786,
  48254. bottom: 308/2192
  48255. }
  48256. },
  48257. head: {
  48258. height: math.unit(3.38, "feet"),
  48259. name: "Head",
  48260. image: {
  48261. source: "./media/characters/delkhan/head.svg"
  48262. }
  48263. },
  48264. },
  48265. [
  48266. {
  48267. name: "Normal",
  48268. height: math.unit(72, "feet"),
  48269. default: true
  48270. },
  48271. {
  48272. name: "Giant",
  48273. height: math.unit(172, "feet")
  48274. },
  48275. ]
  48276. ))
  48277. characterMakers.push(() => makeCharacter(
  48278. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48279. {
  48280. standing: {
  48281. height: math.unit(6, "feet"),
  48282. name: "Standing",
  48283. image: {
  48284. source: "./media/characters/euchidat/standing.svg",
  48285. extra: 1612/1553,
  48286. bottom: 116/1728
  48287. }
  48288. },
  48289. leaning: {
  48290. height: math.unit(6, "feet"),
  48291. name: "Leaning",
  48292. image: {
  48293. source: "./media/characters/euchidat/leaning.svg",
  48294. extra: 1719/1674,
  48295. bottom: 27/1746
  48296. }
  48297. },
  48298. },
  48299. [
  48300. {
  48301. name: "Normal",
  48302. height: math.unit(175, "feet"),
  48303. default: true
  48304. },
  48305. {
  48306. name: "Megamacro",
  48307. height: math.unit(190, "miles")
  48308. },
  48309. {
  48310. name: "Gigamacro",
  48311. height: math.unit(190000, "miles")
  48312. },
  48313. ]
  48314. ))
  48315. characterMakers.push(() => makeCharacter(
  48316. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48317. {
  48318. front: {
  48319. height: math.unit(6, "feet"),
  48320. weight: math.unit(150, "lb"),
  48321. name: "Front",
  48322. image: {
  48323. source: "./media/characters/rebecca-stack/front.svg",
  48324. extra: 1256/1201,
  48325. bottom: 18/1274
  48326. }
  48327. },
  48328. },
  48329. [
  48330. {
  48331. name: "Normal",
  48332. height: math.unit(5 + 8/12, "feet"),
  48333. default: true
  48334. },
  48335. {
  48336. name: "Demolitionist",
  48337. height: math.unit(200, "feet")
  48338. },
  48339. {
  48340. name: "Out of Control",
  48341. height: math.unit(2, "miles")
  48342. },
  48343. {
  48344. name: "Giga",
  48345. height: math.unit(7200, "miles")
  48346. },
  48347. ]
  48348. ))
  48349. characterMakers.push(() => makeCharacter(
  48350. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48351. {
  48352. front: {
  48353. height: math.unit(6, "feet"),
  48354. weight: math.unit(150, "lb"),
  48355. name: "Front",
  48356. image: {
  48357. source: "./media/characters/jenny-cartwright/front.svg",
  48358. extra: 1384/1376,
  48359. bottom: 58/1442
  48360. }
  48361. },
  48362. },
  48363. [
  48364. {
  48365. name: "Normal",
  48366. height: math.unit(6 + 7/12, "feet"),
  48367. default: true
  48368. },
  48369. {
  48370. name: "Librarian",
  48371. height: math.unit(55, "feet")
  48372. },
  48373. {
  48374. name: "Sightseer",
  48375. height: math.unit(50, "miles")
  48376. },
  48377. {
  48378. name: "Giga",
  48379. height: math.unit(30000, "miles")
  48380. },
  48381. ]
  48382. ))
  48383. characterMakers.push(() => makeCharacter(
  48384. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48385. {
  48386. nude: {
  48387. height: math.unit(8, "feet"),
  48388. weight: math.unit(225, "lb"),
  48389. name: "Nude",
  48390. image: {
  48391. source: "./media/characters/marvy/nude.svg",
  48392. extra: 1900/1683,
  48393. bottom: 89/1989
  48394. }
  48395. },
  48396. dressed: {
  48397. height: math.unit(8, "feet"),
  48398. weight: math.unit(225, "lb"),
  48399. name: "Dressed",
  48400. image: {
  48401. source: "./media/characters/marvy/dressed.svg",
  48402. extra: 1900/1683,
  48403. bottom: 89/1989
  48404. }
  48405. },
  48406. head: {
  48407. height: math.unit(2.85, "feet"),
  48408. name: "Head",
  48409. image: {
  48410. source: "./media/characters/marvy/head.svg"
  48411. }
  48412. },
  48413. },
  48414. [
  48415. {
  48416. name: "Normal",
  48417. height: math.unit(8, "feet"),
  48418. default: true
  48419. },
  48420. ]
  48421. ))
  48422. characterMakers.push(() => makeCharacter(
  48423. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48424. {
  48425. front: {
  48426. height: math.unit(8, "feet"),
  48427. weight: math.unit(250, "lb"),
  48428. name: "Front",
  48429. image: {
  48430. source: "./media/characters/leah/front.svg",
  48431. extra: 1257/1149,
  48432. bottom: 109/1366
  48433. }
  48434. },
  48435. },
  48436. [
  48437. {
  48438. name: "Normal",
  48439. height: math.unit(8, "feet"),
  48440. default: true
  48441. },
  48442. {
  48443. name: "Minimacro",
  48444. height: math.unit(40, "feet")
  48445. },
  48446. {
  48447. name: "Macro",
  48448. height: math.unit(124, "feet")
  48449. },
  48450. {
  48451. name: "Megamacro",
  48452. height: math.unit(850, "feet")
  48453. },
  48454. ]
  48455. ))
  48456. characterMakers.push(() => makeCharacter(
  48457. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48458. {
  48459. side: {
  48460. height: math.unit(13 + 6/12, "feet"),
  48461. weight: math.unit(3200, "lb"),
  48462. name: "Side",
  48463. image: {
  48464. source: "./media/characters/alvir/side.svg",
  48465. extra: 896/589,
  48466. bottom: 26/922
  48467. }
  48468. },
  48469. },
  48470. [
  48471. {
  48472. name: "Normal",
  48473. height: math.unit(13 + 6/12, "feet"),
  48474. default: true
  48475. },
  48476. ]
  48477. ))
  48478. characterMakers.push(() => makeCharacter(
  48479. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48480. {
  48481. front: {
  48482. height: math.unit(5 + 4/12, "feet"),
  48483. weight: math.unit(236, "lb"),
  48484. name: "Front",
  48485. image: {
  48486. source: "./media/characters/zaina-khalil/front.svg",
  48487. extra: 1533/1485,
  48488. bottom: 94/1627
  48489. }
  48490. },
  48491. side: {
  48492. height: math.unit(5 + 4/12, "feet"),
  48493. weight: math.unit(236, "lb"),
  48494. name: "Side",
  48495. image: {
  48496. source: "./media/characters/zaina-khalil/side.svg",
  48497. extra: 1537/1498,
  48498. bottom: 66/1603
  48499. }
  48500. },
  48501. back: {
  48502. height: math.unit(5 + 4/12, "feet"),
  48503. weight: math.unit(236, "lb"),
  48504. name: "Back",
  48505. image: {
  48506. source: "./media/characters/zaina-khalil/back.svg",
  48507. extra: 1546/1494,
  48508. bottom: 89/1635
  48509. }
  48510. },
  48511. },
  48512. [
  48513. {
  48514. name: "Normal",
  48515. height: math.unit(5 + 4/12, "feet"),
  48516. default: true
  48517. },
  48518. ]
  48519. ))
  48520. characterMakers.push(() => makeCharacter(
  48521. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48522. {
  48523. side: {
  48524. height: math.unit(12, "feet"),
  48525. weight: math.unit(4000, "lb"),
  48526. name: "Side",
  48527. image: {
  48528. source: "./media/characters/terry/side.svg",
  48529. extra: 1518/1439,
  48530. bottom: 149/1667
  48531. }
  48532. },
  48533. },
  48534. [
  48535. {
  48536. name: "Normal",
  48537. height: math.unit(12, "feet"),
  48538. default: true
  48539. },
  48540. ]
  48541. ))
  48542. characterMakers.push(() => makeCharacter(
  48543. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48544. {
  48545. front: {
  48546. height: math.unit(12, "feet"),
  48547. weight: math.unit(1500, "lb"),
  48548. name: "Front",
  48549. image: {
  48550. source: "./media/characters/kahea/front.svg",
  48551. extra: 1722/1617,
  48552. bottom: 179/1901
  48553. }
  48554. },
  48555. },
  48556. [
  48557. {
  48558. name: "Normal",
  48559. height: math.unit(12, "feet"),
  48560. default: true
  48561. },
  48562. ]
  48563. ))
  48564. characterMakers.push(() => makeCharacter(
  48565. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48566. {
  48567. demonFront: {
  48568. height: math.unit(36, "feet"),
  48569. name: "Front",
  48570. image: {
  48571. source: "./media/characters/alex-xuria/demon-front.svg",
  48572. extra: 1705/1673,
  48573. bottom: 198/1903
  48574. },
  48575. form: "demon",
  48576. default: true
  48577. },
  48578. demonBack: {
  48579. height: math.unit(36, "feet"),
  48580. name: "Back",
  48581. image: {
  48582. source: "./media/characters/alex-xuria/demon-back.svg",
  48583. extra: 1725/1693,
  48584. bottom: 70/1795
  48585. },
  48586. form: "demon"
  48587. },
  48588. demonHead: {
  48589. height: math.unit(2.14, "meters"),
  48590. name: "Head",
  48591. image: {
  48592. source: "./media/characters/alex-xuria/demon-head.svg"
  48593. },
  48594. form: "demon"
  48595. },
  48596. demonHand: {
  48597. height: math.unit(1.61, "meters"),
  48598. name: "Hand",
  48599. image: {
  48600. source: "./media/characters/alex-xuria/demon-hand.svg"
  48601. },
  48602. form: "demon"
  48603. },
  48604. demonPaw: {
  48605. height: math.unit(1.35, "meters"),
  48606. name: "Paw",
  48607. image: {
  48608. source: "./media/characters/alex-xuria/demon-paw.svg"
  48609. },
  48610. form: "demon"
  48611. },
  48612. demonFoot: {
  48613. height: math.unit(2.2, "meters"),
  48614. name: "Foot",
  48615. image: {
  48616. source: "./media/characters/alex-xuria/demon-foot.svg"
  48617. },
  48618. form: "demon"
  48619. },
  48620. demonCock: {
  48621. height: math.unit(1.74, "meters"),
  48622. name: "Cock",
  48623. image: {
  48624. source: "./media/characters/alex-xuria/demon-cock.svg"
  48625. },
  48626. form: "demon"
  48627. },
  48628. demonTailClosed: {
  48629. height: math.unit(1.47, "meters"),
  48630. name: "Tail (Closed)",
  48631. image: {
  48632. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48633. },
  48634. form: "demon"
  48635. },
  48636. demonTailOpen: {
  48637. height: math.unit(2.85, "meters"),
  48638. name: "Tail (Open)",
  48639. image: {
  48640. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48641. },
  48642. form: "demon"
  48643. },
  48644. incubusFront: {
  48645. height: math.unit(12, "feet"),
  48646. name: "Front",
  48647. image: {
  48648. source: "./media/characters/alex-xuria/incubus-front.svg",
  48649. extra: 1754/1677,
  48650. bottom: 125/1879
  48651. },
  48652. form: "incubus",
  48653. default: true
  48654. },
  48655. incubusBack: {
  48656. height: math.unit(12, "feet"),
  48657. name: "Back",
  48658. image: {
  48659. source: "./media/characters/alex-xuria/incubus-back.svg",
  48660. extra: 1702/1647,
  48661. bottom: 30/1732
  48662. },
  48663. form: "incubus"
  48664. },
  48665. incubusHead: {
  48666. height: math.unit(3.45, "feet"),
  48667. name: "Head",
  48668. image: {
  48669. source: "./media/characters/alex-xuria/incubus-head.svg"
  48670. },
  48671. form: "incubus"
  48672. },
  48673. rabbitFront: {
  48674. height: math.unit(6, "feet"),
  48675. name: "Front",
  48676. image: {
  48677. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48678. extra: 1369/1349,
  48679. bottom: 45/1414
  48680. },
  48681. form: "rabbit",
  48682. default: true
  48683. },
  48684. rabbitSide: {
  48685. height: math.unit(6, "feet"),
  48686. name: "Side",
  48687. image: {
  48688. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48689. extra: 1370/1356,
  48690. bottom: 37/1407
  48691. },
  48692. form: "rabbit"
  48693. },
  48694. rabbitBack: {
  48695. height: math.unit(6, "feet"),
  48696. name: "Back",
  48697. image: {
  48698. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48699. extra: 1375/1358,
  48700. bottom: 43/1418
  48701. },
  48702. form: "rabbit"
  48703. },
  48704. },
  48705. [
  48706. {
  48707. name: "Normal",
  48708. height: math.unit(6, "feet"),
  48709. default: true,
  48710. form: "rabbit"
  48711. },
  48712. {
  48713. name: "Incubus",
  48714. height: math.unit(12, "feet"),
  48715. default: true,
  48716. form: "incubus"
  48717. },
  48718. {
  48719. name: "Demon",
  48720. height: math.unit(36, "feet"),
  48721. default: true,
  48722. form: "demon"
  48723. }
  48724. ],
  48725. {
  48726. "demon": {
  48727. name: "Demon",
  48728. default: true
  48729. },
  48730. "incubus": {
  48731. name: "Incubus",
  48732. },
  48733. "rabbit": {
  48734. name: "Rabbit"
  48735. }
  48736. }
  48737. ))
  48738. characterMakers.push(() => makeCharacter(
  48739. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48740. {
  48741. front: {
  48742. height: math.unit(7 + 5/12, "feet"),
  48743. weight: math.unit(510, "lb"),
  48744. name: "Front",
  48745. image: {
  48746. source: "./media/characters/syrup/front.svg",
  48747. extra: 932/916,
  48748. bottom: 26/958
  48749. }
  48750. },
  48751. },
  48752. [
  48753. {
  48754. name: "Normal",
  48755. height: math.unit(7 + 5/12, "feet"),
  48756. default: true
  48757. },
  48758. {
  48759. name: "Big",
  48760. height: math.unit(50, "feet")
  48761. },
  48762. {
  48763. name: "Macro",
  48764. height: math.unit(300, "feet")
  48765. },
  48766. {
  48767. name: "Megamacro",
  48768. height: math.unit(1, "mile")
  48769. },
  48770. ]
  48771. ))
  48772. characterMakers.push(() => makeCharacter(
  48773. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48774. {
  48775. front: {
  48776. height: math.unit(6 + 9/12, "feet"),
  48777. name: "Front",
  48778. image: {
  48779. source: "./media/characters/zeimne/front.svg",
  48780. extra: 1969/1806,
  48781. bottom: 53/2022
  48782. }
  48783. },
  48784. },
  48785. [
  48786. {
  48787. name: "Normal",
  48788. height: math.unit(6 + 9/12, "feet"),
  48789. default: true
  48790. },
  48791. {
  48792. name: "Giant",
  48793. height: math.unit(550, "feet")
  48794. },
  48795. {
  48796. name: "Mega",
  48797. height: math.unit(3, "miles")
  48798. },
  48799. {
  48800. name: "Giga",
  48801. height: math.unit(250, "miles")
  48802. },
  48803. {
  48804. name: "Tera",
  48805. height: math.unit(1, "AU")
  48806. },
  48807. ]
  48808. ))
  48809. characterMakers.push(() => makeCharacter(
  48810. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48811. {
  48812. front: {
  48813. height: math.unit(5 + 2/12, "feet"),
  48814. name: "Front",
  48815. image: {
  48816. source: "./media/characters/grar/front.svg",
  48817. extra: 1331/1119,
  48818. bottom: 60/1391
  48819. }
  48820. },
  48821. back: {
  48822. height: math.unit(5 + 2/12, "feet"),
  48823. name: "Back",
  48824. image: {
  48825. source: "./media/characters/grar/back.svg",
  48826. extra: 1385/1169,
  48827. bottom: 23/1408
  48828. }
  48829. },
  48830. },
  48831. [
  48832. {
  48833. name: "Normal",
  48834. height: math.unit(5 + 2/12, "feet"),
  48835. default: true
  48836. },
  48837. ]
  48838. ))
  48839. characterMakers.push(() => makeCharacter(
  48840. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48841. {
  48842. front: {
  48843. height: math.unit(13 + 7/12, "feet"),
  48844. weight: math.unit(2200, "lb"),
  48845. name: "Front",
  48846. image: {
  48847. source: "./media/characters/endraya/front.svg",
  48848. extra: 1289/1215,
  48849. bottom: 50/1339
  48850. }
  48851. },
  48852. nude: {
  48853. height: math.unit(13 + 7/12, "feet"),
  48854. weight: math.unit(2200, "lb"),
  48855. name: "Nude",
  48856. image: {
  48857. source: "./media/characters/endraya/nude.svg",
  48858. extra: 1247/1171,
  48859. bottom: 40/1287
  48860. }
  48861. },
  48862. head: {
  48863. height: math.unit(2.6, "feet"),
  48864. name: "Head",
  48865. image: {
  48866. source: "./media/characters/endraya/head.svg"
  48867. }
  48868. },
  48869. slit: {
  48870. height: math.unit(3.4, "feet"),
  48871. name: "Slit",
  48872. image: {
  48873. source: "./media/characters/endraya/slit.svg"
  48874. }
  48875. },
  48876. },
  48877. [
  48878. {
  48879. name: "Normal",
  48880. height: math.unit(13 + 7/12, "feet"),
  48881. default: true
  48882. },
  48883. {
  48884. name: "Macro",
  48885. height: math.unit(200, "feet")
  48886. },
  48887. ]
  48888. ))
  48889. characterMakers.push(() => makeCharacter(
  48890. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48891. {
  48892. front: {
  48893. height: math.unit(1.81, "meters"),
  48894. weight: math.unit(69, "kg"),
  48895. name: "Front",
  48896. image: {
  48897. source: "./media/characters/rodryana/front.svg",
  48898. extra: 2002/1921,
  48899. bottom: 53/2055
  48900. }
  48901. },
  48902. back: {
  48903. height: math.unit(1.81, "meters"),
  48904. weight: math.unit(69, "kg"),
  48905. name: "Back",
  48906. image: {
  48907. source: "./media/characters/rodryana/back.svg",
  48908. extra: 1993/1926,
  48909. bottom: 48/2041
  48910. }
  48911. },
  48912. maw: {
  48913. height: math.unit(0.19769417475, "meters"),
  48914. name: "Maw",
  48915. image: {
  48916. source: "./media/characters/rodryana/maw.svg"
  48917. }
  48918. },
  48919. slit: {
  48920. height: math.unit(0.31631067961, "meters"),
  48921. name: "Slit",
  48922. image: {
  48923. source: "./media/characters/rodryana/slit.svg"
  48924. }
  48925. },
  48926. },
  48927. [
  48928. {
  48929. name: "Normal",
  48930. height: math.unit(1.81, "meters")
  48931. },
  48932. {
  48933. name: "Mini Macro",
  48934. height: math.unit(181, "meters")
  48935. },
  48936. {
  48937. name: "Macro",
  48938. height: math.unit(452, "meters"),
  48939. default: true
  48940. },
  48941. {
  48942. name: "Mega Macro",
  48943. height: math.unit(1.375, "km")
  48944. },
  48945. {
  48946. name: "Giga Macro",
  48947. height: math.unit(13.575, "km")
  48948. },
  48949. ]
  48950. ))
  48951. characterMakers.push(() => makeCharacter(
  48952. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48953. {
  48954. front: {
  48955. height: math.unit(6, "feet"),
  48956. weight: math.unit(1000, "lb"),
  48957. name: "Front",
  48958. image: {
  48959. source: "./media/characters/asaya/front.svg",
  48960. extra: 1460/1200,
  48961. bottom: 71/1531
  48962. }
  48963. },
  48964. },
  48965. [
  48966. {
  48967. name: "Normal",
  48968. height: math.unit(8, "km"),
  48969. default: true
  48970. },
  48971. ]
  48972. ))
  48973. characterMakers.push(() => makeCharacter(
  48974. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48975. {
  48976. front: {
  48977. height: math.unit(3.5, "meters"),
  48978. name: "Front",
  48979. image: {
  48980. source: "./media/characters/sarzu-and-israz/front.svg",
  48981. extra: 1570/1558,
  48982. bottom: 150/1720
  48983. },
  48984. },
  48985. back: {
  48986. height: math.unit(3.5, "meters"),
  48987. name: "Back",
  48988. image: {
  48989. source: "./media/characters/sarzu-and-israz/back.svg",
  48990. extra: 1523/1509,
  48991. bottom: 132/1655
  48992. },
  48993. },
  48994. frontFemale: {
  48995. height: math.unit(3.5, "meters"),
  48996. name: "Front (Female)",
  48997. image: {
  48998. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48999. extra: 1570/1558,
  49000. bottom: 150/1720
  49001. },
  49002. },
  49003. frontHerm: {
  49004. height: math.unit(3.5, "meters"),
  49005. name: "Front (Herm)",
  49006. image: {
  49007. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49008. extra: 1570/1558,
  49009. bottom: 150/1720
  49010. },
  49011. },
  49012. },
  49013. [
  49014. {
  49015. name: "Normal",
  49016. height: math.unit(3.5, "meters"),
  49017. default: true,
  49018. },
  49019. {
  49020. name: "Macro",
  49021. height: math.unit(65.5, "meters"),
  49022. },
  49023. ],
  49024. ))
  49025. characterMakers.push(() => makeCharacter(
  49026. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49027. {
  49028. front: {
  49029. height: math.unit(6, "feet"),
  49030. weight: math.unit(250, "lb"),
  49031. name: "Front",
  49032. image: {
  49033. source: "./media/characters/zenimma/front.svg",
  49034. extra: 1346/1320,
  49035. bottom: 58/1404
  49036. }
  49037. },
  49038. back: {
  49039. height: math.unit(6, "feet"),
  49040. weight: math.unit(250, "lb"),
  49041. name: "Back",
  49042. image: {
  49043. source: "./media/characters/zenimma/back.svg",
  49044. extra: 1324/1308,
  49045. bottom: 44/1368
  49046. }
  49047. },
  49048. dick: {
  49049. height: math.unit(1.44, "feet"),
  49050. name: "Dick",
  49051. image: {
  49052. source: "./media/characters/zenimma/dick.svg"
  49053. }
  49054. },
  49055. },
  49056. [
  49057. {
  49058. name: "Canon Height",
  49059. height: math.unit(66, "miles"),
  49060. default: true
  49061. },
  49062. ]
  49063. ))
  49064. characterMakers.push(() => makeCharacter(
  49065. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49066. {
  49067. nude: {
  49068. height: math.unit(6, "feet"),
  49069. weight: math.unit(150, "lb"),
  49070. name: "Nude",
  49071. image: {
  49072. source: "./media/characters/shavon/nude.svg",
  49073. extra: 1242/1096,
  49074. bottom: 98/1340
  49075. }
  49076. },
  49077. dressed: {
  49078. height: math.unit(6, "feet"),
  49079. weight: math.unit(150, "lb"),
  49080. name: "Dressed",
  49081. image: {
  49082. source: "./media/characters/shavon/dressed.svg",
  49083. extra: 1242/1096,
  49084. bottom: 98/1340
  49085. }
  49086. },
  49087. },
  49088. [
  49089. {
  49090. name: "Macro",
  49091. height: math.unit(255, "feet"),
  49092. default: true
  49093. },
  49094. ]
  49095. ))
  49096. characterMakers.push(() => makeCharacter(
  49097. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49098. {
  49099. front: {
  49100. height: math.unit(6, "feet"),
  49101. name: "Front",
  49102. image: {
  49103. source: "./media/characters/steph/front.svg",
  49104. extra: 1430/1330,
  49105. bottom: 54/1484
  49106. }
  49107. },
  49108. },
  49109. [
  49110. {
  49111. name: "Normal",
  49112. height: math.unit(6, "feet"),
  49113. default: true
  49114. },
  49115. ]
  49116. ))
  49117. characterMakers.push(() => makeCharacter(
  49118. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49119. {
  49120. front: {
  49121. height: math.unit(9, "feet"),
  49122. weight: math.unit(400, "lb"),
  49123. name: "Front",
  49124. image: {
  49125. source: "./media/characters/kil'aman/front.svg",
  49126. extra: 1210/1159,
  49127. bottom: 109/1319
  49128. }
  49129. },
  49130. head: {
  49131. height: math.unit(2.14, "feet"),
  49132. name: "Head",
  49133. image: {
  49134. source: "./media/characters/kil'aman/head.svg"
  49135. }
  49136. },
  49137. maw: {
  49138. height: math.unit(1.21, "feet"),
  49139. name: "Maw",
  49140. image: {
  49141. source: "./media/characters/kil'aman/maw.svg"
  49142. }
  49143. },
  49144. foot: {
  49145. height: math.unit(1.7, "feet"),
  49146. name: "Foot",
  49147. image: {
  49148. source: "./media/characters/kil'aman/foot.svg"
  49149. }
  49150. },
  49151. dick: {
  49152. height: math.unit(2.1, "feet"),
  49153. name: "Dick",
  49154. image: {
  49155. source: "./media/characters/kil'aman/dick.svg"
  49156. }
  49157. },
  49158. },
  49159. [
  49160. {
  49161. name: "Normal",
  49162. height: math.unit(9, "feet")
  49163. },
  49164. {
  49165. name: "Canon Height",
  49166. height: math.unit(10, "miles"),
  49167. default: true
  49168. },
  49169. {
  49170. name: "Maximum",
  49171. height: math.unit(6e9, "miles")
  49172. },
  49173. ]
  49174. ))
  49175. characterMakers.push(() => makeCharacter(
  49176. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49177. {
  49178. front: {
  49179. height: math.unit(90, "feet"),
  49180. weight: math.unit(675000, "lb"),
  49181. name: "Front",
  49182. image: {
  49183. source: "./media/characters/qadan/front.svg",
  49184. extra: 1012/1004,
  49185. bottom: 78/1090
  49186. }
  49187. },
  49188. back: {
  49189. height: math.unit(90, "feet"),
  49190. weight: math.unit(675000, "lb"),
  49191. name: "Back",
  49192. image: {
  49193. source: "./media/characters/qadan/back.svg",
  49194. extra: 1042/1031,
  49195. bottom: 55/1097
  49196. }
  49197. },
  49198. armored: {
  49199. height: math.unit(90, "feet"),
  49200. weight: math.unit(675000, "lb"),
  49201. name: "Armored",
  49202. image: {
  49203. source: "./media/characters/qadan/armored.svg",
  49204. extra: 1047/1037,
  49205. bottom: 48/1095
  49206. }
  49207. },
  49208. },
  49209. [
  49210. {
  49211. name: "Normal",
  49212. height: math.unit(90, "feet"),
  49213. default: true
  49214. },
  49215. ]
  49216. ))
  49217. characterMakers.push(() => makeCharacter(
  49218. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49219. {
  49220. front: {
  49221. height: math.unit(6, "feet"),
  49222. weight: math.unit(225, "lb"),
  49223. name: "Front",
  49224. image: {
  49225. source: "./media/characters/brooke/front.svg",
  49226. extra: 1050/1010,
  49227. bottom: 66/1116
  49228. }
  49229. },
  49230. back: {
  49231. height: math.unit(6, "feet"),
  49232. weight: math.unit(225, "lb"),
  49233. name: "Back",
  49234. image: {
  49235. source: "./media/characters/brooke/back.svg",
  49236. extra: 1053/1013,
  49237. bottom: 41/1094
  49238. }
  49239. },
  49240. dressed: {
  49241. height: math.unit(6, "feet"),
  49242. weight: math.unit(225, "lb"),
  49243. name: "Dressed",
  49244. image: {
  49245. source: "./media/characters/brooke/dressed.svg",
  49246. extra: 1050/1010,
  49247. bottom: 66/1116
  49248. }
  49249. },
  49250. },
  49251. [
  49252. {
  49253. name: "Canon Height",
  49254. height: math.unit(500, "miles"),
  49255. default: true
  49256. },
  49257. ]
  49258. ))
  49259. characterMakers.push(() => makeCharacter(
  49260. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49261. {
  49262. front: {
  49263. height: math.unit(6 + 2/12, "feet"),
  49264. weight: math.unit(210, "lb"),
  49265. name: "Front",
  49266. image: {
  49267. source: "./media/characters/wubs/front.svg",
  49268. extra: 1345/1325,
  49269. bottom: 70/1415
  49270. }
  49271. },
  49272. back: {
  49273. height: math.unit(6 + 2/12, "feet"),
  49274. weight: math.unit(210, "lb"),
  49275. name: "Back",
  49276. image: {
  49277. source: "./media/characters/wubs/back.svg",
  49278. extra: 1296/1275,
  49279. bottom: 58/1354
  49280. }
  49281. },
  49282. },
  49283. [
  49284. {
  49285. name: "Normal",
  49286. height: math.unit(6 + 2/12, "feet"),
  49287. default: true
  49288. },
  49289. {
  49290. name: "Macro",
  49291. height: math.unit(1000, "feet")
  49292. },
  49293. {
  49294. name: "Megamacro",
  49295. height: math.unit(1, "mile")
  49296. },
  49297. ]
  49298. ))
  49299. characterMakers.push(() => makeCharacter(
  49300. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49301. {
  49302. front: {
  49303. height: math.unit(4, "feet"),
  49304. weight: math.unit(120, "lb"),
  49305. name: "Front",
  49306. image: {
  49307. source: "./media/characters/blue/front.svg",
  49308. extra: 1636/1525,
  49309. bottom: 43/1679
  49310. }
  49311. },
  49312. back: {
  49313. height: math.unit(4, "feet"),
  49314. weight: math.unit(120, "lb"),
  49315. name: "Back",
  49316. image: {
  49317. source: "./media/characters/blue/back.svg",
  49318. extra: 1660/1560,
  49319. bottom: 57/1717
  49320. }
  49321. },
  49322. paws: {
  49323. height: math.unit(0.826, "feet"),
  49324. name: "Paws",
  49325. image: {
  49326. source: "./media/characters/blue/paws.svg"
  49327. }
  49328. },
  49329. },
  49330. [
  49331. {
  49332. name: "Micro",
  49333. height: math.unit(3, "inches")
  49334. },
  49335. {
  49336. name: "Normal",
  49337. height: math.unit(4, "feet"),
  49338. default: true
  49339. },
  49340. {
  49341. name: "Femenine Form",
  49342. height: math.unit(14, "feet")
  49343. },
  49344. {
  49345. name: "Werebat Form",
  49346. height: math.unit(18, "feet")
  49347. },
  49348. ]
  49349. ))
  49350. characterMakers.push(() => makeCharacter(
  49351. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49352. {
  49353. female: {
  49354. height: math.unit(7 + 4/12, "feet"),
  49355. weight: math.unit(243, "lb"),
  49356. name: "Female",
  49357. image: {
  49358. source: "./media/characters/kaya/female.svg",
  49359. extra: 975/898,
  49360. bottom: 34/1009
  49361. }
  49362. },
  49363. herm: {
  49364. height: math.unit(7 + 4/12, "feet"),
  49365. weight: math.unit(243, "lb"),
  49366. name: "Herm",
  49367. image: {
  49368. source: "./media/characters/kaya/herm.svg",
  49369. extra: 975/898,
  49370. bottom: 34/1009
  49371. }
  49372. },
  49373. },
  49374. [
  49375. {
  49376. name: "Normal",
  49377. height: math.unit(7 + 4/12, "feet"),
  49378. default: true
  49379. },
  49380. ]
  49381. ))
  49382. characterMakers.push(() => makeCharacter(
  49383. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49384. {
  49385. female: {
  49386. height: math.unit(9 + 4/12, "feet"),
  49387. weight: math.unit(398, "lb"),
  49388. name: "Female",
  49389. image: {
  49390. source: "./media/characters/kassandra/female.svg",
  49391. extra: 908/839,
  49392. bottom: 61/969
  49393. }
  49394. },
  49395. intersex: {
  49396. height: math.unit(9 + 4/12, "feet"),
  49397. weight: math.unit(398, "lb"),
  49398. name: "Intersex",
  49399. image: {
  49400. source: "./media/characters/kassandra/intersex.svg",
  49401. extra: 908/839,
  49402. bottom: 61/969
  49403. }
  49404. },
  49405. },
  49406. [
  49407. {
  49408. name: "Normal",
  49409. height: math.unit(9 + 4/12, "feet"),
  49410. default: true
  49411. },
  49412. ]
  49413. ))
  49414. characterMakers.push(() => makeCharacter(
  49415. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49416. {
  49417. front: {
  49418. height: math.unit(3, "meters"),
  49419. name: "Front",
  49420. image: {
  49421. source: "./media/characters/amy/front.svg",
  49422. extra: 1380/1343,
  49423. bottom: 70/1450
  49424. }
  49425. },
  49426. back: {
  49427. height: math.unit(3, "meters"),
  49428. name: "Back",
  49429. image: {
  49430. source: "./media/characters/amy/back.svg",
  49431. extra: 1380/1347,
  49432. bottom: 66/1446
  49433. }
  49434. },
  49435. },
  49436. [
  49437. {
  49438. name: "Normal",
  49439. height: math.unit(3, "meters"),
  49440. default: true
  49441. },
  49442. ]
  49443. ))
  49444. characterMakers.push(() => makeCharacter(
  49445. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49446. {
  49447. side: {
  49448. height: math.unit(47, "cm"),
  49449. weight: math.unit(10.8, "kg"),
  49450. name: "Side",
  49451. image: {
  49452. source: "./media/characters/alphaschakal/side.svg",
  49453. extra: 1058/568,
  49454. bottom: 62/1120
  49455. }
  49456. },
  49457. back: {
  49458. height: math.unit(78, "cm"),
  49459. weight: math.unit(10.8, "kg"),
  49460. name: "Back",
  49461. image: {
  49462. source: "./media/characters/alphaschakal/back.svg",
  49463. extra: 1102/942,
  49464. bottom: 185/1287
  49465. }
  49466. },
  49467. head: {
  49468. height: math.unit(28, "cm"),
  49469. name: "Head",
  49470. image: {
  49471. source: "./media/characters/alphaschakal/head.svg",
  49472. extra: 696/508,
  49473. bottom: 0/696
  49474. }
  49475. },
  49476. paw: {
  49477. height: math.unit(16, "cm"),
  49478. name: "Paw",
  49479. image: {
  49480. source: "./media/characters/alphaschakal/paw.svg"
  49481. }
  49482. },
  49483. },
  49484. [
  49485. {
  49486. name: "Normal",
  49487. height: math.unit(47, "cm"),
  49488. default: true
  49489. },
  49490. {
  49491. name: "Macro",
  49492. height: math.unit(340, "cm")
  49493. },
  49494. ]
  49495. ))
  49496. characterMakers.push(() => makeCharacter(
  49497. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49498. {
  49499. front: {
  49500. height: math.unit(36, "earths"),
  49501. name: "Front",
  49502. image: {
  49503. source: "./media/characters/ecobyss/front.svg",
  49504. extra: 1282/1215,
  49505. bottom: 11/1293
  49506. }
  49507. },
  49508. back: {
  49509. height: math.unit(36, "earths"),
  49510. name: "Back",
  49511. image: {
  49512. source: "./media/characters/ecobyss/back.svg",
  49513. extra: 1291/1222,
  49514. bottom: 8/1299
  49515. }
  49516. },
  49517. },
  49518. [
  49519. {
  49520. name: "Normal",
  49521. height: math.unit(36, "earths"),
  49522. default: true
  49523. },
  49524. ]
  49525. ))
  49526. characterMakers.push(() => makeCharacter(
  49527. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49528. {
  49529. front: {
  49530. height: math.unit(12, "feet"),
  49531. name: "Front",
  49532. image: {
  49533. source: "./media/characters/vasuk/front.svg",
  49534. extra: 1326/1207,
  49535. bottom: 64/1390
  49536. }
  49537. },
  49538. },
  49539. [
  49540. {
  49541. name: "Normal",
  49542. height: math.unit(12, "feet"),
  49543. default: true
  49544. },
  49545. ]
  49546. ))
  49547. characterMakers.push(() => makeCharacter(
  49548. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49549. {
  49550. side: {
  49551. height: math.unit(100, "feet"),
  49552. name: "Side",
  49553. image: {
  49554. source: "./media/characters/linneaus/side.svg",
  49555. extra: 987/807,
  49556. bottom: 47/1034
  49557. }
  49558. },
  49559. },
  49560. [
  49561. {
  49562. name: "Macro",
  49563. height: math.unit(100, "feet"),
  49564. default: true
  49565. },
  49566. ]
  49567. ))
  49568. characterMakers.push(() => makeCharacter(
  49569. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49570. {
  49571. front: {
  49572. height: math.unit(8, "feet"),
  49573. weight: math.unit(1200, "lb"),
  49574. name: "Front",
  49575. image: {
  49576. source: "./media/characters/nyterious-daligdig/front.svg",
  49577. extra: 1284/1094,
  49578. bottom: 84/1368
  49579. }
  49580. },
  49581. back: {
  49582. height: math.unit(8, "feet"),
  49583. weight: math.unit(1200, "lb"),
  49584. name: "Back",
  49585. image: {
  49586. source: "./media/characters/nyterious-daligdig/back.svg",
  49587. extra: 1301/1121,
  49588. bottom: 129/1430
  49589. }
  49590. },
  49591. mouth: {
  49592. height: math.unit(1.464, "feet"),
  49593. name: "Mouth",
  49594. image: {
  49595. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49596. }
  49597. },
  49598. },
  49599. [
  49600. {
  49601. name: "Small",
  49602. height: math.unit(8, "feet"),
  49603. default: true
  49604. },
  49605. {
  49606. name: "Normal",
  49607. height: math.unit(15, "feet")
  49608. },
  49609. {
  49610. name: "Macro",
  49611. height: math.unit(90, "feet")
  49612. },
  49613. ]
  49614. ))
  49615. characterMakers.push(() => makeCharacter(
  49616. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49617. {
  49618. front: {
  49619. height: math.unit(7 + 4/12, "feet"),
  49620. weight: math.unit(252, "lb"),
  49621. name: "Front",
  49622. image: {
  49623. source: "./media/characters/bandel/front.svg",
  49624. extra: 1946/1775,
  49625. bottom: 26/1972
  49626. }
  49627. },
  49628. back: {
  49629. height: math.unit(7 + 4/12, "feet"),
  49630. weight: math.unit(252, "lb"),
  49631. name: "Back",
  49632. image: {
  49633. source: "./media/characters/bandel/back.svg",
  49634. extra: 1940/1770,
  49635. bottom: 25/1965
  49636. }
  49637. },
  49638. maw: {
  49639. height: math.unit(2.15, "feet"),
  49640. name: "Maw",
  49641. image: {
  49642. source: "./media/characters/bandel/maw.svg"
  49643. }
  49644. },
  49645. stomach: {
  49646. height: math.unit(1.95, "feet"),
  49647. name: "Stomach",
  49648. image: {
  49649. source: "./media/characters/bandel/stomach.svg"
  49650. }
  49651. },
  49652. },
  49653. [
  49654. {
  49655. name: "Normal",
  49656. height: math.unit(7 + 4/12, "feet"),
  49657. default: true
  49658. },
  49659. ]
  49660. ))
  49661. characterMakers.push(() => makeCharacter(
  49662. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49663. {
  49664. front: {
  49665. height: math.unit(10 + 5/12, "feet"),
  49666. weight: math.unit(773.5, "kg"),
  49667. name: "Front",
  49668. image: {
  49669. source: "./media/characters/zed/front.svg",
  49670. extra: 987/941,
  49671. bottom: 52/1039
  49672. }
  49673. },
  49674. },
  49675. [
  49676. {
  49677. name: "Short",
  49678. height: math.unit(5 + 4/12, "feet")
  49679. },
  49680. {
  49681. name: "Average",
  49682. height: math.unit(10 + 5/12, "feet"),
  49683. default: true
  49684. },
  49685. {
  49686. name: "Mini-Macro",
  49687. height: math.unit(24 + 9/12, "feet")
  49688. },
  49689. {
  49690. name: "Macro",
  49691. height: math.unit(249, "feet")
  49692. },
  49693. {
  49694. name: "Mega-Macro",
  49695. height: math.unit(12490, "feet")
  49696. },
  49697. {
  49698. name: "Giga-Macro",
  49699. height: math.unit(24.9, "miles")
  49700. },
  49701. {
  49702. name: "Tera-Macro",
  49703. height: math.unit(24900, "miles")
  49704. },
  49705. {
  49706. name: "Cosmic Scale",
  49707. height: math.unit(38.9, "lightyears")
  49708. },
  49709. {
  49710. name: "Universal Scale",
  49711. height: math.unit(138e12, "lightyears")
  49712. },
  49713. ]
  49714. ))
  49715. characterMakers.push(() => makeCharacter(
  49716. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49717. {
  49718. front: {
  49719. height: math.unit(1561, "inches"),
  49720. name: "Front",
  49721. image: {
  49722. source: "./media/characters/ivan/front.svg",
  49723. extra: 1126/1071,
  49724. bottom: 26/1152
  49725. }
  49726. },
  49727. back: {
  49728. height: math.unit(1561, "inches"),
  49729. name: "Back",
  49730. image: {
  49731. source: "./media/characters/ivan/back.svg",
  49732. extra: 1134/1079,
  49733. bottom: 30/1164
  49734. }
  49735. },
  49736. },
  49737. [
  49738. {
  49739. name: "Normal",
  49740. height: math.unit(1561, "inches"),
  49741. default: true
  49742. },
  49743. ]
  49744. ))
  49745. characterMakers.push(() => makeCharacter(
  49746. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49747. {
  49748. front: {
  49749. height: math.unit(5 + 7/12, "feet"),
  49750. weight: math.unit(150, "lb"),
  49751. name: "Front",
  49752. image: {
  49753. source: "./media/characters/robin-arctic-hare/front.svg",
  49754. extra: 1148/974,
  49755. bottom: 20/1168
  49756. }
  49757. },
  49758. },
  49759. [
  49760. {
  49761. name: "Normal",
  49762. height: math.unit(5 + 7/12, "feet"),
  49763. default: true
  49764. },
  49765. ]
  49766. ))
  49767. characterMakers.push(() => makeCharacter(
  49768. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49769. {
  49770. side: {
  49771. height: math.unit(5, "feet"),
  49772. name: "Side",
  49773. image: {
  49774. source: "./media/characters/birch/side.svg",
  49775. extra: 985/796,
  49776. bottom: 111/1096
  49777. }
  49778. },
  49779. },
  49780. [
  49781. {
  49782. name: "Normal",
  49783. height: math.unit(5, "feet"),
  49784. default: true
  49785. },
  49786. ]
  49787. ))
  49788. characterMakers.push(() => makeCharacter(
  49789. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49790. {
  49791. front: {
  49792. height: math.unit(4, "feet"),
  49793. name: "Front",
  49794. image: {
  49795. source: "./media/characters/rasp/front.svg",
  49796. extra: 561/478,
  49797. bottom: 74/635
  49798. }
  49799. },
  49800. },
  49801. [
  49802. {
  49803. name: "Normal",
  49804. height: math.unit(4, "feet"),
  49805. default: true
  49806. },
  49807. ]
  49808. ))
  49809. characterMakers.push(() => makeCharacter(
  49810. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49811. {
  49812. front: {
  49813. height: math.unit(4 + 6/12, "feet"),
  49814. name: "Front",
  49815. image: {
  49816. source: "./media/characters/agatha/front.svg",
  49817. extra: 947/933,
  49818. bottom: 42/989
  49819. }
  49820. },
  49821. back: {
  49822. height: math.unit(4 + 6/12, "feet"),
  49823. name: "Back",
  49824. image: {
  49825. source: "./media/characters/agatha/back.svg",
  49826. extra: 935/922,
  49827. bottom: 48/983
  49828. }
  49829. },
  49830. },
  49831. [
  49832. {
  49833. name: "Normal",
  49834. height: math.unit(4 + 6 /12, "feet"),
  49835. default: true
  49836. },
  49837. {
  49838. name: "Max Size",
  49839. height: math.unit(500, "feet")
  49840. },
  49841. ]
  49842. ))
  49843. characterMakers.push(() => makeCharacter(
  49844. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49845. {
  49846. side: {
  49847. height: math.unit(30, "feet"),
  49848. name: "Side",
  49849. image: {
  49850. source: "./media/characters/roggy/side.svg",
  49851. extra: 909/643,
  49852. bottom: 63/972
  49853. }
  49854. },
  49855. lounging: {
  49856. height: math.unit(20, "feet"),
  49857. name: "Lounging",
  49858. image: {
  49859. source: "./media/characters/roggy/lounging.svg",
  49860. extra: 643/479,
  49861. bottom: 145/788
  49862. }
  49863. },
  49864. handpaw: {
  49865. height: math.unit(13.1, "feet"),
  49866. name: "Handpaw",
  49867. image: {
  49868. source: "./media/characters/roggy/handpaw.svg"
  49869. }
  49870. },
  49871. footpaw: {
  49872. height: math.unit(15.8, "feet"),
  49873. name: "Footpaw",
  49874. image: {
  49875. source: "./media/characters/roggy/footpaw.svg"
  49876. }
  49877. },
  49878. },
  49879. [
  49880. {
  49881. name: "Menacing",
  49882. height: math.unit(30, "feet"),
  49883. default: true
  49884. },
  49885. ]
  49886. ))
  49887. characterMakers.push(() => makeCharacter(
  49888. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49889. {
  49890. front: {
  49891. height: math.unit(5 + 7/12, "feet"),
  49892. weight: math.unit(135, "lb"),
  49893. name: "Front",
  49894. image: {
  49895. source: "./media/characters/naomi/front.svg",
  49896. extra: 1209/1154,
  49897. bottom: 129/1338
  49898. }
  49899. },
  49900. back: {
  49901. height: math.unit(5 + 7/12, "feet"),
  49902. weight: math.unit(135, "lb"),
  49903. name: "Back",
  49904. image: {
  49905. source: "./media/characters/naomi/back.svg",
  49906. extra: 1252/1190,
  49907. bottom: 23/1275
  49908. }
  49909. },
  49910. },
  49911. [
  49912. {
  49913. name: "Normal",
  49914. height: math.unit(5 + 7 /12, "feet"),
  49915. default: true
  49916. },
  49917. ]
  49918. ))
  49919. characterMakers.push(() => makeCharacter(
  49920. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49921. {
  49922. side: {
  49923. height: math.unit(35, "meters"),
  49924. name: "Side",
  49925. image: {
  49926. source: "./media/characters/kimpi/side.svg",
  49927. extra: 419/382,
  49928. bottom: 63/482
  49929. }
  49930. },
  49931. hand: {
  49932. height: math.unit(8.96, "meters"),
  49933. name: "Hand",
  49934. image: {
  49935. source: "./media/characters/kimpi/hand.svg"
  49936. }
  49937. },
  49938. },
  49939. [
  49940. {
  49941. name: "Normal",
  49942. height: math.unit(35, "meters"),
  49943. default: true
  49944. },
  49945. ]
  49946. ))
  49947. characterMakers.push(() => makeCharacter(
  49948. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49949. {
  49950. front: {
  49951. height: math.unit(4 + 4/12, "feet"),
  49952. name: "Front",
  49953. image: {
  49954. source: "./media/characters/pepper-purrloin/front.svg",
  49955. extra: 1141/1024,
  49956. bottom: 21/1162
  49957. }
  49958. },
  49959. },
  49960. [
  49961. {
  49962. name: "Normal",
  49963. height: math.unit(4 + 4/12, "feet"),
  49964. default: true
  49965. },
  49966. ]
  49967. ))
  49968. characterMakers.push(() => makeCharacter(
  49969. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49970. {
  49971. front: {
  49972. height: math.unit(6 + 2/12, "feet"),
  49973. name: "Front",
  49974. image: {
  49975. source: "./media/characters/raphael/front.svg",
  49976. extra: 1101/962,
  49977. bottom: 59/1160
  49978. }
  49979. },
  49980. },
  49981. [
  49982. {
  49983. name: "Normal",
  49984. height: math.unit(6 + 2/12, "feet"),
  49985. default: true
  49986. },
  49987. ]
  49988. ))
  49989. characterMakers.push(() => makeCharacter(
  49990. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49991. {
  49992. front: {
  49993. height: math.unit(6, "feet"),
  49994. weight: math.unit(150, "lb"),
  49995. name: "Front",
  49996. image: {
  49997. source: "./media/characters/victor-williams/front.svg",
  49998. extra: 1894/1825,
  49999. bottom: 67/1961
  50000. }
  50001. },
  50002. },
  50003. [
  50004. {
  50005. name: "Normal",
  50006. height: math.unit(6, "feet"),
  50007. default: true
  50008. },
  50009. ]
  50010. ))
  50011. characterMakers.push(() => makeCharacter(
  50012. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50013. {
  50014. front: {
  50015. height: math.unit(5 + 8/12, "feet"),
  50016. weight: math.unit(150, "lb"),
  50017. name: "Front",
  50018. image: {
  50019. source: "./media/characters/rachel/front.svg",
  50020. extra: 1902/1787,
  50021. bottom: 46/1948
  50022. }
  50023. },
  50024. },
  50025. [
  50026. {
  50027. name: "Base Height",
  50028. height: math.unit(5 + 8/12, "feet"),
  50029. default: true
  50030. },
  50031. {
  50032. name: "Macro",
  50033. height: math.unit(200, "feet")
  50034. },
  50035. {
  50036. name: "Mega Macro",
  50037. height: math.unit(1, "mile")
  50038. },
  50039. {
  50040. name: "Giga Macro",
  50041. height: math.unit(1500, "miles")
  50042. },
  50043. {
  50044. name: "Tera Macro",
  50045. height: math.unit(8000, "miles")
  50046. },
  50047. {
  50048. name: "Tera Macro+",
  50049. height: math.unit(2e5, "miles")
  50050. },
  50051. ]
  50052. ))
  50053. characterMakers.push(() => makeCharacter(
  50054. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50055. {
  50056. front: {
  50057. height: math.unit(6.5, "feet"),
  50058. name: "Front",
  50059. image: {
  50060. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50061. extra: 860/819,
  50062. bottom: 307/1167
  50063. }
  50064. },
  50065. back: {
  50066. height: math.unit(6.5, "feet"),
  50067. name: "Back",
  50068. image: {
  50069. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50070. extra: 880/837,
  50071. bottom: 395/1275
  50072. }
  50073. },
  50074. sleeping: {
  50075. height: math.unit(2.79, "feet"),
  50076. name: "Sleeping",
  50077. image: {
  50078. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50079. extra: 465/383,
  50080. bottom: 263/728
  50081. }
  50082. },
  50083. maw: {
  50084. height: math.unit(2.52, "feet"),
  50085. name: "Maw",
  50086. image: {
  50087. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50088. }
  50089. },
  50090. },
  50091. [
  50092. {
  50093. name: "Normal",
  50094. height: math.unit(6.5, "feet"),
  50095. default: true
  50096. },
  50097. ]
  50098. ))
  50099. characterMakers.push(() => makeCharacter(
  50100. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50101. {
  50102. front: {
  50103. height: math.unit(5, "feet"),
  50104. name: "Front",
  50105. image: {
  50106. source: "./media/characters/nova-nerium/front.svg",
  50107. extra: 1548/1392,
  50108. bottom: 374/1922
  50109. }
  50110. },
  50111. back: {
  50112. height: math.unit(5, "feet"),
  50113. name: "Back",
  50114. image: {
  50115. source: "./media/characters/nova-nerium/back.svg",
  50116. extra: 1658/1468,
  50117. bottom: 257/1915
  50118. }
  50119. },
  50120. },
  50121. [
  50122. {
  50123. name: "Normal",
  50124. height: math.unit(5, "feet"),
  50125. default: true
  50126. },
  50127. ]
  50128. ))
  50129. characterMakers.push(() => makeCharacter(
  50130. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50131. {
  50132. front: {
  50133. height: math.unit(5 + 4/12, "feet"),
  50134. name: "Front",
  50135. image: {
  50136. source: "./media/characters/ashe-pyriph/front.svg",
  50137. extra: 1935/1747,
  50138. bottom: 60/1995
  50139. }
  50140. },
  50141. },
  50142. [
  50143. {
  50144. name: "Normal",
  50145. height: math.unit(5 + 4/12, "feet"),
  50146. default: true
  50147. },
  50148. ]
  50149. ))
  50150. characterMakers.push(() => makeCharacter(
  50151. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50152. {
  50153. front: {
  50154. height: math.unit(8.7, "feet"),
  50155. name: "Front",
  50156. image: {
  50157. source: "./media/characters/flicker-wisp/front.svg",
  50158. extra: 1835/1613,
  50159. bottom: 449/2284
  50160. }
  50161. },
  50162. side: {
  50163. height: math.unit(8.7, "feet"),
  50164. name: "Side",
  50165. image: {
  50166. source: "./media/characters/flicker-wisp/side.svg",
  50167. extra: 1841/1642,
  50168. bottom: 336/2177
  50169. },
  50170. default: true
  50171. },
  50172. maw: {
  50173. height: math.unit(3.35, "feet"),
  50174. name: "Maw",
  50175. image: {
  50176. source: "./media/characters/flicker-wisp/maw.svg",
  50177. extra: 2338/1506,
  50178. bottom: 0/2338
  50179. }
  50180. },
  50181. ovipositor: {
  50182. height: math.unit(4.95, "feet"),
  50183. name: "Ovipositor",
  50184. image: {
  50185. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50186. }
  50187. },
  50188. egg: {
  50189. height: math.unit(0.385, "feet"),
  50190. weight: math.unit(2, "lb"),
  50191. name: "Egg",
  50192. image: {
  50193. source: "./media/characters/flicker-wisp/egg.svg"
  50194. }
  50195. },
  50196. },
  50197. [
  50198. {
  50199. name: "Normal",
  50200. height: math.unit(8.7, "feet"),
  50201. default: true
  50202. },
  50203. ]
  50204. ))
  50205. characterMakers.push(() => makeCharacter(
  50206. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50207. {
  50208. side: {
  50209. height: math.unit(11, "feet"),
  50210. name: "Side",
  50211. image: {
  50212. source: "./media/characters/faefnul/side.svg",
  50213. extra: 1100/1007,
  50214. bottom: 0/1100
  50215. }
  50216. },
  50217. },
  50218. [
  50219. {
  50220. name: "Normal",
  50221. height: math.unit(11, "feet"),
  50222. default: true
  50223. },
  50224. ]
  50225. ))
  50226. characterMakers.push(() => makeCharacter(
  50227. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50228. {
  50229. front: {
  50230. height: math.unit(6 + 2/12, "feet"),
  50231. name: "Front",
  50232. image: {
  50233. source: "./media/characters/shady/front.svg",
  50234. extra: 502/461,
  50235. bottom: 9/511
  50236. }
  50237. },
  50238. kneeling: {
  50239. height: math.unit(4.6, "feet"),
  50240. name: "Kneeling",
  50241. image: {
  50242. source: "./media/characters/shady/kneeling.svg",
  50243. extra: 1328/1219,
  50244. bottom: 117/1445
  50245. }
  50246. },
  50247. maw: {
  50248. height: math.unit(2, "feet"),
  50249. name: "Maw",
  50250. image: {
  50251. source: "./media/characters/shady/maw.svg"
  50252. }
  50253. },
  50254. },
  50255. [
  50256. {
  50257. name: "Nano",
  50258. height: math.unit(1, "mm")
  50259. },
  50260. {
  50261. name: "Micro",
  50262. height: math.unit(12, "mm")
  50263. },
  50264. {
  50265. name: "Tiny",
  50266. height: math.unit(3, "inches")
  50267. },
  50268. {
  50269. name: "Normal",
  50270. height: math.unit(6 + 2/12, "feet"),
  50271. default: true
  50272. },
  50273. {
  50274. name: "Big",
  50275. height: math.unit(15, "feet")
  50276. },
  50277. {
  50278. name: "Macro",
  50279. height: math.unit(150, "feet")
  50280. },
  50281. {
  50282. name: "Titanic",
  50283. height: math.unit(500, "feet")
  50284. },
  50285. ]
  50286. ))
  50287. characterMakers.push(() => makeCharacter(
  50288. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50289. {
  50290. front: {
  50291. height: math.unit(12, "feet"),
  50292. name: "Front",
  50293. image: {
  50294. source: "./media/characters/fenrir/front.svg",
  50295. extra: 968/875,
  50296. bottom: 22/990
  50297. }
  50298. },
  50299. },
  50300. [
  50301. {
  50302. name: "Big",
  50303. height: math.unit(12, "feet"),
  50304. default: true
  50305. },
  50306. ]
  50307. ))
  50308. characterMakers.push(() => makeCharacter(
  50309. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50310. {
  50311. front: {
  50312. height: math.unit(5 + 4/12, "feet"),
  50313. name: "Front",
  50314. image: {
  50315. source: "./media/characters/makar/front.svg",
  50316. extra: 1181/1112,
  50317. bottom: 78/1259
  50318. }
  50319. },
  50320. },
  50321. [
  50322. {
  50323. name: "Normal",
  50324. height: math.unit(5 + 4/12, "feet"),
  50325. default: true
  50326. },
  50327. ]
  50328. ))
  50329. characterMakers.push(() => makeCharacter(
  50330. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50331. {
  50332. front: {
  50333. height: math.unit(5 + 7/12, "feet"),
  50334. name: "Front",
  50335. image: {
  50336. source: "./media/characters/callow/front.svg",
  50337. extra: 1482/1304,
  50338. bottom: 23/1505
  50339. }
  50340. },
  50341. back: {
  50342. height: math.unit(5 + 7/12, "feet"),
  50343. name: "Back",
  50344. image: {
  50345. source: "./media/characters/callow/back.svg",
  50346. extra: 1484/1296,
  50347. bottom: 25/1509
  50348. }
  50349. },
  50350. },
  50351. [
  50352. {
  50353. name: "Micro",
  50354. height: math.unit(3, "inches"),
  50355. default: true
  50356. },
  50357. {
  50358. name: "Normal",
  50359. height: math.unit(5 + 7/12, "feet")
  50360. },
  50361. ]
  50362. ))
  50363. characterMakers.push(() => makeCharacter(
  50364. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50365. {
  50366. front: {
  50367. height: math.unit(6 + 2/12, "feet"),
  50368. name: "Front",
  50369. image: {
  50370. source: "./media/characters/natel/front.svg",
  50371. extra: 1833/1692,
  50372. bottom: 166/1999
  50373. }
  50374. },
  50375. },
  50376. [
  50377. {
  50378. name: "Normal",
  50379. height: math.unit(6 + 2/12, "feet"),
  50380. default: true
  50381. },
  50382. ]
  50383. ))
  50384. characterMakers.push(() => makeCharacter(
  50385. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50386. {
  50387. front: {
  50388. height: math.unit(1.75, "meters"),
  50389. name: "Front",
  50390. image: {
  50391. source: "./media/characters/misu/front.svg",
  50392. extra: 1690/1558,
  50393. bottom: 234/1924
  50394. }
  50395. },
  50396. back: {
  50397. height: math.unit(1.75, "meters"),
  50398. name: "Back",
  50399. image: {
  50400. source: "./media/characters/misu/back.svg",
  50401. extra: 1762/1618,
  50402. bottom: 146/1908
  50403. }
  50404. },
  50405. frontNude: {
  50406. height: math.unit(1.75, "meters"),
  50407. name: "Front (Nude)",
  50408. image: {
  50409. source: "./media/characters/misu/front-nude.svg",
  50410. extra: 1690/1558,
  50411. bottom: 234/1924
  50412. }
  50413. },
  50414. backNude: {
  50415. height: math.unit(1.75, "meters"),
  50416. name: "Back (Nude)",
  50417. image: {
  50418. source: "./media/characters/misu/back-nude.svg",
  50419. extra: 1762/1618,
  50420. bottom: 146/1908
  50421. }
  50422. },
  50423. frontErect: {
  50424. height: math.unit(1.75, "meters"),
  50425. name: "Front (Erect)",
  50426. image: {
  50427. source: "./media/characters/misu/front-erect.svg",
  50428. extra: 1690/1558,
  50429. bottom: 234/1924
  50430. }
  50431. },
  50432. maw: {
  50433. height: math.unit(0.47, "meters"),
  50434. name: "Maw",
  50435. image: {
  50436. source: "./media/characters/misu/maw.svg"
  50437. }
  50438. },
  50439. head: {
  50440. height: math.unit(0.35, "meters"),
  50441. name: "Head",
  50442. image: {
  50443. source: "./media/characters/misu/head.svg"
  50444. }
  50445. },
  50446. rear: {
  50447. height: math.unit(0.47, "meters"),
  50448. name: "Rear",
  50449. image: {
  50450. source: "./media/characters/misu/rear.svg"
  50451. }
  50452. },
  50453. },
  50454. [
  50455. {
  50456. name: "Normal",
  50457. height: math.unit(1.75, "meters")
  50458. },
  50459. {
  50460. name: "Not good for the people",
  50461. height: math.unit(42, "meters")
  50462. },
  50463. {
  50464. name: "Not good for the neighborhood",
  50465. height: math.unit(135, "meters")
  50466. },
  50467. {
  50468. name: "Bit bigger problem",
  50469. height: math.unit(380, "meters"),
  50470. default: true
  50471. },
  50472. {
  50473. name: "Not good for the city",
  50474. height: math.unit(1.5, "km")
  50475. },
  50476. {
  50477. name: "Not good for the county",
  50478. height: math.unit(5.5, "km")
  50479. },
  50480. {
  50481. name: "Not good for the state",
  50482. height: math.unit(25, "km")
  50483. },
  50484. {
  50485. name: "Not good for the country",
  50486. height: math.unit(125, "km")
  50487. },
  50488. {
  50489. name: "Not good for the continent",
  50490. height: math.unit(2100, "km")
  50491. },
  50492. {
  50493. name: "Not good for the planet",
  50494. height: math.unit(35000, "km")
  50495. },
  50496. {
  50497. name: "Just no",
  50498. height: math.unit(8.5e18, "km")
  50499. },
  50500. ]
  50501. ))
  50502. characterMakers.push(() => makeCharacter(
  50503. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50504. {
  50505. front: {
  50506. height: math.unit(6.5, "feet"),
  50507. name: "Front",
  50508. image: {
  50509. source: "./media/characters/poppy/front.svg",
  50510. extra: 1878/1812,
  50511. bottom: 43/1921
  50512. }
  50513. },
  50514. feet: {
  50515. height: math.unit(1.06, "feet"),
  50516. name: "Feet",
  50517. image: {
  50518. source: "./media/characters/poppy/feet.svg",
  50519. extra: 1083/1083,
  50520. bottom: 87/1170
  50521. }
  50522. },
  50523. },
  50524. [
  50525. {
  50526. name: "Human",
  50527. height: math.unit(6.5, "feet")
  50528. },
  50529. {
  50530. name: "Default",
  50531. height: math.unit(300, "feet"),
  50532. default: true
  50533. },
  50534. {
  50535. name: "Huge",
  50536. height: math.unit(850, "feet")
  50537. },
  50538. {
  50539. name: "Mega",
  50540. height: math.unit(8000, "feet")
  50541. },
  50542. {
  50543. name: "Giga",
  50544. height: math.unit(300, "miles")
  50545. },
  50546. ]
  50547. ))
  50548. characterMakers.push(() => makeCharacter(
  50549. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50550. {
  50551. bipedal: {
  50552. height: math.unit(7, "feet"),
  50553. name: "Bipedal",
  50554. image: {
  50555. source: "./media/characters/zener/bipedal.svg",
  50556. extra: 874/805,
  50557. bottom: 109/983
  50558. }
  50559. },
  50560. quadrupedal: {
  50561. height: math.unit(4.64, "feet"),
  50562. name: "Quadrupedal",
  50563. image: {
  50564. source: "./media/characters/zener/quadrupedal.svg",
  50565. extra: 638/507,
  50566. bottom: 190/828
  50567. }
  50568. },
  50569. cock: {
  50570. height: math.unit(18, "inches"),
  50571. name: "Cock",
  50572. image: {
  50573. source: "./media/characters/zener/cock.svg"
  50574. }
  50575. },
  50576. },
  50577. [
  50578. {
  50579. name: "Normal",
  50580. height: math.unit(7, "feet"),
  50581. default: true
  50582. },
  50583. ]
  50584. ))
  50585. characterMakers.push(() => makeCharacter(
  50586. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50587. {
  50588. nude: {
  50589. height: math.unit(5 + 6/12, "feet"),
  50590. name: "Nude",
  50591. image: {
  50592. source: "./media/characters/charlie-dog/nude.svg",
  50593. extra: 768/734,
  50594. bottom: 26/794
  50595. }
  50596. },
  50597. dressed: {
  50598. height: math.unit(5 + 6/12, "feet"),
  50599. name: "Dressed",
  50600. image: {
  50601. source: "./media/characters/charlie-dog/dressed.svg",
  50602. extra: 768/734,
  50603. bottom: 26/794
  50604. }
  50605. },
  50606. },
  50607. [
  50608. {
  50609. name: "Normal",
  50610. height: math.unit(5 + 6/12, "feet"),
  50611. default: true
  50612. },
  50613. ]
  50614. ))
  50615. characterMakers.push(() => makeCharacter(
  50616. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50617. {
  50618. front: {
  50619. height: math.unit(6 + 4/12, "feet"),
  50620. name: "Front",
  50621. image: {
  50622. source: "./media/characters/ir'istrasz/front.svg",
  50623. extra: 1014/977,
  50624. bottom: 65/1079
  50625. }
  50626. },
  50627. back: {
  50628. height: math.unit(6 + 4/12, "feet"),
  50629. name: "Back",
  50630. image: {
  50631. source: "./media/characters/ir'istrasz/back.svg",
  50632. extra: 1024/992,
  50633. bottom: 34/1058
  50634. }
  50635. },
  50636. },
  50637. [
  50638. {
  50639. name: "Normal",
  50640. height: math.unit(6 + 4/12, "feet"),
  50641. default: true
  50642. },
  50643. ]
  50644. ))
  50645. characterMakers.push(() => makeCharacter(
  50646. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50647. {
  50648. front: {
  50649. height: math.unit(5 + 8/12, "feet"),
  50650. name: "Front",
  50651. image: {
  50652. source: "./media/characters/dee-ditto/front.svg",
  50653. extra: 1874/1785,
  50654. bottom: 68/1942
  50655. }
  50656. },
  50657. back: {
  50658. height: math.unit(5 + 8/12, "feet"),
  50659. name: "Back",
  50660. image: {
  50661. source: "./media/characters/dee-ditto/back.svg",
  50662. extra: 1870/1783,
  50663. bottom: 77/1947
  50664. }
  50665. },
  50666. },
  50667. [
  50668. {
  50669. name: "Normal",
  50670. height: math.unit(5 + 8/12, "feet"),
  50671. default: true
  50672. },
  50673. ]
  50674. ))
  50675. characterMakers.push(() => makeCharacter(
  50676. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50677. {
  50678. front: {
  50679. height: math.unit(7 + 6/12, "feet"),
  50680. name: "Front",
  50681. image: {
  50682. source: "./media/characters/fey/front.svg",
  50683. extra: 995/979,
  50684. bottom: 30/1025
  50685. }
  50686. },
  50687. back: {
  50688. height: math.unit(7 + 6/12, "feet"),
  50689. name: "Back",
  50690. image: {
  50691. source: "./media/characters/fey/back.svg",
  50692. extra: 1079/1008,
  50693. bottom: 5/1084
  50694. }
  50695. },
  50696. dressed: {
  50697. height: math.unit(7 + 6/12, "feet"),
  50698. name: "Dressed",
  50699. image: {
  50700. source: "./media/characters/fey/dressed.svg",
  50701. extra: 995/979,
  50702. bottom: 30/1025
  50703. }
  50704. },
  50705. },
  50706. [
  50707. {
  50708. name: "Normal",
  50709. height: math.unit(7 + 6/12, "feet"),
  50710. default: true
  50711. },
  50712. ]
  50713. ))
  50714. characterMakers.push(() => makeCharacter(
  50715. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50716. {
  50717. standing: {
  50718. height: math.unit(17, "feet"),
  50719. name: "Standing",
  50720. image: {
  50721. source: "./media/characters/aster/standing.svg",
  50722. extra: 1798/1598,
  50723. bottom: 117/1915
  50724. }
  50725. },
  50726. },
  50727. [
  50728. {
  50729. name: "Normal",
  50730. height: math.unit(17, "feet"),
  50731. default: true
  50732. },
  50733. {
  50734. name: "Homewrecker",
  50735. height: math.unit(95, "feet")
  50736. },
  50737. {
  50738. name: "Planet Devourer",
  50739. height: math.unit(1008000, "miles")
  50740. },
  50741. ]
  50742. ))
  50743. characterMakers.push(() => makeCharacter(
  50744. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50745. {
  50746. front: {
  50747. height: math.unit(6 + 5/12, "feet"),
  50748. weight: math.unit(265, "lb"),
  50749. name: "Front",
  50750. image: {
  50751. source: "./media/characters/devon-childs/front.svg",
  50752. extra: 1795/1721,
  50753. bottom: 41/1836
  50754. }
  50755. },
  50756. side: {
  50757. height: math.unit(6 + 5/12, "feet"),
  50758. weight: math.unit(265, "lb"),
  50759. name: "Side",
  50760. image: {
  50761. source: "./media/characters/devon-childs/side.svg",
  50762. extra: 1812/1738,
  50763. bottom: 30/1842
  50764. }
  50765. },
  50766. back: {
  50767. height: math.unit(6 + 5/12, "feet"),
  50768. weight: math.unit(265, "lb"),
  50769. name: "Back",
  50770. image: {
  50771. source: "./media/characters/devon-childs/back.svg",
  50772. extra: 1808/1735,
  50773. bottom: 23/1831
  50774. }
  50775. },
  50776. hand: {
  50777. height: math.unit(1.464, "feet"),
  50778. name: "Hand",
  50779. image: {
  50780. source: "./media/characters/devon-childs/hand.svg"
  50781. }
  50782. },
  50783. foot: {
  50784. height: math.unit(1.6, "feet"),
  50785. name: "Foot",
  50786. image: {
  50787. source: "./media/characters/devon-childs/foot.svg"
  50788. }
  50789. },
  50790. },
  50791. [
  50792. {
  50793. name: "Micro",
  50794. height: math.unit(7, "cm")
  50795. },
  50796. {
  50797. name: "Normal",
  50798. height: math.unit(6 + 5/12, "feet"),
  50799. default: true
  50800. },
  50801. {
  50802. name: "Macro",
  50803. height: math.unit(154, "feet")
  50804. },
  50805. ]
  50806. ))
  50807. characterMakers.push(() => makeCharacter(
  50808. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50809. {
  50810. front: {
  50811. height: math.unit(6, "feet"),
  50812. weight: math.unit(180, "lb"),
  50813. name: "Front",
  50814. image: {
  50815. source: "./media/characters/lydemox-vir/front.svg",
  50816. extra: 1632/1435,
  50817. bottom: 58/1690
  50818. }
  50819. },
  50820. frontSFW: {
  50821. height: math.unit(6, "feet"),
  50822. weight: math.unit(180, "lb"),
  50823. name: "Front (SFW)",
  50824. image: {
  50825. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50826. extra: 1632/1435,
  50827. bottom: 58/1690
  50828. }
  50829. },
  50830. back: {
  50831. height: math.unit(6, "feet"),
  50832. weight: math.unit(180, "lb"),
  50833. name: "Back",
  50834. image: {
  50835. source: "./media/characters/lydemox-vir/back.svg",
  50836. extra: 1593/1408,
  50837. bottom: 31/1624
  50838. }
  50839. },
  50840. paw: {
  50841. height: math.unit(1.85, "feet"),
  50842. name: "Paw",
  50843. image: {
  50844. source: "./media/characters/lydemox-vir/paw.svg"
  50845. }
  50846. },
  50847. dick: {
  50848. height: math.unit(1.8, "feet"),
  50849. name: "Dick",
  50850. image: {
  50851. source: "./media/characters/lydemox-vir/dick.svg"
  50852. }
  50853. },
  50854. },
  50855. [
  50856. {
  50857. name: "Macro",
  50858. height: math.unit(100, "feet"),
  50859. default: true
  50860. },
  50861. {
  50862. name: "Teramacro",
  50863. height: math.unit(1, "earth")
  50864. },
  50865. {
  50866. name: "Planetary",
  50867. height: math.unit(20, "earths")
  50868. },
  50869. ]
  50870. ))
  50871. characterMakers.push(() => makeCharacter(
  50872. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50873. {
  50874. front: {
  50875. height: math.unit(15 + 8/12, "feet"),
  50876. weight: math.unit(1237, "kg"),
  50877. name: "Front",
  50878. image: {
  50879. source: "./media/characters/mia/front.svg",
  50880. extra: 1573/1446,
  50881. bottom: 58/1631
  50882. }
  50883. },
  50884. },
  50885. [
  50886. {
  50887. name: "Small",
  50888. height: math.unit(9 + 5/12, "feet")
  50889. },
  50890. {
  50891. name: "Normal",
  50892. height: math.unit(15 + 8/12, "feet"),
  50893. default: true
  50894. },
  50895. ]
  50896. ))
  50897. characterMakers.push(() => makeCharacter(
  50898. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50899. {
  50900. front: {
  50901. height: math.unit(10 + 6/12, "feet"),
  50902. weight: math.unit(1.3, "tons"),
  50903. name: "Front",
  50904. image: {
  50905. source: "./media/characters/mr-graves/front.svg",
  50906. extra: 1779/1695,
  50907. bottom: 198/1977
  50908. }
  50909. },
  50910. },
  50911. [
  50912. {
  50913. name: "Normal",
  50914. height: math.unit(10 + 6 /12, "feet"),
  50915. default: true
  50916. },
  50917. ]
  50918. ))
  50919. characterMakers.push(() => makeCharacter(
  50920. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50921. {
  50922. dressedFront: {
  50923. height: math.unit(5 + 8/12, "feet"),
  50924. weight: math.unit(125, "lb"),
  50925. name: "Dressed (Front)",
  50926. image: {
  50927. source: "./media/characters/jess/dressed-front.svg",
  50928. extra: 1176/1152,
  50929. bottom: 42/1218
  50930. }
  50931. },
  50932. dressedSide: {
  50933. height: math.unit(5 + 8/12, "feet"),
  50934. weight: math.unit(125, "lb"),
  50935. name: "Dressed (Side)",
  50936. image: {
  50937. source: "./media/characters/jess/dressed-side.svg",
  50938. extra: 1204/1190,
  50939. bottom: 6/1210
  50940. }
  50941. },
  50942. nudeFront: {
  50943. height: math.unit(5 + 8/12, "feet"),
  50944. weight: math.unit(125, "lb"),
  50945. name: "Nude (Front)",
  50946. image: {
  50947. source: "./media/characters/jess/nude-front.svg",
  50948. extra: 1176/1152,
  50949. bottom: 42/1218
  50950. }
  50951. },
  50952. nudeSide: {
  50953. height: math.unit(5 + 8/12, "feet"),
  50954. weight: math.unit(125, "lb"),
  50955. name: "Nude (Side)",
  50956. image: {
  50957. source: "./media/characters/jess/nude-side.svg",
  50958. extra: 1204/1190,
  50959. bottom: 6/1210
  50960. }
  50961. },
  50962. organsFront: {
  50963. height: math.unit(2.83799342105, "feet"),
  50964. name: "Organs (Front)",
  50965. image: {
  50966. source: "./media/characters/jess/organs-front.svg"
  50967. }
  50968. },
  50969. organsSide: {
  50970. height: math.unit(2.64225290474, "feet"),
  50971. name: "Organs (Side)",
  50972. image: {
  50973. source: "./media/characters/jess/organs-side.svg"
  50974. }
  50975. },
  50976. digestiveTractFront: {
  50977. height: math.unit(2.8106580871, "feet"),
  50978. name: "Digestive Tract (Front)",
  50979. image: {
  50980. source: "./media/characters/jess/digestive-tract-front.svg"
  50981. }
  50982. },
  50983. digestiveTractSide: {
  50984. height: math.unit(2.54365045014, "feet"),
  50985. name: "Digestive Tract (Side)",
  50986. image: {
  50987. source: "./media/characters/jess/digestive-tract-side.svg"
  50988. }
  50989. },
  50990. respiratorySystemFront: {
  50991. height: math.unit(1.11196233456, "feet"),
  50992. name: "Respiratory System (Front)",
  50993. image: {
  50994. source: "./media/characters/jess/respiratory-system-front.svg"
  50995. }
  50996. },
  50997. respiratorySystemSide: {
  50998. height: math.unit(0.89327966297, "feet"),
  50999. name: "Respiratory System (Side)",
  51000. image: {
  51001. source: "./media/characters/jess/respiratory-system-side.svg"
  51002. }
  51003. },
  51004. urinaryTractFront: {
  51005. height: math.unit(1.16126356186, "feet"),
  51006. name: "Urinary Tract (Front)",
  51007. image: {
  51008. source: "./media/characters/jess/urinary-tract-front.svg"
  51009. }
  51010. },
  51011. urinaryTractSide: {
  51012. height: math.unit(1.20910039627, "feet"),
  51013. name: "Urinary Tract (Side)",
  51014. image: {
  51015. source: "./media/characters/jess/urinary-tract-side.svg"
  51016. }
  51017. },
  51018. reproductiveOrgansFront: {
  51019. height: math.unit(0.48422591566, "feet"),
  51020. name: "Reproductive Organs (Front)",
  51021. image: {
  51022. source: "./media/characters/jess/reproductive-organs-front.svg"
  51023. }
  51024. },
  51025. reproductiveOrgansSide: {
  51026. height: math.unit(0.61553314481, "feet"),
  51027. name: "Reproductive Organs (Side)",
  51028. image: {
  51029. source: "./media/characters/jess/reproductive-organs-side.svg"
  51030. }
  51031. },
  51032. breastsFront: {
  51033. height: math.unit(0.47690395121, "feet"),
  51034. name: "Breasts (Front)",
  51035. image: {
  51036. source: "./media/characters/jess/breasts-front.svg"
  51037. }
  51038. },
  51039. breastsSide: {
  51040. height: math.unit(0.30556998307, "feet"),
  51041. name: "Breasts (Side)",
  51042. image: {
  51043. source: "./media/characters/jess/breasts-side.svg"
  51044. }
  51045. },
  51046. heartFront: {
  51047. height: math.unit(0.53011022622, "feet"),
  51048. name: "Heart (Front)",
  51049. image: {
  51050. source: "./media/characters/jess/heart-front.svg"
  51051. }
  51052. },
  51053. heartSide: {
  51054. height: math.unit(0.51790695213, "feet"),
  51055. name: "Heart (Side)",
  51056. image: {
  51057. source: "./media/characters/jess/heart-side.svg"
  51058. }
  51059. },
  51060. earsAndNoseFront: {
  51061. height: math.unit(0.29385483995, "feet"),
  51062. name: "Ears and Nose (Front)",
  51063. image: {
  51064. source: "./media/characters/jess/ears-and-nose-front.svg"
  51065. }
  51066. },
  51067. earsAndNoseSide: {
  51068. height: math.unit(0.18109658741, "feet"),
  51069. name: "Ears and Nose (Side)",
  51070. image: {
  51071. source: "./media/characters/jess/ears-and-nose-side.svg"
  51072. }
  51073. },
  51074. },
  51075. [
  51076. {
  51077. name: "Normal",
  51078. height: math.unit(5 + 8/12, "feet"),
  51079. default: true
  51080. },
  51081. ]
  51082. ))
  51083. characterMakers.push(() => makeCharacter(
  51084. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51085. {
  51086. front: {
  51087. height: math.unit(6, "feet"),
  51088. weight: math.unit(6.64467e-7, "grams"),
  51089. name: "Front",
  51090. image: {
  51091. source: "./media/characters/wimpering/front.svg",
  51092. extra: 597/587,
  51093. bottom: 34/631
  51094. }
  51095. },
  51096. },
  51097. [
  51098. {
  51099. name: "Micro",
  51100. height: math.unit(0.4, "mm"),
  51101. default: true
  51102. },
  51103. ]
  51104. ))
  51105. characterMakers.push(() => makeCharacter(
  51106. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51107. {
  51108. front: {
  51109. height: math.unit(5 + 2/12, "feet"),
  51110. weight: math.unit(110, "lb"),
  51111. name: "Front",
  51112. image: {
  51113. source: "./media/characters/keltre/front.svg",
  51114. extra: 1099/1057,
  51115. bottom: 22/1121
  51116. }
  51117. },
  51118. back: {
  51119. height: math.unit(5 + 2/12, "feet"),
  51120. weight: math.unit(110, "lb"),
  51121. name: "Back",
  51122. image: {
  51123. source: "./media/characters/keltre/back.svg",
  51124. extra: 1095/1053,
  51125. bottom: 17/1112
  51126. }
  51127. },
  51128. dressed: {
  51129. height: math.unit(5 + 2/12, "feet"),
  51130. weight: math.unit(110, "lb"),
  51131. name: "Dressed",
  51132. image: {
  51133. source: "./media/characters/keltre/dressed.svg",
  51134. extra: 1099/1057,
  51135. bottom: 22/1121
  51136. }
  51137. },
  51138. winter: {
  51139. height: math.unit(5 + 2/12, "feet"),
  51140. weight: math.unit(110, "lb"),
  51141. name: "Winter",
  51142. image: {
  51143. source: "./media/characters/keltre/winter.svg",
  51144. extra: 1099/1057,
  51145. bottom: 22/1121
  51146. }
  51147. },
  51148. head: {
  51149. height: math.unit(1.61 * 0.86, "feet"),
  51150. name: "Head",
  51151. image: {
  51152. source: "./media/characters/keltre/head.svg",
  51153. extra: 534/421,
  51154. bottom: 0/534
  51155. }
  51156. },
  51157. hand: {
  51158. height: math.unit(1.3 * 0.86, "feet"),
  51159. name: "Hand",
  51160. image: {
  51161. source: "./media/characters/keltre/hand.svg"
  51162. }
  51163. },
  51164. foot: {
  51165. height: math.unit(1.8 * 0.86, "feet"),
  51166. name: "Foot",
  51167. image: {
  51168. source: "./media/characters/keltre/foot.svg"
  51169. }
  51170. },
  51171. },
  51172. [
  51173. {
  51174. name: "Fine",
  51175. height: math.unit(1, "inch")
  51176. },
  51177. {
  51178. name: "Dimnutive",
  51179. height: math.unit(4, "inches")
  51180. },
  51181. {
  51182. name: "Tiny",
  51183. height: math.unit(1, "foot")
  51184. },
  51185. {
  51186. name: "Small",
  51187. height: math.unit(3, "feet")
  51188. },
  51189. {
  51190. name: "Normal",
  51191. height: math.unit(5 + 2/12, "feet"),
  51192. default: true
  51193. },
  51194. ]
  51195. ))
  51196. characterMakers.push(() => makeCharacter(
  51197. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51198. {
  51199. front: {
  51200. height: math.unit(6 + 2/12, "feet"),
  51201. name: "Front",
  51202. image: {
  51203. source: "./media/characters/nox/front.svg",
  51204. extra: 1917/1830,
  51205. bottom: 74/1991
  51206. }
  51207. },
  51208. back: {
  51209. height: math.unit(6 + 2/12, "feet"),
  51210. name: "Back",
  51211. image: {
  51212. source: "./media/characters/nox/back.svg",
  51213. extra: 1896/1815,
  51214. bottom: 21/1917
  51215. }
  51216. },
  51217. head: {
  51218. height: math.unit(1.1, "feet"),
  51219. name: "Head",
  51220. image: {
  51221. source: "./media/characters/nox/head.svg",
  51222. extra: 874/704,
  51223. bottom: 0/874
  51224. }
  51225. },
  51226. tattoo: {
  51227. height: math.unit(0.729, "feet"),
  51228. name: "Tattoo",
  51229. image: {
  51230. source: "./media/characters/nox/tattoo.svg"
  51231. }
  51232. },
  51233. },
  51234. [
  51235. {
  51236. name: "Normal",
  51237. height: math.unit(6 + 2/12, "feet")
  51238. },
  51239. {
  51240. name: "Gigamacro",
  51241. height: math.unit(2, "earths"),
  51242. default: true
  51243. },
  51244. {
  51245. name: "Cosmic",
  51246. height: math.unit(867, "yottameters")
  51247. },
  51248. ]
  51249. ))
  51250. characterMakers.push(() => makeCharacter(
  51251. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51252. {
  51253. front: {
  51254. height: math.unit(6, "feet"),
  51255. weight: math.unit(150, "lb"),
  51256. name: "Front",
  51257. image: {
  51258. source: "./media/characters/caspian/front.svg",
  51259. extra: 1443/1359,
  51260. bottom: 0/1443
  51261. }
  51262. },
  51263. back: {
  51264. height: math.unit(6, "feet"),
  51265. weight: math.unit(150, "lb"),
  51266. name: "Back",
  51267. image: {
  51268. source: "./media/characters/caspian/back.svg",
  51269. extra: 1379/1309,
  51270. bottom: 0/1379
  51271. }
  51272. },
  51273. head: {
  51274. height: math.unit(0.9, "feet"),
  51275. name: "Head",
  51276. image: {
  51277. source: "./media/characters/caspian/head.svg",
  51278. extra: 692/492,
  51279. bottom: 0/692
  51280. }
  51281. },
  51282. headAlt: {
  51283. height: math.unit(0.95, "feet"),
  51284. name: "Head (Alt)",
  51285. image: {
  51286. source: "./media/characters/caspian/head-alt.svg",
  51287. extra: 668/508,
  51288. bottom: 0/668
  51289. }
  51290. },
  51291. hand: {
  51292. height: math.unit(0.8, "feet"),
  51293. name: "Hand",
  51294. image: {
  51295. source: "./media/characters/caspian/hand.svg"
  51296. }
  51297. },
  51298. paw: {
  51299. height: math.unit(0.95, "feet"),
  51300. name: "Paw",
  51301. image: {
  51302. source: "./media/characters/caspian/paw.svg"
  51303. }
  51304. },
  51305. },
  51306. [
  51307. {
  51308. name: "Normal",
  51309. height: math.unit(162, "feet"),
  51310. default: true
  51311. },
  51312. ]
  51313. ))
  51314. characterMakers.push(() => makeCharacter(
  51315. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51316. {
  51317. front: {
  51318. height: math.unit(6, "feet"),
  51319. name: "Front",
  51320. image: {
  51321. source: "./media/characters/myra-aisling/front.svg",
  51322. extra: 1268/1166,
  51323. bottom: 73/1341
  51324. }
  51325. },
  51326. back: {
  51327. height: math.unit(6, "feet"),
  51328. name: "Back",
  51329. image: {
  51330. source: "./media/characters/myra-aisling/back.svg",
  51331. extra: 1249/1149,
  51332. bottom: 79/1328
  51333. }
  51334. },
  51335. dressed: {
  51336. height: math.unit(6, "feet"),
  51337. name: "Dressed",
  51338. image: {
  51339. source: "./media/characters/myra-aisling/dressed.svg",
  51340. extra: 1290/1189,
  51341. bottom: 47/1337
  51342. }
  51343. },
  51344. hand: {
  51345. height: math.unit(1.1, "feet"),
  51346. name: "Hand",
  51347. image: {
  51348. source: "./media/characters/myra-aisling/hand.svg"
  51349. }
  51350. },
  51351. paw: {
  51352. height: math.unit(1.23, "feet"),
  51353. name: "Paw",
  51354. image: {
  51355. source: "./media/characters/myra-aisling/paw.svg"
  51356. }
  51357. },
  51358. },
  51359. [
  51360. {
  51361. name: "Normal",
  51362. height: math.unit(160, "feet"),
  51363. default: true
  51364. },
  51365. ]
  51366. ))
  51367. characterMakers.push(() => makeCharacter(
  51368. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51369. {
  51370. front: {
  51371. height: math.unit(6, "feet"),
  51372. name: "Front",
  51373. image: {
  51374. source: "./media/characters/tenley-sidero/front.svg",
  51375. extra: 1365/1276,
  51376. bottom: 47/1412
  51377. }
  51378. },
  51379. back: {
  51380. height: math.unit(6, "feet"),
  51381. name: "Back",
  51382. image: {
  51383. source: "./media/characters/tenley-sidero/back.svg",
  51384. extra: 1383/1283,
  51385. bottom: 35/1418
  51386. }
  51387. },
  51388. dressed: {
  51389. height: math.unit(6, "feet"),
  51390. name: "Dressed",
  51391. image: {
  51392. source: "./media/characters/tenley-sidero/dressed.svg",
  51393. extra: 1364/1275,
  51394. bottom: 42/1406
  51395. }
  51396. },
  51397. head: {
  51398. height: math.unit(1.47, "feet"),
  51399. name: "Head",
  51400. image: {
  51401. source: "./media/characters/tenley-sidero/head.svg",
  51402. extra: 610/490,
  51403. bottom: 0/610
  51404. }
  51405. },
  51406. },
  51407. [
  51408. {
  51409. name: "Normal",
  51410. height: math.unit(154, "feet"),
  51411. default: true
  51412. },
  51413. ]
  51414. ))
  51415. characterMakers.push(() => makeCharacter(
  51416. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51417. {
  51418. front: {
  51419. height: math.unit(5, "inches"),
  51420. name: "Front",
  51421. image: {
  51422. source: "./media/characters/mallory/front.svg",
  51423. extra: 1919/1678,
  51424. bottom: 29/1948
  51425. }
  51426. },
  51427. hand: {
  51428. height: math.unit(0.73, "inches"),
  51429. name: "Hand",
  51430. image: {
  51431. source: "./media/characters/mallory/hand.svg"
  51432. }
  51433. },
  51434. paw: {
  51435. height: math.unit(0.68, "inches"),
  51436. name: "Paw",
  51437. image: {
  51438. source: "./media/characters/mallory/paw.svg"
  51439. }
  51440. },
  51441. },
  51442. [
  51443. {
  51444. name: "Small",
  51445. height: math.unit(5, "inches"),
  51446. default: true
  51447. },
  51448. ]
  51449. ))
  51450. characterMakers.push(() => makeCharacter(
  51451. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51452. {
  51453. naked: {
  51454. height: math.unit(6, "feet"),
  51455. name: "Naked",
  51456. image: {
  51457. source: "./media/characters/mab/naked.svg",
  51458. extra: 1855/1757,
  51459. bottom: 208/2063
  51460. }
  51461. },
  51462. outside: {
  51463. height: math.unit(6, "feet"),
  51464. name: "Outside",
  51465. image: {
  51466. source: "./media/characters/mab/outside.svg",
  51467. extra: 1855/1757,
  51468. bottom: 208/2063
  51469. }
  51470. },
  51471. party: {
  51472. height: math.unit(6, "feet"),
  51473. name: "Party",
  51474. image: {
  51475. source: "./media/characters/mab/party.svg",
  51476. extra: 1855/1757,
  51477. bottom: 208/2063
  51478. }
  51479. },
  51480. },
  51481. [
  51482. {
  51483. name: "Normal",
  51484. height: math.unit(165, "feet"),
  51485. default: true
  51486. },
  51487. ]
  51488. ))
  51489. characterMakers.push(() => makeCharacter(
  51490. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51491. {
  51492. feral: {
  51493. height: math.unit(12, "feet"),
  51494. weight: math.unit(20000, "lb"),
  51495. name: "Side",
  51496. image: {
  51497. source: "./media/characters/winter/feral.svg",
  51498. extra: 1286/943,
  51499. bottom: 112/1398
  51500. },
  51501. form: "feral",
  51502. default: true
  51503. },
  51504. feralNsfw: {
  51505. height: math.unit(12, "feet"),
  51506. weight: math.unit(20000, "lb"),
  51507. name: "Side (NSFW)",
  51508. image: {
  51509. source: "./media/characters/winter/feral-nsfw.svg",
  51510. extra: 1286/943,
  51511. bottom: 112/1398
  51512. },
  51513. form: "feral"
  51514. },
  51515. dick: {
  51516. height: math.unit(3.79, "feet"),
  51517. name: "Dick",
  51518. image: {
  51519. source: "./media/characters/winter/dick.svg"
  51520. },
  51521. form: "feral"
  51522. },
  51523. anthro: {
  51524. height: math.unit(12, "feet"),
  51525. weight: math.unit(10, "tons"),
  51526. name: "Anthro",
  51527. image: {
  51528. source: "./media/characters/winter/anthro.svg",
  51529. extra: 1701/1553,
  51530. bottom: 64/1765
  51531. },
  51532. form: "anthro",
  51533. default: true
  51534. },
  51535. },
  51536. [
  51537. {
  51538. name: "Big",
  51539. height: math.unit(12, "feet"),
  51540. default: true,
  51541. form: "feral"
  51542. },
  51543. {
  51544. name: "Big",
  51545. height: math.unit(12, "feet"),
  51546. default: true,
  51547. form: "anthro"
  51548. },
  51549. ],
  51550. {
  51551. "feral": {
  51552. name: "Feral",
  51553. default: true
  51554. },
  51555. "anthro": {
  51556. name: "Anthro"
  51557. }
  51558. }
  51559. ))
  51560. characterMakers.push(() => makeCharacter(
  51561. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51562. {
  51563. front: {
  51564. height: math.unit(4.1, "inches"),
  51565. name: "Front",
  51566. image: {
  51567. source: "./media/characters/alto/front.svg",
  51568. extra: 736/627,
  51569. bottom: 90/826
  51570. }
  51571. },
  51572. },
  51573. [
  51574. {
  51575. name: "Normal",
  51576. height: math.unit(4.1, "inches"),
  51577. default: true
  51578. },
  51579. ]
  51580. ))
  51581. characterMakers.push(() => makeCharacter(
  51582. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51583. {
  51584. sitting: {
  51585. height: math.unit(3, "feet"),
  51586. name: "Sitting",
  51587. image: {
  51588. source: "./media/characters/ratstrid-v/sitting.svg",
  51589. extra: 355/310,
  51590. bottom: 136/491
  51591. }
  51592. },
  51593. },
  51594. [
  51595. {
  51596. name: "Normal",
  51597. height: math.unit(3, "feet"),
  51598. default: true
  51599. },
  51600. ]
  51601. ))
  51602. characterMakers.push(() => makeCharacter(
  51603. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51604. {
  51605. back: {
  51606. height: math.unit(6, "feet"),
  51607. weight: math.unit(450, "lb"),
  51608. name: "Back",
  51609. image: {
  51610. source: "./media/characters/siz/back.svg",
  51611. extra: 1449/1274,
  51612. bottom: 13/1462
  51613. }
  51614. },
  51615. },
  51616. [
  51617. {
  51618. name: "Smallest",
  51619. height: math.unit(18 + 3/12, "feet")
  51620. },
  51621. {
  51622. name: "Modest",
  51623. height: math.unit(56 + 8/12, "feet"),
  51624. default: true
  51625. },
  51626. {
  51627. name: "Largest",
  51628. height: math.unit(3590, "feet")
  51629. },
  51630. ]
  51631. ))
  51632. characterMakers.push(() => makeCharacter(
  51633. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51634. {
  51635. front: {
  51636. height: math.unit(5 + 9/12, "feet"),
  51637. weight: math.unit(150, "lb"),
  51638. name: "Front",
  51639. image: {
  51640. source: "./media/characters/ven/front.svg",
  51641. extra: 1372/1320,
  51642. bottom: 73/1445
  51643. }
  51644. },
  51645. side: {
  51646. height: math.unit(5 + 9/12, "feet"),
  51647. weight: math.unit(1150, "lb"),
  51648. name: "Side",
  51649. image: {
  51650. source: "./media/characters/ven/side.svg",
  51651. extra: 1119/1070,
  51652. bottom: 42/1161
  51653. },
  51654. default: true
  51655. },
  51656. },
  51657. [
  51658. {
  51659. name: "Normal",
  51660. height: math.unit(5 + 9/12, "feet"),
  51661. default: true
  51662. },
  51663. ]
  51664. ))
  51665. characterMakers.push(() => makeCharacter(
  51666. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51667. {
  51668. front: {
  51669. height: math.unit(12, "feet"),
  51670. weight: math.unit(1000, "kg"),
  51671. name: "Front",
  51672. image: {
  51673. source: "./media/characters/maple/front.svg",
  51674. extra: 1193/1081,
  51675. bottom: 22/1215
  51676. }
  51677. },
  51678. },
  51679. [
  51680. {
  51681. name: "Compressed",
  51682. height: math.unit(7, "feet")
  51683. },
  51684. {
  51685. name: "Normal",
  51686. height: math.unit(12, "feet"),
  51687. default: true
  51688. },
  51689. ]
  51690. ))
  51691. characterMakers.push(() => makeCharacter(
  51692. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51693. {
  51694. front: {
  51695. height: math.unit(9, "feet"),
  51696. weight: math.unit(1500, "lb"),
  51697. name: "Front",
  51698. image: {
  51699. source: "./media/characters/nora/front.svg",
  51700. extra: 1348/1286,
  51701. bottom: 218/1566
  51702. }
  51703. },
  51704. erect: {
  51705. height: math.unit(9, "feet"),
  51706. weight: math.unit(11500, "lb"),
  51707. name: "Erect",
  51708. image: {
  51709. source: "./media/characters/nora/erect.svg",
  51710. extra: 1488/1433,
  51711. bottom: 133/1621
  51712. }
  51713. },
  51714. },
  51715. [
  51716. {
  51717. name: "Normal",
  51718. height: math.unit(9, "feet"),
  51719. default: true
  51720. },
  51721. ]
  51722. ))
  51723. characterMakers.push(() => makeCharacter(
  51724. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51725. {
  51726. front: {
  51727. height: math.unit(25, "feet"),
  51728. weight: math.unit(27500, "lb"),
  51729. name: "Front",
  51730. image: {
  51731. source: "./media/characters/north-caudin/front.svg",
  51732. extra: 1184/1082,
  51733. bottom: 23/1207
  51734. }
  51735. },
  51736. },
  51737. [
  51738. {
  51739. name: "Compressed",
  51740. height: math.unit(10, "feet")
  51741. },
  51742. {
  51743. name: "Normal",
  51744. height: math.unit(25, "feet"),
  51745. default: true
  51746. },
  51747. ]
  51748. ))
  51749. characterMakers.push(() => makeCharacter(
  51750. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51751. {
  51752. front: {
  51753. height: math.unit(9, "feet"),
  51754. weight: math.unit(1250, "lb"),
  51755. name: "Front",
  51756. image: {
  51757. source: "./media/characters/merrian/front.svg",
  51758. extra: 2393/2304,
  51759. bottom: 40/2433
  51760. }
  51761. },
  51762. },
  51763. [
  51764. {
  51765. name: "Normal",
  51766. height: math.unit(9, "feet"),
  51767. default: true
  51768. },
  51769. ]
  51770. ))
  51771. characterMakers.push(() => makeCharacter(
  51772. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51773. {
  51774. front: {
  51775. height: math.unit(9, "feet"),
  51776. weight: math.unit(1000, "lb"),
  51777. name: "Front",
  51778. image: {
  51779. source: "./media/characters/hazel/front.svg",
  51780. extra: 2351/2298,
  51781. bottom: 38/2389
  51782. }
  51783. },
  51784. },
  51785. [
  51786. {
  51787. name: "Normal",
  51788. height: math.unit(9, "feet"),
  51789. default: true
  51790. },
  51791. ]
  51792. ))
  51793. characterMakers.push(() => makeCharacter(
  51794. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51795. {
  51796. front: {
  51797. height: math.unit(13, "feet"),
  51798. weight: math.unit(3200, "lb"),
  51799. name: "Front",
  51800. image: {
  51801. source: "./media/characters/emma/front.svg",
  51802. extra: 2263/2029,
  51803. bottom: 68/2331
  51804. }
  51805. },
  51806. },
  51807. [
  51808. {
  51809. name: "Normal",
  51810. height: math.unit(13, "feet"),
  51811. default: true
  51812. },
  51813. ]
  51814. ))
  51815. characterMakers.push(() => makeCharacter(
  51816. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51817. {
  51818. front: {
  51819. height: math.unit(11 + 9/12, "feet"),
  51820. weight: math.unit(2500, "lb"),
  51821. name: "Front",
  51822. image: {
  51823. source: "./media/characters/ilumina/front.svg",
  51824. extra: 2248/2209,
  51825. bottom: 164/2412
  51826. }
  51827. },
  51828. },
  51829. [
  51830. {
  51831. name: "Normal",
  51832. height: math.unit(11 + 9/12, "feet"),
  51833. default: true
  51834. },
  51835. ]
  51836. ))
  51837. characterMakers.push(() => makeCharacter(
  51838. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51839. {
  51840. front: {
  51841. height: math.unit(8 + 10/12, "feet"),
  51842. weight: math.unit(1350, "lb"),
  51843. name: "Front",
  51844. image: {
  51845. source: "./media/characters/moonshine/front.svg",
  51846. extra: 2395/2288,
  51847. bottom: 40/2435
  51848. }
  51849. },
  51850. },
  51851. [
  51852. {
  51853. name: "Normal",
  51854. height: math.unit(8 + 10/12, "feet"),
  51855. default: true
  51856. },
  51857. ]
  51858. ))
  51859. characterMakers.push(() => makeCharacter(
  51860. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51861. {
  51862. front: {
  51863. height: math.unit(14, "feet"),
  51864. weight: math.unit(3400, "lb"),
  51865. name: "Front",
  51866. image: {
  51867. source: "./media/characters/aletia/front.svg",
  51868. extra: 1185/1052,
  51869. bottom: 21/1206
  51870. }
  51871. },
  51872. },
  51873. [
  51874. {
  51875. name: "Compressed",
  51876. height: math.unit(8, "feet")
  51877. },
  51878. {
  51879. name: "Normal",
  51880. height: math.unit(14, "feet"),
  51881. default: true
  51882. },
  51883. ]
  51884. ))
  51885. characterMakers.push(() => makeCharacter(
  51886. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51887. {
  51888. front: {
  51889. height: math.unit(17, "feet"),
  51890. weight: math.unit(6500, "lb"),
  51891. name: "Front",
  51892. image: {
  51893. source: "./media/characters/deidra/front.svg",
  51894. extra: 1201/1081,
  51895. bottom: 16/1217
  51896. }
  51897. },
  51898. },
  51899. [
  51900. {
  51901. name: "Compressed",
  51902. height: math.unit(9 + 6/12, "feet")
  51903. },
  51904. {
  51905. name: "Normal",
  51906. height: math.unit(17, "feet"),
  51907. default: true
  51908. },
  51909. ]
  51910. ))
  51911. characterMakers.push(() => makeCharacter(
  51912. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51913. {
  51914. front: {
  51915. height: math.unit(7 + 4/12, "feet"),
  51916. weight: math.unit(280, "lb"),
  51917. name: "Front",
  51918. image: {
  51919. source: "./media/characters/freki-yrmori/front.svg",
  51920. extra: 1286/1182,
  51921. bottom: 29/1315
  51922. }
  51923. },
  51924. maw: {
  51925. height: math.unit(0.9, "feet"),
  51926. name: "Maw",
  51927. image: {
  51928. source: "./media/characters/freki-yrmori/maw.svg"
  51929. }
  51930. },
  51931. },
  51932. [
  51933. {
  51934. name: "Normal",
  51935. height: math.unit(7 + 4/12, "feet"),
  51936. default: true
  51937. },
  51938. {
  51939. name: "Macro",
  51940. height: math.unit(38.5, "meters")
  51941. },
  51942. ]
  51943. ))
  51944. characterMakers.push(() => makeCharacter(
  51945. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51946. {
  51947. side: {
  51948. height: math.unit(47.2, "meters"),
  51949. weight: math.unit(10000, "tons"),
  51950. name: "Side",
  51951. image: {
  51952. source: "./media/characters/aetherios/side.svg",
  51953. extra: 2363/642,
  51954. bottom: 221/2584
  51955. }
  51956. },
  51957. top: {
  51958. height: math.unit(240, "meters"),
  51959. weight: math.unit(10000, "tons"),
  51960. name: "Top",
  51961. image: {
  51962. source: "./media/characters/aetherios/top.svg"
  51963. }
  51964. },
  51965. bottom: {
  51966. height: math.unit(240, "meters"),
  51967. weight: math.unit(10000, "tons"),
  51968. name: "Bottom",
  51969. image: {
  51970. source: "./media/characters/aetherios/bottom.svg"
  51971. }
  51972. },
  51973. head: {
  51974. height: math.unit(38.6, "meters"),
  51975. name: "Head",
  51976. image: {
  51977. source: "./media/characters/aetherios/head.svg",
  51978. extra: 1335/1112,
  51979. bottom: 0/1335
  51980. }
  51981. },
  51982. front: {
  51983. height: math.unit(29, "meters"),
  51984. name: "Front",
  51985. image: {
  51986. source: "./media/characters/aetherios/front.svg",
  51987. extra: 1266/953,
  51988. bottom: 158/1424
  51989. }
  51990. },
  51991. maw: {
  51992. height: math.unit(16.37, "meters"),
  51993. name: "Maw",
  51994. image: {
  51995. source: "./media/characters/aetherios/maw.svg",
  51996. extra: 748/637,
  51997. bottom: 0/748
  51998. },
  51999. extraAttributes: {
  52000. preyCapacity: {
  52001. name: "Capacity",
  52002. power: 3,
  52003. type: "volume",
  52004. base: math.unit(1000, "people")
  52005. },
  52006. tongueSize: {
  52007. name: "Tongue Size",
  52008. power: 2,
  52009. type: "area",
  52010. base: math.unit(21, "m^2")
  52011. }
  52012. }
  52013. },
  52014. forepaw: {
  52015. height: math.unit(18, "meters"),
  52016. name: "Forepaw",
  52017. image: {
  52018. source: "./media/characters/aetherios/forepaw.svg"
  52019. }
  52020. },
  52021. hindpaw: {
  52022. height: math.unit(23, "meters"),
  52023. name: "Hindpaw",
  52024. image: {
  52025. source: "./media/characters/aetherios/hindpaw.svg"
  52026. }
  52027. },
  52028. genitals: {
  52029. height: math.unit(42, "meters"),
  52030. name: "Genitals",
  52031. image: {
  52032. source: "./media/characters/aetherios/genitals.svg"
  52033. }
  52034. },
  52035. },
  52036. [
  52037. {
  52038. name: "Normal",
  52039. height: math.unit(47.2, "meters"),
  52040. default: true
  52041. },
  52042. {
  52043. name: "Macro",
  52044. height: math.unit(160, "meters")
  52045. },
  52046. {
  52047. name: "Mega",
  52048. height: math.unit(1.87, "km")
  52049. },
  52050. {
  52051. name: "Giga",
  52052. height: math.unit(40000, "km")
  52053. },
  52054. {
  52055. name: "Stellar",
  52056. height: math.unit(158000000, "km")
  52057. },
  52058. {
  52059. name: "Cosmic",
  52060. height: math.unit(9.46e12, "km")
  52061. },
  52062. ]
  52063. ))
  52064. characterMakers.push(() => makeCharacter(
  52065. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52066. {
  52067. front: {
  52068. height: math.unit(5 + 4/12, "feet"),
  52069. weight: math.unit(80, "lb"),
  52070. name: "Front",
  52071. image: {
  52072. source: "./media/characters/mizu-gieeg/front.svg",
  52073. extra: 850/709,
  52074. bottom: 52/902
  52075. }
  52076. },
  52077. back: {
  52078. height: math.unit(5 + 4/12, "feet"),
  52079. weight: math.unit(80, "lb"),
  52080. name: "Back",
  52081. image: {
  52082. source: "./media/characters/mizu-gieeg/back.svg",
  52083. extra: 882/745,
  52084. bottom: 25/907
  52085. }
  52086. },
  52087. },
  52088. [
  52089. {
  52090. name: "Normal",
  52091. height: math.unit(5 + 4/12, "feet"),
  52092. default: true
  52093. },
  52094. ]
  52095. ))
  52096. characterMakers.push(() => makeCharacter(
  52097. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52098. {
  52099. front: {
  52100. height: math.unit(6, "feet"),
  52101. name: "Front",
  52102. image: {
  52103. source: "./media/characters/roselle-st-papier/front.svg",
  52104. extra: 1430/1280,
  52105. bottom: 37/1467
  52106. }
  52107. },
  52108. back: {
  52109. height: math.unit(6, "feet"),
  52110. name: "Back",
  52111. image: {
  52112. source: "./media/characters/roselle-st-papier/back.svg",
  52113. extra: 1491/1296,
  52114. bottom: 23/1514
  52115. }
  52116. },
  52117. ear: {
  52118. height: math.unit(1.26, "feet"),
  52119. name: "Ear",
  52120. image: {
  52121. source: "./media/characters/roselle-st-papier/ear.svg"
  52122. }
  52123. },
  52124. },
  52125. [
  52126. {
  52127. name: "Normal",
  52128. height: math.unit(150, "feet"),
  52129. default: true
  52130. },
  52131. ]
  52132. ))
  52133. characterMakers.push(() => makeCharacter(
  52134. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52135. {
  52136. front: {
  52137. height: math.unit(1, "inches"),
  52138. name: "Front",
  52139. image: {
  52140. source: "./media/characters/valargent/front.svg",
  52141. extra: 1825/1694,
  52142. bottom: 62/1887
  52143. }
  52144. },
  52145. back: {
  52146. height: math.unit(1, "inches"),
  52147. name: "Back",
  52148. image: {
  52149. source: "./media/characters/valargent/back.svg",
  52150. extra: 1775/1682,
  52151. bottom: 88/1863
  52152. }
  52153. },
  52154. },
  52155. [
  52156. {
  52157. name: "Micro",
  52158. height: math.unit(1, "inch"),
  52159. default: true
  52160. },
  52161. ]
  52162. ))
  52163. characterMakers.push(() => makeCharacter(
  52164. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52165. {
  52166. front: {
  52167. height: math.unit(3.4, "meters"),
  52168. name: "Front",
  52169. image: {
  52170. source: "./media/characters/zarina/front.svg",
  52171. extra: 1733/1425,
  52172. bottom: 93/1826
  52173. }
  52174. },
  52175. squatting: {
  52176. height: math.unit(2.14, "meters"),
  52177. name: "Squatting",
  52178. image: {
  52179. source: "./media/characters/zarina/squatting.svg",
  52180. extra: 1073/788,
  52181. bottom: 63/1136
  52182. }
  52183. },
  52184. back: {
  52185. height: math.unit(2.14, "meters"),
  52186. name: "Back",
  52187. image: {
  52188. source: "./media/characters/zarina/back.svg",
  52189. extra: 1128/885,
  52190. bottom: 0/1128
  52191. }
  52192. },
  52193. },
  52194. [
  52195. {
  52196. name: "Normal",
  52197. height: math.unit(3.4, "meters"),
  52198. default: true
  52199. },
  52200. {
  52201. name: "Big",
  52202. height: math.unit(5, "meters")
  52203. },
  52204. {
  52205. name: "Macro",
  52206. height: math.unit(110, "meters")
  52207. },
  52208. ]
  52209. ))
  52210. characterMakers.push(() => makeCharacter(
  52211. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52212. {
  52213. front: {
  52214. height: math.unit(7, "feet"),
  52215. name: "Front",
  52216. image: {
  52217. source: "./media/characters/ventus-astro-fox/front.svg",
  52218. extra: 1792/1623,
  52219. bottom: 28/1820
  52220. }
  52221. },
  52222. back: {
  52223. height: math.unit(7, "feet"),
  52224. name: "Back",
  52225. image: {
  52226. source: "./media/characters/ventus-astro-fox/back.svg",
  52227. extra: 1789/1620,
  52228. bottom: 31/1820
  52229. }
  52230. },
  52231. outfit: {
  52232. height: math.unit(7, "feet"),
  52233. name: "Outfit",
  52234. image: {
  52235. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52236. extra: 1054/925,
  52237. bottom: 15/1069
  52238. }
  52239. },
  52240. head: {
  52241. height: math.unit(1.12, "feet"),
  52242. name: "Head",
  52243. image: {
  52244. source: "./media/characters/ventus-astro-fox/head.svg",
  52245. extra: 866/504,
  52246. bottom: 0/866
  52247. }
  52248. },
  52249. hand: {
  52250. height: math.unit(1, "feet"),
  52251. name: "Hand",
  52252. image: {
  52253. source: "./media/characters/ventus-astro-fox/hand.svg"
  52254. }
  52255. },
  52256. paw: {
  52257. height: math.unit(1.5, "feet"),
  52258. name: "Paw",
  52259. image: {
  52260. source: "./media/characters/ventus-astro-fox/paw.svg"
  52261. }
  52262. },
  52263. },
  52264. [
  52265. {
  52266. name: "Normal",
  52267. height: math.unit(7, "feet"),
  52268. default: true
  52269. },
  52270. {
  52271. name: "Macro",
  52272. height: math.unit(200, "feet")
  52273. },
  52274. {
  52275. name: "Cosmic",
  52276. height: math.unit(3, "universes")
  52277. },
  52278. ]
  52279. ))
  52280. characterMakers.push(() => makeCharacter(
  52281. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52282. {
  52283. front: {
  52284. height: math.unit(3, "meters"),
  52285. weight: math.unit(7000, "lb"),
  52286. name: "Front",
  52287. image: {
  52288. source: "./media/characters/core-t/front.svg",
  52289. extra: 5729/4941,
  52290. bottom: 1129/6858
  52291. }
  52292. },
  52293. },
  52294. [
  52295. {
  52296. name: "Big",
  52297. height: math.unit(3, "meters"),
  52298. default: true
  52299. },
  52300. ]
  52301. ))
  52302. characterMakers.push(() => makeCharacter(
  52303. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52304. {
  52305. normal: {
  52306. height: math.unit(6 + 6/12, "feet"),
  52307. weight: math.unit(275, "lb"),
  52308. name: "Front",
  52309. image: {
  52310. source: "./media/characters/cadbunny/normal.svg",
  52311. extra: 1129/947,
  52312. bottom: 93/1222
  52313. },
  52314. default: true,
  52315. form: "normal"
  52316. },
  52317. gigantamax: {
  52318. height: math.unit(26, "feet"),
  52319. weight: math.unit(16000, "lb"),
  52320. name: "Front",
  52321. image: {
  52322. source: "./media/characters/cadbunny/gigantamax.svg",
  52323. extra: 1133/944,
  52324. bottom: 90/1223
  52325. },
  52326. default: true,
  52327. form: "gigantamax"
  52328. },
  52329. },
  52330. [
  52331. {
  52332. name: "Normal",
  52333. height: math.unit(6 + 6/12, "feet"),
  52334. default: true,
  52335. form: "normal"
  52336. },
  52337. {
  52338. name: "Small",
  52339. height: math.unit(26, "feet"),
  52340. default: true,
  52341. form: "gigantamax"
  52342. },
  52343. {
  52344. name: "Large",
  52345. height: math.unit(78, "feet"),
  52346. form: "gigantamax"
  52347. },
  52348. ],
  52349. {
  52350. "normal": {
  52351. name: "Normal",
  52352. default: true
  52353. },
  52354. "gigantamax": {
  52355. name: "Gigantamax"
  52356. }
  52357. }
  52358. ))
  52359. characterMakers.push(() => makeCharacter(
  52360. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52361. {
  52362. anthroFront: {
  52363. height: math.unit(8, "feet"),
  52364. weight: math.unit(300, "lb"),
  52365. name: "Front",
  52366. image: {
  52367. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52368. extra: 1272/1176,
  52369. bottom: 53/1325
  52370. },
  52371. form: "anthro",
  52372. default: true
  52373. },
  52374. feralSide: {
  52375. height: math.unit(4, "feet"),
  52376. weight: math.unit(250, "lb"),
  52377. name: "Side",
  52378. image: {
  52379. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52380. extra: 731/621,
  52381. bottom: 0/731
  52382. },
  52383. form: "feral",
  52384. default: true
  52385. },
  52386. },
  52387. [
  52388. {
  52389. name: "Regular",
  52390. height: math.unit(8, "feet"),
  52391. form: "anthro"
  52392. },
  52393. {
  52394. name: "Macro",
  52395. height: math.unit(250, "feet"),
  52396. form: "anthro",
  52397. default: true
  52398. },
  52399. {
  52400. name: "Regular",
  52401. height: math.unit(4, "feet"),
  52402. form: "feral"
  52403. },
  52404. {
  52405. name: "Macro",
  52406. height: math.unit(125, "feet"),
  52407. form: "feral",
  52408. default: true
  52409. },
  52410. ],
  52411. {
  52412. "anthro": {
  52413. name: "Anthro",
  52414. default: true
  52415. },
  52416. "feral": {
  52417. name: "Feral",
  52418. },
  52419. }
  52420. ))
  52421. characterMakers.push(() => makeCharacter(
  52422. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52423. {
  52424. front: {
  52425. height: math.unit(11 + 10/12, "feet"),
  52426. weight: math.unit(1587, "kg"),
  52427. name: "Front",
  52428. image: {
  52429. source: "./media/characters/maple-javira-dragon/front.svg",
  52430. extra: 1136/744,
  52431. bottom: 73/1209
  52432. }
  52433. },
  52434. side: {
  52435. height: math.unit(11 + 10/12, "feet"),
  52436. weight: math.unit(1587, "kg"),
  52437. name: "Side",
  52438. image: {
  52439. source: "./media/characters/maple-javira-dragon/side.svg",
  52440. extra: 712/505,
  52441. bottom: 17/729
  52442. }
  52443. },
  52444. head: {
  52445. height: math.unit(8.05, "feet"),
  52446. name: "Head",
  52447. image: {
  52448. source: "./media/characters/maple-javira-dragon/head.svg",
  52449. extra: 1420/1344,
  52450. bottom: 0/1420
  52451. }
  52452. },
  52453. },
  52454. [
  52455. {
  52456. name: "Normal",
  52457. height: math.unit(11 + 10/12, "feet"),
  52458. default: true
  52459. },
  52460. ]
  52461. ))
  52462. characterMakers.push(() => makeCharacter(
  52463. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52464. {
  52465. front: {
  52466. height: math.unit(117, "cm"),
  52467. weight: math.unit(50, "kg"),
  52468. name: "Front",
  52469. image: {
  52470. source: "./media/characters/sonia-wyverntail/front.svg",
  52471. extra: 708/592,
  52472. bottom: 25/733
  52473. }
  52474. },
  52475. },
  52476. [
  52477. {
  52478. name: "Normal",
  52479. height: math.unit(117, "cm"),
  52480. default: true
  52481. },
  52482. ]
  52483. ))
  52484. characterMakers.push(() => makeCharacter(
  52485. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52486. {
  52487. front: {
  52488. height: math.unit(6 + 5/12, "feet"),
  52489. name: "Front",
  52490. image: {
  52491. source: "./media/characters/micah/front.svg",
  52492. extra: 1758/1546,
  52493. bottom: 214/1972
  52494. }
  52495. },
  52496. },
  52497. [
  52498. {
  52499. name: "Normal",
  52500. height: math.unit(6 + 5/12, "feet"),
  52501. default: true
  52502. },
  52503. ]
  52504. ))
  52505. characterMakers.push(() => makeCharacter(
  52506. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52507. {
  52508. front: {
  52509. height: math.unit(1.75, "meters"),
  52510. weight: math.unit(100, "kg"),
  52511. name: "Front",
  52512. image: {
  52513. source: "./media/characters/zarya/front.svg",
  52514. extra: 741/735,
  52515. bottom: 44/785
  52516. },
  52517. extraAttributes: {
  52518. "tailLength": {
  52519. name: "Tail Length",
  52520. power: 1,
  52521. type: "length",
  52522. base: math.unit(180, "cm")
  52523. },
  52524. "pawLength": {
  52525. name: "Paw Length",
  52526. power: 1,
  52527. type: "length",
  52528. base: math.unit(31, "cm")
  52529. },
  52530. }
  52531. },
  52532. side: {
  52533. height: math.unit(1.75, "meters"),
  52534. weight: math.unit(100, "kg"),
  52535. name: "Side",
  52536. image: {
  52537. source: "./media/characters/zarya/side.svg",
  52538. extra: 776/770,
  52539. bottom: 17/793
  52540. },
  52541. extraAttributes: {
  52542. "tailLength": {
  52543. name: "Tail Length",
  52544. power: 1,
  52545. type: "length",
  52546. base: math.unit(180, "cm")
  52547. },
  52548. "pawLength": {
  52549. name: "Paw Length",
  52550. power: 1,
  52551. type: "length",
  52552. base: math.unit(31, "cm")
  52553. },
  52554. }
  52555. },
  52556. back: {
  52557. height: math.unit(1.75, "meters"),
  52558. weight: math.unit(100, "kg"),
  52559. name: "Back",
  52560. image: {
  52561. source: "./media/characters/zarya/back.svg",
  52562. extra: 741/735,
  52563. bottom: 44/785
  52564. },
  52565. extraAttributes: {
  52566. "tailLength": {
  52567. name: "Tail Length",
  52568. power: 1,
  52569. type: "length",
  52570. base: math.unit(180, "cm")
  52571. },
  52572. "pawLength": {
  52573. name: "Paw Length",
  52574. power: 1,
  52575. type: "length",
  52576. base: math.unit(31, "cm")
  52577. },
  52578. }
  52579. },
  52580. frontNoTail: {
  52581. height: math.unit(1.75, "meters"),
  52582. weight: math.unit(100, "kg"),
  52583. name: "Front (No Tail)",
  52584. image: {
  52585. source: "./media/characters/zarya/front-no-tail.svg",
  52586. extra: 741/735,
  52587. bottom: 44/785
  52588. },
  52589. extraAttributes: {
  52590. "tailLength": {
  52591. name: "Tail Length",
  52592. power: 1,
  52593. type: "length",
  52594. base: math.unit(180, "cm")
  52595. },
  52596. "pawLength": {
  52597. name: "Paw Length",
  52598. power: 1,
  52599. type: "length",
  52600. base: math.unit(31, "cm")
  52601. },
  52602. }
  52603. },
  52604. dressed: {
  52605. height: math.unit(1.75, "meters"),
  52606. weight: math.unit(100, "kg"),
  52607. name: "Dressed",
  52608. image: {
  52609. source: "./media/characters/zarya/dressed.svg",
  52610. extra: 683/672,
  52611. bottom: 79/762
  52612. },
  52613. extraAttributes: {
  52614. "tailLength": {
  52615. name: "Tail Length",
  52616. power: 1,
  52617. type: "length",
  52618. base: math.unit(180, "cm")
  52619. },
  52620. "pawLength": {
  52621. name: "Paw Length",
  52622. power: 1,
  52623. type: "length",
  52624. base: math.unit(31, "cm")
  52625. },
  52626. }
  52627. },
  52628. },
  52629. [
  52630. {
  52631. name: "Micro",
  52632. height: math.unit(5, "cm")
  52633. },
  52634. {
  52635. name: "Normal",
  52636. height: math.unit(1.75, "meters"),
  52637. default: true
  52638. },
  52639. {
  52640. name: "Macro",
  52641. height: math.unit(122, "meters")
  52642. },
  52643. ]
  52644. ))
  52645. characterMakers.push(() => makeCharacter(
  52646. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52647. {
  52648. front: {
  52649. height: math.unit(7.5, "feet"),
  52650. name: "Front",
  52651. image: {
  52652. source: "./media/characters/sven-hatisson/front.svg",
  52653. extra: 917/857,
  52654. bottom: 42/959
  52655. }
  52656. },
  52657. back: {
  52658. height: math.unit(7.5, "feet"),
  52659. name: "Back",
  52660. image: {
  52661. source: "./media/characters/sven-hatisson/back.svg",
  52662. extra: 903/856,
  52663. bottom: 15/918
  52664. }
  52665. },
  52666. },
  52667. [
  52668. {
  52669. name: "Base Height",
  52670. height: math.unit(7.5, "feet")
  52671. },
  52672. {
  52673. name: "Usual Height",
  52674. height: math.unit(13.5, "feet"),
  52675. default: true
  52676. },
  52677. {
  52678. name: "Smaller Macro",
  52679. height: math.unit(85, "feet")
  52680. },
  52681. {
  52682. name: "Moderate Macro",
  52683. height: math.unit(320, "feet")
  52684. },
  52685. {
  52686. name: "Large Macro",
  52687. height: math.unit(1000, "feet")
  52688. },
  52689. {
  52690. name: "Largest Size",
  52691. height: math.unit(2, "miles")
  52692. },
  52693. ]
  52694. ))
  52695. characterMakers.push(() => makeCharacter(
  52696. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52697. {
  52698. side: {
  52699. height: math.unit(1.8, "meters"),
  52700. weight: math.unit(275, "kg"),
  52701. name: "Side",
  52702. image: {
  52703. source: "./media/characters/terra/side.svg",
  52704. extra: 1273/1147,
  52705. bottom: 0/1273
  52706. }
  52707. },
  52708. },
  52709. [
  52710. {
  52711. name: "Normal",
  52712. height: math.unit(16.2, "meters"),
  52713. default: true
  52714. },
  52715. ]
  52716. ))
  52717. characterMakers.push(() => makeCharacter(
  52718. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52719. {
  52720. borzoiFront: {
  52721. height: math.unit(6 + 9/12, "feet"),
  52722. name: "Front",
  52723. image: {
  52724. source: "./media/characters/rae/borzoi-front.svg",
  52725. extra: 1161/1098,
  52726. bottom: 31/1192
  52727. },
  52728. form: "borzoi",
  52729. default: true
  52730. },
  52731. werewolfFront: {
  52732. height: math.unit(8 + 7/12, "feet"),
  52733. name: "Front",
  52734. image: {
  52735. source: "./media/characters/rae/werewolf-front.svg",
  52736. extra: 1411/1334,
  52737. bottom: 127/1538
  52738. },
  52739. form: "werewolf",
  52740. default: true
  52741. },
  52742. },
  52743. [
  52744. {
  52745. name: "Normal",
  52746. height: math.unit(6 + 9/12, "feet"),
  52747. default: true,
  52748. form: "borzoi"
  52749. },
  52750. {
  52751. name: "Normal",
  52752. height: math.unit(8 + 7/12, "feet"),
  52753. default: true,
  52754. form: "werewolf"
  52755. },
  52756. ],
  52757. {
  52758. "borzoi": {
  52759. name: "Borzoi",
  52760. default: true
  52761. },
  52762. "werewolf": {
  52763. name: "Werewolf",
  52764. },
  52765. }
  52766. ))
  52767. characterMakers.push(() => makeCharacter(
  52768. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52769. {
  52770. front: {
  52771. height: math.unit(8 + 7/12, "feet"),
  52772. weight: math.unit(482, "lb"),
  52773. name: "Front",
  52774. image: {
  52775. source: "./media/characters/kit/front.svg",
  52776. extra: 1247/1103,
  52777. bottom: 41/1288
  52778. }
  52779. },
  52780. back: {
  52781. height: math.unit(8 + 7/12, "feet"),
  52782. weight: math.unit(482, "lb"),
  52783. name: "Back",
  52784. image: {
  52785. source: "./media/characters/kit/back.svg",
  52786. extra: 1252/1123,
  52787. bottom: 21/1273
  52788. }
  52789. },
  52790. paw: {
  52791. height: math.unit(1.46, "feet"),
  52792. name: "Paw",
  52793. image: {
  52794. source: "./media/characters/kit/paw.svg"
  52795. }
  52796. },
  52797. },
  52798. [
  52799. {
  52800. name: "Normal",
  52801. height: math.unit(2.61, "meters"),
  52802. default: true
  52803. },
  52804. {
  52805. name: "\"Tall\"",
  52806. height: math.unit(8.21, "meters")
  52807. },
  52808. {
  52809. name: "Tall",
  52810. height: math.unit(19.6, "meters")
  52811. },
  52812. {
  52813. name: "Very Tall",
  52814. height: math.unit(57.91, "meters")
  52815. },
  52816. {
  52817. name: "Semi-Macro",
  52818. height: math.unit(138.64, "meters")
  52819. },
  52820. {
  52821. name: "Macro",
  52822. height: math.unit(831.99, "meters")
  52823. },
  52824. {
  52825. name: "EX-Macro",
  52826. height: math.unit(96451121, "meters")
  52827. },
  52828. {
  52829. name: "S1-Omnipotent",
  52830. height: math.unit(4.42074e+9, "meters")
  52831. },
  52832. {
  52833. name: "S2-Omnipotent",
  52834. height: math.unit(9.42074e+17, "meters")
  52835. },
  52836. {
  52837. name: "Omnipotent",
  52838. height: math.unit(4.23112e+24, "meters")
  52839. },
  52840. {
  52841. name: "Hypergod",
  52842. height: math.unit(5.05176e+27, "meters")
  52843. },
  52844. {
  52845. name: "Hypergod-EX",
  52846. height: math.unit(9.45532e+49, "meters")
  52847. },
  52848. {
  52849. name: "Hypergod-SP",
  52850. height: math.unit(9.45532e+195, "meters")
  52851. },
  52852. ]
  52853. ))
  52854. characterMakers.push(() => makeCharacter(
  52855. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52856. {
  52857. side: {
  52858. height: math.unit(0.6, "meters"),
  52859. weight: math.unit(24, "kg"),
  52860. name: "Side",
  52861. image: {
  52862. source: "./media/characters/celeste/side.svg",
  52863. extra: 810/517,
  52864. bottom: 53/863
  52865. }
  52866. },
  52867. },
  52868. [
  52869. {
  52870. name: "Velociraptor",
  52871. height: math.unit(0.6, "meters"),
  52872. default: true
  52873. },
  52874. {
  52875. name: "Utahraptor",
  52876. height: math.unit(1.8, "meters")
  52877. },
  52878. {
  52879. name: "Gallimimus",
  52880. height: math.unit(4.0, "meters")
  52881. },
  52882. {
  52883. name: "Large",
  52884. height: math.unit(20, "meters")
  52885. },
  52886. {
  52887. name: "Planetary",
  52888. height: math.unit(50, "megameters")
  52889. },
  52890. {
  52891. name: "Stellar",
  52892. height: math.unit(1.5, "gigameters")
  52893. },
  52894. {
  52895. name: "Galactic",
  52896. height: math.unit(100, "exameters")
  52897. },
  52898. ]
  52899. ))
  52900. characterMakers.push(() => makeCharacter(
  52901. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52902. {
  52903. front: {
  52904. height: math.unit(6, "feet"),
  52905. weight: math.unit(210, "lb"),
  52906. name: "Front",
  52907. image: {
  52908. source: "./media/characters/glacia/front.svg",
  52909. extra: 958/901,
  52910. bottom: 45/1003
  52911. }
  52912. },
  52913. },
  52914. [
  52915. {
  52916. name: "Macro",
  52917. height: math.unit(1000, "meters"),
  52918. default: true
  52919. },
  52920. ]
  52921. ))
  52922. characterMakers.push(() => makeCharacter(
  52923. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52924. {
  52925. front: {
  52926. height: math.unit(4, "meters"),
  52927. name: "Front",
  52928. image: {
  52929. source: "./media/characters/giri/front.svg",
  52930. extra: 966/894,
  52931. bottom: 21/987
  52932. }
  52933. },
  52934. },
  52935. [
  52936. {
  52937. name: "Normal",
  52938. height: math.unit(4, "meters"),
  52939. default: true
  52940. },
  52941. ]
  52942. ))
  52943. characterMakers.push(() => makeCharacter(
  52944. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52945. {
  52946. back: {
  52947. height: math.unit(4, "feet"),
  52948. weight: math.unit(37, "lb"),
  52949. name: "Back",
  52950. image: {
  52951. source: "./media/characters/tin/back.svg",
  52952. extra: 845/780,
  52953. bottom: 28/873
  52954. }
  52955. },
  52956. },
  52957. [
  52958. {
  52959. name: "Normal",
  52960. height: math.unit(4, "feet"),
  52961. default: true
  52962. },
  52963. ]
  52964. ))
  52965. characterMakers.push(() => makeCharacter(
  52966. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52967. {
  52968. front: {
  52969. height: math.unit(25, "feet"),
  52970. name: "Front",
  52971. image: {
  52972. source: "./media/characters/cadenza-vivace/front.svg",
  52973. extra: 1842/1578,
  52974. bottom: 30/1872
  52975. }
  52976. },
  52977. },
  52978. [
  52979. {
  52980. name: "Macro",
  52981. height: math.unit(25, "feet"),
  52982. default: true
  52983. },
  52984. ]
  52985. ))
  52986. characterMakers.push(() => makeCharacter(
  52987. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52988. {
  52989. front: {
  52990. height: math.unit(10, "feet"),
  52991. weight: math.unit(625, "kg"),
  52992. name: "Front",
  52993. image: {
  52994. source: "./media/characters/zain/front.svg",
  52995. extra: 1682/1498,
  52996. bottom: 223/1905
  52997. }
  52998. },
  52999. back: {
  53000. height: math.unit(10, "feet"),
  53001. weight: math.unit(625, "kg"),
  53002. name: "Back",
  53003. image: {
  53004. source: "./media/characters/zain/back.svg",
  53005. extra: 1814/1657,
  53006. bottom: 152/1966
  53007. }
  53008. },
  53009. head: {
  53010. height: math.unit(10, "feet"),
  53011. weight: math.unit(625, "kg"),
  53012. name: "Head",
  53013. image: {
  53014. source: "./media/characters/zain/head.svg",
  53015. extra: 1059/762,
  53016. bottom: 0/1059
  53017. }
  53018. },
  53019. },
  53020. [
  53021. {
  53022. name: "Normal",
  53023. height: math.unit(10, "feet"),
  53024. default: true
  53025. },
  53026. ]
  53027. ))
  53028. characterMakers.push(() => makeCharacter(
  53029. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53030. {
  53031. front: {
  53032. height: math.unit(6 + 5/12, "feet"),
  53033. weight: math.unit(750, "lb"),
  53034. name: "Front",
  53035. image: {
  53036. source: "./media/characters/ruchex/front.svg",
  53037. extra: 877/820,
  53038. bottom: 17/894
  53039. },
  53040. extraAttributes: {
  53041. "width": {
  53042. name: "Width",
  53043. power: 1,
  53044. type: "length",
  53045. base: math.unit(4.757, "feet")
  53046. },
  53047. }
  53048. },
  53049. },
  53050. [
  53051. {
  53052. name: "Normal",
  53053. height: math.unit(6 + 5/12, "feet"),
  53054. default: true
  53055. },
  53056. ]
  53057. ))
  53058. characterMakers.push(() => makeCharacter(
  53059. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53060. {
  53061. dressedFront: {
  53062. height: math.unit(191, "cm"),
  53063. weight: math.unit(80, "kg"),
  53064. name: "Front",
  53065. image: {
  53066. source: "./media/characters/buster/dressed-front.svg",
  53067. extra: 1022/973,
  53068. bottom: 69/1091
  53069. }
  53070. },
  53071. dressedBack: {
  53072. height: math.unit(191, "cm"),
  53073. weight: math.unit(80, "kg"),
  53074. name: "Back",
  53075. image: {
  53076. source: "./media/characters/buster/dressed-back.svg",
  53077. extra: 1018/970,
  53078. bottom: 55/1073
  53079. }
  53080. },
  53081. nudeFront: {
  53082. height: math.unit(191, "cm"),
  53083. weight: math.unit(80, "kg"),
  53084. name: "Front (Nude)",
  53085. image: {
  53086. source: "./media/characters/buster/nude-front.svg",
  53087. extra: 1022/973,
  53088. bottom: 69/1091
  53089. }
  53090. },
  53091. nudeBack: {
  53092. height: math.unit(191, "cm"),
  53093. weight: math.unit(80, "kg"),
  53094. name: "Back (Nude)",
  53095. image: {
  53096. source: "./media/characters/buster/nude-back.svg",
  53097. extra: 1018/970,
  53098. bottom: 55/1073
  53099. }
  53100. },
  53101. dick: {
  53102. height: math.unit(2.59, "feet"),
  53103. name: "Dick",
  53104. image: {
  53105. source: "./media/characters/buster/dick.svg"
  53106. }
  53107. },
  53108. ass: {
  53109. height: math.unit(1.2, "feet"),
  53110. name: "Ass",
  53111. image: {
  53112. source: "./media/characters/buster/ass.svg"
  53113. }
  53114. },
  53115. },
  53116. [
  53117. {
  53118. name: "Normal",
  53119. height: math.unit(191, "cm"),
  53120. default: true
  53121. },
  53122. ]
  53123. ))
  53124. characterMakers.push(() => makeCharacter(
  53125. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53126. {
  53127. side: {
  53128. height: math.unit(8.1, "feet"),
  53129. weight: math.unit(3500, "lb"),
  53130. name: "Side",
  53131. image: {
  53132. source: "./media/characters/sonya/side.svg",
  53133. extra: 1730/1317,
  53134. bottom: 86/1816
  53135. }
  53136. },
  53137. },
  53138. [
  53139. {
  53140. name: "Normal",
  53141. height: math.unit(8.1, "feet"),
  53142. default: true
  53143. },
  53144. ]
  53145. ))
  53146. characterMakers.push(() => makeCharacter(
  53147. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53148. {
  53149. front: {
  53150. height: math.unit(6, "feet"),
  53151. weight: math.unit(150, "lb"),
  53152. name: "Front",
  53153. image: {
  53154. source: "./media/characters/cadence-andrysiak/front.svg",
  53155. extra: 1164/1121,
  53156. bottom: 60/1224
  53157. }
  53158. },
  53159. back: {
  53160. height: math.unit(6, "feet"),
  53161. weight: math.unit(150, "lb"),
  53162. name: "Back",
  53163. image: {
  53164. source: "./media/characters/cadence-andrysiak/back.svg",
  53165. extra: 1200/1165,
  53166. bottom: 9/1209
  53167. }
  53168. },
  53169. dressed: {
  53170. height: math.unit(6, "feet"),
  53171. weight: math.unit(150, "lb"),
  53172. name: "Dressed",
  53173. image: {
  53174. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53175. extra: 1164/1121,
  53176. bottom: 60/1224
  53177. }
  53178. },
  53179. },
  53180. [
  53181. {
  53182. name: "Micro",
  53183. height: math.unit(1, "mm")
  53184. },
  53185. {
  53186. name: "Normal",
  53187. height: math.unit(6, "feet"),
  53188. default: true
  53189. },
  53190. ]
  53191. ))
  53192. characterMakers.push(() => makeCharacter(
  53193. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53194. {
  53195. front: {
  53196. height: math.unit(60, "inches"),
  53197. weight: math.unit(16, "lb"),
  53198. preyCapacity: math.unit(80, "liters"),
  53199. name: "Front",
  53200. image: {
  53201. source: "./media/characters/penny-lynx/front.svg",
  53202. extra: 1959/1769,
  53203. bottom: 49/2008
  53204. }
  53205. },
  53206. },
  53207. [
  53208. {
  53209. name: "Nokia",
  53210. height: math.unit(2, "inches")
  53211. },
  53212. {
  53213. name: "Desktop",
  53214. height: math.unit(24, "inches")
  53215. },
  53216. {
  53217. name: "TV",
  53218. height: math.unit(60, "inches")
  53219. },
  53220. {
  53221. name: "Jumbotron",
  53222. height: math.unit(12, "feet")
  53223. },
  53224. {
  53225. name: "Billboard",
  53226. height: math.unit(48, "feet"),
  53227. default: true
  53228. },
  53229. {
  53230. name: "IMAX",
  53231. height: math.unit(96, "feet")
  53232. },
  53233. {
  53234. name: "SINGULARITY",
  53235. height: math.unit(864938, "miles")
  53236. },
  53237. ]
  53238. ))
  53239. characterMakers.push(() => makeCharacter(
  53240. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53241. {
  53242. front: {
  53243. height: math.unit(5 + 4/12, "feet"),
  53244. weight: math.unit(230, "lb"),
  53245. name: "Front",
  53246. image: {
  53247. source: "./media/characters/sukebe/front.svg",
  53248. extra: 2130/2038,
  53249. bottom: 90/2220
  53250. }
  53251. },
  53252. back: {
  53253. height: math.unit(3.48, "feet"),
  53254. weight: math.unit(230, "lb"),
  53255. name: "Back",
  53256. image: {
  53257. source: "./media/characters/sukebe/back.svg",
  53258. extra: 1670/1604,
  53259. bottom: 0/1670
  53260. }
  53261. },
  53262. },
  53263. [
  53264. {
  53265. name: "Normal",
  53266. height: math.unit(5 + 4/12, "feet"),
  53267. default: true
  53268. },
  53269. ]
  53270. ))
  53271. characterMakers.push(() => makeCharacter(
  53272. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53273. {
  53274. front: {
  53275. height: math.unit(6, "feet"),
  53276. name: "Front",
  53277. image: {
  53278. source: "./media/characters/nylla/front.svg",
  53279. extra: 1868/1699,
  53280. bottom: 97/1965
  53281. }
  53282. },
  53283. back: {
  53284. height: math.unit(6, "feet"),
  53285. name: "Back",
  53286. image: {
  53287. source: "./media/characters/nylla/back.svg",
  53288. extra: 1889/1712,
  53289. bottom: 93/1982
  53290. }
  53291. },
  53292. frontNsfw: {
  53293. height: math.unit(6, "feet"),
  53294. name: "Front (NSFW)",
  53295. image: {
  53296. source: "./media/characters/nylla/front-nsfw.svg",
  53297. extra: 1868/1699,
  53298. bottom: 97/1965
  53299. },
  53300. extraAttributes: {
  53301. "dickLength": {
  53302. name: "Dick Length",
  53303. power: 1,
  53304. type: "length",
  53305. base: math.unit(1.4, "feet")
  53306. },
  53307. "cumVolume": {
  53308. name: "Cum Volume",
  53309. power: 3,
  53310. type: "volume",
  53311. base: math.unit(100, "mL")
  53312. },
  53313. }
  53314. },
  53315. backNsfw: {
  53316. height: math.unit(6, "feet"),
  53317. name: "Back (NSFW)",
  53318. image: {
  53319. source: "./media/characters/nylla/back-nsfw.svg",
  53320. extra: 1889/1712,
  53321. bottom: 93/1982
  53322. }
  53323. },
  53324. maw: {
  53325. height: math.unit(2.10, "feet"),
  53326. name: "Maw",
  53327. image: {
  53328. source: "./media/characters/nylla/maw.svg"
  53329. }
  53330. },
  53331. paws: {
  53332. height: math.unit(2.06, "feet"),
  53333. name: "Paws",
  53334. image: {
  53335. source: "./media/characters/nylla/paws.svg"
  53336. }
  53337. },
  53338. muzzle: {
  53339. height: math.unit(0.61, "feet"),
  53340. name: "Muzzle",
  53341. image: {
  53342. source: "./media/characters/nylla/muzzle.svg"
  53343. }
  53344. },
  53345. sheath: {
  53346. height: math.unit(1.305, "feet"),
  53347. name: "Sheath",
  53348. image: {
  53349. source: "./media/characters/nylla/sheath.svg"
  53350. }
  53351. },
  53352. },
  53353. [
  53354. {
  53355. name: "Micro",
  53356. height: math.unit(7.5, "inches")
  53357. },
  53358. {
  53359. name: "Normal",
  53360. height: math.unit(7, "feet"),
  53361. default: true
  53362. },
  53363. {
  53364. name: "Macro",
  53365. height: math.unit(60, "feet")
  53366. },
  53367. {
  53368. name: "Mega",
  53369. height: math.unit(200, "feet")
  53370. },
  53371. ]
  53372. ))
  53373. characterMakers.push(() => makeCharacter(
  53374. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53375. {
  53376. front: {
  53377. height: math.unit(10, "feet"),
  53378. weight: math.unit(2300, "lb"),
  53379. name: "Front",
  53380. image: {
  53381. source: "./media/characters/hunt3r/front.svg",
  53382. extra: 1909/1742,
  53383. bottom: 46/1955
  53384. }
  53385. },
  53386. },
  53387. [
  53388. {
  53389. name: "Normal",
  53390. height: math.unit(10, "feet"),
  53391. default: true
  53392. },
  53393. ]
  53394. ))
  53395. characterMakers.push(() => makeCharacter(
  53396. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53397. {
  53398. dressed: {
  53399. height: math.unit(11, "feet"),
  53400. weight: math.unit(18500, "lb"),
  53401. preyCapacity: math.unit(9, "people"),
  53402. name: "Dressed",
  53403. image: {
  53404. source: "./media/characters/cylphis/dressed.svg",
  53405. extra: 1028/1003,
  53406. bottom: 75/1103
  53407. },
  53408. },
  53409. undressed: {
  53410. height: math.unit(11, "feet"),
  53411. weight: math.unit(18500, "lb"),
  53412. preyCapacity: math.unit(9, "people"),
  53413. name: "Undressed",
  53414. image: {
  53415. source: "./media/characters/cylphis/undressed.svg",
  53416. extra: 1028/1003,
  53417. bottom: 75/1103
  53418. }
  53419. },
  53420. full: {
  53421. height: math.unit(11, "feet"),
  53422. weight: math.unit(18500 + 150*9, "lb"),
  53423. preyCapacity: math.unit(9, "people"),
  53424. name: "Full",
  53425. image: {
  53426. source: "./media/characters/cylphis/full.svg",
  53427. extra: 1028/1003,
  53428. bottom: 75/1103
  53429. }
  53430. },
  53431. },
  53432. [
  53433. {
  53434. name: "Small",
  53435. height: math.unit(8, "feet")
  53436. },
  53437. {
  53438. name: "Normal",
  53439. height: math.unit(11, "feet"),
  53440. default: true
  53441. },
  53442. ]
  53443. ))
  53444. characterMakers.push(() => makeCharacter(
  53445. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53446. {
  53447. front: {
  53448. height: math.unit(2 + 7/12, "feet"),
  53449. name: "Front",
  53450. image: {
  53451. source: "./media/characters/orishan/front.svg",
  53452. extra: 1058/1023,
  53453. bottom: 23/1081
  53454. }
  53455. },
  53456. back: {
  53457. height: math.unit(2 + 7/12, "feet"),
  53458. name: "Back",
  53459. image: {
  53460. source: "./media/characters/orishan/back.svg",
  53461. extra: 1058/1023,
  53462. bottom: 23/1081
  53463. }
  53464. },
  53465. },
  53466. [
  53467. {
  53468. name: "Micro",
  53469. height: math.unit(2, "cm")
  53470. },
  53471. {
  53472. name: "Normal",
  53473. height: math.unit(2 + 7/12, "feet"),
  53474. default: true
  53475. },
  53476. ]
  53477. ))
  53478. characterMakers.push(() => makeCharacter(
  53479. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53480. {
  53481. front: {
  53482. height: math.unit(3, "meters"),
  53483. weight: math.unit(508, "kg"),
  53484. name: "Front",
  53485. image: {
  53486. source: "./media/characters/seranis/front.svg",
  53487. extra: 1478/1454,
  53488. bottom: 41/1519
  53489. }
  53490. },
  53491. },
  53492. [
  53493. {
  53494. name: "Normal",
  53495. height: math.unit(3, "meters"),
  53496. default: true
  53497. },
  53498. {
  53499. name: "Macro",
  53500. height: math.unit(108, "meters")
  53501. },
  53502. {
  53503. name: "Megamacro",
  53504. height: math.unit(1250, "meters")
  53505. },
  53506. ]
  53507. ))
  53508. characterMakers.push(() => makeCharacter(
  53509. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53510. {
  53511. undressed: {
  53512. height: math.unit(5 + 3/12, "feet"),
  53513. name: "Undressed",
  53514. image: {
  53515. source: "./media/characters/ankou/undressed.svg",
  53516. extra: 1301/1213,
  53517. bottom: 87/1388
  53518. }
  53519. },
  53520. dressed: {
  53521. height: math.unit(5 + 3/12, "feet"),
  53522. name: "Dressed",
  53523. image: {
  53524. source: "./media/characters/ankou/dressed.svg",
  53525. extra: 1301/1213,
  53526. bottom: 87/1388
  53527. }
  53528. },
  53529. head: {
  53530. height: math.unit(1.61, "feet"),
  53531. name: "Head",
  53532. image: {
  53533. source: "./media/characters/ankou/head.svg"
  53534. }
  53535. },
  53536. },
  53537. [
  53538. {
  53539. name: "Normal",
  53540. height: math.unit(5 + 3/12, "feet"),
  53541. default: true
  53542. },
  53543. ]
  53544. ))
  53545. characterMakers.push(() => makeCharacter(
  53546. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53547. {
  53548. side: {
  53549. height: math.unit(6 + 3/12, "feet"),
  53550. weight: math.unit(200, "kg"),
  53551. name: "Side",
  53552. image: {
  53553. source: "./media/characters/juniper-skunktaur/side.svg",
  53554. extra: 1574/1229,
  53555. bottom: 38/1612
  53556. }
  53557. },
  53558. front: {
  53559. height: math.unit(6 + 3/12, "feet"),
  53560. weight: math.unit(200, "kg"),
  53561. name: "Front",
  53562. image: {
  53563. source: "./media/characters/juniper-skunktaur/front.svg",
  53564. extra: 1337/1278,
  53565. bottom: 22/1359
  53566. }
  53567. },
  53568. back: {
  53569. height: math.unit(6 + 3/12, "feet"),
  53570. weight: math.unit(200, "kg"),
  53571. name: "Back",
  53572. image: {
  53573. source: "./media/characters/juniper-skunktaur/back.svg",
  53574. extra: 1618/1273,
  53575. bottom: 13/1631
  53576. }
  53577. },
  53578. top: {
  53579. height: math.unit(2.62, "feet"),
  53580. weight: math.unit(200, "kg"),
  53581. name: "Top",
  53582. image: {
  53583. source: "./media/characters/juniper-skunktaur/top.svg"
  53584. }
  53585. },
  53586. },
  53587. [
  53588. {
  53589. name: "Normal",
  53590. height: math.unit(6 + 3/12, "feet"),
  53591. default: true
  53592. },
  53593. ]
  53594. ))
  53595. characterMakers.push(() => makeCharacter(
  53596. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53597. {
  53598. front: {
  53599. height: math.unit(20.5, "feet"),
  53600. name: "Front",
  53601. image: {
  53602. source: "./media/characters/rei/front.svg",
  53603. extra: 1349/1195,
  53604. bottom: 31/1380
  53605. }
  53606. },
  53607. back: {
  53608. height: math.unit(20.5, "feet"),
  53609. name: "Back",
  53610. image: {
  53611. source: "./media/characters/rei/back.svg",
  53612. extra: 1358/1204,
  53613. bottom: 22/1380
  53614. }
  53615. },
  53616. pawsDigi: {
  53617. height: math.unit(3.45, "feet"),
  53618. name: "Paws (Digi)",
  53619. image: {
  53620. source: "./media/characters/rei/paws-digi.svg"
  53621. }
  53622. },
  53623. pawsPlanti: {
  53624. height: math.unit(3.45, "feet"),
  53625. name: "Paws (Planti)",
  53626. image: {
  53627. source: "./media/characters/rei/paws-planti.svg"
  53628. }
  53629. },
  53630. },
  53631. [
  53632. {
  53633. name: "Normal",
  53634. height: math.unit(20.5, "feet"),
  53635. default: true
  53636. },
  53637. ]
  53638. ))
  53639. characterMakers.push(() => makeCharacter(
  53640. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53641. {
  53642. front: {
  53643. height: math.unit(5 + 11/12, "feet"),
  53644. name: "Front",
  53645. image: {
  53646. source: "./media/characters/carina/front.svg",
  53647. extra: 1720/1449,
  53648. bottom: 14/1734
  53649. }
  53650. },
  53651. back: {
  53652. height: math.unit(5 + 11/12, "feet"),
  53653. name: "Back",
  53654. image: {
  53655. source: "./media/characters/carina/back.svg",
  53656. extra: 1493/1445,
  53657. bottom: 17/1510
  53658. }
  53659. },
  53660. paw: {
  53661. height: math.unit(0.92, "feet"),
  53662. name: "Paw",
  53663. image: {
  53664. source: "./media/characters/carina/paw.svg"
  53665. }
  53666. },
  53667. },
  53668. [
  53669. {
  53670. name: "Normal",
  53671. height: math.unit(5 + 11/12, "feet"),
  53672. default: true
  53673. },
  53674. ]
  53675. ))
  53676. characterMakers.push(() => makeCharacter(
  53677. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53678. {
  53679. normal_front: {
  53680. height: math.unit(4.88, "meters"),
  53681. name: "Front",
  53682. image: {
  53683. source: "./media/characters/maya/normal-front.svg",
  53684. extra: 1222/1145,
  53685. bottom: 57/1279
  53686. },
  53687. form: "normal",
  53688. default: true
  53689. },
  53690. monstrous_front: {
  53691. height: math.unit(10, "meters"),
  53692. name: "Front",
  53693. image: {
  53694. source: "./media/characters/maya/monstrous-front.svg",
  53695. extra: 1523/1109,
  53696. bottom: 113/1636
  53697. },
  53698. form: "monstrous",
  53699. extraAttributes: {
  53700. "swallowSize": {
  53701. name: "Tailmaw Bite Size",
  53702. power: 3,
  53703. type: "volume",
  53704. base: math.unit(43000, "liters")
  53705. },
  53706. }
  53707. },
  53708. taur_front: {
  53709. height: math.unit(10, "meters"),
  53710. name: "Front",
  53711. image: {
  53712. source: "./media/characters/maya/taur-front.svg",
  53713. extra: 743/506,
  53714. bottom: 101/844
  53715. },
  53716. form: "taur",
  53717. },
  53718. },
  53719. [
  53720. {
  53721. name: "Normal",
  53722. height: math.unit(4.88, "meters"),
  53723. default: true,
  53724. form: "normal"
  53725. },
  53726. {
  53727. name: "Macro",
  53728. height: math.unit(38.1, "meters"),
  53729. form: "normal"
  53730. },
  53731. {
  53732. name: "Macro+",
  53733. height: math.unit(152.4, "meters"),
  53734. form: "normal"
  53735. },
  53736. {
  53737. name: "Macro++",
  53738. height: math.unit(16.09, "km"),
  53739. form: "normal"
  53740. },
  53741. {
  53742. name: "Mega-macro",
  53743. height: math.unit(700, "megameters"),
  53744. form: "normal"
  53745. },
  53746. {
  53747. name: "Satiated",
  53748. height: math.unit(10, "meters"),
  53749. default: true,
  53750. form: "monstrous"
  53751. },
  53752. {
  53753. name: "Hungry",
  53754. height: math.unit(75, "meters"),
  53755. form: "monstrous"
  53756. },
  53757. {
  53758. name: "Ravenous",
  53759. height: math.unit(500, "meters"),
  53760. form: "monstrous"
  53761. },
  53762. {
  53763. name: "\"Normal\"",
  53764. height: math.unit(10, "meters"),
  53765. form: "taur"
  53766. },
  53767. {
  53768. name: "Macro",
  53769. height: math.unit(50, "meters"),
  53770. form: "taur"
  53771. },
  53772. ],
  53773. {
  53774. "normal": {
  53775. name: "Normal",
  53776. default: true
  53777. },
  53778. "monstrous": {
  53779. name: "Monstrous",
  53780. },
  53781. "taur": {
  53782. name: "Taur",
  53783. },
  53784. }
  53785. ))
  53786. characterMakers.push(() => makeCharacter(
  53787. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53788. {
  53789. front: {
  53790. height: math.unit(6 + 2/12, "feet"),
  53791. weight: math.unit(500, "lb"),
  53792. preyCapacity: math.unit(4, "people"),
  53793. name: "Front",
  53794. image: {
  53795. source: "./media/characters/yepir/front.svg"
  53796. }
  53797. },
  53798. side: {
  53799. height: math.unit(6 + 2/12, "feet"),
  53800. weight: math.unit(500, "lb"),
  53801. preyCapacity: math.unit(4, "people"),
  53802. name: "Side",
  53803. image: {
  53804. source: "./media/characters/yepir/side.svg"
  53805. }
  53806. },
  53807. paw: {
  53808. height: math.unit(1.05, "feet"),
  53809. name: "Paw",
  53810. image: {
  53811. source: "./media/characters/yepir/paw.svg"
  53812. }
  53813. },
  53814. },
  53815. [
  53816. {
  53817. name: "Normal",
  53818. height: math.unit(6 + 2/12, "feet"),
  53819. default: true
  53820. },
  53821. ]
  53822. ))
  53823. characterMakers.push(() => makeCharacter(
  53824. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53825. {
  53826. front: {
  53827. height: math.unit(5 + 4/12, "feet"),
  53828. name: "Front",
  53829. image: {
  53830. source: "./media/characters/russec/front.svg",
  53831. extra: 1926/1626,
  53832. bottom: 72/1998
  53833. }
  53834. },
  53835. back: {
  53836. height: math.unit(5 + 4/12, "feet"),
  53837. name: "Back",
  53838. image: {
  53839. source: "./media/characters/russec/back.svg",
  53840. extra: 1910/1591,
  53841. bottom: 48/1958
  53842. }
  53843. },
  53844. },
  53845. [
  53846. {
  53847. name: "Small",
  53848. height: math.unit(5 + 4/12, "feet")
  53849. },
  53850. {
  53851. name: "Normal",
  53852. height: math.unit(72, "feet"),
  53853. default: true
  53854. },
  53855. ]
  53856. ))
  53857. characterMakers.push(() => makeCharacter(
  53858. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53859. {
  53860. side: {
  53861. height: math.unit(12, "feet"),
  53862. name: "Side",
  53863. image: {
  53864. source: "./media/characters/cianus/side.svg",
  53865. extra: 808/526,
  53866. bottom: 61/869
  53867. }
  53868. },
  53869. },
  53870. [
  53871. {
  53872. name: "Normal",
  53873. height: math.unit(12, "feet"),
  53874. default: true
  53875. },
  53876. ]
  53877. ))
  53878. characterMakers.push(() => makeCharacter(
  53879. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53880. {
  53881. front: {
  53882. height: math.unit(9 + 6/12, "feet"),
  53883. weight: math.unit(300, "lb"),
  53884. name: "Front",
  53885. image: {
  53886. source: "./media/characters/ahab/front.svg",
  53887. extra: 1897/1868,
  53888. bottom: 121/2018
  53889. }
  53890. },
  53891. frontNsfw: {
  53892. height: math.unit(9 + 6/12, "feet"),
  53893. weight: math.unit(300, "lb"),
  53894. name: "Front-nsfw",
  53895. image: {
  53896. source: "./media/characters/ahab/front-nsfw.svg",
  53897. extra: 1897/1868,
  53898. bottom: 121/2018
  53899. }
  53900. },
  53901. },
  53902. [
  53903. {
  53904. name: "Normal",
  53905. height: math.unit(9 + 6/12, "feet")
  53906. },
  53907. {
  53908. name: "Macro",
  53909. height: math.unit(657, "feet"),
  53910. default: true
  53911. },
  53912. ]
  53913. ))
  53914. characterMakers.push(() => makeCharacter(
  53915. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53916. {
  53917. front: {
  53918. height: math.unit(2.69, "meters"),
  53919. weight: math.unit(132, "kg"),
  53920. name: "Front",
  53921. image: {
  53922. source: "./media/characters/aarkus/front.svg",
  53923. extra: 1400/1231,
  53924. bottom: 34/1434
  53925. }
  53926. },
  53927. back: {
  53928. height: math.unit(2.69, "meters"),
  53929. weight: math.unit(132, "kg"),
  53930. name: "Back",
  53931. image: {
  53932. source: "./media/characters/aarkus/back.svg",
  53933. extra: 1381/1218,
  53934. bottom: 30/1411
  53935. }
  53936. },
  53937. frontNsfw: {
  53938. height: math.unit(2.69, "meters"),
  53939. weight: math.unit(132, "kg"),
  53940. name: "Front (NSFW)",
  53941. image: {
  53942. source: "./media/characters/aarkus/front-nsfw.svg",
  53943. extra: 1400/1231,
  53944. bottom: 34/1434
  53945. }
  53946. },
  53947. foot: {
  53948. height: math.unit(1.45, "feet"),
  53949. name: "Foot",
  53950. image: {
  53951. source: "./media/characters/aarkus/foot.svg"
  53952. }
  53953. },
  53954. head: {
  53955. height: math.unit(2.85, "feet"),
  53956. name: "Head",
  53957. image: {
  53958. source: "./media/characters/aarkus/head.svg"
  53959. }
  53960. },
  53961. headAlt: {
  53962. height: math.unit(3.07, "feet"),
  53963. name: "Head (Alt)",
  53964. image: {
  53965. source: "./media/characters/aarkus/head-alt.svg"
  53966. }
  53967. },
  53968. mouth: {
  53969. height: math.unit(1.25, "feet"),
  53970. name: "Mouth",
  53971. image: {
  53972. source: "./media/characters/aarkus/mouth.svg"
  53973. }
  53974. },
  53975. dick: {
  53976. height: math.unit(1.77, "feet"),
  53977. name: "Dick",
  53978. image: {
  53979. source: "./media/characters/aarkus/dick.svg"
  53980. }
  53981. },
  53982. },
  53983. [
  53984. {
  53985. name: "Normal",
  53986. height: math.unit(2.69, "meters"),
  53987. default: true
  53988. },
  53989. {
  53990. name: "Macro",
  53991. height: math.unit(269, "meters")
  53992. },
  53993. {
  53994. name: "Macro+",
  53995. height: math.unit(672.5, "meters")
  53996. },
  53997. {
  53998. name: "Megamacro",
  53999. height: math.unit(2.017, "km")
  54000. },
  54001. ]
  54002. ))
  54003. characterMakers.push(() => makeCharacter(
  54004. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54005. {
  54006. front: {
  54007. height: math.unit(23.47, "cm"),
  54008. weight: math.unit(600, "grams"),
  54009. name: "Front",
  54010. image: {
  54011. source: "./media/characters/diode/front.svg",
  54012. extra: 1778/1396,
  54013. bottom: 95/1873
  54014. }
  54015. },
  54016. side: {
  54017. height: math.unit(23.47, "cm"),
  54018. weight: math.unit(600, "grams"),
  54019. name: "Side",
  54020. image: {
  54021. source: "./media/characters/diode/side.svg",
  54022. extra: 1831/1404,
  54023. bottom: 86/1917
  54024. }
  54025. },
  54026. wings: {
  54027. height: math.unit(0.683, "feet"),
  54028. name: "Wings",
  54029. image: {
  54030. source: "./media/characters/diode/wings.svg"
  54031. }
  54032. },
  54033. },
  54034. [
  54035. {
  54036. name: "Normal",
  54037. height: math.unit(23.47, "cm"),
  54038. default: true
  54039. },
  54040. ]
  54041. ))
  54042. characterMakers.push(() => makeCharacter(
  54043. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54044. {
  54045. front: {
  54046. height: math.unit(6 + 3/12, "feet"),
  54047. weight: math.unit(250, "lb"),
  54048. name: "Front",
  54049. image: {
  54050. source: "./media/characters/reika/front.svg",
  54051. extra: 1120/1078,
  54052. bottom: 86/1206
  54053. }
  54054. },
  54055. },
  54056. [
  54057. {
  54058. name: "Normal",
  54059. height: math.unit(6 + 3/12, "feet"),
  54060. default: true
  54061. },
  54062. ]
  54063. ))
  54064. characterMakers.push(() => makeCharacter(
  54065. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54066. {
  54067. front: {
  54068. height: math.unit(16 + 8/12, "feet"),
  54069. weight: math.unit(9000, "lb"),
  54070. name: "Front",
  54071. image: {
  54072. source: "./media/characters/lokuto-takama/front.svg",
  54073. extra: 1774/1632,
  54074. bottom: 147/1921
  54075. },
  54076. extraAttributes: {
  54077. "bustWidth": {
  54078. name: "Bust Width",
  54079. power: 1,
  54080. type: "length",
  54081. base: math.unit(2.4, "meters")
  54082. },
  54083. "breastWeight": {
  54084. name: "Breast Weight",
  54085. power: 3,
  54086. type: "mass",
  54087. base: math.unit(1000, "kg")
  54088. },
  54089. }
  54090. },
  54091. },
  54092. [
  54093. {
  54094. name: "Normal",
  54095. height: math.unit(16 + 8/12, "feet"),
  54096. default: true
  54097. },
  54098. ]
  54099. ))
  54100. characterMakers.push(() => makeCharacter(
  54101. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54102. {
  54103. front: {
  54104. height: math.unit(10, "cm"),
  54105. weight: math.unit(850, "grams"),
  54106. name: "Front",
  54107. image: {
  54108. source: "./media/characters/owak-bone/front.svg",
  54109. extra: 1965/1801,
  54110. bottom: 31/1996
  54111. }
  54112. },
  54113. },
  54114. [
  54115. {
  54116. name: "Normal",
  54117. height: math.unit(10, "cm"),
  54118. default: true
  54119. },
  54120. ]
  54121. ))
  54122. characterMakers.push(() => makeCharacter(
  54123. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54124. {
  54125. front: {
  54126. height: math.unit(2 + 6/12, "feet"),
  54127. weight: math.unit(9, "lb"),
  54128. name: "Front",
  54129. image: {
  54130. source: "./media/characters/muffin/front.svg",
  54131. extra: 1220/1195,
  54132. bottom: 84/1304
  54133. }
  54134. },
  54135. },
  54136. [
  54137. {
  54138. name: "Normal",
  54139. height: math.unit(2 + 6/12, "feet"),
  54140. default: true
  54141. },
  54142. ]
  54143. ))
  54144. characterMakers.push(() => makeCharacter(
  54145. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54146. {
  54147. front: {
  54148. height: math.unit(7, "feet"),
  54149. name: "Front",
  54150. image: {
  54151. source: "./media/characters/chimera/front.svg",
  54152. extra: 1752/1614,
  54153. bottom: 68/1820
  54154. }
  54155. },
  54156. },
  54157. [
  54158. {
  54159. name: "Normal",
  54160. height: math.unit(7, "feet")
  54161. },
  54162. {
  54163. name: "Gigamacro",
  54164. height: math.unit(2.9, "gigameters"),
  54165. default: true
  54166. },
  54167. {
  54168. name: "Universal",
  54169. height: math.unit(1.56e26, "yottameters")
  54170. },
  54171. ]
  54172. ))
  54173. characterMakers.push(() => makeCharacter(
  54174. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54175. {
  54176. front: {
  54177. height: math.unit(3, "feet"),
  54178. weight: math.unit(20, "lb"),
  54179. name: "Front",
  54180. image: {
  54181. source: "./media/characters/kit-fennec-fox/front.svg",
  54182. extra: 1027/932,
  54183. bottom: 16/1043
  54184. }
  54185. },
  54186. back: {
  54187. height: math.unit(3, "feet"),
  54188. weight: math.unit(20, "lb"),
  54189. name: "Back",
  54190. image: {
  54191. source: "./media/characters/kit-fennec-fox/back.svg",
  54192. extra: 1027/932,
  54193. bottom: 16/1043
  54194. }
  54195. },
  54196. },
  54197. [
  54198. {
  54199. name: "Normal",
  54200. height: math.unit(3, "feet"),
  54201. default: true
  54202. },
  54203. ]
  54204. ))
  54205. characterMakers.push(() => makeCharacter(
  54206. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54207. {
  54208. front: {
  54209. height: math.unit(167, "cm"),
  54210. name: "Front",
  54211. image: {
  54212. source: "./media/characters/blue-otter/front.svg",
  54213. extra: 1951/1920,
  54214. bottom: 31/1982
  54215. }
  54216. },
  54217. },
  54218. [
  54219. {
  54220. name: "Otter-Sized",
  54221. height: math.unit(100, "cm")
  54222. },
  54223. {
  54224. name: "Normal",
  54225. height: math.unit(167, "cm"),
  54226. default: true
  54227. },
  54228. ]
  54229. ))
  54230. characterMakers.push(() => makeCharacter(
  54231. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54232. {
  54233. front: {
  54234. height: math.unit(4 + 4/12, "feet"),
  54235. name: "Front",
  54236. image: {
  54237. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54238. extra: 1072/1067,
  54239. bottom: 117/1189
  54240. }
  54241. },
  54242. back: {
  54243. height: math.unit(4 + 4/12, "feet"),
  54244. name: "Back",
  54245. image: {
  54246. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54247. extra: 1135/1129,
  54248. bottom: 57/1192
  54249. }
  54250. },
  54251. head: {
  54252. height: math.unit(1.77, "feet"),
  54253. name: "Head",
  54254. image: {
  54255. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54256. }
  54257. },
  54258. },
  54259. [
  54260. {
  54261. name: "Normal",
  54262. height: math.unit(4 + 4/12, "feet"),
  54263. default: true
  54264. },
  54265. ]
  54266. ))
  54267. characterMakers.push(() => makeCharacter(
  54268. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54269. {
  54270. front: {
  54271. height: math.unit(2, "inches"),
  54272. name: "Front",
  54273. image: {
  54274. source: "./media/characters/carley-hartford/front.svg",
  54275. extra: 1035/988,
  54276. bottom: 23/1058
  54277. }
  54278. },
  54279. back: {
  54280. height: math.unit(2, "inches"),
  54281. name: "Back",
  54282. image: {
  54283. source: "./media/characters/carley-hartford/back.svg",
  54284. extra: 1035/988,
  54285. bottom: 23/1058
  54286. }
  54287. },
  54288. dressed: {
  54289. height: math.unit(2, "inches"),
  54290. name: "Dressed",
  54291. image: {
  54292. source: "./media/characters/carley-hartford/dressed.svg",
  54293. extra: 651/620,
  54294. bottom: 0/651
  54295. }
  54296. },
  54297. },
  54298. [
  54299. {
  54300. name: "Micro",
  54301. height: math.unit(2, "inches"),
  54302. default: true
  54303. },
  54304. {
  54305. name: "Macro",
  54306. height: math.unit(6 + 3/12, "feet")
  54307. },
  54308. ]
  54309. ))
  54310. characterMakers.push(() => makeCharacter(
  54311. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54312. {
  54313. front: {
  54314. height: math.unit(2 + 3/12, "feet"),
  54315. weight: math.unit(15 + 7/16, "lb"),
  54316. name: "Front",
  54317. image: {
  54318. source: "./media/characters/duke/front.svg",
  54319. extra: 910/815,
  54320. bottom: 30/940
  54321. }
  54322. },
  54323. },
  54324. [
  54325. {
  54326. name: "Normal",
  54327. height: math.unit(2 + 3/12, "feet"),
  54328. default: true
  54329. },
  54330. ]
  54331. ))
  54332. characterMakers.push(() => makeCharacter(
  54333. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54334. {
  54335. front: {
  54336. height: math.unit(5 + 4/12, "feet"),
  54337. weight: math.unit(156, "lb"),
  54338. name: "Front",
  54339. image: {
  54340. source: "./media/characters/dein/front.svg",
  54341. extra: 855/815,
  54342. bottom: 48/903
  54343. }
  54344. },
  54345. side: {
  54346. height: math.unit(5 + 4/12, "feet"),
  54347. weight: math.unit(156, "lb"),
  54348. name: "side",
  54349. image: {
  54350. source: "./media/characters/dein/side.svg",
  54351. extra: 846/803,
  54352. bottom: 25/871
  54353. }
  54354. },
  54355. maw: {
  54356. height: math.unit(1.45, "feet"),
  54357. name: "Maw",
  54358. image: {
  54359. source: "./media/characters/dein/maw.svg"
  54360. }
  54361. },
  54362. },
  54363. [
  54364. {
  54365. name: "Ferret Sized",
  54366. height: math.unit(2 + 5/12, "feet")
  54367. },
  54368. {
  54369. name: "Normal",
  54370. height: math.unit(5 + 4/12, "feet"),
  54371. default: true
  54372. },
  54373. ]
  54374. ))
  54375. characterMakers.push(() => makeCharacter(
  54376. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54377. {
  54378. front: {
  54379. height: math.unit(84 + 8/12, "feet"),
  54380. weight: math.unit(942180, "lb"),
  54381. name: "Front",
  54382. image: {
  54383. source: "./media/characters/daurine-arima/front.svg",
  54384. extra: 1989/1782,
  54385. bottom: 37/2026
  54386. }
  54387. },
  54388. side: {
  54389. height: math.unit(84 + 8/12, "feet"),
  54390. weight: math.unit(942180, "lb"),
  54391. name: "Side",
  54392. image: {
  54393. source: "./media/characters/daurine-arima/side.svg",
  54394. extra: 1997/1790,
  54395. bottom: 21/2018
  54396. }
  54397. },
  54398. back: {
  54399. height: math.unit(84 + 8/12, "feet"),
  54400. weight: math.unit(942180, "lb"),
  54401. name: "Back",
  54402. image: {
  54403. source: "./media/characters/daurine-arima/back.svg",
  54404. extra: 1992/1800,
  54405. bottom: 12/2004
  54406. }
  54407. },
  54408. head: {
  54409. height: math.unit(15.5, "feet"),
  54410. name: "Head",
  54411. image: {
  54412. source: "./media/characters/daurine-arima/head.svg"
  54413. }
  54414. },
  54415. headAlt: {
  54416. height: math.unit(19.19, "feet"),
  54417. name: "Head (Alt)",
  54418. image: {
  54419. source: "./media/characters/daurine-arima/head-alt.svg"
  54420. }
  54421. },
  54422. },
  54423. [
  54424. {
  54425. name: "Minimum height",
  54426. height: math.unit(8 + 10/12, "feet")
  54427. },
  54428. {
  54429. name: "Comfort height",
  54430. height: math.unit(19 + 6 /12, "feet")
  54431. },
  54432. {
  54433. name: "\"Normal\" height",
  54434. height: math.unit(28 + 10/12, "feet")
  54435. },
  54436. {
  54437. name: "Base height",
  54438. height: math.unit(84 + 8/12, "feet"),
  54439. default: true
  54440. },
  54441. {
  54442. name: "Mini-macro",
  54443. height: math.unit(2360, "feet")
  54444. },
  54445. {
  54446. name: "Macro",
  54447. height: math.unit(10, "miles")
  54448. },
  54449. {
  54450. name: "Goddess",
  54451. height: math.unit(9.99e40, "yottameters")
  54452. },
  54453. ]
  54454. ))
  54455. characterMakers.push(() => makeCharacter(
  54456. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54457. {
  54458. front: {
  54459. height: math.unit(2.3, "meters"),
  54460. name: "Front",
  54461. image: {
  54462. source: "./media/characters/cilenomon/front.svg",
  54463. extra: 1963/1778,
  54464. bottom: 54/2017
  54465. }
  54466. },
  54467. },
  54468. [
  54469. {
  54470. name: "Normal",
  54471. height: math.unit(2.3, "meters"),
  54472. default: true
  54473. },
  54474. {
  54475. name: "Big",
  54476. height: math.unit(5, "meters")
  54477. },
  54478. {
  54479. name: "Macro",
  54480. height: math.unit(30, "meters")
  54481. },
  54482. {
  54483. name: "True",
  54484. height: math.unit(1, "universe")
  54485. },
  54486. ]
  54487. ))
  54488. characterMakers.push(() => makeCharacter(
  54489. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54490. {
  54491. front: {
  54492. height: math.unit(5, "feet"),
  54493. name: "Front",
  54494. image: {
  54495. source: "./media/characters/sen-mink/front.svg",
  54496. extra: 1727/1675,
  54497. bottom: 35/1762
  54498. }
  54499. },
  54500. },
  54501. [
  54502. {
  54503. name: "Normal",
  54504. height: math.unit(5, "feet"),
  54505. default: true
  54506. },
  54507. ]
  54508. ))
  54509. characterMakers.push(() => makeCharacter(
  54510. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54511. {
  54512. front: {
  54513. height: math.unit(5.42999, "feet"),
  54514. weight: math.unit(100, "lb"),
  54515. name: "Front",
  54516. image: {
  54517. source: "./media/characters/ophois/front.svg",
  54518. extra: 1429/1286,
  54519. bottom: 60/1489
  54520. }
  54521. },
  54522. },
  54523. [
  54524. {
  54525. name: "Normal",
  54526. height: math.unit(5.42999, "feet"),
  54527. default: true
  54528. },
  54529. ]
  54530. ))
  54531. characterMakers.push(() => makeCharacter(
  54532. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54533. {
  54534. front: {
  54535. height: math.unit(2, "meters"),
  54536. name: "Front",
  54537. image: {
  54538. source: "./media/characters/riley/front.svg",
  54539. extra: 1779/1754,
  54540. bottom: 139/1918
  54541. }
  54542. },
  54543. },
  54544. [
  54545. {
  54546. name: "Normal",
  54547. height: math.unit(2, "meters"),
  54548. default: true
  54549. },
  54550. ]
  54551. ))
  54552. characterMakers.push(() => makeCharacter(
  54553. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54554. {
  54555. front: {
  54556. height: math.unit(6 + 2/12, "feet"),
  54557. weight: math.unit(195, "lb"),
  54558. preyCapacity: math.unit(6, "people"),
  54559. name: "Front",
  54560. image: {
  54561. source: "./media/characters/shuken-flash/front.svg",
  54562. extra: 1905/1739,
  54563. bottom: 65/1970
  54564. }
  54565. },
  54566. back: {
  54567. height: math.unit(6 + 2/12, "feet"),
  54568. weight: math.unit(195, "lb"),
  54569. preyCapacity: math.unit(6, "people"),
  54570. name: "Back",
  54571. image: {
  54572. source: "./media/characters/shuken-flash/back.svg",
  54573. extra: 1912/1751,
  54574. bottom: 13/1925
  54575. }
  54576. },
  54577. },
  54578. [
  54579. {
  54580. name: "Normal",
  54581. height: math.unit(6 + 2/12, "feet"),
  54582. default: true
  54583. },
  54584. ]
  54585. ))
  54586. characterMakers.push(() => makeCharacter(
  54587. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54588. {
  54589. front: {
  54590. height: math.unit(5 + 9/12, "feet"),
  54591. weight: math.unit(150, "lb"),
  54592. name: "Front",
  54593. image: {
  54594. source: "./media/characters/plat/front.svg",
  54595. extra: 1816/1703,
  54596. bottom: 43/1859
  54597. }
  54598. },
  54599. side: {
  54600. height: math.unit(5 + 9/12, "feet"),
  54601. weight: math.unit(300, "lb"),
  54602. name: "Side",
  54603. image: {
  54604. source: "./media/characters/plat/side.svg",
  54605. extra: 1824/1699,
  54606. bottom: 18/1842
  54607. }
  54608. },
  54609. },
  54610. [
  54611. {
  54612. name: "Normal",
  54613. height: math.unit(5 + 9/12, "feet"),
  54614. default: true
  54615. },
  54616. ]
  54617. ))
  54618. characterMakers.push(() => makeCharacter(
  54619. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54620. {
  54621. front: {
  54622. height: math.unit(9, "feet"),
  54623. weight: math.unit(1800, "lb"),
  54624. name: "Front",
  54625. image: {
  54626. source: "./media/characters/elaine/front.svg",
  54627. extra: 1833/1354,
  54628. bottom: 25/1858
  54629. }
  54630. },
  54631. back: {
  54632. height: math.unit(8.8, "feet"),
  54633. weight: math.unit(1800, "lb"),
  54634. name: "Back",
  54635. image: {
  54636. source: "./media/characters/elaine/back.svg",
  54637. extra: 1641/1233,
  54638. bottom: 53/1694
  54639. }
  54640. },
  54641. },
  54642. [
  54643. {
  54644. name: "Normal",
  54645. height: math.unit(9, "feet"),
  54646. default: true
  54647. },
  54648. ]
  54649. ))
  54650. characterMakers.push(() => makeCharacter(
  54651. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54652. {
  54653. front: {
  54654. height: math.unit(17 + 9/12, "feet"),
  54655. weight: math.unit(8000, "lb"),
  54656. name: "Front",
  54657. image: {
  54658. source: "./media/characters/vera-raven/front.svg",
  54659. extra: 1457/1412,
  54660. bottom: 121/1578
  54661. }
  54662. },
  54663. side: {
  54664. height: math.unit(17 + 9/12, "feet"),
  54665. weight: math.unit(8000, "lb"),
  54666. name: "Side",
  54667. image: {
  54668. source: "./media/characters/vera-raven/side.svg",
  54669. extra: 1510/1464,
  54670. bottom: 54/1564
  54671. }
  54672. },
  54673. },
  54674. [
  54675. {
  54676. name: "Normal",
  54677. height: math.unit(17 + 9/12, "feet"),
  54678. default: true
  54679. },
  54680. ]
  54681. ))
  54682. characterMakers.push(() => makeCharacter(
  54683. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54684. {
  54685. dressed: {
  54686. height: math.unit(6 + 9/12, "feet"),
  54687. name: "Dressed",
  54688. image: {
  54689. source: "./media/characters/nakisha/dressed.svg",
  54690. extra: 1909/1757,
  54691. bottom: 48/1957
  54692. }
  54693. },
  54694. nude: {
  54695. height: math.unit(6 + 9/12, "feet"),
  54696. name: "Nude",
  54697. image: {
  54698. source: "./media/characters/nakisha/nude.svg",
  54699. extra: 1917/1765,
  54700. bottom: 34/1951
  54701. }
  54702. },
  54703. },
  54704. [
  54705. {
  54706. name: "Normal",
  54707. height: math.unit(6 + 9/12, "feet"),
  54708. default: true
  54709. },
  54710. ]
  54711. ))
  54712. characterMakers.push(() => makeCharacter(
  54713. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54714. {
  54715. front: {
  54716. height: math.unit(87, "meters"),
  54717. name: "Front",
  54718. image: {
  54719. source: "./media/characters/serafin/front.svg",
  54720. extra: 1919/1776,
  54721. bottom: 65/1984
  54722. }
  54723. },
  54724. },
  54725. [
  54726. {
  54727. name: "Normal",
  54728. height: math.unit(87, "meters"),
  54729. default: true
  54730. },
  54731. ]
  54732. ))
  54733. characterMakers.push(() => makeCharacter(
  54734. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54735. {
  54736. front: {
  54737. height: math.unit(6, "feet"),
  54738. weight: math.unit(200, "lb"),
  54739. name: "Front",
  54740. image: {
  54741. source: "./media/characters/poptart/front.svg",
  54742. extra: 615/583,
  54743. bottom: 23/638
  54744. }
  54745. },
  54746. back: {
  54747. height: math.unit(6, "feet"),
  54748. weight: math.unit(200, "lb"),
  54749. name: "Back",
  54750. image: {
  54751. source: "./media/characters/poptart/back.svg",
  54752. extra: 617/584,
  54753. bottom: 22/639
  54754. }
  54755. },
  54756. frontNsfw: {
  54757. height: math.unit(6, "feet"),
  54758. weight: math.unit(200, "lb"),
  54759. name: "Front (NSFW)",
  54760. image: {
  54761. source: "./media/characters/poptart/front-nsfw.svg",
  54762. extra: 615/583,
  54763. bottom: 23/638
  54764. }
  54765. },
  54766. backNsfw: {
  54767. height: math.unit(6, "feet"),
  54768. weight: math.unit(200, "lb"),
  54769. name: "Back (NSFW)",
  54770. image: {
  54771. source: "./media/characters/poptart/back-nsfw.svg",
  54772. extra: 617/584,
  54773. bottom: 22/639
  54774. }
  54775. },
  54776. hand: {
  54777. height: math.unit(1.14, "feet"),
  54778. name: "Hand",
  54779. image: {
  54780. source: "./media/characters/poptart/hand.svg"
  54781. }
  54782. },
  54783. foot: {
  54784. height: math.unit(1.5, "feet"),
  54785. name: "Foot",
  54786. image: {
  54787. source: "./media/characters/poptart/foot.svg"
  54788. }
  54789. },
  54790. },
  54791. [
  54792. {
  54793. name: "Normal",
  54794. height: math.unit(6, "feet"),
  54795. default: true
  54796. },
  54797. {
  54798. name: "Grande",
  54799. height: math.unit(350, "feet")
  54800. },
  54801. {
  54802. name: "Massif",
  54803. height: math.unit(967, "feet")
  54804. },
  54805. ]
  54806. ))
  54807. characterMakers.push(() => makeCharacter(
  54808. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54809. {
  54810. hyenaSide: {
  54811. height: math.unit(120, "cm"),
  54812. weight: math.unit(120, "lb"),
  54813. name: "Side",
  54814. image: {
  54815. source: "./media/characters/trance/hyena-side.svg",
  54816. extra: 998/904,
  54817. bottom: 76/1074
  54818. }
  54819. },
  54820. },
  54821. [
  54822. {
  54823. name: "Normal",
  54824. height: math.unit(120, "cm"),
  54825. default: true
  54826. },
  54827. {
  54828. name: "Dire",
  54829. height: math.unit(230, "cm")
  54830. },
  54831. {
  54832. name: "Macro",
  54833. height: math.unit(37, "feet")
  54834. },
  54835. ]
  54836. ))
  54837. characterMakers.push(() => makeCharacter(
  54838. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54839. {
  54840. front: {
  54841. height: math.unit(6 + 3/12, "feet"),
  54842. name: "Front",
  54843. image: {
  54844. source: "./media/characters/michael-berretta/front.svg",
  54845. extra: 515/494,
  54846. bottom: 20/535
  54847. }
  54848. },
  54849. back: {
  54850. height: math.unit(6 + 3/12, "feet"),
  54851. name: "Back",
  54852. image: {
  54853. source: "./media/characters/michael-berretta/back.svg",
  54854. extra: 520/497,
  54855. bottom: 21/541
  54856. }
  54857. },
  54858. frontNsfw: {
  54859. height: math.unit(6 + 3/12, "feet"),
  54860. name: "Front (NSFW)",
  54861. image: {
  54862. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54863. extra: 515/494,
  54864. bottom: 20/535
  54865. }
  54866. },
  54867. dick: {
  54868. height: math.unit(1, "feet"),
  54869. name: "Dick",
  54870. image: {
  54871. source: "./media/characters/michael-berretta/dick.svg"
  54872. }
  54873. },
  54874. },
  54875. [
  54876. {
  54877. name: "Normal",
  54878. height: math.unit(6 + 3/12, "feet"),
  54879. default: true
  54880. },
  54881. {
  54882. name: "Big",
  54883. height: math.unit(12, "feet")
  54884. },
  54885. {
  54886. name: "Macro",
  54887. height: math.unit(187.5, "feet")
  54888. },
  54889. ]
  54890. ))
  54891. characterMakers.push(() => makeCharacter(
  54892. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54893. {
  54894. front: {
  54895. height: math.unit(9 + 9/12, "feet"),
  54896. weight: math.unit(1244, "lb"),
  54897. name: "Front",
  54898. image: {
  54899. source: "./media/characters/stella-edgecomb/front.svg",
  54900. extra: 1835/1706,
  54901. bottom: 49/1884
  54902. }
  54903. },
  54904. pen: {
  54905. height: math.unit(0.95, "feet"),
  54906. name: "Pen",
  54907. image: {
  54908. source: "./media/characters/stella-edgecomb/pen.svg"
  54909. }
  54910. },
  54911. },
  54912. [
  54913. {
  54914. name: "Cozy Bear",
  54915. height: math.unit(0.5, "inches")
  54916. },
  54917. {
  54918. name: "Normal",
  54919. height: math.unit(9 + 9/12, "feet"),
  54920. default: true
  54921. },
  54922. {
  54923. name: "Giga Bear",
  54924. height: math.unit(1, "mile")
  54925. },
  54926. {
  54927. name: "Great Bear",
  54928. height: math.unit(53, "miles")
  54929. },
  54930. {
  54931. name: "Goddess Bear",
  54932. height: math.unit(40000, "miles")
  54933. },
  54934. {
  54935. name: "Sun Bear",
  54936. height: math.unit(900000, "miles")
  54937. },
  54938. ]
  54939. ))
  54940. characterMakers.push(() => makeCharacter(
  54941. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54942. {
  54943. anthroFront: {
  54944. height: math.unit(556, "cm"),
  54945. weight: math.unit(2650, "kg"),
  54946. preyCapacity: math.unit(3, "people"),
  54947. name: "Front",
  54948. image: {
  54949. source: "./media/characters/ash´iika/front.svg",
  54950. extra: 710/673,
  54951. bottom: 15/725
  54952. },
  54953. form: "anthro",
  54954. default: true
  54955. },
  54956. anthroSide: {
  54957. height: math.unit(556, "cm"),
  54958. weight: math.unit(2650, "kg"),
  54959. preyCapacity: math.unit(3, "people"),
  54960. name: "Side",
  54961. image: {
  54962. source: "./media/characters/ash´iika/side.svg",
  54963. extra: 696/676,
  54964. bottom: 13/709
  54965. },
  54966. form: "anthro"
  54967. },
  54968. anthroDressed: {
  54969. height: math.unit(556, "cm"),
  54970. weight: math.unit(2650, "kg"),
  54971. preyCapacity: math.unit(3, "people"),
  54972. name: "Dressed",
  54973. image: {
  54974. source: "./media/characters/ash´iika/dressed.svg",
  54975. extra: 710/673,
  54976. bottom: 15/725
  54977. },
  54978. form: "anthro"
  54979. },
  54980. anthroHead: {
  54981. height: math.unit(3.5, "feet"),
  54982. name: "Head",
  54983. image: {
  54984. source: "./media/characters/ash´iika/head.svg",
  54985. extra: 348/291,
  54986. bottom: 45/393
  54987. },
  54988. form: "anthro"
  54989. },
  54990. feralSide: {
  54991. height: math.unit(870, "cm"),
  54992. weight: math.unit(17500, "kg"),
  54993. preyCapacity: math.unit(15, "people"),
  54994. name: "Side",
  54995. image: {
  54996. source: "./media/characters/ash´iika/feral.svg",
  54997. extra: 595/199,
  54998. bottom: 7/602
  54999. },
  55000. form: "feral",
  55001. default: true,
  55002. },
  55003. },
  55004. [
  55005. {
  55006. name: "Normal",
  55007. height: math.unit(556, "cm"),
  55008. default: true,
  55009. form: "anthro"
  55010. },
  55011. {
  55012. name: "Macro",
  55013. height: math.unit(88, "meters"),
  55014. form: "anthro"
  55015. },
  55016. {
  55017. name: "Normal",
  55018. height: math.unit(870, "cm"),
  55019. default: true,
  55020. form: "feral"
  55021. },
  55022. {
  55023. name: "Large",
  55024. height: math.unit(25, "meters"),
  55025. form: "feral"
  55026. },
  55027. ],
  55028. {
  55029. "anthro": {
  55030. name: "Anthro",
  55031. default: true
  55032. },
  55033. "feral": {
  55034. name: "Feral",
  55035. },
  55036. }
  55037. ))
  55038. characterMakers.push(() => makeCharacter(
  55039. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55040. {
  55041. front: {
  55042. height: math.unit(10, "feet"),
  55043. weight: math.unit(800, "lb"),
  55044. name: "Front",
  55045. image: {
  55046. source: "./media/characters/yen/front.svg",
  55047. extra: 443/411,
  55048. bottom: 6/449
  55049. }
  55050. },
  55051. sleeping: {
  55052. height: math.unit(10, "feet"),
  55053. weight: math.unit(800, "lb"),
  55054. name: "Sleeping",
  55055. image: {
  55056. source: "./media/characters/yen/sleeping.svg",
  55057. extra: 470/422,
  55058. bottom: 0/470
  55059. }
  55060. },
  55061. head: {
  55062. height: math.unit(2.2, "feet"),
  55063. name: "Head",
  55064. image: {
  55065. source: "./media/characters/yen/head.svg"
  55066. }
  55067. },
  55068. headAlt: {
  55069. height: math.unit(2.1, "feet"),
  55070. name: "Head (Alt)",
  55071. image: {
  55072. source: "./media/characters/yen/head-alt.svg"
  55073. }
  55074. },
  55075. },
  55076. [
  55077. {
  55078. name: "Normal",
  55079. height: math.unit(10, "feet"),
  55080. default: true
  55081. },
  55082. ]
  55083. ))
  55084. characterMakers.push(() => makeCharacter(
  55085. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55086. {
  55087. front: {
  55088. height: math.unit(12, "feet"),
  55089. name: "Front",
  55090. image: {
  55091. source: "./media/characters/citra/front.svg",
  55092. extra: 1950/1710,
  55093. bottom: 47/1997
  55094. }
  55095. },
  55096. },
  55097. [
  55098. {
  55099. name: "Normal",
  55100. height: math.unit(12, "feet"),
  55101. default: true
  55102. },
  55103. ]
  55104. ))
  55105. characterMakers.push(() => makeCharacter(
  55106. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55107. {
  55108. side: {
  55109. height: math.unit(7 + 10/12, "feet"),
  55110. name: "Side",
  55111. image: {
  55112. source: "./media/characters/sholstim/side.svg",
  55113. extra: 786/682,
  55114. bottom: 40/826
  55115. }
  55116. },
  55117. },
  55118. [
  55119. {
  55120. name: "Normal",
  55121. height: math.unit(7 + 10/12, "feet"),
  55122. default: true
  55123. },
  55124. ]
  55125. ))
  55126. characterMakers.push(() => makeCharacter(
  55127. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55128. {
  55129. front: {
  55130. height: math.unit(3.10, "meters"),
  55131. name: "Front",
  55132. image: {
  55133. source: "./media/characters/aggyn/front.svg",
  55134. extra: 1188/963,
  55135. bottom: 24/1212
  55136. }
  55137. },
  55138. },
  55139. [
  55140. {
  55141. name: "Normal",
  55142. height: math.unit(3.10, "meters"),
  55143. default: true
  55144. },
  55145. ]
  55146. ))
  55147. characterMakers.push(() => makeCharacter(
  55148. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55149. {
  55150. front: {
  55151. height: math.unit(7 + 5/12, "feet"),
  55152. weight: math.unit(687, "lb"),
  55153. name: "Front",
  55154. image: {
  55155. source: "./media/characters/alsandair-hergenroether/front.svg",
  55156. extra: 1251/1186,
  55157. bottom: 75/1326
  55158. }
  55159. },
  55160. back: {
  55161. height: math.unit(7 + 5/12, "feet"),
  55162. weight: math.unit(687, "lb"),
  55163. name: "Back",
  55164. image: {
  55165. source: "./media/characters/alsandair-hergenroether/back.svg",
  55166. extra: 1290/1229,
  55167. bottom: 17/1307
  55168. }
  55169. },
  55170. },
  55171. [
  55172. {
  55173. name: "Max Compression",
  55174. height: math.unit(7 + 5/12, "feet"),
  55175. default: true
  55176. },
  55177. {
  55178. name: "\"Normal\"",
  55179. height: math.unit(2, "universes")
  55180. },
  55181. ]
  55182. ))
  55183. characterMakers.push(() => makeCharacter(
  55184. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55185. {
  55186. front: {
  55187. height: math.unit(4 + 1/12, "feet"),
  55188. weight: math.unit(92, "lb"),
  55189. name: "Front",
  55190. image: {
  55191. source: "./media/characters/ie/front.svg",
  55192. extra: 1585/1352,
  55193. bottom: 91/1676
  55194. }
  55195. },
  55196. },
  55197. [
  55198. {
  55199. name: "Normal",
  55200. height: math.unit(4 + 1/12, "feet"),
  55201. default: true
  55202. },
  55203. ]
  55204. ))
  55205. characterMakers.push(() => makeCharacter(
  55206. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55207. {
  55208. anthro: {
  55209. height: math.unit(6, "feet"),
  55210. weight: math.unit(150, "lb"),
  55211. name: "Front",
  55212. image: {
  55213. source: "./media/characters/willow/anthro.svg",
  55214. extra: 1073/986,
  55215. bottom: 34/1107
  55216. },
  55217. form: "anthro",
  55218. default: true
  55219. },
  55220. taur: {
  55221. height: math.unit(6, "feet"),
  55222. weight: math.unit(150, "lb"),
  55223. name: "Side",
  55224. image: {
  55225. source: "./media/characters/willow/taur.svg",
  55226. extra: 647/512,
  55227. bottom: 136/783
  55228. },
  55229. form: "taur",
  55230. default: true
  55231. },
  55232. },
  55233. [
  55234. {
  55235. name: "Humanoid",
  55236. height: math.unit(2.7, "meters"),
  55237. form: "anthro"
  55238. },
  55239. {
  55240. name: "Normal",
  55241. height: math.unit(9, "meters"),
  55242. form: "anthro",
  55243. default: true
  55244. },
  55245. {
  55246. name: "Humanoid",
  55247. height: math.unit(2.1, "meters"),
  55248. form: "taur"
  55249. },
  55250. {
  55251. name: "Normal",
  55252. height: math.unit(7, "meters"),
  55253. form: "taur",
  55254. default: true
  55255. },
  55256. ],
  55257. {
  55258. "anthro": {
  55259. name: "Anthro",
  55260. default: true
  55261. },
  55262. "taur": {
  55263. name: "Taur",
  55264. },
  55265. }
  55266. ))
  55267. characterMakers.push(() => makeCharacter(
  55268. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55269. {
  55270. front: {
  55271. height: math.unit(2 + 5/12, "feet"),
  55272. name: "Front",
  55273. image: {
  55274. source: "./media/characters/kyan/front.svg",
  55275. extra: 460/334,
  55276. bottom: 23/483
  55277. },
  55278. extraAttributes: {
  55279. "toeLength": {
  55280. name: "Toe Length",
  55281. power: 1,
  55282. type: "length",
  55283. base: math.unit(7, "cm")
  55284. },
  55285. "toeclawLength": {
  55286. name: "Toeclaw Length",
  55287. power: 1,
  55288. type: "length",
  55289. base: math.unit(4.7, "cm")
  55290. },
  55291. "earHeight": {
  55292. name: "Ear Height",
  55293. power: 1,
  55294. type: "length",
  55295. base: math.unit(14.1, "cm")
  55296. },
  55297. }
  55298. },
  55299. paws: {
  55300. height: math.unit(0.45, "feet"),
  55301. name: "Paws",
  55302. image: {
  55303. source: "./media/characters/kyan/paws.svg",
  55304. extra: 581/581,
  55305. bottom: 114/695
  55306. }
  55307. },
  55308. },
  55309. [
  55310. {
  55311. name: "Normal",
  55312. height: math.unit(2 + 5/12, "feet"),
  55313. default: true
  55314. },
  55315. ]
  55316. ))
  55317. characterMakers.push(() => makeCharacter(
  55318. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55319. {
  55320. front: {
  55321. height: math.unit(2 + 2/3, "feet"),
  55322. name: "Front",
  55323. image: {
  55324. source: "./media/characters/xazzon/front.svg",
  55325. extra: 1109/984,
  55326. bottom: 42/1151
  55327. }
  55328. },
  55329. back: {
  55330. height: math.unit(2 + 2/3, "feet"),
  55331. name: "Back",
  55332. image: {
  55333. source: "./media/characters/xazzon/back.svg",
  55334. extra: 1095/971,
  55335. bottom: 23/1118
  55336. }
  55337. },
  55338. },
  55339. [
  55340. {
  55341. name: "Normal",
  55342. height: math.unit(2 + 2/3, "feet"),
  55343. default: true
  55344. },
  55345. ]
  55346. ))
  55347. characterMakers.push(() => makeCharacter(
  55348. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55349. {
  55350. front: {
  55351. height: math.unit(8, "feet"),
  55352. weight: math.unit(300, "lb"),
  55353. name: "Front",
  55354. image: {
  55355. source: "./media/characters/khyla-shadowsong/front.svg",
  55356. extra: 861/798,
  55357. bottom: 32/893
  55358. }
  55359. },
  55360. side: {
  55361. height: math.unit(8, "feet"),
  55362. weight: math.unit(300, "lb"),
  55363. name: "Side",
  55364. image: {
  55365. source: "./media/characters/khyla-shadowsong/side.svg",
  55366. extra: 790/750,
  55367. bottom: 87/877
  55368. }
  55369. },
  55370. back: {
  55371. height: math.unit(8, "feet"),
  55372. weight: math.unit(300, "lb"),
  55373. name: "Back",
  55374. image: {
  55375. source: "./media/characters/khyla-shadowsong/back.svg",
  55376. extra: 855/808,
  55377. bottom: 14/869
  55378. }
  55379. },
  55380. head: {
  55381. height: math.unit(2.7, "feet"),
  55382. name: "Head",
  55383. image: {
  55384. source: "./media/characters/khyla-shadowsong/head.svg"
  55385. }
  55386. },
  55387. },
  55388. [
  55389. {
  55390. name: "Micro",
  55391. height: math.unit(6, "inches")
  55392. },
  55393. {
  55394. name: "Normal",
  55395. height: math.unit(8, "feet"),
  55396. default: true
  55397. },
  55398. ]
  55399. ))
  55400. characterMakers.push(() => makeCharacter(
  55401. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55402. {
  55403. hyperFront: {
  55404. height: math.unit(9 + 4/12, "feet"),
  55405. weight: math.unit(2000, "lb"),
  55406. name: "Front",
  55407. image: {
  55408. source: "./media/characters/tiden/hyper-front.svg",
  55409. extra: 400/382,
  55410. bottom: 6/406
  55411. },
  55412. form: "hyper",
  55413. },
  55414. regularFront: {
  55415. height: math.unit(7 + 10/12, "feet"),
  55416. weight: math.unit(470, "lb"),
  55417. name: "Front",
  55418. image: {
  55419. source: "./media/characters/tiden/regular-front.svg",
  55420. extra: 468/442,
  55421. bottom: 6/474
  55422. },
  55423. form: "regular",
  55424. },
  55425. },
  55426. [
  55427. {
  55428. name: "Normal",
  55429. height: math.unit(9 + 4/12, "feet"),
  55430. default: true,
  55431. form: "hyper"
  55432. },
  55433. {
  55434. name: "Normal",
  55435. height: math.unit(7 + 10/12, "feet"),
  55436. default: true,
  55437. form: "regular"
  55438. },
  55439. ],
  55440. {
  55441. "hyper": {
  55442. name: "Hyper",
  55443. default: true
  55444. },
  55445. "regular": {
  55446. name: "Regular",
  55447. },
  55448. }
  55449. ))
  55450. characterMakers.push(() => makeCharacter(
  55451. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55452. {
  55453. side: {
  55454. height: math.unit(6, "feet"),
  55455. weight: math.unit(150, "lb"),
  55456. name: "Side",
  55457. image: {
  55458. source: "./media/characters/jason-crowe/side.svg",
  55459. extra: 1771/766,
  55460. bottom: 219/1990
  55461. }
  55462. },
  55463. },
  55464. [
  55465. {
  55466. name: "Pocket Gryphon",
  55467. height: math.unit(6, "cm")
  55468. },
  55469. {
  55470. name: "Raven",
  55471. height: math.unit(60, "cm")
  55472. },
  55473. {
  55474. name: "Normal",
  55475. height: math.unit(1, "meter"),
  55476. default: true
  55477. },
  55478. ]
  55479. ))
  55480. characterMakers.push(() => makeCharacter(
  55481. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55482. {
  55483. front: {
  55484. height: math.unit(9 + 6/12, "feet"),
  55485. weight: math.unit(1100, "lb"),
  55486. name: "Front",
  55487. image: {
  55488. source: "./media/characters/django/front.svg",
  55489. extra: 1231/1136,
  55490. bottom: 34/1265
  55491. }
  55492. },
  55493. side: {
  55494. height: math.unit(9 + 6/12, "feet"),
  55495. weight: math.unit(1100, "lb"),
  55496. name: "Side",
  55497. image: {
  55498. source: "./media/characters/django/side.svg",
  55499. extra: 1267/1174,
  55500. bottom: 9/1276
  55501. }
  55502. },
  55503. },
  55504. [
  55505. {
  55506. name: "Normal",
  55507. height: math.unit(9 + 6/12, "feet"),
  55508. default: true
  55509. },
  55510. {
  55511. name: "Macro 1",
  55512. height: math.unit(50, "feet")
  55513. },
  55514. {
  55515. name: "Macro 2",
  55516. height: math.unit(500, "feet")
  55517. },
  55518. {
  55519. name: "Mega Macro",
  55520. height: math.unit(5300, "feet")
  55521. },
  55522. ]
  55523. ))
  55524. characterMakers.push(() => makeCharacter(
  55525. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55526. {
  55527. frontSfw: {
  55528. height: math.unit(120, "cm"),
  55529. weight: math.unit(15, "kg"),
  55530. name: "Front (SFW)",
  55531. image: {
  55532. source: "./media/characters/eri/front-sfw.svg",
  55533. extra: 1014/939,
  55534. bottom: 37/1051
  55535. },
  55536. form: "moth",
  55537. },
  55538. frontNsfw: {
  55539. height: math.unit(120, "cm"),
  55540. weight: math.unit(15, "kg"),
  55541. name: "Front (NSFW)",
  55542. image: {
  55543. source: "./media/characters/eri/front-nsfw.svg",
  55544. extra: 1014/939,
  55545. bottom: 37/1051
  55546. },
  55547. form: "moth",
  55548. default: true
  55549. },
  55550. egg: {
  55551. height: math.unit(10, "cm"),
  55552. name: "Egg",
  55553. image: {
  55554. source: "./media/characters/eri/egg.svg"
  55555. },
  55556. form: "egg",
  55557. default: true
  55558. },
  55559. },
  55560. [
  55561. {
  55562. name: "Normal",
  55563. height: math.unit(120, "cm"),
  55564. default: true,
  55565. form: "moth"
  55566. },
  55567. {
  55568. name: "Normal",
  55569. height: math.unit(10, "cm"),
  55570. default: true,
  55571. form: "egg"
  55572. },
  55573. ],
  55574. {
  55575. "moth": {
  55576. name: "Moth",
  55577. default: true
  55578. },
  55579. "egg": {
  55580. name: "Egg",
  55581. },
  55582. }
  55583. ))
  55584. characterMakers.push(() => makeCharacter(
  55585. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55586. {
  55587. front: {
  55588. height: math.unit(200, "feet"),
  55589. name: "Front",
  55590. image: {
  55591. source: "./media/characters/bishop-dowser/front.svg",
  55592. extra: 933/868,
  55593. bottom: 106/1039
  55594. }
  55595. },
  55596. },
  55597. [
  55598. {
  55599. name: "Giant",
  55600. height: math.unit(200, "feet"),
  55601. default: true
  55602. },
  55603. ]
  55604. ))
  55605. characterMakers.push(() => makeCharacter(
  55606. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55607. {
  55608. front: {
  55609. height: math.unit(2, "meters"),
  55610. preyCapacity: math.unit(3, "people"),
  55611. name: "Front",
  55612. image: {
  55613. source: "./media/characters/fryra/front.svg",
  55614. extra: 1025/948,
  55615. bottom: 30/1055
  55616. },
  55617. extraAttributes: {
  55618. "breastVolume": {
  55619. name: "Breast Volume",
  55620. power: 3,
  55621. type: "volume",
  55622. base: math.unit(8, "liters")
  55623. },
  55624. }
  55625. },
  55626. back: {
  55627. height: math.unit(2, "meters"),
  55628. preyCapacity: math.unit(3, "people"),
  55629. name: "Back",
  55630. image: {
  55631. source: "./media/characters/fryra/back.svg",
  55632. extra: 993/938,
  55633. bottom: 38/1031
  55634. },
  55635. extraAttributes: {
  55636. "breastVolume": {
  55637. name: "Breast Volume",
  55638. power: 3,
  55639. type: "volume",
  55640. base: math.unit(8, "liters")
  55641. },
  55642. }
  55643. },
  55644. head: {
  55645. height: math.unit(1.33, "feet"),
  55646. name: "Head",
  55647. image: {
  55648. source: "./media/characters/fryra/head.svg"
  55649. }
  55650. },
  55651. maw: {
  55652. height: math.unit(0.56, "feet"),
  55653. name: "Maw",
  55654. image: {
  55655. source: "./media/characters/fryra/maw.svg"
  55656. }
  55657. },
  55658. },
  55659. [
  55660. {
  55661. name: "Micro",
  55662. height: math.unit(5, "cm")
  55663. },
  55664. {
  55665. name: "Normal",
  55666. height: math.unit(2, "meters"),
  55667. default: true
  55668. },
  55669. {
  55670. name: "Small Macro",
  55671. height: math.unit(8, "meters")
  55672. },
  55673. {
  55674. name: "Macro",
  55675. height: math.unit(50, "meters")
  55676. },
  55677. {
  55678. name: "Megamacro",
  55679. height: math.unit(1, "km")
  55680. },
  55681. {
  55682. name: "Planetary",
  55683. height: math.unit(300000, "km")
  55684. },
  55685. {
  55686. name: "Universal",
  55687. height: math.unit(250, "lightyears")
  55688. },
  55689. {
  55690. name: "Fabric of Reality",
  55691. height: math.unit(1000, "multiverses")
  55692. },
  55693. ]
  55694. ))
  55695. characterMakers.push(() => makeCharacter(
  55696. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55697. {
  55698. frontDressed: {
  55699. height: math.unit(6 + 2/12, "feet"),
  55700. name: "Front (Dressed)",
  55701. image: {
  55702. source: "./media/characters/fiera/front-dressed.svg",
  55703. extra: 1883/1793,
  55704. bottom: 70/1953
  55705. }
  55706. },
  55707. backDressed: {
  55708. height: math.unit(6 + 2/12, "feet"),
  55709. name: "Back (Dressed)",
  55710. image: {
  55711. source: "./media/characters/fiera/back-dressed.svg",
  55712. extra: 1847/1780,
  55713. bottom: 70/1917
  55714. }
  55715. },
  55716. frontNude: {
  55717. height: math.unit(6 + 2/12, "feet"),
  55718. name: "Front (Nude)",
  55719. image: {
  55720. source: "./media/characters/fiera/front-nude.svg",
  55721. extra: 1875/1785,
  55722. bottom: 66/1941
  55723. }
  55724. },
  55725. backNude: {
  55726. height: math.unit(6 + 2/12, "feet"),
  55727. name: "Back (Nude)",
  55728. image: {
  55729. source: "./media/characters/fiera/back-nude.svg",
  55730. extra: 1855/1788,
  55731. bottom: 44/1899
  55732. }
  55733. },
  55734. maw: {
  55735. height: math.unit(1.3, "feet"),
  55736. name: "Maw",
  55737. image: {
  55738. source: "./media/characters/fiera/maw.svg"
  55739. }
  55740. },
  55741. paw: {
  55742. height: math.unit(1, "feet"),
  55743. name: "Paw",
  55744. image: {
  55745. source: "./media/characters/fiera/paw.svg"
  55746. }
  55747. },
  55748. shoe: {
  55749. height: math.unit(1.05, "feet"),
  55750. name: "Shoe",
  55751. image: {
  55752. source: "./media/characters/fiera/shoe.svg"
  55753. }
  55754. },
  55755. },
  55756. [
  55757. {
  55758. name: "Normal",
  55759. height: math.unit(6 + 2/12, "feet"),
  55760. default: true
  55761. },
  55762. {
  55763. name: "Size Difference",
  55764. height: math.unit(13, "feet")
  55765. },
  55766. {
  55767. name: "Macro",
  55768. height: math.unit(60, "feet")
  55769. },
  55770. {
  55771. name: "Mega Macro",
  55772. height: math.unit(200, "feet")
  55773. },
  55774. ]
  55775. ))
  55776. characterMakers.push(() => makeCharacter(
  55777. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55778. {
  55779. back: {
  55780. height: math.unit(6, "feet"),
  55781. name: "Back",
  55782. image: {
  55783. source: "./media/characters/flare/back.svg",
  55784. extra: 1883/1765,
  55785. bottom: 32/1915
  55786. }
  55787. },
  55788. },
  55789. [
  55790. {
  55791. name: "Normal",
  55792. height: math.unit(6 + 2/12, "feet"),
  55793. default: true
  55794. },
  55795. {
  55796. name: "Size Difference",
  55797. height: math.unit(13, "feet")
  55798. },
  55799. {
  55800. name: "Macro",
  55801. height: math.unit(60, "feet")
  55802. },
  55803. {
  55804. name: "Macro 2",
  55805. height: math.unit(100, "feet")
  55806. },
  55807. {
  55808. name: "Mega Macro",
  55809. height: math.unit(200, "feet")
  55810. },
  55811. ]
  55812. ))
  55813. characterMakers.push(() => makeCharacter(
  55814. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55815. {
  55816. front: {
  55817. height: math.unit(2.2, "m"),
  55818. weight: math.unit(300, "kg"),
  55819. name: "Front",
  55820. image: {
  55821. source: "./media/characters/hanna/front.svg",
  55822. extra: 1696/1502,
  55823. bottom: 206/1902
  55824. }
  55825. },
  55826. },
  55827. [
  55828. {
  55829. name: "Humanoid",
  55830. height: math.unit(2.2, "meters")
  55831. },
  55832. {
  55833. name: "Normal",
  55834. height: math.unit(4.8, "meters"),
  55835. default: true
  55836. },
  55837. ]
  55838. ))
  55839. characterMakers.push(() => makeCharacter(
  55840. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55841. {
  55842. front: {
  55843. height: math.unit(2.8, "meters"),
  55844. name: "Front",
  55845. image: {
  55846. source: "./media/characters/argo/front.svg",
  55847. extra: 731/518,
  55848. bottom: 84/815
  55849. }
  55850. },
  55851. },
  55852. [
  55853. {
  55854. name: "Normal",
  55855. height: math.unit(3, "meters"),
  55856. default: true
  55857. },
  55858. ]
  55859. ))
  55860. characterMakers.push(() => makeCharacter(
  55861. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55862. {
  55863. side: {
  55864. height: math.unit(3.8, "meters"),
  55865. name: "Side",
  55866. image: {
  55867. source: "./media/characters/sybil/side.svg",
  55868. extra: 382/361,
  55869. bottom: 25/407
  55870. }
  55871. },
  55872. },
  55873. [
  55874. {
  55875. name: "Normal",
  55876. height: math.unit(3.8, "meters"),
  55877. default: true
  55878. },
  55879. ]
  55880. ))
  55881. characterMakers.push(() => makeCharacter(
  55882. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55883. {
  55884. side: {
  55885. height: math.unit(6, "meters"),
  55886. name: "Side",
  55887. image: {
  55888. source: "./media/characters/plum/side.svg",
  55889. extra: 858/755,
  55890. bottom: 45/903
  55891. },
  55892. form: "taur",
  55893. default: true
  55894. },
  55895. back: {
  55896. height: math.unit(6.3, "meters"),
  55897. name: "Back",
  55898. image: {
  55899. source: "./media/characters/plum/back.svg",
  55900. extra: 887/813,
  55901. bottom: 32/919
  55902. },
  55903. form: "taur",
  55904. },
  55905. feral: {
  55906. height: math.unit(5.5, "meter"),
  55907. name: "Front",
  55908. image: {
  55909. source: "./media/characters/plum/feral.svg",
  55910. extra: 568/403,
  55911. bottom: 51/619
  55912. },
  55913. form: "feral",
  55914. default: true
  55915. },
  55916. head: {
  55917. height: math.unit(1.46, "meter"),
  55918. name: "Head",
  55919. image: {
  55920. source: "./media/characters/plum/head.svg"
  55921. },
  55922. form: "taur"
  55923. },
  55924. tailTop: {
  55925. height: math.unit(5.6, "meter"),
  55926. name: "Tail (Top)",
  55927. image: {
  55928. source: "./media/characters/plum/tail-top.svg"
  55929. },
  55930. form: "taur",
  55931. },
  55932. tailBottom: {
  55933. height: math.unit(5.6, "meter"),
  55934. name: "Tail (Bottom)",
  55935. image: {
  55936. source: "./media/characters/plum/tail-bottom.svg"
  55937. },
  55938. form: "taur",
  55939. },
  55940. feralHead: {
  55941. height: math.unit(2.56549521, "meter"),
  55942. name: "Head",
  55943. image: {
  55944. source: "./media/characters/plum/head.svg"
  55945. },
  55946. form: "feral"
  55947. },
  55948. feralTailTop: {
  55949. height: math.unit(5.44728435, "meter"),
  55950. name: "Tail (Top)",
  55951. image: {
  55952. source: "./media/characters/plum/tail-top.svg"
  55953. },
  55954. form: "feral",
  55955. },
  55956. feralTailBottom: {
  55957. height: math.unit(5.44728435, "meter"),
  55958. name: "Tail (Bottom)",
  55959. image: {
  55960. source: "./media/characters/plum/tail-bottom.svg"
  55961. },
  55962. form: "feral",
  55963. },
  55964. },
  55965. [
  55966. {
  55967. name: "Normal",
  55968. height: math.unit(6, "meters"),
  55969. default: true,
  55970. form: "taur"
  55971. },
  55972. {
  55973. name: "Normal",
  55974. height: math.unit(5.5, "meters"),
  55975. default: true,
  55976. form: "feral"
  55977. },
  55978. ],
  55979. {
  55980. "taur": {
  55981. name: "Taur",
  55982. default: true
  55983. },
  55984. "feral": {
  55985. name: "Feral",
  55986. },
  55987. }
  55988. ))
  55989. characterMakers.push(() => makeCharacter(
  55990. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55991. {
  55992. front: {
  55993. height: math.unit(6, "feet"),
  55994. weight: math.unit(115, "lb"),
  55995. name: "Front",
  55996. image: {
  55997. source: "./media/characters/celeste-kitsune/front.svg",
  55998. extra: 393/366,
  55999. bottom: 7/400
  56000. }
  56001. },
  56002. side: {
  56003. height: math.unit(6, "feet"),
  56004. weight: math.unit(115, "lb"),
  56005. name: "Side",
  56006. image: {
  56007. source: "./media/characters/celeste-kitsune/side.svg",
  56008. extra: 818/765,
  56009. bottom: 40/858
  56010. }
  56011. },
  56012. },
  56013. [
  56014. {
  56015. name: "Megamacro",
  56016. height: math.unit(1500, "miles"),
  56017. default: true
  56018. },
  56019. ]
  56020. ))
  56021. characterMakers.push(() => makeCharacter(
  56022. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56023. {
  56024. front: {
  56025. height: math.unit(8, "meters"),
  56026. name: "Front",
  56027. image: {
  56028. source: "./media/characters/io/front.svg",
  56029. extra: 865/722,
  56030. bottom: 58/923
  56031. }
  56032. },
  56033. back: {
  56034. height: math.unit(8, "meters"),
  56035. name: "Back",
  56036. image: {
  56037. source: "./media/characters/io/back.svg",
  56038. extra: 920/776,
  56039. bottom: 42/962
  56040. }
  56041. },
  56042. head: {
  56043. height: math.unit(5.09, "meters"),
  56044. name: "Head",
  56045. image: {
  56046. source: "./media/characters/io/head.svg"
  56047. }
  56048. },
  56049. hand: {
  56050. height: math.unit(1.6, "meters"),
  56051. name: "Hand",
  56052. image: {
  56053. source: "./media/characters/io/hand.svg"
  56054. }
  56055. },
  56056. foot: {
  56057. height: math.unit(2.4, "meters"),
  56058. name: "Foot",
  56059. image: {
  56060. source: "./media/characters/io/foot.svg"
  56061. }
  56062. },
  56063. },
  56064. [
  56065. {
  56066. name: "Normal",
  56067. height: math.unit(8, "meters"),
  56068. default: true
  56069. },
  56070. ]
  56071. ))
  56072. characterMakers.push(() => makeCharacter(
  56073. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56074. {
  56075. side: {
  56076. height: math.unit(6 + 3/12, "feet"),
  56077. weight: math.unit(225, "lb"),
  56078. name: "Side",
  56079. image: {
  56080. source: "./media/characters/silas/side.svg",
  56081. extra: 703/653,
  56082. bottom: 23/726
  56083. },
  56084. extraAttributes: {
  56085. "pawLength": {
  56086. name: "Paw Length",
  56087. power: 1,
  56088. type: "length",
  56089. base: math.unit(12, "inches")
  56090. },
  56091. "pawWidth": {
  56092. name: "Paw Width",
  56093. power: 1,
  56094. type: "length",
  56095. base: math.unit(4.5, "inches")
  56096. },
  56097. "pawArea": {
  56098. name: "Paw Area",
  56099. power: 2,
  56100. type: "area",
  56101. base: math.unit(12 * 4.5, "inches^2")
  56102. },
  56103. }
  56104. },
  56105. },
  56106. [
  56107. {
  56108. name: "Normal",
  56109. height: math.unit(6 + 3/12, "feet"),
  56110. default: true
  56111. },
  56112. ]
  56113. ))
  56114. characterMakers.push(() => makeCharacter(
  56115. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56116. {
  56117. back: {
  56118. height: math.unit(1.6, "meters"),
  56119. weight: math.unit(150, "lb"),
  56120. name: "Back",
  56121. image: {
  56122. source: "./media/characters/zari/back.svg",
  56123. extra: 424/411,
  56124. bottom: 32/456
  56125. },
  56126. extraAttributes: {
  56127. "bladderCapacity": {
  56128. name: "Bladder Size",
  56129. power: 3,
  56130. type: "volume",
  56131. base: math.unit(500, "mL")
  56132. },
  56133. "bladderFlow": {
  56134. name: "Flow Rate",
  56135. power: 3,
  56136. type: "volume",
  56137. base: math.unit(25, "mL")
  56138. },
  56139. }
  56140. },
  56141. },
  56142. [
  56143. {
  56144. name: "Normal",
  56145. height: math.unit(1.6, "meters"),
  56146. default: true
  56147. },
  56148. ]
  56149. ))
  56150. characterMakers.push(() => makeCharacter(
  56151. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56152. {
  56153. front: {
  56154. height: math.unit(25, "feet"),
  56155. weight: math.unit(5, "tons"),
  56156. name: "Front",
  56157. image: {
  56158. source: "./media/characters/charlie-human/front.svg",
  56159. extra: 1870/1740,
  56160. bottom: 102/1972
  56161. },
  56162. extraAttributes: {
  56163. "dickLength": {
  56164. name: "Dick Length",
  56165. power: 1,
  56166. type: "length",
  56167. base: math.unit(9, "feet")
  56168. },
  56169. }
  56170. },
  56171. back: {
  56172. height: math.unit(25, "feet"),
  56173. weight: math.unit(5, "tons"),
  56174. name: "Back",
  56175. image: {
  56176. source: "./media/characters/charlie-human/back.svg",
  56177. extra: 1858/1733,
  56178. bottom: 105/1963
  56179. },
  56180. extraAttributes: {
  56181. "dickLength": {
  56182. name: "Dick Length",
  56183. power: 1,
  56184. type: "length",
  56185. base: math.unit(9, "feet")
  56186. },
  56187. }
  56188. },
  56189. },
  56190. [
  56191. {
  56192. name: "\"Normal\"",
  56193. height: math.unit(6 + 4/12, "feet")
  56194. },
  56195. {
  56196. name: "Big",
  56197. height: math.unit(25, "feet"),
  56198. default: true
  56199. },
  56200. ]
  56201. ))
  56202. characterMakers.push(() => makeCharacter(
  56203. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56204. {
  56205. front: {
  56206. height: math.unit(6 + 4/12, "feet"),
  56207. weight: math.unit(320, "lb"),
  56208. name: "Front",
  56209. image: {
  56210. source: "./media/characters/ookitsu/front.svg",
  56211. extra: 1160/976,
  56212. bottom: 38/1198
  56213. }
  56214. },
  56215. frontNsfw: {
  56216. height: math.unit(6 + 4/12, "feet"),
  56217. weight: math.unit(320, "lb"),
  56218. name: "Front (NSFW)",
  56219. image: {
  56220. source: "./media/characters/ookitsu/front-nsfw.svg",
  56221. extra: 1160/976,
  56222. bottom: 38/1198
  56223. }
  56224. },
  56225. back: {
  56226. height: math.unit(6 + 4/12, "feet"),
  56227. weight: math.unit(320, "lb"),
  56228. name: "Back",
  56229. image: {
  56230. source: "./media/characters/ookitsu/back.svg",
  56231. extra: 1030/975,
  56232. bottom: 70/1100
  56233. }
  56234. },
  56235. head: {
  56236. height: math.unit(1.79, "feet"),
  56237. name: "Head",
  56238. image: {
  56239. source: "./media/characters/ookitsu/head.svg"
  56240. }
  56241. },
  56242. hand: {
  56243. height: math.unit(0.92, "feet"),
  56244. name: "Hand",
  56245. image: {
  56246. source: "./media/characters/ookitsu/hand.svg"
  56247. }
  56248. },
  56249. tails: {
  56250. height: math.unit(3.3, "feet"),
  56251. name: "Tails",
  56252. image: {
  56253. source: "./media/characters/ookitsu/tails.svg"
  56254. }
  56255. },
  56256. dick: {
  56257. height: math.unit(1.10833, "feet"),
  56258. name: "Dick",
  56259. image: {
  56260. source: "./media/characters/ookitsu/dick.svg"
  56261. }
  56262. },
  56263. },
  56264. [
  56265. {
  56266. name: "Normal",
  56267. height: math.unit(6 + 4/12, "feet"),
  56268. default: true
  56269. },
  56270. {
  56271. name: "Macro",
  56272. height: math.unit(30, "feet")
  56273. },
  56274. ]
  56275. ))
  56276. characterMakers.push(() => makeCharacter(
  56277. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56278. {
  56279. anthroFront: {
  56280. height: math.unit(6, "feet"),
  56281. weight: math.unit(250, "lb"),
  56282. name: "Front",
  56283. image: {
  56284. source: "./media/characters/jhusky/anthro-front.svg",
  56285. extra: 474/439,
  56286. bottom: 7/481
  56287. },
  56288. form: "anthro",
  56289. default: true
  56290. },
  56291. taurSideSfw: {
  56292. height: math.unit(6 + 4/12, "feet"),
  56293. weight: math.unit(500, "lb"),
  56294. name: "Side (SFW)",
  56295. image: {
  56296. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56297. extra: 1741/1629,
  56298. bottom: 196/1937
  56299. },
  56300. form: "taur",
  56301. default: true
  56302. },
  56303. taurSideNsfw: {
  56304. height: math.unit(6 + 4/12, "feet"),
  56305. weight: math.unit(500, "lb"),
  56306. name: "Taur (NSFW)",
  56307. image: {
  56308. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56309. extra: 1741/1629,
  56310. bottom: 196/1937
  56311. },
  56312. form: "taur",
  56313. },
  56314. },
  56315. [
  56316. {
  56317. name: "Huge",
  56318. height: math.unit(500, "feet"),
  56319. form: "anthro"
  56320. },
  56321. {
  56322. name: "Macro",
  56323. height: math.unit(1000, "feet"),
  56324. default: true,
  56325. form: "anthro"
  56326. },
  56327. {
  56328. name: "Megamacro",
  56329. height: math.unit(10000, "feet"),
  56330. form: "anthro"
  56331. },
  56332. {
  56333. name: "Huge",
  56334. height: math.unit(528, "feet"),
  56335. form: "taur"
  56336. },
  56337. {
  56338. name: "Macro",
  56339. height: math.unit(1056, "feet"),
  56340. default: true,
  56341. form: "taur"
  56342. },
  56343. {
  56344. name: "Megamacro",
  56345. height: math.unit(10556, "feet"),
  56346. form: "taur"
  56347. },
  56348. ],
  56349. {
  56350. "anthro": {
  56351. name: "Anthro",
  56352. default: true
  56353. },
  56354. "taur": {
  56355. name: "Taur",
  56356. },
  56357. }
  56358. ))
  56359. characterMakers.push(() => makeCharacter(
  56360. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56361. {
  56362. front: {
  56363. height: math.unit(8, "feet"),
  56364. weight: math.unit(500, "lb"),
  56365. name: "Front",
  56366. image: {
  56367. source: "./media/characters/armail/front.svg",
  56368. extra: 1753/1669,
  56369. bottom: 155/1908
  56370. }
  56371. },
  56372. back: {
  56373. height: math.unit(8, "feet"),
  56374. weight: math.unit(500, "lb"),
  56375. name: "Back",
  56376. image: {
  56377. source: "./media/characters/armail/back.svg",
  56378. extra: 1872/1803,
  56379. bottom: 63/1935
  56380. }
  56381. },
  56382. },
  56383. [
  56384. {
  56385. name: "Micro",
  56386. height: math.unit(0.25, "feet")
  56387. },
  56388. {
  56389. name: "Normal",
  56390. height: math.unit(8, "feet"),
  56391. default: true
  56392. },
  56393. {
  56394. name: "Mini-macro",
  56395. height: math.unit(30, "feet")
  56396. },
  56397. {
  56398. name: "Macro",
  56399. height: math.unit(400, "feet")
  56400. },
  56401. {
  56402. name: "Mega-macro",
  56403. height: math.unit(6000, "feet")
  56404. },
  56405. ]
  56406. ))
  56407. characterMakers.push(() => makeCharacter(
  56408. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56409. {
  56410. front: {
  56411. height: math.unit(6 + 7/12, "feet"),
  56412. weight: math.unit(210, "lb"),
  56413. name: "Front",
  56414. image: {
  56415. source: "./media/characters/wilfred-t-buxton/front.svg",
  56416. extra: 1068/882,
  56417. bottom: 28/1096
  56418. }
  56419. },
  56420. },
  56421. [
  56422. {
  56423. name: "Normal",
  56424. height: math.unit(6 + 7/12, "feet"),
  56425. default: true
  56426. },
  56427. ]
  56428. ))
  56429. characterMakers.push(() => makeCharacter(
  56430. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56431. {
  56432. front: {
  56433. height: math.unit(5 + 2/12, "feet"),
  56434. weight: math.unit(120, "lb"),
  56435. name: "Front",
  56436. image: {
  56437. source: "./media/characters/leighton-marrow/front.svg",
  56438. extra: 441/409,
  56439. bottom: 37/478
  56440. }
  56441. },
  56442. },
  56443. [
  56444. {
  56445. name: "Normal",
  56446. height: math.unit(5 + 2/12, "feet"),
  56447. default: true
  56448. },
  56449. ]
  56450. ))
  56451. characterMakers.push(() => makeCharacter(
  56452. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56453. {
  56454. front: {
  56455. height: math.unit(4, "meters"),
  56456. weight: math.unit(1200, "kg"),
  56457. name: "Front",
  56458. image: {
  56459. source: "./media/characters/licos/front.svg",
  56460. extra: 1727/1604,
  56461. bottom: 101/1828
  56462. },
  56463. form: "anthro",
  56464. default: true
  56465. },
  56466. taur_side: {
  56467. height: math.unit(20, "meters"),
  56468. weight: math.unit(1100000, "kg"),
  56469. name: "Side",
  56470. image: {
  56471. source: "./media/characters/licos/taur.svg",
  56472. extra: 1158/1091,
  56473. bottom: 80/1238
  56474. },
  56475. form: "taur",
  56476. default: true
  56477. },
  56478. },
  56479. [
  56480. {
  56481. name: "Normal",
  56482. height: math.unit(4, "meters"),
  56483. default: true,
  56484. form: "anthro"
  56485. },
  56486. {
  56487. name: "Normal",
  56488. height: math.unit(20, "meters"),
  56489. default: true,
  56490. form: "taur"
  56491. },
  56492. ],
  56493. {
  56494. "anthro": {
  56495. name: "Anthro",
  56496. default: true
  56497. },
  56498. "taur": {
  56499. name: "Taur",
  56500. },
  56501. }
  56502. ))
  56503. characterMakers.push(() => makeCharacter(
  56504. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56505. {
  56506. front: {
  56507. height: math.unit(10 + 3/12, "feet"),
  56508. name: "Front",
  56509. image: {
  56510. source: "./media/characters/theo-monkey/front.svg",
  56511. extra: 1735/1658,
  56512. bottom: 73/1808
  56513. }
  56514. },
  56515. back: {
  56516. height: math.unit(10 + 3/12, "feet"),
  56517. name: "Back",
  56518. image: {
  56519. source: "./media/characters/theo-monkey/back.svg",
  56520. extra: 1742/1664,
  56521. bottom: 33/1775
  56522. }
  56523. },
  56524. head: {
  56525. height: math.unit(2.29, "feet"),
  56526. name: "Head",
  56527. image: {
  56528. source: "./media/characters/theo-monkey/head.svg"
  56529. }
  56530. },
  56531. handPalm: {
  56532. height: math.unit(1.73, "feet"),
  56533. name: "Hand (Palm)",
  56534. image: {
  56535. source: "./media/characters/theo-monkey/hand-palm.svg"
  56536. }
  56537. },
  56538. handBack: {
  56539. height: math.unit(1.63, "feet"),
  56540. name: "Hand (Back)",
  56541. image: {
  56542. source: "./media/characters/theo-monkey/hand-back.svg"
  56543. }
  56544. },
  56545. footSole: {
  56546. height: math.unit(2.15, "feet"),
  56547. name: "Foot (Sole)",
  56548. image: {
  56549. source: "./media/characters/theo-monkey/foot-sole.svg"
  56550. }
  56551. },
  56552. footSide: {
  56553. height: math.unit(1.6, "feet"),
  56554. name: "Foot (Side)",
  56555. image: {
  56556. source: "./media/characters/theo-monkey/foot-side.svg"
  56557. }
  56558. },
  56559. },
  56560. [
  56561. {
  56562. name: "Normal",
  56563. height: math.unit(10 + 3/12, "feet"),
  56564. default: true
  56565. },
  56566. ]
  56567. ))
  56568. characterMakers.push(() => makeCharacter(
  56569. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56570. {
  56571. front: {
  56572. height: math.unit(11, "feet"),
  56573. weight: math.unit(3000, "lb"),
  56574. preyCapacity: math.unit(10, "people"),
  56575. name: "Front",
  56576. image: {
  56577. source: "./media/characters/brook/front.svg",
  56578. extra: 909/835,
  56579. bottom: 108/1017
  56580. }
  56581. },
  56582. back: {
  56583. height: math.unit(11, "feet"),
  56584. weight: math.unit(3000, "lb"),
  56585. preyCapacity: math.unit(10, "people"),
  56586. name: "Back",
  56587. image: {
  56588. source: "./media/characters/brook/back.svg",
  56589. extra: 976/916,
  56590. bottom: 34/1010
  56591. }
  56592. },
  56593. backAlt: {
  56594. height: math.unit(11, "feet"),
  56595. weight: math.unit(3000, "lb"),
  56596. preyCapacity: math.unit(10, "people"),
  56597. name: "Back (Alt)",
  56598. image: {
  56599. source: "./media/characters/brook/back-alt.svg",
  56600. extra: 1283/1213,
  56601. bottom: 35/1318
  56602. }
  56603. },
  56604. bust: {
  56605. height: math.unit(9.0859030837, "feet"),
  56606. weight: math.unit(3000, "lb"),
  56607. preyCapacity: math.unit(10, "people"),
  56608. name: "Bust",
  56609. image: {
  56610. source: "./media/characters/brook/bust.svg",
  56611. extra: 2043/1923,
  56612. bottom: 0/2043
  56613. }
  56614. },
  56615. },
  56616. [
  56617. {
  56618. name: "Small",
  56619. height: math.unit(11, "feet"),
  56620. default: true
  56621. },
  56622. {
  56623. name: "Towering",
  56624. height: math.unit(5, "km")
  56625. },
  56626. {
  56627. name: "Enormous",
  56628. height: math.unit(25, "earths")
  56629. },
  56630. ]
  56631. ))
  56632. characterMakers.push(() => makeCharacter(
  56633. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56634. {
  56635. front: {
  56636. height: math.unit(4, "feet"),
  56637. weight: math.unit(150, "lb"),
  56638. name: "Front",
  56639. image: {
  56640. source: "./media/characters/squishi/front.svg",
  56641. extra: 1428/1271,
  56642. bottom: 30/1458
  56643. },
  56644. extraAttributes: {
  56645. "pawSize": {
  56646. name: "Paw Size",
  56647. power: 1,
  56648. type: "length",
  56649. base: math.unit(14, "ShoeSizeMensUS"),
  56650. defaultUnit: "ShoeSizeMensUS"
  56651. },
  56652. }
  56653. },
  56654. side: {
  56655. height: math.unit(4, "feet"),
  56656. weight: math.unit(150, "lb"),
  56657. name: "Side",
  56658. image: {
  56659. source: "./media/characters/squishi/side.svg",
  56660. extra: 1428/1271,
  56661. bottom: 30/1458
  56662. },
  56663. extraAttributes: {
  56664. "pawSize": {
  56665. name: "Paw Size",
  56666. power: 1,
  56667. type: "length",
  56668. base: math.unit(14, "ShoeSizeMensUS"),
  56669. defaultUnit: "ShoeSizeMensUS"
  56670. },
  56671. }
  56672. },
  56673. back: {
  56674. height: math.unit(4, "feet"),
  56675. weight: math.unit(150, "lb"),
  56676. name: "Back",
  56677. image: {
  56678. source: "./media/characters/squishi/back.svg",
  56679. extra: 1428/1271,
  56680. bottom: 30/1458
  56681. },
  56682. extraAttributes: {
  56683. "pawSize": {
  56684. name: "Paw Size",
  56685. power: 1,
  56686. type: "length",
  56687. base: math.unit(14, "ShoeSizeMensUS"),
  56688. defaultUnit: "ShoeSizeMensUS"
  56689. },
  56690. }
  56691. },
  56692. },
  56693. [
  56694. {
  56695. name: "Normal",
  56696. height: math.unit(4, "feet"),
  56697. default: true
  56698. },
  56699. ]
  56700. ))
  56701. characterMakers.push(() => makeCharacter(
  56702. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56703. {
  56704. front: {
  56705. height: math.unit(7 + 8/12, "feet"),
  56706. weight: math.unit(333, "lb"),
  56707. name: "Front",
  56708. image: {
  56709. source: "./media/characters/vincent-vasroc/front.svg",
  56710. extra: 1962/1860,
  56711. bottom: 41/2003
  56712. }
  56713. },
  56714. back: {
  56715. height: math.unit(7 + 8/12, "feet"),
  56716. weight: math.unit(333, "lb"),
  56717. name: "Back",
  56718. image: {
  56719. source: "./media/characters/vincent-vasroc/back.svg",
  56720. extra: 1952/1815,
  56721. bottom: 33/1985
  56722. }
  56723. },
  56724. paw: {
  56725. height: math.unit(1.24, "feet"),
  56726. name: "Paw",
  56727. image: {
  56728. source: "./media/characters/vincent-vasroc/paw.svg"
  56729. }
  56730. },
  56731. ear: {
  56732. height: math.unit(0.75, "feet"),
  56733. name: "Ear",
  56734. image: {
  56735. source: "./media/characters/vincent-vasroc/ear.svg"
  56736. }
  56737. },
  56738. },
  56739. [
  56740. {
  56741. name: "Nano",
  56742. height: math.unit(92, "micrometers")
  56743. },
  56744. {
  56745. name: "Normal",
  56746. height: math.unit(7 + 8/12, "feet"),
  56747. default: true
  56748. },
  56749. ]
  56750. ))
  56751. characterMakers.push(() => makeCharacter(
  56752. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56753. {
  56754. frontNsfw: {
  56755. height: math.unit(40, "feet"),
  56756. weight: math.unit(58, "tons"),
  56757. name: "Front (NSFW)",
  56758. image: {
  56759. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56760. extra: 1265/965,
  56761. bottom: 155/1420
  56762. }
  56763. },
  56764. frontSfw: {
  56765. height: math.unit(40, "feet"),
  56766. weight: math.unit(58, "tons"),
  56767. name: "Front (SFW)",
  56768. image: {
  56769. source: "./media/characters/ru-kahn/front-sfw.svg",
  56770. extra: 1265/965,
  56771. bottom: 80/1345
  56772. }
  56773. },
  56774. },
  56775. [
  56776. {
  56777. name: "Small",
  56778. height: math.unit(4, "feet")
  56779. },
  56780. {
  56781. name: "Normal",
  56782. height: math.unit(40, "feet"),
  56783. default: true
  56784. },
  56785. {
  56786. name: "Macro",
  56787. height: math.unit(400, "feet")
  56788. },
  56789. ]
  56790. ))
  56791. characterMakers.push(() => makeCharacter(
  56792. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56793. {
  56794. frontNude: {
  56795. height: math.unit(6 + 5/12, "feet"),
  56796. name: "Front (Nude)",
  56797. image: {
  56798. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56799. extra: 1369/1366,
  56800. bottom: 68/1437
  56801. }
  56802. },
  56803. frontDressed: {
  56804. height: math.unit(6 + 5/12, "feet"),
  56805. name: "Front (Dressed)",
  56806. image: {
  56807. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56808. extra: 1369/1366,
  56809. bottom: 68/1437
  56810. }
  56811. },
  56812. },
  56813. [
  56814. {
  56815. name: "Normal",
  56816. height: math.unit(6 + 5/12, "feet"),
  56817. default: true
  56818. },
  56819. {
  56820. name: "Maximum",
  56821. height: math.unit(1930, "feet")
  56822. },
  56823. ]
  56824. ))
  56825. characterMakers.push(() => makeCharacter(
  56826. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56827. {
  56828. front: {
  56829. height: math.unit(5 + 6/12, "feet"),
  56830. name: "Front",
  56831. image: {
  56832. source: "./media/characters/kaja/front.svg",
  56833. extra: 1874/1514,
  56834. bottom: 117/1991
  56835. }
  56836. },
  56837. },
  56838. [
  56839. {
  56840. name: "Normal",
  56841. height: math.unit(5 + 6/12, "feet"),
  56842. default: true
  56843. },
  56844. ]
  56845. ))
  56846. characterMakers.push(() => makeCharacter(
  56847. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56848. {
  56849. front: {
  56850. height: math.unit(5 + 9/12, "feet"),
  56851. weight: math.unit(200, "lb"),
  56852. name: "Front",
  56853. image: {
  56854. source: "./media/characters/mark-smith/front.svg",
  56855. extra: 1004/943,
  56856. bottom: 58/1062
  56857. }
  56858. },
  56859. back: {
  56860. height: math.unit(5 + 9/12, "feet"),
  56861. weight: math.unit(200, "lb"),
  56862. name: "Back",
  56863. image: {
  56864. source: "./media/characters/mark-smith/back.svg",
  56865. extra: 1023/953,
  56866. bottom: 24/1047
  56867. }
  56868. },
  56869. head: {
  56870. height: math.unit(1.82, "feet"),
  56871. name: "Head",
  56872. image: {
  56873. source: "./media/characters/mark-smith/head.svg"
  56874. }
  56875. },
  56876. hand: {
  56877. height: math.unit(1.4, "feet"),
  56878. name: "Hand",
  56879. image: {
  56880. source: "./media/characters/mark-smith/hand.svg"
  56881. }
  56882. },
  56883. paw: {
  56884. height: math.unit(1.69, "feet"),
  56885. name: "Paw",
  56886. image: {
  56887. source: "./media/characters/mark-smith/paw.svg"
  56888. }
  56889. },
  56890. },
  56891. [
  56892. {
  56893. name: "Micro",
  56894. height: math.unit(0.25, "inches")
  56895. },
  56896. {
  56897. name: "Normal",
  56898. height: math.unit(5 + 9/12, "feet"),
  56899. default: true
  56900. },
  56901. {
  56902. name: "Macro",
  56903. height: math.unit(500, "feet")
  56904. },
  56905. ]
  56906. ))
  56907. characterMakers.push(() => makeCharacter(
  56908. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56909. {
  56910. frontNude: {
  56911. height: math.unit(6, "feet"),
  56912. name: "Front (Nude)",
  56913. image: {
  56914. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56915. extra: 1384/1321,
  56916. bottom: 57/1441
  56917. }
  56918. },
  56919. frontDressed: {
  56920. height: math.unit(6, "feet"),
  56921. name: "Front (Dressed)",
  56922. image: {
  56923. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56924. extra: 1384/1321,
  56925. bottom: 57/1441
  56926. }
  56927. },
  56928. },
  56929. [
  56930. {
  56931. name: "Normal",
  56932. height: math.unit(6, "feet"),
  56933. default: true
  56934. },
  56935. {
  56936. name: "Maximum",
  56937. height: math.unit(1776, "feet")
  56938. },
  56939. ]
  56940. ))
  56941. characterMakers.push(() => makeCharacter(
  56942. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56943. {
  56944. front: {
  56945. height: math.unit(2 + 4/12, "feet"),
  56946. weight: math.unit(350, "lb"),
  56947. name: "Front",
  56948. image: {
  56949. source: "./media/characters/devos/front.svg",
  56950. extra: 958/852,
  56951. bottom: 143/1101
  56952. }
  56953. },
  56954. },
  56955. [
  56956. {
  56957. name: "Base",
  56958. height: math.unit(2 + 4/12, "feet"),
  56959. default: true
  56960. },
  56961. ]
  56962. ))
  56963. characterMakers.push(() => makeCharacter(
  56964. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56965. {
  56966. front: {
  56967. height: math.unit(9 + 2/12, "feet"),
  56968. name: "Front",
  56969. image: {
  56970. source: "./media/characters/hiveheart/front.svg",
  56971. extra: 394/364,
  56972. bottom: 65/459
  56973. }
  56974. },
  56975. back: {
  56976. height: math.unit(9 + 2/12, "feet"),
  56977. name: "Back",
  56978. image: {
  56979. source: "./media/characters/hiveheart/back.svg",
  56980. extra: 374/357,
  56981. bottom: 63/437
  56982. }
  56983. },
  56984. },
  56985. [
  56986. {
  56987. name: "Base",
  56988. height: math.unit(9 + 2/12, "feet"),
  56989. default: true
  56990. },
  56991. ]
  56992. ))
  56993. characterMakers.push(() => makeCharacter(
  56994. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56995. {
  56996. front: {
  56997. height: math.unit(2.5, "inches"),
  56998. weight: math.unit(0.6, "oz"),
  56999. name: "Front",
  57000. image: {
  57001. source: "./media/characters/bryn/front.svg",
  57002. extra: 1484/1119,
  57003. bottom: 66/1550
  57004. }
  57005. },
  57006. back: {
  57007. height: math.unit(2.5, "inches"),
  57008. weight: math.unit(0.6, "oz"),
  57009. name: "Back",
  57010. image: {
  57011. source: "./media/characters/bryn/back.svg",
  57012. extra: 1472/1170,
  57013. bottom: 32/1504
  57014. }
  57015. },
  57016. wings: {
  57017. height: math.unit(2.5, "inches"),
  57018. weight: math.unit(0.6, "oz"),
  57019. name: "Wings",
  57020. image: {
  57021. source: "./media/characters/bryn/wings.svg",
  57022. extra: 567/448,
  57023. bottom: 10/577
  57024. }
  57025. },
  57026. dressed: {
  57027. height: math.unit(2.5, "inches"),
  57028. weight: math.unit(0.6, "oz"),
  57029. name: "Dressed",
  57030. image: {
  57031. source: "./media/characters/bryn/dressed.svg",
  57032. extra: 719/589,
  57033. bottom: 54/773
  57034. }
  57035. },
  57036. head: {
  57037. height: math.unit(1.75, "inches"),
  57038. name: "Head",
  57039. image: {
  57040. source: "./media/characters/bryn/head.svg"
  57041. }
  57042. },
  57043. foot: {
  57044. height: math.unit(0.4, "inches"),
  57045. name: "Foot",
  57046. image: {
  57047. source: "./media/characters/bryn/foot.svg"
  57048. }
  57049. },
  57050. },
  57051. [
  57052. {
  57053. name: "Normal",
  57054. height: math.unit(2.5, "inches"),
  57055. default: true
  57056. },
  57057. ]
  57058. ))
  57059. characterMakers.push(() => makeCharacter(
  57060. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57061. {
  57062. side: {
  57063. height: math.unit(7, "feet"),
  57064. weight: math.unit(657, "kg"),
  57065. name: "Side",
  57066. image: {
  57067. source: "./media/characters/delta/side.svg",
  57068. extra: 781/212,
  57069. bottom: 7/788
  57070. },
  57071. extraAttributes: {
  57072. "wingspan": {
  57073. name: "Wingspan",
  57074. power: 1,
  57075. type: "length",
  57076. base: math.unit(48, "feet")
  57077. },
  57078. "length": {
  57079. name: "Length",
  57080. power: 1,
  57081. type: "length",
  57082. base: math.unit(21, "feet")
  57083. },
  57084. "pawSize": {
  57085. name: "Paw Size",
  57086. power: 2,
  57087. type: "area",
  57088. base: math.unit(1.5*1.4, "feet^2")
  57089. },
  57090. }
  57091. },
  57092. },
  57093. [
  57094. {
  57095. name: "Normal",
  57096. height: math.unit(6, "feet"),
  57097. default: true
  57098. },
  57099. ]
  57100. ))
  57101. characterMakers.push(() => makeCharacter(
  57102. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57103. {
  57104. front: {
  57105. height: math.unit(6, "feet"),
  57106. name: "Front",
  57107. image: {
  57108. source: "./media/characters/pyrow/front.svg",
  57109. extra: 513/486,
  57110. bottom: 14/527
  57111. }
  57112. },
  57113. frontWing: {
  57114. height: math.unit(6, "feet"),
  57115. name: "Front (Wing)",
  57116. image: {
  57117. source: "./media/characters/pyrow/front-wing.svg",
  57118. extra: 539/383,
  57119. bottom: 20/559
  57120. }
  57121. },
  57122. back: {
  57123. height: math.unit(6, "feet"),
  57124. name: "Back",
  57125. image: {
  57126. source: "./media/characters/pyrow/back.svg",
  57127. extra: 500/473,
  57128. bottom: 9/509
  57129. }
  57130. },
  57131. },
  57132. [
  57133. {
  57134. name: "Normal",
  57135. height: math.unit(6, "feet"),
  57136. default: true
  57137. },
  57138. ]
  57139. ))
  57140. characterMakers.push(() => makeCharacter(
  57141. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57142. {
  57143. front: {
  57144. height: math.unit(5, "meters"),
  57145. weight: math.unit(3, "tonnes"),
  57146. name: "Front",
  57147. image: {
  57148. source: "./media/characters/velikan/front.svg",
  57149. extra: 867/744,
  57150. bottom: 71/938
  57151. },
  57152. extraAttributes: {
  57153. "shoeSize": {
  57154. name: "Shoe Size",
  57155. power: 1,
  57156. type: "length",
  57157. base: math.unit(135, "ShoeSizeUK"),
  57158. defaultUnit: "ShoeSizeUK"
  57159. },
  57160. }
  57161. },
  57162. },
  57163. [
  57164. {
  57165. name: "Normal",
  57166. height: math.unit(5, "meters"),
  57167. default: true
  57168. },
  57169. {
  57170. name: "Macro",
  57171. height: math.unit(1, "km")
  57172. },
  57173. {
  57174. name: "Mega Macro",
  57175. height: math.unit(100, "km")
  57176. },
  57177. {
  57178. name: "Giga Macro",
  57179. height: math.unit(2, "megameters")
  57180. },
  57181. {
  57182. name: "Planetary",
  57183. height: math.unit(22, "megameters")
  57184. },
  57185. {
  57186. name: "Solar",
  57187. height: math.unit(8, "gigameters")
  57188. },
  57189. {
  57190. name: "Cosmic",
  57191. height: math.unit(10, "zettameters")
  57192. },
  57193. {
  57194. name: "Omni",
  57195. height: math.unit(9e260, "multiverses")
  57196. },
  57197. ]
  57198. ))
  57199. characterMakers.push(() => makeCharacter(
  57200. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57201. {
  57202. front: {
  57203. height: math.unit(4 + 3/12, "feet"),
  57204. weight: math.unit(90, "lb"),
  57205. name: "Front",
  57206. image: {
  57207. source: "./media/characters/sabiki/front.svg",
  57208. extra: 1662/1423,
  57209. bottom: 65/1727
  57210. }
  57211. },
  57212. },
  57213. [
  57214. {
  57215. name: "Normal",
  57216. height: math.unit(4 + 3/12, "feet"),
  57217. default: true
  57218. },
  57219. ]
  57220. ))
  57221. characterMakers.push(() => makeCharacter(
  57222. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57223. {
  57224. frontSfw: {
  57225. height: math.unit(2, "mm"),
  57226. name: "Front (SFW)",
  57227. image: {
  57228. source: "./media/characters/carmel/front-sfw.svg",
  57229. extra: 1131/1006,
  57230. bottom: 66/1197
  57231. }
  57232. },
  57233. frontNsfw: {
  57234. height: math.unit(2, "mm"),
  57235. name: "Front (NSFW)",
  57236. image: {
  57237. source: "./media/characters/carmel/front-nsfw.svg",
  57238. extra: 1131/1006,
  57239. bottom: 66/1197
  57240. }
  57241. },
  57242. foot: {
  57243. height: math.unit(0.3, "mm"),
  57244. name: "Foot",
  57245. image: {
  57246. source: "./media/characters/carmel/foot.svg"
  57247. }
  57248. },
  57249. tongue: {
  57250. height: math.unit(0.71, "mm"),
  57251. name: "Tongue",
  57252. image: {
  57253. source: "./media/characters/carmel/tongue.svg"
  57254. }
  57255. },
  57256. dick: {
  57257. height: math.unit(0.085, "mm"),
  57258. name: "Dick",
  57259. image: {
  57260. source: "./media/characters/carmel/dick.svg"
  57261. }
  57262. },
  57263. },
  57264. [
  57265. {
  57266. name: "Micro",
  57267. height: math.unit(2, "mm"),
  57268. default: true
  57269. },
  57270. {
  57271. name: "Normal",
  57272. height: math.unit(4 + 8/12, "feet")
  57273. },
  57274. {
  57275. name: "Mega Macro",
  57276. height: math.unit(250, "feet")
  57277. },
  57278. {
  57279. name: "BIGGER",
  57280. height: math.unit(1000, "feet")
  57281. },
  57282. {
  57283. name: "BIGGEST",
  57284. height: math.unit(2, "miles")
  57285. },
  57286. ]
  57287. ))
  57288. characterMakers.push(() => makeCharacter(
  57289. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57290. {
  57291. front: {
  57292. height: math.unit(6.5, "feet"),
  57293. weight: math.unit(198, "lb"),
  57294. name: "Front",
  57295. image: {
  57296. source: "./media/characters/tamani/anthro.svg",
  57297. extra: 930/890,
  57298. bottom: 34/964
  57299. },
  57300. form: "anthro",
  57301. default: true
  57302. },
  57303. side: {
  57304. height: math.unit(6, "feet"),
  57305. weight: math.unit(198*2, "lb"),
  57306. name: "Side",
  57307. image: {
  57308. source: "./media/characters/tamani/feral.svg",
  57309. extra: 559/519,
  57310. bottom: 43/602
  57311. },
  57312. form: "feral"
  57313. },
  57314. },
  57315. [
  57316. {
  57317. name: "Normal",
  57318. height: math.unit(6.5, "feet"),
  57319. default: true,
  57320. form: "anthro"
  57321. },
  57322. {
  57323. name: "Normal",
  57324. height: math.unit(6, "feet"),
  57325. default: true,
  57326. form: "feral"
  57327. },
  57328. ],
  57329. {
  57330. "anthro": {
  57331. name: "Anthro",
  57332. default: true
  57333. },
  57334. "feral": {
  57335. name: "Feral",
  57336. },
  57337. }
  57338. ))
  57339. characterMakers.push(() => makeCharacter(
  57340. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57341. {
  57342. front: {
  57343. height: math.unit(4 + 1/12, "feet"),
  57344. weight: math.unit(114, "lb"),
  57345. name: "Front",
  57346. image: {
  57347. source: "./media/characters/dex/front.svg",
  57348. extra: 787/680,
  57349. bottom: 18/805
  57350. }
  57351. },
  57352. side: {
  57353. height: math.unit(4 + 1/12, "feet"),
  57354. weight: math.unit(114, "lb"),
  57355. name: "Side",
  57356. image: {
  57357. source: "./media/characters/dex/side.svg",
  57358. extra: 785/680,
  57359. bottom: 12/797
  57360. }
  57361. },
  57362. back: {
  57363. height: math.unit(4 + 1/12, "feet"),
  57364. weight: math.unit(114, "lb"),
  57365. name: "Back",
  57366. image: {
  57367. source: "./media/characters/dex/back.svg",
  57368. extra: 785/681,
  57369. bottom: 17/802
  57370. }
  57371. },
  57372. loungewear: {
  57373. height: math.unit(4 + 1/12, "feet"),
  57374. weight: math.unit(114, "lb"),
  57375. name: "Loungewear",
  57376. image: {
  57377. source: "./media/characters/dex/loungewear.svg",
  57378. extra: 787/680,
  57379. bottom: 18/805
  57380. }
  57381. },
  57382. workout: {
  57383. height: math.unit(4 + 1/12, "feet"),
  57384. weight: math.unit(114, "lb"),
  57385. name: "Workout",
  57386. image: {
  57387. source: "./media/characters/dex/workout.svg",
  57388. extra: 787/680,
  57389. bottom: 18/805
  57390. }
  57391. },
  57392. schoolUniform: {
  57393. height: math.unit(4 + 1/12, "feet"),
  57394. weight: math.unit(114, "lb"),
  57395. name: "School-uniform",
  57396. image: {
  57397. source: "./media/characters/dex/school-uniform.svg",
  57398. extra: 787/680,
  57399. bottom: 18/805
  57400. }
  57401. },
  57402. maw: {
  57403. height: math.unit(0.55, "feet"),
  57404. name: "Maw",
  57405. image: {
  57406. source: "./media/characters/dex/maw.svg"
  57407. }
  57408. },
  57409. paw: {
  57410. height: math.unit(0.87, "feet"),
  57411. name: "Paw",
  57412. image: {
  57413. source: "./media/characters/dex/paw.svg"
  57414. }
  57415. },
  57416. bust: {
  57417. height: math.unit(1.67, "feet"),
  57418. name: "Bust",
  57419. image: {
  57420. source: "./media/characters/dex/bust.svg"
  57421. }
  57422. },
  57423. },
  57424. [
  57425. {
  57426. name: "Normal",
  57427. height: math.unit(4 + 1/12, "feet"),
  57428. default: true
  57429. },
  57430. ]
  57431. ))
  57432. characterMakers.push(() => makeCharacter(
  57433. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57434. {
  57435. front: {
  57436. height: math.unit(4 + 3/12, "feet"),
  57437. weight: math.unit(60, "lb"),
  57438. name: "Front",
  57439. image: {
  57440. source: "./media/characters/silke/front.svg",
  57441. extra: 1334/1122,
  57442. bottom: 21/1355
  57443. }
  57444. },
  57445. back: {
  57446. height: math.unit(4 + 3/12, "feet"),
  57447. weight: math.unit(60, "lb"),
  57448. name: "Back",
  57449. image: {
  57450. source: "./media/characters/silke/back.svg",
  57451. extra: 1328/1092,
  57452. bottom: 16/1344
  57453. }
  57454. },
  57455. dressed: {
  57456. height: math.unit(4 + 3/12, "feet"),
  57457. weight: math.unit(60, "lb"),
  57458. name: "Dressed",
  57459. image: {
  57460. source: "./media/characters/silke/dressed.svg",
  57461. extra: 1334/1122,
  57462. bottom: 43/1377
  57463. }
  57464. },
  57465. },
  57466. [
  57467. {
  57468. name: "Normal",
  57469. height: math.unit(4 + 3/12, "feet"),
  57470. default: true
  57471. },
  57472. ]
  57473. ))
  57474. characterMakers.push(() => makeCharacter(
  57475. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57476. {
  57477. front: {
  57478. height: math.unit(1.58, "meters"),
  57479. weight: math.unit(47, "kg"),
  57480. name: "Front",
  57481. image: {
  57482. source: "./media/characters/wireshark/front.svg",
  57483. extra: 883/838,
  57484. bottom: 66/949
  57485. }
  57486. },
  57487. },
  57488. [
  57489. {
  57490. name: "Normal",
  57491. height: math.unit(1.58, "meters"),
  57492. default: true
  57493. },
  57494. ]
  57495. ))
  57496. characterMakers.push(() => makeCharacter(
  57497. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57498. {
  57499. front: {
  57500. height: math.unit(6, "meters"),
  57501. weight: math.unit(15000, "kg"),
  57502. name: "Front",
  57503. image: {
  57504. source: "./media/characters/gallagher/front.svg",
  57505. extra: 532/493,
  57506. bottom: 0/532
  57507. }
  57508. },
  57509. },
  57510. [
  57511. {
  57512. name: "Normal",
  57513. height: math.unit(6, "meters"),
  57514. default: true
  57515. },
  57516. ]
  57517. ))
  57518. characterMakers.push(() => makeCharacter(
  57519. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57520. {
  57521. front: {
  57522. height: math.unit(2.4, "meters"),
  57523. weight: math.unit(270, "kg"),
  57524. name: "Front",
  57525. image: {
  57526. source: "./media/characters/alice/front.svg",
  57527. extra: 950/900,
  57528. bottom: 36/986
  57529. }
  57530. },
  57531. side: {
  57532. height: math.unit(2.4, "meters"),
  57533. weight: math.unit(270, "kg"),
  57534. name: "Side",
  57535. image: {
  57536. source: "./media/characters/alice/side.svg",
  57537. extra: 921/876,
  57538. bottom: 19/940
  57539. }
  57540. },
  57541. dressed: {
  57542. height: math.unit(2.4, "meters"),
  57543. weight: math.unit(270, "kg"),
  57544. name: "Dressed",
  57545. image: {
  57546. source: "./media/characters/alice/dressed.svg",
  57547. extra: 905/850,
  57548. bottom: 81/986
  57549. }
  57550. },
  57551. fishnet: {
  57552. height: math.unit(2.4, "meters"),
  57553. weight: math.unit(270, "kg"),
  57554. name: "Fishnet",
  57555. image: {
  57556. source: "./media/characters/alice/fishnet.svg",
  57557. extra: 905/850,
  57558. bottom: 81/986
  57559. }
  57560. },
  57561. },
  57562. [
  57563. {
  57564. name: "Normal",
  57565. height: math.unit(2.4, "meters"),
  57566. default: true
  57567. },
  57568. ]
  57569. ))
  57570. characterMakers.push(() => makeCharacter(
  57571. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57572. {
  57573. front: {
  57574. height: math.unit(175.25, "feet"),
  57575. name: "Front",
  57576. image: {
  57577. source: "./media/characters/fio/front.svg",
  57578. extra: 1883/1591,
  57579. bottom: 34/1917
  57580. }
  57581. },
  57582. },
  57583. [
  57584. {
  57585. name: "Normal",
  57586. height: math.unit(175.25, "cm"),
  57587. default: true
  57588. },
  57589. ]
  57590. ))
  57591. characterMakers.push(() => makeCharacter(
  57592. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57593. {
  57594. side: {
  57595. height: math.unit(6, "meters"),
  57596. weight: math.unit(3400, "kg"),
  57597. preyCapacity: math.unit(1700, "liters"),
  57598. name: "Side",
  57599. image: {
  57600. source: "./media/characters/hass/side.svg",
  57601. extra: 1058/997,
  57602. bottom: 177/1235
  57603. }
  57604. },
  57605. feeding: {
  57606. height: math.unit(6*0.63, "meters"),
  57607. weight: math.unit(3400, "kg"),
  57608. preyCapacity: math.unit(1700, "liters"),
  57609. name: "Feeding",
  57610. image: {
  57611. source: "./media/characters/hass/feeding.svg",
  57612. extra: 689/579,
  57613. bottom: 146/835
  57614. }
  57615. },
  57616. guts: {
  57617. height: math.unit(6, "meters"),
  57618. weight: math.unit(3400, "kg"),
  57619. name: "Guts",
  57620. image: {
  57621. source: "./media/characters/hass/guts.svg",
  57622. extra: 1223/1198,
  57623. bottom: 182/1405
  57624. }
  57625. },
  57626. dickFront: {
  57627. height: math.unit(1.4, "meters"),
  57628. name: "Dick (Front)",
  57629. image: {
  57630. source: "./media/characters/hass/dick-front.svg"
  57631. }
  57632. },
  57633. dickSide: {
  57634. height: math.unit(1.3, "meters"),
  57635. name: "Dick (Side)",
  57636. image: {
  57637. source: "./media/characters/hass/dick-side.svg"
  57638. }
  57639. },
  57640. dickBack: {
  57641. height: math.unit(1.4, "meters"),
  57642. name: "Dick (Back)",
  57643. image: {
  57644. source: "./media/characters/hass/dick-back.svg"
  57645. }
  57646. },
  57647. },
  57648. [
  57649. {
  57650. name: "Normal",
  57651. height: math.unit(6, "meters"),
  57652. default: true
  57653. },
  57654. ]
  57655. ))
  57656. characterMakers.push(() => makeCharacter(
  57657. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57658. {
  57659. front: {
  57660. height: math.unit(4, "feet"),
  57661. weight: math.unit(60, "lb"),
  57662. name: "Front",
  57663. image: {
  57664. source: "./media/characters/hickory-finnegan/front.svg",
  57665. extra: 444/411,
  57666. bottom: 10/454
  57667. }
  57668. },
  57669. side: {
  57670. height: math.unit(4, "feet"),
  57671. weight: math.unit(60, "lb"),
  57672. name: "Side",
  57673. image: {
  57674. source: "./media/characters/hickory-finnegan/side.svg",
  57675. extra: 444/411,
  57676. bottom: 10/454
  57677. }
  57678. },
  57679. back: {
  57680. height: math.unit(4, "feet"),
  57681. weight: math.unit(60, "lb"),
  57682. name: "Back",
  57683. image: {
  57684. source: "./media/characters/hickory-finnegan/back.svg",
  57685. extra: 444/411,
  57686. bottom: 10/454
  57687. }
  57688. },
  57689. },
  57690. [
  57691. {
  57692. name: "Normal",
  57693. height: math.unit(4, "feet"),
  57694. default: true
  57695. },
  57696. ]
  57697. ))
  57698. characterMakers.push(() => makeCharacter(
  57699. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57700. {
  57701. snivy_front: {
  57702. height: math.unit(2, "feet"),
  57703. weight: math.unit(17.9, "lb"),
  57704. name: "Front",
  57705. image: {
  57706. source: "./media/characters/robin-phox/snivy-front.svg",
  57707. extra: 569/504,
  57708. bottom: 33/602
  57709. },
  57710. form: "snivy",
  57711. default: true
  57712. },
  57713. snivy_frontNsfw: {
  57714. height: math.unit(2, "feet"),
  57715. weight: math.unit(17.9, "lb"),
  57716. name: "Front (NSFW)",
  57717. image: {
  57718. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57719. extra: 569/504,
  57720. bottom: 33/602
  57721. },
  57722. form: "snivy",
  57723. },
  57724. snivy_back: {
  57725. height: math.unit(2, "feet"),
  57726. weight: math.unit(17.9, "lb"),
  57727. name: "Back",
  57728. image: {
  57729. source: "./media/characters/robin-phox/snivy-back.svg",
  57730. extra: 577/508,
  57731. bottom: 21/598
  57732. },
  57733. form: "snivy",
  57734. },
  57735. snivy_foot: {
  57736. height: math.unit(0.68, "feet"),
  57737. name: "Foot",
  57738. image: {
  57739. source: "./media/characters/robin-phox/snivy-foot.svg"
  57740. },
  57741. form: "snivy",
  57742. },
  57743. snivy_sole: {
  57744. height: math.unit(0.68, "feet"),
  57745. name: "Sole",
  57746. image: {
  57747. source: "./media/characters/robin-phox/snivy-sole.svg"
  57748. },
  57749. form: "snivy",
  57750. },
  57751. yoshi_front: {
  57752. height: math.unit(6, "feet"),
  57753. weight: math.unit(150, "lb"),
  57754. name: "Front",
  57755. image: {
  57756. source: "./media/characters/robin-phox/yoshi-front.svg",
  57757. extra: 890/792,
  57758. bottom: 29/919
  57759. },
  57760. form: "yoshi",
  57761. default: true
  57762. },
  57763. yoshi_frontNsfw: {
  57764. height: math.unit(6, "feet"),
  57765. weight: math.unit(150, "lb"),
  57766. name: "Front (NSFW)",
  57767. image: {
  57768. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57769. extra: 890/792,
  57770. bottom: 29/919
  57771. },
  57772. form: "yoshi",
  57773. },
  57774. yoshi_back: {
  57775. height: math.unit(6, "feet"),
  57776. weight: math.unit(150, "lb"),
  57777. name: "Back",
  57778. image: {
  57779. source: "./media/characters/robin-phox/yoshi-back.svg",
  57780. extra: 890/792,
  57781. bottom: 29/919
  57782. },
  57783. form: "yoshi",
  57784. },
  57785. yoshi_foot: {
  57786. height: math.unit(1.5, "feet"),
  57787. name: "Foot",
  57788. image: {
  57789. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57790. },
  57791. form: "yoshi",
  57792. },
  57793. delphox_front: {
  57794. height: math.unit(4 + 11/12, "feet"),
  57795. weight: math.unit(86, "lb"),
  57796. name: "Front",
  57797. image: {
  57798. source: "./media/characters/robin-phox/delphox-front.svg",
  57799. extra: 1266/1069,
  57800. bottom: 32/1298
  57801. },
  57802. form: "delphox",
  57803. default: true
  57804. },
  57805. delphox_frontNsfw: {
  57806. height: math.unit(4 + 11/12, "feet"),
  57807. weight: math.unit(86, "lb"),
  57808. name: "Front (NSFW)",
  57809. image: {
  57810. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57811. extra: 1266/1069,
  57812. bottom: 32/1298
  57813. },
  57814. form: "delphox",
  57815. },
  57816. delphox_back: {
  57817. height: math.unit(4 + 11/12, "feet"),
  57818. weight: math.unit(86, "lb"),
  57819. name: "Back",
  57820. image: {
  57821. source: "./media/characters/robin-phox/delphox-back.svg",
  57822. extra: 1269/1083,
  57823. bottom: 15/1284
  57824. },
  57825. form: "delphox",
  57826. },
  57827. mienshao_front: {
  57828. height: math.unit(4 + 7/12, "feet"),
  57829. weight: math.unit(78.3, "lb"),
  57830. name: "Front",
  57831. image: {
  57832. source: "./media/characters/robin-phox/mienshao-front.svg",
  57833. extra: 1052/970,
  57834. bottom: 108/1160
  57835. },
  57836. form: "mienshao",
  57837. default: true
  57838. },
  57839. mienshao_frontNsfw: {
  57840. height: math.unit(4 + 7/12, "feet"),
  57841. weight: math.unit(78.3, "lb"),
  57842. name: "Front (NSFW)",
  57843. image: {
  57844. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57845. extra: 1052/970,
  57846. bottom: 108/1160
  57847. },
  57848. form: "mienshao",
  57849. },
  57850. mienshao_back: {
  57851. height: math.unit(4 + 7/12, "feet"),
  57852. weight: math.unit(78.3, "lb"),
  57853. name: "Back",
  57854. image: {
  57855. source: "./media/characters/robin-phox/mienshao-back.svg",
  57856. extra: 1102/982,
  57857. bottom: 32/1134
  57858. },
  57859. form: "mienshao",
  57860. },
  57861. inteleon_front: {
  57862. height: math.unit(6 + 3/12, "feet"),
  57863. weight: math.unit(99.6, "lb"),
  57864. name: "Front",
  57865. image: {
  57866. source: "./media/characters/robin-phox/inteleon-front.svg",
  57867. extra: 910/799,
  57868. bottom: 76/986
  57869. },
  57870. form: "inteleon",
  57871. default: true
  57872. },
  57873. inteleon_frontNsfw: {
  57874. height: math.unit(6 + 3/12, "feet"),
  57875. weight: math.unit(99.6, "lb"),
  57876. name: "Front (NSFW)",
  57877. image: {
  57878. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57879. extra: 910/799,
  57880. bottom: 76/986
  57881. },
  57882. form: "inteleon",
  57883. },
  57884. inteleon_back: {
  57885. height: math.unit(6 + 3/12, "feet"),
  57886. weight: math.unit(99.6, "lb"),
  57887. name: "Back",
  57888. image: {
  57889. source: "./media/characters/robin-phox/inteleon-back.svg",
  57890. extra: 907/796,
  57891. bottom: 25/932
  57892. },
  57893. form: "inteleon",
  57894. },
  57895. reshiram_front: {
  57896. height: math.unit(10 + 6/12, "feet"),
  57897. weight: math.unit(727.5, "lb"),
  57898. name: "Front",
  57899. image: {
  57900. source: "./media/characters/robin-phox/reshiram-front.svg",
  57901. extra: 1198/940,
  57902. bottom: 123/1321
  57903. },
  57904. form: "reshiram",
  57905. },
  57906. reshiram_frontNsfw: {
  57907. height: math.unit(10 + 6/12, "feet"),
  57908. weight: math.unit(727.5, "lb"),
  57909. name: "Front-nsfw",
  57910. image: {
  57911. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57912. extra: 1198/940,
  57913. bottom: 123/1321
  57914. },
  57915. form: "reshiram",
  57916. },
  57917. reshiram_back: {
  57918. height: math.unit(10 + 6/12, "feet"),
  57919. weight: math.unit(727.5, "lb"),
  57920. name: "Back",
  57921. image: {
  57922. source: "./media/characters/robin-phox/reshiram-back.svg",
  57923. extra: 1024/904,
  57924. bottom: 85/1109
  57925. },
  57926. form: "reshiram",
  57927. },
  57928. samurott_front: {
  57929. height: math.unit(8, "feet"),
  57930. weight: math.unit(208.6, "lb"),
  57931. name: "Front",
  57932. image: {
  57933. source: "./media/characters/robin-phox/samurott-front.svg",
  57934. extra: 1048/984,
  57935. bottom: 100/1148
  57936. },
  57937. form: "samurott",
  57938. },
  57939. samurott_frontNsfw: {
  57940. height: math.unit(8, "feet"),
  57941. weight: math.unit(208.6, "lb"),
  57942. name: "Front-nsfw",
  57943. image: {
  57944. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57945. extra: 1048/984,
  57946. bottom: 100/1148
  57947. },
  57948. form: "samurott",
  57949. },
  57950. samurott_back: {
  57951. height: math.unit(8, "feet"),
  57952. weight: math.unit(208.6, "lb"),
  57953. name: "Back",
  57954. image: {
  57955. source: "./media/characters/robin-phox/samurott-back.svg",
  57956. extra: 1110/1042,
  57957. bottom: 12/1122
  57958. },
  57959. form: "samurott",
  57960. },
  57961. samurott_feral: {
  57962. height: math.unit(4 + 11/12, "feet"),
  57963. weight: math.unit(208.6, "lb"),
  57964. name: "Feral",
  57965. image: {
  57966. source: "./media/characters/robin-phox/samurott-feral.svg",
  57967. extra: 766/681,
  57968. bottom: 108/874
  57969. },
  57970. form: "samurott",
  57971. },
  57972. },
  57973. [
  57974. {
  57975. name: "Normal",
  57976. height: math.unit(2, "feet"),
  57977. default: true,
  57978. form: "snivy"
  57979. },
  57980. {
  57981. name: "Normal",
  57982. height: math.unit(6, "feet"),
  57983. default: true,
  57984. form: "yoshi"
  57985. },
  57986. {
  57987. name: "Normal",
  57988. height: math.unit(4 + 11/12, "feet"),
  57989. default: true,
  57990. form: "delphox"
  57991. },
  57992. {
  57993. name: "Normal",
  57994. height: math.unit(4 + 7/12, "feet"),
  57995. default: true,
  57996. form: "mienshao"
  57997. },
  57998. {
  57999. name: "Normal",
  58000. height: math.unit(6 + 3/12, "feet"),
  58001. default: true,
  58002. form: "inteleon"
  58003. },
  58004. {
  58005. name: "Normal",
  58006. height: math.unit(10 + 6/12, "feet"),
  58007. default: true,
  58008. form: "reshiram"
  58009. },
  58010. {
  58011. name: "Normal",
  58012. height: math.unit(8, "feet"),
  58013. default: true,
  58014. form: "samurott"
  58015. },
  58016. {
  58017. name: "Macro",
  58018. height: math.unit(500, "feet"),
  58019. allForms: true
  58020. },
  58021. {
  58022. name: "Mega Macro",
  58023. height: math.unit(10, "earths"),
  58024. allForms: true
  58025. },
  58026. {
  58027. name: "Giga Macro",
  58028. height: math.unit(1, "galaxy"),
  58029. allForms: true
  58030. },
  58031. {
  58032. name: "Godly Macro",
  58033. height: math.unit(1e10, "multiverses"),
  58034. allForms: true
  58035. },
  58036. ],
  58037. {
  58038. "snivy": {
  58039. name: "Snivy",
  58040. default: true
  58041. },
  58042. "yoshi": {
  58043. name: "Yoshi",
  58044. },
  58045. "delphox": {
  58046. name: "Delphox",
  58047. },
  58048. "mienshao": {
  58049. name: "Mienshao",
  58050. },
  58051. "inteleon": {
  58052. name: "Inteleon",
  58053. },
  58054. "reshiram": {
  58055. name: "Reshiram",
  58056. },
  58057. "samurott": {
  58058. name: "Samurott",
  58059. },
  58060. }
  58061. ))
  58062. characterMakers.push(() => makeCharacter(
  58063. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58064. {
  58065. front: {
  58066. height: math.unit(4, "feet"),
  58067. name: "Front",
  58068. image: {
  58069. source: "./media/characters/ash-leung/front.svg",
  58070. extra: 1916/1792,
  58071. bottom: 50/1966
  58072. }
  58073. },
  58074. },
  58075. [
  58076. {
  58077. name: "Atomic",
  58078. height: math.unit(1, "angstrom")
  58079. },
  58080. {
  58081. name: "Microscopic",
  58082. height: math.unit(4000, "angstroms")
  58083. },
  58084. {
  58085. name: "Speck",
  58086. height: math.unit(1, "mm")
  58087. },
  58088. {
  58089. name: "Small",
  58090. height: math.unit(1, "inch")
  58091. },
  58092. {
  58093. name: "Normal",
  58094. height: math.unit(4, "feet"),
  58095. default: true
  58096. },
  58097. ]
  58098. ))
  58099. characterMakers.push(() => makeCharacter(
  58100. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58101. {
  58102. frontDressed: {
  58103. height: math.unit(2.08, "meters"),
  58104. weight: math.unit(175, "lb"),
  58105. name: "Front (Dressed)",
  58106. image: {
  58107. source: "./media/characters/carie/front-dressed.svg",
  58108. extra: 456/417,
  58109. bottom: 7/463
  58110. }
  58111. },
  58112. backDressed: {
  58113. height: math.unit(2.08, "meters"),
  58114. weight: math.unit(175, "lb"),
  58115. name: "Back (Dressed)",
  58116. image: {
  58117. source: "./media/characters/carie/back-dressed.svg",
  58118. extra: 455/414,
  58119. bottom: 11/466
  58120. }
  58121. },
  58122. front: {
  58123. height: math.unit(2, "meters"),
  58124. weight: math.unit(175, "lb"),
  58125. name: "Front",
  58126. image: {
  58127. source: "./media/characters/carie/front.svg",
  58128. extra: 438/399,
  58129. bottom: 12/450
  58130. }
  58131. },
  58132. back: {
  58133. height: math.unit(2, "meters"),
  58134. weight: math.unit(175, "lb"),
  58135. name: "Back",
  58136. image: {
  58137. source: "./media/characters/carie/back.svg",
  58138. extra: 438/397,
  58139. bottom: 7/445
  58140. }
  58141. },
  58142. },
  58143. [
  58144. {
  58145. name: "Normal",
  58146. height: math.unit(2.08, "meters"),
  58147. default: true
  58148. },
  58149. {
  58150. name: "Macro",
  58151. height: math.unit(2.08e3, "meters")
  58152. },
  58153. {
  58154. name: "Mega Macro",
  58155. height: math.unit(2.08e6, "meters")
  58156. },
  58157. {
  58158. name: "Giga Macro",
  58159. height: math.unit(2.08e9, "meters")
  58160. },
  58161. {
  58162. name: "Tera Macro",
  58163. height: math.unit(2.08e12, "meters")
  58164. },
  58165. {
  58166. name: "Peta Macro",
  58167. height: math.unit(2.08e15, "meters")
  58168. },
  58169. {
  58170. name: "Exa Macro",
  58171. height: math.unit(2.08e18, "meters")
  58172. },
  58173. {
  58174. name: "Zetta Macro",
  58175. height: math.unit(2.08e21, "meters")
  58176. },
  58177. {
  58178. name: "Yotta Macro",
  58179. height: math.unit(2.08e24, "meters")
  58180. },
  58181. ]
  58182. ))
  58183. characterMakers.push(() => makeCharacter(
  58184. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58185. {
  58186. front: {
  58187. height: math.unit(5 + 2/12, "feet"),
  58188. weight: math.unit(120, "lb"),
  58189. name: "Front",
  58190. image: {
  58191. source: "./media/characters/sai-bree/front.svg",
  58192. extra: 1843/1702,
  58193. bottom: 91/1934
  58194. }
  58195. },
  58196. back: {
  58197. height: math.unit(5 + 2/12, "feet"),
  58198. weight: math.unit(120, "lb"),
  58199. name: "Back",
  58200. image: {
  58201. source: "./media/characters/sai-bree/back.svg",
  58202. extra: 1809/1637,
  58203. bottom: 56/1865
  58204. }
  58205. },
  58206. },
  58207. [
  58208. {
  58209. name: "Normal",
  58210. height: math.unit(5 + 2/12, "feet"),
  58211. default: true
  58212. },
  58213. {
  58214. name: "Macro",
  58215. height: math.unit(500, "feet")
  58216. },
  58217. ]
  58218. ))
  58219. characterMakers.push(() => makeCharacter(
  58220. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58221. {
  58222. side: {
  58223. height: math.unit(0.77, "meters"),
  58224. weight: math.unit(120, "lb"),
  58225. name: "Side",
  58226. image: {
  58227. source: "./media/characters/davwyn/side.svg",
  58228. extra: 1557/1225,
  58229. bottom: 131/1688
  58230. }
  58231. },
  58232. front: {
  58233. height: math.unit(0.835410, "meters"),
  58234. weight: math.unit(120, "lb"),
  58235. name: "Front",
  58236. image: {
  58237. source: "./media/characters/davwyn/front.svg",
  58238. extra: 870/843,
  58239. bottom: 175/1045
  58240. }
  58241. },
  58242. },
  58243. [
  58244. {
  58245. name: "Minidrake",
  58246. height: math.unit(0.77/4, "meters")
  58247. },
  58248. {
  58249. name: "Normal",
  58250. height: math.unit(0.77, "meters"),
  58251. default: true
  58252. },
  58253. ]
  58254. ))
  58255. characterMakers.push(() => makeCharacter(
  58256. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58257. {
  58258. front: {
  58259. height: math.unit(10 + 3/12, "feet"),
  58260. weight: math.unit(2857, "lb"),
  58261. name: "Front",
  58262. image: {
  58263. source: "./media/characters/balans/front.svg",
  58264. extra: 427/402,
  58265. bottom: 26/453
  58266. }
  58267. },
  58268. side: {
  58269. height: math.unit(10 + 3/12, "feet"),
  58270. weight: math.unit(2857, "lb"),
  58271. name: "Side",
  58272. image: {
  58273. source: "./media/characters/balans/side.svg",
  58274. extra: 397/371,
  58275. bottom: 17/414
  58276. }
  58277. },
  58278. back: {
  58279. height: math.unit(10 + 3/12, "feet"),
  58280. weight: math.unit(2857, "lb"),
  58281. name: "Back",
  58282. image: {
  58283. source: "./media/characters/balans/back.svg",
  58284. extra: 408/381,
  58285. bottom: 14/422
  58286. }
  58287. },
  58288. hand: {
  58289. height: math.unit(1.15, "feet"),
  58290. name: "Hand",
  58291. image: {
  58292. source: "./media/characters/balans/hand.svg"
  58293. }
  58294. },
  58295. footRest: {
  58296. height: math.unit(3.1, "feet"),
  58297. name: "Foot (Rest)",
  58298. image: {
  58299. source: "./media/characters/balans/foot-rest.svg"
  58300. }
  58301. },
  58302. footActive: {
  58303. height: math.unit(3.5, "feet"),
  58304. name: "Foot (Active)",
  58305. image: {
  58306. source: "./media/characters/balans/foot-active.svg"
  58307. }
  58308. },
  58309. },
  58310. [
  58311. {
  58312. name: "Normal",
  58313. height: math.unit(10 + 3/12, "feet"),
  58314. default: true
  58315. },
  58316. ]
  58317. ))
  58318. characterMakers.push(() => makeCharacter(
  58319. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58320. {
  58321. side: {
  58322. height: math.unit(9, "meters"),
  58323. weight: math.unit(114, "tonnes"),
  58324. name: "Side",
  58325. image: {
  58326. source: "./media/characters/eldkveikir/side.svg",
  58327. extra: 1927/338,
  58328. bottom: 42/1969
  58329. }
  58330. },
  58331. sitting: {
  58332. height: math.unit(13.4, "meters"),
  58333. weight: math.unit(114, "tonnes"),
  58334. name: "Sitting",
  58335. image: {
  58336. source: "./media/characters/eldkveikir/sitting.svg",
  58337. extra: 1108/963,
  58338. bottom: 610/1718
  58339. }
  58340. },
  58341. maw: {
  58342. height: math.unit(8.36, "meters"),
  58343. name: "Maw",
  58344. image: {
  58345. source: "./media/characters/eldkveikir/maw.svg"
  58346. }
  58347. },
  58348. hand: {
  58349. height: math.unit(4.84, "meters"),
  58350. name: "Hand",
  58351. image: {
  58352. source: "./media/characters/eldkveikir/hand.svg"
  58353. }
  58354. },
  58355. foot: {
  58356. height: math.unit(6.9, "meters"),
  58357. name: "Foot",
  58358. image: {
  58359. source: "./media/characters/eldkveikir/foot.svg"
  58360. }
  58361. },
  58362. genitals: {
  58363. height: math.unit(9.6, "meters"),
  58364. name: "Genitals",
  58365. image: {
  58366. source: "./media/characters/eldkveikir/genitals.svg"
  58367. }
  58368. },
  58369. },
  58370. [
  58371. {
  58372. name: "Normal",
  58373. height: math.unit(9, "meters"),
  58374. default: true
  58375. },
  58376. ]
  58377. ))
  58378. characterMakers.push(() => makeCharacter(
  58379. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58380. {
  58381. front: {
  58382. height: math.unit(14, "feet"),
  58383. weight: math.unit(4100, "lb"),
  58384. name: "Front",
  58385. image: {
  58386. source: "./media/characters/arrow/front.svg",
  58387. extra: 330/318,
  58388. bottom: 56/386
  58389. }
  58390. },
  58391. },
  58392. [
  58393. {
  58394. name: "Normal",
  58395. height: math.unit(14, "feet"),
  58396. default: true
  58397. },
  58398. {
  58399. name: "Minimacro",
  58400. height: math.unit(63, "feet")
  58401. },
  58402. {
  58403. name: "Macro",
  58404. height: math.unit(630, "feet")
  58405. },
  58406. {
  58407. name: "Megamacro",
  58408. height: math.unit(12600, "feet")
  58409. },
  58410. {
  58411. name: "Gigamacro",
  58412. height: math.unit(18000, "miles")
  58413. },
  58414. ]
  58415. ))
  58416. characterMakers.push(() => makeCharacter(
  58417. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58418. {
  58419. front: {
  58420. height: math.unit(10, "feet"),
  58421. weight: math.unit(2.4, "tons"),
  58422. name: "Front",
  58423. image: {
  58424. source: "./media/characters/3yk-k0-unit/front.svg",
  58425. extra: 573/561,
  58426. bottom: 33/606
  58427. }
  58428. },
  58429. back: {
  58430. height: math.unit(10, "feet"),
  58431. weight: math.unit(2.4, "tons"),
  58432. name: "Back",
  58433. image: {
  58434. source: "./media/characters/3yk-k0-unit/back.svg",
  58435. extra: 614/573,
  58436. bottom: 32/646
  58437. }
  58438. },
  58439. maw: {
  58440. height: math.unit(2.15, "feet"),
  58441. name: "Maw",
  58442. image: {
  58443. source: "./media/characters/3yk-k0-unit/maw.svg"
  58444. }
  58445. },
  58446. },
  58447. [
  58448. {
  58449. name: "Normal",
  58450. height: math.unit(10, "feet"),
  58451. default: true
  58452. },
  58453. ]
  58454. ))
  58455. characterMakers.push(() => makeCharacter(
  58456. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58457. {
  58458. front: {
  58459. height: math.unit(8 + 8/12, "feet"),
  58460. name: "Front",
  58461. image: {
  58462. source: "./media/characters/nemo/front.svg",
  58463. extra: 1308/1217,
  58464. bottom: 57/1365
  58465. }
  58466. },
  58467. },
  58468. [
  58469. {
  58470. name: "Normal",
  58471. height: math.unit(8 + 8/12, "feet"),
  58472. default: true
  58473. },
  58474. ]
  58475. ))
  58476. characterMakers.push(() => makeCharacter(
  58477. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58478. {
  58479. front: {
  58480. height: math.unit(8, "feet"),
  58481. weight: math.unit(760, "lb"),
  58482. name: "Front",
  58483. image: {
  58484. source: "./media/characters/rexx/front.svg",
  58485. extra: 786/750,
  58486. bottom: 17/803
  58487. },
  58488. extraAttributes: {
  58489. "pawLength": {
  58490. name: "Paw Length",
  58491. power: 1,
  58492. type: "length",
  58493. base: math.unit(27, "inches")
  58494. },
  58495. }
  58496. },
  58497. },
  58498. [
  58499. {
  58500. name: "Micro",
  58501. height: math.unit(2, "inches")
  58502. },
  58503. {
  58504. name: "Normal",
  58505. height: math.unit(8, "feet"),
  58506. default: true
  58507. },
  58508. {
  58509. name: "Macro",
  58510. height: math.unit(150, "feet")
  58511. },
  58512. ]
  58513. ))
  58514. characterMakers.push(() => makeCharacter(
  58515. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58516. {
  58517. front: {
  58518. height: math.unit(18, "feet"),
  58519. weight: math.unit(1975, "lb"),
  58520. name: "Front",
  58521. image: {
  58522. source: "./media/characters/draco/front.svg",
  58523. extra: 1325/1241,
  58524. bottom: 83/1408
  58525. }
  58526. },
  58527. back: {
  58528. height: math.unit(18, "feet"),
  58529. weight: math.unit(1975, "lb"),
  58530. name: "Back",
  58531. image: {
  58532. source: "./media/characters/draco/back.svg",
  58533. extra: 1332/1250,
  58534. bottom: 43/1375
  58535. }
  58536. },
  58537. dick: {
  58538. height: math.unit(7.5, "feet"),
  58539. name: "Dick",
  58540. image: {
  58541. source: "./media/characters/draco/dick.svg"
  58542. }
  58543. },
  58544. },
  58545. [
  58546. {
  58547. name: "Normal",
  58548. height: math.unit(18, "feet"),
  58549. default: true
  58550. },
  58551. ]
  58552. ))
  58553. characterMakers.push(() => makeCharacter(
  58554. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58555. {
  58556. front: {
  58557. height: math.unit(3.2, "meters"),
  58558. name: "Front",
  58559. image: {
  58560. source: "./media/characters/harriett/front.svg",
  58561. extra: 1966/1915,
  58562. bottom: 9/1975
  58563. }
  58564. },
  58565. },
  58566. [
  58567. {
  58568. name: "Normal",
  58569. height: math.unit(3.2, "meters"),
  58570. default: true
  58571. },
  58572. ]
  58573. ))
  58574. characterMakers.push(() => makeCharacter(
  58575. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58576. {
  58577. standing: {
  58578. height: math.unit(180, "cm"),
  58579. weight: math.unit(185, "lb"),
  58580. name: "Standing",
  58581. image: {
  58582. source: "./media/characters/serpentus/standing.svg",
  58583. extra: 882/878,
  58584. bottom: 16/898
  58585. }
  58586. },
  58587. sitting: {
  58588. height: math.unit(0.8, "meter"),
  58589. weight: math.unit(155, "lb"),
  58590. name: "Sitting",
  58591. image: {
  58592. source: "./media/characters/serpentus/sitting.svg",
  58593. extra: 293/290,
  58594. bottom: 140/433
  58595. }
  58596. },
  58597. },
  58598. [
  58599. {
  58600. name: "Normal",
  58601. height: math.unit(1.8, "meter"),
  58602. default: true
  58603. },
  58604. ]
  58605. ))
  58606. characterMakers.push(() => makeCharacter(
  58607. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58608. {
  58609. front: {
  58610. height: math.unit(5.7174385736, "feet"),
  58611. name: "Front",
  58612. image: {
  58613. source: "./media/characters/nova-polecat/front.svg",
  58614. extra: 1317/1216,
  58615. bottom: 92/1409
  58616. }
  58617. },
  58618. },
  58619. [
  58620. {
  58621. name: "Normal",
  58622. height: math.unit(5.7174385736, "feet"),
  58623. default: true
  58624. },
  58625. ]
  58626. ))
  58627. characterMakers.push(() => makeCharacter(
  58628. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58629. {
  58630. front: {
  58631. height: math.unit(5 + 4/12, "feet"),
  58632. weight: math.unit(250, "lb"),
  58633. name: "Front",
  58634. image: {
  58635. source: "./media/characters/mook/front.svg",
  58636. extra: 1088/1037,
  58637. bottom: 132/1220
  58638. }
  58639. },
  58640. back: {
  58641. height: math.unit(5 + 1/12, "feet"),
  58642. weight: math.unit(250, "lb"),
  58643. name: "Back",
  58644. image: {
  58645. source: "./media/characters/mook/back.svg",
  58646. extra: 1184/905,
  58647. bottom: 96/1280
  58648. }
  58649. },
  58650. head: {
  58651. height: math.unit(1.85, "feet"),
  58652. name: "Head",
  58653. image: {
  58654. source: "./media/characters/mook/head.svg"
  58655. }
  58656. },
  58657. hand: {
  58658. height: math.unit(1.9, "feet"),
  58659. name: "Hand",
  58660. image: {
  58661. source: "./media/characters/mook/hand.svg"
  58662. }
  58663. },
  58664. palm: {
  58665. height: math.unit(1.84, "feet"),
  58666. name: "Palm",
  58667. image: {
  58668. source: "./media/characters/mook/palm.svg"
  58669. }
  58670. },
  58671. foot: {
  58672. height: math.unit(1.44, "feet"),
  58673. name: "Foot",
  58674. image: {
  58675. source: "./media/characters/mook/foot.svg"
  58676. }
  58677. },
  58678. sole: {
  58679. height: math.unit(1.44, "feet"),
  58680. name: "Sole",
  58681. image: {
  58682. source: "./media/characters/mook/sole.svg"
  58683. }
  58684. },
  58685. },
  58686. [
  58687. {
  58688. name: "Normal",
  58689. height: math.unit(5 + 4/12, "feet"),
  58690. default: true
  58691. },
  58692. {
  58693. name: "Big",
  58694. height: math.unit(12, "feet")
  58695. },
  58696. ]
  58697. ))
  58698. characterMakers.push(() => makeCharacter(
  58699. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58700. {
  58701. front: {
  58702. height: math.unit(6 + 10/12, "feet"),
  58703. weight: math.unit(233, "lb"),
  58704. name: "Front",
  58705. image: {
  58706. source: "./media/characters/kayla/front.svg",
  58707. extra: 1850/1775,
  58708. bottom: 65/1915
  58709. }
  58710. },
  58711. },
  58712. [
  58713. {
  58714. name: "Normal",
  58715. height: math.unit(6 + 10/12, "feet"),
  58716. default: true
  58717. },
  58718. {
  58719. name: "Amazonian",
  58720. height: math.unit(12 + 5/12, "feet")
  58721. },
  58722. {
  58723. name: "Mini Giantess",
  58724. height: math.unit(26, "feet")
  58725. },
  58726. {
  58727. name: "Giantess",
  58728. height: math.unit(200, "feet")
  58729. },
  58730. {
  58731. name: "Mega Giantess",
  58732. height: math.unit(2500, "feet")
  58733. },
  58734. {
  58735. name: "City Sized",
  58736. height: math.unit(50, "miles")
  58737. },
  58738. {
  58739. name: "Country Sized",
  58740. height: math.unit(500, "miles")
  58741. },
  58742. {
  58743. name: "Continent Sized",
  58744. height: math.unit(2500, "miles")
  58745. },
  58746. {
  58747. name: "Planet Sized",
  58748. height: math.unit(10000, "miles")
  58749. },
  58750. {
  58751. name: "Star Sized",
  58752. height: math.unit(5e6, "miles")
  58753. },
  58754. {
  58755. name: "Solar System Sized",
  58756. height: math.unit(125, "AU")
  58757. },
  58758. {
  58759. name: "Galaxy Sized",
  58760. height: math.unit(300e3, "lightyears")
  58761. },
  58762. {
  58763. name: "Universe Sized",
  58764. height: math.unit(200e9, "lightyears")
  58765. },
  58766. {
  58767. name: "Multiverse Sized",
  58768. height: math.unit(20, "exauniverses")
  58769. },
  58770. {
  58771. name: "Mother of Existence",
  58772. height: math.unit(1e6, "yottauniverses")
  58773. },
  58774. ]
  58775. ))
  58776. characterMakers.push(() => makeCharacter(
  58777. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58778. {
  58779. side: {
  58780. height: math.unit(9.5, "meters"),
  58781. name: "Side",
  58782. image: {
  58783. source: "./media/characters/kulve-ragnarok/side.svg",
  58784. extra: 364/326,
  58785. bottom: 50/414
  58786. }
  58787. },
  58788. },
  58789. [
  58790. {
  58791. name: "Normal",
  58792. height: math.unit(9.5, "meters"),
  58793. default: true
  58794. },
  58795. ]
  58796. ))
  58797. characterMakers.push(() => makeCharacter(
  58798. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58799. {
  58800. front: {
  58801. height: math.unit(8 + 9/12, "feet"),
  58802. name: "Front",
  58803. image: {
  58804. source: "./media/characters/atlas-goat/front.svg",
  58805. extra: 1462/1323,
  58806. bottom: 12/1474
  58807. }
  58808. },
  58809. },
  58810. [
  58811. {
  58812. name: "Normal",
  58813. height: math.unit(8 + 9/12, "feet"),
  58814. default: true
  58815. },
  58816. {
  58817. name: "Skyline",
  58818. height: math.unit(845, "feet")
  58819. },
  58820. {
  58821. name: "Orbital",
  58822. height: math.unit(93000, "miles")
  58823. },
  58824. {
  58825. name: "Constellation",
  58826. height: math.unit(27000, "lightyears")
  58827. },
  58828. ]
  58829. ))
  58830. characterMakers.push(() => makeCharacter(
  58831. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58832. {
  58833. side: {
  58834. height: math.unit(1.8, "meters"),
  58835. weight: math.unit(120, "kg"),
  58836. name: "Side",
  58837. image: {
  58838. source: "./media/characters/xie-ling/side.svg",
  58839. extra: 646/574,
  58840. bottom: 44/690
  58841. }
  58842. },
  58843. },
  58844. [
  58845. {
  58846. name: "Tiny",
  58847. height: math.unit(1.80, "meters")
  58848. },
  58849. {
  58850. name: "Small",
  58851. height: math.unit(6, "meters")
  58852. },
  58853. {
  58854. name: "Medium",
  58855. height: math.unit(15, "meters")
  58856. },
  58857. {
  58858. name: "Normal",
  58859. height: math.unit(30, "meters"),
  58860. default: true
  58861. },
  58862. {
  58863. name: "Above Normal",
  58864. height: math.unit(60, "meters")
  58865. },
  58866. {
  58867. name: "Big",
  58868. height: math.unit(220, "meters")
  58869. },
  58870. {
  58871. name: "Giant",
  58872. height: math.unit(2.2, "km")
  58873. },
  58874. {
  58875. name: "Macro",
  58876. height: math.unit(25, "km")
  58877. },
  58878. {
  58879. name: "Mega Macro",
  58880. height: math.unit(350, "km")
  58881. },
  58882. {
  58883. name: "Mega Macro+",
  58884. height: math.unit(5000, "km")
  58885. },
  58886. {
  58887. name: "Goddess",
  58888. height: math.unit(3, "multiverses")
  58889. },
  58890. ]
  58891. ))
  58892. characterMakers.push(() => makeCharacter(
  58893. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58894. {
  58895. frontSfw: {
  58896. height: math.unit(5 + 11/12, "feet"),
  58897. weight: math.unit(210, "lb"),
  58898. name: "Front",
  58899. image: {
  58900. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58901. extra: 1928/1821,
  58902. bottom: 45/1973
  58903. }
  58904. },
  58905. backSfw: {
  58906. height: math.unit(5 + 11/12, "feet"),
  58907. weight: math.unit(210, "lb"),
  58908. name: "Back",
  58909. image: {
  58910. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58911. extra: 1920/1813,
  58912. bottom: 34/1954
  58913. }
  58914. },
  58915. frontNsfw: {
  58916. height: math.unit(5 + 11/12, "feet"),
  58917. weight: math.unit(210, "lb"),
  58918. name: "Front (NSFW)",
  58919. image: {
  58920. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58921. extra: 1928/1821,
  58922. bottom: 45/1973
  58923. }
  58924. },
  58925. backNsfw: {
  58926. height: math.unit(5 + 11/12, "feet"),
  58927. weight: math.unit(210, "lb"),
  58928. name: "Back (NSFW)",
  58929. image: {
  58930. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58931. extra: 1920/1813,
  58932. bottom: 34/1954
  58933. }
  58934. },
  58935. },
  58936. [
  58937. {
  58938. name: "Normal",
  58939. height: math.unit(5 + 11/12, "feet"),
  58940. default: true
  58941. },
  58942. {
  58943. name: "Goddess",
  58944. height: math.unit(20 + 3/12, "feet")
  58945. },
  58946. {
  58947. name: "Breaker of Man",
  58948. height: math.unit(329 + 9/12, "feet")
  58949. },
  58950. {
  58951. name: "Solar Justice",
  58952. height: math.unit(0.6, "solarradii")
  58953. },
  58954. {
  58955. name: "She Who Judges",
  58956. height: math.unit(1, "universe")
  58957. },
  58958. ]
  58959. ))
  58960. characterMakers.push(() => makeCharacter(
  58961. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58962. {
  58963. casual_front: {
  58964. height: math.unit(6 + 1/12, "feet"),
  58965. weight: math.unit(190, "lb"),
  58966. preyCapacity: math.unit(1, "people"),
  58967. name: "Front",
  58968. image: {
  58969. source: "./media/characters/managarmr/casual-front.svg",
  58970. extra: 411/381,
  58971. bottom: 15/426
  58972. },
  58973. extraAttributes: {
  58974. "pawSize": {
  58975. name: "Paw Size",
  58976. power: 1,
  58977. type: "length",
  58978. base: math.unit(0.2, "meters")
  58979. },
  58980. },
  58981. form: "casual",
  58982. },
  58983. casual_back: {
  58984. height: math.unit(6 + 1/12, "feet"),
  58985. weight: math.unit(190, "lb"),
  58986. preyCapacity: math.unit(1, "people"),
  58987. name: "Back",
  58988. image: {
  58989. source: "./media/characters/managarmr/casual-back.svg",
  58990. extra: 413/383,
  58991. bottom: 13/426
  58992. },
  58993. extraAttributes: {
  58994. "pawSize": {
  58995. name: "Paw Size",
  58996. power: 1,
  58997. type: "length",
  58998. base: math.unit(0.2, "meters")
  58999. },
  59000. },
  59001. form: "casual",
  59002. },
  59003. base_front: {
  59004. height: math.unit(7, "feet"),
  59005. weight: math.unit(210, "lb"),
  59006. preyCapacity: math.unit(2, "people"),
  59007. name: "Front",
  59008. image: {
  59009. source: "./media/characters/managarmr/base-front.svg",
  59010. extra: 580/485,
  59011. bottom: 32/612
  59012. },
  59013. extraAttributes: {
  59014. "wingspan": {
  59015. name: "Wingspan",
  59016. power: 1,
  59017. type: "length",
  59018. base: math.unit(4, "meters")
  59019. },
  59020. "pawSize": {
  59021. name: "Paw Size",
  59022. power: 1,
  59023. type: "length",
  59024. base: math.unit(0.2, "meters")
  59025. },
  59026. },
  59027. form: "base",
  59028. },
  59029. "true-divine_front": {
  59030. height: math.unit(40, "feet"),
  59031. weight: math.unit(39000, "lb"),
  59032. preyCapacity: math.unit(375, "people"),
  59033. name: "Front",
  59034. image: {
  59035. source: "./media/characters/managarmr/true-divine-front.svg",
  59036. extra: 725/573,
  59037. bottom: 120/845
  59038. },
  59039. extraAttributes: {
  59040. "wingspan": {
  59041. name: "Wingspan",
  59042. power: 1,
  59043. type: "length",
  59044. base: math.unit(20, "meters")
  59045. },
  59046. "pawSize": {
  59047. name: "Paw Size",
  59048. power: 1,
  59049. type: "length",
  59050. base: math.unit(1.5, "meters")
  59051. },
  59052. },
  59053. form: "true-divine",
  59054. },
  59055. },
  59056. [
  59057. {
  59058. name: "Normal",
  59059. height: math.unit(6 + 1/12, "feet"),
  59060. form: "casual",
  59061. default: true
  59062. },
  59063. {
  59064. name: "Normal",
  59065. height: math.unit(7, "feet"),
  59066. form: "base",
  59067. default: true
  59068. },
  59069. ],
  59070. {
  59071. "casual": {
  59072. name: "Casual",
  59073. default: true
  59074. },
  59075. "base": {
  59076. name: "Base",
  59077. },
  59078. "true-divine": {
  59079. name: "True Divine",
  59080. },
  59081. }
  59082. ))
  59083. characterMakers.push(() => makeCharacter(
  59084. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59085. {
  59086. front: {
  59087. height: math.unit(1.8, "meters"),
  59088. weight: math.unit(110, "kg"),
  59089. name: "Front",
  59090. image: {
  59091. source: "./media/characters/mystra/front.svg",
  59092. extra: 529/442,
  59093. bottom: 31/560
  59094. }
  59095. },
  59096. frontLewd: {
  59097. height: math.unit(1.8, "meters"),
  59098. weight: math.unit(110, "kg"),
  59099. name: "Front (Lewd)",
  59100. image: {
  59101. source: "./media/characters/mystra/front-lewd.svg",
  59102. extra: 529/442,
  59103. bottom: 31/560
  59104. }
  59105. },
  59106. head: {
  59107. height: math.unit(1.63, "feet"),
  59108. name: "Head",
  59109. image: {
  59110. source: "./media/characters/mystra/head.svg"
  59111. }
  59112. },
  59113. paw: {
  59114. height: math.unit(1.9, "feet"),
  59115. name: "Paw",
  59116. image: {
  59117. source: "./media/characters/mystra/paw.svg"
  59118. }
  59119. },
  59120. },
  59121. [
  59122. {
  59123. name: "Incognito",
  59124. height: math.unit(2.3, "meters")
  59125. },
  59126. {
  59127. name: "Small Macro",
  59128. height: math.unit(300, "meters")
  59129. },
  59130. {
  59131. name: "Small Mega",
  59132. height: math.unit(2, "km")
  59133. },
  59134. {
  59135. name: "Mega",
  59136. height: math.unit(30, "km")
  59137. },
  59138. {
  59139. name: "Small Giga",
  59140. height: math.unit(100, "km")
  59141. },
  59142. {
  59143. name: "Giga",
  59144. height: math.unit(1000, "km"),
  59145. default: true
  59146. },
  59147. {
  59148. name: "Continental",
  59149. height: math.unit(5000, "km")
  59150. },
  59151. {
  59152. name: "Terra",
  59153. height: math.unit(20000, "km")
  59154. },
  59155. {
  59156. name: "Solar",
  59157. height: math.unit(2e6, "km")
  59158. },
  59159. {
  59160. name: "Galactic",
  59161. height: math.unit(528502, "lightyears")
  59162. },
  59163. {
  59164. name: "Universal",
  59165. height: math.unit(20, "universes")
  59166. },
  59167. ]
  59168. ))
  59169. characterMakers.push(() => makeCharacter(
  59170. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59171. {
  59172. front: {
  59173. height: math.unit(2, "meters"),
  59174. weight: math.unit(140, "kg"),
  59175. name: "Front",
  59176. image: {
  59177. source: "./media/characters/caleb/front.svg",
  59178. extra: 873/817,
  59179. bottom: 47/920
  59180. }
  59181. },
  59182. back: {
  59183. height: math.unit(2, "meters"),
  59184. weight: math.unit(140, "kg"),
  59185. name: "Back",
  59186. image: {
  59187. source: "./media/characters/caleb/back.svg",
  59188. extra: 877/828,
  59189. bottom: 24/901
  59190. }
  59191. },
  59192. snakeTail: {
  59193. height: math.unit(1.44, "feet"),
  59194. name: "Snake Tail",
  59195. image: {
  59196. source: "./media/characters/caleb/snake-tail.svg"
  59197. }
  59198. },
  59199. dick: {
  59200. height: math.unit(2.6, "feet"),
  59201. name: "Dick",
  59202. image: {
  59203. source: "./media/characters/caleb/dick.svg"
  59204. }
  59205. },
  59206. },
  59207. [
  59208. {
  59209. name: "Incognito",
  59210. height: math.unit(3, "meters")
  59211. },
  59212. {
  59213. name: "Home Size",
  59214. height: math.unit(200, "meters"),
  59215. default: true
  59216. },
  59217. {
  59218. name: "Macro",
  59219. height: math.unit(500, "meters")
  59220. },
  59221. {
  59222. name: "Big Macro",
  59223. height: math.unit(5, "km")
  59224. },
  59225. {
  59226. name: "Giga",
  59227. height: math.unit(250, "km")
  59228. },
  59229. {
  59230. name: "Giga+",
  59231. height: math.unit(5000, "km")
  59232. },
  59233. {
  59234. name: "Small Terra",
  59235. height: math.unit(35e3, "km")
  59236. },
  59237. {
  59238. name: "Terra",
  59239. height: math.unit(2e6, "km")
  59240. },
  59241. {
  59242. name: "Terra+",
  59243. height: math.unit(1.5e6, "km")
  59244. },
  59245. ]
  59246. ))
  59247. characterMakers.push(() => makeCharacter(
  59248. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59249. {
  59250. front: {
  59251. height: math.unit(2, "meters"),
  59252. weight: math.unit(120, "kg"),
  59253. name: "Front",
  59254. image: {
  59255. source: "./media/characters/gilirian/front.svg",
  59256. extra: 805/737,
  59257. bottom: 13/818
  59258. }
  59259. },
  59260. side: {
  59261. height: math.unit(2, "meters"),
  59262. weight: math.unit(120, "kg"),
  59263. name: "Side",
  59264. image: {
  59265. source: "./media/characters/gilirian/side.svg",
  59266. extra: 810/746,
  59267. bottom: 6/816
  59268. }
  59269. },
  59270. back: {
  59271. height: math.unit(2, "meters"),
  59272. weight: math.unit(120, "kg"),
  59273. name: "Back",
  59274. image: {
  59275. source: "./media/characters/gilirian/back.svg",
  59276. extra: 815/745,
  59277. bottom: 15/830
  59278. }
  59279. },
  59280. frontNsfw: {
  59281. height: math.unit(2, "meters"),
  59282. weight: math.unit(120, "kg"),
  59283. name: "Front (NSFW)",
  59284. image: {
  59285. source: "./media/characters/gilirian/front-nsfw.svg",
  59286. extra: 805/737,
  59287. bottom: 13/818
  59288. }
  59289. },
  59290. sideNsfw: {
  59291. height: math.unit(2, "meters"),
  59292. weight: math.unit(120, "kg"),
  59293. name: "Side (NSFW)",
  59294. image: {
  59295. source: "./media/characters/gilirian/side-nsfw.svg",
  59296. extra: 810/746,
  59297. bottom: 6/816
  59298. }
  59299. },
  59300. },
  59301. [
  59302. {
  59303. name: "Incognito",
  59304. height: math.unit(2, "meters"),
  59305. default: true
  59306. },
  59307. {
  59308. name: "Macro",
  59309. height: math.unit(250, "meters")
  59310. },
  59311. {
  59312. name: "Big Macro",
  59313. height: math.unit(1500, "meters")
  59314. },
  59315. {
  59316. name: "Mega",
  59317. height: math.unit(40, "km")
  59318. },
  59319. {
  59320. name: "Giga",
  59321. height: math.unit(300, "km")
  59322. },
  59323. {
  59324. name: "Extra Giga",
  59325. height: math.unit(5000, "km")
  59326. },
  59327. {
  59328. name: "Small Terra",
  59329. height: math.unit(10e3, "km")
  59330. },
  59331. {
  59332. name: "Terra",
  59333. height: math.unit(3e5, "km")
  59334. },
  59335. {
  59336. name: "Galactic",
  59337. height: math.unit(369950, "lightyears")
  59338. },
  59339. ]
  59340. ))
  59341. characterMakers.push(() => makeCharacter(
  59342. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59343. {
  59344. front: {
  59345. height: math.unit(2.5, "meters"),
  59346. weight: math.unit(230, "lb"),
  59347. name: "Front",
  59348. image: {
  59349. source: "./media/characters/tarken/front.svg",
  59350. extra: 764/720,
  59351. bottom: 49/813
  59352. }
  59353. },
  59354. back: {
  59355. height: math.unit(2.5, "meters"),
  59356. weight: math.unit(230, "lb"),
  59357. name: "Back",
  59358. image: {
  59359. source: "./media/characters/tarken/back.svg",
  59360. extra: 756/720,
  59361. bottom: 35/791
  59362. }
  59363. },
  59364. frontNsfw: {
  59365. height: math.unit(2.5, "meters"),
  59366. weight: math.unit(230, "lb"),
  59367. name: "Front (NSFW)",
  59368. image: {
  59369. source: "./media/characters/tarken/front-nsfw.svg",
  59370. extra: 764/720,
  59371. bottom: 49/813
  59372. }
  59373. },
  59374. backNsfw: {
  59375. height: math.unit(2.5, "meters"),
  59376. weight: math.unit(230, "lb"),
  59377. name: "Back (NSFW)",
  59378. image: {
  59379. source: "./media/characters/tarken/back-nsfw.svg",
  59380. extra: 756/720,
  59381. bottom: 35/791
  59382. }
  59383. },
  59384. head: {
  59385. height: math.unit(2.22, "feet"),
  59386. name: "Head",
  59387. image: {
  59388. source: "./media/characters/tarken/head.svg"
  59389. }
  59390. },
  59391. tail: {
  59392. height: math.unit(5.25, "feet"),
  59393. name: "Tail",
  59394. image: {
  59395. source: "./media/characters/tarken/tail.svg"
  59396. }
  59397. },
  59398. dick: {
  59399. height: math.unit(1.95, "feet"),
  59400. name: "Dick",
  59401. image: {
  59402. source: "./media/characters/tarken/dick.svg"
  59403. }
  59404. },
  59405. hand: {
  59406. height: math.unit(1.78, "feet"),
  59407. name: "Hand",
  59408. image: {
  59409. source: "./media/characters/tarken/hand.svg"
  59410. }
  59411. },
  59412. beam: {
  59413. height: math.unit(1.5, "feet"),
  59414. name: "Beam",
  59415. image: {
  59416. source: "./media/characters/tarken/beam.svg"
  59417. }
  59418. },
  59419. },
  59420. [
  59421. {
  59422. name: "Original Size",
  59423. height: math.unit(2.5, "meters")
  59424. },
  59425. {
  59426. name: "Macro",
  59427. height: math.unit(150, "meters"),
  59428. default: true
  59429. },
  59430. {
  59431. name: "Macro+",
  59432. height: math.unit(300, "meters")
  59433. },
  59434. {
  59435. name: "Mega",
  59436. height: math.unit(2, "km")
  59437. },
  59438. {
  59439. name: "Mega+",
  59440. height: math.unit(35, "km")
  59441. },
  59442.  {
  59443. name: "Mega++",
  59444. height: math.unit(60, "km")
  59445. },
  59446. {
  59447. name: "Giga",
  59448. height: math.unit(200, "km")
  59449. },
  59450. {
  59451. name: "Giga+",
  59452. height: math.unit(2500, "km")
  59453. },
  59454. {
  59455. name: "Giga++",
  59456. height: math.unit(6600, "km")
  59457. },
  59458. {
  59459. name: "Terra",
  59460. height: math.unit(20000, "km")
  59461. },
  59462. {
  59463. name: "Terra+",
  59464. height: math.unit(300000, "km")
  59465. },
  59466. ]
  59467. ))
  59468. characterMakers.push(() => makeCharacter(
  59469. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59470. {
  59471. magpie_dressed: {
  59472. height: math.unit(1.7, "meters"),
  59473. weight: math.unit(70, "kg"),
  59474. name: "Dressed",
  59475. image: {
  59476. source: "./media/characters/otreus/magpie-dressed.svg",
  59477. extra: 691/672,
  59478. bottom: 116/807
  59479. },
  59480. form: "magpie",
  59481. default: true
  59482. },
  59483. magpie_nude: {
  59484. height: math.unit(1.7, "meters"),
  59485. weight: math.unit(70, "kg"),
  59486. name: "Nude",
  59487. image: {
  59488. source: "./media/characters/otreus/magpie-nude.svg",
  59489. extra: 691/672,
  59490. bottom: 116/807
  59491. },
  59492. form: "magpie",
  59493. },
  59494. magpie_dressedLewd: {
  59495. height: math.unit(1.7, "meters"),
  59496. weight: math.unit(70, "kg"),
  59497. name: "Dressed (Lewd)",
  59498. image: {
  59499. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59500. extra: 691/672,
  59501. bottom: 116/807
  59502. },
  59503. form: "magpie",
  59504. },
  59505. magpie_nudeLewd: {
  59506. height: math.unit(1.7, "meters"),
  59507. weight: math.unit(70, "kg"),
  59508. name: "Nude (Lewd)",
  59509. image: {
  59510. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59511. extra: 691/672,
  59512. bottom: 116/807
  59513. },
  59514. form: "magpie",
  59515. },
  59516. magpie_leftFoot: {
  59517. height: math.unit(1.58, "feet"),
  59518. name: "Left Foot",
  59519. image: {
  59520. source: "./media/characters/otreus/magpie-left-foot.svg"
  59521. },
  59522. form: "magpie",
  59523. },
  59524. magpie_rightFoot: {
  59525. height: math.unit(1.58, "feet"),
  59526. name: "Right Foot",
  59527. image: {
  59528. source: "./media/characters/otreus/magpie-right-foot.svg"
  59529. },
  59530. form: "magpie",
  59531. },
  59532. magpie_wingspan: {
  59533. height: math.unit(2, "meters"),
  59534. weight: math.unit(70, "kg"),
  59535. name: "Wingspan",
  59536. image: {
  59537. source: "./media/characters/otreus/magpie-wingspan.svg"
  59538. },
  59539. extraAttributes: {
  59540. "wingspan": {
  59541. name: "Wingspan",
  59542. power: 1,
  59543. type: "length",
  59544. base: math.unit(3.35, "meters")
  59545. },
  59546. },
  59547. form: "magpie",
  59548. },
  59549. hippogriff_dressed: {
  59550. height: math.unit(1.7, "meters"),
  59551. weight: math.unit(70, "kg"),
  59552. name: "Dressed",
  59553. image: {
  59554. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59555. extra: 710/689,
  59556. bottom: 67/777
  59557. },
  59558. form: "hippogriff",
  59559. default: true
  59560. },
  59561. hippogriff_nude: {
  59562. height: math.unit(1.7, "meters"),
  59563. weight: math.unit(70, "kg"),
  59564. name: "Nude",
  59565. image: {
  59566. source: "./media/characters/otreus/hippogriff-nude.svg",
  59567. extra: 710/689,
  59568. bottom: 67/777
  59569. },
  59570. form: "hippogriff",
  59571. },
  59572. hippogriff_dressedLewd: {
  59573. height: math.unit(1.7, "meters"),
  59574. weight: math.unit(70, "kg"),
  59575. name: "Dressed (Lewd)",
  59576. image: {
  59577. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59578. extra: 710/689,
  59579. bottom: 67/777
  59580. },
  59581. form: "hippogriff",
  59582. },
  59583. hippogriff_nudeLewd: {
  59584. height: math.unit(1.7, "meters"),
  59585. weight: math.unit(70, "kg"),
  59586. name: "Nude (Lewd)",
  59587. image: {
  59588. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59589. extra: 710/689,
  59590. bottom: 67/777
  59591. },
  59592. form: "hippogriff",
  59593. },
  59594. },
  59595. [
  59596. {
  59597. name: "Original Size",
  59598. height: math.unit(1.7, "meters"),
  59599. allForms: true
  59600. },
  59601. {
  59602. name: "Incognito Size",
  59603. height: math.unit(2, "meters"),
  59604. allForms: true
  59605. },
  59606. {
  59607. name: "Mega",
  59608. height: math.unit(2, "km"),
  59609. allForms: true
  59610. },
  59611. {
  59612. name: "Mega+",
  59613. height: math.unit(40, "km"),
  59614. allForms: true
  59615. },
  59616. {
  59617. name: "Giga",
  59618. height: math.unit(250, "km"),
  59619. allForms: true
  59620. },
  59621. {
  59622. name: "Giga+",
  59623. height: math.unit(3000, "km"),
  59624. allForms: true
  59625. },
  59626. {
  59627. name: "Terra",
  59628. height: math.unit(20000, "km"),
  59629. allForms: true
  59630. },
  59631. {
  59632. name: "Solar (Home Size)",
  59633. height: math.unit(3e6, "km"),
  59634. allForms: true,
  59635. default: true
  59636. },
  59637. ],
  59638. {
  59639. "magpie": {
  59640. name: "Magpie",
  59641. default: true
  59642. },
  59643. "hippogriff": {
  59644. name: "Hippogriff",
  59645. },
  59646. }
  59647. ))
  59648. characterMakers.push(() => makeCharacter(
  59649. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59650. {
  59651. frontDressed: {
  59652. height: math.unit(1.8, "meters"),
  59653. weight: math.unit(90, "kg"),
  59654. name: "Front (Dressed)",
  59655. image: {
  59656. source: "./media/characters/thalia/front-dressed.svg",
  59657. extra: 478/402,
  59658. bottom: 55/533
  59659. }
  59660. },
  59661. backDressed: {
  59662. height: math.unit(1.8, "meters"),
  59663. weight: math.unit(90, "kg"),
  59664. name: "Back (Dressed)",
  59665. image: {
  59666. source: "./media/characters/thalia/back-dressed.svg",
  59667. extra: 500/424,
  59668. bottom: 15/515
  59669. }
  59670. },
  59671. frontNude: {
  59672. height: math.unit(1.8, "meters"),
  59673. weight: math.unit(90, "kg"),
  59674. name: "Front (Nude)",
  59675. image: {
  59676. source: "./media/characters/thalia/front-nude.svg",
  59677. extra: 478/402,
  59678. bottom: 55/533
  59679. }
  59680. },
  59681. backNude: {
  59682. height: math.unit(1.8, "meters"),
  59683. weight: math.unit(90, "kg"),
  59684. name: "Back (Nude)",
  59685. image: {
  59686. source: "./media/characters/thalia/back-nude.svg",
  59687. extra: 500/424,
  59688. bottom: 15/515
  59689. }
  59690. },
  59691. },
  59692. [
  59693. {
  59694. name: "Incognito",
  59695. height: math.unit(3, "meters")
  59696. },
  59697. {
  59698. name: "Macro",
  59699. height: math.unit(500, "meters")
  59700. },
  59701. {
  59702. name: "Mega",
  59703. height: math.unit(5, "km")
  59704. },
  59705. {
  59706. name: "Mega+",
  59707. height: math.unit(30, "km")
  59708. },
  59709. {
  59710. name: "Giga",
  59711. height: math.unit(350, "km")
  59712. },
  59713. {
  59714. name: "Giga+",
  59715. height: math.unit(4000, "km")
  59716. },
  59717. {
  59718. name: "Terra",
  59719. height: math.unit(35000, "km")
  59720. },
  59721. {
  59722. name: "Original Size",
  59723. height: math.unit(130000, "km")
  59724. },
  59725. {
  59726. name: "Solar (Home Size)",
  59727. height: math.unit(4e6, "km"),
  59728. default: true
  59729. },
  59730. ]
  59731. ))
  59732. characterMakers.push(() => makeCharacter(
  59733. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59734. {
  59735. front: {
  59736. height: math.unit(1.8, "meters"),
  59737. weight: math.unit(95, "kg"),
  59738. name: "Front",
  59739. image: {
  59740. source: "./media/characters/shango/front.svg",
  59741. extra: 1925/1774,
  59742. bottom: 67/1992
  59743. }
  59744. },
  59745. back: {
  59746. height: math.unit(1.8, "meters"),
  59747. weight: math.unit(95, "kg"),
  59748. name: "Back",
  59749. image: {
  59750. source: "./media/characters/shango/back.svg",
  59751. extra: 1915/1766,
  59752. bottom: 52/1967
  59753. }
  59754. },
  59755. frontLewd: {
  59756. height: math.unit(1.8, "meters"),
  59757. weight: math.unit(95, "kg"),
  59758. name: "Front (Lewd)",
  59759. image: {
  59760. source: "./media/characters/shango/front-lewd.svg",
  59761. extra: 1925/1774,
  59762. bottom: 67/1992
  59763. }
  59764. },
  59765. backLewd: {
  59766. height: math.unit(1.8, "meters"),
  59767. weight: math.unit(95, "kg"),
  59768. name: "Back (Lewd)",
  59769. image: {
  59770. source: "./media/characters/shango/back-lewd.svg",
  59771. extra: 1915/1766,
  59772. bottom: 52/1967
  59773. }
  59774. },
  59775. maw: {
  59776. height: math.unit(1.64, "feet"),
  59777. name: "Maw",
  59778. image: {
  59779. source: "./media/characters/shango/maw.svg"
  59780. }
  59781. },
  59782. dick: {
  59783. height: math.unit(2.14, "feet"),
  59784. name: "Dick",
  59785. image: {
  59786. source: "./media/characters/shango/dick.svg"
  59787. }
  59788. },
  59789. },
  59790. [
  59791. {
  59792. name: "Incognito",
  59793. height: math.unit(1.8, "meters")
  59794. },
  59795. {
  59796. name: "Home Size",
  59797. height: math.unit(60, "meters"),
  59798. default: true
  59799. },
  59800. {
  59801. name: "Macro",
  59802. height: math.unit(450, "meters")
  59803. },
  59804. {
  59805. name: "Mega",
  59806. height: math.unit(6, "km")
  59807. },
  59808. {
  59809. name: "Mega+",
  59810. height: math.unit(35, "km")
  59811. },
  59812. {
  59813. name: "Giga",
  59814. height: math.unit(500, "km")
  59815. },
  59816. {
  59817. name: "Giga+",
  59818. height: math.unit(5000, "km")
  59819. },
  59820. {
  59821. name: "Terra",
  59822. height: math.unit(60000, "km")
  59823. },
  59824. {
  59825. name: "Terra+",
  59826. height: math.unit(400000, "km")
  59827. },
  59828. ]
  59829. ))
  59830. characterMakers.push(() => makeCharacter(
  59831. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59832. {
  59833. front: {
  59834. height: math.unit(2, "meters"),
  59835. weight: math.unit(95, "kg"),
  59836. name: "Front",
  59837. image: {
  59838. source: "./media/characters/osiris-gryphon/front.svg",
  59839. extra: 1508/1313,
  59840. bottom: 87/1595
  59841. }
  59842. },
  59843. back: {
  59844. height: math.unit(2, "meters"),
  59845. weight: math.unit(95, "kg"),
  59846. name: "Back",
  59847. image: {
  59848. source: "./media/characters/osiris-gryphon/back.svg",
  59849. extra: 1436/1309,
  59850. bottom: 64/1500
  59851. }
  59852. },
  59853. frontLewd: {
  59854. height: math.unit(2, "meters"),
  59855. weight: math.unit(95, "kg"),
  59856. name: "Front-lewd",
  59857. image: {
  59858. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59859. extra: 1508/1313,
  59860. bottom: 87/1595
  59861. }
  59862. },
  59863. wing: {
  59864. height: math.unit(6.3333, "feet"),
  59865. name: "Wing",
  59866. image: {
  59867. source: "./media/characters/osiris-gryphon/wing.svg"
  59868. }
  59869. },
  59870. },
  59871. [
  59872. {
  59873. name: "Incognito",
  59874. height: math.unit(2, "meters")
  59875. },
  59876. {
  59877. name: "Home Size",
  59878. height: math.unit(30, "meters"),
  59879. default: true
  59880. },
  59881. {
  59882. name: "Macro",
  59883. height: math.unit(100, "meters")
  59884. },
  59885. {
  59886. name: "Macro+",
  59887. height: math.unit(350, "meters")
  59888. },
  59889. {
  59890. name: "Mega",
  59891. height: math.unit(40, "km")
  59892. },
  59893. {
  59894. name: "Giga",
  59895. height: math.unit(300, "km")
  59896. },
  59897. {
  59898. name: "Giga+",
  59899. height: math.unit(2000, "km")
  59900. },
  59901. {
  59902. name: "Terra",
  59903. height: math.unit(30000, "km")
  59904. },
  59905. ]
  59906. ))
  59907. characterMakers.push(() => makeCharacter(
  59908. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59909. {
  59910. front: {
  59911. height: math.unit(2.5, "meters"),
  59912. weight: math.unit(200, "kg"),
  59913. name: "Front",
  59914. image: {
  59915. source: "./media/characters/atlas-dragon/front.svg",
  59916. extra: 745/462,
  59917. bottom: 36/781
  59918. }
  59919. },
  59920. back: {
  59921. height: math.unit(2.5, "meters"),
  59922. weight: math.unit(200, "kg"),
  59923. name: "Back",
  59924. image: {
  59925. source: "./media/characters/atlas-dragon/back.svg",
  59926. extra: 848/822,
  59927. bottom: 57/905
  59928. }
  59929. },
  59930. frontLewd: {
  59931. height: math.unit(2.5, "meters"),
  59932. weight: math.unit(200, "kg"),
  59933. name: "Front (Lewd)",
  59934. image: {
  59935. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59936. extra: 745/462,
  59937. bottom: 36/781
  59938. }
  59939. },
  59940. backLewd: {
  59941. height: math.unit(2.5, "meters"),
  59942. weight: math.unit(200, "kg"),
  59943. name: "Back (Lewd)",
  59944. image: {
  59945. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59946. extra: 848/822,
  59947. bottom: 57/905
  59948. }
  59949. },
  59950. },
  59951. [
  59952. {
  59953. name: "Incognito",
  59954. height: math.unit(2.5, "meters")
  59955. },
  59956. {
  59957. name: "Small Macro",
  59958. height: math.unit(50, "meters")
  59959. },
  59960. {
  59961. name: "Macro",
  59962. height: math.unit(350, "meters")
  59963. },
  59964. {
  59965. name: "Mega",
  59966. height: math.unit(5.5, "kilometers")
  59967. },
  59968. {
  59969. name: "Mega+",
  59970. height: math.unit(50, "km")
  59971. },
  59972. {
  59973. name: "Giga",
  59974. height: math.unit(350, "km")
  59975. },
  59976. {
  59977. name: "Giga+",
  59978. height: math.unit(2000, "km")
  59979. },
  59980. {
  59981. name: "Giga++",
  59982. height: math.unit(6500, "km")
  59983. },
  59984. {
  59985. name: "Terra",
  59986. height: math.unit(30000, "km")
  59987. },
  59988. {
  59989. name: "Terra+",
  59990. height: math.unit(250000, "km")
  59991. },
  59992. {
  59993. name: "True Size",
  59994. height: math.unit(100, "multiverses"),
  59995. default: true
  59996. },
  59997. ]
  59998. ))
  59999. characterMakers.push(() => makeCharacter(
  60000. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60001. {
  60002. front: {
  60003. height: math.unit(1.8, "m"),
  60004. weight: math.unit(120, "kg"),
  60005. name: "Front",
  60006. image: {
  60007. source: "./media/characters/chey/front.svg",
  60008. extra: 1359/1270,
  60009. bottom: 18/1377
  60010. }
  60011. },
  60012. arm: {
  60013. height: math.unit(2.05, "feet"),
  60014. name: "Arm",
  60015. image: {
  60016. source: "./media/characters/chey/arm.svg"
  60017. }
  60018. },
  60019. head: {
  60020. height: math.unit(1.89, "feet"),
  60021. name: "Head",
  60022. image: {
  60023. source: "./media/characters/chey/head.svg"
  60024. }
  60025. },
  60026. },
  60027. [
  60028. {
  60029. name: "Original Size",
  60030. height: math.unit(5, "cm")
  60031. },
  60032. {
  60033. name: "Incognito Size",
  60034. height: math.unit(2.4, "m")
  60035. },
  60036. {
  60037. name: "Home Size",
  60038. height: math.unit(200, "meters"),
  60039. default: true
  60040. },
  60041. {
  60042. name: "Mega",
  60043. height: math.unit(2, "km")
  60044. },
  60045. {
  60046. name: "Giga (Preferred Size)",
  60047. height: math.unit(2000, "km")
  60048. },
  60049. {
  60050. name: "Giga+",
  60051. height: math.unit(6000, "km")
  60052. },
  60053. {
  60054. name: "Terra",
  60055. height: math.unit(17000, "km")
  60056. },
  60057. {
  60058. name: "Terra+",
  60059. height: math.unit(75000, "km")
  60060. },
  60061. {
  60062. name: "Terra++",
  60063. height: math.unit(225000, "km")
  60064. },
  60065. ]
  60066. ))
  60067. characterMakers.push(() => makeCharacter(
  60068. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60069. {
  60070. side: {
  60071. height: math.unit(7.8, "meters"),
  60072. name: "Side",
  60073. image: {
  60074. source: "./media/characters/ragnarok/side.svg",
  60075. extra: 725/621,
  60076. bottom: 72/797
  60077. }
  60078. },
  60079. },
  60080. [
  60081. {
  60082. name: "Normal",
  60083. height: math.unit(7.8, "meters"),
  60084. default: true
  60085. },
  60086. ]
  60087. ))
  60088. characterMakers.push(() => makeCharacter(
  60089. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60090. {
  60091. hyena_front: {
  60092. height: math.unit(2.1, "meters"),
  60093. weight: math.unit(110, "kg"),
  60094. name: "Front",
  60095. image: {
  60096. source: "./media/characters/nima/hyena-front.svg",
  60097. extra: 1904/1796,
  60098. bottom: 67/1971
  60099. },
  60100. form: "hyena",
  60101. },
  60102. hyena_back: {
  60103. height: math.unit(2.1, "meters"),
  60104. weight: math.unit(110, "kg"),
  60105. name: "Back",
  60106. image: {
  60107. source: "./media/characters/nima/hyena-back.svg",
  60108. extra: 1964/1884,
  60109. bottom: 35/1999
  60110. },
  60111. form: "hyena",
  60112. },
  60113. shark_front: {
  60114. height: math.unit(1.95, "meters"),
  60115. weight: math.unit(110, "kg"),
  60116. name: "Front",
  60117. image: {
  60118. source: "./media/characters/nima/shark-front.svg",
  60119. extra: 2238/2013,
  60120. bottom: 0/223
  60121. },
  60122. form: "shark",
  60123. },
  60124. paw: {
  60125. height: math.unit(1, "feet"),
  60126. name: "Paw",
  60127. image: {
  60128. source: "./media/characters/nima/paw.svg"
  60129. }
  60130. },
  60131. circlet: {
  60132. height: math.unit(0.3, "feet"),
  60133. name: "Circlet",
  60134. image: {
  60135. source: "./media/characters/nima/circlet.svg"
  60136. }
  60137. },
  60138. necklace: {
  60139. height: math.unit(1.2, "feet"),
  60140. name: "Necklace",
  60141. image: {
  60142. source: "./media/characters/nima/necklace.svg"
  60143. }
  60144. },
  60145. bracelet: {
  60146. height: math.unit(0.51, "feet"),
  60147. name: "Bracelet",
  60148. image: {
  60149. source: "./media/characters/nima/bracelet.svg"
  60150. }
  60151. },
  60152. armband: {
  60153. height: math.unit(1.3, "feet"),
  60154. name: "Armband",
  60155. image: {
  60156. source: "./media/characters/nima/armband.svg"
  60157. }
  60158. },
  60159. },
  60160. [
  60161. {
  60162. name: "Incognito",
  60163. height: math.unit(2.1, "meters"),
  60164. allForms: true
  60165. },
  60166. {
  60167. name: "Small Macro",
  60168. height: math.unit(50, "meters"),
  60169. allForms: true
  60170. },
  60171. {
  60172. name: "Macro",
  60173. height: math.unit(200, "meters"),
  60174. allForms: true
  60175. },
  60176. {
  60177. name: "Mega",
  60178. height: math.unit(2.5, "km"),
  60179. allForms: true
  60180. },
  60181. {
  60182. name: "Mega+",
  60183. height: math.unit(30, "km"),
  60184. allForms: true
  60185. },
  60186. {
  60187. name: "Giga (Home Size)",
  60188. height: math.unit(400, "km"),
  60189. allForms: true,
  60190. default: true
  60191. },
  60192. {
  60193. name: "Giga+",
  60194. height: math.unit(2500, "km"),
  60195. allForms: true
  60196. },
  60197. {
  60198. name: "Giga++",
  60199. height: math.unit(8000, "km"),
  60200. allForms: true
  60201. },
  60202. {
  60203. name: "Terra",
  60204. height: math.unit(20000, "km"),
  60205. allForms: true
  60206. },
  60207. {
  60208. name: "Terra+",
  60209. height: math.unit(70000, "km"),
  60210. allForms: true
  60211. },
  60212. {
  60213. name: "Terra++",
  60214. height: math.unit(600000, "km"),
  60215. allForms: true
  60216. },
  60217. {
  60218. name: "Galactic",
  60219. height: math.unit(40, "galaxies"),
  60220. allForms: true
  60221. },
  60222. {
  60223. name: "Universal",
  60224. height: math.unit(40, "universes"),
  60225. allForms: true
  60226. },
  60227. ],
  60228. {
  60229. "hyena": {
  60230. name: "Hyena",
  60231. default: true
  60232. },
  60233. "shark": {
  60234. name: "Shark",
  60235. },
  60236. }
  60237. ))
  60238. characterMakers.push(() => makeCharacter(
  60239. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60240. {
  60241. anthro_front: {
  60242. height: math.unit(1.5, "meters"),
  60243. name: "Front",
  60244. image: {
  60245. source: "./media/characters/adelaide/anthro-front.svg",
  60246. extra: 860/783,
  60247. bottom: 60/920
  60248. },
  60249. form: "anthro",
  60250. default: true
  60251. },
  60252. hand: {
  60253. height: math.unit(0.65, "feet"),
  60254. name: "Hand",
  60255. image: {
  60256. source: "./media/characters/adelaide/hand.svg"
  60257. },
  60258. form: "anthro"
  60259. },
  60260. foot: {
  60261. height: math.unit(1.38 * 259 / 314, "feet"),
  60262. name: "Foot",
  60263. image: {
  60264. source: "./media/characters/adelaide/foot.svg",
  60265. extra: 259/259,
  60266. bottom: 55/314
  60267. },
  60268. form: "anthro"
  60269. },
  60270. feather: {
  60271. height: math.unit(0.85, "feet"),
  60272. name: "Feather",
  60273. image: {
  60274. source: "./media/characters/adelaide/feather.svg"
  60275. },
  60276. form: "anthro"
  60277. },
  60278. feral_side: {
  60279. height: math.unit(1, "meters"),
  60280. name: "Side",
  60281. image: {
  60282. source: "./media/characters/adelaide/feral-side.svg",
  60283. extra: 550/467,
  60284. bottom: 37/587
  60285. },
  60286. form: "feral",
  60287. default: true
  60288. },
  60289. feral_hand: {
  60290. height: math.unit(0.58, "feet"),
  60291. name: "Hand",
  60292. image: {
  60293. source: "./media/characters/adelaide/hand.svg"
  60294. },
  60295. form: "feral"
  60296. },
  60297. feral_foot: {
  60298. height: math.unit(1.2 * 259 / 314, "feet"),
  60299. name: "Foot",
  60300. image: {
  60301. source: "./media/characters/adelaide/foot.svg",
  60302. extra: 259/259,
  60303. bottom: 55/314
  60304. },
  60305. form: "feral"
  60306. },
  60307. feral_feather: {
  60308. height: math.unit(0.63, "feet"),
  60309. name: "Feather",
  60310. image: {
  60311. source: "./media/characters/adelaide/feather.svg"
  60312. },
  60313. form: "feral"
  60314. },
  60315. },
  60316. [
  60317. {
  60318. name: "Normal",
  60319. height: math.unit(1.5, "meters"),
  60320. form: "anthro",
  60321. default: true
  60322. },
  60323. {
  60324. name: "Normal",
  60325. height: math.unit(1, "meters"),
  60326. form: "feral",
  60327. default: true
  60328. },
  60329. ],
  60330. {
  60331. "anthro": {
  60332. name: "Anthro",
  60333. default: true
  60334. },
  60335. "feral": {
  60336. name: "Feral",
  60337. },
  60338. }
  60339. ))
  60340. characterMakers.push(() => makeCharacter(
  60341. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60342. {
  60343. front: {
  60344. height: math.unit(2.5, "meters"),
  60345. name: "Front",
  60346. image: {
  60347. source: "./media/characters/goa/front.svg",
  60348. extra: 1109/1013,
  60349. bottom: 150/1259
  60350. }
  60351. },
  60352. },
  60353. [
  60354. {
  60355. name: "Normal",
  60356. height: math.unit(2.5, "meters"),
  60357. default: true
  60358. },
  60359. ]
  60360. ))
  60361. characterMakers.push(() => makeCharacter(
  60362. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60363. {
  60364. front: {
  60365. height: math.unit(2, "meters"),
  60366. weight: math.unit(100, "kg"),
  60367. name: "Front",
  60368. image: {
  60369. source: "./media/characters/kiki-weavile/front.svg",
  60370. extra: 357/332,
  60371. bottom: 60/417
  60372. }
  60373. },
  60374. },
  60375. [
  60376. {
  60377. name: "Normal",
  60378. height: math.unit(2, "meters"),
  60379. default: true
  60380. },
  60381. ]
  60382. ))
  60383. characterMakers.push(() => makeCharacter(
  60384. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60385. {
  60386. side: {
  60387. height: math.unit(1.6, "meters"),
  60388. name: "Side",
  60389. image: {
  60390. source: "./media/characters/liza/side.svg",
  60391. extra: 943/915,
  60392. bottom: 72/1015
  60393. }
  60394. },
  60395. },
  60396. [
  60397. {
  60398. name: "Normal",
  60399. height: math.unit(1.6, "meters"),
  60400. default: true
  60401. },
  60402. ]
  60403. ))
  60404. characterMakers.push(() => makeCharacter(
  60405. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60406. {
  60407. side: {
  60408. height: math.unit(2.5, "meters"),
  60409. preyCapacity: math.unit(1, "people"),
  60410. name: "Side",
  60411. image: {
  60412. source: "./media/characters/persephone-sweetbreath/side.svg",
  60413. extra: 796/700,
  60414. bottom: 44/840
  60415. }
  60416. },
  60417. sideVore: {
  60418. height: math.unit(2.5, "meters"),
  60419. preyCapacity: math.unit(1, "people"),
  60420. name: "Side (Full)",
  60421. image: {
  60422. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60423. extra: 796/700,
  60424. bottom: 44/840
  60425. }
  60426. },
  60427. },
  60428. [
  60429. {
  60430. name: "Normal",
  60431. height: math.unit(2.5, "meters"),
  60432. default: true
  60433. },
  60434. ]
  60435. ))
  60436. characterMakers.push(() => makeCharacter(
  60437. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60438. {
  60439. front: {
  60440. height: math.unit(32, "meters"),
  60441. name: "Front",
  60442. image: {
  60443. source: "./media/characters/pierce/front.svg",
  60444. extra: 1695/1475,
  60445. bottom: 185/1880
  60446. }
  60447. },
  60448. side: {
  60449. height: math.unit(32, "meters"),
  60450. name: "Side",
  60451. image: {
  60452. source: "./media/characters/pierce/side.svg",
  60453. extra: 974/859,
  60454. bottom: 43/1017
  60455. }
  60456. },
  60457. frontWingless: {
  60458. height: math.unit(32, "meters"),
  60459. name: "Front (Wingless)",
  60460. image: {
  60461. source: "./media/characters/pierce/front-wingless.svg",
  60462. extra: 1695/1475,
  60463. bottom: 185/1880
  60464. }
  60465. },
  60466. sideWingless: {
  60467. height: math.unit(32, "meters"),
  60468. name: "Side (Wingless)",
  60469. image: {
  60470. source: "./media/characters/pierce/side-wingless.svg",
  60471. extra: 974/859,
  60472. bottom: 43/1017
  60473. }
  60474. },
  60475. maw: {
  60476. height: math.unit(19.3, "meters"),
  60477. name: "Maw",
  60478. image: {
  60479. source: "./media/characters/pierce/maw.svg"
  60480. }
  60481. },
  60482. },
  60483. [
  60484. {
  60485. name: "Small",
  60486. height: math.unit(8.5, "meters")
  60487. },
  60488. {
  60489. name: "Normal",
  60490. height: math.unit(32, "meters"),
  60491. default: true
  60492. },
  60493. ]
  60494. ))
  60495. characterMakers.push(() => makeCharacter(
  60496. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60497. {
  60498. front: {
  60499. height: math.unit(2.3, "meters"),
  60500. weight: math.unit(165, "kg"),
  60501. name: "Front",
  60502. image: {
  60503. source: "./media/characters/shira/front.svg",
  60504. extra: 924/919,
  60505. bottom: 17/941
  60506. },
  60507. form: "cobra",
  60508. default: true
  60509. },
  60510. back: {
  60511. height: math.unit(2.3, "meters"),
  60512. weight: math.unit(165, "kg"),
  60513. name: "Back",
  60514. image: {
  60515. source: "./media/characters/shira/back.svg",
  60516. extra: 928/922,
  60517. bottom: 18/946
  60518. },
  60519. form: "cobra"
  60520. },
  60521. frontLewd: {
  60522. height: math.unit(2.3, "meters"),
  60523. weight: math.unit(165, "kg"),
  60524. name: "Front (Lewd)",
  60525. image: {
  60526. source: "./media/characters/shira/front-lewd.svg",
  60527. extra: 924/919,
  60528. bottom: 17/941
  60529. },
  60530. form: "cobra"
  60531. },
  60532. backLewd: {
  60533. height: math.unit(2.3, "meters"),
  60534. weight: math.unit(165, "kg"),
  60535. name: "Back (Lewd)",
  60536. image: {
  60537. source: "./media/characters/shira/back-lewd.svg",
  60538. extra: 928/922,
  60539. bottom: 18/946
  60540. },
  60541. form: "cobra"
  60542. },
  60543. maw: {
  60544. height: math.unit(1.14, "feet"),
  60545. name: "Maw",
  60546. image: {
  60547. source: "./media/characters/shira/maw.svg"
  60548. },
  60549. form: "cobra"
  60550. },
  60551. magma_front: {
  60552. height: math.unit(2.3, "meters"),
  60553. weight: math.unit(165, "kg"),
  60554. name: "Front",
  60555. image: {
  60556. source: "./media/characters/shira/magma-front.svg",
  60557. extra: 1870/1693,
  60558. bottom: 24/1894
  60559. },
  60560. form: "magma",
  60561. },
  60562. magma_back: {
  60563. height: math.unit(2.3, "meters"),
  60564. weight: math.unit(165, "kg"),
  60565. name: "Back",
  60566. image: {
  60567. source: "./media/characters/shira/magma-back.svg",
  60568. extra: 1918/1756,
  60569. bottom: 46/1964
  60570. },
  60571. form: "magma",
  60572. },
  60573. },
  60574. [
  60575. {
  60576. name: "Incognito",
  60577. height: math.unit(2.3, "meters"),
  60578. allForms: true
  60579. },
  60580. {
  60581. name: "Home Size",
  60582. height: math.unit(150, "meters"),
  60583. default: true,
  60584. allForms: true
  60585. },
  60586. {
  60587. name: "Macro",
  60588. height: math.unit(2, "km"),
  60589. allForms: true
  60590. },
  60591. {
  60592. name: "Mega",
  60593. height: math.unit(30, "km"),
  60594. allForms: true
  60595. },
  60596. {
  60597. name: "Giga",
  60598. height: math.unit(450, "km"),
  60599. allForms: true
  60600. },
  60601. {
  60602. name: "Giga+",
  60603. height: math.unit(3000, "km"),
  60604. allForms: true
  60605. },
  60606. {
  60607. name: "Giga++",
  60608. height: math.unit(6000, "km"),
  60609. allForms: true
  60610. },
  60611. {
  60612. name: "Terra",
  60613. height: math.unit(80000, "km"),
  60614. allForms: true
  60615. },
  60616. {
  60617. name: "Terra+",
  60618. height: math.unit(350000, "km"),
  60619. allForms: true
  60620. },
  60621. {
  60622. name: "Solar",
  60623. height: math.unit(1e6, "km"),
  60624. allForms: true
  60625. },
  60626. ],
  60627. {
  60628. "cobra": {
  60629. name: "Cobra",
  60630. default: true
  60631. },
  60632. "magma": {
  60633. name: "Magma Dragon",
  60634. },
  60635. }
  60636. ))
  60637. characterMakers.push(() => makeCharacter(
  60638. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60639. {
  60640. front: {
  60641. height: math.unit(2, "meters"),
  60642. weight: math.unit(160, "kg"),
  60643. name: "Front",
  60644. image: {
  60645. source: "./media/characters/daxerios/front.svg",
  60646. extra: 1334/1277,
  60647. bottom: 45/1379
  60648. }
  60649. },
  60650. frontLewd: {
  60651. height: math.unit(2, "meters"),
  60652. weight: math.unit(160, "kg"),
  60653. name: "Front (Lewd)",
  60654. image: {
  60655. source: "./media/characters/daxerios/front-lewd.svg",
  60656. extra: 1334/1277,
  60657. bottom: 45/1379
  60658. }
  60659. },
  60660. dick: {
  60661. height: math.unit(2.35, "feet"),
  60662. name: "Dick",
  60663. image: {
  60664. source: "./media/characters/daxerios/dick.svg"
  60665. }
  60666. },
  60667. },
  60668. [
  60669. {
  60670. name: "\"Small\"",
  60671. height: math.unit(5, "meters")
  60672. },
  60673. {
  60674. name: "Original Size",
  60675. height: math.unit(500, "meters"),
  60676. default: true
  60677. },
  60678. {
  60679. name: "Mega",
  60680. height: math.unit(2, "km")
  60681. },
  60682. {
  60683. name: "Mega+",
  60684. height: math.unit(35, "km")
  60685. },
  60686. {
  60687. name: "Giga",
  60688. height: math.unit(250, "km")
  60689. },
  60690. {
  60691. name: "Giga+",
  60692. height: math.unit(3000, "km")
  60693. },
  60694. {
  60695. name: "Terra",
  60696. height: math.unit(25000, "km")
  60697. },
  60698. {
  60699. name: "Terra+",
  60700. height: math.unit(300000, "km")
  60701. },
  60702. {
  60703. name: "Solar",
  60704. height: math.unit(1e6, "km")
  60705. },
  60706. ]
  60707. ))
  60708. characterMakers.push(() => makeCharacter(
  60709. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60710. {
  60711. front: {
  60712. height: math.unit(8 + 4/12, "feet"),
  60713. weight: math.unit(464, "lb"),
  60714. name: "Front",
  60715. image: {
  60716. source: "./media/characters/caveat/front.svg",
  60717. extra: 1861/1678,
  60718. bottom: 40/1901
  60719. }
  60720. },
  60721. },
  60722. [
  60723. {
  60724. name: "Normal",
  60725. height: math.unit(8 + 4/12, "feet"),
  60726. default: true
  60727. },
  60728. ]
  60729. ))
  60730. characterMakers.push(() => makeCharacter(
  60731. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60732. {
  60733. front: {
  60734. height: math.unit(12, "feet"),
  60735. weight: math.unit(1800, "lb"),
  60736. name: "Front",
  60737. image: {
  60738. source: "./media/characters/centbair/front.svg",
  60739. extra: 781/663,
  60740. bottom: 25/806
  60741. }
  60742. },
  60743. frontNsfw: {
  60744. height: math.unit(12, "feet"),
  60745. weight: math.unit(1800, "lb"),
  60746. name: "Front (NSFW)",
  60747. image: {
  60748. source: "./media/characters/centbair/front-nsfw.svg",
  60749. extra: 781/663,
  60750. bottom: 25/806
  60751. }
  60752. },
  60753. back: {
  60754. height: math.unit(12, "feet"),
  60755. weight: math.unit(1800, "lb"),
  60756. name: "Back",
  60757. image: {
  60758. source: "./media/characters/centbair/back.svg",
  60759. extra: 808/761,
  60760. bottom: 19/827
  60761. }
  60762. },
  60763. dick: {
  60764. height: math.unit(6.5, "feet"),
  60765. name: "Dick",
  60766. image: {
  60767. source: "./media/characters/centbair/dick.svg"
  60768. }
  60769. },
  60770. slit: {
  60771. height: math.unit(3.25, "feet"),
  60772. name: "Slit",
  60773. image: {
  60774. source: "./media/characters/centbair/slit.svg"
  60775. }
  60776. },
  60777. },
  60778. [
  60779. {
  60780. name: "Normal",
  60781. height: math.unit(12, "feet"),
  60782. default: true
  60783. },
  60784. ]
  60785. ))
  60786. characterMakers.push(() => makeCharacter(
  60787. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60788. {
  60789. front: {
  60790. height: math.unit(5 + 7/12, "feet"),
  60791. name: "Front",
  60792. image: {
  60793. source: "./media/characters/andy/front.svg",
  60794. extra: 634/588,
  60795. bottom: 36/670
  60796. },
  60797. extraAttributes: {
  60798. "pawLength": {
  60799. name: "Paw Length",
  60800. power: 1,
  60801. type: "length",
  60802. base: math.unit(1, "feet")
  60803. },
  60804. }
  60805. },
  60806. side: {
  60807. height: math.unit(5 + 7/12, "feet"),
  60808. name: "Side",
  60809. image: {
  60810. source: "./media/characters/andy/side.svg",
  60811. extra: 641/596,
  60812. bottom: 34/675
  60813. },
  60814. extraAttributes: {
  60815. "pawLength": {
  60816. name: "Paw Length",
  60817. power: 1,
  60818. type: "length",
  60819. base: math.unit(1, "feet")
  60820. },
  60821. }
  60822. },
  60823. back: {
  60824. height: math.unit(5 + 7/12, "feet"),
  60825. name: "Back",
  60826. image: {
  60827. source: "./media/characters/andy/back.svg",
  60828. extra: 618/583,
  60829. bottom: 39/657
  60830. },
  60831. extraAttributes: {
  60832. "pawLength": {
  60833. name: "Paw Length",
  60834. power: 1,
  60835. type: "length",
  60836. base: math.unit(1, "feet")
  60837. },
  60838. }
  60839. },
  60840. paw: {
  60841. height: math.unit(1.13, "feet"),
  60842. name: "Paw",
  60843. image: {
  60844. source: "./media/characters/andy/paw.svg"
  60845. }
  60846. },
  60847. },
  60848. [
  60849. {
  60850. name: "Micro",
  60851. height: math.unit(4, "inches")
  60852. },
  60853. {
  60854. name: "Normal",
  60855. height: math.unit(5 + 7/12, "feet"),
  60856. default: true
  60857. },
  60858. {
  60859. name: "Macro",
  60860. height: math.unit(390.42, "feet")
  60861. },
  60862. ]
  60863. ))
  60864. characterMakers.push(() => makeCharacter(
  60865. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60866. {
  60867. front: {
  60868. height: math.unit(7, "feet"),
  60869. weight: math.unit(250, "lb"),
  60870. name: "Front",
  60871. image: {
  60872. source: "./media/characters/vix-titan/front.svg",
  60873. extra: 460/428,
  60874. bottom: 15/475
  60875. },
  60876. extraAttributes: {
  60877. "pawWidth": {
  60878. name: "Paw Width",
  60879. power: 1,
  60880. type: "length",
  60881. base: math.unit(0.75, "feet")
  60882. },
  60883. }
  60884. },
  60885. },
  60886. [
  60887. {
  60888. name: "Normal",
  60889. height: math.unit(7, "feet"),
  60890. default: true
  60891. },
  60892. {
  60893. name: "Giant",
  60894. height: math.unit(1500, "feet")
  60895. },
  60896. {
  60897. name: "Mega",
  60898. height: math.unit(10, "miles")
  60899. },
  60900. {
  60901. name: "Giga",
  60902. height: math.unit(150, "miles")
  60903. },
  60904. {
  60905. name: "Tera",
  60906. height: math.unit(144000, "miles")
  60907. },
  60908. ]
  60909. ))
  60910. characterMakers.push(() => makeCharacter(
  60911. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60912. {
  60913. front: {
  60914. height: math.unit(6 + 2/12, "feet"),
  60915. name: "Front",
  60916. image: {
  60917. source: "./media/characters/reiku/front.svg",
  60918. extra: 1910/1757,
  60919. bottom: 103/2013
  60920. },
  60921. extraAttributes: {
  60922. "thighThickness": {
  60923. name: "Thigh Thickness",
  60924. power: 1,
  60925. type: "length",
  60926. base: math.unit(1.12, "feet")
  60927. },
  60928. "assThickness": {
  60929. name: "Ass Thickness",
  60930. power: 1,
  60931. type: "length",
  60932. base: math.unit(1.12*2, "feet")
  60933. },
  60934. }
  60935. },
  60936. side: {
  60937. height: math.unit(6 + 2/12, "feet"),
  60938. name: "Side",
  60939. image: {
  60940. source: "./media/characters/reiku/side.svg",
  60941. extra: 1846/1748,
  60942. bottom: 99/1945
  60943. },
  60944. extraAttributes: {
  60945. "thighThickness": {
  60946. name: "Thigh Thickness",
  60947. power: 1,
  60948. type: "length",
  60949. base: math.unit(1.12, "feet")
  60950. },
  60951. "assThickness": {
  60952. name: "Ass Thickness",
  60953. power: 1,
  60954. type: "length",
  60955. base: math.unit(1.12*2, "feet")
  60956. },
  60957. }
  60958. },
  60959. back: {
  60960. height: math.unit(6 + 2/12, "feet"),
  60961. name: "Back",
  60962. image: {
  60963. source: "./media/characters/reiku/back.svg",
  60964. extra: 1941/1786,
  60965. bottom: 34/1975
  60966. },
  60967. extraAttributes: {
  60968. "thighThickness": {
  60969. name: "Thigh Thickness",
  60970. power: 1,
  60971. type: "length",
  60972. base: math.unit(1.12, "feet")
  60973. },
  60974. "assThickness": {
  60975. name: "Ass Thickness",
  60976. power: 1,
  60977. type: "length",
  60978. base: math.unit(1.12*2, "feet")
  60979. },
  60980. }
  60981. },
  60982. head: {
  60983. height: math.unit(1.8, "feet"),
  60984. name: "Head",
  60985. image: {
  60986. source: "./media/characters/reiku/head.svg"
  60987. }
  60988. },
  60989. tailTop: {
  60990. height: math.unit(8.4, "feet"),
  60991. name: "Tail (Top)",
  60992. image: {
  60993. source: "./media/characters/reiku/tail-top.svg"
  60994. }
  60995. },
  60996. tailBottom: {
  60997. height: math.unit(8.4, "feet"),
  60998. name: "Tail (Bottom)",
  60999. image: {
  61000. source: "./media/characters/reiku/tail-bottom.svg"
  61001. }
  61002. },
  61003. foot: {
  61004. height: math.unit(2.6, "feet"),
  61005. name: "Foot",
  61006. image: {
  61007. source: "./media/characters/reiku/foot.svg"
  61008. }
  61009. },
  61010. footCurled: {
  61011. height: math.unit(2.3, "feet"),
  61012. name: "Foot (Curled)",
  61013. image: {
  61014. source: "./media/characters/reiku/foot-curled.svg"
  61015. }
  61016. },
  61017. footSide: {
  61018. height: math.unit(1.26, "feet"),
  61019. name: "Foot (Side)",
  61020. image: {
  61021. source: "./media/characters/reiku/foot-side.svg"
  61022. }
  61023. },
  61024. },
  61025. [
  61026. {
  61027. name: "Normal",
  61028. height: math.unit(6 + 2/12, "feet"),
  61029. default: true
  61030. },
  61031. ]
  61032. ))
  61033. characterMakers.push(() => makeCharacter(
  61034. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61035. {
  61036. front: {
  61037. height: math.unit(7, "feet"),
  61038. weight: math.unit(500, "kg"),
  61039. name: "Front",
  61040. image: {
  61041. source: "./media/characters/cialda/front.svg",
  61042. extra: 912/745,
  61043. bottom: 55/967
  61044. }
  61045. },
  61046. },
  61047. [
  61048. {
  61049. name: "Normal",
  61050. height: math.unit(7, "feet"),
  61051. default: true
  61052. },
  61053. ]
  61054. ))
  61055. characterMakers.push(() => makeCharacter(
  61056. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61057. {
  61058. side: {
  61059. height: math.unit(6, "feet"),
  61060. weight: math.unit(600, "lb"),
  61061. preyCapacity: math.unit(25, "liters"),
  61062. name: "Side",
  61063. image: {
  61064. source: "./media/characters/darkkin/side.svg",
  61065. extra: 1597/1447,
  61066. bottom: 101/1698
  61067. }
  61068. },
  61069. },
  61070. [
  61071. {
  61072. name: "Canon Height",
  61073. height: math.unit(568, "feet"),
  61074. default: true
  61075. },
  61076. ]
  61077. ))
  61078. characterMakers.push(() => makeCharacter(
  61079. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61080. {
  61081. front: {
  61082. height: math.unit(6, "feet"),
  61083. weight: math.unit(1500, "lb"),
  61084. preyCapacity: math.unit(3, "people"),
  61085. name: "Front",
  61086. image: {
  61087. source: "./media/characters/livnia/front.svg",
  61088. extra: 934/932,
  61089. bottom: 83/1017
  61090. }
  61091. },
  61092. back: {
  61093. height: math.unit(6, "feet"),
  61094. weight: math.unit(1500, "lb"),
  61095. preyCapacity: math.unit(3, "people"),
  61096. name: "Back",
  61097. image: {
  61098. source: "./media/characters/livnia/back.svg",
  61099. extra: 916/915,
  61100. bottom: 58/974
  61101. }
  61102. },
  61103. head: {
  61104. height: math.unit(1.53, "feet"),
  61105. name: "Head",
  61106. image: {
  61107. source: "./media/characters/livnia/head.svg"
  61108. }
  61109. },
  61110. maw: {
  61111. height: math.unit(0.78, "feet"),
  61112. name: "Maw",
  61113. image: {
  61114. source: "./media/characters/livnia/maw.svg"
  61115. }
  61116. },
  61117. genitals: {
  61118. height: math.unit(0.35, "feet"),
  61119. name: "Genitals",
  61120. image: {
  61121. source: "./media/characters/livnia/genitals.svg"
  61122. }
  61123. },
  61124. },
  61125. [
  61126. {
  61127. name: "Normal",
  61128. height: math.unit(1000, "feet"),
  61129. default: true
  61130. },
  61131. ]
  61132. ))
  61133. characterMakers.push(() => makeCharacter(
  61134. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61135. {
  61136. front: {
  61137. height: math.unit(4, "feet"),
  61138. weight: math.unit(73, "lb"),
  61139. name: "Front",
  61140. image: {
  61141. source: "./media/characters/hayaku/front.svg",
  61142. extra: 1011/888,
  61143. bottom: 33/1044
  61144. }
  61145. },
  61146. back: {
  61147. height: math.unit(4, "feet"),
  61148. weight: math.unit(73, "lb"),
  61149. name: "Back",
  61150. image: {
  61151. source: "./media/characters/hayaku/back.svg",
  61152. extra: 1040/930,
  61153. bottom: 20/1060
  61154. }
  61155. },
  61156. },
  61157. [
  61158. {
  61159. name: "Normal",
  61160. height: math.unit(4, "feet"),
  61161. default: true
  61162. },
  61163. ]
  61164. ))
  61165. characterMakers.push(() => makeCharacter(
  61166. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61167. {
  61168. front: {
  61169. height: math.unit(6 + 7/12, "feet"),
  61170. weight: math.unit(300, "lb"),
  61171. name: "Front",
  61172. image: {
  61173. source: "./media/characters/athena-bryzant/front.svg",
  61174. extra: 870/835,
  61175. bottom: 33/903
  61176. }
  61177. },
  61178. back: {
  61179. height: math.unit(6 + 7/12, "feet"),
  61180. weight: math.unit(300, "lb"),
  61181. name: "Back",
  61182. image: {
  61183. source: "./media/characters/athena-bryzant/back.svg",
  61184. extra: 858/823,
  61185. bottom: 30/888
  61186. }
  61187. },
  61188. head: {
  61189. height: math.unit(2.38, "feet"),
  61190. name: "Head",
  61191. image: {
  61192. source: "./media/characters/athena-bryzant/head.svg"
  61193. }
  61194. },
  61195. wings: {
  61196. height: math.unit(2.85, "feet"),
  61197. name: "Wings",
  61198. image: {
  61199. source: "./media/characters/athena-bryzant/wings.svg"
  61200. }
  61201. },
  61202. },
  61203. [
  61204. {
  61205. name: "Normal",
  61206. height: math.unit(6 + 7/12, "feet"),
  61207. default: true
  61208. },
  61209. {
  61210. name: "Big",
  61211. height: math.unit(8, "feet")
  61212. },
  61213. {
  61214. name: "Very Big",
  61215. height: math.unit(11, "feet")
  61216. },
  61217. ]
  61218. ))
  61219. characterMakers.push(() => makeCharacter(
  61220. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61221. {
  61222. side: {
  61223. height: math.unit(3, "meters"),
  61224. weight: math.unit(7500, "kg"),
  61225. preyCapacity: math.unit(1e12, "people"),
  61226. name: "Side",
  61227. image: {
  61228. source: "./media/characters/zel-kesh/side.svg",
  61229. extra: 910/407,
  61230. bottom: 147/1057
  61231. }
  61232. },
  61233. },
  61234. [
  61235. {
  61236. name: "Normal",
  61237. height: math.unit(3, "meters"),
  61238. default: true
  61239. },
  61240. ]
  61241. ))
  61242. characterMakers.push(() => makeCharacter(
  61243. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61244. {
  61245. front: {
  61246. height: math.unit(2, "meters"),
  61247. weight: math.unit(95, "kg"),
  61248. name: "Front",
  61249. image: {
  61250. source: "./media/characters/kane-fox/front.svg",
  61251. extra: 945/888,
  61252. bottom: 27/972
  61253. }
  61254. },
  61255. back: {
  61256. height: math.unit(2, "meters"),
  61257. weight: math.unit(95, "kg"),
  61258. name: "Back",
  61259. image: {
  61260. source: "./media/characters/kane-fox/back.svg",
  61261. extra: 959/914,
  61262. bottom: 15/974
  61263. }
  61264. },
  61265. frontLewd: {
  61266. height: math.unit(2, "meters"),
  61267. weight: math.unit(95, "kg"),
  61268. name: "Front (Lewd)",
  61269. image: {
  61270. source: "./media/characters/kane-fox/front-lewd.svg",
  61271. extra: 945/888,
  61272. bottom: 27/972
  61273. }
  61274. },
  61275. },
  61276. [
  61277. {
  61278. name: "Home Size",
  61279. height: math.unit(2, "meters"),
  61280. default: true
  61281. },
  61282. {
  61283. name: "Macro",
  61284. height: math.unit(200, "meters")
  61285. },
  61286. {
  61287. name: "Small Mega",
  61288. height: math.unit(3, "km")
  61289. },
  61290. {
  61291. name: "Mega",
  61292. height: math.unit(50, "km")
  61293. },
  61294. {
  61295. name: "Giga",
  61296. height: math.unit(200, "km")
  61297. },
  61298. {
  61299. name: "Giga+",
  61300. height: math.unit(2500, "km")
  61301. },
  61302. {
  61303. name: "Terra",
  61304. height: math.unit(70000, "km")
  61305. },
  61306. {
  61307. name: "Terra+",
  61308. height: math.unit(150000, "km")
  61309. },
  61310. {
  61311. name: "Terra++",
  61312. height: math.unit(400000, "km")
  61313. },
  61314. ]
  61315. ))
  61316. characterMakers.push(() => makeCharacter(
  61317. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61318. {
  61319. otter_front: {
  61320. height: math.unit(1.8, "meters"),
  61321. weight: math.unit(90, "kg"),
  61322. name: "Front",
  61323. image: {
  61324. source: "./media/characters/ayranus/otter-front.svg",
  61325. extra: 468/452,
  61326. bottom: 43/511
  61327. },
  61328. form: "otter",
  61329. },
  61330. otter_frontLewd: {
  61331. height: math.unit(1.8, "meters"),
  61332. weight: math.unit(90, "kg"),
  61333. name: "Front (Lewd)",
  61334. image: {
  61335. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61336. extra: 468/452,
  61337. bottom: 43/511
  61338. },
  61339. form: "otter",
  61340. },
  61341. lionbat_front: {
  61342. height: math.unit(1.8, "meters"),
  61343. weight: math.unit(90, "kg"),
  61344. name: "Front (Lewd)",
  61345. image: {
  61346. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61347. extra: 797/740,
  61348. bottom: 78/875
  61349. },
  61350. form: "lionbat",
  61351. },
  61352. paw: {
  61353. height: math.unit(1.5, "feet"),
  61354. name: "Paw",
  61355. image: {
  61356. source: "./media/characters/ayranus/paw.svg"
  61357. },
  61358. },
  61359. },
  61360. [
  61361. {
  61362. name: "Incognito",
  61363. height: math.unit(1.8, "meters"),
  61364. allForms: true
  61365. },
  61366. {
  61367. name: "Macro",
  61368. height: math.unit(60, "meters"),
  61369. allForms: true
  61370. },
  61371. {
  61372. name: "Macro+",
  61373. height: math.unit(200, "meters"),
  61374. allForms: true
  61375. },
  61376. {
  61377. name: "Mega",
  61378. height: math.unit(35, "km"),
  61379. allForms: true
  61380. },
  61381. {
  61382. name: "Giga",
  61383. height: math.unit(220, "km"),
  61384. allForms: true
  61385. },
  61386. {
  61387. name: "Giga+",
  61388. height: math.unit(1500, "km"),
  61389. allForms: true
  61390. },
  61391. {
  61392. name: "Terra",
  61393. height: math.unit(13000, "km"),
  61394. allForms: true
  61395. },
  61396. {
  61397. name: "Terra+",
  61398. height: math.unit(500000, "km"),
  61399. allForms: true
  61400. },
  61401. {
  61402. name: "Galactic",
  61403. height: math.unit(486080, "parsecs"),
  61404. default: true,
  61405. allForms: true
  61406. },
  61407. ],
  61408. {
  61409. "otter": {
  61410. name: "Otter",
  61411. default: true
  61412. },
  61413. "lionbat": {
  61414. name: "Lionbat",
  61415. },
  61416. }
  61417. ))
  61418. characterMakers.push(() => makeCharacter(
  61419. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61420. {
  61421. front: {
  61422. height: math.unit(7 + 4/12, "feet"),
  61423. weight: math.unit(400, "lb"),
  61424. name: "Front",
  61425. image: {
  61426. source: "./media/characters/proxy/front.svg",
  61427. extra: 1605/1542,
  61428. bottom: 55/1660
  61429. }
  61430. },
  61431. side: {
  61432. height: math.unit(7 + 4/12, "feet"),
  61433. weight: math.unit(400, "lb"),
  61434. name: "Side",
  61435. image: {
  61436. source: "./media/characters/proxy/side.svg",
  61437. extra: 794/759,
  61438. bottom: 6/800
  61439. }
  61440. },
  61441. hand: {
  61442. height: math.unit(1.54, "feet"),
  61443. name: "Hand",
  61444. image: {
  61445. source: "./media/characters/proxy/hand.svg"
  61446. }
  61447. },
  61448. paw: {
  61449. height: math.unit(1.53, "feet"),
  61450. name: "Paw",
  61451. image: {
  61452. source: "./media/characters/proxy/paw.svg"
  61453. }
  61454. },
  61455. maw: {
  61456. height: math.unit(1.9, "feet"),
  61457. name: "Maw",
  61458. image: {
  61459. source: "./media/characters/proxy/maw.svg"
  61460. }
  61461. },
  61462. },
  61463. [
  61464. {
  61465. name: "Normal",
  61466. height: math.unit(7 + 4/12, "feet"),
  61467. default: true
  61468. },
  61469. ]
  61470. ))
  61471. characterMakers.push(() => makeCharacter(
  61472. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61473. {
  61474. front: {
  61475. height: math.unit(4, "meters"),
  61476. name: "Front",
  61477. image: {
  61478. source: "./media/characters/crocozilla/front.svg",
  61479. extra: 1790/1742,
  61480. bottom: 78/1868
  61481. }
  61482. },
  61483. },
  61484. [
  61485. {
  61486. name: "Normal",
  61487. height: math.unit(4, "meters"),
  61488. default: true
  61489. },
  61490. ]
  61491. ))
  61492. characterMakers.push(() => makeCharacter(
  61493. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61494. {
  61495. front: {
  61496. height: math.unit(1.8, "meters"),
  61497. weight: math.unit(120, "kg"),
  61498. name: "Front",
  61499. image: {
  61500. source: "./media/characters/kurz/front.svg",
  61501. extra: 1960/1824,
  61502. bottom: 41/2001
  61503. }
  61504. },
  61505. back: {
  61506. height: math.unit(1.8, "meters"),
  61507. weight: math.unit(120, "kg"),
  61508. name: "Back",
  61509. image: {
  61510. source: "./media/characters/kurz/back.svg",
  61511. extra: 1906/1787,
  61512. bottom: 60/1966
  61513. }
  61514. },
  61515. frontLewd: {
  61516. height: math.unit(1.8, "meters"),
  61517. weight: math.unit(120, "kg"),
  61518. name: "Front (Lewd)",
  61519. image: {
  61520. source: "./media/characters/kurz/front-lewd.svg",
  61521. extra: 1960/1824,
  61522. bottom: 41/2001
  61523. }
  61524. },
  61525. maw: {
  61526. height: math.unit(0.69, "meters"),
  61527. name: "Maw",
  61528. image: {
  61529. source: "./media/characters/kurz/maw.svg"
  61530. }
  61531. },
  61532. },
  61533. [
  61534. {
  61535. name: "Original Size",
  61536. height: math.unit(1.8, "meters")
  61537. },
  61538. {
  61539. name: "Incognito Size",
  61540. height: math.unit(2.4, "meters"),
  61541. default: true
  61542. },
  61543. {
  61544. name: "Macro",
  61545. height: math.unit(30, "meters")
  61546. },
  61547. {
  61548. name: "Macro+",
  61549. height: math.unit(250, "meters")
  61550. },
  61551. {
  61552. name: "Mega",
  61553. height: math.unit(2, "km")
  61554. },
  61555. {
  61556. name: "Mega+",
  61557. height: math.unit(35, "km")
  61558. },
  61559. {
  61560. name: "Mega++",
  61561. height: math.unit(75, "km")
  61562. },
  61563. {
  61564. name: "Giga",
  61565. height: math.unit(250, "km")
  61566. },
  61567. {
  61568. name: "Terra",
  61569. height: math.unit(15000, "km")
  61570. },
  61571. {
  61572. name: "Terra+",
  61573. height: math.unit(2250000, "km")
  61574. },
  61575. ]
  61576. ))
  61577. characterMakers.push(() => makeCharacter(
  61578. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61579. {
  61580. front: {
  61581. height: math.unit(16 + 3/12, "feet"),
  61582. weight: math.unit(3575, "lb"),
  61583. name: "Front",
  61584. image: {
  61585. source: "./media/characters/nikita/front.svg",
  61586. extra: 1064/955,
  61587. bottom: 47/1111
  61588. }
  61589. },
  61590. },
  61591. [
  61592. {
  61593. name: "Normal",
  61594. height: math.unit(16 + 3/12, "feet"),
  61595. default: true
  61596. },
  61597. {
  61598. name: "Big",
  61599. height: math.unit(21, "feet")
  61600. },
  61601. {
  61602. name: "Biggest",
  61603. height: math.unit(50, "feet")
  61604. },
  61605. ]
  61606. ))
  61607. characterMakers.push(() => makeCharacter(
  61608. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61609. {
  61610. front: {
  61611. height: math.unit(1.92, "m"),
  61612. weight: math.unit(76, "kg"),
  61613. name: "Front",
  61614. image: {
  61615. source: "./media/characters/kyara/front.svg",
  61616. extra: 1550/1438,
  61617. bottom: 139/1689
  61618. }
  61619. },
  61620. back: {
  61621. height: math.unit(1.92, "m"),
  61622. weight: math.unit(76, "kg"),
  61623. name: "Back",
  61624. image: {
  61625. source: "./media/characters/kyara/back.svg",
  61626. extra: 1523/1427,
  61627. bottom: 83/1606
  61628. }
  61629. },
  61630. head: {
  61631. height: math.unit(1.22, "feet"),
  61632. name: "Head",
  61633. image: {
  61634. source: "./media/characters/kyara/head.svg"
  61635. }
  61636. },
  61637. maw: {
  61638. height: math.unit(0.73, "feet"),
  61639. name: "Maw",
  61640. image: {
  61641. source: "./media/characters/kyara/maw.svg"
  61642. }
  61643. },
  61644. paws: {
  61645. height: math.unit(0.95, "feet"),
  61646. name: "Paws",
  61647. image: {
  61648. source: "./media/characters/kyara/paws.svg"
  61649. }
  61650. },
  61651. },
  61652. [
  61653. {
  61654. name: "Normal",
  61655. height: math.unit(1.92, "meters"),
  61656. default: true
  61657. },
  61658. {
  61659. name: "Mini Macro",
  61660. height: math.unit(192, "meters")
  61661. },
  61662. {
  61663. name: "Macro",
  61664. height: math.unit(480, "meters")
  61665. },
  61666. {
  61667. name: "Mega Macro",
  61668. height: math.unit(1440, "meters")
  61669. },
  61670. ]
  61671. ))
  61672. characterMakers.push(() => makeCharacter(
  61673. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61674. {
  61675. front: {
  61676. height: math.unit(6, "feet"),
  61677. weight: math.unit(160, "lbs"),
  61678. preyCapacity: math.unit(0.05, "people"),
  61679. name: "Front",
  61680. image: {
  61681. source: "./media/characters/layla-amari/front.svg",
  61682. extra: 1922/1723,
  61683. bottom: 90/2012
  61684. }
  61685. },
  61686. back: {
  61687. height: math.unit(6, "feet"),
  61688. weight: math.unit(160, "lbs"),
  61689. preyCapacity: math.unit(0.05, "people"),
  61690. name: "Back",
  61691. image: {
  61692. source: "./media/characters/layla-amari/back.svg",
  61693. extra: 1917/1718,
  61694. bottom: 50/1967
  61695. }
  61696. },
  61697. frontDressed: {
  61698. height: math.unit(6, "feet"),
  61699. weight: math.unit(160, "lbs"),
  61700. preyCapacity: math.unit(0.05, "people"),
  61701. name: "Front (Dressed)",
  61702. image: {
  61703. source: "./media/characters/layla-amari/front-dressed.svg",
  61704. extra: 1922/1723,
  61705. bottom: 90/2012
  61706. }
  61707. },
  61708. face: {
  61709. height: math.unit(0.93, "feet"),
  61710. name: "Face",
  61711. image: {
  61712. source: "./media/characters/layla-amari/face.svg"
  61713. }
  61714. },
  61715. hand: {
  61716. height: math.unit(0.66 , "feet"),
  61717. name: "Hand",
  61718. image: {
  61719. source: "./media/characters/layla-amari/hand.svg"
  61720. }
  61721. },
  61722. foot: {
  61723. height: math.unit(1, "feet"),
  61724. name: "Foot",
  61725. image: {
  61726. source: "./media/characters/layla-amari/foot.svg"
  61727. }
  61728. },
  61729. necklace: {
  61730. height: math.unit(0.32, "feet"),
  61731. name: "Necklace",
  61732. image: {
  61733. source: "./media/characters/layla-amari/necklace.svg"
  61734. }
  61735. },
  61736. nipple: {
  61737. height: math.unit(0.2, "feet"),
  61738. name: "Nipple",
  61739. image: {
  61740. source: "./media/characters/layla-amari/nipple.svg"
  61741. }
  61742. },
  61743. slit: {
  61744. height: math.unit(0.26, "feet"),
  61745. name: "Slit",
  61746. image: {
  61747. source: "./media/characters/layla-amari/slit.svg"
  61748. }
  61749. },
  61750. },
  61751. [
  61752. {
  61753. name: "Natural",
  61754. height: math.unit(825, "feet"),
  61755. default: true
  61756. },
  61757. {
  61758. name: "Enhanced",
  61759. height: math.unit(8250, "feet")
  61760. },
  61761. {
  61762. name: "Apparent Size",
  61763. height: math.unit(9.04363e+8, "meters")
  61764. },
  61765. ]
  61766. ))
  61767. characterMakers.push(() => makeCharacter(
  61768. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61769. {
  61770. front: {
  61771. height: math.unit(1.3, "meters"),
  61772. name: "Front",
  61773. image: {
  61774. source: "./media/characters/percy/front.svg",
  61775. extra: 1444/1289,
  61776. bottom: 54/1498
  61777. }
  61778. },
  61779. },
  61780. [
  61781. {
  61782. name: "Normal",
  61783. height: math.unit(1.3, "meters"),
  61784. default: true
  61785. },
  61786. ]
  61787. ))
  61788. characterMakers.push(() => makeCharacter(
  61789. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61790. {
  61791. side: {
  61792. height: math.unit(10, "meters"),
  61793. name: "Side",
  61794. image: {
  61795. source: "./media/characters/grev/side.svg",
  61796. extra: 653/266,
  61797. bottom: 77/730
  61798. }
  61799. },
  61800. head: {
  61801. height: math.unit(16.2, "m"),
  61802. name: "Head",
  61803. image: {
  61804. source: "./media/characters/grev/head.svg"
  61805. }
  61806. },
  61807. dick: {
  61808. height: math.unit(2.8135932034, "m"),
  61809. name: "Dick",
  61810. image: {
  61811. source: "./media/characters/grev/dick.svg"
  61812. }
  61813. },
  61814. },
  61815. [
  61816. {
  61817. name: "Friend-Sized",
  61818. height: math.unit(80, "cm")
  61819. },
  61820. {
  61821. name: "Normal",
  61822. height: math.unit(10, "meters"),
  61823. default: true
  61824. },
  61825. {
  61826. name: "Macro",
  61827. height: math.unit(200, "meters")
  61828. },
  61829. ]
  61830. ))
  61831. characterMakers.push(() => makeCharacter(
  61832. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61833. {
  61834. front: {
  61835. height: math.unit(19.75, "feet"),
  61836. weight: math.unit(20000, "lb"),
  61837. name: "Front",
  61838. image: {
  61839. source: "./media/characters/azuuca/front.svg",
  61840. extra: 1593/1511,
  61841. bottom: 55/1648
  61842. }
  61843. },
  61844. },
  61845. [
  61846. {
  61847. name: "Normal",
  61848. height: math.unit(19.75, "feet"),
  61849. default: true
  61850. },
  61851. ]
  61852. ))
  61853. characterMakers.push(() => makeCharacter(
  61854. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61855. {
  61856. front: {
  61857. height: math.unit(15, "feet"),
  61858. weight: math.unit(1500, "lb"),
  61859. name: "Front",
  61860. image: {
  61861. source: "./media/characters/valuria/front.svg",
  61862. extra: 1588/1486,
  61863. bottom: 31/1619
  61864. }
  61865. },
  61866. },
  61867. [
  61868. {
  61869. name: "Normal",
  61870. height: math.unit(15, "feet"),
  61871. default: true
  61872. },
  61873. {
  61874. name: "Small",
  61875. height: math.unit(500, "feet")
  61876. },
  61877. {
  61878. name: "Macro",
  61879. height: math.unit(4000, "feet")
  61880. },
  61881. {
  61882. name: "Mega Macro",
  61883. height: math.unit(2000, "miles")
  61884. },
  61885. {
  61886. name: "Giga Macro",
  61887. height: math.unit(3e6, "miles")
  61888. },
  61889. ]
  61890. ))
  61891. characterMakers.push(() => makeCharacter(
  61892. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61893. {
  61894. front: {
  61895. height: math.unit(3500, "solarradii"),
  61896. name: "Front",
  61897. image: {
  61898. source: "./media/characters/terigaia/front.svg",
  61899. extra: 1531/1451,
  61900. bottom: 98/1629
  61901. }
  61902. },
  61903. },
  61904. [
  61905. {
  61906. name: "Normal",
  61907. height: math.unit(3500, "solarradii"),
  61908. default: true
  61909. },
  61910. ]
  61911. ))
  61912. characterMakers.push(() => makeCharacter(
  61913. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61914. {
  61915. front: {
  61916. height: math.unit(9.34, "feet"),
  61917. weight: math.unit(600, "lb"),
  61918. name: "Front",
  61919. image: {
  61920. source: "./media/characters/blair-blaziken/front.svg",
  61921. extra: 1557/1462,
  61922. bottom: 55/1612
  61923. }
  61924. },
  61925. },
  61926. [
  61927. {
  61928. name: "Normal",
  61929. height: math.unit(9.34, "feet"),
  61930. default: true
  61931. },
  61932. ]
  61933. ))
  61934. characterMakers.push(() => makeCharacter(
  61935. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61936. {
  61937. pistrogre_front: {
  61938. height: math.unit(10, "feet"),
  61939. weight: math.unit(10, "tons"),
  61940. name: "Front",
  61941. image: {
  61942. source: "./media/characters/braxia/pistrogre-front.svg",
  61943. extra: 1531/1334,
  61944. bottom: 114/1645
  61945. },
  61946. form: "pistrogre",
  61947. default: true
  61948. },
  61949. human_front: {
  61950. height: math.unit(10, "feet"),
  61951. weight: math.unit(10, "tons"),
  61952. name: "Front",
  61953. image: {
  61954. source: "./media/characters/braxia/human-front.svg",
  61955. extra: 1574/1501,
  61956. bottom: 37/1611
  61957. },
  61958. form: "human",
  61959. default: true
  61960. },
  61961. },
  61962. [
  61963. {
  61964. name: "Normal",
  61965. height: math.unit(10, "feet"),
  61966. default: true,
  61967. allForms: true
  61968. },
  61969. {
  61970. name: "Macro",
  61971. height: math.unit(1000, "feet"),
  61972. allForms: true
  61973. },
  61974. {
  61975. name: "Mega Macro",
  61976. height: math.unit(100, "miles"),
  61977. allForms: true
  61978. },
  61979. {
  61980. name: "Cosmic",
  61981. height: math.unit(1000000, "lightyears"),
  61982. allForms: true
  61983. },
  61984. {
  61985. name: "ϐѮԆԬӁꭍϞԢ",
  61986. height: math.unit(1000, "multiverses"),
  61987. allForms: true
  61988. },
  61989. ],
  61990. {
  61991. "pistrogre": {
  61992. name: "Pistrogre",
  61993. default: true
  61994. },
  61995. "human": {
  61996. name: "Human",
  61997. },
  61998. }
  61999. ))
  62000. characterMakers.push(() => makeCharacter(
  62001. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62002. {
  62003. front: {
  62004. height: math.unit(6 + 1/12, "feet"),
  62005. weight: math.unit(280, "lb"),
  62006. name: "Front",
  62007. image: {
  62008. source: "./media/characters/kiriga-yato/front.svg",
  62009. extra: 445/394,
  62010. bottom: 11/456
  62011. }
  62012. },
  62013. },
  62014. [
  62015. {
  62016. name: "Descended",
  62017. height: math.unit(3, "feet")
  62018. },
  62019. {
  62020. name: "Average",
  62021. height: math.unit(6 + 1/12, "feet"),
  62022. default: true
  62023. },
  62024. {
  62025. name: "Ascended",
  62026. height: math.unit(9 + 2/12, "feet")
  62027. },
  62028. ]
  62029. ))
  62030. characterMakers.push(() => makeCharacter(
  62031. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62032. {
  62033. front: {
  62034. height: math.unit(6, "feet"),
  62035. weight: math.unit(150, "lb"),
  62036. name: "Front",
  62037. image: {
  62038. source: "./media/characters/kylie/front.svg",
  62039. extra: 1114/1046,
  62040. bottom: 65/1179
  62041. },
  62042. extraAttributes: {
  62043. "hoofSize": {
  62044. name: "Hoof Size",
  62045. power: 2,
  62046. type: "area",
  62047. base: math.unit(0.034, "m^2")
  62048. },
  62049. "footSize": {
  62050. name: "Foot Size",
  62051. power: 2,
  62052. type: "area",
  62053. base: math.unit(0.75, "m^2")
  62054. },
  62055. }
  62056. },
  62057. side: {
  62058. height: math.unit(6, "feet"),
  62059. weight: math.unit(150, "lb"),
  62060. name: "Side",
  62061. image: {
  62062. source: "./media/characters/kylie/side.svg",
  62063. extra: 1178/1110,
  62064. bottom: 21/1199
  62065. },
  62066. extraAttributes: {
  62067. "hoofSize": {
  62068. name: "Hoof Size",
  62069. power: 2,
  62070. type: "area",
  62071. base: math.unit(0.034, "m^2")
  62072. },
  62073. "footSize": {
  62074. name: "Foot Size",
  62075. power: 2,
  62076. type: "area",
  62077. base: math.unit(0.75, "m^2")
  62078. },
  62079. }
  62080. },
  62081. back: {
  62082. height: math.unit(6, "feet"),
  62083. weight: math.unit(150, "lb"),
  62084. name: "Back",
  62085. image: {
  62086. source: "./media/characters/kylie/back.svg",
  62087. extra: 1115/1047,
  62088. bottom: 66/1181
  62089. },
  62090. extraAttributes: {
  62091. "hoofSize": {
  62092. name: "Hoof Size",
  62093. power: 2,
  62094. type: "area",
  62095. base: math.unit(0.034, "m^2")
  62096. },
  62097. "footSize": {
  62098. name: "Foot Size",
  62099. power: 2,
  62100. type: "area",
  62101. base: math.unit(0.75, "m^2")
  62102. },
  62103. }
  62104. },
  62105. head: {
  62106. height: math.unit(1.85, "feet"),
  62107. name: "Head",
  62108. image: {
  62109. source: "./media/characters/kylie/head.svg"
  62110. }
  62111. },
  62112. },
  62113. [
  62114. {
  62115. name: "Normal",
  62116. height: math.unit(90, "meters"),
  62117. default: true
  62118. },
  62119. ]
  62120. ))
  62121. characterMakers.push(() => makeCharacter(
  62122. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62123. {
  62124. front: {
  62125. height: math.unit(245, "feet"),
  62126. weight: math.unit(400000, "lb"),
  62127. name: "Front",
  62128. image: {
  62129. source: "./media/characters/sabado/front.svg",
  62130. extra: 1309/1164,
  62131. bottom: 29/1338
  62132. }
  62133. },
  62134. },
  62135. [
  62136. {
  62137. name: "Normal",
  62138. height: math.unit(245, "feet"),
  62139. default: true
  62140. },
  62141. ]
  62142. ))
  62143. characterMakers.push(() => makeCharacter(
  62144. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62145. {
  62146. shark_front: {
  62147. height: math.unit(2, "meters"),
  62148. weight: math.unit(200, "kg"),
  62149. name: "Front",
  62150. image: {
  62151. source: "./media/characters/zechal/shark-front.svg",
  62152. extra: 969/925,
  62153. bottom: 74/1043
  62154. },
  62155. form: "shark",
  62156. },
  62157. shark_back: {
  62158. height: math.unit(2, "meters"),
  62159. weight: math.unit(200, "kg"),
  62160. name: "Back",
  62161. image: {
  62162. source: "./media/characters/zechal/shark-back.svg",
  62163. extra: 994/949,
  62164. bottom: 176/1170
  62165. },
  62166. form: "shark",
  62167. },
  62168. shark_frontLewd: {
  62169. height: math.unit(2, "meters"),
  62170. weight: math.unit(200, "kg"),
  62171. name: "Front (Lewd)",
  62172. image: {
  62173. source: "./media/characters/zechal/shark-front-lewd.svg",
  62174. extra: 969/925,
  62175. bottom: 74/1043
  62176. },
  62177. form: "shark",
  62178. },
  62179. shark_side: {
  62180. height: math.unit(1.56, "meters"),
  62181. weight: math.unit(200, "kg"),
  62182. name: "Side",
  62183. image: {
  62184. source: "./media/characters/zechal/shark-side.svg"
  62185. },
  62186. form: "shark",
  62187. },
  62188. dragon_front: {
  62189. height: math.unit(2, "meters"),
  62190. weight: math.unit(200, "kg"),
  62191. name: "Front",
  62192. image: {
  62193. source: "./media/characters/zechal/dragon-front.svg",
  62194. extra: 1041/925,
  62195. bottom: 74/1115
  62196. },
  62197. form: "dragon",
  62198. },
  62199. dragon_back: {
  62200. height: math.unit(2, "meters"),
  62201. weight: math.unit(200, "kg"),
  62202. name: "Back",
  62203. image: {
  62204. source: "./media/characters/zechal/dragon-back.svg",
  62205. extra: 1061/949,
  62206. bottom: 176/1237
  62207. },
  62208. form: "dragon",
  62209. },
  62210. dragon_frontLewd: {
  62211. height: math.unit(2, "meters"),
  62212. weight: math.unit(200, "kg"),
  62213. name: "Front (Lewd)",
  62214. image: {
  62215. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62216. extra: 1041/925,
  62217. bottom: 74/1115
  62218. },
  62219. form: "dragon",
  62220. },
  62221. dragon_side: {
  62222. height: math.unit(1.56, "meters"),
  62223. weight: math.unit(200, "kg"),
  62224. name: "Side",
  62225. image: {
  62226. source: "./media/characters/zechal/dragon-side.svg"
  62227. },
  62228. form: "dragon",
  62229. },
  62230. foot: {
  62231. height: math.unit(0.5, "meters"),
  62232. name: "Foot",
  62233. image: {
  62234. source: "./media/characters/zechal/foot.svg"
  62235. }
  62236. },
  62237. sheathFront: {
  62238. height: math.unit(0.45, "meters"),
  62239. name: "Sheath (Front)",
  62240. image: {
  62241. source: "./media/characters/zechal/sheath-front.svg"
  62242. }
  62243. },
  62244. sheathSide: {
  62245. height: math.unit(0.45, "meters"),
  62246. name: "Sheath (Side)",
  62247. image: {
  62248. source: "./media/characters/zechal/sheath-side.svg"
  62249. }
  62250. },
  62251. },
  62252. [
  62253. {
  62254. name: "Incognito",
  62255. height: math.unit(2, "meters"),
  62256. allForms: true
  62257. },
  62258. {
  62259. name: "Small Rampage",
  62260. height: math.unit(25, "meters"),
  62261. allForms: true
  62262. },
  62263. {
  62264. name: "Home Size",
  62265. height: math.unit(250, "meters"),
  62266. allForms: true,
  62267. default: true
  62268. },
  62269. {
  62270. name: "Macro+",
  62271. height: math.unit(700, "meters"),
  62272. allForms: true
  62273. },
  62274. {
  62275. name: "Small Mega",
  62276. height: math.unit(3, "km"),
  62277. allForms: true
  62278. },
  62279. {
  62280. name: "Mega",
  62281. height: math.unit(15, "km"),
  62282. allForms: true
  62283. },
  62284. {
  62285. name: "Giga",
  62286. height: math.unit(300, "km"),
  62287. allForms: true
  62288. },
  62289. {
  62290. name: "Giga+",
  62291. height: math.unit(1750, "km"),
  62292. allForms: true
  62293. },
  62294. {
  62295. name: "Continental",
  62296. height: math.unit(5000, "km"),
  62297. allForms: true
  62298. },
  62299. {
  62300. name: "Terra",
  62301. height: math.unit(20000, "km"),
  62302. allForms: true
  62303. },
  62304. {
  62305. name: "Terra+",
  62306. height: math.unit(300000, "km"),
  62307. allForms: true
  62308. },
  62309. {
  62310. name: "Solar",
  62311. height: math.unit(40000000, "km"),
  62312. allForms: true
  62313. },
  62314. {
  62315. name: "Galactic",
  62316. height: math.unit(810133, "parsecs"),
  62317. allForms: true
  62318. },
  62319. {
  62320. name: "Universal",
  62321. height: math.unit(25, "universes"),
  62322. allForms: true
  62323. },
  62324. ],
  62325. {
  62326. "shark": {
  62327. name: "Shark",
  62328. default: true
  62329. },
  62330. "dragon": {
  62331. name: "Dragon",
  62332. },
  62333. }
  62334. ))
  62335. characterMakers.push(() => makeCharacter(
  62336. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62337. {
  62338. front: {
  62339. height: math.unit(2.2, "meters"),
  62340. weight: math.unit(150, "kg"),
  62341. name: "Front",
  62342. image: {
  62343. source: "./media/characters/sergis/front.svg",
  62344. extra: 1314/1312,
  62345. bottom: 112/1426
  62346. }
  62347. },
  62348. back: {
  62349. height: math.unit(2.2, "meters"),
  62350. weight: math.unit(150, "kg"),
  62351. name: "Back",
  62352. image: {
  62353. source: "./media/characters/sergis/back.svg",
  62354. extra: 1335/1333,
  62355. bottom: 19/1354
  62356. }
  62357. },
  62358. frontLewd: {
  62359. height: math.unit(2.2, "meters"),
  62360. weight: math.unit(150, "kg"),
  62361. name: "Front (Lewd)",
  62362. image: {
  62363. source: "./media/characters/sergis/front-lewd.svg",
  62364. extra: 1314/1312,
  62365. bottom: 112/1426
  62366. }
  62367. },
  62368. frontDressed: {
  62369. height: math.unit(2.2, "meters"),
  62370. weight: math.unit(150, "kg"),
  62371. name: "Front (Dressed)",
  62372. image: {
  62373. source: "./media/characters/sergis/front-dressed.svg",
  62374. extra: 1330/1328,
  62375. bottom: 95/1425
  62376. }
  62377. },
  62378. frontDressedLewd: {
  62379. height: math.unit(2.2, "meters"),
  62380. weight: math.unit(150, "kg"),
  62381. name: "Front (Dressed, Lewd)",
  62382. image: {
  62383. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62384. extra: 1330/1328,
  62385. bottom: 95/1425
  62386. }
  62387. },
  62388. maw: {
  62389. height: math.unit(0.48, "meters"),
  62390. name: "Maw",
  62391. image: {
  62392. source: "./media/characters/sergis/maw.svg"
  62393. }
  62394. },
  62395. sheath: {
  62396. height: math.unit(0.38, "meters"),
  62397. name: "Sheath",
  62398. image: {
  62399. source: "./media/characters/sergis/sheath.svg"
  62400. }
  62401. },
  62402. },
  62403. [
  62404. {
  62405. name: "Incognito Size",
  62406. height: math.unit(2.2, "meters")
  62407. },
  62408. {
  62409. name: "Small Macro",
  62410. height: math.unit(40, "meters")
  62411. },
  62412. {
  62413. name: "Macro",
  62414. height: math.unit(150, "meters")
  62415. },
  62416. {
  62417. name: "Macro+",
  62418. height: math.unit(300, "meters")
  62419. },
  62420. {
  62421. name: "Mega",
  62422. height: math.unit(2.5, "km")
  62423. },
  62424. {
  62425. name: "Mega+",
  62426. height: math.unit(30, "km")
  62427. },
  62428. {
  62429. name: "Home Size",
  62430. height: math.unit(300, "km"),
  62431. default: true
  62432. },
  62433. {
  62434. name: "Giga+",
  62435. height: math.unit(1000, "km")
  62436. },
  62437. {
  62438. name: "Giga++",
  62439. height: math.unit(6000, "km")
  62440. },
  62441. {
  62442. name: "Terra",
  62443. height: math.unit(70000, "km")
  62444. },
  62445. {
  62446. name: "Terra+",
  62447. height: math.unit(200000, "km")
  62448. },
  62449. {
  62450. name: "Galactic",
  62451. height: math.unit(634200, "lightyears")
  62452. },
  62453. ]
  62454. ))
  62455. characterMakers.push(() => makeCharacter(
  62456. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62457. {
  62458. standard: {
  62459. height: math.unit(1 + 5/12, "feet"),
  62460. name: "Standard",
  62461. image: {
  62462. source: "./media/characters/spade/standard.svg",
  62463. extra: 1794/1703,
  62464. bottom: 115/1909
  62465. }
  62466. },
  62467. disguised: {
  62468. height: math.unit(1 + 5/12, "feet"),
  62469. name: "Disguised",
  62470. image: {
  62471. source: "./media/characters/spade/disguised.svg",
  62472. extra: 1794/1700,
  62473. bottom: 98/1892
  62474. }
  62475. },
  62476. },
  62477. [
  62478. {
  62479. name: "Normal",
  62480. height: math.unit(1 + 5/12, "feet"),
  62481. default: true
  62482. },
  62483. ]
  62484. ))
  62485. characterMakers.push(() => makeCharacter(
  62486. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62487. {
  62488. frontNsfw: {
  62489. height: math.unit(5, "meters"),
  62490. weight: math.unit(2000, "kg"),
  62491. preyCapacity: math.unit(5, "people"),
  62492. name: "Front (NSFW)",
  62493. image: {
  62494. source: "./media/characters/zeanlain/front-nsfw.svg",
  62495. extra: 1087/938,
  62496. bottom: 93/1180
  62497. },
  62498. extraAttributes: {
  62499. "wingspan": {
  62500. name: "Wingspan",
  62501. power: 1,
  62502. type: "length",
  62503. base: math.unit(10, "meters")
  62504. },
  62505. "footSize": {
  62506. name: "Foot Size",
  62507. power: 1,
  62508. type: "length",
  62509. base: math.unit(0.68, "meters")
  62510. },
  62511. "cockLength": {
  62512. name: "Cock Length",
  62513. power: 1,
  62514. type: "length",
  62515. base: math.unit(1.69, "meters")
  62516. },
  62517. "ballVolume": {
  62518. name: "Ball Volume",
  62519. power: 3,
  62520. type: "volume",
  62521. base: math.unit(0.028, "m^3")
  62522. },
  62523. }
  62524. },
  62525. front: {
  62526. height: math.unit(5, "meters"),
  62527. weight: math.unit(2000, "kg"),
  62528. preyCapacity: math.unit(3, "people"),
  62529. name: "Front",
  62530. image: {
  62531. source: "./media/characters/zeanlain/front.svg",
  62532. extra: 1087/938,
  62533. bottom: 93/1180
  62534. },
  62535. extraAttributes: {
  62536. "wingspan": {
  62537. name: "Wingspan",
  62538. power: 1,
  62539. type: "length",
  62540. base: math.unit(10, "meters")
  62541. },
  62542. "footSize": {
  62543. name: "Foot Size",
  62544. power: 1,
  62545. type: "length",
  62546. base: math.unit(0.68, "meters")
  62547. },
  62548. }
  62549. },
  62550. },
  62551. [
  62552. {
  62553. name: "Normal",
  62554. height: math.unit(5, "meters"),
  62555. default: true
  62556. },
  62557. ]
  62558. ))
  62559. characterMakers.push(() => makeCharacter(
  62560. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62561. {
  62562. front: {
  62563. height: math.unit(10, "meters"),
  62564. weight: math.unit(250000, "kg"),
  62565. name: "Front",
  62566. image: {
  62567. source: "./media/characters/airamis/front.svg",
  62568. extra: 865/835,
  62569. bottom: 13/878
  62570. }
  62571. },
  62572. },
  62573. [
  62574. {
  62575. name: "Normal",
  62576. height: math.unit(10, "meters"),
  62577. default: true
  62578. },
  62579. ]
  62580. ))
  62581. characterMakers.push(() => makeCharacter(
  62582. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62583. {
  62584. front: {
  62585. height: math.unit(3 + 3/12, "feet"),
  62586. weight: math.unit(75, "lb"),
  62587. name: "Front",
  62588. image: {
  62589. source: "./media/characters/corra-tourmaline/front.svg",
  62590. extra: 1037/864,
  62591. bottom: 39/1076
  62592. }
  62593. },
  62594. back: {
  62595. height: math.unit(3 + 3/12, "feet"),
  62596. weight: math.unit(75, "lb"),
  62597. name: "Back",
  62598. image: {
  62599. source: "./media/characters/corra-tourmaline/back.svg",
  62600. extra: 1022/849,
  62601. bottom: 26/1048
  62602. }
  62603. },
  62604. dressed: {
  62605. height: math.unit(3 + 3/12, "feet"),
  62606. weight: math.unit(75, "lb"),
  62607. name: "Dressed",
  62608. image: {
  62609. source: "./media/characters/corra-tourmaline/dressed.svg",
  62610. extra: 1037/864,
  62611. bottom: 39/1076
  62612. }
  62613. },
  62614. beans: {
  62615. height: math.unit(0.37, "feet"),
  62616. name: "Beans",
  62617. image: {
  62618. source: "./media/characters/corra-tourmaline/beans.svg"
  62619. }
  62620. },
  62621. },
  62622. [
  62623. {
  62624. name: "Normal",
  62625. height: math.unit(3 + 3/12, "feet"),
  62626. default: true
  62627. },
  62628. {
  62629. name: "Macro",
  62630. height: math.unit(32, "feet")
  62631. },
  62632. ]
  62633. ))
  62634. characterMakers.push(() => makeCharacter(
  62635. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62636. {
  62637. front: {
  62638. height: math.unit(6 + 2/12, "feet"),
  62639. weight: math.unit(203, "lb"),
  62640. name: "Front",
  62641. image: {
  62642. source: "./media/characters/maki-kawa/front.svg",
  62643. extra: 950/890,
  62644. bottom: 62/1012
  62645. }
  62646. },
  62647. back: {
  62648. height: math.unit(6 + 2/12, "feet"),
  62649. weight: math.unit(203, "lb"),
  62650. name: "Back",
  62651. image: {
  62652. source: "./media/characters/maki-kawa/back.svg",
  62653. extra: 953/878,
  62654. bottom: 49/1002
  62655. }
  62656. },
  62657. frontBarista: {
  62658. height: math.unit(6 + 2/12, "feet"),
  62659. weight: math.unit(203, "lb"),
  62660. name: "Front (Barista)",
  62661. image: {
  62662. source: "./media/characters/maki-kawa/front-barista.svg",
  62663. extra: 943/883,
  62664. bottom: 69/1012
  62665. }
  62666. },
  62667. backBarista: {
  62668. height: math.unit(6 + 2/12, "feet"),
  62669. weight: math.unit(203, "lb"),
  62670. name: "Back (Barista)",
  62671. image: {
  62672. source: "./media/characters/maki-kawa/back-barista.svg",
  62673. extra: 953/878,
  62674. bottom: 49/1002
  62675. }
  62676. },
  62677. frontWrestler: {
  62678. height: math.unit(6 + 2/12, "feet"),
  62679. weight: math.unit(203, "lb"),
  62680. name: "Front (Wrestler)",
  62681. image: {
  62682. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62683. extra: 950/890,
  62684. bottom: 62/1012
  62685. }
  62686. },
  62687. backWrestler: {
  62688. height: math.unit(6 + 2/12, "feet"),
  62689. weight: math.unit(203, "lb"),
  62690. name: "Back (Wrestler)",
  62691. image: {
  62692. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62693. extra: 953/878,
  62694. bottom: 49/1002
  62695. }
  62696. },
  62697. headFront: {
  62698. height: math.unit(1.64, "feet"),
  62699. name: "Head (Front)",
  62700. image: {
  62701. source: "./media/characters/maki-kawa/head-front.svg"
  62702. }
  62703. },
  62704. headSide: {
  62705. height: math.unit(1.59, "feet"),
  62706. name: "Head (Side)",
  62707. image: {
  62708. source: "./media/characters/maki-kawa/head-side.svg"
  62709. }
  62710. },
  62711. paw: {
  62712. height: math.unit(0.9, "feet"),
  62713. name: "Paw",
  62714. image: {
  62715. source: "./media/characters/maki-kawa/paw.svg"
  62716. }
  62717. },
  62718. },
  62719. [
  62720. {
  62721. name: "Normal",
  62722. height: math.unit(6 + 2/12, "feet"),
  62723. default: true
  62724. },
  62725. {
  62726. name: "Macro",
  62727. height: math.unit(617, "feet")
  62728. },
  62729. ]
  62730. ))
  62731. characterMakers.push(() => makeCharacter(
  62732. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62733. {
  62734. front: {
  62735. height: math.unit(10, "feet"),
  62736. weight: math.unit(1500, "lb"),
  62737. name: "Front",
  62738. image: {
  62739. source: "./media/characters/lennox/front.svg",
  62740. extra: 1623/1496,
  62741. bottom: 18/1641
  62742. }
  62743. },
  62744. back: {
  62745. height: math.unit(10, "feet"),
  62746. weight: math.unit(1500, "lb"),
  62747. name: "Back",
  62748. image: {
  62749. source: "./media/characters/lennox/back.svg",
  62750. extra: 1641/1481,
  62751. bottom: 13/1654
  62752. }
  62753. },
  62754. maw: {
  62755. height: math.unit(2.94, "feet"),
  62756. name: "Maw",
  62757. image: {
  62758. source: "./media/characters/lennox/maw.svg"
  62759. }
  62760. },
  62761. },
  62762. [
  62763. {
  62764. name: "Micro",
  62765. height: math.unit(1, "inch")
  62766. },
  62767. {
  62768. name: "Normal",
  62769. height: math.unit(10, "feet"),
  62770. default: true
  62771. },
  62772. {
  62773. name: "Macro",
  62774. height: math.unit(200, "feet")
  62775. },
  62776. ]
  62777. ))
  62778. characterMakers.push(() => makeCharacter(
  62779. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62780. {
  62781. frontDressed: {
  62782. height: math.unit(15 + 7/12, "feet"),
  62783. weight: math.unit(5000, "lb"),
  62784. name: "Front (Dressed)",
  62785. image: {
  62786. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62787. extra: 1136/1023,
  62788. bottom: 51/1187
  62789. }
  62790. },
  62791. backDressed: {
  62792. height: math.unit(15 + 7/12, "feet"),
  62793. weight: math.unit(5000, "lb"),
  62794. name: "Back (Dressed)",
  62795. image: {
  62796. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62797. extra: 2359/2143,
  62798. bottom: 103/2462
  62799. }
  62800. },
  62801. front: {
  62802. height: math.unit(15 + 7/12, "feet"),
  62803. weight: math.unit(5000, "lb"),
  62804. name: "Front",
  62805. image: {
  62806. source: "./media/characters/vyse-iron-thunder/front.svg",
  62807. extra: 1136/1023,
  62808. bottom: 51/1187
  62809. }
  62810. },
  62811. hand: {
  62812. height: math.unit(2.36, "feet"),
  62813. name: "Hand",
  62814. image: {
  62815. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62816. }
  62817. },
  62818. foot: {
  62819. height: math.unit(1.72, "feet"),
  62820. name: "Foot",
  62821. image: {
  62822. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62823. }
  62824. },
  62825. mouth: {
  62826. height: math.unit(2, "feet"),
  62827. name: "Mouth",
  62828. image: {
  62829. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62830. }
  62831. },
  62832. eye: {
  62833. height: math.unit(0.58, "feet"),
  62834. name: "Eye",
  62835. image: {
  62836. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62837. }
  62838. },
  62839. },
  62840. [
  62841. {
  62842. name: "Normal",
  62843. height: math.unit(15 + 7/12, "feet"),
  62844. default: true
  62845. },
  62846. {
  62847. name: "Macro",
  62848. height: math.unit(157, "feet")
  62849. },
  62850. {
  62851. name: "Macro+",
  62852. height: math.unit(1570, "feet")
  62853. },
  62854. {
  62855. name: "Macro++",
  62856. height: math.unit(15700, "feet")
  62857. },
  62858. {
  62859. name: "Macro+++",
  62860. height: math.unit(157000, "feet")
  62861. },
  62862. {
  62863. name: "Macro++++",
  62864. height: math.unit(1570000, "feet")
  62865. },
  62866. ]
  62867. ))
  62868. characterMakers.push(() => makeCharacter(
  62869. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62870. {
  62871. side: {
  62872. height: math.unit(6, "feet"),
  62873. weight: math.unit(115, "lb"),
  62874. name: "Side",
  62875. image: {
  62876. source: "./media/characters/moonbeam/side.svg",
  62877. extra: 839/485,
  62878. bottom: 60/899
  62879. }
  62880. },
  62881. },
  62882. [
  62883. {
  62884. name: "Normal",
  62885. height: math.unit(6, "feet"),
  62886. default: true
  62887. },
  62888. ]
  62889. ))
  62890. characterMakers.push(() => makeCharacter(
  62891. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62892. {
  62893. front: {
  62894. height: math.unit(3500, "miles"),
  62895. weight: math.unit(1659, "petatonnes"),
  62896. name: "Front",
  62897. image: {
  62898. source: "./media/characters/baltica/front.svg",
  62899. extra: 429/428,
  62900. bottom: 41/470
  62901. }
  62902. },
  62903. back: {
  62904. height: math.unit(3500, "miles"),
  62905. weight: math.unit(1659, "petatonnes"),
  62906. name: "Back",
  62907. image: {
  62908. source: "./media/characters/baltica/back.svg",
  62909. extra: 452/451,
  62910. bottom: 8/460
  62911. }
  62912. },
  62913. },
  62914. [
  62915. {
  62916. name: "Gigamacro",
  62917. height: math.unit(3500, "miles"),
  62918. default: true
  62919. },
  62920. ]
  62921. ))
  62922. characterMakers.push(() => makeCharacter(
  62923. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62924. {
  62925. front: {
  62926. height: math.unit(6 + 10/12, "feet"),
  62927. weight: math.unit(200, "lb"),
  62928. name: "Front",
  62929. image: {
  62930. source: "./media/characters/shadow-wolf/front.svg",
  62931. extra: 1931/1760,
  62932. bottom: 88/2019
  62933. }
  62934. },
  62935. },
  62936. [
  62937. {
  62938. name: "Normal",
  62939. height: math.unit(6 + 10/12, "feet"),
  62940. default: true
  62941. },
  62942. ]
  62943. ))
  62944. characterMakers.push(() => makeCharacter(
  62945. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62946. {
  62947. front: {
  62948. height: math.unit(5 + 10/12, "feet"),
  62949. name: "Front",
  62950. image: {
  62951. source: "./media/characters/quincy-praying-mantis/front.svg",
  62952. extra: 1055/891,
  62953. bottom: 92/1147
  62954. }
  62955. },
  62956. soles: {
  62957. height: math.unit(0.85, "feet"),
  62958. name: "Soles",
  62959. image: {
  62960. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62961. extra: 429/324,
  62962. bottom: 89/518
  62963. },
  62964. extraAttributes: {
  62965. "shoeSize": {
  62966. name: "Shoe Size",
  62967. power: 1,
  62968. type: "length",
  62969. base: math.unit(23, "ShoeSizeMensUS"),
  62970. defaultUnit: "ShoeSizeMensUS"
  62971. },
  62972. }
  62973. },
  62974. foot: {
  62975. height: math.unit(0.72, "feet"),
  62976. name: "Foot",
  62977. image: {
  62978. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62979. extra: 349/349,
  62980. bottom: 76/425
  62981. }
  62982. },
  62983. },
  62984. [
  62985. {
  62986. name: "Normal",
  62987. height: math.unit(5 + 10/12, "feet"),
  62988. default: true
  62989. },
  62990. ]
  62991. ))
  62992. characterMakers.push(() => makeCharacter(
  62993. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62994. {
  62995. front: {
  62996. height: math.unit(6, "feet"),
  62997. name: "Front",
  62998. image: {
  62999. source: "./media/characters/christopher-redwood/front.svg",
  63000. extra: 1402/1341,
  63001. bottom: 23/1425
  63002. }
  63003. },
  63004. back: {
  63005. height: math.unit(6, "feet"),
  63006. name: "Back",
  63007. image: {
  63008. source: "./media/characters/christopher-redwood/back.svg",
  63009. extra: 1406/1345,
  63010. bottom: 36/1442
  63011. }
  63012. },
  63013. head: {
  63014. height: math.unit(1.685, "feet"),
  63015. name: "Head",
  63016. image: {
  63017. source: "./media/characters/christopher-redwood/head.svg"
  63018. }
  63019. },
  63020. },
  63021. [
  63022. {
  63023. name: "Normal",
  63024. height: math.unit(6, "feet"),
  63025. default: true
  63026. },
  63027. ]
  63028. ))
  63029. characterMakers.push(() => makeCharacter(
  63030. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63031. {
  63032. front: {
  63033. height: math.unit(1.9, "meters"),
  63034. weight: math.unit(140, "lb"),
  63035. name: "Front",
  63036. image: {
  63037. source: "./media/characters/kara-fox/front.svg",
  63038. extra: 766/711,
  63039. bottom: 41/807
  63040. }
  63041. },
  63042. back: {
  63043. height: math.unit(1.9, "meters"),
  63044. weight: math.unit(140, "lb"),
  63045. name: "Back",
  63046. image: {
  63047. source: "./media/characters/kara-fox/back.svg",
  63048. extra: 766/596,
  63049. bottom: 29/795
  63050. }
  63051. },
  63052. maw: {
  63053. height: math.unit(0.78, "feet"),
  63054. name: "Maw",
  63055. image: {
  63056. source: "./media/characters/kara-fox/maw.svg"
  63057. }
  63058. },
  63059. pawpads: {
  63060. height: math.unit(0.96, "feet"),
  63061. name: "Pawpads",
  63062. image: {
  63063. source: "./media/characters/kara-fox/pawpads.svg"
  63064. }
  63065. },
  63066. },
  63067. [
  63068. {
  63069. name: "Normal",
  63070. height: math.unit(1.9, "meters"),
  63071. default: true
  63072. },
  63073. {
  63074. name: "Giantess",
  63075. height: math.unit(80, "meters")
  63076. },
  63077. ]
  63078. ))
  63079. characterMakers.push(() => makeCharacter(
  63080. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63081. {
  63082. front: {
  63083. height: math.unit(12, "feet"),
  63084. name: "Front",
  63085. image: {
  63086. source: "./media/characters/naomi-espeon/front.svg",
  63087. extra: 892/797,
  63088. bottom: 5/897
  63089. }
  63090. },
  63091. back: {
  63092. height: math.unit(12, "feet"),
  63093. name: "Back",
  63094. image: {
  63095. source: "./media/characters/naomi-espeon/back.svg",
  63096. extra: 890/785,
  63097. bottom: 12/902
  63098. }
  63099. },
  63100. },
  63101. [
  63102. {
  63103. name: "Normal",
  63104. height: math.unit(12, "feet"),
  63105. default: true
  63106. },
  63107. ]
  63108. ))
  63109. characterMakers.push(() => makeCharacter(
  63110. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63111. {
  63112. anthro_front: {
  63113. height: math.unit(8, "feet"),
  63114. weight: math.unit(625, "lb"),
  63115. name: "Front",
  63116. image: {
  63117. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63118. extra: 638/574,
  63119. bottom: 73/711
  63120. },
  63121. form: "anthro",
  63122. default: true
  63123. },
  63124. anthro_back: {
  63125. height: math.unit(8, "feet"),
  63126. weight: math.unit(625, "lb"),
  63127. name: "Back",
  63128. image: {
  63129. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63130. extra: 674/614,
  63131. bottom: 7/681
  63132. },
  63133. form: "anthro",
  63134. },
  63135. taur_side: {
  63136. height: math.unit(16, "feet"),
  63137. weight: math.unit(4.5, "tons"),
  63138. name: "Side",
  63139. image: {
  63140. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63141. extra: 704/646,
  63142. bottom: 132/836
  63143. },
  63144. form: "taur",
  63145. default: true
  63146. },
  63147. },
  63148. [
  63149. {
  63150. name: "Normal",
  63151. height: math.unit(8, "feet"),
  63152. default: true,
  63153. form: "anthro"
  63154. },
  63155. {
  63156. name: "Normal",
  63157. height: math.unit(16, "feet"),
  63158. default: true,
  63159. form: "taur"
  63160. },
  63161. ],
  63162. {
  63163. "anthro": {
  63164. name: "Anthro",
  63165. default: true
  63166. },
  63167. "taur": {
  63168. name: "Taur",
  63169. },
  63170. }
  63171. ))
  63172. characterMakers.push(() => makeCharacter(
  63173. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63174. {
  63175. front: {
  63176. height: math.unit(190, "cm"),
  63177. weight: math.unit(110, "kg"),
  63178. name: "Front",
  63179. image: {
  63180. source: "./media/characters/amelie/front.svg",
  63181. extra: 530/442,
  63182. bottom: 35/565
  63183. }
  63184. },
  63185. },
  63186. [
  63187. {
  63188. name: "Normal",
  63189. height: math.unit(190, "cm"),
  63190. default: true
  63191. },
  63192. ]
  63193. ))
  63194. characterMakers.push(() => makeCharacter(
  63195. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63196. {
  63197. front: {
  63198. height: math.unit(21, "feet"),
  63199. weight: math.unit(30000, "lb"),
  63200. name: "Front",
  63201. image: {
  63202. source: "./media/characters/valence/front.svg",
  63203. extra: 1430/1306,
  63204. bottom: 51/1481
  63205. }
  63206. },
  63207. },
  63208. [
  63209. {
  63210. name: "Normal",
  63211. height: math.unit(21, "feet"),
  63212. default: true
  63213. },
  63214. ]
  63215. ))
  63216. characterMakers.push(() => makeCharacter(
  63217. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63218. {
  63219. front: {
  63220. height: math.unit(5 + 9/12, "feet"),
  63221. weight: math.unit(170, "lb"),
  63222. name: "Front",
  63223. image: {
  63224. source: "./media/characters/aurora-adkins/front.svg",
  63225. extra: 1141/1089,
  63226. bottom: 41/1182
  63227. }
  63228. },
  63229. },
  63230. [
  63231. {
  63232. name: "Tiny",
  63233. height: math.unit(7, "mm")
  63234. },
  63235. {
  63236. name: "Small",
  63237. height: math.unit(3.4, "inches")
  63238. },
  63239. {
  63240. name: "Normal",
  63241. height: math.unit(5 + 9/12, "feet"),
  63242. default: true
  63243. },
  63244. {
  63245. name: "Big",
  63246. height: math.unit(31, "feet")
  63247. },
  63248. {
  63249. name: "Giant",
  63250. height: math.unit(300, "feet")
  63251. },
  63252. ]
  63253. ))
  63254. characterMakers.push(() => makeCharacter(
  63255. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63256. {
  63257. front: {
  63258. height: math.unit(5 + 6/12, "feet"),
  63259. weight: math.unit(210, "lb"),
  63260. name: "Front",
  63261. image: {
  63262. source: "./media/characters/cyber/front.svg",
  63263. extra: 1968/1798,
  63264. bottom: 10/1978
  63265. },
  63266. extraAttributes: {
  63267. "shoeSize": {
  63268. name: "Shoe Size",
  63269. power: 1,
  63270. type: "length",
  63271. base: math.unit(30, "ShoeSizeMensUS")
  63272. },
  63273. }
  63274. },
  63275. },
  63276. [
  63277. {
  63278. name: "Normal",
  63279. height: math.unit(5 + 6/12, "feet"),
  63280. default: true
  63281. },
  63282. ]
  63283. ))
  63284. characterMakers.push(() => makeCharacter(
  63285. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63286. {
  63287. front: {
  63288. height: math.unit(6 + 6/12, "feet"),
  63289. weight: math.unit(140, "lb"),
  63290. name: "Front",
  63291. image: {
  63292. source: "./media/characters/sapphire-wairimea/front.svg",
  63293. extra: 475/458,
  63294. bottom: 14/489
  63295. }
  63296. },
  63297. },
  63298. [
  63299. {
  63300. name: "Normal",
  63301. height: math.unit(6 + 6/12, "feet")
  63302. },
  63303. {
  63304. name: "Macro",
  63305. height: math.unit(132, "feet"),
  63306. default: true
  63307. },
  63308. ]
  63309. ))
  63310. characterMakers.push(() => makeCharacter(
  63311. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63312. {
  63313. front: {
  63314. height: math.unit(1.6, "meters"),
  63315. weight: math.unit(100, "lb"),
  63316. name: "Front",
  63317. image: {
  63318. source: "./media/characters/cirkazi/front.svg",
  63319. extra: 489/477,
  63320. bottom: 0/489
  63321. }
  63322. },
  63323. },
  63324. [
  63325. {
  63326. name: "Normal",
  63327. height: math.unit(1.6, "meters")
  63328. },
  63329. {
  63330. name: "Macro",
  63331. height: math.unit(800, "feet"),
  63332. default: true
  63333. },
  63334. ]
  63335. ))
  63336. characterMakers.push(() => makeCharacter(
  63337. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63338. {
  63339. front: {
  63340. height: math.unit(5 + 10/12, "feet"),
  63341. weight: math.unit(145, "lb"),
  63342. name: "Front",
  63343. image: {
  63344. source: "./media/characters/corrin-cavelli/front.svg",
  63345. extra: 483/464,
  63346. bottom: 6/489
  63347. }
  63348. },
  63349. },
  63350. [
  63351. {
  63352. name: "Human",
  63353. height: math.unit(5 + 10/12, "feet")
  63354. },
  63355. {
  63356. name: "Giant",
  63357. height: math.unit(210, "feet"),
  63358. default: true
  63359. },
  63360. ]
  63361. ))
  63362. characterMakers.push(() => makeCharacter(
  63363. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63364. {
  63365. back: {
  63366. height: math.unit(5 + 6/12, "feet"),
  63367. weight: math.unit(115, "lb"),
  63368. name: "Back",
  63369. image: {
  63370. source: "./media/characters/lori-lopez/back.svg",
  63371. extra: 483/474,
  63372. bottom: 6/489
  63373. }
  63374. },
  63375. },
  63376. [
  63377. {
  63378. name: "Human",
  63379. height: math.unit(5 + 6/12, "feet")
  63380. },
  63381. {
  63382. name: "Macro",
  63383. height: math.unit(198, "feet"),
  63384. default: true
  63385. },
  63386. ]
  63387. ))
  63388. characterMakers.push(() => makeCharacter(
  63389. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63390. {
  63391. front: {
  63392. height: math.unit(6, "feet"),
  63393. weight: math.unit(220, "lb"),
  63394. name: "Front",
  63395. image: {
  63396. source: "./media/characters/sylvia-beauregard/front.svg",
  63397. extra: 483/479,
  63398. bottom: 6/489
  63399. }
  63400. },
  63401. },
  63402. [
  63403. {
  63404. name: "Macro",
  63405. height: math.unit(2071, "feet"),
  63406. default: true
  63407. },
  63408. ]
  63409. ))
  63410. characterMakers.push(() => makeCharacter(
  63411. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63412. {
  63413. back: {
  63414. height: math.unit(5 + 6/12, "feet"),
  63415. weight: math.unit(160, "lb"),
  63416. name: "Back",
  63417. image: {
  63418. source: "./media/characters/akiko-takahashi/back.svg",
  63419. extra: 459/454,
  63420. bottom: 27/486
  63421. }
  63422. },
  63423. },
  63424. [
  63425. {
  63426. name: "Human",
  63427. height: math.unit(5 + 6/12, "feet")
  63428. },
  63429. {
  63430. name: "Macro",
  63431. height: math.unit(198, "feet"),
  63432. default: true
  63433. },
  63434. {
  63435. name: "Megamacro",
  63436. height: math.unit(7128, "feet")
  63437. },
  63438. ]
  63439. ))
  63440. characterMakers.push(() => makeCharacter(
  63441. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63442. {
  63443. front: {
  63444. height: math.unit(6, "feet"),
  63445. weight: math.unit(140, "lb"),
  63446. name: "Front",
  63447. image: {
  63448. source: "./media/characters/velvet-garza/front.svg",
  63449. extra: 480/462,
  63450. bottom: 7/487
  63451. }
  63452. },
  63453. },
  63454. [
  63455. {
  63456. name: "Macro",
  63457. height: math.unit(37, "feet"),
  63458. default: true
  63459. },
  63460. ]
  63461. ))
  63462. characterMakers.push(() => makeCharacter(
  63463. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63464. {
  63465. front: {
  63466. height: math.unit(7 + 6/12, "feet"),
  63467. weight: math.unit(400, "lb"),
  63468. name: "Front",
  63469. image: {
  63470. source: "./media/characters/gaia/front.svg",
  63471. extra: 474/463,
  63472. bottom: 13/487
  63473. }
  63474. },
  63475. },
  63476. [
  63477. {
  63478. name: "MiniMacro",
  63479. height: math.unit(7 + 6/12, "feet")
  63480. },
  63481. {
  63482. name: "GigaMacro",
  63483. height: math.unit(14500, "feet"),
  63484. default: true
  63485. },
  63486. ]
  63487. ))
  63488. characterMakers.push(() => makeCharacter(
  63489. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63490. {
  63491. front: {
  63492. height: math.unit(6, "feet"),
  63493. weight: math.unit(150, "lb"),
  63494. name: "Front",
  63495. image: {
  63496. source: "./media/characters/tim/front.svg",
  63497. extra: 1878/1743,
  63498. bottom: 9/1887
  63499. }
  63500. },
  63501. frontDressed: {
  63502. height: math.unit(6, "feet"),
  63503. weight: math.unit(150, "lb"),
  63504. name: "Front (Dressed)",
  63505. image: {
  63506. source: "./media/characters/tim/front-dressed.svg",
  63507. extra: 1765/1485,
  63508. bottom: 48/1813
  63509. }
  63510. },
  63511. backDressed: {
  63512. height: math.unit(6, "feet"),
  63513. weight: math.unit(150, "lb"),
  63514. name: "Back (Dressed)",
  63515. image: {
  63516. source: "./media/characters/tim/back-dressed.svg",
  63517. extra: 1750/1465,
  63518. bottom: 25/1775
  63519. }
  63520. },
  63521. dick: {
  63522. height: math.unit(1.5, "feet"),
  63523. weight: math.unit(6, "lb"),
  63524. name: "Dick",
  63525. image: {
  63526. source: "./media/characters/tim/dick.svg"
  63527. }
  63528. },
  63529. hand: {
  63530. height: math.unit(0.522, "feet"),
  63531. name: "Hand",
  63532. image: {
  63533. source: "./media/characters/tim/hand.svg"
  63534. }
  63535. },
  63536. palm: {
  63537. height: math.unit(0.48, "feet"),
  63538. name: "Palm",
  63539. image: {
  63540. source: "./media/characters/tim/palm.svg"
  63541. }
  63542. },
  63543. paw: {
  63544. height: math.unit(0.9, "feet"),
  63545. name: "Paw",
  63546. image: {
  63547. source: "./media/characters/tim/paw.svg"
  63548. }
  63549. },
  63550. sole: {
  63551. height: math.unit(0.88, "feet"),
  63552. name: "Sole",
  63553. image: {
  63554. source: "./media/characters/tim/sole.svg"
  63555. }
  63556. },
  63557. },
  63558. [
  63559. {
  63560. name: "Macro",
  63561. height: math.unit(1000, "feet")
  63562. },
  63563. {
  63564. name: "Megamacro",
  63565. height: math.unit(10000, "feet"),
  63566. default: true
  63567. },
  63568. {
  63569. name: "Megamacro+",
  63570. height: math.unit(50000, "feet")
  63571. },
  63572. {
  63573. name: "Gigamacro",
  63574. height: math.unit(150000, "km")
  63575. },
  63576. ]
  63577. ))
  63578. characterMakers.push(() => makeCharacter(
  63579. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63580. {
  63581. front: {
  63582. height: math.unit(5 + 8/12, "feet"),
  63583. weight: math.unit(170, "lb"),
  63584. name: "Front",
  63585. image: {
  63586. source: "./media/characters/abel-delreoux/front.svg",
  63587. extra: 1615/1500,
  63588. bottom: 82/1697
  63589. }
  63590. },
  63591. back: {
  63592. height: math.unit(5 + 8/12, "feet"),
  63593. weight: math.unit(170, "lb"),
  63594. name: "Back",
  63595. image: {
  63596. source: "./media/characters/abel-delreoux/back.svg",
  63597. extra: 1644/1534,
  63598. bottom: 24/1668
  63599. }
  63600. },
  63601. casual: {
  63602. height: math.unit(5 + 8/12, "feet"),
  63603. weight: math.unit(170, "lb"),
  63604. name: "Casual",
  63605. image: {
  63606. source: "./media/characters/abel-delreoux/casual.svg",
  63607. extra: 1716/1598,
  63608. bottom: 29/1745
  63609. }
  63610. },
  63611. sleepy: {
  63612. height: math.unit(5 + 8/12, "feet"),
  63613. weight: math.unit(170, "lb"),
  63614. name: "Sleepy",
  63615. image: {
  63616. source: "./media/characters/abel-delreoux/sleepy.svg",
  63617. extra: 1649/1573,
  63618. bottom: 22/1671
  63619. }
  63620. },
  63621. fem: {
  63622. height: math.unit(5 + 8/12, "feet"),
  63623. weight: math.unit(170, "lb"),
  63624. name: "Fem",
  63625. image: {
  63626. source: "./media/characters/abel-delreoux/fem.svg",
  63627. extra: 1680/1564,
  63628. bottom: 17/1697
  63629. }
  63630. },
  63631. hand: {
  63632. height: math.unit(0.78, "feet"),
  63633. name: "Hand",
  63634. image: {
  63635. source: "./media/characters/abel-delreoux/hand.svg"
  63636. }
  63637. },
  63638. paw: {
  63639. height: math.unit(0.78, "feet"),
  63640. name: "Paw",
  63641. image: {
  63642. source: "./media/characters/abel-delreoux/paw.svg"
  63643. }
  63644. },
  63645. },
  63646. [
  63647. {
  63648. name: "Normal",
  63649. height: math.unit(5 + 8/12, "feet"),
  63650. default: true
  63651. },
  63652. ]
  63653. ))
  63654. characterMakers.push(() => makeCharacter(
  63655. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63656. {
  63657. front: {
  63658. height: math.unit(6, "feet"),
  63659. weight: math.unit(159, "lb"),
  63660. name: "Front",
  63661. image: {
  63662. source: "./media/characters/meus/front.svg",
  63663. extra: 938/843,
  63664. bottom: 37/975
  63665. }
  63666. },
  63667. back: {
  63668. height: math.unit(6, "feet"),
  63669. weight: math.unit(159, "lb"),
  63670. name: "Back",
  63671. image: {
  63672. source: "./media/characters/meus/back.svg",
  63673. extra: 967/873,
  63674. bottom: 12/979
  63675. }
  63676. },
  63677. },
  63678. [
  63679. {
  63680. name: "Micro",
  63681. height: math.unit(2, "inches")
  63682. },
  63683. {
  63684. name: "Mini",
  63685. height: math.unit(6, "inches")
  63686. },
  63687. {
  63688. name: "Normal",
  63689. height: math.unit(6, "feet"),
  63690. default: true
  63691. },
  63692. {
  63693. name: "Macro",
  63694. height: math.unit(84, "feet")
  63695. },
  63696. ]
  63697. ))
  63698. characterMakers.push(() => makeCharacter(
  63699. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63700. {
  63701. front: {
  63702. height: math.unit(60, "cm"),
  63703. weight: math.unit(18, "kg"),
  63704. name: "Front",
  63705. image: {
  63706. source: "./media/characters/yamato/front.svg",
  63707. extra: 733/688,
  63708. bottom: 29/762
  63709. }
  63710. },
  63711. },
  63712. [
  63713. {
  63714. name: "Micro",
  63715. height: math.unit(6, "cm")
  63716. },
  63717. {
  63718. name: "Normal",
  63719. height: math.unit(60, "cm"),
  63720. default: true
  63721. },
  63722. ]
  63723. ))
  63724. characterMakers.push(() => makeCharacter(
  63725. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63726. {
  63727. front: {
  63728. height: math.unit(9, "feet"),
  63729. weight: math.unit(518, "lb"),
  63730. name: "Front",
  63731. image: {
  63732. source: "./media/characters/barus/front.svg",
  63733. extra: 1877/1795,
  63734. bottom: 55/1932
  63735. }
  63736. },
  63737. },
  63738. [
  63739. {
  63740. name: "Base Height",
  63741. height: math.unit(9, "feet"),
  63742. default: true
  63743. },
  63744. {
  63745. name: "Large",
  63746. height: math.unit(18, "feet")
  63747. },
  63748. {
  63749. name: "Giant",
  63750. height: math.unit(100, "feet")
  63751. },
  63752. {
  63753. name: "Huge",
  63754. height: math.unit(500, "feet")
  63755. },
  63756. {
  63757. name: "Enormous",
  63758. height: math.unit(300, "meters")
  63759. },
  63760. {
  63761. name: "Deity Among Man",
  63762. height: math.unit(3000, "meters")
  63763. },
  63764. ]
  63765. ))
  63766. characterMakers.push(() => makeCharacter(
  63767. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63768. {
  63769. front: {
  63770. height: math.unit(1.7, "meters"),
  63771. name: "Front",
  63772. image: {
  63773. source: "./media/characters/yari/front.svg",
  63774. extra: 1210/1125,
  63775. bottom: 283/1493
  63776. }
  63777. },
  63778. back: {
  63779. height: math.unit(1.7, "meters"),
  63780. name: "Back",
  63781. image: {
  63782. source: "./media/characters/yari/back.svg",
  63783. extra: 1240/1195,
  63784. bottom: 180/1420
  63785. }
  63786. },
  63787. head: {
  63788. height: math.unit(1.26, "feet"),
  63789. name: "Head",
  63790. image: {
  63791. source: "./media/characters/yari/head.svg"
  63792. }
  63793. },
  63794. },
  63795. [
  63796. {
  63797. name: "Nano",
  63798. height: math.unit(0.5, "mm")
  63799. },
  63800. {
  63801. name: "Micro",
  63802. height: math.unit(3, "inches")
  63803. },
  63804. {
  63805. name: "Short",
  63806. height: math.unit(1.5, "meters")
  63807. },
  63808. {
  63809. name: "Norm",
  63810. height: math.unit(1.7, "meters"),
  63811. default: true
  63812. },
  63813. ]
  63814. ))
  63815. characterMakers.push(() => makeCharacter(
  63816. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63817. {
  63818. front: {
  63819. height: math.unit(5 + 2/12, "feet"),
  63820. weight: math.unit(110, "lb"),
  63821. name: "Front",
  63822. image: {
  63823. source: "./media/characters/salem/front.svg",
  63824. extra: 1895/1800,
  63825. bottom: 23/1918
  63826. }
  63827. },
  63828. back: {
  63829. height: math.unit(5 + 2/12, "feet"),
  63830. weight: math.unit(110, "lb"),
  63831. name: "Back",
  63832. image: {
  63833. source: "./media/characters/salem/back.svg",
  63834. extra: 1875/1802,
  63835. bottom: 20/1895
  63836. }
  63837. },
  63838. head: {
  63839. height: math.unit(1, "feet"),
  63840. name: "Head",
  63841. image: {
  63842. source: "./media/characters/salem/head.svg"
  63843. }
  63844. },
  63845. paw: {
  63846. height: math.unit(0.59, "feet"),
  63847. name: "Paw",
  63848. image: {
  63849. source: "./media/characters/salem/paw.svg"
  63850. }
  63851. },
  63852. beans: {
  63853. height: math.unit(0.66, "feet"),
  63854. name: "Beans",
  63855. image: {
  63856. source: "./media/characters/salem/beans.svg"
  63857. }
  63858. },
  63859. eye: {
  63860. height: math.unit(0.224, "feet"),
  63861. name: "Eye",
  63862. image: {
  63863. source: "./media/characters/salem/eye.svg"
  63864. }
  63865. },
  63866. semiferal: {
  63867. height: math.unit(2.3, "feet"),
  63868. name: "Semiferal",
  63869. image: {
  63870. source: "./media/characters/salem/semiferal.svg",
  63871. extra: 914/839,
  63872. bottom: 32/946
  63873. }
  63874. },
  63875. },
  63876. [
  63877. {
  63878. name: "Micro",
  63879. height: math.unit(4, "inches")
  63880. },
  63881. {
  63882. name: "Normal",
  63883. height: math.unit(5 + 2/12, "feet"),
  63884. default: true
  63885. },
  63886. {
  63887. name: "Macro",
  63888. height: math.unit(108, "feet")
  63889. },
  63890. {
  63891. name: "Macro+",
  63892. height: math.unit(1500, "feet")
  63893. },
  63894. ]
  63895. ))
  63896. characterMakers.push(() => makeCharacter(
  63897. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63898. {
  63899. front: {
  63900. height: math.unit(7 + 6/12, "feet"),
  63901. weight: math.unit(600, "kg"),
  63902. preyCapacity: math.unit(10, "people"),
  63903. name: "Front",
  63904. image: {
  63905. source: "./media/characters/kii/front.svg",
  63906. extra: 3296/3087,
  63907. bottom: 130/3426
  63908. }
  63909. },
  63910. },
  63911. [
  63912. {
  63913. name: "Normal",
  63914. height: math.unit(7 + 6/12, "feet"),
  63915. default: true
  63916. },
  63917. ]
  63918. ))
  63919. characterMakers.push(() => makeCharacter(
  63920. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63921. {
  63922. front: {
  63923. height: math.unit(2, "meters"),
  63924. weight: math.unit(200, "lb"),
  63925. name: "Front",
  63926. image: {
  63927. source: "./media/characters/taffy/front.svg",
  63928. extra: 1666/1618,
  63929. bottom: 157/1823
  63930. }
  63931. },
  63932. back: {
  63933. height: math.unit(2, "meters"),
  63934. weight: math.unit(200, "lb"),
  63935. name: "Back",
  63936. image: {
  63937. source: "./media/characters/taffy/back.svg",
  63938. extra: 1635/1583,
  63939. bottom: 153/1788
  63940. }
  63941. },
  63942. },
  63943. [
  63944. {
  63945. name: "Normal",
  63946. height: math.unit(2, "meters"),
  63947. default: true
  63948. },
  63949. ]
  63950. ))
  63951. characterMakers.push(() => makeCharacter(
  63952. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63953. {
  63954. front: {
  63955. height: math.unit(1.55, "meters"),
  63956. weight: math.unit(60, "kg"),
  63957. name: "Front",
  63958. image: {
  63959. source: "./media/characters/barley/front.svg",
  63960. extra: 1520/1340,
  63961. bottom: 47/1567
  63962. }
  63963. },
  63964. back: {
  63965. height: math.unit(1.55, "meters"),
  63966. weight: math.unit(60, "kg"),
  63967. name: "Back",
  63968. image: {
  63969. source: "./media/characters/barley/back.svg",
  63970. extra: 1543/1341,
  63971. bottom: 12/1555
  63972. }
  63973. },
  63974. feet: {
  63975. height: math.unit(2.18, "feet"),
  63976. name: "Feet",
  63977. image: {
  63978. source: "./media/characters/barley/feet.svg"
  63979. }
  63980. },
  63981. },
  63982. [
  63983. {
  63984. name: "Normal",
  63985. height: math.unit(1.55, "meters"),
  63986. default: true
  63987. },
  63988. ]
  63989. ))
  63990. characterMakers.push(() => makeCharacter(
  63991. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63992. {
  63993. dressed: {
  63994. height: math.unit(6, "feet"),
  63995. name: "Dressed",
  63996. image: {
  63997. source: "./media/characters/lydia-lopez/dressed.svg",
  63998. extra: 1319/1277,
  63999. bottom: 90/1409
  64000. }
  64001. },
  64002. nude: {
  64003. height: math.unit(6, "feet"),
  64004. name: "Nude",
  64005. image: {
  64006. source: "./media/characters/lydia-lopez/nude.svg",
  64007. extra: 1319/1277,
  64008. bottom: 90/1409
  64009. }
  64010. },
  64011. },
  64012. [
  64013. {
  64014. name: "Normal",
  64015. height: math.unit(6, "feet"),
  64016. default: true
  64017. },
  64018. {
  64019. name: "Maximum",
  64020. height: math.unit(2101, "feet")
  64021. },
  64022. ]
  64023. ))
  64024. characterMakers.push(() => makeCharacter(
  64025. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64026. {
  64027. front: {
  64028. height: math.unit(5 + 4/12, "feet"),
  64029. weight: math.unit(250, "lb"),
  64030. volume: math.unit(20, "gallons"),
  64031. name: "Front",
  64032. image: {
  64033. source: "./media/characters/kira-slime/front.svg",
  64034. extra: 442/403,
  64035. bottom: 18/460
  64036. }
  64037. },
  64038. frontNsfw: {
  64039. height: math.unit(5 + 4/12, "feet"),
  64040. weight: math.unit(250, "lb"),
  64041. volume: math.unit(20, "gallons"),
  64042. name: "Front (NSFW)",
  64043. image: {
  64044. source: "./media/characters/kira-slime/front-nsfw.svg",
  64045. extra: 442/403,
  64046. bottom: 18/460
  64047. }
  64048. },
  64049. },
  64050. [
  64051. {
  64052. name: "Droplet",
  64053. height: math.unit(0.0464452, "feet")
  64054. },
  64055. {
  64056. name: "Pint",
  64057. height: math.unit(0.9824, "feet")
  64058. },
  64059. {
  64060. name: "Bucket",
  64061. height: math.unit(2.83, "feet")
  64062. },
  64063. {
  64064. name: "Normal",
  64065. height: math.unit(5 + 4/12, "feet"),
  64066. default: true
  64067. },
  64068. {
  64069. name: "Tub",
  64070. height: math.unit(8.46614, "feet")
  64071. },
  64072. {
  64073. name: "Pool",
  64074. height: math.unit(31.1895, "feet")
  64075. },
  64076. {
  64077. name: "Pond",
  64078. height: math.unit(170.349, "feet")
  64079. },
  64080. {
  64081. name: "Lake",
  64082. height: math.unit(289334, "feet")
  64083. },
  64084. {
  64085. name: "Ocean",
  64086. height: math.unit(1.11940e+7, "feet")
  64087. },
  64088. ]
  64089. ))
  64090. characterMakers.push(() => makeCharacter(
  64091. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64092. {
  64093. front: {
  64094. height: math.unit(5 + 6/12, "feet"),
  64095. weight: math.unit(120, "lb"),
  64096. name: "Front",
  64097. image: {
  64098. source: "./media/characters/holiday/front.svg",
  64099. extra: 456/403,
  64100. bottom: 4/460
  64101. }
  64102. },
  64103. back: {
  64104. height: math.unit(5 + 6/12, "feet"),
  64105. weight: math.unit(120, "lb"),
  64106. name: "Back",
  64107. image: {
  64108. source: "./media/characters/holiday/back.svg",
  64109. extra: 450/404,
  64110. bottom: 12/462
  64111. }
  64112. },
  64113. head: {
  64114. height: math.unit(2.3, "feet"),
  64115. name: "Head",
  64116. image: {
  64117. source: "./media/characters/holiday/head.svg"
  64118. }
  64119. },
  64120. },
  64121. [
  64122. {
  64123. name: "Normal",
  64124. height: math.unit(5 + 6/12, "feet"),
  64125. default: true
  64126. },
  64127. {
  64128. name: "Macro",
  64129. height: math.unit(6574.25, "feet")
  64130. },
  64131. ]
  64132. ))
  64133. characterMakers.push(() => makeCharacter(
  64134. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64135. {
  64136. front: {
  64137. height: math.unit(6 + 2/12, "feet"),
  64138. weight: math.unit(200, "lb"),
  64139. name: "Front",
  64140. image: {
  64141. source: "./media/characters/camina/front.svg",
  64142. extra: 1048/985,
  64143. bottom: 30/1078
  64144. }
  64145. },
  64146. },
  64147. [
  64148. {
  64149. name: "Normal",
  64150. height: math.unit(6 + 2/12, "feet"),
  64151. default: true
  64152. },
  64153. ]
  64154. ))
  64155. characterMakers.push(() => makeCharacter(
  64156. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64157. {
  64158. front: {
  64159. height: math.unit(30, "cm"),
  64160. weight: math.unit(420, "grams"),
  64161. name: "Front",
  64162. image: {
  64163. source: "./media/characters/smuck/front.svg",
  64164. extra: 379/345,
  64165. bottom: 36/415
  64166. }
  64167. },
  64168. },
  64169. [
  64170. {
  64171. name: "Smuck-Sized",
  64172. height: math.unit(30, "cm"),
  64173. default: true
  64174. },
  64175. ]
  64176. ))
  64177. characterMakers.push(() => makeCharacter(
  64178. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64179. {
  64180. frontSfw: {
  64181. height: math.unit(10, "feet"),
  64182. weight: math.unit(1000, "kg"),
  64183. preyCapacity: math.unit(2, "people"),
  64184. name: "Front (SFW)",
  64185. image: {
  64186. source: "./media/characters/bylur/front-sfw.svg",
  64187. extra: 419/343,
  64188. bottom: 3/422
  64189. },
  64190. default: true
  64191. },
  64192. frontSheath: {
  64193. height: math.unit(10, "feet"),
  64194. weight: math.unit(1000, "kg"),
  64195. preyCapacity: math.unit(2, "people"),
  64196. name: "Front (Sheath)",
  64197. image: {
  64198. source: "./media/characters/bylur/front-sheath.svg",
  64199. extra: 419/343,
  64200. bottom: 3/422
  64201. }
  64202. },
  64203. frontErect: {
  64204. height: math.unit(10, "feet"),
  64205. weight: math.unit(1000, "kg"),
  64206. preyCapacity: math.unit(2, "people"),
  64207. name: "Front (Erect)",
  64208. image: {
  64209. source: "./media/characters/bylur/front-erect.svg",
  64210. extra: 419/343,
  64211. bottom: 3/422
  64212. }
  64213. },
  64214. back: {
  64215. height: math.unit(10, "feet"),
  64216. weight: math.unit(1000, "kg"),
  64217. preyCapacity: math.unit(2, "people"),
  64218. name: "Back",
  64219. image: {
  64220. source: "./media/characters/bylur/back.svg",
  64221. extra: 392/315,
  64222. bottom: 3/395
  64223. }
  64224. },
  64225. maw: {
  64226. height: math.unit(3.65, "feet"),
  64227. name: "Maw",
  64228. image: {
  64229. source: "./media/characters/bylur/maw.svg"
  64230. }
  64231. },
  64232. },
  64233. [
  64234. {
  64235. name: "Slightly Human Sized",
  64236. height: math.unit(10, "feet")
  64237. },
  64238. {
  64239. name: "Normal",
  64240. height: math.unit(35, "feet"),
  64241. default: true
  64242. },
  64243. {
  64244. name: "Macro",
  64245. height: math.unit(130, "feet")
  64246. },
  64247. ]
  64248. ))
  64249. characterMakers.push(() => makeCharacter(
  64250. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64251. {
  64252. frontNsfw: {
  64253. height: math.unit(6, "feet"),
  64254. weight: math.unit(250, "lb"),
  64255. preyCapacity: math.unit(0.05, "people"),
  64256. name: "Front (NSFW)",
  64257. image: {
  64258. source: "./media/characters/oarven/front-nsfw.svg",
  64259. extra: 1795/1783,
  64260. bottom: 142/1937
  64261. }
  64262. },
  64263. frontSfw: {
  64264. height: math.unit(6, "feet"),
  64265. weight: math.unit(250, "lb"),
  64266. preyCapacity: math.unit(0.05, "people"),
  64267. name: "Front (SFW)",
  64268. image: {
  64269. source: "./media/characters/oarven/front-sfw.svg",
  64270. extra: 1795/1783,
  64271. bottom: 142/1937
  64272. }
  64273. },
  64274. },
  64275. [
  64276. {
  64277. name: "Megamacro",
  64278. height: math.unit(5, "miles"),
  64279. default: true
  64280. },
  64281. {
  64282. name: "Maximum Height",
  64283. height: math.unit(5, "AUs")
  64284. },
  64285. ]
  64286. ))
  64287. characterMakers.push(() => makeCharacter(
  64288. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64289. {
  64290. side: {
  64291. height: math.unit(1065, "meters"),
  64292. weight: math.unit(1e12, "kg"),
  64293. volume: math.unit(3265000000, "m^3"),
  64294. name: "Side",
  64295. image: {
  64296. source: "./media/characters/solidarity/side.svg"
  64297. }
  64298. },
  64299. front: {
  64300. height: math.unit(1065, "meters"),
  64301. weight: math.unit(3265000000000, "kg"),
  64302. volume: math.unit(3265000000, "m^3"),
  64303. name: "Front",
  64304. image: {
  64305. source: "./media/characters/solidarity/front.svg"
  64306. }
  64307. },
  64308. top: {
  64309. height: math.unit(5823, "meters"),
  64310. weight: math.unit(3265000000000, "kg"),
  64311. volume: math.unit(3265000000, "m^3"),
  64312. name: "Top",
  64313. image: {
  64314. source: "./media/characters/solidarity/top.svg"
  64315. }
  64316. },
  64317. },
  64318. [
  64319. {
  64320. name: "Normal",
  64321. height: math.unit(1065, "meters"),
  64322. default: true
  64323. },
  64324. ]
  64325. ))
  64326. characterMakers.push(() => makeCharacter(
  64327. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64328. {
  64329. side: {
  64330. height: math.unit(18 + 4/12, "feet"),
  64331. weight: math.unit(13000, "kg"),
  64332. name: "Side",
  64333. image: {
  64334. source: "./media/characters/ani'szi/side.svg",
  64335. extra: 468/459,
  64336. bottom: 60/528
  64337. }
  64338. },
  64339. head: {
  64340. height: math.unit(4.8, "feet"),
  64341. name: "Head",
  64342. image: {
  64343. source: "./media/characters/ani'szi/head.svg"
  64344. }
  64345. },
  64346. jaws: {
  64347. height: math.unit(2.25, "feet"),
  64348. name: "Jaws",
  64349. image: {
  64350. source: "./media/characters/ani'szi/jaws.svg"
  64351. }
  64352. },
  64353. bust: {
  64354. height: math.unit(8.9, "feet"),
  64355. name: "Bust",
  64356. image: {
  64357. source: "./media/characters/ani'szi/bust.svg"
  64358. }
  64359. },
  64360. back: {
  64361. height: math.unit(13.53, "feet"),
  64362. name: "Back",
  64363. image: {
  64364. source: "./media/characters/ani'szi/back.svg"
  64365. }
  64366. },
  64367. eye: {
  64368. height: math.unit(0.44, "feet"),
  64369. name: "Eye",
  64370. image: {
  64371. source: "./media/characters/ani'szi/eye.svg"
  64372. }
  64373. },
  64374. },
  64375. [
  64376. {
  64377. name: "Normal",
  64378. height: math.unit(18 + 4/12, "feet"),
  64379. default: true
  64380. },
  64381. ]
  64382. ))
  64383. characterMakers.push(() => makeCharacter(
  64384. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64385. {
  64386. front: {
  64387. height: math.unit(7 + 6/12, "feet"),
  64388. weight: math.unit(300, "lb"),
  64389. name: "Front",
  64390. image: {
  64391. source: "./media/characters/rain/front.svg",
  64392. extra: 2955/2698,
  64393. bottom: 235/3190
  64394. }
  64395. },
  64396. dressed: {
  64397. height: math.unit(7 + 6/12, "feet"),
  64398. weight: math.unit(300, "lb"),
  64399. name: "Dressed",
  64400. image: {
  64401. source: "./media/characters/rain/dressed.svg",
  64402. extra: 2783/2572,
  64403. bottom: 430/3213
  64404. }
  64405. },
  64406. },
  64407. [
  64408. {
  64409. name: "Normal",
  64410. height: math.unit(7 + 6/12, "feet"),
  64411. default: true
  64412. },
  64413. {
  64414. name: "Macro",
  64415. height: math.unit(200, "feet")
  64416. },
  64417. {
  64418. name: "Macro+",
  64419. height: math.unit(500, "feet")
  64420. },
  64421. {
  64422. name: "Megamacro",
  64423. height: math.unit(5, "miles")
  64424. },
  64425. ]
  64426. ))
  64427. characterMakers.push(() => makeCharacter(
  64428. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64429. {
  64430. taur_side: {
  64431. height: math.unit(3, "meters"),
  64432. name: "Side",
  64433. image: {
  64434. source: "./media/characters/anise/taur-side.svg",
  64435. extra: 1833/926,
  64436. bottom: 134/1967
  64437. },
  64438. form: "taur",
  64439. default: true
  64440. },
  64441. feral_side: {
  64442. height: math.unit(3, "meters"),
  64443. name: "Side",
  64444. image: {
  64445. source: "./media/characters/anise/feral-side.svg",
  64446. extra: 681/349,
  64447. bottom: 26/707
  64448. },
  64449. form: "feral"
  64450. },
  64451. },
  64452. [
  64453. {
  64454. name: "Normal",
  64455. height: math.unit(3, "meters"),
  64456. default: true,
  64457. allForms: true
  64458. },
  64459. ],
  64460. {
  64461. "taur": {
  64462. name: "Taur",
  64463. default: true
  64464. },
  64465. "feral": {
  64466. name: "Feral",
  64467. },
  64468. }
  64469. ))
  64470. characterMakers.push(() => makeCharacter(
  64471. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64472. {
  64473. front: {
  64474. height: math.unit(1.9, "meters"),
  64475. weight: math.unit(75, "kg"),
  64476. name: "Front",
  64477. image: {
  64478. source: "./media/characters/sarina/front.svg",
  64479. extra: 1275/1200,
  64480. bottom: 49/1324
  64481. }
  64482. },
  64483. back: {
  64484. height: math.unit(1.9, "meters"),
  64485. weight: math.unit(75, "kg"),
  64486. name: "Back",
  64487. image: {
  64488. source: "./media/characters/sarina/back.svg",
  64489. extra: 1279/1209,
  64490. bottom: 14/1293
  64491. }
  64492. },
  64493. dressed: {
  64494. height: math.unit(1.9, "meters"),
  64495. weight: math.unit(75, "kg"),
  64496. name: "Dressed",
  64497. image: {
  64498. source: "./media/characters/sarina/dressed.svg",
  64499. extra: 1256/1187,
  64500. bottom: 56/1312
  64501. }
  64502. },
  64503. paw: {
  64504. height: math.unit(0.57, "feet"),
  64505. name: "Paw",
  64506. image: {
  64507. source: "./media/characters/sarina/paw.svg"
  64508. }
  64509. },
  64510. toering: {
  64511. height: math.unit(0.27, "feet"),
  64512. name: "Toering",
  64513. image: {
  64514. source: "./media/characters/sarina/toering.svg"
  64515. }
  64516. },
  64517. },
  64518. [
  64519. {
  64520. name: "Incognito",
  64521. height: math.unit(1.9, "meters")
  64522. },
  64523. {
  64524. name: "Home Size",
  64525. height: math.unit(160, "meters"),
  64526. default: true
  64527. },
  64528. {
  64529. name: "Mega",
  64530. height: math.unit(50, "km")
  64531. },
  64532. {
  64533. name: "Small Giga",
  64534. height: math.unit(250, "km")
  64535. },
  64536. {
  64537. name: "Giga (Preferred Size)",
  64538. height: math.unit(3000, "km")
  64539. },
  64540. {
  64541. name: "Terra",
  64542. height: math.unit(40000, "km")
  64543. },
  64544. {
  64545. name: "Terra+",
  64546. height: math.unit(400000, "km")
  64547. },
  64548. {
  64549. name: "Solar",
  64550. height: math.unit(35e6, "km")
  64551. },
  64552. {
  64553. name: "Galactic",
  64554. height: math.unit(648106, "parsecs")
  64555. },
  64556. {
  64557. name: "Universal",
  64558. height: math.unit(7, "universes")
  64559. },
  64560. {
  64561. name: "Universal+",
  64562. height: math.unit(30, "universes")
  64563. },
  64564. ]
  64565. ))
  64566. characterMakers.push(() => makeCharacter(
  64567. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64568. {
  64569. front: {
  64570. height: math.unit(5 + 6/12, "feet"),
  64571. name: "Front",
  64572. image: {
  64573. source: "./media/characters/sifray/front.svg",
  64574. extra: 722/691,
  64575. bottom: 64/786
  64576. }
  64577. },
  64578. },
  64579. [
  64580. {
  64581. name: "Normal",
  64582. height: math.unit(5 + 6/12, "feet"),
  64583. default: true
  64584. },
  64585. ]
  64586. ))
  64587. characterMakers.push(() => makeCharacter(
  64588. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64589. {
  64590. side: {
  64591. height: math.unit(2.64, "feet"),
  64592. weight: math.unit(100, "lb"),
  64593. preyCapacity: math.unit(3, "people"),
  64594. name: "Side",
  64595. image: {
  64596. source: "./media/characters/spots/side.svg",
  64597. extra: 1859/977,
  64598. bottom: 19/1878
  64599. },
  64600. extraAttributes: {
  64601. "preyPerMinute": {
  64602. name: "Prey Per Minute",
  64603. power: 3,
  64604. type: "volume",
  64605. base: math.unit(6, "people"),
  64606. defaultUnit: "people"
  64607. },
  64608. "preyPerDay": {
  64609. name: "Prey Per Day",
  64610. power: 3,
  64611. type: "volume",
  64612. base: math.unit(6 * 60 * 24, "people"),
  64613. defaultUnit: "people"
  64614. },
  64615. }
  64616. },
  64617. },
  64618. [
  64619. {
  64620. name: "Normal",
  64621. height: math.unit(2.64, "feet"),
  64622. default: true
  64623. },
  64624. ]
  64625. ))
  64626. characterMakers.push(() => makeCharacter(
  64627. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64628. {
  64629. front: {
  64630. height: math.unit(29 + 11/12, "feet"),
  64631. weight: math.unit(40, "tons"),
  64632. name: "Front",
  64633. image: {
  64634. source: "./media/characters/mona/front.svg",
  64635. extra: 1257/1116,
  64636. bottom: 34/1291
  64637. }
  64638. },
  64639. },
  64640. [
  64641. {
  64642. name: "Normal",
  64643. height: math.unit(29 + 11/12, "feet"),
  64644. default: true
  64645. },
  64646. ]
  64647. ))
  64648. characterMakers.push(() => makeCharacter(
  64649. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64650. {
  64651. front: {
  64652. height: math.unit(15, "feet"),
  64653. weight: math.unit(3000, "kg"),
  64654. preyCapacity: math.unit(5, "people"),
  64655. name: "Front",
  64656. image: {
  64657. source: "./media/characters/frostfire/front.svg",
  64658. extra: 675/558,
  64659. bottom: 73/748
  64660. }
  64661. },
  64662. side: {
  64663. height: math.unit(15, "feet"),
  64664. weight: math.unit(3000, "kg"),
  64665. preyCapacity: math.unit(5, "people"),
  64666. name: "Side",
  64667. image: {
  64668. source: "./media/characters/frostfire/side.svg",
  64669. extra: 687/585,
  64670. bottom: 50/737
  64671. }
  64672. },
  64673. back: {
  64674. height: math.unit(15, "feet"),
  64675. weight: math.unit(3000, "kg"),
  64676. preyCapacity: math.unit(5, "people"),
  64677. name: "Back",
  64678. image: {
  64679. source: "./media/characters/frostfire/back.svg",
  64680. extra: 707/607,
  64681. bottom: 16/723
  64682. }
  64683. },
  64684. head: {
  64685. height: math.unit(9.35, "feet"),
  64686. name: "Head",
  64687. image: {
  64688. source: "./media/characters/frostfire/head.svg"
  64689. }
  64690. },
  64691. maw: {
  64692. height: math.unit(3.32, "feet"),
  64693. name: "Maw",
  64694. image: {
  64695. source: "./media/characters/frostfire/maw.svg"
  64696. }
  64697. },
  64698. hand: {
  64699. height: math.unit(3.7, "feet"),
  64700. name: "Hand",
  64701. image: {
  64702. source: "./media/characters/frostfire/hand.svg"
  64703. }
  64704. },
  64705. paw: {
  64706. height: math.unit(5.8, "feet"),
  64707. name: "Paw",
  64708. image: {
  64709. source: "./media/characters/frostfire/paw.svg"
  64710. }
  64711. },
  64712. },
  64713. [
  64714. {
  64715. name: "Normal",
  64716. height: math.unit(15, "feet"),
  64717. default: true
  64718. },
  64719. ]
  64720. ))
  64721. characterMakers.push(() => makeCharacter(
  64722. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64723. {
  64724. front: {
  64725. height: math.unit(5 + 2/12, "feet"),
  64726. weight: math.unit(122, "lb"),
  64727. name: "Front",
  64728. image: {
  64729. source: "./media/characters/valeroo/front.svg",
  64730. extra: 1789/1534,
  64731. bottom: 66/1855
  64732. }
  64733. },
  64734. back: {
  64735. height: math.unit(5 + 2/12, "feet"),
  64736. weight: math.unit(122, "lb"),
  64737. name: "Back",
  64738. image: {
  64739. source: "./media/characters/valeroo/back.svg",
  64740. extra: 1848/1588,
  64741. bottom: 68/1916
  64742. }
  64743. },
  64744. head: {
  64745. height: math.unit(1.87, "feet"),
  64746. name: "Head",
  64747. image: {
  64748. source: "./media/characters/valeroo/head.svg"
  64749. }
  64750. },
  64751. hand: {
  64752. height: math.unit(0.82, "feet"),
  64753. name: "Hand",
  64754. image: {
  64755. source: "./media/characters/valeroo/hand.svg"
  64756. }
  64757. },
  64758. foot: {
  64759. height: math.unit(2.42, "feet"),
  64760. name: "Foot",
  64761. image: {
  64762. source: "./media/characters/valeroo/foot.svg"
  64763. }
  64764. },
  64765. },
  64766. [
  64767. {
  64768. name: "Normal",
  64769. height: math.unit(5 + 2/12, "feet"),
  64770. default: true
  64771. },
  64772. ]
  64773. ))
  64774. characterMakers.push(() => makeCharacter(
  64775. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  64776. {
  64777. front: {
  64778. height: math.unit(11 + 3/12, "feet"),
  64779. name: "Front",
  64780. image: {
  64781. source: "./media/characters/corrin/front.svg",
  64782. extra: 665/597,
  64783. bottom: 74/739
  64784. }
  64785. },
  64786. },
  64787. [
  64788. {
  64789. name: "Standard",
  64790. height: math.unit(11 + 3/12, "feet"),
  64791. default: true
  64792. },
  64793. {
  64794. name: "The Boss",
  64795. height: math.unit(110, "feet")
  64796. },
  64797. {
  64798. name: "Shipbreaker",
  64799. height: math.unit(38, "km")
  64800. },
  64801. ]
  64802. ))
  64803. characterMakers.push(() => makeCharacter(
  64804. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  64805. {
  64806. front: {
  64807. height: math.unit(10, "feet"),
  64808. weight: math.unit(1750, "lb"),
  64809. name: "Front",
  64810. image: {
  64811. source: "./media/characters/kiba-ulrich/front.svg",
  64812. extra: 1037/973,
  64813. bottom: 36/1073
  64814. }
  64815. },
  64816. },
  64817. [
  64818. {
  64819. name: "Normal",
  64820. height: math.unit(10, "feet"),
  64821. default: true
  64822. },
  64823. {
  64824. name: "Minimacro",
  64825. height: math.unit(20, "feet")
  64826. },
  64827. {
  64828. name: "Macro",
  64829. height: math.unit(200, "feet")
  64830. },
  64831. {
  64832. name: "Megamacro",
  64833. height: math.unit(22500, "feet")
  64834. },
  64835. {
  64836. name: "Gigamacro",
  64837. height: math.unit(2700, "miles")
  64838. },
  64839. {
  64840. name: "Teramacro",
  64841. height: math.unit(10000, "miles")
  64842. },
  64843. ]
  64844. ))
  64845. characterMakers.push(() => makeCharacter(
  64846. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  64847. {
  64848. gryphon_front: {
  64849. height: math.unit(220, "cm"),
  64850. weight: math.unit(160, "kg"),
  64851. name: "Front",
  64852. image: {
  64853. source: "./media/characters/ceanoth/gryphon-front.svg",
  64854. extra: 616/552,
  64855. bottom: 33/649
  64856. },
  64857. form: "gryphon",
  64858. default: true
  64859. },
  64860. },
  64861. [
  64862. {
  64863. name: "Normal",
  64864. height: math.unit(220, "cm"),
  64865. form: "gryphon",
  64866. default: true
  64867. },
  64868. ],
  64869. {
  64870. "gryphon": {
  64871. name: "Grpyhon",
  64872. default: true
  64873. },
  64874. }
  64875. ))
  64876. characterMakers.push(() => makeCharacter(
  64877. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  64878. {
  64879. dressed: {
  64880. height: math.unit(2.2 * 0.79, "meters"),
  64881. weight: math.unit(0.5, "tonnes"),
  64882. name: "Dressed",
  64883. image: {
  64884. source: "./media/characters/vanadiya-athelya/dressed.svg",
  64885. extra: 665/315,
  64886. bottom: 106/771
  64887. },
  64888. extraAttributes: {
  64889. "bodyLength": {
  64890. name: "Body Length",
  64891. power: 1,
  64892. type: "length",
  64893. base: math.unit(2.5, "meters")
  64894. },
  64895. "tailLength": {
  64896. name: "Tail Length",
  64897. power: 1,
  64898. type: "length",
  64899. base: math.unit(4.5, "meters")
  64900. },
  64901. "wingspan": {
  64902. name: "Wingspan",
  64903. power: 1,
  64904. type: "length",
  64905. base: math.unit(6, "meters")
  64906. },
  64907. "taurStomachCapacity": {
  64908. name: "Taur Stomach Capacity",
  64909. power: 3,
  64910. type: "volume",
  64911. base: math.unit(4, "people"),
  64912. defaultUnit: "people"
  64913. },
  64914. "anthroStomachCapacity": {
  64915. name: "Anthro Stomach Capacity",
  64916. power: 3,
  64917. type: "volume",
  64918. base: math.unit(1, "people"),
  64919. defaultUnit: "people"
  64920. },
  64921. }
  64922. },
  64923. nude: {
  64924. height: math.unit(2.2 * 0.79, "meters"),
  64925. weight: math.unit(0.5, "tonnes"),
  64926. name: "Nude",
  64927. image: {
  64928. source: "./media/characters/vanadiya-athelya/nude.svg",
  64929. extra: 665/315,
  64930. bottom: 106/771
  64931. },
  64932. extraAttributes: {
  64933. "bodyLength": {
  64934. name: "Body Length",
  64935. power: 1,
  64936. type: "length",
  64937. base: math.unit(2.5, "meters")
  64938. },
  64939. "tailLength": {
  64940. name: "Tail Length",
  64941. power: 1,
  64942. type: "length",
  64943. base: math.unit(4.5, "meters")
  64944. },
  64945. "wingspan": {
  64946. name: "Wingspan",
  64947. power: 1,
  64948. type: "length",
  64949. base: math.unit(6, "meters")
  64950. },
  64951. "taurStomachCapacity": {
  64952. name: "Taur Stomach Capacity",
  64953. power: 3,
  64954. type: "volume",
  64955. base: math.unit(4, "people"),
  64956. defaultUnit: "people"
  64957. },
  64958. "anthroStomachCapacity": {
  64959. name: "Anthro Stomach Capacity",
  64960. power: 3,
  64961. type: "volume",
  64962. base: math.unit(1, "people"),
  64963. defaultUnit: "people"
  64964. },
  64965. }
  64966. },
  64967. },
  64968. [
  64969. {
  64970. name: "Handheld",
  64971. height: math.unit(0.79 * 0.06, "meters")
  64972. },
  64973. {
  64974. name: "Mini",
  64975. height: math.unit(0.79 * 0.7, "meters")
  64976. },
  64977. {
  64978. name: "Short",
  64979. height: math.unit(0.79 * 1.4, "meters")
  64980. },
  64981. {
  64982. name: "Imposing",
  64983. height: math.unit(0.79 * 2.2, "meters"),
  64984. default: true
  64985. },
  64986. {
  64987. name: "Big",
  64988. height: math.unit(0.79 * 3.8, "meters")
  64989. },
  64990. {
  64991. name: "Giant",
  64992. height: math.unit(0.79 * 6.7, "meters")
  64993. },
  64994. {
  64995. name: "Airliner",
  64996. height: math.unit(0.79 * 64, "meters")
  64997. },
  64998. {
  64999. name: "Skyscraper",
  65000. height: math.unit(0.79 * 220, "meters")
  65001. },
  65002. {
  65003. name: "Mountain",
  65004. height: math.unit(0.79 * 3.6, "km")
  65005. },
  65006. {
  65007. name: "Spacescraper",
  65008. height: math.unit(0.79 * 70, "km")
  65009. },
  65010. {
  65011. name: "Continental",
  65012. height: math.unit(0.79 * 1290, "km")
  65013. },
  65014. {
  65015. name: "Moon",
  65016. height: math.unit(0.79 * 32200, "km")
  65017. },
  65018. {
  65019. name: "Planetary",
  65020. height: math.unit(0.79 * 145000, "km")
  65021. },
  65022. {
  65023. name: "Stellar",
  65024. height: math.unit(0.79 * 19e6, "km")
  65025. },
  65026. {
  65027. name: "Solar",
  65028. height: math.unit(0.79 * 40, "AU")
  65029. },
  65030. {
  65031. name: "Intersteller",
  65032. height: math.unit(0.79 * 3, "lightyears")
  65033. },
  65034. {
  65035. name: "Star Cluster",
  65036. height: math.unit(0.79 * 80, "lightyears")
  65037. },
  65038. {
  65039. name: "Ecumenical",
  65040. height: math.unit(0.79 * 2e3, "lightyears")
  65041. },
  65042. {
  65043. name: "Galactic",
  65044. height: math.unit(0.79 * 175000, "lightyears")
  65045. },
  65046. {
  65047. name: "Galaxy Cluster",
  65048. height: math.unit(0.79 * 25e6, "lightyears")
  65049. },
  65050. ]
  65051. ))
  65052. characterMakers.push(() => makeCharacter(
  65053. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65054. {
  65055. front: {
  65056. height: math.unit(6 + 2/12, "feet"),
  65057. weight: math.unit(160, "lb"),
  65058. name: "Front",
  65059. image: {
  65060. source: "./media/characters/yana-amelin/front.svg",
  65061. extra: 1413/1295,
  65062. bottom: 42/1455
  65063. }
  65064. },
  65065. back: {
  65066. height: math.unit(6 + 2/12, "feet"),
  65067. weight: math.unit(160, "lb"),
  65068. name: "Back",
  65069. image: {
  65070. source: "./media/characters/yana-amelin/back.svg",
  65071. extra: 1424/1310,
  65072. bottom: 24/1448
  65073. }
  65074. },
  65075. paws: {
  65076. height: math.unit(1.48, "feet"),
  65077. name: "Paws",
  65078. image: {
  65079. source: "./media/characters/yana-amelin/paws.svg",
  65080. extra: 304/304,
  65081. bottom: 49/353
  65082. }
  65083. },
  65084. },
  65085. [
  65086. {
  65087. name: "Micro",
  65088. height: math.unit(4, "inches")
  65089. },
  65090. {
  65091. name: "Normal",
  65092. height: math.unit(6 + 2/12, "feet"),
  65093. default: true
  65094. },
  65095. {
  65096. name: "Minimacro",
  65097. height: math.unit(20, "feet")
  65098. },
  65099. {
  65100. name: "Macro",
  65101. height: math.unit(70, "feet")
  65102. },
  65103. ]
  65104. ))
  65105. characterMakers.push(() => makeCharacter(
  65106. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65107. {
  65108. frontNsfw: {
  65109. height: math.unit(2.48, "meters"),
  65110. weight: math.unit(112, "kg"),
  65111. name: "Front (NSFW)",
  65112. image: {
  65113. source: "./media/characters/titania/front-nsfw.svg",
  65114. extra: 1302/1232,
  65115. bottom: 90/1392
  65116. }
  65117. },
  65118. backNsfw: {
  65119. height: math.unit(2.48, "meters"),
  65120. weight: math.unit(112, "kg"),
  65121. name: "Back (NSFW)",
  65122. image: {
  65123. source: "./media/characters/titania/back-nsfw.svg",
  65124. extra: 1355/1288,
  65125. bottom: 18/1373
  65126. }
  65127. },
  65128. frontSfw: {
  65129. height: math.unit(2.48, "meters"),
  65130. weight: math.unit(112, "kg"),
  65131. name: "Front (SFW)",
  65132. image: {
  65133. source: "./media/characters/titania/front-sfw.svg",
  65134. extra: 1302/1232,
  65135. bottom: 90/1392
  65136. }
  65137. },
  65138. backSfw: {
  65139. height: math.unit(2.48, "meters"),
  65140. weight: math.unit(112, "kg"),
  65141. name: "Back (SFW)",
  65142. image: {
  65143. source: "./media/characters/titania/back-sfw.svg",
  65144. extra: 1355/1288,
  65145. bottom: 18/1373
  65146. }
  65147. },
  65148. head: {
  65149. height: math.unit(2.06, "feet"),
  65150. name: "Head",
  65151. image: {
  65152. source: "./media/characters/titania/head.svg"
  65153. }
  65154. },
  65155. maw: {
  65156. height: math.unit(0.8, "feet"),
  65157. name: "Maw",
  65158. image: {
  65159. source: "./media/characters/titania/maw.svg"
  65160. }
  65161. },
  65162. foot: {
  65163. height: math.unit(1.65, "feet"),
  65164. name: "Foot",
  65165. image: {
  65166. source: "./media/characters/titania/foot.svg"
  65167. }
  65168. },
  65169. nethers: {
  65170. height: math.unit(1.7, "feet"),
  65171. name: "Nethers",
  65172. image: {
  65173. source: "./media/characters/titania/nethers.svg"
  65174. }
  65175. },
  65176. },
  65177. [
  65178. {
  65179. name: "Normal",
  65180. height: math.unit(2.48, "meters"),
  65181. default: true
  65182. },
  65183. {
  65184. name: "Mini Macro",
  65185. height: math.unit(248, "meters")
  65186. },
  65187. {
  65188. name: "Macro",
  65189. height: math.unit(620, "meters")
  65190. },
  65191. {
  65192. name: "Mega Macro",
  65193. height: math.unit(1860, "meters")
  65194. },
  65195. ]
  65196. ))
  65197. characterMakers.push(() => makeCharacter(
  65198. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65199. {
  65200. front: {
  65201. height: math.unit(5 + 9/12, "feet"),
  65202. weight: math.unit(1500, "lb"),
  65203. name: "Front",
  65204. image: {
  65205. source: "./media/characters/tony-gray/front.svg",
  65206. extra: 700/575,
  65207. bottom: 71/771
  65208. }
  65209. },
  65210. },
  65211. [
  65212. {
  65213. name: "Normal",
  65214. height: math.unit(5 + 9/12, "feet"),
  65215. default: true
  65216. },
  65217. ]
  65218. ))
  65219. characterMakers.push(() => makeCharacter(
  65220. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65221. {
  65222. side: {
  65223. height: math.unit(8 + 2/12, "feet"),
  65224. name: "Side",
  65225. image: {
  65226. source: "./media/characters/kelby/side.svg",
  65227. extra: 804/578,
  65228. bottom: 70/874
  65229. },
  65230. form: "regular",
  65231. default: true
  65232. },
  65233. lounging: {
  65234. height: math.unit(12.41, "feet"),
  65235. name: "Lounging",
  65236. image: {
  65237. source: "./media/characters/kelby/lounging.svg"
  65238. },
  65239. form: "regular"
  65240. },
  65241. maw: {
  65242. height: math.unit(5, "feet"),
  65243. name: "Maw",
  65244. image: {
  65245. source: "./media/characters/kelby/maw.svg"
  65246. },
  65247. form: "regular"
  65248. },
  65249. dick: {
  65250. height: math.unit(2.4, "feet"),
  65251. name: "Dick",
  65252. image: {
  65253. source: "./media/characters/kelby/dick.svg"
  65254. },
  65255. form: "regular"
  65256. },
  65257. slit: {
  65258. height: math.unit(1.2, "feet"),
  65259. name: "Slit",
  65260. image: {
  65261. source: "./media/characters/kelby/slit.svg"
  65262. },
  65263. form: "regular"
  65264. },
  65265. chibi: {
  65266. height: math.unit(5, "feet"),
  65267. name: "Chibi",
  65268. image: {
  65269. source: "./media/characters/kelby/chibi.svg",
  65270. extra: 245/200,
  65271. bottom: 43/288
  65272. },
  65273. form: "chibi",
  65274. default: true
  65275. },
  65276. },
  65277. [
  65278. {
  65279. name: "Normal",
  65280. height: math.unit(8 + 2/12, "feet"),
  65281. default: true,
  65282. form: "regular"
  65283. },
  65284. {
  65285. name: "Normal",
  65286. height: math.unit(5, "feet"),
  65287. default: true,
  65288. form: "chibi"
  65289. },
  65290. ],
  65291. {
  65292. "regular": {
  65293. name: "Regular",
  65294. default: true
  65295. },
  65296. "chibi": {
  65297. name: "Chibi",
  65298. },
  65299. }
  65300. ))
  65301. characterMakers.push(() => makeCharacter(
  65302. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65303. {
  65304. front: {
  65305. height: math.unit(7 + 10/12, "feet"),
  65306. weight: math.unit(300, "lb"),
  65307. name: "Front",
  65308. image: {
  65309. source: "./media/characters/elisa-mitchell/front.svg",
  65310. extra: 2562/2355,
  65311. bottom: 62/2624
  65312. }
  65313. },
  65314. maw: {
  65315. height: math.unit(2.37, "feet"),
  65316. name: "Maw",
  65317. image: {
  65318. source: "./media/characters/elisa-mitchell/maw.svg"
  65319. }
  65320. },
  65321. },
  65322. [
  65323. {
  65324. name: "Normal",
  65325. height: math.unit(7 + 10/12, "feet"),
  65326. default: true
  65327. },
  65328. {
  65329. name: "Macro",
  65330. height: math.unit(1490, "feet"),
  65331. default: true
  65332. },
  65333. ]
  65334. ))
  65335. //characters
  65336. function makeCharacters() {
  65337. const results = [];
  65338. characterMakers.forEach(character => {
  65339. results.push(character());
  65340. });
  65341. return results;
  65342. }