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.
 
 
 

66789 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. }
  2439. //species
  2440. function getSpeciesInfo(speciesList) {
  2441. let result = new Set();
  2442. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2443. result.add(entry)
  2444. });
  2445. return Array.from(result);
  2446. };
  2447. function getSpeciesInfoHelper(species) {
  2448. if (!speciesData[species]) {
  2449. console.warn(species + " doesn't exist");
  2450. return [];
  2451. }
  2452. if (speciesData[species].parents) {
  2453. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2454. } else {
  2455. return [species];
  2456. }
  2457. }
  2458. characterMakers.push(() => makeCharacter(
  2459. {
  2460. name: "Fen",
  2461. species: ["crux"],
  2462. description: {
  2463. title: "Bio",
  2464. text: "Very furry. Sheds on everything."
  2465. },
  2466. tags: [
  2467. "anthro",
  2468. "goo"
  2469. ]
  2470. },
  2471. {
  2472. front: {
  2473. height: math.unit(12, "feet"),
  2474. weight: math.unit(2400, "lb"),
  2475. preyCapacity: math.unit(1, "people"),
  2476. name: "Front",
  2477. image: {
  2478. source: "./media/characters/fen/front.svg",
  2479. extra: 1804/1562,
  2480. bottom: 205/2009
  2481. },
  2482. extraAttributes: {
  2483. pawSize: {
  2484. name: "Paw Size",
  2485. power: 2,
  2486. type: "area",
  2487. base: math.unit(0.35, "m^2")
  2488. }
  2489. }
  2490. },
  2491. diving: {
  2492. height: math.unit(4.9, "meters"),
  2493. weight: math.unit(2400, "lb"),
  2494. name: "Diving",
  2495. image: {
  2496. source: "./media/characters/fen/diving.svg"
  2497. }
  2498. },
  2499. sleeby: {
  2500. height: math.unit(3.45, "meters"),
  2501. weight: math.unit(2400, "lb"),
  2502. name: "Sleeby",
  2503. image: {
  2504. source: "./media/characters/fen/sleeby.svg"
  2505. }
  2506. },
  2507. goo: {
  2508. height: math.unit(12, "feet"),
  2509. weight: math.unit(3600, "lb"),
  2510. volume: math.unit(1000, "liters"),
  2511. preyCapacity: math.unit(6, "people"),
  2512. name: "Goo",
  2513. image: {
  2514. source: "./media/characters/fen/goo.svg",
  2515. extra: 1307/1071,
  2516. bottom: 134/1441
  2517. }
  2518. },
  2519. horror: {
  2520. height: math.unit(13.6, "feet"),
  2521. weight: math.unit(2400, "lb"),
  2522. preyCapacity: math.unit(1, "people"),
  2523. name: "Horror",
  2524. image: {
  2525. source: "./media/characters/fen/horror.svg",
  2526. extra: 893/797,
  2527. bottom: 0/893
  2528. }
  2529. },
  2530. gooNsfw: {
  2531. height: math.unit(12, "feet"),
  2532. weight: math.unit(3750, "lb"),
  2533. volume: math.unit(1000, "liters"),
  2534. preyCapacity: math.unit(6, "people"),
  2535. name: "Goo (NSFW)",
  2536. image: {
  2537. source: "./media/characters/fen/goo-nsfw.svg",
  2538. extra: 1875/1734,
  2539. bottom: 122/1997
  2540. }
  2541. },
  2542. maw: {
  2543. height: math.unit(5.03, "feet"),
  2544. name: "Maw",
  2545. image: {
  2546. source: "./media/characters/fen/maw.svg"
  2547. }
  2548. },
  2549. gooCeiling: {
  2550. height: math.unit(6.6, "feet"),
  2551. weight: math.unit(3000, "lb"),
  2552. volume: math.unit(1000, "liters"),
  2553. preyCapacity: math.unit(6, "people"),
  2554. name: "Maw (Goo)",
  2555. image: {
  2556. source: "./media/characters/fen/goo-maw.svg"
  2557. }
  2558. },
  2559. paw: {
  2560. height: math.unit(3.77, "feet"),
  2561. name: "Paw",
  2562. image: {
  2563. source: "./media/characters/fen/paw.svg"
  2564. },
  2565. extraAttributes: {
  2566. "toeSize": {
  2567. name: "Toe Size",
  2568. power: 2,
  2569. type: "area",
  2570. base: math.unit(0.02875, "m^2")
  2571. },
  2572. "pawSize": {
  2573. name: "Paw Size",
  2574. power: 2,
  2575. type: "area",
  2576. base: math.unit(0.378, "m^2")
  2577. },
  2578. }
  2579. },
  2580. tail: {
  2581. height: math.unit(12.1, "feet"),
  2582. name: "Tail",
  2583. image: {
  2584. source: "./media/characters/fen/tail.svg"
  2585. }
  2586. },
  2587. tailFull: {
  2588. height: math.unit(12.1, "feet"),
  2589. name: "Full Tail",
  2590. image: {
  2591. source: "./media/characters/fen/tail-full.svg"
  2592. }
  2593. },
  2594. back: {
  2595. height: math.unit(12, "feet"),
  2596. weight: math.unit(2400, "lb"),
  2597. name: "Back",
  2598. image: {
  2599. source: "./media/characters/fen/back.svg",
  2600. },
  2601. info: {
  2602. description: {
  2603. mode: "append",
  2604. text: "\n\nHe is not currently looking at you."
  2605. }
  2606. }
  2607. },
  2608. full: {
  2609. height: math.unit(1.85, "meter"),
  2610. weight: math.unit(3200, "lb"),
  2611. preyCapacity: math.unit(3, "people"),
  2612. name: "Full",
  2613. image: {
  2614. source: "./media/characters/fen/full.svg",
  2615. extra: 1133/859,
  2616. bottom: 145/1278
  2617. },
  2618. info: {
  2619. description: {
  2620. mode: "append",
  2621. text: "\n\nMunch."
  2622. }
  2623. }
  2624. },
  2625. gooLounging: {
  2626. height: math.unit(4.53, "feet"),
  2627. weight: math.unit(3000, "lb"),
  2628. preyCapacity: math.unit(6, "people"),
  2629. name: "Goo (Lounging)",
  2630. image: {
  2631. source: "./media/characters/fen/goo-lounging.svg",
  2632. bottom: 116 / 613
  2633. }
  2634. },
  2635. lounging: {
  2636. height: math.unit(10.52, "feet"),
  2637. weight: math.unit(2400, "lb"),
  2638. name: "Lounging",
  2639. image: {
  2640. source: "./media/characters/fen/lounging.svg"
  2641. }
  2642. },
  2643. },
  2644. [
  2645. {
  2646. name: "Small",
  2647. height: math.unit(2.2428, "meter")
  2648. },
  2649. {
  2650. name: "Normal",
  2651. height: math.unit(12, "feet"),
  2652. default: true,
  2653. },
  2654. {
  2655. name: "Big",
  2656. height: math.unit(20, "feet")
  2657. },
  2658. {
  2659. name: "Minimacro",
  2660. height: math.unit(40, "feet"),
  2661. info: {
  2662. description: {
  2663. mode: "append",
  2664. text: "\n\nTOO DAMN BIG"
  2665. }
  2666. }
  2667. },
  2668. {
  2669. name: "Macro",
  2670. height: math.unit(100, "feet"),
  2671. info: {
  2672. description: {
  2673. mode: "append",
  2674. text: "\n\nTOO DAMN BIG"
  2675. }
  2676. }
  2677. },
  2678. {
  2679. name: "Megamacro",
  2680. height: math.unit(2, "miles")
  2681. },
  2682. {
  2683. name: "Gigamacro",
  2684. height: math.unit(10, "earths")
  2685. },
  2686. ]
  2687. ))
  2688. characterMakers.push(() => makeCharacter(
  2689. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2690. {
  2691. front: {
  2692. height: math.unit(183, "cm"),
  2693. weight: math.unit(80, "kg"),
  2694. name: "Front",
  2695. image: {
  2696. source: "./media/characters/sofia-fluttertail/front.svg",
  2697. bottom: 0.01,
  2698. extra: 2154 / 2081
  2699. }
  2700. },
  2701. frontAlt: {
  2702. height: math.unit(183, "cm"),
  2703. weight: math.unit(80, "kg"),
  2704. name: "Front (alt)",
  2705. image: {
  2706. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2707. }
  2708. },
  2709. back: {
  2710. height: math.unit(183, "cm"),
  2711. weight: math.unit(80, "kg"),
  2712. name: "Back",
  2713. image: {
  2714. source: "./media/characters/sofia-fluttertail/back.svg"
  2715. }
  2716. },
  2717. kneeling: {
  2718. height: math.unit(125, "cm"),
  2719. weight: math.unit(80, "kg"),
  2720. name: "Kneeling",
  2721. image: {
  2722. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2723. extra: 1033 / 977,
  2724. bottom: 23.7 / 1057
  2725. }
  2726. },
  2727. maw: {
  2728. height: math.unit(183 / 5, "cm"),
  2729. name: "Maw",
  2730. image: {
  2731. source: "./media/characters/sofia-fluttertail/maw.svg"
  2732. }
  2733. },
  2734. mawcloseup: {
  2735. height: math.unit(183 / 5 * 0.41, "cm"),
  2736. name: "Maw (Closeup)",
  2737. image: {
  2738. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2739. }
  2740. },
  2741. paws: {
  2742. height: math.unit(1.17, "feet"),
  2743. name: "Paws",
  2744. image: {
  2745. source: "./media/characters/sofia-fluttertail/paws.svg",
  2746. extra: 851 / 851,
  2747. bottom: 17 / 868
  2748. }
  2749. },
  2750. },
  2751. [
  2752. {
  2753. name: "Normal",
  2754. height: math.unit(1.83, "meter")
  2755. },
  2756. {
  2757. name: "Size Thief",
  2758. height: math.unit(18, "feet")
  2759. },
  2760. {
  2761. name: "50 Foot Collie",
  2762. height: math.unit(50, "feet")
  2763. },
  2764. {
  2765. name: "Macro",
  2766. height: math.unit(96, "feet"),
  2767. default: true
  2768. },
  2769. {
  2770. name: "Megamerger",
  2771. height: math.unit(650, "feet")
  2772. },
  2773. ]
  2774. ))
  2775. characterMakers.push(() => makeCharacter(
  2776. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2777. {
  2778. front: {
  2779. height: math.unit(7, "feet"),
  2780. weight: math.unit(100, "kg"),
  2781. name: "Front",
  2782. image: {
  2783. source: "./media/characters/march/front.svg",
  2784. extra: 1992/1851,
  2785. bottom: 39/2031
  2786. }
  2787. },
  2788. foot: {
  2789. height: math.unit(0.9, "feet"),
  2790. name: "Foot",
  2791. image: {
  2792. source: "./media/characters/march/foot.svg"
  2793. }
  2794. },
  2795. },
  2796. [
  2797. {
  2798. name: "Normal",
  2799. height: math.unit(7.9, "feet")
  2800. },
  2801. {
  2802. name: "Macro",
  2803. height: math.unit(220, "meters")
  2804. },
  2805. {
  2806. name: "Megamacro",
  2807. height: math.unit(2.98, "km"),
  2808. default: true
  2809. },
  2810. {
  2811. name: "Gigamacro",
  2812. height: math.unit(15963, "km")
  2813. },
  2814. {
  2815. name: "Teramacro",
  2816. height: math.unit(2980000000, "km")
  2817. },
  2818. {
  2819. name: "Examacro",
  2820. height: math.unit(250, "parsecs")
  2821. },
  2822. ]
  2823. ))
  2824. characterMakers.push(() => makeCharacter(
  2825. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2826. {
  2827. front: {
  2828. height: math.unit(6, "feet"),
  2829. weight: math.unit(60, "kg"),
  2830. name: "Front",
  2831. image: {
  2832. source: "./media/characters/noir/front.svg",
  2833. extra: 1,
  2834. bottom: 0.032
  2835. }
  2836. },
  2837. },
  2838. [
  2839. {
  2840. name: "Normal",
  2841. height: math.unit(6.6, "feet")
  2842. },
  2843. {
  2844. name: "Macro",
  2845. height: math.unit(500, "feet")
  2846. },
  2847. {
  2848. name: "Megamacro",
  2849. height: math.unit(2.5, "km"),
  2850. default: true
  2851. },
  2852. {
  2853. name: "Gigamacro",
  2854. height: math.unit(22500, "km")
  2855. },
  2856. {
  2857. name: "Teramacro",
  2858. height: math.unit(2500000000, "km")
  2859. },
  2860. {
  2861. name: "Examacro",
  2862. height: math.unit(200, "parsecs")
  2863. },
  2864. ]
  2865. ))
  2866. characterMakers.push(() => makeCharacter(
  2867. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2868. {
  2869. front: {
  2870. height: math.unit(7, "feet"),
  2871. weight: math.unit(100, "kg"),
  2872. name: "Front",
  2873. image: {
  2874. source: "./media/characters/okuri/front.svg",
  2875. extra: 739/665,
  2876. bottom: 39/778
  2877. }
  2878. },
  2879. back: {
  2880. height: math.unit(7, "feet"),
  2881. weight: math.unit(100, "kg"),
  2882. name: "Back",
  2883. image: {
  2884. source: "./media/characters/okuri/back.svg",
  2885. extra: 734/653,
  2886. bottom: 13/747
  2887. }
  2888. },
  2889. sitting: {
  2890. height: math.unit(2.95, "feet"),
  2891. weight: math.unit(100, "kg"),
  2892. name: "Sitting",
  2893. image: {
  2894. source: "./media/characters/okuri/sitting.svg",
  2895. extra: 370/318,
  2896. bottom: 99/469
  2897. }
  2898. },
  2899. },
  2900. [
  2901. {
  2902. name: "Smallest",
  2903. height: math.unit(5 + 2/12, "feet")
  2904. },
  2905. {
  2906. name: "Smaller",
  2907. height: math.unit(300, "feet")
  2908. },
  2909. {
  2910. name: "Small",
  2911. height: math.unit(1000, "feet")
  2912. },
  2913. {
  2914. name: "Macro",
  2915. height: math.unit(1, "mile")
  2916. },
  2917. {
  2918. name: "Mega Macro (Small)",
  2919. height: math.unit(20, "km")
  2920. },
  2921. {
  2922. name: "Mega Macro (Large)",
  2923. height: math.unit(600, "km")
  2924. },
  2925. {
  2926. name: "Giga Macro",
  2927. height: math.unit(10000, "km")
  2928. },
  2929. {
  2930. name: "Normal",
  2931. height: math.unit(577560, "km"),
  2932. default: true
  2933. },
  2934. {
  2935. name: "Large",
  2936. height: math.unit(4, "galaxies")
  2937. },
  2938. {
  2939. name: "Largest",
  2940. height: math.unit(15, "multiverses")
  2941. },
  2942. ]
  2943. ))
  2944. characterMakers.push(() => makeCharacter(
  2945. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2946. {
  2947. front: {
  2948. height: math.unit(7, "feet"),
  2949. weight: math.unit(100, "kg"),
  2950. name: "Front",
  2951. image: {
  2952. source: "./media/characters/manny/front.svg",
  2953. extra: 1,
  2954. bottom: 0.06
  2955. }
  2956. },
  2957. back: {
  2958. height: math.unit(7, "feet"),
  2959. weight: math.unit(100, "kg"),
  2960. name: "Back",
  2961. image: {
  2962. source: "./media/characters/manny/back.svg",
  2963. extra: 1,
  2964. bottom: 0.014
  2965. }
  2966. },
  2967. },
  2968. [
  2969. {
  2970. name: "Normal",
  2971. height: math.unit(7, "feet"),
  2972. },
  2973. {
  2974. name: "Macro",
  2975. height: math.unit(78, "feet"),
  2976. default: true
  2977. },
  2978. {
  2979. name: "Macro+",
  2980. height: math.unit(300, "meters")
  2981. },
  2982. {
  2983. name: "Macro++",
  2984. height: math.unit(2400, "meters")
  2985. },
  2986. {
  2987. name: "Megamacro",
  2988. height: math.unit(5167, "meters")
  2989. },
  2990. {
  2991. name: "Gigamacro",
  2992. height: math.unit(41769, "miles")
  2993. },
  2994. ]
  2995. ))
  2996. characterMakers.push(() => makeCharacter(
  2997. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2998. {
  2999. front: {
  3000. height: math.unit(7, "feet"),
  3001. weight: math.unit(100, "kg"),
  3002. name: "Front",
  3003. image: {
  3004. source: "./media/characters/adake/front-1.svg"
  3005. }
  3006. },
  3007. frontAlt: {
  3008. height: math.unit(7, "feet"),
  3009. weight: math.unit(100, "kg"),
  3010. name: "Front (Alt)",
  3011. image: {
  3012. source: "./media/characters/adake/front-2.svg",
  3013. extra: 1,
  3014. bottom: 0.01
  3015. }
  3016. },
  3017. back: {
  3018. height: math.unit(7, "feet"),
  3019. weight: math.unit(100, "kg"),
  3020. name: "Back",
  3021. image: {
  3022. source: "./media/characters/adake/back.svg",
  3023. }
  3024. },
  3025. kneel: {
  3026. height: math.unit(5.385, "feet"),
  3027. weight: math.unit(100, "kg"),
  3028. name: "Kneeling",
  3029. image: {
  3030. source: "./media/characters/adake/kneel.svg",
  3031. bottom: 0.052
  3032. }
  3033. },
  3034. },
  3035. [
  3036. {
  3037. name: "Normal",
  3038. height: math.unit(7, "feet"),
  3039. },
  3040. {
  3041. name: "Macro",
  3042. height: math.unit(78, "feet"),
  3043. default: true
  3044. },
  3045. {
  3046. name: "Macro+",
  3047. height: math.unit(300, "meters")
  3048. },
  3049. {
  3050. name: "Macro++",
  3051. height: math.unit(2400, "meters")
  3052. },
  3053. {
  3054. name: "Megamacro",
  3055. height: math.unit(5167, "meters")
  3056. },
  3057. {
  3058. name: "Gigamacro",
  3059. height: math.unit(41769, "miles")
  3060. },
  3061. ]
  3062. ))
  3063. characterMakers.push(() => makeCharacter(
  3064. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3065. {
  3066. front: {
  3067. height: math.unit(1.65, "meters"),
  3068. weight: math.unit(50, "kg"),
  3069. name: "Front",
  3070. image: {
  3071. source: "./media/characters/elijah/front.svg",
  3072. extra: 858 / 830,
  3073. bottom: 95.5 / 953.8559
  3074. }
  3075. },
  3076. back: {
  3077. height: math.unit(1.65, "meters"),
  3078. weight: math.unit(50, "kg"),
  3079. name: "Back",
  3080. image: {
  3081. source: "./media/characters/elijah/back.svg",
  3082. extra: 895 / 850,
  3083. bottom: 5.3 / 897.956
  3084. }
  3085. },
  3086. frontNsfw: {
  3087. height: math.unit(1.65, "meters"),
  3088. weight: math.unit(50, "kg"),
  3089. name: "Front (NSFW)",
  3090. image: {
  3091. source: "./media/characters/elijah/front-nsfw.svg",
  3092. extra: 858 / 830,
  3093. bottom: 95.5 / 953.8559
  3094. }
  3095. },
  3096. backNsfw: {
  3097. height: math.unit(1.65, "meters"),
  3098. weight: math.unit(50, "kg"),
  3099. name: "Back (NSFW)",
  3100. image: {
  3101. source: "./media/characters/elijah/back-nsfw.svg",
  3102. extra: 895 / 850,
  3103. bottom: 5.3 / 897.956
  3104. }
  3105. },
  3106. dick: {
  3107. height: math.unit(1, "feet"),
  3108. name: "Dick",
  3109. image: {
  3110. source: "./media/characters/elijah/dick.svg"
  3111. }
  3112. },
  3113. beakOpen: {
  3114. height: math.unit(1.25, "feet"),
  3115. name: "Beak (Open)",
  3116. image: {
  3117. source: "./media/characters/elijah/beak-open.svg"
  3118. }
  3119. },
  3120. beakShut: {
  3121. height: math.unit(1.25, "feet"),
  3122. name: "Beak (Shut)",
  3123. image: {
  3124. source: "./media/characters/elijah/beak-shut.svg"
  3125. }
  3126. },
  3127. footFlexing: {
  3128. height: math.unit(1.61, "feet"),
  3129. name: "Foot (Flexing)",
  3130. image: {
  3131. source: "./media/characters/elijah/foot-flexing.svg"
  3132. }
  3133. },
  3134. footStepping: {
  3135. height: math.unit(1.44, "feet"),
  3136. name: "Foot (Stepping)",
  3137. image: {
  3138. source: "./media/characters/elijah/foot-stepping.svg"
  3139. }
  3140. },
  3141. plantigradeLeg: {
  3142. height: math.unit(2.34, "feet"),
  3143. name: "Plantigrade Leg",
  3144. image: {
  3145. source: "./media/characters/elijah/plantigrade-leg.svg"
  3146. }
  3147. },
  3148. plantigradeFootLeft: {
  3149. height: math.unit(0.9, "feet"),
  3150. name: "Plantigrade Foot (Left)",
  3151. image: {
  3152. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3153. }
  3154. },
  3155. plantigradeFootRight: {
  3156. height: math.unit(0.9, "feet"),
  3157. name: "Plantigrade Foot (Right)",
  3158. image: {
  3159. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3160. }
  3161. },
  3162. },
  3163. [
  3164. {
  3165. name: "Normal",
  3166. height: math.unit(1.65, "meters")
  3167. },
  3168. {
  3169. name: "Macro",
  3170. height: math.unit(55, "meters"),
  3171. default: true
  3172. },
  3173. {
  3174. name: "Macro+",
  3175. height: math.unit(105, "meters")
  3176. },
  3177. ]
  3178. ))
  3179. characterMakers.push(() => makeCharacter(
  3180. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3181. {
  3182. front: {
  3183. height: math.unit(7 + 2/12, "feet"),
  3184. weight: math.unit(320, "kg"),
  3185. preyCapacity: math.unit(0.276549935, "people"),
  3186. name: "Front",
  3187. image: {
  3188. source: "./media/characters/rai/front.svg",
  3189. extra: 1802/1696,
  3190. bottom: 68/1870
  3191. },
  3192. form: "anthro",
  3193. default: true
  3194. },
  3195. frontDressed: {
  3196. height: math.unit(7 + 2/12, "feet"),
  3197. weight: math.unit(320, "kg"),
  3198. preyCapacity: math.unit(0.276549935, "people"),
  3199. name: "Front (Dressed)",
  3200. image: {
  3201. source: "./media/characters/rai/front-dressed.svg",
  3202. extra: 1802/1696,
  3203. bottom: 68/1870
  3204. },
  3205. form: "anthro"
  3206. },
  3207. side: {
  3208. height: math.unit(7 + 2/12, "feet"),
  3209. weight: math.unit(320, "kg"),
  3210. preyCapacity: math.unit(0.276549935, "people"),
  3211. name: "Side",
  3212. image: {
  3213. source: "./media/characters/rai/side.svg",
  3214. extra: 1789/1710,
  3215. bottom: 115/1904
  3216. },
  3217. form: "anthro"
  3218. },
  3219. back: {
  3220. height: math.unit(7 + 2/12, "feet"),
  3221. weight: math.unit(320, "kg"),
  3222. preyCapacity: math.unit(0.276549935, "people"),
  3223. name: "Back",
  3224. image: {
  3225. source: "./media/characters/rai/back.svg",
  3226. extra: 1770/1707,
  3227. bottom: 28/1798
  3228. },
  3229. form: "anthro"
  3230. },
  3231. feral: {
  3232. height: math.unit(9.5, "feet"),
  3233. weight: math.unit(640, "kg"),
  3234. preyCapacity: math.unit(4, "people"),
  3235. name: "Feral",
  3236. image: {
  3237. source: "./media/characters/rai/feral.svg",
  3238. extra: 945/553,
  3239. bottom: 176/1121
  3240. },
  3241. form: "feral",
  3242. default: true
  3243. },
  3244. dragon: {
  3245. height: math.unit(23, "feet"),
  3246. weight: math.unit(50000, "lb"),
  3247. name: "Dragon",
  3248. image: {
  3249. source: "./media/characters/rai/dragon.svg",
  3250. extra: 2498 / 2030,
  3251. bottom: 85.2 / 2584
  3252. },
  3253. form: "dragon",
  3254. default: true
  3255. },
  3256. maw: {
  3257. height: math.unit(1.69, "feet"),
  3258. name: "Maw",
  3259. image: {
  3260. source: "./media/characters/rai/maw.svg"
  3261. },
  3262. form: "anthro"
  3263. },
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(7 + 2/12, "feet"),
  3269. form: "anthro"
  3270. },
  3271. {
  3272. name: "Big",
  3273. height: math.unit(11, "feet"),
  3274. form: "anthro"
  3275. },
  3276. {
  3277. name: "Minimacro",
  3278. height: math.unit(77, "feet"),
  3279. form: "anthro"
  3280. },
  3281. {
  3282. name: "Macro",
  3283. height: math.unit(302, "feet"),
  3284. default: true,
  3285. form: "anthro"
  3286. },
  3287. {
  3288. name: "Normal",
  3289. height: math.unit(9.5, "feet"),
  3290. form: "feral",
  3291. default: true
  3292. },
  3293. {
  3294. name: "Normal",
  3295. height: math.unit(23, "feet"),
  3296. form: "dragon",
  3297. default: true
  3298. }
  3299. ],
  3300. {
  3301. "anthro": {
  3302. name: "Anthro",
  3303. default: true
  3304. },
  3305. "feral": {
  3306. name: "Feral",
  3307. },
  3308. "dragon": {
  3309. name: "Dragon",
  3310. },
  3311. }
  3312. ))
  3313. characterMakers.push(() => makeCharacter(
  3314. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3315. {
  3316. frontDressed: {
  3317. height: math.unit(216, "feet"),
  3318. weight: math.unit(7000000, "lb"),
  3319. preyCapacity: math.unit(1321, "people"),
  3320. name: "Front (Dressed)",
  3321. image: {
  3322. source: "./media/characters/jazzy/front-dressed.svg",
  3323. extra: 2738 / 2651,
  3324. bottom: 41.8 / 2786
  3325. }
  3326. },
  3327. backDressed: {
  3328. height: math.unit(216, "feet"),
  3329. weight: math.unit(7000000, "lb"),
  3330. preyCapacity: math.unit(1321, "people"),
  3331. name: "Back (Dressed)",
  3332. image: {
  3333. source: "./media/characters/jazzy/back-dressed.svg",
  3334. extra: 2775 / 2673,
  3335. bottom: 36.8 / 2817
  3336. }
  3337. },
  3338. front: {
  3339. height: math.unit(216, "feet"),
  3340. weight: math.unit(7000000, "lb"),
  3341. preyCapacity: math.unit(1321, "people"),
  3342. name: "Front",
  3343. image: {
  3344. source: "./media/characters/jazzy/front.svg",
  3345. extra: 2738 / 2651,
  3346. bottom: 41.8 / 2786
  3347. }
  3348. },
  3349. back: {
  3350. height: math.unit(216, "feet"),
  3351. weight: math.unit(7000000, "lb"),
  3352. preyCapacity: math.unit(1321, "people"),
  3353. name: "Back",
  3354. image: {
  3355. source: "./media/characters/jazzy/back.svg",
  3356. extra: 2775 / 2673,
  3357. bottom: 36.8 / 2817
  3358. }
  3359. },
  3360. maw: {
  3361. height: math.unit(20, "feet"),
  3362. name: "Maw",
  3363. image: {
  3364. source: "./media/characters/jazzy/maw.svg"
  3365. }
  3366. },
  3367. paws: {
  3368. height: math.unit(27.5, "feet"),
  3369. name: "Paws",
  3370. image: {
  3371. source: "./media/characters/jazzy/paws.svg"
  3372. }
  3373. },
  3374. eye: {
  3375. height: math.unit(4.4, "feet"),
  3376. name: "Eye",
  3377. image: {
  3378. source: "./media/characters/jazzy/eye.svg"
  3379. }
  3380. },
  3381. droneOffense: {
  3382. height: math.unit(9.5, "inches"),
  3383. name: "Drone (Offense)",
  3384. image: {
  3385. source: "./media/characters/jazzy/drone-offense.svg"
  3386. }
  3387. },
  3388. droneRecon: {
  3389. height: math.unit(9.5, "inches"),
  3390. name: "Drone (Recon)",
  3391. image: {
  3392. source: "./media/characters/jazzy/drone-recon.svg"
  3393. }
  3394. },
  3395. droneDefense: {
  3396. height: math.unit(9.5, "inches"),
  3397. name: "Drone (Defense)",
  3398. image: {
  3399. source: "./media/characters/jazzy/drone-defense.svg"
  3400. }
  3401. },
  3402. },
  3403. [
  3404. {
  3405. name: "Macro",
  3406. height: math.unit(216, "feet"),
  3407. default: true
  3408. },
  3409. ]
  3410. ))
  3411. characterMakers.push(() => makeCharacter(
  3412. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3413. {
  3414. front: {
  3415. height: math.unit(9 + 6/12, "feet"),
  3416. weight: math.unit(700, "lb"),
  3417. name: "Front",
  3418. image: {
  3419. source: "./media/characters/flamm/front.svg",
  3420. extra: 1736/1596,
  3421. bottom: 93/1829
  3422. }
  3423. },
  3424. buff: {
  3425. height: math.unit(9 + 6/12, "feet"),
  3426. weight: math.unit(950, "lb"),
  3427. name: "Buff",
  3428. image: {
  3429. source: "./media/characters/flamm/buff.svg",
  3430. extra: 3018/2874,
  3431. bottom: 221/3239
  3432. }
  3433. },
  3434. },
  3435. [
  3436. {
  3437. name: "Normal",
  3438. height: math.unit(9.5, "feet")
  3439. },
  3440. {
  3441. name: "Macro",
  3442. height: math.unit(200, "feet"),
  3443. default: true
  3444. },
  3445. ]
  3446. ))
  3447. characterMakers.push(() => makeCharacter(
  3448. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3449. {
  3450. front: {
  3451. height: math.unit(5 + 3/12, "feet"),
  3452. weight: math.unit(60, "kg"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/zephiro/front.svg",
  3456. extra: 1873/1761,
  3457. bottom: 147/2020
  3458. }
  3459. },
  3460. side: {
  3461. height: math.unit(5 + 3/12, "feet"),
  3462. weight: math.unit(60, "kg"),
  3463. name: "Side",
  3464. image: {
  3465. source: "./media/characters/zephiro/side.svg",
  3466. extra: 1929/1827,
  3467. bottom: 65/1994
  3468. }
  3469. },
  3470. back: {
  3471. height: math.unit(5 + 3/12, "feet"),
  3472. weight: math.unit(60, "kg"),
  3473. name: "Back",
  3474. image: {
  3475. source: "./media/characters/zephiro/back.svg",
  3476. extra: 1926/1816,
  3477. bottom: 41/1967
  3478. }
  3479. },
  3480. hand: {
  3481. height: math.unit(0.68, "feet"),
  3482. name: "Hand",
  3483. image: {
  3484. source: "./media/characters/zephiro/hand.svg"
  3485. }
  3486. },
  3487. paw: {
  3488. height: math.unit(1, "feet"),
  3489. name: "Paw",
  3490. image: {
  3491. source: "./media/characters/zephiro/paw.svg"
  3492. }
  3493. },
  3494. beans: {
  3495. height: math.unit(0.93, "feet"),
  3496. name: "Beans",
  3497. image: {
  3498. source: "./media/characters/zephiro/beans.svg"
  3499. }
  3500. },
  3501. },
  3502. [
  3503. {
  3504. name: "Micro",
  3505. height: math.unit(3, "inches")
  3506. },
  3507. {
  3508. name: "Normal",
  3509. height: math.unit(5 + 3 / 12, "feet"),
  3510. default: true
  3511. },
  3512. {
  3513. name: "Macro",
  3514. height: math.unit(118, "feet")
  3515. },
  3516. ]
  3517. ))
  3518. characterMakers.push(() => makeCharacter(
  3519. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3520. {
  3521. front: {
  3522. height: math.unit(5, "feet"),
  3523. weight: math.unit(90, "kg"),
  3524. preyCapacity: math.unit(14, "people"),
  3525. name: "Front",
  3526. image: {
  3527. source: "./media/characters/fory/front.svg",
  3528. extra: 2862 / 2674,
  3529. bottom: 180 / 3043.8
  3530. },
  3531. form: "weaselbun",
  3532. default: true,
  3533. extraAttributes: {
  3534. "pawSize": {
  3535. name: "Paw Size",
  3536. power: 2,
  3537. type: "area",
  3538. base: math.unit(0.1596, "m^2")
  3539. },
  3540. "pawLength": {
  3541. name: "Paw Length",
  3542. power: 1,
  3543. type: "length",
  3544. base: math.unit(0.7, "m")
  3545. }
  3546. }
  3547. },
  3548. back: {
  3549. height: math.unit(5, "feet"),
  3550. weight: math.unit(90, "kg"),
  3551. preyCapacity: math.unit(14, "people"),
  3552. name: "Back",
  3553. image: {
  3554. source: "./media/characters/fory/back.svg",
  3555. extra: 1790/1672,
  3556. bottom: 84/1874
  3557. },
  3558. form: "weaselbun",
  3559. extraAttributes: {
  3560. "pawSize": {
  3561. name: "Paw Size",
  3562. power: 2,
  3563. type: "area",
  3564. base: math.unit(0.1596, "m^2")
  3565. },
  3566. "pawLength": {
  3567. name: "Paw Length",
  3568. power: 1,
  3569. type: "length",
  3570. base: math.unit(0.7, "m")
  3571. }
  3572. }
  3573. },
  3574. paw: {
  3575. height: math.unit(2.14, "feet"),
  3576. name: "Paw",
  3577. image: {
  3578. source: "./media/characters/fory/paw.svg"
  3579. },
  3580. form: "weaselbun",
  3581. extraAttributes: {
  3582. "pawSize": {
  3583. name: "Paw Size",
  3584. power: 2,
  3585. type: "area",
  3586. base: math.unit(0.1596, "m^2")
  3587. },
  3588. "pawLength": {
  3589. name: "Paw Length",
  3590. power: 1,
  3591. type: "length",
  3592. base: math.unit(0.48, "m")
  3593. }
  3594. }
  3595. },
  3596. bunBack: {
  3597. height: math.unit(3, "feet"),
  3598. weight: math.unit(20, "kg"),
  3599. preyCapacity: math.unit(3, "people"),
  3600. name: "Back",
  3601. image: {
  3602. source: "./media/characters/fory/bun-back.svg",
  3603. extra: 1749/1564,
  3604. bottom: 246/1995
  3605. },
  3606. form: "bun",
  3607. default: true,
  3608. extraAttributes: {
  3609. "pawSize": {
  3610. name: "Paw Size",
  3611. power: 2,
  3612. type: "area",
  3613. base: math.unit(0.072, "m^2")
  3614. },
  3615. "pawLength": {
  3616. name: "Paw Length",
  3617. power: 1,
  3618. type: "length",
  3619. base: math.unit(0.45, "m")
  3620. }
  3621. }
  3622. },
  3623. },
  3624. [
  3625. {
  3626. name: "Normal",
  3627. height: math.unit(5, "feet"),
  3628. form: "weaselbun"
  3629. },
  3630. {
  3631. name: "Macro",
  3632. height: math.unit(50, "feet"),
  3633. default: true,
  3634. form: "weaselbun"
  3635. },
  3636. {
  3637. name: "Megamacro",
  3638. height: math.unit(10, "miles"),
  3639. form: "weaselbun"
  3640. },
  3641. {
  3642. name: "Gigamacro",
  3643. height: math.unit(5, "earths"),
  3644. form: "weaselbun"
  3645. },
  3646. {
  3647. name: "Normal",
  3648. height: math.unit(3, "feet"),
  3649. default: true,
  3650. form: "bun"
  3651. },
  3652. {
  3653. name: "Fun-Size",
  3654. height: math.unit(12, "feet"),
  3655. form: "bun"
  3656. },
  3657. {
  3658. name: "Macro",
  3659. height: math.unit(100, "feet"),
  3660. form: "bun"
  3661. },
  3662. {
  3663. name: "Planetary",
  3664. height: math.unit(3, "earths"),
  3665. form: "bun"
  3666. },
  3667. ],
  3668. {
  3669. "weaselbun": {
  3670. name: "Weaselbun",
  3671. default: true
  3672. },
  3673. "bun": {
  3674. name: "Bun",
  3675. },
  3676. }
  3677. ))
  3678. characterMakers.push(() => makeCharacter(
  3679. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3680. {
  3681. front: {
  3682. height: math.unit(7, "feet"),
  3683. weight: math.unit(90, "kg"),
  3684. name: "Front",
  3685. image: {
  3686. source: "./media/characters/kurrikage/front.svg",
  3687. extra: 1845/1733,
  3688. bottom: 119/1964
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(7, "feet"),
  3693. weight: math.unit(90, "kg"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/kurrikage/back.svg",
  3697. extra: 1790/1677,
  3698. bottom: 61/1851
  3699. }
  3700. },
  3701. dressed: {
  3702. height: math.unit(7, "feet"),
  3703. weight: math.unit(90, "kg"),
  3704. name: "Dressed",
  3705. image: {
  3706. source: "./media/characters/kurrikage/dressed.svg",
  3707. extra: 1845/1733,
  3708. bottom: 119/1964
  3709. }
  3710. },
  3711. foot: {
  3712. height: math.unit(1.5, "feet"),
  3713. name: "Foot",
  3714. image: {
  3715. source: "./media/characters/kurrikage/foot.svg"
  3716. }
  3717. },
  3718. staff: {
  3719. height: math.unit(6.7, "feet"),
  3720. name: "Staff",
  3721. image: {
  3722. source: "./media/characters/kurrikage/staff.svg"
  3723. }
  3724. },
  3725. peek: {
  3726. height: math.unit(1.05, "feet"),
  3727. name: "Peeking",
  3728. image: {
  3729. source: "./media/characters/kurrikage/peek.svg",
  3730. bottom: 0.08
  3731. }
  3732. },
  3733. },
  3734. [
  3735. {
  3736. name: "Normal",
  3737. height: math.unit(12, "feet"),
  3738. default: true
  3739. },
  3740. {
  3741. name: "Big",
  3742. height: math.unit(20, "feet")
  3743. },
  3744. {
  3745. name: "Macro",
  3746. height: math.unit(500, "feet")
  3747. },
  3748. {
  3749. name: "Megamacro",
  3750. height: math.unit(20, "miles")
  3751. },
  3752. ]
  3753. ))
  3754. characterMakers.push(() => makeCharacter(
  3755. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3756. {
  3757. front: {
  3758. height: math.unit(6, "feet"),
  3759. weight: math.unit(75, "kg"),
  3760. name: "Front",
  3761. image: {
  3762. source: "./media/characters/shingo/front.svg",
  3763. extra: 1900/1825,
  3764. bottom: 82/1982
  3765. }
  3766. },
  3767. side: {
  3768. height: math.unit(6, "feet"),
  3769. weight: math.unit(75, "kg"),
  3770. name: "Side",
  3771. image: {
  3772. source: "./media/characters/shingo/side.svg",
  3773. extra: 1930/1865,
  3774. bottom: 16/1946
  3775. }
  3776. },
  3777. back: {
  3778. height: math.unit(6, "feet"),
  3779. weight: math.unit(75, "kg"),
  3780. name: "Back",
  3781. image: {
  3782. source: "./media/characters/shingo/back.svg",
  3783. extra: 1922/1852,
  3784. bottom: 16/1938
  3785. }
  3786. },
  3787. frontDressed: {
  3788. height: math.unit(6, "feet"),
  3789. weight: math.unit(150, "lb"),
  3790. name: "Front-dressed",
  3791. image: {
  3792. source: "./media/characters/shingo/front-dressed.svg",
  3793. extra: 1900/1825,
  3794. bottom: 82/1982
  3795. }
  3796. },
  3797. paw: {
  3798. height: math.unit(1.29, "feet"),
  3799. name: "Paw",
  3800. image: {
  3801. source: "./media/characters/shingo/paw.svg"
  3802. }
  3803. },
  3804. hand: {
  3805. height: math.unit(1.07, "feet"),
  3806. name: "Hand",
  3807. image: {
  3808. source: "./media/characters/shingo/hand.svg"
  3809. }
  3810. },
  3811. frontAlt: {
  3812. height: math.unit(6, "feet"),
  3813. weight: math.unit(75, "kg"),
  3814. name: "Front (Alt)",
  3815. image: {
  3816. source: "./media/characters/shingo/front-alt.svg",
  3817. extra: 3511 / 3338,
  3818. bottom: 0.005
  3819. }
  3820. },
  3821. frontAlt2: {
  3822. height: math.unit(6, "feet"),
  3823. weight: math.unit(75, "kg"),
  3824. name: "Front (Alt 2)",
  3825. image: {
  3826. source: "./media/characters/shingo/front-alt-2.svg",
  3827. extra: 706/681,
  3828. bottom: 11/717
  3829. }
  3830. },
  3831. pawAlt: {
  3832. height: math.unit(1, "feet"),
  3833. name: "Paw (Alt)",
  3834. image: {
  3835. source: "./media/characters/shingo/paw-alt.svg"
  3836. }
  3837. },
  3838. },
  3839. [
  3840. {
  3841. name: "Micro",
  3842. height: math.unit(4, "inches")
  3843. },
  3844. {
  3845. name: "Normal",
  3846. height: math.unit(6, "feet"),
  3847. default: true
  3848. },
  3849. {
  3850. name: "Macro",
  3851. height: math.unit(108, "feet")
  3852. },
  3853. {
  3854. name: "Macro+",
  3855. height: math.unit(1500, "feet")
  3856. },
  3857. ]
  3858. ))
  3859. characterMakers.push(() => makeCharacter(
  3860. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3861. {
  3862. side: {
  3863. height: math.unit(6, "feet"),
  3864. weight: math.unit(75, "kg"),
  3865. name: "Side",
  3866. image: {
  3867. source: "./media/characters/aigey/side.svg"
  3868. }
  3869. },
  3870. },
  3871. [
  3872. {
  3873. name: "Macro",
  3874. height: math.unit(200, "feet"),
  3875. default: true
  3876. },
  3877. {
  3878. name: "Megamacro",
  3879. height: math.unit(100, "miles")
  3880. },
  3881. ]
  3882. )
  3883. )
  3884. characterMakers.push(() => makeCharacter(
  3885. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3886. {
  3887. front: {
  3888. height: math.unit(13, "feet"),
  3889. weight: math.unit(1036.80, "kg"),
  3890. name: "Front",
  3891. image: {
  3892. source: "./media/characters/natasha/front.svg",
  3893. extra: 1301/1210,
  3894. bottom: 39/1340
  3895. }
  3896. },
  3897. back: {
  3898. height: math.unit(13, "feet"),
  3899. weight: math.unit(1036.80, "kg"),
  3900. name: "Back",
  3901. image: {
  3902. source: "./media/characters/natasha/back.svg",
  3903. extra: 1342/1252,
  3904. bottom: 20/1362
  3905. }
  3906. },
  3907. head: {
  3908. height: math.unit(3.48, "feet"),
  3909. name: "Head",
  3910. image: {
  3911. source: "./media/characters/natasha/head.svg"
  3912. }
  3913. },
  3914. jaws: {
  3915. height: math.unit(3.52, "feet"),
  3916. name: "Jaws",
  3917. image: {
  3918. source: "./media/characters/natasha/jaws.svg"
  3919. }
  3920. },
  3921. paws: {
  3922. height: math.unit(2.7, "feet"),
  3923. name: "Paws",
  3924. image: {
  3925. source: "./media/characters/natasha/paws.svg"
  3926. }
  3927. },
  3928. collar: {
  3929. height: math.unit(0.89, "feet"),
  3930. name: "Collar",
  3931. image: {
  3932. source: "./media/characters/natasha/collar.svg"
  3933. }
  3934. },
  3935. gauge: {
  3936. height: math.unit(0.36, "feet"),
  3937. name: "Gauge",
  3938. image: {
  3939. source: "./media/characters/natasha/gauge.svg"
  3940. }
  3941. },
  3942. },
  3943. [
  3944. {
  3945. name: "Shortstack",
  3946. height: math.unit(3, "feet")
  3947. },
  3948. {
  3949. name: "Normal",
  3950. height: math.unit(13, "feet"),
  3951. default: true
  3952. },
  3953. {
  3954. name: "Macro",
  3955. height: math.unit(100, "feet")
  3956. },
  3957. {
  3958. name: "Macro+",
  3959. height: math.unit(260, "feet")
  3960. },
  3961. {
  3962. name: "Macro++",
  3963. height: math.unit(1, "mile")
  3964. },
  3965. ]
  3966. ))
  3967. characterMakers.push(() => makeCharacter(
  3968. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3969. {
  3970. front: {
  3971. height: math.unit(6, "feet"),
  3972. weight: math.unit(75, "kg"),
  3973. name: "Front",
  3974. image: {
  3975. source: "./media/characters/malik/front.svg",
  3976. extra: 1750/1561,
  3977. bottom: 80/1830
  3978. },
  3979. extraAttributes: {
  3980. "toeSize": {
  3981. name: "Toe Size",
  3982. power: 2,
  3983. type: "area",
  3984. base: math.unit(0.0159, "m^2")
  3985. },
  3986. "pawSize": {
  3987. name: "Paw Size",
  3988. power: 2,
  3989. type: "area",
  3990. base: math.unit(0.09834, "m^2")
  3991. },
  3992. }
  3993. },
  3994. side: {
  3995. height: math.unit(6, "feet"),
  3996. weight: math.unit(75, "kg"),
  3997. name: "Side",
  3998. image: {
  3999. source: "./media/characters/malik/side.svg",
  4000. extra: 1802/1685,
  4001. bottom: 42/1844
  4002. },
  4003. extraAttributes: {
  4004. "toeSize": {
  4005. name: "Toe Size",
  4006. power: 2,
  4007. type: "area",
  4008. base: math.unit(0.0159, "m^2")
  4009. },
  4010. "pawSize": {
  4011. name: "Paw Size",
  4012. power: 2,
  4013. type: "area",
  4014. base: math.unit(0.09834, "m^2")
  4015. },
  4016. }
  4017. },
  4018. back: {
  4019. height: math.unit(6, "feet"),
  4020. weight: math.unit(75, "kg"),
  4021. name: "Back",
  4022. image: {
  4023. source: "./media/characters/malik/back.svg",
  4024. extra: 1803/1607,
  4025. bottom: 33/1836
  4026. },
  4027. extraAttributes: {
  4028. "toeSize": {
  4029. name: "Toe Size",
  4030. power: 2,
  4031. type: "area",
  4032. base: math.unit(0.0159, "m^2")
  4033. },
  4034. "pawSize": {
  4035. name: "Paw Size",
  4036. power: 2,
  4037. type: "area",
  4038. base: math.unit(0.09834, "m^2")
  4039. },
  4040. }
  4041. },
  4042. },
  4043. [
  4044. {
  4045. name: "Macro",
  4046. height: math.unit(156, "feet"),
  4047. default: true
  4048. },
  4049. {
  4050. name: "Macro+",
  4051. height: math.unit(1188, "feet")
  4052. },
  4053. ]
  4054. ))
  4055. characterMakers.push(() => makeCharacter(
  4056. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4057. {
  4058. front: {
  4059. height: math.unit(6, "feet"),
  4060. weight: math.unit(75, "kg"),
  4061. name: "Front",
  4062. image: {
  4063. source: "./media/characters/sefer/front.svg",
  4064. extra: 848 / 659,
  4065. bottom: 28.3 / 876.442
  4066. }
  4067. },
  4068. back: {
  4069. height: math.unit(6, "feet"),
  4070. weight: math.unit(75, "kg"),
  4071. name: "Back",
  4072. image: {
  4073. source: "./media/characters/sefer/back.svg",
  4074. extra: 864 / 695,
  4075. bottom: 10 / 871
  4076. }
  4077. },
  4078. frontDressed: {
  4079. height: math.unit(6, "feet"),
  4080. weight: math.unit(75, "kg"),
  4081. name: "Dressed",
  4082. image: {
  4083. source: "./media/characters/sefer/dressed.svg",
  4084. extra: 839 / 653,
  4085. bottom: 37.6 / 878
  4086. }
  4087. },
  4088. },
  4089. [
  4090. {
  4091. name: "Normal",
  4092. height: math.unit(6, "feet"),
  4093. default: true
  4094. },
  4095. {
  4096. name: "Big",
  4097. height: math.unit(8, "meters")
  4098. },
  4099. ]
  4100. ))
  4101. characterMakers.push(() => makeCharacter(
  4102. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4103. {
  4104. body: {
  4105. height: math.unit(2.2428, "meter"),
  4106. weight: math.unit(124.738, "kg"),
  4107. name: "Body",
  4108. image: {
  4109. extra: 1225 / 1050,
  4110. source: "./media/characters/north/front.svg"
  4111. }
  4112. }
  4113. },
  4114. [
  4115. {
  4116. name: "Micro",
  4117. height: math.unit(4, "inches")
  4118. },
  4119. {
  4120. name: "Macro",
  4121. height: math.unit(63, "meters")
  4122. },
  4123. {
  4124. name: "Megamacro",
  4125. height: math.unit(101, "miles"),
  4126. default: true
  4127. }
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4132. {
  4133. angled: {
  4134. height: math.unit(4, "meter"),
  4135. weight: math.unit(150, "kg"),
  4136. name: "Angled",
  4137. image: {
  4138. source: "./media/characters/talan/angled-sfw.svg",
  4139. bottom: 29 / 3734
  4140. }
  4141. },
  4142. angledNsfw: {
  4143. height: math.unit(4, "meter"),
  4144. weight: math.unit(150, "kg"),
  4145. name: "Angled (NSFW)",
  4146. image: {
  4147. source: "./media/characters/talan/angled-nsfw.svg",
  4148. bottom: 29 / 3734
  4149. }
  4150. },
  4151. frontNsfw: {
  4152. height: math.unit(4, "meter"),
  4153. weight: math.unit(150, "kg"),
  4154. name: "Front (NSFW)",
  4155. image: {
  4156. source: "./media/characters/talan/front-nsfw.svg",
  4157. bottom: 29 / 3734
  4158. }
  4159. },
  4160. sideNsfw: {
  4161. height: math.unit(4, "meter"),
  4162. weight: math.unit(150, "kg"),
  4163. name: "Side (NSFW)",
  4164. image: {
  4165. source: "./media/characters/talan/side-nsfw.svg",
  4166. bottom: 29 / 3734
  4167. }
  4168. },
  4169. back: {
  4170. height: math.unit(4, "meter"),
  4171. weight: math.unit(150, "kg"),
  4172. name: "Back",
  4173. image: {
  4174. source: "./media/characters/talan/back.svg"
  4175. }
  4176. },
  4177. dickBottom: {
  4178. height: math.unit(0.621, "meter"),
  4179. name: "Dick (Bottom)",
  4180. image: {
  4181. source: "./media/characters/talan/dick-bottom.svg"
  4182. }
  4183. },
  4184. dickTop: {
  4185. height: math.unit(0.621, "meter"),
  4186. name: "Dick (Top)",
  4187. image: {
  4188. source: "./media/characters/talan/dick-top.svg"
  4189. }
  4190. },
  4191. dickSide: {
  4192. height: math.unit(0.305, "meter"),
  4193. name: "Dick (Side)",
  4194. image: {
  4195. source: "./media/characters/talan/dick-side.svg"
  4196. }
  4197. },
  4198. dickFront: {
  4199. height: math.unit(0.305, "meter"),
  4200. name: "Dick (Front)",
  4201. image: {
  4202. source: "./media/characters/talan/dick-front.svg"
  4203. }
  4204. },
  4205. },
  4206. [
  4207. {
  4208. name: "Normal",
  4209. height: math.unit(4, "meters")
  4210. },
  4211. {
  4212. name: "Macro",
  4213. height: math.unit(100, "meters")
  4214. },
  4215. {
  4216. name: "Megamacro",
  4217. height: math.unit(2, "miles"),
  4218. default: true
  4219. },
  4220. {
  4221. name: "Gigamacro",
  4222. height: math.unit(5000, "miles")
  4223. },
  4224. {
  4225. name: "Teramacro",
  4226. height: math.unit(100, "parsecs")
  4227. }
  4228. ]
  4229. ))
  4230. characterMakers.push(() => makeCharacter(
  4231. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4232. {
  4233. front: {
  4234. height: math.unit(2, "meter"),
  4235. weight: math.unit(90, "kg"),
  4236. name: "Front",
  4237. image: {
  4238. source: "./media/characters/gael'rathus/front.svg"
  4239. }
  4240. },
  4241. frontAlt: {
  4242. height: math.unit(2, "meter"),
  4243. weight: math.unit(90, "kg"),
  4244. name: "Front (alt)",
  4245. image: {
  4246. source: "./media/characters/gael'rathus/front-alt.svg"
  4247. }
  4248. },
  4249. frontAlt2: {
  4250. height: math.unit(2, "meter"),
  4251. weight: math.unit(90, "kg"),
  4252. name: "Front (alt 2)",
  4253. image: {
  4254. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4255. }
  4256. }
  4257. },
  4258. [
  4259. {
  4260. name: "Normal",
  4261. height: math.unit(9, "feet"),
  4262. default: true
  4263. },
  4264. {
  4265. name: "Large",
  4266. height: math.unit(25, "feet")
  4267. },
  4268. {
  4269. name: "Macro",
  4270. height: math.unit(0.25, "miles")
  4271. },
  4272. {
  4273. name: "Megamacro",
  4274. height: math.unit(10, "miles")
  4275. }
  4276. ]
  4277. ))
  4278. characterMakers.push(() => makeCharacter(
  4279. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4280. {
  4281. side: {
  4282. height: math.unit(2, "meter"),
  4283. weight: math.unit(140, "kg"),
  4284. name: "Side",
  4285. image: {
  4286. source: "./media/characters/sosha/side.svg",
  4287. extra: 1170/1006,
  4288. bottom: 94/1264
  4289. }
  4290. },
  4291. maw: {
  4292. height: math.unit(2.87, "feet"),
  4293. name: "Maw",
  4294. image: {
  4295. source: "./media/characters/sosha/maw.svg",
  4296. extra: 966/865,
  4297. bottom: 0/966
  4298. }
  4299. },
  4300. cooch: {
  4301. height: math.unit(5.6, "feet"),
  4302. name: "Cooch",
  4303. image: {
  4304. source: "./media/characters/sosha/cooch.svg"
  4305. }
  4306. },
  4307. },
  4308. [
  4309. {
  4310. name: "Normal",
  4311. height: math.unit(12, "feet"),
  4312. default: true
  4313. }
  4314. ]
  4315. ))
  4316. characterMakers.push(() => makeCharacter(
  4317. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4318. {
  4319. side: {
  4320. height: math.unit(5 + 5 / 12, "feet"),
  4321. weight: math.unit(170, "kg"),
  4322. name: "Side",
  4323. image: {
  4324. source: "./media/characters/runnola/side.svg",
  4325. extra: 741 / 448,
  4326. bottom: 0.05
  4327. }
  4328. },
  4329. },
  4330. [
  4331. {
  4332. name: "Small",
  4333. height: math.unit(3, "feet")
  4334. },
  4335. {
  4336. name: "Normal",
  4337. height: math.unit(5 + 5 / 12, "feet"),
  4338. default: true
  4339. },
  4340. {
  4341. name: "Big",
  4342. height: math.unit(10, "feet")
  4343. },
  4344. ]
  4345. ))
  4346. characterMakers.push(() => makeCharacter(
  4347. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4348. {
  4349. front: {
  4350. height: math.unit(2, "meter"),
  4351. weight: math.unit(50, "kg"),
  4352. name: "Front",
  4353. image: {
  4354. source: "./media/characters/kurribird/front.svg",
  4355. bottom: 0.015
  4356. }
  4357. },
  4358. frontAlt: {
  4359. height: math.unit(1.5, "meter"),
  4360. weight: math.unit(50, "kg"),
  4361. name: "Front (Alt)",
  4362. image: {
  4363. source: "./media/characters/kurribird/front-alt.svg",
  4364. extra: 1.45
  4365. }
  4366. },
  4367. },
  4368. [
  4369. {
  4370. name: "Normal",
  4371. height: math.unit(7, "feet")
  4372. },
  4373. {
  4374. name: "Big",
  4375. height: math.unit(12, "feet"),
  4376. default: true
  4377. },
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(1500, "feet")
  4381. },
  4382. {
  4383. name: "Megamacro",
  4384. height: math.unit(2, "miles")
  4385. }
  4386. ]
  4387. ))
  4388. characterMakers.push(() => makeCharacter(
  4389. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4390. {
  4391. front: {
  4392. height: math.unit(2, "meter"),
  4393. weight: math.unit(80, "kg"),
  4394. name: "Front",
  4395. image: {
  4396. source: "./media/characters/elbial/front.svg",
  4397. extra: 1643 / 1556,
  4398. bottom: 60.2 / 1696
  4399. }
  4400. },
  4401. side: {
  4402. height: math.unit(2, "meter"),
  4403. weight: math.unit(80, "kg"),
  4404. name: "Side",
  4405. image: {
  4406. source: "./media/characters/elbial/side.svg",
  4407. extra: 1601/1528,
  4408. bottom: 97/1698
  4409. }
  4410. },
  4411. back: {
  4412. height: math.unit(2, "meter"),
  4413. weight: math.unit(80, "kg"),
  4414. name: "Back",
  4415. image: {
  4416. source: "./media/characters/elbial/back.svg",
  4417. extra: 1653/1569,
  4418. bottom: 20/1673
  4419. }
  4420. },
  4421. frontDressed: {
  4422. height: math.unit(2, "meter"),
  4423. weight: math.unit(80, "kg"),
  4424. name: "Front (Dressed)",
  4425. image: {
  4426. source: "./media/characters/elbial/front-dressed.svg",
  4427. extra: 1638/1569,
  4428. bottom: 70/1708
  4429. }
  4430. },
  4431. genitals: {
  4432. height: math.unit(2 / 3.367, "meter"),
  4433. name: "Genitals",
  4434. image: {
  4435. source: "./media/characters/elbial/genitals.svg"
  4436. }
  4437. },
  4438. },
  4439. [
  4440. {
  4441. name: "Large",
  4442. height: math.unit(100, "feet")
  4443. },
  4444. {
  4445. name: "Macro",
  4446. height: math.unit(500, "feet"),
  4447. default: true
  4448. },
  4449. {
  4450. name: "Megamacro",
  4451. height: math.unit(10, "miles")
  4452. },
  4453. {
  4454. name: "Gigamacro",
  4455. height: math.unit(25000, "miles")
  4456. },
  4457. {
  4458. name: "Full-Size",
  4459. height: math.unit(8000000, "gigaparsecs")
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(2, "meter"),
  4468. weight: math.unit(60, "kg"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/noah/front.svg",
  4472. extra: 1383/1313,
  4473. bottom: 104/1487
  4474. }
  4475. },
  4476. hand: {
  4477. height: math.unit(0.6, "feet"),
  4478. name: "Hand",
  4479. image: {
  4480. source: "./media/characters/noah/hand.svg"
  4481. }
  4482. },
  4483. talons: {
  4484. height: math.unit(1.385, "feet"),
  4485. name: "Talons",
  4486. image: {
  4487. source: "./media/characters/noah/talons.svg"
  4488. }
  4489. },
  4490. beak: {
  4491. height: math.unit(0.43, "feet"),
  4492. name: "Beak",
  4493. image: {
  4494. source: "./media/characters/noah/beak.svg"
  4495. }
  4496. },
  4497. collar: {
  4498. height: math.unit(0.88, "feet"),
  4499. name: "Collar",
  4500. image: {
  4501. source: "./media/characters/noah/collar.svg"
  4502. }
  4503. },
  4504. eyeNarrow: {
  4505. height: math.unit(0.18, "feet"),
  4506. name: "Eye (Narrow)",
  4507. image: {
  4508. source: "./media/characters/noah/eye-narrow.svg"
  4509. }
  4510. },
  4511. eyeNormal: {
  4512. height: math.unit(0.18, "feet"),
  4513. name: "Eye (Normal)",
  4514. image: {
  4515. source: "./media/characters/noah/eye-normal.svg"
  4516. }
  4517. },
  4518. eyeWide: {
  4519. height: math.unit(0.18, "feet"),
  4520. name: "Eye (Wide)",
  4521. image: {
  4522. source: "./media/characters/noah/eye-wide.svg"
  4523. }
  4524. },
  4525. ear: {
  4526. height: math.unit(0.64, "feet"),
  4527. name: "Ear",
  4528. image: {
  4529. source: "./media/characters/noah/ear.svg"
  4530. }
  4531. },
  4532. },
  4533. [
  4534. {
  4535. name: "Large",
  4536. height: math.unit(50, "feet")
  4537. },
  4538. {
  4539. name: "Macro",
  4540. height: math.unit(750, "feet"),
  4541. default: true
  4542. },
  4543. {
  4544. name: "Megamacro",
  4545. height: math.unit(50, "miles")
  4546. },
  4547. {
  4548. name: "Gigamacro",
  4549. height: math.unit(100000, "miles")
  4550. },
  4551. {
  4552. name: "Full-Size",
  4553. height: math.unit(3000000000, "miles")
  4554. }
  4555. ]
  4556. ))
  4557. characterMakers.push(() => makeCharacter(
  4558. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4559. {
  4560. front: {
  4561. height: math.unit(2, "meter"),
  4562. weight: math.unit(80, "kg"),
  4563. name: "Front",
  4564. image: {
  4565. source: "./media/characters/natalya/front.svg"
  4566. }
  4567. },
  4568. back: {
  4569. height: math.unit(2, "meter"),
  4570. weight: math.unit(80, "kg"),
  4571. name: "Back",
  4572. image: {
  4573. source: "./media/characters/natalya/back.svg"
  4574. }
  4575. }
  4576. },
  4577. [
  4578. {
  4579. name: "Normal",
  4580. height: math.unit(150, "feet"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Megamacro",
  4585. height: math.unit(5, "miles")
  4586. },
  4587. {
  4588. name: "Full-Size",
  4589. height: math.unit(600, "kiloparsecs")
  4590. }
  4591. ]
  4592. ))
  4593. characterMakers.push(() => makeCharacter(
  4594. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4595. {
  4596. front: {
  4597. height: math.unit(2, "meter"),
  4598. weight: math.unit(50, "kg"),
  4599. name: "Front",
  4600. image: {
  4601. source: "./media/characters/erestrebah/front.svg",
  4602. extra: 1262/1162,
  4603. bottom: 96/1358
  4604. }
  4605. },
  4606. back: {
  4607. height: math.unit(2, "meter"),
  4608. weight: math.unit(50, "kg"),
  4609. name: "Back",
  4610. image: {
  4611. source: "./media/characters/erestrebah/back.svg",
  4612. extra: 1257/1139,
  4613. bottom: 13/1270
  4614. }
  4615. },
  4616. wing: {
  4617. height: math.unit(2, "meter"),
  4618. weight: math.unit(50, "kg"),
  4619. name: "Wing",
  4620. image: {
  4621. source: "./media/characters/erestrebah/wing.svg",
  4622. extra: 1262/1162,
  4623. bottom: 96/1358
  4624. }
  4625. },
  4626. mouth: {
  4627. height: math.unit(0.39, "feet"),
  4628. name: "Mouth",
  4629. image: {
  4630. source: "./media/characters/erestrebah/mouth.svg"
  4631. }
  4632. }
  4633. },
  4634. [
  4635. {
  4636. name: "Normal",
  4637. height: math.unit(10, "feet")
  4638. },
  4639. {
  4640. name: "Large",
  4641. height: math.unit(50, "feet"),
  4642. default: true
  4643. },
  4644. {
  4645. name: "Macro",
  4646. height: math.unit(300, "feet")
  4647. },
  4648. {
  4649. name: "Macro+",
  4650. height: math.unit(750, "feet")
  4651. },
  4652. {
  4653. name: "Megamacro",
  4654. height: math.unit(3, "miles")
  4655. }
  4656. ]
  4657. ))
  4658. characterMakers.push(() => makeCharacter(
  4659. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4660. {
  4661. front: {
  4662. height: math.unit(2, "meter"),
  4663. weight: math.unit(80, "kg"),
  4664. name: "Front",
  4665. image: {
  4666. source: "./media/characters/jennifer/front.svg",
  4667. bottom: 0.11,
  4668. extra: 1.16
  4669. }
  4670. },
  4671. frontAlt: {
  4672. height: math.unit(2, "meter"),
  4673. weight: math.unit(80, "kg"),
  4674. name: "Front (Alt)",
  4675. image: {
  4676. source: "./media/characters/jennifer/front-alt.svg"
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Canon Height",
  4683. height: math.unit(120, "feet"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "Macro+",
  4688. height: math.unit(300, "feet")
  4689. },
  4690. {
  4691. name: "Megamacro",
  4692. height: math.unit(20000, "feet")
  4693. }
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(2, "meter"),
  4701. weight: math.unit(50, "kg"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/kalista/front.svg",
  4705. extra: 1314/1145,
  4706. bottom: 101/1415
  4707. }
  4708. },
  4709. back: {
  4710. height: math.unit(2, "meter"),
  4711. weight: math.unit(50, "kg"),
  4712. name: "Back",
  4713. image: {
  4714. source: "./media/characters/kalista/back.svg",
  4715. extra: 1366 / 1156,
  4716. bottom: 33.9 / 1362.78
  4717. }
  4718. }
  4719. },
  4720. [
  4721. {
  4722. name: "Uncomfortably Small",
  4723. height: math.unit(10, "feet")
  4724. },
  4725. {
  4726. name: "Small",
  4727. height: math.unit(30, "feet")
  4728. },
  4729. {
  4730. name: "Macro",
  4731. height: math.unit(100, "feet"),
  4732. default: true
  4733. },
  4734. {
  4735. name: "Macro+",
  4736. height: math.unit(2000, "feet")
  4737. },
  4738. {
  4739. name: "True Form",
  4740. height: math.unit(8924, "miles")
  4741. }
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4746. {
  4747. front: {
  4748. height: math.unit(2, "meter"),
  4749. weight: math.unit(120, "kg"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/ggv/front.svg"
  4753. }
  4754. },
  4755. side: {
  4756. height: math.unit(2, "meter"),
  4757. weight: math.unit(120, "kg"),
  4758. name: "Side",
  4759. image: {
  4760. source: "./media/characters/ggv/side.svg"
  4761. }
  4762. }
  4763. },
  4764. [
  4765. {
  4766. name: "Extremely Puny",
  4767. height: math.unit(9 + 5 / 12, "feet")
  4768. },
  4769. {
  4770. name: "Horribly Small",
  4771. height: math.unit(47.7, "miles"),
  4772. default: true
  4773. },
  4774. {
  4775. name: "Reasonably Sized",
  4776. height: math.unit(25000, "parsecs")
  4777. },
  4778. {
  4779. name: "Slightly Uncompressed",
  4780. height: math.unit(7.77e31, "parsecs")
  4781. },
  4782. {
  4783. name: "Omniversal",
  4784. height: math.unit(1e300, "meters")
  4785. },
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4790. {
  4791. front: {
  4792. height: math.unit(2, "meter"),
  4793. weight: math.unit(75, "lb"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/napalm/front.svg"
  4797. }
  4798. },
  4799. back: {
  4800. height: math.unit(2, "meter"),
  4801. weight: math.unit(75, "lb"),
  4802. name: "Back",
  4803. image: {
  4804. source: "./media/characters/napalm/back.svg"
  4805. }
  4806. }
  4807. },
  4808. [
  4809. {
  4810. name: "Standard",
  4811. height: math.unit(55, "feet"),
  4812. default: true
  4813. }
  4814. ]
  4815. ))
  4816. characterMakers.push(() => makeCharacter(
  4817. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4818. {
  4819. front: {
  4820. height: math.unit(7 + 5 / 6, "feet"),
  4821. weight: math.unit(325, "lb"),
  4822. name: "Front",
  4823. image: {
  4824. source: "./media/characters/asana/front.svg",
  4825. extra: 1133 / 1060,
  4826. bottom: 15.2 / 1148.6
  4827. }
  4828. },
  4829. back: {
  4830. height: math.unit(7 + 5 / 6, "feet"),
  4831. weight: math.unit(325, "lb"),
  4832. name: "Back",
  4833. image: {
  4834. source: "./media/characters/asana/back.svg",
  4835. extra: 1114 / 1043,
  4836. bottom: 5 / 1120
  4837. }
  4838. },
  4839. dressedDark: {
  4840. height: math.unit(7 + 5 / 6, "feet"),
  4841. weight: math.unit(325, "lb"),
  4842. name: "Dressed (Dark)",
  4843. image: {
  4844. source: "./media/characters/asana/dressed-dark.svg",
  4845. extra: 1133 / 1060,
  4846. bottom: 15.2 / 1148.6
  4847. }
  4848. },
  4849. dressedLight: {
  4850. height: math.unit(7 + 5 / 6, "feet"),
  4851. weight: math.unit(325, "lb"),
  4852. name: "Dressed (Light)",
  4853. image: {
  4854. source: "./media/characters/asana/dressed-light.svg",
  4855. extra: 1133 / 1060,
  4856. bottom: 15.2 / 1148.6
  4857. }
  4858. },
  4859. },
  4860. [
  4861. {
  4862. name: "Standard",
  4863. height: math.unit(7 + 5 / 6, "feet"),
  4864. default: true
  4865. },
  4866. {
  4867. name: "Large",
  4868. height: math.unit(10, "meters")
  4869. },
  4870. {
  4871. name: "Macro",
  4872. height: math.unit(2500, "meters")
  4873. },
  4874. {
  4875. name: "Megamacro",
  4876. height: math.unit(5e6, "meters")
  4877. },
  4878. {
  4879. name: "Examacro",
  4880. height: math.unit(5e12, "lightyears")
  4881. },
  4882. {
  4883. name: "Max Size",
  4884. height: math.unit(1e31, "lightyears")
  4885. }
  4886. ]
  4887. ))
  4888. characterMakers.push(() => makeCharacter(
  4889. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4890. {
  4891. front: {
  4892. height: math.unit(2, "meter"),
  4893. weight: math.unit(60, "kg"),
  4894. name: "Front",
  4895. image: {
  4896. source: "./media/characters/ebony/front.svg",
  4897. bottom: 0.03,
  4898. extra: 1045 / 810 + 0.03
  4899. }
  4900. },
  4901. side: {
  4902. height: math.unit(2, "meter"),
  4903. weight: math.unit(60, "kg"),
  4904. name: "Side",
  4905. image: {
  4906. source: "./media/characters/ebony/side.svg",
  4907. bottom: 0.03,
  4908. extra: 1045 / 810 + 0.03
  4909. }
  4910. },
  4911. back: {
  4912. height: math.unit(2, "meter"),
  4913. weight: math.unit(60, "kg"),
  4914. name: "Back",
  4915. image: {
  4916. source: "./media/characters/ebony/back.svg",
  4917. bottom: 0.01,
  4918. extra: 1045 / 810 + 0.01
  4919. }
  4920. },
  4921. },
  4922. [
  4923. // TODO check why I did this lol
  4924. {
  4925. name: "Standard",
  4926. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4927. default: true
  4928. },
  4929. {
  4930. name: "Macro",
  4931. height: math.unit(200, "feet")
  4932. },
  4933. {
  4934. name: "Gigamacro",
  4935. height: math.unit(13000, "km")
  4936. }
  4937. ]
  4938. ))
  4939. characterMakers.push(() => makeCharacter(
  4940. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4941. {
  4942. front: {
  4943. height: math.unit(6, "feet"),
  4944. weight: math.unit(175, "lb"),
  4945. name: "Front",
  4946. image: {
  4947. source: "./media/characters/mountain/front.svg",
  4948. extra: 972 / 955,
  4949. bottom: 64 / 1036.6
  4950. }
  4951. },
  4952. back: {
  4953. height: math.unit(6, "feet"),
  4954. weight: math.unit(175, "lb"),
  4955. name: "Back",
  4956. image: {
  4957. source: "./media/characters/mountain/back.svg",
  4958. extra: 970 / 950,
  4959. bottom: 28.25 / 999
  4960. }
  4961. },
  4962. },
  4963. [
  4964. {
  4965. name: "Large",
  4966. height: math.unit(20, "meters")
  4967. },
  4968. {
  4969. name: "Macro",
  4970. height: math.unit(300, "meters")
  4971. },
  4972. {
  4973. name: "Gigamacro",
  4974. height: math.unit(10000, "km"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Examacro",
  4979. height: math.unit(10e9, "lightyears")
  4980. }
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4985. {
  4986. front: {
  4987. height: math.unit(8, "feet"),
  4988. weight: math.unit(500, "lb"),
  4989. name: "Front",
  4990. image: {
  4991. source: "./media/characters/rick/front.svg"
  4992. }
  4993. }
  4994. },
  4995. [
  4996. {
  4997. name: "Normal",
  4998. height: math.unit(8, "feet"),
  4999. default: true
  5000. },
  5001. {
  5002. name: "Macro",
  5003. height: math.unit(5, "km")
  5004. }
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5009. {
  5010. front: {
  5011. height: math.unit(8, "feet"),
  5012. weight: math.unit(120, "lb"),
  5013. name: "Front",
  5014. image: {
  5015. source: "./media/characters/ona/front.svg"
  5016. }
  5017. },
  5018. frontAlt: {
  5019. height: math.unit(8, "feet"),
  5020. weight: math.unit(120, "lb"),
  5021. name: "Front (Alt)",
  5022. image: {
  5023. source: "./media/characters/ona/front-alt.svg"
  5024. }
  5025. },
  5026. back: {
  5027. height: math.unit(8, "feet"),
  5028. weight: math.unit(120, "lb"),
  5029. name: "Back",
  5030. image: {
  5031. source: "./media/characters/ona/back.svg"
  5032. }
  5033. },
  5034. foot: {
  5035. height: math.unit(1.1, "feet"),
  5036. name: "Foot",
  5037. image: {
  5038. source: "./media/characters/ona/foot.svg"
  5039. }
  5040. }
  5041. },
  5042. [
  5043. {
  5044. name: "Megamacro",
  5045. height: math.unit(70, "km"),
  5046. default: true
  5047. },
  5048. {
  5049. name: "Gigamacro",
  5050. height: math.unit(681818, "miles")
  5051. },
  5052. {
  5053. name: "Examacro",
  5054. height: math.unit(3800000, "lightyears")
  5055. },
  5056. ]
  5057. ))
  5058. characterMakers.push(() => makeCharacter(
  5059. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5060. {
  5061. front: {
  5062. height: math.unit(12, "feet"),
  5063. weight: math.unit(3000, "lb"),
  5064. name: "Front",
  5065. image: {
  5066. source: "./media/characters/mech/front.svg",
  5067. extra: 2900 / 2770,
  5068. bottom: 110 / 3010
  5069. }
  5070. },
  5071. back: {
  5072. height: math.unit(12, "feet"),
  5073. weight: math.unit(3000, "lb"),
  5074. name: "Back",
  5075. image: {
  5076. source: "./media/characters/mech/back.svg",
  5077. extra: 3011 / 2890,
  5078. bottom: 94 / 3105
  5079. }
  5080. },
  5081. maw: {
  5082. height: math.unit(3.07, "feet"),
  5083. name: "Maw",
  5084. image: {
  5085. source: "./media/characters/mech/maw.svg"
  5086. }
  5087. },
  5088. head: {
  5089. height: math.unit(3.07, "feet"),
  5090. name: "Head",
  5091. image: {
  5092. source: "./media/characters/mech/head.svg"
  5093. }
  5094. },
  5095. dick: {
  5096. height: math.unit(1.43, "feet"),
  5097. name: "Dick",
  5098. image: {
  5099. source: "./media/characters/mech/dick.svg"
  5100. }
  5101. },
  5102. },
  5103. [
  5104. {
  5105. name: "Normal",
  5106. height: math.unit(12, "feet")
  5107. },
  5108. {
  5109. name: "Macro",
  5110. height: math.unit(300, "feet"),
  5111. default: true
  5112. },
  5113. {
  5114. name: "Macro+",
  5115. height: math.unit(1500, "feet")
  5116. },
  5117. ]
  5118. ))
  5119. characterMakers.push(() => makeCharacter(
  5120. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5121. {
  5122. front: {
  5123. height: math.unit(1.3, "meter"),
  5124. weight: math.unit(30, "kg"),
  5125. name: "Front",
  5126. image: {
  5127. source: "./media/characters/gregory/front.svg",
  5128. }
  5129. }
  5130. },
  5131. [
  5132. {
  5133. name: "Normal",
  5134. height: math.unit(1.3, "meter"),
  5135. default: true
  5136. },
  5137. {
  5138. name: "Macro",
  5139. height: math.unit(20, "meter")
  5140. }
  5141. ]
  5142. ))
  5143. characterMakers.push(() => makeCharacter(
  5144. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5145. {
  5146. front: {
  5147. height: math.unit(2.8, "meter"),
  5148. weight: math.unit(200, "kg"),
  5149. name: "Front",
  5150. image: {
  5151. source: "./media/characters/elory/front.svg",
  5152. }
  5153. }
  5154. },
  5155. [
  5156. {
  5157. name: "Normal",
  5158. height: math.unit(2.8, "meter"),
  5159. default: true
  5160. },
  5161. {
  5162. name: "Macro",
  5163. height: math.unit(38, "meter")
  5164. }
  5165. ]
  5166. ))
  5167. characterMakers.push(() => makeCharacter(
  5168. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5169. {
  5170. front: {
  5171. height: math.unit(470, "feet"),
  5172. weight: math.unit(924, "tons"),
  5173. name: "Front",
  5174. image: {
  5175. source: "./media/characters/angelpatamon/front.svg",
  5176. }
  5177. }
  5178. },
  5179. [
  5180. {
  5181. name: "Normal",
  5182. height: math.unit(470, "feet"),
  5183. default: true
  5184. },
  5185. {
  5186. name: "Deity Size I",
  5187. height: math.unit(28651.2, "km")
  5188. },
  5189. {
  5190. name: "Deity Size II",
  5191. height: math.unit(171907.2, "km")
  5192. }
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5197. {
  5198. side: {
  5199. height: math.unit(7.2, "meter"),
  5200. weight: math.unit(8.2, "tons"),
  5201. name: "Side",
  5202. image: {
  5203. source: "./media/characters/cryae/side.svg",
  5204. extra: 3500 / 1500
  5205. }
  5206. }
  5207. },
  5208. [
  5209. {
  5210. name: "Normal",
  5211. height: math.unit(7.2, "meter"),
  5212. default: true
  5213. }
  5214. ]
  5215. ))
  5216. characterMakers.push(() => makeCharacter(
  5217. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5218. {
  5219. front: {
  5220. height: math.unit(6, "feet"),
  5221. weight: math.unit(175, "lb"),
  5222. name: "Front",
  5223. image: {
  5224. source: "./media/characters/xera/front.svg",
  5225. extra: 2377 / 1972,
  5226. bottom: 75.5 / 2452
  5227. }
  5228. },
  5229. side: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(175, "lb"),
  5232. name: "Side",
  5233. image: {
  5234. source: "./media/characters/xera/side.svg",
  5235. extra: 2345 / 2019,
  5236. bottom: 39.7 / 2384
  5237. }
  5238. },
  5239. back: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(175, "lb"),
  5242. name: "Back",
  5243. image: {
  5244. source: "./media/characters/xera/back.svg",
  5245. extra: 2095 / 1984,
  5246. bottom: 67 / 2166
  5247. }
  5248. },
  5249. },
  5250. [
  5251. {
  5252. name: "Small",
  5253. height: math.unit(10, "feet")
  5254. },
  5255. {
  5256. name: "Macro",
  5257. height: math.unit(500, "meters"),
  5258. default: true
  5259. },
  5260. {
  5261. name: "Macro+",
  5262. height: math.unit(10, "km")
  5263. },
  5264. {
  5265. name: "Gigamacro",
  5266. height: math.unit(25000, "km")
  5267. },
  5268. {
  5269. name: "Teramacro",
  5270. height: math.unit(3e6, "km")
  5271. }
  5272. ]
  5273. ))
  5274. characterMakers.push(() => makeCharacter(
  5275. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5276. {
  5277. front: {
  5278. height: math.unit(6, "feet"),
  5279. weight: math.unit(175, "lb"),
  5280. name: "Front",
  5281. image: {
  5282. source: "./media/characters/nebula/front.svg",
  5283. extra: 2566 / 2362,
  5284. bottom: 81 / 2644
  5285. }
  5286. }
  5287. },
  5288. [
  5289. {
  5290. name: "Small",
  5291. height: math.unit(4.5, "meters")
  5292. },
  5293. {
  5294. name: "Macro",
  5295. height: math.unit(1500, "meters"),
  5296. default: true
  5297. },
  5298. {
  5299. name: "Megamacro",
  5300. height: math.unit(150, "km")
  5301. },
  5302. {
  5303. name: "Gigamacro",
  5304. height: math.unit(27000, "km")
  5305. }
  5306. ]
  5307. ))
  5308. characterMakers.push(() => makeCharacter(
  5309. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5310. {
  5311. front: {
  5312. height: math.unit(6, "feet"),
  5313. weight: math.unit(225, "lb"),
  5314. name: "Front",
  5315. image: {
  5316. source: "./media/characters/abysgar/front.svg",
  5317. extra: 1739/1614,
  5318. bottom: 71/1810
  5319. }
  5320. },
  5321. frontNsfw: {
  5322. height: math.unit(6, "feet"),
  5323. weight: math.unit(225, "lb"),
  5324. name: "Front (NSFW)",
  5325. image: {
  5326. source: "./media/characters/abysgar/front-nsfw.svg",
  5327. extra: 1739/1614,
  5328. bottom: 71/1810
  5329. }
  5330. },
  5331. back: {
  5332. height: math.unit(4.6, "feet"),
  5333. weight: math.unit(225, "lb"),
  5334. name: "Back",
  5335. image: {
  5336. source: "./media/characters/abysgar/back.svg",
  5337. extra: 1384/1327,
  5338. bottom: 0/1384
  5339. }
  5340. },
  5341. head: {
  5342. height: math.unit(1.25, "feet"),
  5343. name: "Head",
  5344. image: {
  5345. source: "./media/characters/abysgar/head.svg",
  5346. extra: 669/569,
  5347. bottom: 0/669
  5348. }
  5349. },
  5350. },
  5351. [
  5352. {
  5353. name: "Small",
  5354. height: math.unit(4.5, "meters")
  5355. },
  5356. {
  5357. name: "Macro",
  5358. height: math.unit(1250, "meters"),
  5359. default: true
  5360. },
  5361. {
  5362. name: "Megamacro",
  5363. height: math.unit(125, "km")
  5364. },
  5365. {
  5366. name: "Gigamacro",
  5367. height: math.unit(26000, "km")
  5368. }
  5369. ]
  5370. ))
  5371. characterMakers.push(() => makeCharacter(
  5372. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5373. {
  5374. front: {
  5375. height: math.unit(6, "feet"),
  5376. weight: math.unit(180, "lb"),
  5377. name: "Front",
  5378. image: {
  5379. source: "./media/characters/yakuz/front.svg"
  5380. }
  5381. }
  5382. },
  5383. [
  5384. {
  5385. name: "Small",
  5386. height: math.unit(5, "meters")
  5387. },
  5388. {
  5389. name: "Macro",
  5390. height: math.unit(1500, "meters"),
  5391. default: true
  5392. },
  5393. {
  5394. name: "Megamacro",
  5395. height: math.unit(200, "km")
  5396. },
  5397. {
  5398. name: "Gigamacro",
  5399. height: math.unit(100000, "km")
  5400. }
  5401. ]
  5402. ))
  5403. characterMakers.push(() => makeCharacter(
  5404. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5405. {
  5406. front: {
  5407. height: math.unit(6, "feet"),
  5408. weight: math.unit(175, "lb"),
  5409. name: "Front",
  5410. image: {
  5411. source: "./media/characters/mirova/front.svg",
  5412. extra: 3334 / 3071,
  5413. bottom: 42 / 3375.6
  5414. }
  5415. }
  5416. },
  5417. [
  5418. {
  5419. name: "Small",
  5420. height: math.unit(5, "meters")
  5421. },
  5422. {
  5423. name: "Macro",
  5424. height: math.unit(900, "meters"),
  5425. default: true
  5426. },
  5427. {
  5428. name: "Megamacro",
  5429. height: math.unit(135, "km")
  5430. },
  5431. {
  5432. name: "Gigamacro",
  5433. height: math.unit(20000, "km")
  5434. }
  5435. ]
  5436. ))
  5437. characterMakers.push(() => makeCharacter(
  5438. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5439. {
  5440. side: {
  5441. height: math.unit(28.35, "feet"),
  5442. weight: math.unit(99.75, "tons"),
  5443. name: "Side",
  5444. image: {
  5445. source: "./media/characters/asana-mech/side.svg",
  5446. extra: 923 / 699,
  5447. bottom: 50 / 975
  5448. }
  5449. },
  5450. chaingun: {
  5451. height: math.unit(7, "feet"),
  5452. weight: math.unit(2400, "lb"),
  5453. name: "Chaingun",
  5454. image: {
  5455. source: "./media/characters/asana-mech/chaingun.svg"
  5456. }
  5457. },
  5458. laser: {
  5459. height: math.unit(7.12, "feet"),
  5460. weight: math.unit(2000, "lb"),
  5461. name: "Laser",
  5462. image: {
  5463. source: "./media/characters/asana-mech/laser.svg"
  5464. }
  5465. },
  5466. },
  5467. [
  5468. {
  5469. name: "Normal",
  5470. height: math.unit(28.35, "feet"),
  5471. default: true
  5472. },
  5473. {
  5474. name: "Macro",
  5475. height: math.unit(2500, "feet")
  5476. },
  5477. {
  5478. name: "Megamacro",
  5479. height: math.unit(25, "miles")
  5480. },
  5481. {
  5482. name: "Examacro",
  5483. height: math.unit(6e8, "lightyears")
  5484. },
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5489. {
  5490. front: {
  5491. height: math.unit(5, "meters"),
  5492. weight: math.unit(1000, "kg"),
  5493. name: "Front",
  5494. image: {
  5495. source: "./media/characters/asche/front.svg",
  5496. extra: 1258 / 1190,
  5497. bottom: 47 / 1305
  5498. }
  5499. },
  5500. frontUnderwear: {
  5501. height: math.unit(5, "meters"),
  5502. weight: math.unit(1000, "kg"),
  5503. name: "Front (Underwear)",
  5504. image: {
  5505. source: "./media/characters/asche/front-underwear.svg",
  5506. extra: 1258 / 1190,
  5507. bottom: 47 / 1305
  5508. }
  5509. },
  5510. frontDressed: {
  5511. height: math.unit(5, "meters"),
  5512. weight: math.unit(1000, "kg"),
  5513. name: "Front (Dressed)",
  5514. image: {
  5515. source: "./media/characters/asche/front-dressed.svg",
  5516. extra: 1258 / 1190,
  5517. bottom: 47 / 1305
  5518. }
  5519. },
  5520. frontArmor: {
  5521. height: math.unit(5, "meters"),
  5522. weight: math.unit(1000, "kg"),
  5523. name: "Front (Armored)",
  5524. image: {
  5525. source: "./media/characters/asche/front-armored.svg",
  5526. extra: 1374 / 1308,
  5527. bottom: 23 / 1397
  5528. }
  5529. },
  5530. mp724: {
  5531. height: math.unit(0.96, "meters"),
  5532. weight: math.unit(38, "kg"),
  5533. name: "H&K MP724",
  5534. image: {
  5535. source: "./media/characters/asche/h&k-mp724.svg"
  5536. }
  5537. },
  5538. side: {
  5539. height: math.unit(5, "meters"),
  5540. weight: math.unit(1000, "kg"),
  5541. name: "Side",
  5542. image: {
  5543. source: "./media/characters/asche/side.svg",
  5544. extra: 1717 / 1609,
  5545. bottom: 0.005
  5546. }
  5547. },
  5548. back: {
  5549. height: math.unit(5, "meters"),
  5550. weight: math.unit(1000, "kg"),
  5551. name: "Back",
  5552. image: {
  5553. source: "./media/characters/asche/back.svg",
  5554. extra: 1570 / 1501
  5555. }
  5556. },
  5557. },
  5558. [
  5559. {
  5560. name: "DEFCON 5",
  5561. height: math.unit(5, "meters")
  5562. },
  5563. {
  5564. name: "DEFCON 4",
  5565. height: math.unit(500, "meters"),
  5566. default: true
  5567. },
  5568. {
  5569. name: "DEFCON 3",
  5570. height: math.unit(5, "km")
  5571. },
  5572. {
  5573. name: "DEFCON 2",
  5574. height: math.unit(500, "km")
  5575. },
  5576. {
  5577. name: "DEFCON 1",
  5578. height: math.unit(500000, "km")
  5579. },
  5580. {
  5581. name: "DEFCON 0",
  5582. height: math.unit(3, "gigaparsecs")
  5583. },
  5584. ]
  5585. ))
  5586. characterMakers.push(() => makeCharacter(
  5587. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5588. {
  5589. front: {
  5590. height: math.unit(7, "feet"),
  5591. weight: math.unit(92.7, "kg"),
  5592. name: "Front",
  5593. image: {
  5594. source: "./media/characters/gale/front.svg",
  5595. extra: 977/919,
  5596. bottom: 105/1082
  5597. }
  5598. },
  5599. side: {
  5600. height: math.unit(6.7, "feet"),
  5601. weight: math.unit(92.7, "kg"),
  5602. name: "Side",
  5603. image: {
  5604. source: "./media/characters/gale/side.svg",
  5605. extra: 978/922,
  5606. bottom: 140/1118
  5607. }
  5608. },
  5609. back: {
  5610. height: math.unit(7, "feet"),
  5611. weight: math.unit(92.7, "kg"),
  5612. name: "Back",
  5613. image: {
  5614. source: "./media/characters/gale/back.svg",
  5615. extra: 966/920,
  5616. bottom: 61/1027
  5617. }
  5618. },
  5619. maw: {
  5620. height: math.unit(2.23, "feet"),
  5621. name: "Maw",
  5622. image: {
  5623. source: "./media/characters/gale/maw.svg"
  5624. }
  5625. },
  5626. foot: {
  5627. height: math.unit(2.1, "feet"),
  5628. name: "Foot",
  5629. image: {
  5630. source: "./media/characters/gale/foot.svg"
  5631. }
  5632. },
  5633. },
  5634. [
  5635. {
  5636. name: "Normal",
  5637. height: math.unit(7, "feet")
  5638. },
  5639. {
  5640. name: "Macro",
  5641. height: math.unit(150, "feet"),
  5642. default: true
  5643. },
  5644. {
  5645. name: "Macro+",
  5646. height: math.unit(300, "feet")
  5647. },
  5648. ]
  5649. ))
  5650. characterMakers.push(() => makeCharacter(
  5651. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5652. {
  5653. front: {
  5654. height: math.unit(5 + 10/12, "feet"),
  5655. weight: math.unit(67, "kg"),
  5656. name: "Front",
  5657. image: {
  5658. source: "./media/characters/draylen/front.svg",
  5659. extra: 832/777,
  5660. bottom: 85/917
  5661. }
  5662. }
  5663. },
  5664. [
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(5 + 10/12, "feet")
  5668. },
  5669. {
  5670. name: "Macro",
  5671. height: math.unit(150, "feet"),
  5672. default: true
  5673. }
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5678. {
  5679. front: {
  5680. height: math.unit(7 + 9 / 12, "feet"),
  5681. weight: math.unit(379, "lbs"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/chez/front.svg"
  5685. }
  5686. },
  5687. side: {
  5688. height: math.unit(7 + 9 / 12, "feet"),
  5689. weight: math.unit(379, "lbs"),
  5690. name: "Side",
  5691. image: {
  5692. source: "./media/characters/chez/side.svg"
  5693. }
  5694. }
  5695. },
  5696. [
  5697. {
  5698. name: "Normal",
  5699. height: math.unit(7 + 9 / 12, "feet"),
  5700. default: true
  5701. },
  5702. {
  5703. name: "God King",
  5704. height: math.unit(9750000, "meters")
  5705. }
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5710. {
  5711. front: {
  5712. height: math.unit(6, "feet"),
  5713. weight: math.unit(275, "lbs"),
  5714. name: "Front",
  5715. image: {
  5716. source: "./media/characters/kaylum/front.svg",
  5717. bottom: 0.01,
  5718. extra: 1166 / 1031
  5719. }
  5720. },
  5721. frontWingless: {
  5722. height: math.unit(6, "feet"),
  5723. weight: math.unit(275, "lbs"),
  5724. name: "Front (Wingless)",
  5725. image: {
  5726. source: "./media/characters/kaylum/front-wingless.svg",
  5727. bottom: 0.01,
  5728. extra: 1117 / 1031
  5729. }
  5730. }
  5731. },
  5732. [
  5733. {
  5734. name: "Normal",
  5735. height: math.unit(3.05, "meters")
  5736. },
  5737. {
  5738. name: "Master",
  5739. height: math.unit(5.5, "meters")
  5740. },
  5741. {
  5742. name: "Rampage",
  5743. height: math.unit(19, "meters")
  5744. },
  5745. {
  5746. name: "Macro Lite",
  5747. height: math.unit(37, "meters")
  5748. },
  5749. {
  5750. name: "Hyper Predator",
  5751. height: math.unit(61, "meters")
  5752. },
  5753. {
  5754. name: "Macro",
  5755. height: math.unit(138, "meters"),
  5756. default: true
  5757. }
  5758. ]
  5759. ))
  5760. characterMakers.push(() => makeCharacter(
  5761. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5762. {
  5763. front: {
  5764. height: math.unit(5 + 5 / 12, "feet"),
  5765. weight: math.unit(120, "lbs"),
  5766. name: "Front",
  5767. image: {
  5768. source: "./media/characters/geta/front.svg",
  5769. extra: 1003/933,
  5770. bottom: 21/1024
  5771. }
  5772. },
  5773. paw: {
  5774. height: math.unit(0.35, "feet"),
  5775. name: "Paw",
  5776. image: {
  5777. source: "./media/characters/geta/paw.svg"
  5778. }
  5779. },
  5780. },
  5781. [
  5782. {
  5783. name: "Micro",
  5784. height: math.unit(3, "inches"),
  5785. default: true
  5786. },
  5787. {
  5788. name: "Normal",
  5789. height: math.unit(5 + 5 / 12, "feet")
  5790. }
  5791. ]
  5792. ))
  5793. characterMakers.push(() => makeCharacter(
  5794. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5795. {
  5796. front: {
  5797. height: math.unit(6, "feet"),
  5798. weight: math.unit(300, "lbs"),
  5799. name: "Front",
  5800. image: {
  5801. source: "./media/characters/tyrnn/front.svg"
  5802. }
  5803. }
  5804. },
  5805. [
  5806. {
  5807. name: "Main Height",
  5808. height: math.unit(355, "feet"),
  5809. default: true
  5810. },
  5811. {
  5812. name: "Fave. Height",
  5813. height: math.unit(2400, "feet")
  5814. }
  5815. ]
  5816. ))
  5817. characterMakers.push(() => makeCharacter(
  5818. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5819. {
  5820. front: {
  5821. height: math.unit(6, "feet"),
  5822. weight: math.unit(300, "lbs"),
  5823. name: "Front",
  5824. image: {
  5825. source: "./media/characters/appledectomy/front.svg"
  5826. }
  5827. }
  5828. },
  5829. [
  5830. {
  5831. name: "Macro",
  5832. height: math.unit(2500, "feet")
  5833. },
  5834. {
  5835. name: "Megamacro",
  5836. height: math.unit(50, "miles"),
  5837. default: true
  5838. },
  5839. {
  5840. name: "Gigamacro",
  5841. height: math.unit(5000, "miles")
  5842. },
  5843. {
  5844. name: "Teramacro",
  5845. height: math.unit(250000, "miles")
  5846. },
  5847. ]
  5848. ))
  5849. characterMakers.push(() => makeCharacter(
  5850. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5851. {
  5852. front: {
  5853. height: math.unit(6, "feet"),
  5854. weight: math.unit(200, "lbs"),
  5855. name: "Front",
  5856. image: {
  5857. source: "./media/characters/vulpes/front.svg",
  5858. extra: 573 / 543,
  5859. bottom: 0.033
  5860. }
  5861. },
  5862. side: {
  5863. height: math.unit(6, "feet"),
  5864. weight: math.unit(200, "lbs"),
  5865. name: "Side",
  5866. image: {
  5867. source: "./media/characters/vulpes/side.svg",
  5868. extra: 577 / 549,
  5869. bottom: 11 / 588
  5870. }
  5871. },
  5872. back: {
  5873. height: math.unit(6, "feet"),
  5874. weight: math.unit(200, "lbs"),
  5875. name: "Back",
  5876. image: {
  5877. source: "./media/characters/vulpes/back.svg",
  5878. extra: 573 / 549,
  5879. bottom: 20 / 593
  5880. }
  5881. },
  5882. feet: {
  5883. height: math.unit(1.276, "feet"),
  5884. name: "Feet",
  5885. image: {
  5886. source: "./media/characters/vulpes/feet.svg"
  5887. }
  5888. },
  5889. maw: {
  5890. height: math.unit(1.18, "feet"),
  5891. name: "Maw",
  5892. image: {
  5893. source: "./media/characters/vulpes/maw.svg"
  5894. }
  5895. },
  5896. },
  5897. [
  5898. {
  5899. name: "Micro",
  5900. height: math.unit(2, "inches")
  5901. },
  5902. {
  5903. name: "Normal",
  5904. height: math.unit(6.3, "feet")
  5905. },
  5906. {
  5907. name: "Macro",
  5908. height: math.unit(850, "feet")
  5909. },
  5910. {
  5911. name: "Megamacro",
  5912. height: math.unit(7500, "feet"),
  5913. default: true
  5914. },
  5915. {
  5916. name: "Gigamacro",
  5917. height: math.unit(570000, "miles")
  5918. }
  5919. ]
  5920. ))
  5921. characterMakers.push(() => makeCharacter(
  5922. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5923. {
  5924. front: {
  5925. height: math.unit(6, "feet"),
  5926. weight: math.unit(210, "lbs"),
  5927. name: "Front",
  5928. image: {
  5929. source: "./media/characters/rain-fallen/front.svg"
  5930. }
  5931. },
  5932. side: {
  5933. height: math.unit(6, "feet"),
  5934. weight: math.unit(210, "lbs"),
  5935. name: "Side",
  5936. image: {
  5937. source: "./media/characters/rain-fallen/side.svg"
  5938. }
  5939. },
  5940. back: {
  5941. height: math.unit(6, "feet"),
  5942. weight: math.unit(210, "lbs"),
  5943. name: "Back",
  5944. image: {
  5945. source: "./media/characters/rain-fallen/back.svg"
  5946. }
  5947. },
  5948. feral: {
  5949. height: math.unit(9, "feet"),
  5950. weight: math.unit(700, "lbs"),
  5951. name: "Feral",
  5952. image: {
  5953. source: "./media/characters/rain-fallen/feral.svg"
  5954. }
  5955. },
  5956. },
  5957. [
  5958. {
  5959. name: "Meddling with Mortals",
  5960. height: math.unit(8 + 8/12, "feet")
  5961. },
  5962. {
  5963. name: "Normal",
  5964. height: math.unit(5, "meter")
  5965. },
  5966. {
  5967. name: "Macro",
  5968. height: math.unit(150, "meter"),
  5969. default: true
  5970. },
  5971. {
  5972. name: "Megamacro",
  5973. height: math.unit(278e6, "meter")
  5974. },
  5975. {
  5976. name: "Gigamacro",
  5977. height: math.unit(2e9, "meter")
  5978. },
  5979. {
  5980. name: "Teramacro",
  5981. height: math.unit(8e12, "meter")
  5982. },
  5983. {
  5984. name: "Devourer",
  5985. height: math.unit(14, "zettameters")
  5986. },
  5987. {
  5988. name: "Scarlet King",
  5989. height: math.unit(18, "yottameters")
  5990. },
  5991. {
  5992. name: "Void",
  5993. height: math.unit(1e88, "yottameters")
  5994. }
  5995. ]
  5996. ))
  5997. characterMakers.push(() => makeCharacter(
  5998. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5999. {
  6000. standing: {
  6001. height: math.unit(6, "feet"),
  6002. weight: math.unit(180, "lbs"),
  6003. name: "Standing",
  6004. image: {
  6005. source: "./media/characters/zaakira/standing.svg",
  6006. extra: 1599/1504,
  6007. bottom: 39/1638
  6008. }
  6009. },
  6010. laying: {
  6011. height: math.unit(3.3, "feet"),
  6012. weight: math.unit(180, "lbs"),
  6013. name: "Laying",
  6014. image: {
  6015. source: "./media/characters/zaakira/laying.svg"
  6016. }
  6017. },
  6018. },
  6019. [
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(12, "feet")
  6023. },
  6024. {
  6025. name: "Macro",
  6026. height: math.unit(279, "feet"),
  6027. default: true
  6028. }
  6029. ]
  6030. ))
  6031. characterMakers.push(() => makeCharacter(
  6032. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6033. {
  6034. femSfw: {
  6035. height: math.unit(8, "feet"),
  6036. weight: math.unit(350, "lb"),
  6037. name: "Fem",
  6038. image: {
  6039. source: "./media/characters/sigvald/fem-sfw.svg",
  6040. extra: 182 / 164,
  6041. bottom: 8.7 / 190.5
  6042. }
  6043. },
  6044. femNsfw: {
  6045. height: math.unit(8, "feet"),
  6046. weight: math.unit(350, "lb"),
  6047. name: "Fem (NSFW)",
  6048. image: {
  6049. source: "./media/characters/sigvald/fem-nsfw.svg",
  6050. extra: 182 / 164,
  6051. bottom: 8.7 / 190.5
  6052. }
  6053. },
  6054. maleNsfw: {
  6055. height: math.unit(8, "feet"),
  6056. weight: math.unit(350, "lb"),
  6057. name: "Male (NSFW)",
  6058. image: {
  6059. source: "./media/characters/sigvald/male-nsfw.svg",
  6060. extra: 182 / 164,
  6061. bottom: 8.7 / 190.5
  6062. }
  6063. },
  6064. hermNsfw: {
  6065. height: math.unit(8, "feet"),
  6066. weight: math.unit(350, "lb"),
  6067. name: "Herm (NSFW)",
  6068. image: {
  6069. source: "./media/characters/sigvald/herm-nsfw.svg",
  6070. extra: 182 / 164,
  6071. bottom: 8.7 / 190.5
  6072. }
  6073. },
  6074. dick: {
  6075. height: math.unit(2.36, "feet"),
  6076. name: "Dick",
  6077. image: {
  6078. source: "./media/characters/sigvald/dick.svg"
  6079. }
  6080. },
  6081. eye: {
  6082. height: math.unit(0.31, "feet"),
  6083. name: "Eye",
  6084. image: {
  6085. source: "./media/characters/sigvald/eye.svg"
  6086. }
  6087. },
  6088. mouth: {
  6089. height: math.unit(0.92, "feet"),
  6090. name: "Mouth",
  6091. image: {
  6092. source: "./media/characters/sigvald/mouth.svg"
  6093. }
  6094. },
  6095. paws: {
  6096. height: math.unit(2.2, "feet"),
  6097. name: "Paws",
  6098. image: {
  6099. source: "./media/characters/sigvald/paws.svg"
  6100. }
  6101. }
  6102. },
  6103. [
  6104. {
  6105. name: "Normal",
  6106. height: math.unit(8, "feet")
  6107. },
  6108. {
  6109. name: "Large",
  6110. height: math.unit(12, "feet")
  6111. },
  6112. {
  6113. name: "Larger",
  6114. height: math.unit(20, "feet")
  6115. },
  6116. {
  6117. name: "Macro",
  6118. height: math.unit(150, "feet")
  6119. },
  6120. {
  6121. name: "Macro+",
  6122. height: math.unit(200, "feet"),
  6123. default: true
  6124. },
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6129. {
  6130. anthro_front: {
  6131. height: math.unit(5 + 11/12, "feet"),
  6132. weight: math.unit(250, "lb"),
  6133. name: "Front",
  6134. image: {
  6135. source: "./media/characters/scott/anthro-front.svg",
  6136. extra: 851/781,
  6137. bottom: 54/905
  6138. },
  6139. form: "anthro",
  6140. default: true
  6141. },
  6142. anthro_side: {
  6143. height: math.unit(5.1, "feet"),
  6144. weight: math.unit(250, "lb"),
  6145. name: "Side",
  6146. image: {
  6147. source: "./media/characters/scott/anthro-side.svg"
  6148. },
  6149. form: "anthro",
  6150. },
  6151. anthro_dick: {
  6152. height: math.unit(1.33, "feet"),
  6153. name: "Dick",
  6154. image: {
  6155. source: "./media/characters/scott/anthro-dick.svg"
  6156. },
  6157. form: "anthro",
  6158. },
  6159. side: {
  6160. height: math.unit(12, "feet"),
  6161. weight: math.unit(2000, "kg"),
  6162. name: "Side",
  6163. image: {
  6164. source: "./media/characters/scott/side.svg",
  6165. extra: 754 / 724,
  6166. bottom: 0.069
  6167. },
  6168. form: "taur",
  6169. default: true
  6170. },
  6171. upright: {
  6172. height: math.unit(12, "feet"),
  6173. weight: math.unit(2000, "kg"),
  6174. name: "Upright",
  6175. image: {
  6176. source: "./media/characters/scott/upright.svg",
  6177. extra: 3881 / 3722,
  6178. bottom: 0.05
  6179. },
  6180. form: "taur",
  6181. },
  6182. },
  6183. [
  6184. {
  6185. name: "Normal",
  6186. height: math.unit(5 + 11/12, "feet"),
  6187. default: true,
  6188. form: "anthro"
  6189. },
  6190. {
  6191. name: "Normal",
  6192. height: math.unit(12, "feet"),
  6193. default: true,
  6194. form: "taur"
  6195. },
  6196. ],
  6197. {
  6198. "anthro": {
  6199. name: "Anthro",
  6200. default: true
  6201. },
  6202. "taur": {
  6203. name: "Taur",
  6204. },
  6205. }
  6206. ))
  6207. characterMakers.push(() => makeCharacter(
  6208. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6209. {
  6210. side: {
  6211. height: math.unit(8, "meters"),
  6212. weight: math.unit(84755, "lbs"),
  6213. name: "Side",
  6214. image: {
  6215. source: "./media/characters/tobias/side.svg",
  6216. extra: 1474 / 1096,
  6217. bottom: 38.9 / 1513.1235
  6218. }
  6219. },
  6220. maw: {
  6221. height: math.unit(2.3, "meters"),
  6222. name: "Maw",
  6223. image: {
  6224. source: "./media/characters/tobias/maw.svg"
  6225. }
  6226. },
  6227. burp: {
  6228. height: math.unit(2.85, "meters"),
  6229. name: "Burp",
  6230. image: {
  6231. source: "./media/characters/tobias/burp.svg"
  6232. }
  6233. },
  6234. },
  6235. [
  6236. {
  6237. name: "Normal",
  6238. height: math.unit(8, "meters"),
  6239. default: true
  6240. },
  6241. ]
  6242. ))
  6243. characterMakers.push(() => makeCharacter(
  6244. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6245. {
  6246. front: {
  6247. height: math.unit(5.5, "feet"),
  6248. weight: math.unit(400, "lbs"),
  6249. name: "Front",
  6250. image: {
  6251. source: "./media/characters/kieran/front.svg",
  6252. extra: 2694 / 2364,
  6253. bottom: 217 / 2908
  6254. }
  6255. },
  6256. side: {
  6257. height: math.unit(5.5, "feet"),
  6258. weight: math.unit(400, "lbs"),
  6259. name: "Side",
  6260. image: {
  6261. source: "./media/characters/kieran/side.svg",
  6262. extra: 875 / 777,
  6263. bottom: 84.6 / 959
  6264. }
  6265. },
  6266. },
  6267. [
  6268. {
  6269. name: "Normal",
  6270. height: math.unit(5.5, "feet"),
  6271. default: true
  6272. },
  6273. ]
  6274. ))
  6275. characterMakers.push(() => makeCharacter(
  6276. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6277. {
  6278. side: {
  6279. height: math.unit(2, "meters"),
  6280. weight: math.unit(70, "kg"),
  6281. name: "Side",
  6282. image: {
  6283. source: "./media/characters/sanya/side.svg",
  6284. bottom: 0.02,
  6285. extra: 1.02
  6286. }
  6287. },
  6288. },
  6289. [
  6290. {
  6291. name: "Small",
  6292. height: math.unit(2, "meters")
  6293. },
  6294. {
  6295. name: "Normal",
  6296. height: math.unit(3, "meters")
  6297. },
  6298. {
  6299. name: "Macro",
  6300. height: math.unit(16, "meters"),
  6301. default: true
  6302. },
  6303. ]
  6304. ))
  6305. characterMakers.push(() => makeCharacter(
  6306. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6307. {
  6308. front: {
  6309. height: math.unit(2, "meters"),
  6310. weight: math.unit(120, "kg"),
  6311. name: "Front",
  6312. image: {
  6313. source: "./media/characters/miranda/front.svg",
  6314. extra: 195 / 185,
  6315. bottom: 10.9 / 206.5
  6316. }
  6317. },
  6318. back: {
  6319. height: math.unit(2, "meters"),
  6320. weight: math.unit(120, "kg"),
  6321. name: "Back",
  6322. image: {
  6323. source: "./media/characters/miranda/back.svg",
  6324. extra: 201 / 193,
  6325. bottom: 2.3 / 203.7
  6326. }
  6327. },
  6328. },
  6329. [
  6330. {
  6331. name: "Normal",
  6332. height: math.unit(10, "feet"),
  6333. default: true
  6334. }
  6335. ]
  6336. ))
  6337. characterMakers.push(() => makeCharacter(
  6338. { name: "James", species: ["deer"], tags: ["anthro"] },
  6339. {
  6340. side: {
  6341. height: math.unit(2, "meters"),
  6342. weight: math.unit(100, "kg"),
  6343. name: "Front",
  6344. image: {
  6345. source: "./media/characters/james/front.svg",
  6346. extra: 10 / 8.5
  6347. }
  6348. },
  6349. },
  6350. [
  6351. {
  6352. name: "Normal",
  6353. height: math.unit(8.5, "feet"),
  6354. default: true
  6355. }
  6356. ]
  6357. ))
  6358. characterMakers.push(() => makeCharacter(
  6359. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6360. {
  6361. side: {
  6362. height: math.unit(9.5, "feet"),
  6363. weight: math.unit(2500, "lbs"),
  6364. name: "Side",
  6365. image: {
  6366. source: "./media/characters/heather/side.svg"
  6367. }
  6368. },
  6369. },
  6370. [
  6371. {
  6372. name: "Normal",
  6373. height: math.unit(9.5, "feet"),
  6374. default: true
  6375. }
  6376. ]
  6377. ))
  6378. characterMakers.push(() => makeCharacter(
  6379. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6380. {
  6381. side: {
  6382. height: math.unit(6.5, "feet"),
  6383. weight: math.unit(400, "lbs"),
  6384. name: "Side",
  6385. image: {
  6386. source: "./media/characters/lukas/side.svg",
  6387. extra: 7.25 / 6.5
  6388. }
  6389. },
  6390. },
  6391. [
  6392. {
  6393. name: "Normal",
  6394. height: math.unit(6.5, "feet"),
  6395. default: true
  6396. }
  6397. ]
  6398. ))
  6399. characterMakers.push(() => makeCharacter(
  6400. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6401. {
  6402. side: {
  6403. height: math.unit(5, "feet"),
  6404. weight: math.unit(3000, "lbs"),
  6405. name: "Side",
  6406. image: {
  6407. source: "./media/characters/louise/side.svg"
  6408. }
  6409. },
  6410. },
  6411. [
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(5, "feet"),
  6415. default: true
  6416. }
  6417. ]
  6418. ))
  6419. characterMakers.push(() => makeCharacter(
  6420. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6421. {
  6422. side: {
  6423. height: math.unit(6, "feet"),
  6424. weight: math.unit(150, "lbs"),
  6425. name: "Side",
  6426. image: {
  6427. source: "./media/characters/ramona/side.svg",
  6428. extra: 871/854,
  6429. bottom: 41/912
  6430. }
  6431. },
  6432. },
  6433. [
  6434. {
  6435. name: "Normal",
  6436. height: math.unit(6 + 4/12, "feet")
  6437. },
  6438. {
  6439. name: "Minimacro",
  6440. height: math.unit(5.3, "meters"),
  6441. default: true
  6442. },
  6443. {
  6444. name: "Macro",
  6445. height: math.unit(20, "stories")
  6446. },
  6447. {
  6448. name: "Macro+",
  6449. height: math.unit(50, "stories")
  6450. },
  6451. ]
  6452. ))
  6453. characterMakers.push(() => makeCharacter(
  6454. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6455. {
  6456. standing: {
  6457. height: math.unit(5.75, "feet"),
  6458. weight: math.unit(160, "lbs"),
  6459. name: "Standing",
  6460. image: {
  6461. source: "./media/characters/deerpuff/standing.svg",
  6462. extra: 682 / 624
  6463. }
  6464. },
  6465. sitting: {
  6466. height: math.unit(5.75 / 1.79, "feet"),
  6467. weight: math.unit(160, "lbs"),
  6468. name: "Sitting",
  6469. image: {
  6470. source: "./media/characters/deerpuff/sitting.svg",
  6471. bottom: 44 / 400,
  6472. extra: 1
  6473. }
  6474. },
  6475. taurLaying: {
  6476. height: math.unit(6, "feet"),
  6477. weight: math.unit(400, "lbs"),
  6478. name: "Taur (Laying)",
  6479. image: {
  6480. source: "./media/characters/deerpuff/taur-laying.svg"
  6481. }
  6482. },
  6483. },
  6484. [
  6485. {
  6486. name: "Puffball",
  6487. height: math.unit(6, "inches")
  6488. },
  6489. {
  6490. name: "Normalpuff",
  6491. height: math.unit(5.75, "feet")
  6492. },
  6493. {
  6494. name: "Macropuff",
  6495. height: math.unit(1500, "feet"),
  6496. default: true
  6497. },
  6498. {
  6499. name: "Megapuff",
  6500. height: math.unit(500, "miles")
  6501. },
  6502. {
  6503. name: "Gigapuff",
  6504. height: math.unit(250000, "miles")
  6505. },
  6506. {
  6507. name: "Omegapuff",
  6508. height: math.unit(1000, "lightyears")
  6509. },
  6510. ]
  6511. ))
  6512. characterMakers.push(() => makeCharacter(
  6513. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6514. {
  6515. stomping: {
  6516. height: math.unit(6, "feet"),
  6517. weight: math.unit(170, "lbs"),
  6518. name: "Stomping",
  6519. image: {
  6520. source: "./media/characters/vivian/stomping.svg"
  6521. }
  6522. },
  6523. sitting: {
  6524. height: math.unit(6 / 1.75, "feet"),
  6525. weight: math.unit(170, "lbs"),
  6526. name: "Sitting",
  6527. image: {
  6528. source: "./media/characters/vivian/sitting.svg",
  6529. bottom: 1 / 6.4,
  6530. extra: 1,
  6531. }
  6532. },
  6533. },
  6534. [
  6535. {
  6536. name: "Normal",
  6537. height: math.unit(7, "feet"),
  6538. default: true
  6539. },
  6540. {
  6541. name: "Macro",
  6542. height: math.unit(10, "stories")
  6543. },
  6544. {
  6545. name: "Macro+",
  6546. height: math.unit(30, "stories")
  6547. },
  6548. {
  6549. name: "Megamacro",
  6550. height: math.unit(10, "miles")
  6551. },
  6552. {
  6553. name: "Megamacro+",
  6554. height: math.unit(2750000, "meters")
  6555. },
  6556. ]
  6557. ))
  6558. characterMakers.push(() => makeCharacter(
  6559. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6560. {
  6561. front: {
  6562. height: math.unit(6, "feet"),
  6563. weight: math.unit(160, "lbs"),
  6564. name: "Front",
  6565. image: {
  6566. source: "./media/characters/prince/front.svg",
  6567. extra: 1938/1682,
  6568. bottom: 45/1983
  6569. }
  6570. },
  6571. back: {
  6572. height: math.unit(6, "feet"),
  6573. weight: math.unit(160, "lbs"),
  6574. name: "Back",
  6575. image: {
  6576. source: "./media/characters/prince/back.svg",
  6577. extra: 1955/1726,
  6578. bottom: 6/1961
  6579. }
  6580. },
  6581. },
  6582. [
  6583. {
  6584. name: "Normal",
  6585. height: math.unit(7.75, "feet"),
  6586. default: true
  6587. },
  6588. {
  6589. name: "Not cute",
  6590. height: math.unit(17, "feet")
  6591. },
  6592. {
  6593. name: "I said NOT",
  6594. height: math.unit(91, "feet")
  6595. },
  6596. {
  6597. name: "Please stop",
  6598. height: math.unit(560, "feet")
  6599. },
  6600. {
  6601. name: "What have you done",
  6602. height: math.unit(2200, "feet")
  6603. },
  6604. {
  6605. name: "Deer God",
  6606. height: math.unit(3.6, "miles")
  6607. },
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6612. {
  6613. standing: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(300, "lbs"),
  6616. name: "Standing",
  6617. image: {
  6618. source: "./media/characters/psymon/standing.svg",
  6619. extra: 1888 / 1810,
  6620. bottom: 0.05
  6621. }
  6622. },
  6623. slithering: {
  6624. height: math.unit(6, "feet"),
  6625. weight: math.unit(300, "lbs"),
  6626. name: "Slithering",
  6627. image: {
  6628. source: "./media/characters/psymon/slithering.svg",
  6629. extra: 1330 / 1224
  6630. }
  6631. },
  6632. slitheringAlt: {
  6633. height: math.unit(6, "feet"),
  6634. weight: math.unit(300, "lbs"),
  6635. name: "Slithering (Alt)",
  6636. image: {
  6637. source: "./media/characters/psymon/slithering-alt.svg",
  6638. extra: 1330 / 1224
  6639. }
  6640. },
  6641. },
  6642. [
  6643. {
  6644. name: "Normal",
  6645. height: math.unit(11.25, "feet"),
  6646. default: true
  6647. },
  6648. {
  6649. name: "Large",
  6650. height: math.unit(27, "feet")
  6651. },
  6652. {
  6653. name: "Giant",
  6654. height: math.unit(87, "feet")
  6655. },
  6656. {
  6657. name: "Macro",
  6658. height: math.unit(365, "feet")
  6659. },
  6660. {
  6661. name: "Megamacro",
  6662. height: math.unit(3, "miles")
  6663. },
  6664. {
  6665. name: "World Serpent",
  6666. height: math.unit(8000, "miles")
  6667. },
  6668. ]
  6669. ))
  6670. characterMakers.push(() => makeCharacter(
  6671. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6672. {
  6673. front: {
  6674. height: math.unit(6, "feet"),
  6675. weight: math.unit(180, "lbs"),
  6676. name: "Front",
  6677. image: {
  6678. source: "./media/characters/daimos/front.svg",
  6679. extra: 4160 / 3897,
  6680. bottom: 0.021
  6681. }
  6682. }
  6683. },
  6684. [
  6685. {
  6686. name: "Normal",
  6687. height: math.unit(8, "feet"),
  6688. default: true
  6689. },
  6690. {
  6691. name: "Big Dog",
  6692. height: math.unit(22, "feet")
  6693. },
  6694. {
  6695. name: "Macro",
  6696. height: math.unit(127, "feet")
  6697. },
  6698. {
  6699. name: "Megamacro",
  6700. height: math.unit(3600, "feet")
  6701. },
  6702. ]
  6703. ))
  6704. characterMakers.push(() => makeCharacter(
  6705. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6706. {
  6707. side: {
  6708. height: math.unit(6, "feet"),
  6709. weight: math.unit(180, "lbs"),
  6710. name: "Side",
  6711. image: {
  6712. source: "./media/characters/blake/side.svg",
  6713. extra: 1212 / 1120,
  6714. bottom: 0.05
  6715. }
  6716. },
  6717. crouched: {
  6718. height: math.unit(6 * 0.57, "feet"),
  6719. weight: math.unit(180, "lbs"),
  6720. name: "Crouched",
  6721. image: {
  6722. source: "./media/characters/blake/crouched.svg",
  6723. extra: 840 / 587,
  6724. bottom: 0.04
  6725. }
  6726. },
  6727. bent: {
  6728. height: math.unit(6 * 0.75, "feet"),
  6729. weight: math.unit(180, "lbs"),
  6730. name: "Bent",
  6731. image: {
  6732. source: "./media/characters/blake/bent.svg",
  6733. extra: 592 / 544,
  6734. bottom: 0.035
  6735. }
  6736. },
  6737. },
  6738. [
  6739. {
  6740. name: "Normal",
  6741. height: math.unit(8 + 1 / 6, "feet"),
  6742. default: true
  6743. },
  6744. {
  6745. name: "Big Backside",
  6746. height: math.unit(37, "feet")
  6747. },
  6748. {
  6749. name: "Subway Shredder",
  6750. height: math.unit(72, "feet")
  6751. },
  6752. {
  6753. name: "City Carver",
  6754. height: math.unit(1675, "feet")
  6755. },
  6756. {
  6757. name: "Tectonic Tweaker",
  6758. height: math.unit(2300, "miles")
  6759. },
  6760. ]
  6761. ))
  6762. characterMakers.push(() => makeCharacter(
  6763. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6764. {
  6765. front: {
  6766. height: math.unit(6, "feet"),
  6767. weight: math.unit(180, "lbs"),
  6768. name: "Front",
  6769. image: {
  6770. source: "./media/characters/guisetto/front.svg",
  6771. extra: 856 / 817,
  6772. bottom: 0.06
  6773. }
  6774. },
  6775. airborne: {
  6776. height: math.unit(6, "feet"),
  6777. weight: math.unit(180, "lbs"),
  6778. name: "Airborne",
  6779. image: {
  6780. source: "./media/characters/guisetto/airborne.svg",
  6781. extra: 584 / 525
  6782. }
  6783. },
  6784. },
  6785. [
  6786. {
  6787. name: "Normal",
  6788. height: math.unit(10 + 11 / 12, "feet"),
  6789. default: true
  6790. },
  6791. {
  6792. name: "Large",
  6793. height: math.unit(35, "feet")
  6794. },
  6795. {
  6796. name: "Macro",
  6797. height: math.unit(475, "feet")
  6798. },
  6799. ]
  6800. ))
  6801. characterMakers.push(() => makeCharacter(
  6802. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6803. {
  6804. front: {
  6805. height: math.unit(6, "feet"),
  6806. weight: math.unit(180, "lbs"),
  6807. name: "Front",
  6808. image: {
  6809. source: "./media/characters/luxor/front.svg",
  6810. extra: 2940 / 2152
  6811. }
  6812. },
  6813. back: {
  6814. height: math.unit(6, "feet"),
  6815. weight: math.unit(180, "lbs"),
  6816. name: "Back",
  6817. image: {
  6818. source: "./media/characters/luxor/back.svg",
  6819. extra: 1083 / 960
  6820. }
  6821. },
  6822. },
  6823. [
  6824. {
  6825. name: "Normal",
  6826. height: math.unit(5 + 5 / 6, "feet"),
  6827. default: true
  6828. },
  6829. {
  6830. name: "Lamp",
  6831. height: math.unit(50, "feet")
  6832. },
  6833. {
  6834. name: "Lämp",
  6835. height: math.unit(300, "feet")
  6836. },
  6837. {
  6838. name: "The sun is a lamp",
  6839. height: math.unit(250000, "miles")
  6840. },
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6845. {
  6846. front: {
  6847. height: math.unit(6, "feet"),
  6848. weight: math.unit(50, "lbs"),
  6849. name: "Front",
  6850. image: {
  6851. source: "./media/characters/huoyan/front.svg"
  6852. }
  6853. },
  6854. side: {
  6855. height: math.unit(6, "feet"),
  6856. weight: math.unit(180, "lbs"),
  6857. name: "Side",
  6858. image: {
  6859. source: "./media/characters/huoyan/side.svg"
  6860. }
  6861. },
  6862. },
  6863. [
  6864. {
  6865. name: "Chef",
  6866. height: math.unit(9, "feet")
  6867. },
  6868. {
  6869. name: "Normal",
  6870. height: math.unit(65, "feet"),
  6871. default: true
  6872. },
  6873. {
  6874. name: "Macro",
  6875. height: math.unit(780, "feet")
  6876. },
  6877. {
  6878. name: "Flaming Mountain",
  6879. height: math.unit(4.8, "miles")
  6880. },
  6881. {
  6882. name: "Celestial",
  6883. height: math.unit(765000, "miles")
  6884. },
  6885. ]
  6886. ))
  6887. characterMakers.push(() => makeCharacter(
  6888. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6889. {
  6890. front: {
  6891. height: math.unit(5 + 3 / 4, "feet"),
  6892. weight: math.unit(120, "lbs"),
  6893. name: "Front",
  6894. image: {
  6895. source: "./media/characters/tails/front.svg"
  6896. }
  6897. }
  6898. },
  6899. [
  6900. {
  6901. name: "Normal",
  6902. height: math.unit(5 + 3 / 4, "feet"),
  6903. default: true
  6904. }
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6909. {
  6910. front: {
  6911. height: math.unit(4, "feet"),
  6912. weight: math.unit(50, "lbs"),
  6913. name: "Front",
  6914. image: {
  6915. source: "./media/characters/rainy/front.svg"
  6916. }
  6917. }
  6918. },
  6919. [
  6920. {
  6921. name: "Macro",
  6922. height: math.unit(800, "feet"),
  6923. default: true
  6924. }
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(6, "feet"),
  6932. weight: math.unit(150, "lbs"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/rainier/front.svg"
  6936. }
  6937. }
  6938. },
  6939. [
  6940. {
  6941. name: "Micro",
  6942. height: math.unit(2, "mm"),
  6943. default: true
  6944. }
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(8 + 4/12, "feet"),
  6952. weight: math.unit(450, "kilograms"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/andy-renard/front.svg",
  6956. extra: 862/809,
  6957. bottom: 85/947
  6958. },
  6959. extraAttributes: {
  6960. "pawSize": {
  6961. name: "Paw Size",
  6962. power: 2,
  6963. type: "area",
  6964. base: math.unit(0.45*0.3, "meters^2")
  6965. },
  6966. "handSize": {
  6967. name: "Hand Size",
  6968. power: 2,
  6969. type: "area",
  6970. base: math.unit(0.4 * 0.3, "meters^2")
  6971. },
  6972. "cockSize": {
  6973. name: "Cock Length",
  6974. power: 1,
  6975. type: "length",
  6976. base: math.unit(0.75, "meters")
  6977. },
  6978. "ballDiameter": {
  6979. name: "Ball Diameter",
  6980. power: 1,
  6981. type: "length",
  6982. base: math.unit(0.3, "meters")
  6983. },
  6984. "ballVolume": {
  6985. name: "Ball Volume",
  6986. power: 3,
  6987. type: "volume",
  6988. base: math.unit(0.01413716694, "meters^3")
  6989. },
  6990. }
  6991. },
  6992. back: {
  6993. height: math.unit(8 + 4/12, "feet"),
  6994. weight: math.unit(450, "kilograms"),
  6995. name: "Back",
  6996. image: {
  6997. source: "./media/characters/andy-renard/back.svg",
  6998. extra: 1112/1033,
  6999. bottom: 64/1176
  7000. },
  7001. extraAttributes: {
  7002. "pawSize": {
  7003. name: "Paw Size",
  7004. power: 2,
  7005. type: "area",
  7006. base: math.unit(0.45*0.3, "meters^2")
  7007. },
  7008. "handSize": {
  7009. name: "Hand Size",
  7010. power: 2,
  7011. type: "area",
  7012. base: math.unit(0.4 * 0.3, "meters^2")
  7013. },
  7014. "cockSize": {
  7015. name: "Cock Length",
  7016. power: 1,
  7017. type: "length",
  7018. base: math.unit(0.75, "meters")
  7019. },
  7020. "ballDiameter": {
  7021. name: "Ball Diameter",
  7022. power: 1,
  7023. type: "length",
  7024. base: math.unit(0.3, "meters")
  7025. },
  7026. "ballVolume": {
  7027. name: "Ball Volume",
  7028. power: 3,
  7029. type: "volume",
  7030. base: math.unit(0.01413716694, "meters^3")
  7031. },
  7032. }
  7033. },
  7034. },
  7035. [
  7036. {
  7037. name: "Tall",
  7038. height: math.unit(6 + 8/12, "feet")
  7039. },
  7040. {
  7041. name: "Very Tall",
  7042. height: math.unit(8 + 4/12, "feet")
  7043. },
  7044. {
  7045. name: "Mini Macro",
  7046. height: math.unit(15, "feet"),
  7047. default: true
  7048. },
  7049. {
  7050. name: "Giant",
  7051. height: math.unit(50, "feet")
  7052. },
  7053. {
  7054. name: "Nice",
  7055. height: math.unit(69, "feet")
  7056. },
  7057. {
  7058. name: "Macro",
  7059. height: math.unit(100, "feet")
  7060. },
  7061. {
  7062. name: "Enormous",
  7063. height: math.unit(500, "feet")
  7064. },
  7065. {
  7066. name: "Gargantuan",
  7067. height: math.unit(1000, "feet")
  7068. },
  7069. {
  7070. name: "Mega",
  7071. height: math.unit(1, "mile")
  7072. },
  7073. {
  7074. name: "Giga",
  7075. height: math.unit(50, "miles")
  7076. },
  7077. {
  7078. name: "Tera",
  7079. height: math.unit(1000, "miles")
  7080. },
  7081. {
  7082. name: "Cosmic",
  7083. height: math.unit(1.5, "galaxies")
  7084. },
  7085. {
  7086. name: "God",
  7087. height: math.unit(1.5, "universes")
  7088. },
  7089. {
  7090. name: "Chief Execute God",
  7091. height: math.unit(1.5, "multiverses")
  7092. },
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7097. {
  7098. front: {
  7099. height: math.unit(6, "feet"),
  7100. weight: math.unit(210, "lbs"),
  7101. name: "Front",
  7102. image: {
  7103. source: "./media/characters/cimmaron/front-sfw.svg",
  7104. extra: 701 / 676,
  7105. bottom: 0.046
  7106. }
  7107. },
  7108. back: {
  7109. height: math.unit(6, "feet"),
  7110. weight: math.unit(210, "lbs"),
  7111. name: "Back",
  7112. image: {
  7113. source: "./media/characters/cimmaron/back-sfw.svg",
  7114. extra: 701 / 676,
  7115. bottom: 0.046
  7116. }
  7117. },
  7118. frontNsfw: {
  7119. height: math.unit(6, "feet"),
  7120. weight: math.unit(210, "lbs"),
  7121. name: "Front (NSFW)",
  7122. image: {
  7123. source: "./media/characters/cimmaron/front-nsfw.svg",
  7124. extra: 701 / 676,
  7125. bottom: 0.046
  7126. }
  7127. },
  7128. backNsfw: {
  7129. height: math.unit(6, "feet"),
  7130. weight: math.unit(210, "lbs"),
  7131. name: "Back (NSFW)",
  7132. image: {
  7133. source: "./media/characters/cimmaron/back-nsfw.svg",
  7134. extra: 701 / 676,
  7135. bottom: 0.046
  7136. }
  7137. },
  7138. dick: {
  7139. height: math.unit(1.714, "feet"),
  7140. name: "Dick",
  7141. image: {
  7142. source: "./media/characters/cimmaron/dick.svg"
  7143. }
  7144. },
  7145. },
  7146. [
  7147. {
  7148. name: "Normal",
  7149. height: math.unit(6, "feet"),
  7150. default: true
  7151. },
  7152. {
  7153. name: "Macro Mayor",
  7154. height: math.unit(350, "meters")
  7155. },
  7156. ]
  7157. ))
  7158. characterMakers.push(() => makeCharacter(
  7159. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7160. {
  7161. front: {
  7162. height: math.unit(6, "feet"),
  7163. weight: math.unit(200, "lbs"),
  7164. name: "Front",
  7165. image: {
  7166. source: "./media/characters/akari/front.svg",
  7167. extra: 962 / 901,
  7168. bottom: 0.04
  7169. }
  7170. }
  7171. },
  7172. [
  7173. {
  7174. name: "Micro",
  7175. height: math.unit(5, "inches"),
  7176. default: true
  7177. },
  7178. {
  7179. name: "Normal",
  7180. height: math.unit(7, "feet")
  7181. },
  7182. ]
  7183. ))
  7184. characterMakers.push(() => makeCharacter(
  7185. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7186. {
  7187. front: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(140, "lbs"),
  7190. name: "Front",
  7191. image: {
  7192. source: "./media/characters/cynosura/front.svg",
  7193. extra: 437/410,
  7194. bottom: 9/446
  7195. }
  7196. },
  7197. back: {
  7198. height: math.unit(6, "feet"),
  7199. weight: math.unit(140, "lbs"),
  7200. name: "Back",
  7201. image: {
  7202. source: "./media/characters/cynosura/back.svg",
  7203. extra: 1304/1160,
  7204. bottom: 71/1375
  7205. }
  7206. },
  7207. },
  7208. [
  7209. {
  7210. name: "Micro",
  7211. height: math.unit(4, "inches")
  7212. },
  7213. {
  7214. name: "Normal",
  7215. height: math.unit(5.75, "feet"),
  7216. default: true
  7217. },
  7218. {
  7219. name: "Tall",
  7220. height: math.unit(10, "feet")
  7221. },
  7222. {
  7223. name: "Big",
  7224. height: math.unit(20, "feet")
  7225. },
  7226. {
  7227. name: "Macro",
  7228. height: math.unit(50, "feet")
  7229. },
  7230. ]
  7231. ))
  7232. characterMakers.push(() => makeCharacter(
  7233. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7234. {
  7235. front: {
  7236. height: math.unit(13 + 2/12, "feet"),
  7237. weight: math.unit(800, "kg"),
  7238. name: "Front",
  7239. image: {
  7240. source: "./media/characters/gin/front.svg",
  7241. extra: 1312/1191,
  7242. bottom: 45/1357
  7243. }
  7244. },
  7245. mouth: {
  7246. height: math.unit(2.39 * 1.8, "feet"),
  7247. name: "Mouth",
  7248. image: {
  7249. source: "./media/characters/gin/mouth.svg"
  7250. }
  7251. },
  7252. hand: {
  7253. height: math.unit(1.57 * 2.19, "feet"),
  7254. name: "Hand",
  7255. image: {
  7256. source: "./media/characters/gin/hand.svg"
  7257. }
  7258. },
  7259. foot: {
  7260. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7261. name: "Foot",
  7262. image: {
  7263. source: "./media/characters/gin/foot.svg"
  7264. }
  7265. },
  7266. sole: {
  7267. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7268. name: "Sole",
  7269. image: {
  7270. source: "./media/characters/gin/sole.svg"
  7271. }
  7272. },
  7273. },
  7274. [
  7275. {
  7276. name: "Very Small",
  7277. height: math.unit(13 + 2 / 12, "feet")
  7278. },
  7279. {
  7280. name: "Micro",
  7281. height: math.unit(600, "miles")
  7282. },
  7283. {
  7284. name: "Regular",
  7285. height: math.unit(20, "earths"),
  7286. default: true
  7287. },
  7288. {
  7289. name: "Macro",
  7290. height: math.unit(2.2, "solarradii")
  7291. },
  7292. {
  7293. name: "Teramacro",
  7294. height: math.unit(1.2, "galaxies")
  7295. },
  7296. {
  7297. name: "Omegamacro",
  7298. height: math.unit(200, "universes")
  7299. },
  7300. ]
  7301. ))
  7302. characterMakers.push(() => makeCharacter(
  7303. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7304. {
  7305. front: {
  7306. height: math.unit(6 + 1 / 6, "feet"),
  7307. weight: math.unit(178, "lbs"),
  7308. name: "Front",
  7309. image: {
  7310. source: "./media/characters/guy/front.svg"
  7311. }
  7312. }
  7313. },
  7314. [
  7315. {
  7316. name: "Normal",
  7317. height: math.unit(6 + 1 / 6, "feet"),
  7318. default: true
  7319. },
  7320. {
  7321. name: "Large",
  7322. height: math.unit(25 + 7 / 12, "feet")
  7323. },
  7324. {
  7325. name: "Macro",
  7326. height: math.unit(60 + 9 / 12, "feet")
  7327. },
  7328. {
  7329. name: "Macro+",
  7330. height: math.unit(246, "feet")
  7331. },
  7332. {
  7333. name: "Macro++",
  7334. height: math.unit(878, "feet")
  7335. }
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7340. {
  7341. front: {
  7342. height: math.unit(9, "feet"),
  7343. weight: math.unit(800, "lbs"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/tiberius/front.svg",
  7347. extra: 2295 / 2071
  7348. }
  7349. },
  7350. back: {
  7351. height: math.unit(9, "feet"),
  7352. weight: math.unit(800, "lbs"),
  7353. name: "Back",
  7354. image: {
  7355. source: "./media/characters/tiberius/back.svg",
  7356. extra: 2373 / 2160
  7357. }
  7358. },
  7359. },
  7360. [
  7361. {
  7362. name: "Normal",
  7363. height: math.unit(9, "feet"),
  7364. default: true
  7365. }
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7370. {
  7371. front: {
  7372. height: math.unit(6, "feet"),
  7373. weight: math.unit(600, "lbs"),
  7374. name: "Front",
  7375. image: {
  7376. source: "./media/characters/surgo/front.svg",
  7377. extra: 3591 / 2227
  7378. }
  7379. },
  7380. back: {
  7381. height: math.unit(6, "feet"),
  7382. weight: math.unit(600, "lbs"),
  7383. name: "Back",
  7384. image: {
  7385. source: "./media/characters/surgo/back.svg",
  7386. extra: 3557 / 2228
  7387. }
  7388. },
  7389. laying: {
  7390. height: math.unit(6 * 0.85, "feet"),
  7391. weight: math.unit(600, "lbs"),
  7392. name: "Laying",
  7393. image: {
  7394. source: "./media/characters/surgo/laying.svg"
  7395. }
  7396. },
  7397. },
  7398. [
  7399. {
  7400. name: "Normal",
  7401. height: math.unit(6, "feet"),
  7402. default: true
  7403. }
  7404. ]
  7405. ))
  7406. characterMakers.push(() => makeCharacter(
  7407. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7408. {
  7409. side: {
  7410. height: math.unit(6, "feet"),
  7411. weight: math.unit(150, "lbs"),
  7412. name: "Side",
  7413. image: {
  7414. source: "./media/characters/cibus/side.svg",
  7415. extra: 800 / 400
  7416. }
  7417. },
  7418. },
  7419. [
  7420. {
  7421. name: "Normal",
  7422. height: math.unit(6, "feet"),
  7423. default: true
  7424. }
  7425. ]
  7426. ))
  7427. characterMakers.push(() => makeCharacter(
  7428. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7429. {
  7430. front: {
  7431. height: math.unit(6, "feet"),
  7432. weight: math.unit(240, "lbs"),
  7433. name: "Front",
  7434. image: {
  7435. source: "./media/characters/nibbles/front.svg"
  7436. }
  7437. },
  7438. side: {
  7439. height: math.unit(6, "feet"),
  7440. weight: math.unit(240, "lbs"),
  7441. name: "Side",
  7442. image: {
  7443. source: "./media/characters/nibbles/side.svg"
  7444. }
  7445. },
  7446. },
  7447. [
  7448. {
  7449. name: "Normal",
  7450. height: math.unit(9, "feet"),
  7451. default: true
  7452. }
  7453. ]
  7454. ))
  7455. characterMakers.push(() => makeCharacter(
  7456. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7457. {
  7458. side: {
  7459. height: math.unit(5 + 1 / 6, "feet"),
  7460. weight: math.unit(130, "lbs"),
  7461. name: "Side",
  7462. image: {
  7463. source: "./media/characters/rikky/side.svg",
  7464. extra: 851 / 801
  7465. }
  7466. },
  7467. },
  7468. [
  7469. {
  7470. name: "Normal",
  7471. height: math.unit(5 + 1 / 6, "feet")
  7472. },
  7473. {
  7474. name: "Macro",
  7475. height: math.unit(152, "feet"),
  7476. default: true
  7477. },
  7478. {
  7479. name: "Megamacro",
  7480. height: math.unit(7, "miles")
  7481. }
  7482. ]
  7483. ))
  7484. characterMakers.push(() => makeCharacter(
  7485. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7486. {
  7487. side: {
  7488. height: math.unit(370, "cm"),
  7489. weight: math.unit(350, "lbs"),
  7490. name: "Side",
  7491. image: {
  7492. source: "./media/characters/malfressa/side.svg"
  7493. }
  7494. },
  7495. walking: {
  7496. height: math.unit(370, "cm"),
  7497. weight: math.unit(350, "lbs"),
  7498. name: "Walking",
  7499. image: {
  7500. source: "./media/characters/malfressa/walking.svg"
  7501. }
  7502. },
  7503. feral: {
  7504. height: math.unit(2500, "cm"),
  7505. weight: math.unit(100000, "lbs"),
  7506. name: "Feral",
  7507. image: {
  7508. source: "./media/characters/malfressa/feral.svg",
  7509. extra: 2108 / 837,
  7510. bottom: 0.02
  7511. }
  7512. },
  7513. },
  7514. [
  7515. {
  7516. name: "Normal",
  7517. height: math.unit(370, "cm")
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(300, "meters"),
  7522. default: true
  7523. }
  7524. ]
  7525. ))
  7526. characterMakers.push(() => makeCharacter(
  7527. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7528. {
  7529. front: {
  7530. height: math.unit(6, "feet"),
  7531. weight: math.unit(60, "kg"),
  7532. name: "Front",
  7533. image: {
  7534. source: "./media/characters/jaro/front.svg",
  7535. extra: 845/817,
  7536. bottom: 45/890
  7537. }
  7538. },
  7539. back: {
  7540. height: math.unit(6, "feet"),
  7541. weight: math.unit(60, "kg"),
  7542. name: "Back",
  7543. image: {
  7544. source: "./media/characters/jaro/back.svg",
  7545. extra: 847/817,
  7546. bottom: 34/881
  7547. }
  7548. },
  7549. },
  7550. [
  7551. {
  7552. name: "Micro",
  7553. height: math.unit(7, "inches")
  7554. },
  7555. {
  7556. name: "Normal",
  7557. height: math.unit(5.5, "feet"),
  7558. default: true
  7559. },
  7560. {
  7561. name: "Minimacro",
  7562. height: math.unit(20, "feet")
  7563. },
  7564. {
  7565. name: "Macro",
  7566. height: math.unit(200, "meters")
  7567. }
  7568. ]
  7569. ))
  7570. characterMakers.push(() => makeCharacter(
  7571. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7572. {
  7573. front: {
  7574. height: math.unit(6, "feet"),
  7575. weight: math.unit(195, "lb"),
  7576. name: "Front",
  7577. image: {
  7578. source: "./media/characters/rogue/front.svg"
  7579. }
  7580. },
  7581. },
  7582. [
  7583. {
  7584. name: "Macro",
  7585. height: math.unit(90, "feet"),
  7586. default: true
  7587. },
  7588. ]
  7589. ))
  7590. characterMakers.push(() => makeCharacter(
  7591. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7592. {
  7593. standing: {
  7594. height: math.unit(5 + 8 / 12, "feet"),
  7595. weight: math.unit(140, "lb"),
  7596. name: "Standing",
  7597. image: {
  7598. source: "./media/characters/piper/standing.svg",
  7599. extra: 1440/1284,
  7600. bottom: 66/1506
  7601. }
  7602. },
  7603. running: {
  7604. height: math.unit(5 + 8 / 12, "feet"),
  7605. weight: math.unit(140, "lb"),
  7606. name: "Running",
  7607. image: {
  7608. source: "./media/characters/piper/running.svg",
  7609. extra: 3948/3655,
  7610. bottom: 0/3948
  7611. }
  7612. },
  7613. sole: {
  7614. height: math.unit(0.81, "feet"),
  7615. weight: math.unit(2, "kg"),
  7616. name: "Sole",
  7617. image: {
  7618. source: "./media/characters/piper/sole.svg"
  7619. }
  7620. },
  7621. nipple: {
  7622. height: math.unit(0.25, "feet"),
  7623. weight: math.unit(1.5, "lb"),
  7624. name: "Nipple",
  7625. image: {
  7626. source: "./media/characters/piper/nipple.svg"
  7627. }
  7628. },
  7629. head: {
  7630. height: math.unit(1.1, "feet"),
  7631. name: "Head",
  7632. image: {
  7633. source: "./media/characters/piper/head.svg"
  7634. }
  7635. },
  7636. },
  7637. [
  7638. {
  7639. name: "Micro",
  7640. height: math.unit(2, "inches")
  7641. },
  7642. {
  7643. name: "Normal",
  7644. height: math.unit(5 + 8 / 12, "feet")
  7645. },
  7646. {
  7647. name: "Macro",
  7648. height: math.unit(250, "feet"),
  7649. default: true
  7650. },
  7651. {
  7652. name: "Megamacro",
  7653. height: math.unit(7, "miles")
  7654. },
  7655. ]
  7656. ))
  7657. characterMakers.push(() => makeCharacter(
  7658. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7659. {
  7660. front: {
  7661. height: math.unit(6, "feet"),
  7662. weight: math.unit(220, "lb"),
  7663. name: "Front",
  7664. image: {
  7665. source: "./media/characters/gemini/front.svg"
  7666. }
  7667. },
  7668. back: {
  7669. height: math.unit(6, "feet"),
  7670. weight: math.unit(220, "lb"),
  7671. name: "Back",
  7672. image: {
  7673. source: "./media/characters/gemini/back.svg"
  7674. }
  7675. },
  7676. kneeling: {
  7677. height: math.unit(6 / 1.5, "feet"),
  7678. weight: math.unit(220, "lb"),
  7679. name: "Kneeling",
  7680. image: {
  7681. source: "./media/characters/gemini/kneeling.svg",
  7682. bottom: 0.02
  7683. }
  7684. },
  7685. },
  7686. [
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(300, "meters"),
  7690. default: true
  7691. },
  7692. {
  7693. name: "Megamacro",
  7694. height: math.unit(6900, "meters")
  7695. },
  7696. ]
  7697. ))
  7698. characterMakers.push(() => makeCharacter(
  7699. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7700. {
  7701. anthro: {
  7702. height: math.unit(2.35, "meters"),
  7703. weight: math.unit(73, "kg"),
  7704. name: "Anthro",
  7705. image: {
  7706. source: "./media/characters/alicia/anthro.svg",
  7707. extra: 2571 / 2385,
  7708. bottom: 75 / 2648
  7709. }
  7710. },
  7711. paw: {
  7712. height: math.unit(1.32, "feet"),
  7713. name: "Paw",
  7714. image: {
  7715. source: "./media/characters/alicia/paw.svg"
  7716. }
  7717. },
  7718. feral: {
  7719. height: math.unit(1.69, "meters"),
  7720. weight: math.unit(73, "kg"),
  7721. name: "Feral",
  7722. image: {
  7723. source: "./media/characters/alicia/feral.svg",
  7724. extra: 2123 / 1715,
  7725. bottom: 222 / 2349
  7726. }
  7727. },
  7728. },
  7729. [
  7730. {
  7731. name: "Normal",
  7732. height: math.unit(2.35, "meters")
  7733. },
  7734. {
  7735. name: "Macro",
  7736. height: math.unit(60, "meters"),
  7737. default: true
  7738. },
  7739. {
  7740. name: "Megamacro",
  7741. height: math.unit(10000, "kilometers")
  7742. },
  7743. ]
  7744. ))
  7745. characterMakers.push(() => makeCharacter(
  7746. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7747. {
  7748. front: {
  7749. height: math.unit(7, "feet"),
  7750. weight: math.unit(250, "lbs"),
  7751. name: "Front",
  7752. image: {
  7753. source: "./media/characters/archy/front.svg"
  7754. }
  7755. }
  7756. },
  7757. [
  7758. {
  7759. name: "Micro",
  7760. height: math.unit(1, "inch")
  7761. },
  7762. {
  7763. name: "Shorty",
  7764. height: math.unit(5, "feet")
  7765. },
  7766. {
  7767. name: "Normal",
  7768. height: math.unit(7, "feet")
  7769. },
  7770. {
  7771. name: "Macro",
  7772. height: math.unit(600, "meters"),
  7773. default: true
  7774. },
  7775. {
  7776. name: "Megamacro",
  7777. height: math.unit(1, "mile")
  7778. },
  7779. ]
  7780. ))
  7781. characterMakers.push(() => makeCharacter(
  7782. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7783. {
  7784. front: {
  7785. height: math.unit(1.65, "meters"),
  7786. weight: math.unit(74, "kg"),
  7787. name: "Front",
  7788. image: {
  7789. source: "./media/characters/berri/front.svg",
  7790. extra: 857 / 837,
  7791. bottom: 18 / 877
  7792. }
  7793. },
  7794. bum: {
  7795. height: math.unit(1.46, "feet"),
  7796. name: "Bum",
  7797. image: {
  7798. source: "./media/characters/berri/bum.svg"
  7799. }
  7800. },
  7801. mouth: {
  7802. height: math.unit(0.44, "feet"),
  7803. name: "Mouth",
  7804. image: {
  7805. source: "./media/characters/berri/mouth.svg"
  7806. }
  7807. },
  7808. paw: {
  7809. height: math.unit(0.826, "feet"),
  7810. name: "Paw",
  7811. image: {
  7812. source: "./media/characters/berri/paw.svg"
  7813. }
  7814. },
  7815. },
  7816. [
  7817. {
  7818. name: "Normal",
  7819. height: math.unit(1.65, "meters")
  7820. },
  7821. {
  7822. name: "Macro",
  7823. height: math.unit(60, "m"),
  7824. default: true
  7825. },
  7826. {
  7827. name: "Megamacro",
  7828. height: math.unit(9.213, "km")
  7829. },
  7830. {
  7831. name: "Planet Eater",
  7832. height: math.unit(489, "megameters")
  7833. },
  7834. {
  7835. name: "Teramacro",
  7836. height: math.unit(2471635000000, "meters")
  7837. },
  7838. {
  7839. name: "Examacro",
  7840. height: math.unit(8.0624e+26, "meters")
  7841. }
  7842. ]
  7843. ))
  7844. characterMakers.push(() => makeCharacter(
  7845. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7846. {
  7847. front: {
  7848. height: math.unit(1.72, "meters"),
  7849. weight: math.unit(68, "kg"),
  7850. name: "Front",
  7851. image: {
  7852. source: "./media/characters/lexi/front.svg"
  7853. }
  7854. }
  7855. },
  7856. [
  7857. {
  7858. name: "Very Smol",
  7859. height: math.unit(10, "mm")
  7860. },
  7861. {
  7862. name: "Micro",
  7863. height: math.unit(6.8, "cm"),
  7864. default: true
  7865. },
  7866. {
  7867. name: "Normal",
  7868. height: math.unit(1.72, "m")
  7869. }
  7870. ]
  7871. ))
  7872. characterMakers.push(() => makeCharacter(
  7873. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7874. {
  7875. front: {
  7876. height: math.unit(1.69, "meters"),
  7877. weight: math.unit(68, "kg"),
  7878. name: "Front",
  7879. image: {
  7880. source: "./media/characters/martin/front.svg",
  7881. extra: 596 / 581
  7882. }
  7883. }
  7884. },
  7885. [
  7886. {
  7887. name: "Micro",
  7888. height: math.unit(6.85, "cm"),
  7889. default: true
  7890. },
  7891. {
  7892. name: "Normal",
  7893. height: math.unit(1.69, "m")
  7894. }
  7895. ]
  7896. ))
  7897. characterMakers.push(() => makeCharacter(
  7898. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7899. {
  7900. front: {
  7901. height: math.unit(1.69, "meters"),
  7902. weight: math.unit(68, "kg"),
  7903. name: "Front",
  7904. image: {
  7905. source: "./media/characters/juno/front.svg"
  7906. }
  7907. }
  7908. },
  7909. [
  7910. {
  7911. name: "Micro",
  7912. height: math.unit(7, "cm")
  7913. },
  7914. {
  7915. name: "Normal",
  7916. height: math.unit(1.89, "m")
  7917. },
  7918. {
  7919. name: "Macro",
  7920. height: math.unit(353, "meters"),
  7921. default: true
  7922. }
  7923. ]
  7924. ))
  7925. characterMakers.push(() => makeCharacter(
  7926. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7927. {
  7928. front: {
  7929. height: math.unit(1.93, "meters"),
  7930. weight: math.unit(83, "kg"),
  7931. name: "Front",
  7932. image: {
  7933. source: "./media/characters/samantha/front.svg"
  7934. }
  7935. },
  7936. frontClothed: {
  7937. height: math.unit(1.93, "meters"),
  7938. weight: math.unit(83, "kg"),
  7939. name: "Front (Clothed)",
  7940. image: {
  7941. source: "./media/characters/samantha/front-clothed.svg"
  7942. }
  7943. },
  7944. back: {
  7945. height: math.unit(1.93, "meters"),
  7946. weight: math.unit(83, "kg"),
  7947. name: "Back",
  7948. image: {
  7949. source: "./media/characters/samantha/back.svg"
  7950. }
  7951. },
  7952. },
  7953. [
  7954. {
  7955. name: "Normal",
  7956. height: math.unit(1.93, "m")
  7957. },
  7958. {
  7959. name: "Macro",
  7960. height: math.unit(74, "meters"),
  7961. default: true
  7962. },
  7963. {
  7964. name: "Macro+",
  7965. height: math.unit(223, "meters"),
  7966. },
  7967. {
  7968. name: "Megamacro",
  7969. height: math.unit(8381, "meters"),
  7970. },
  7971. {
  7972. name: "Megamacro+",
  7973. height: math.unit(12000, "kilometers")
  7974. },
  7975. ]
  7976. ))
  7977. characterMakers.push(() => makeCharacter(
  7978. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7979. {
  7980. front: {
  7981. height: math.unit(1.92, "meters"),
  7982. weight: math.unit(80, "kg"),
  7983. name: "Front",
  7984. image: {
  7985. source: "./media/characters/dr-clay/front.svg"
  7986. }
  7987. },
  7988. frontClothed: {
  7989. height: math.unit(1.92, "meters"),
  7990. weight: math.unit(80, "kg"),
  7991. name: "Front (Clothed)",
  7992. image: {
  7993. source: "./media/characters/dr-clay/front-clothed.svg"
  7994. }
  7995. }
  7996. },
  7997. [
  7998. {
  7999. name: "Normal",
  8000. height: math.unit(1.92, "m")
  8001. },
  8002. {
  8003. name: "Macro",
  8004. height: math.unit(214, "meters"),
  8005. default: true
  8006. },
  8007. {
  8008. name: "Macro+",
  8009. height: math.unit(12.237, "meters"),
  8010. },
  8011. {
  8012. name: "Megamacro",
  8013. height: math.unit(557, "megameters"),
  8014. },
  8015. {
  8016. name: "Unimaginable",
  8017. height: math.unit(120e9, "lightyears")
  8018. },
  8019. ]
  8020. ))
  8021. characterMakers.push(() => makeCharacter(
  8022. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8023. {
  8024. front: {
  8025. height: math.unit(2, "meters"),
  8026. weight: math.unit(80, "kg"),
  8027. name: "Front",
  8028. image: {
  8029. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8030. }
  8031. }
  8032. },
  8033. [
  8034. {
  8035. name: "Teramacro",
  8036. height: math.unit(500000, "lightyears"),
  8037. default: true
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8043. {
  8044. crux: {
  8045. height: math.unit(2, "meters"),
  8046. weight: math.unit(150, "kg"),
  8047. name: "Crux",
  8048. image: {
  8049. source: "./media/characters/vemus/crux.svg",
  8050. extra: 1074/936,
  8051. bottom: 23/1097
  8052. }
  8053. },
  8054. skunkTanuki: {
  8055. height: math.unit(2, "meters"),
  8056. weight: math.unit(150, "kg"),
  8057. name: "Skunk-Tanuki",
  8058. image: {
  8059. source: "./media/characters/vemus/skunk-tanuki.svg",
  8060. extra: 926/893,
  8061. bottom: 20/946
  8062. }
  8063. },
  8064. },
  8065. [
  8066. {
  8067. name: "Normal",
  8068. height: math.unit(4, "meters"),
  8069. default: true
  8070. },
  8071. {
  8072. name: "Big",
  8073. height: math.unit(8, "meters")
  8074. },
  8075. {
  8076. name: "Macro",
  8077. height: math.unit(100, "meters")
  8078. },
  8079. {
  8080. name: "Macro+",
  8081. height: math.unit(1500, "meters")
  8082. },
  8083. {
  8084. name: "Stellar",
  8085. height: math.unit(14e8, "meters")
  8086. },
  8087. ]
  8088. ))
  8089. characterMakers.push(() => makeCharacter(
  8090. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8091. {
  8092. front: {
  8093. height: math.unit(2, "meters"),
  8094. weight: math.unit(70, "kg"),
  8095. name: "Front",
  8096. image: {
  8097. source: "./media/characters/beherit/front.svg",
  8098. extra: 1234/1109,
  8099. bottom: 55/1289
  8100. }
  8101. }
  8102. },
  8103. [
  8104. {
  8105. name: "Normal",
  8106. height: math.unit(6, "feet")
  8107. },
  8108. {
  8109. name: "Lorg",
  8110. height: math.unit(25, "feet"),
  8111. default: true
  8112. },
  8113. {
  8114. name: "Lorger",
  8115. height: math.unit(75, "feet")
  8116. },
  8117. {
  8118. name: "Macro",
  8119. height: math.unit(200, "meters")
  8120. },
  8121. ]
  8122. ))
  8123. characterMakers.push(() => makeCharacter(
  8124. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8125. {
  8126. front: {
  8127. height: math.unit(2, "meters"),
  8128. weight: math.unit(150, "kg"),
  8129. name: "Front",
  8130. image: {
  8131. source: "./media/characters/everett/front.svg",
  8132. extra: 1017/866,
  8133. bottom: 86/1103
  8134. }
  8135. },
  8136. paw: {
  8137. height: math.unit(2 / 3.6, "meters"),
  8138. name: "Paw",
  8139. image: {
  8140. source: "./media/characters/everett/paw.svg"
  8141. }
  8142. },
  8143. },
  8144. [
  8145. {
  8146. name: "Normal",
  8147. height: math.unit(15, "feet"),
  8148. default: true
  8149. },
  8150. {
  8151. name: "Lorg",
  8152. height: math.unit(70, "feet"),
  8153. default: true
  8154. },
  8155. {
  8156. name: "Lorger",
  8157. height: math.unit(250, "feet")
  8158. },
  8159. {
  8160. name: "Macro",
  8161. height: math.unit(500, "meters")
  8162. },
  8163. ]
  8164. ))
  8165. characterMakers.push(() => makeCharacter(
  8166. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8167. {
  8168. front: {
  8169. height: math.unit(2, "meters"),
  8170. weight: math.unit(86, "kg"),
  8171. name: "Front",
  8172. image: {
  8173. source: "./media/characters/rose/front.svg",
  8174. extra: 1785/1636,
  8175. bottom: 30/1815
  8176. },
  8177. form: "liom",
  8178. default: true
  8179. },
  8180. frontSporty: {
  8181. height: math.unit(2, "meters"),
  8182. weight: math.unit(86, "kg"),
  8183. name: "Front (Sporty)",
  8184. image: {
  8185. source: "./media/characters/rose/front-sporty.svg",
  8186. extra: 350/335,
  8187. bottom: 10/360
  8188. },
  8189. form: "liom"
  8190. },
  8191. frontAlt: {
  8192. height: math.unit(1.6, "meters"),
  8193. weight: math.unit(86, "kg"),
  8194. name: "Front (Alt)",
  8195. image: {
  8196. source: "./media/characters/rose/front-alt.svg",
  8197. extra: 299/283,
  8198. bottom: 3/302
  8199. },
  8200. form: "liom"
  8201. },
  8202. plush: {
  8203. height: math.unit(2, "meters"),
  8204. weight: math.unit(86/3, "kg"),
  8205. name: "Plush",
  8206. image: {
  8207. source: "./media/characters/rose/plush.svg",
  8208. extra: 361/337,
  8209. bottom: 11/372
  8210. },
  8211. form: "plush",
  8212. default: true
  8213. },
  8214. faeStanding: {
  8215. height: math.unit(10, "cm"),
  8216. weight: math.unit(10, "grams"),
  8217. name: "Standing",
  8218. image: {
  8219. source: "./media/characters/rose/fae-standing.svg",
  8220. extra: 1189/1060,
  8221. bottom: 27/1216
  8222. },
  8223. form: "fae",
  8224. default: true
  8225. },
  8226. faeSitting: {
  8227. height: math.unit(5, "cm"),
  8228. weight: math.unit(10, "grams"),
  8229. name: "Sitting",
  8230. image: {
  8231. source: "./media/characters/rose/fae-sitting.svg",
  8232. extra: 737/577,
  8233. bottom: 356/1093
  8234. },
  8235. form: "fae"
  8236. },
  8237. faePaw: {
  8238. height: math.unit(1.35, "cm"),
  8239. name: "Paw",
  8240. image: {
  8241. source: "./media/characters/rose/fae-paw.svg"
  8242. },
  8243. form: "fae"
  8244. },
  8245. },
  8246. [
  8247. {
  8248. name: "True Micro",
  8249. height: math.unit(9, "cm"),
  8250. form: "liom"
  8251. },
  8252. {
  8253. name: "Micro",
  8254. height: math.unit(16, "cm"),
  8255. form: "liom"
  8256. },
  8257. {
  8258. name: "Normal",
  8259. height: math.unit(1.85, "meters"),
  8260. default: true,
  8261. form: "liom"
  8262. },
  8263. {
  8264. name: "Mini-Macro",
  8265. height: math.unit(5, "meters"),
  8266. form: "liom"
  8267. },
  8268. {
  8269. name: "Macro",
  8270. height: math.unit(15, "meters"),
  8271. form: "liom"
  8272. },
  8273. {
  8274. name: "True Macro",
  8275. height: math.unit(40, "meters"),
  8276. form: "liom"
  8277. },
  8278. {
  8279. name: "City Scale",
  8280. height: math.unit(1, "km"),
  8281. form: "liom"
  8282. },
  8283. {
  8284. name: "Plushie",
  8285. height: math.unit(9, "cm"),
  8286. form: "plush",
  8287. default: true
  8288. },
  8289. {
  8290. name: "Fae",
  8291. height: math.unit(10, "cm"),
  8292. form: "fae",
  8293. default: true
  8294. },
  8295. ],
  8296. {
  8297. "liom": {
  8298. name: "Liom"
  8299. },
  8300. "plush": {
  8301. name: "Plush"
  8302. },
  8303. "fae": {
  8304. name: "Fae Fox",
  8305. default: true
  8306. }
  8307. }
  8308. ))
  8309. characterMakers.push(() => makeCharacter(
  8310. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8311. {
  8312. front: {
  8313. height: math.unit(2, "meters"),
  8314. weight: math.unit(350, "lbs"),
  8315. name: "Front",
  8316. image: {
  8317. source: "./media/characters/regal/front.svg"
  8318. }
  8319. },
  8320. back: {
  8321. height: math.unit(2, "meters"),
  8322. weight: math.unit(350, "lbs"),
  8323. name: "Back",
  8324. image: {
  8325. source: "./media/characters/regal/back.svg"
  8326. }
  8327. },
  8328. },
  8329. [
  8330. {
  8331. name: "Macro",
  8332. height: math.unit(350, "feet"),
  8333. default: true
  8334. }
  8335. ]
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8339. {
  8340. standing: {
  8341. height: math.unit(4 + 11/12, "feet"),
  8342. weight: math.unit(100, "lb"),
  8343. name: "Standing",
  8344. image: {
  8345. source: "./media/characters/opal/standing.svg",
  8346. extra: 1588/1513,
  8347. bottom: 23/1611
  8348. }
  8349. },
  8350. sitting: {
  8351. height: math.unit(2.3, "feet"),
  8352. weight: math.unit(100, "lb"),
  8353. name: "Sitting",
  8354. image: {
  8355. source: "./media/characters/opal/sitting.svg",
  8356. extra: 1031/892,
  8357. bottom: 142/1173
  8358. }
  8359. },
  8360. hand: {
  8361. height: math.unit(0.59, "feet"),
  8362. name: "Hand",
  8363. image: {
  8364. source: "./media/characters/opal/hand.svg"
  8365. }
  8366. },
  8367. foot: {
  8368. height: math.unit(0.61, "feet"),
  8369. name: "Foot",
  8370. image: {
  8371. source: "./media/characters/opal/foot.svg"
  8372. }
  8373. },
  8374. },
  8375. [
  8376. {
  8377. name: "Small",
  8378. height: math.unit(4 + 11 / 12, "feet")
  8379. },
  8380. {
  8381. name: "Normal",
  8382. height: math.unit(20, "feet"),
  8383. default: true
  8384. },
  8385. {
  8386. name: "Macro",
  8387. height: math.unit(120, "feet")
  8388. },
  8389. {
  8390. name: "Megamacro",
  8391. height: math.unit(80, "miles")
  8392. },
  8393. {
  8394. name: "True Size",
  8395. height: math.unit(100000, "lightyears")
  8396. },
  8397. ]
  8398. ))
  8399. characterMakers.push(() => makeCharacter(
  8400. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8401. {
  8402. front: {
  8403. height: math.unit(6, "feet"),
  8404. weight: math.unit(200, "lbs"),
  8405. name: "Front",
  8406. image: {
  8407. source: "./media/characters/vector-wuff/front.svg"
  8408. }
  8409. }
  8410. },
  8411. [
  8412. {
  8413. name: "Normal",
  8414. height: math.unit(2.8, "meters")
  8415. },
  8416. {
  8417. name: "Macro",
  8418. height: math.unit(450, "meters"),
  8419. default: true
  8420. },
  8421. {
  8422. name: "Megamacro",
  8423. height: math.unit(15, "kilometers")
  8424. }
  8425. ]
  8426. ))
  8427. characterMakers.push(() => makeCharacter(
  8428. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8429. {
  8430. front: {
  8431. height: math.unit(6, "feet"),
  8432. weight: math.unit(256, "lbs"),
  8433. name: "Front",
  8434. image: {
  8435. source: "./media/characters/dannik/front.svg"
  8436. }
  8437. }
  8438. },
  8439. [
  8440. {
  8441. name: "Macro",
  8442. height: math.unit(69.57, "meters"),
  8443. default: true
  8444. },
  8445. ]
  8446. ))
  8447. characterMakers.push(() => makeCharacter(
  8448. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8449. {
  8450. front: {
  8451. height: math.unit(6, "feet"),
  8452. weight: math.unit(120, "lbs"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/azura-saharah/front.svg"
  8456. }
  8457. },
  8458. back: {
  8459. height: math.unit(6, "feet"),
  8460. weight: math.unit(120, "lbs"),
  8461. name: "Back",
  8462. image: {
  8463. source: "./media/characters/azura-saharah/back.svg"
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Macro",
  8470. height: math.unit(100, "feet"),
  8471. default: true
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8477. {
  8478. side: {
  8479. height: math.unit(5 + 4 / 12, "feet"),
  8480. weight: math.unit(163, "lbs"),
  8481. name: "Side",
  8482. image: {
  8483. source: "./media/characters/kennedy/side.svg"
  8484. }
  8485. }
  8486. },
  8487. [
  8488. {
  8489. name: "Standard Doggo",
  8490. height: math.unit(5 + 4 / 12, "feet")
  8491. },
  8492. {
  8493. name: "Big Doggo",
  8494. height: math.unit(25 + 3 / 12, "feet"),
  8495. default: true
  8496. },
  8497. ]
  8498. ))
  8499. characterMakers.push(() => makeCharacter(
  8500. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8501. {
  8502. front: {
  8503. height: math.unit(5 + 5/12, "feet"),
  8504. weight: math.unit(100, "lbs"),
  8505. name: "Front",
  8506. image: {
  8507. source: "./media/characters/odios-de-lunar/front.svg",
  8508. extra: 1468/1323,
  8509. bottom: 22/1490
  8510. }
  8511. }
  8512. },
  8513. [
  8514. {
  8515. name: "Micro",
  8516. height: math.unit(3, "inches")
  8517. },
  8518. {
  8519. name: "Normal",
  8520. height: math.unit(5.5, "feet"),
  8521. default: true
  8522. },
  8523. {
  8524. name: "Macro",
  8525. height: math.unit(100, "feet")
  8526. },
  8527. ]
  8528. ))
  8529. characterMakers.push(() => makeCharacter(
  8530. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8531. {
  8532. back: {
  8533. height: math.unit(6, "feet"),
  8534. weight: math.unit(220, "lbs"),
  8535. name: "Back",
  8536. image: {
  8537. source: "./media/characters/mandake/back.svg"
  8538. }
  8539. }
  8540. },
  8541. [
  8542. {
  8543. name: "Normal",
  8544. height: math.unit(7, "feet"),
  8545. default: true
  8546. },
  8547. {
  8548. name: "Macro",
  8549. height: math.unit(78, "feet")
  8550. },
  8551. {
  8552. name: "Macro+",
  8553. height: math.unit(300, "meters")
  8554. },
  8555. {
  8556. name: "Macro++",
  8557. height: math.unit(2400, "feet")
  8558. },
  8559. {
  8560. name: "Megamacro",
  8561. height: math.unit(5167, "meters")
  8562. },
  8563. {
  8564. name: "Gigamacro",
  8565. height: math.unit(41769, "miles")
  8566. },
  8567. ]
  8568. ))
  8569. characterMakers.push(() => makeCharacter(
  8570. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8571. {
  8572. front: {
  8573. height: math.unit(6, "feet"),
  8574. weight: math.unit(120, "lbs"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/yozey/front.svg"
  8578. }
  8579. },
  8580. frontAlt: {
  8581. height: math.unit(6, "feet"),
  8582. weight: math.unit(120, "lbs"),
  8583. name: "Front (Alt)",
  8584. image: {
  8585. source: "./media/characters/yozey/front-alt.svg"
  8586. }
  8587. },
  8588. side: {
  8589. height: math.unit(6, "feet"),
  8590. weight: math.unit(120, "lbs"),
  8591. name: "Side",
  8592. image: {
  8593. source: "./media/characters/yozey/side.svg"
  8594. }
  8595. },
  8596. },
  8597. [
  8598. {
  8599. name: "Micro",
  8600. height: math.unit(3, "inches"),
  8601. default: true
  8602. },
  8603. {
  8604. name: "Normal",
  8605. height: math.unit(6, "feet")
  8606. }
  8607. ]
  8608. ))
  8609. characterMakers.push(() => makeCharacter(
  8610. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8611. {
  8612. front: {
  8613. height: math.unit(6, "feet"),
  8614. weight: math.unit(103, "lbs"),
  8615. name: "Front",
  8616. image: {
  8617. source: "./media/characters/valeska-voss/front.svg"
  8618. }
  8619. }
  8620. },
  8621. [
  8622. {
  8623. name: "Mini-Sized Sub",
  8624. height: math.unit(3.1, "inches")
  8625. },
  8626. {
  8627. name: "Mid-Sized Sub",
  8628. height: math.unit(6.2, "inches")
  8629. },
  8630. {
  8631. name: "Full-Sized Sub",
  8632. height: math.unit(9.3, "inches")
  8633. },
  8634. {
  8635. name: "Normal",
  8636. height: math.unit(5 + 2 / 12, "foot"),
  8637. default: true
  8638. },
  8639. ]
  8640. ))
  8641. characterMakers.push(() => makeCharacter(
  8642. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8643. {
  8644. front: {
  8645. height: math.unit(6, "feet"),
  8646. weight: math.unit(160, "lbs"),
  8647. name: "Front",
  8648. image: {
  8649. source: "./media/characters/gene-zeta/front.svg",
  8650. extra: 3006 / 2826,
  8651. bottom: 182 / 3188
  8652. }
  8653. }
  8654. },
  8655. [
  8656. {
  8657. name: "Micro",
  8658. height: math.unit(6, "inches")
  8659. },
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(5 + 11 / 12, "foot"),
  8663. default: true
  8664. },
  8665. {
  8666. name: "Macro",
  8667. height: math.unit(140, "feet")
  8668. },
  8669. {
  8670. name: "Supercharged",
  8671. height: math.unit(2500, "feet")
  8672. },
  8673. ]
  8674. ))
  8675. characterMakers.push(() => makeCharacter(
  8676. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8677. {
  8678. front: {
  8679. height: math.unit(6, "feet"),
  8680. weight: math.unit(350, "lbs"),
  8681. name: "Front",
  8682. image: {
  8683. source: "./media/characters/razinox/front.svg",
  8684. extra: 1686 / 1548,
  8685. bottom: 28.2 / 1868
  8686. }
  8687. },
  8688. back: {
  8689. height: math.unit(6, "feet"),
  8690. weight: math.unit(350, "lbs"),
  8691. name: "Back",
  8692. image: {
  8693. source: "./media/characters/razinox/back.svg",
  8694. extra: 1660 / 1590,
  8695. bottom: 15 / 1665
  8696. }
  8697. },
  8698. },
  8699. [
  8700. {
  8701. name: "Normal",
  8702. height: math.unit(10 + 8 / 12, "foot")
  8703. },
  8704. {
  8705. name: "Minimacro",
  8706. height: math.unit(15, "foot")
  8707. },
  8708. {
  8709. name: "Macro",
  8710. height: math.unit(60, "foot"),
  8711. default: true
  8712. },
  8713. {
  8714. name: "Megamacro",
  8715. height: math.unit(5, "miles")
  8716. },
  8717. {
  8718. name: "Gigamacro",
  8719. height: math.unit(6000, "miles")
  8720. },
  8721. ]
  8722. ))
  8723. characterMakers.push(() => makeCharacter(
  8724. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8725. {
  8726. front: {
  8727. height: math.unit(6, "feet"),
  8728. weight: math.unit(150, "lbs"),
  8729. name: "Front",
  8730. image: {
  8731. source: "./media/characters/cobalt/front.svg"
  8732. }
  8733. }
  8734. },
  8735. [
  8736. {
  8737. name: "Normal",
  8738. height: math.unit(8 + 1 / 12, "foot")
  8739. },
  8740. {
  8741. name: "Macro",
  8742. height: math.unit(111, "foot"),
  8743. default: true
  8744. },
  8745. {
  8746. name: "Supracosmic",
  8747. height: math.unit(1e42, "feet")
  8748. },
  8749. ]
  8750. ))
  8751. characterMakers.push(() => makeCharacter(
  8752. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8753. {
  8754. front: {
  8755. height: math.unit(5, "inches"),
  8756. name: "Front",
  8757. image: {
  8758. source: "./media/characters/amanda/front.svg",
  8759. extra: 926/791,
  8760. bottom: 38/964
  8761. }
  8762. },
  8763. back: {
  8764. height: math.unit(5, "inches"),
  8765. name: "Back",
  8766. image: {
  8767. source: "./media/characters/amanda/back.svg",
  8768. extra: 909/805,
  8769. bottom: 43/952
  8770. }
  8771. },
  8772. },
  8773. [
  8774. {
  8775. name: "Micro",
  8776. height: math.unit(5, "inches"),
  8777. default: true
  8778. },
  8779. ]
  8780. ))
  8781. characterMakers.push(() => makeCharacter(
  8782. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8783. {
  8784. front: {
  8785. height: math.unit(2.75, "meters"),
  8786. weight: math.unit(1200, "lb"),
  8787. name: "Front",
  8788. image: {
  8789. source: "./media/characters/teal/front.svg",
  8790. extra: 2463 / 2320,
  8791. bottom: 166 / 2629
  8792. }
  8793. },
  8794. back: {
  8795. height: math.unit(2.75, "meters"),
  8796. weight: math.unit(1200, "lb"),
  8797. name: "Back",
  8798. image: {
  8799. source: "./media/characters/teal/back.svg",
  8800. extra: 2580 / 2489,
  8801. bottom: 151 / 2731
  8802. }
  8803. },
  8804. sitting: {
  8805. height: math.unit(1.9, "meters"),
  8806. weight: math.unit(1200, "lb"),
  8807. name: "Sitting",
  8808. image: {
  8809. source: "./media/characters/teal/sitting.svg",
  8810. extra: 623 / 590,
  8811. bottom: 121 / 744
  8812. }
  8813. },
  8814. standing: {
  8815. height: math.unit(2.75, "meters"),
  8816. weight: math.unit(1200, "lb"),
  8817. name: "Standing",
  8818. image: {
  8819. source: "./media/characters/teal/standing.svg",
  8820. extra: 923 / 893,
  8821. bottom: 60 / 983
  8822. }
  8823. },
  8824. stretching: {
  8825. height: math.unit(3.65, "meters"),
  8826. weight: math.unit(1200, "lb"),
  8827. name: "Stretching",
  8828. image: {
  8829. source: "./media/characters/teal/stretching.svg",
  8830. extra: 1276 / 1244,
  8831. bottom: 0 / 1276
  8832. }
  8833. },
  8834. legged: {
  8835. height: math.unit(1.3, "meters"),
  8836. weight: math.unit(100, "lb"),
  8837. name: "Legged",
  8838. image: {
  8839. source: "./media/characters/teal/legged.svg",
  8840. extra: 462 / 437,
  8841. bottom: 24 / 486
  8842. }
  8843. },
  8844. naga: {
  8845. height: math.unit(5.4, "meters"),
  8846. weight: math.unit(4000, "lb"),
  8847. name: "Naga",
  8848. image: {
  8849. source: "./media/characters/teal/naga.svg",
  8850. extra: 1902 / 1858,
  8851. bottom: 0 / 1902
  8852. }
  8853. },
  8854. hand: {
  8855. height: math.unit(0.52, "meters"),
  8856. name: "Hand",
  8857. image: {
  8858. source: "./media/characters/teal/hand.svg"
  8859. }
  8860. },
  8861. maw: {
  8862. height: math.unit(0.43, "meters"),
  8863. name: "Maw",
  8864. image: {
  8865. source: "./media/characters/teal/maw.svg"
  8866. }
  8867. },
  8868. slit: {
  8869. height: math.unit(0.25, "meters"),
  8870. name: "Slit",
  8871. image: {
  8872. source: "./media/characters/teal/slit.svg"
  8873. }
  8874. },
  8875. },
  8876. [
  8877. {
  8878. name: "Normal",
  8879. height: math.unit(2.75, "meters"),
  8880. default: true
  8881. },
  8882. {
  8883. name: "Macro",
  8884. height: math.unit(300, "feet")
  8885. },
  8886. {
  8887. name: "Macro+",
  8888. height: math.unit(2000, "feet")
  8889. },
  8890. ]
  8891. ))
  8892. characterMakers.push(() => makeCharacter(
  8893. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8894. {
  8895. frontCat: {
  8896. height: math.unit(6, "feet"),
  8897. weight: math.unit(180, "lbs"),
  8898. name: "Front (Cat)",
  8899. image: {
  8900. source: "./media/characters/ravin-amulet/front-cat.svg"
  8901. }
  8902. },
  8903. frontCatAlt: {
  8904. height: math.unit(6, "feet"),
  8905. weight: math.unit(180, "lbs"),
  8906. name: "Front (Alt, Cat)",
  8907. image: {
  8908. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8909. }
  8910. },
  8911. frontWerewolf: {
  8912. height: math.unit(6 * 1.2, "feet"),
  8913. weight: math.unit(225, "lbs"),
  8914. name: "Front (Werewolf)",
  8915. image: {
  8916. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8917. }
  8918. },
  8919. backWerewolf: {
  8920. height: math.unit(6 * 1.2, "feet"),
  8921. weight: math.unit(225, "lbs"),
  8922. name: "Back (Werewolf)",
  8923. image: {
  8924. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8925. }
  8926. },
  8927. },
  8928. [
  8929. {
  8930. name: "Nano",
  8931. height: math.unit(1, "micrometer")
  8932. },
  8933. {
  8934. name: "Micro",
  8935. height: math.unit(1, "inch")
  8936. },
  8937. {
  8938. name: "Normal",
  8939. height: math.unit(6, "feet"),
  8940. default: true
  8941. },
  8942. {
  8943. name: "Macro",
  8944. height: math.unit(60, "feet")
  8945. }
  8946. ]
  8947. ))
  8948. characterMakers.push(() => makeCharacter(
  8949. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8950. {
  8951. front: {
  8952. height: math.unit(6, "feet"),
  8953. weight: math.unit(165, "lbs"),
  8954. name: "Front",
  8955. image: {
  8956. source: "./media/characters/fluoresce/front.svg"
  8957. }
  8958. }
  8959. },
  8960. [
  8961. {
  8962. name: "Micro",
  8963. height: math.unit(6, "cm")
  8964. },
  8965. {
  8966. name: "Normal",
  8967. height: math.unit(5 + 7 / 12, "feet"),
  8968. default: true
  8969. },
  8970. {
  8971. name: "Macro",
  8972. height: math.unit(56, "feet")
  8973. },
  8974. {
  8975. name: "Megamacro",
  8976. height: math.unit(1.9, "miles")
  8977. },
  8978. ]
  8979. ))
  8980. characterMakers.push(() => makeCharacter(
  8981. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8982. {
  8983. front: {
  8984. height: math.unit(9 + 6 / 12, "feet"),
  8985. weight: math.unit(523, "lbs"),
  8986. name: "Side",
  8987. image: {
  8988. source: "./media/characters/aurora/side.svg",
  8989. extra: 474/393,
  8990. bottom: 5/479
  8991. }
  8992. }
  8993. },
  8994. [
  8995. {
  8996. name: "Normal",
  8997. height: math.unit(9 + 6 / 12, "feet")
  8998. },
  8999. {
  9000. name: "Macro",
  9001. height: math.unit(96, "feet"),
  9002. default: true
  9003. },
  9004. {
  9005. name: "Macro+",
  9006. height: math.unit(243, "feet")
  9007. },
  9008. ]
  9009. ))
  9010. characterMakers.push(() => makeCharacter(
  9011. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9012. {
  9013. front: {
  9014. height: math.unit(194, "cm"),
  9015. weight: math.unit(90, "kg"),
  9016. name: "Front",
  9017. image: {
  9018. source: "./media/characters/ranek/front.svg",
  9019. extra: 1862/1791,
  9020. bottom: 80/1942
  9021. }
  9022. },
  9023. back: {
  9024. height: math.unit(194, "cm"),
  9025. weight: math.unit(90, "kg"),
  9026. name: "Back",
  9027. image: {
  9028. source: "./media/characters/ranek/back.svg",
  9029. extra: 1853/1787,
  9030. bottom: 74/1927
  9031. }
  9032. },
  9033. feral: {
  9034. height: math.unit(30, "cm"),
  9035. weight: math.unit(1.6, "lbs"),
  9036. name: "Feral",
  9037. image: {
  9038. source: "./media/characters/ranek/feral.svg",
  9039. extra: 990/631,
  9040. bottom: 29/1019
  9041. }
  9042. },
  9043. },
  9044. [
  9045. {
  9046. name: "Normal",
  9047. height: math.unit(194, "cm"),
  9048. default: true
  9049. },
  9050. {
  9051. name: "Macro",
  9052. height: math.unit(100, "meters")
  9053. },
  9054. ]
  9055. ))
  9056. characterMakers.push(() => makeCharacter(
  9057. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9058. {
  9059. front: {
  9060. height: math.unit(5 + 6 / 12, "feet"),
  9061. weight: math.unit(153, "lbs"),
  9062. name: "Front",
  9063. image: {
  9064. source: "./media/characters/andrew-cooper/front.svg"
  9065. }
  9066. },
  9067. },
  9068. [
  9069. {
  9070. name: "Nano",
  9071. height: math.unit(1, "mm")
  9072. },
  9073. {
  9074. name: "Micro",
  9075. height: math.unit(2, "inches")
  9076. },
  9077. {
  9078. name: "Normal",
  9079. height: math.unit(5 + 6 / 12, "feet"),
  9080. default: true
  9081. }
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9086. {
  9087. front: {
  9088. height: math.unit(6, "feet"),
  9089. weight: math.unit(180, "lbs"),
  9090. name: "Front",
  9091. image: {
  9092. source: "./media/characters/akane-sato/front.svg",
  9093. extra: 1219 / 1140
  9094. }
  9095. },
  9096. back: {
  9097. height: math.unit(6, "feet"),
  9098. weight: math.unit(180, "lbs"),
  9099. name: "Back",
  9100. image: {
  9101. source: "./media/characters/akane-sato/back.svg",
  9102. extra: 1219 / 1170
  9103. }
  9104. },
  9105. },
  9106. [
  9107. {
  9108. name: "Normal",
  9109. height: math.unit(2.5, "meters")
  9110. },
  9111. {
  9112. name: "Macro",
  9113. height: math.unit(250, "meters"),
  9114. default: true
  9115. },
  9116. {
  9117. name: "Megamacro",
  9118. height: math.unit(25, "km")
  9119. },
  9120. ]
  9121. ))
  9122. characterMakers.push(() => makeCharacter(
  9123. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9124. {
  9125. front: {
  9126. height: math.unit(6, "feet"),
  9127. weight: math.unit(65, "kg"),
  9128. name: "Front",
  9129. image: {
  9130. source: "./media/characters/rook/front.svg",
  9131. extra: 960 / 950
  9132. }
  9133. }
  9134. },
  9135. [
  9136. {
  9137. name: "Normal",
  9138. height: math.unit(8.8, "feet")
  9139. },
  9140. {
  9141. name: "Macro",
  9142. height: math.unit(88, "feet"),
  9143. default: true
  9144. },
  9145. {
  9146. name: "Megamacro",
  9147. height: math.unit(8, "miles")
  9148. },
  9149. ]
  9150. ))
  9151. characterMakers.push(() => makeCharacter(
  9152. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9153. {
  9154. front: {
  9155. height: math.unit(12 + 2 / 12, "feet"),
  9156. weight: math.unit(808, "lbs"),
  9157. name: "Front",
  9158. image: {
  9159. source: "./media/characters/prodigy/front.svg"
  9160. }
  9161. }
  9162. },
  9163. [
  9164. {
  9165. name: "Normal",
  9166. height: math.unit(12 + 2 / 12, "feet"),
  9167. default: true
  9168. },
  9169. {
  9170. name: "Macro",
  9171. height: math.unit(143, "feet")
  9172. },
  9173. {
  9174. name: "Macro+",
  9175. height: math.unit(400, "feet")
  9176. },
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9181. {
  9182. front: {
  9183. height: math.unit(6, "feet"),
  9184. weight: math.unit(225, "lbs"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/daniel/front.svg"
  9188. }
  9189. },
  9190. leaning: {
  9191. height: math.unit(6, "feet"),
  9192. weight: math.unit(225, "lbs"),
  9193. name: "Leaning",
  9194. image: {
  9195. source: "./media/characters/daniel/leaning.svg"
  9196. }
  9197. },
  9198. },
  9199. [
  9200. {
  9201. name: "Macro",
  9202. height: math.unit(1000, "feet"),
  9203. default: true
  9204. },
  9205. ]
  9206. ))
  9207. characterMakers.push(() => makeCharacter(
  9208. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9209. {
  9210. front: {
  9211. height: math.unit(6, "feet"),
  9212. weight: math.unit(88, "lbs"),
  9213. name: "Front",
  9214. image: {
  9215. source: "./media/characters/chiros/front.svg",
  9216. extra: 306 / 226
  9217. }
  9218. },
  9219. side: {
  9220. height: math.unit(6, "feet"),
  9221. weight: math.unit(88, "lbs"),
  9222. name: "Side",
  9223. image: {
  9224. source: "./media/characters/chiros/side.svg",
  9225. extra: 306 / 226
  9226. }
  9227. },
  9228. },
  9229. [
  9230. {
  9231. name: "Normal",
  9232. height: math.unit(6, "cm"),
  9233. default: true
  9234. },
  9235. ]
  9236. ))
  9237. characterMakers.push(() => makeCharacter(
  9238. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9239. {
  9240. front: {
  9241. height: math.unit(6, "feet"),
  9242. weight: math.unit(100, "lbs"),
  9243. name: "Front",
  9244. image: {
  9245. source: "./media/characters/selka/front.svg",
  9246. extra: 947 / 887
  9247. }
  9248. }
  9249. },
  9250. [
  9251. {
  9252. name: "Normal",
  9253. height: math.unit(5, "cm"),
  9254. default: true
  9255. },
  9256. ]
  9257. ))
  9258. characterMakers.push(() => makeCharacter(
  9259. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9260. {
  9261. front: {
  9262. height: math.unit(8 + 3 / 12, "feet"),
  9263. weight: math.unit(424, "lbs"),
  9264. name: "Front",
  9265. image: {
  9266. source: "./media/characters/verin/front.svg",
  9267. extra: 1845 / 1550
  9268. }
  9269. },
  9270. frontArmored: {
  9271. height: math.unit(8 + 3 / 12, "feet"),
  9272. weight: math.unit(424, "lbs"),
  9273. name: "Front (Armored)",
  9274. image: {
  9275. source: "./media/characters/verin/front-armor.svg",
  9276. extra: 1845 / 1550,
  9277. bottom: 0.01
  9278. }
  9279. },
  9280. back: {
  9281. height: math.unit(8 + 3 / 12, "feet"),
  9282. weight: math.unit(424, "lbs"),
  9283. name: "Back",
  9284. image: {
  9285. source: "./media/characters/verin/back.svg",
  9286. bottom: 0.1,
  9287. extra: 1
  9288. }
  9289. },
  9290. foot: {
  9291. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9292. name: "Foot",
  9293. image: {
  9294. source: "./media/characters/verin/foot.svg"
  9295. }
  9296. },
  9297. },
  9298. [
  9299. {
  9300. name: "Normal",
  9301. height: math.unit(8 + 3 / 12, "feet")
  9302. },
  9303. {
  9304. name: "Minimacro",
  9305. height: math.unit(21, "feet"),
  9306. default: true
  9307. },
  9308. {
  9309. name: "Macro",
  9310. height: math.unit(626, "feet")
  9311. },
  9312. ]
  9313. ))
  9314. characterMakers.push(() => makeCharacter(
  9315. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9316. {
  9317. front: {
  9318. height: math.unit(2.718, "meters"),
  9319. weight: math.unit(150, "lbs"),
  9320. name: "Front",
  9321. image: {
  9322. source: "./media/characters/sovrim-terraquian/front.svg",
  9323. extra: 1752/1689,
  9324. bottom: 36/1788
  9325. }
  9326. },
  9327. back: {
  9328. height: math.unit(2.718, "meters"),
  9329. weight: math.unit(150, "lbs"),
  9330. name: "Back",
  9331. image: {
  9332. source: "./media/characters/sovrim-terraquian/back.svg",
  9333. extra: 1698/1657,
  9334. bottom: 58/1756
  9335. }
  9336. },
  9337. tongue: {
  9338. height: math.unit(2.865, "feet"),
  9339. name: "Tongue",
  9340. image: {
  9341. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9342. }
  9343. },
  9344. hand: {
  9345. height: math.unit(1.61, "feet"),
  9346. name: "Hand",
  9347. image: {
  9348. source: "./media/characters/sovrim-terraquian/hand.svg"
  9349. }
  9350. },
  9351. foot: {
  9352. height: math.unit(1.05, "feet"),
  9353. name: "Foot",
  9354. image: {
  9355. source: "./media/characters/sovrim-terraquian/foot.svg"
  9356. }
  9357. },
  9358. footAlt: {
  9359. height: math.unit(0.88, "feet"),
  9360. name: "Foot (Alt)",
  9361. image: {
  9362. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Micro",
  9369. height: math.unit(2, "inches")
  9370. },
  9371. {
  9372. name: "Small",
  9373. height: math.unit(1, "meter")
  9374. },
  9375. {
  9376. name: "Normal",
  9377. height: math.unit(Math.E, "meters"),
  9378. default: true
  9379. },
  9380. {
  9381. name: "Macro",
  9382. height: math.unit(20, "meters")
  9383. },
  9384. {
  9385. name: "Macro+",
  9386. height: math.unit(400, "meters")
  9387. },
  9388. ]
  9389. ))
  9390. characterMakers.push(() => makeCharacter(
  9391. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9392. {
  9393. front: {
  9394. height: math.unit(7, "feet"),
  9395. weight: math.unit(489, "lbs"),
  9396. name: "Front",
  9397. image: {
  9398. source: "./media/characters/reece-silvermane/front.svg",
  9399. bottom: 0.02,
  9400. extra: 1
  9401. }
  9402. },
  9403. },
  9404. [
  9405. {
  9406. name: "Macro",
  9407. height: math.unit(1.5, "miles"),
  9408. default: true
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9414. {
  9415. front: {
  9416. height: math.unit(6, "feet"),
  9417. weight: math.unit(78, "kg"),
  9418. name: "Front",
  9419. image: {
  9420. source: "./media/characters/kane/front.svg",
  9421. extra: 978 / 899
  9422. }
  9423. },
  9424. back: {
  9425. height: math.unit(6, "feet"),
  9426. weight: math.unit(78, "kg"),
  9427. name: "Back",
  9428. image: {
  9429. source: "./media/characters/kane/back.svg",
  9430. extra: 1966/1800,
  9431. bottom: 0/1966
  9432. }
  9433. },
  9434. head: {
  9435. height: math.unit(1.4, "feet"),
  9436. name: "Head",
  9437. image: {
  9438. source: "./media/characters/kane/head.svg"
  9439. }
  9440. },
  9441. },
  9442. [
  9443. {
  9444. name: "Normal",
  9445. height: math.unit(2.1, "m"),
  9446. },
  9447. {
  9448. name: "Macro",
  9449. height: math.unit(1, "km"),
  9450. default: true
  9451. },
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9456. {
  9457. front: {
  9458. height: math.unit(6, "feet"),
  9459. weight: math.unit(200, "kg"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/tegon/front.svg",
  9463. bottom: 0.01,
  9464. extra: 1
  9465. }
  9466. },
  9467. },
  9468. [
  9469. {
  9470. name: "Micro",
  9471. height: math.unit(1, "inch")
  9472. },
  9473. {
  9474. name: "Normal",
  9475. height: math.unit(6 + 3 / 12, "feet"),
  9476. default: true
  9477. },
  9478. {
  9479. name: "Macro",
  9480. height: math.unit(300, "feet")
  9481. },
  9482. {
  9483. name: "Megamacro",
  9484. height: math.unit(69, "miles")
  9485. },
  9486. ]
  9487. ))
  9488. characterMakers.push(() => makeCharacter(
  9489. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9490. {
  9491. side: {
  9492. height: math.unit(6, "feet"),
  9493. weight: math.unit(2304, "lbs"),
  9494. name: "Side",
  9495. image: {
  9496. source: "./media/characters/arcturax/side.svg",
  9497. extra: 790 / 376,
  9498. bottom: 0.01
  9499. }
  9500. },
  9501. },
  9502. [
  9503. {
  9504. name: "Micro",
  9505. height: math.unit(2, "inch")
  9506. },
  9507. {
  9508. name: "Normal",
  9509. height: math.unit(6, "feet")
  9510. },
  9511. {
  9512. name: "Macro",
  9513. height: math.unit(39, "feet"),
  9514. default: true
  9515. },
  9516. {
  9517. name: "Megamacro",
  9518. height: math.unit(7, "miles")
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9524. {
  9525. front: {
  9526. height: math.unit(6, "feet"),
  9527. weight: math.unit(50, "lbs"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/sentri/front.svg",
  9531. extra: 1750 / 1570,
  9532. bottom: 0.025
  9533. }
  9534. },
  9535. frontAlt: {
  9536. height: math.unit(6, "feet"),
  9537. weight: math.unit(50, "lbs"),
  9538. name: "Front (Alt)",
  9539. image: {
  9540. source: "./media/characters/sentri/front-alt.svg",
  9541. extra: 1750 / 1570,
  9542. bottom: 0.025
  9543. }
  9544. },
  9545. },
  9546. [
  9547. {
  9548. name: "Normal",
  9549. height: math.unit(15, "feet"),
  9550. default: true
  9551. },
  9552. {
  9553. name: "Macro",
  9554. height: math.unit(2500, "feet")
  9555. }
  9556. ]
  9557. ))
  9558. characterMakers.push(() => makeCharacter(
  9559. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9560. {
  9561. front: {
  9562. height: math.unit(5 + 8 / 12, "feet"),
  9563. weight: math.unit(130, "lbs"),
  9564. name: "Front",
  9565. image: {
  9566. source: "./media/characters/corvin/front.svg",
  9567. extra: 1803 / 1629
  9568. }
  9569. },
  9570. frontShirt: {
  9571. height: math.unit(5 + 8 / 12, "feet"),
  9572. weight: math.unit(130, "lbs"),
  9573. name: "Front (Shirt)",
  9574. image: {
  9575. source: "./media/characters/corvin/front-shirt.svg",
  9576. extra: 1803 / 1629
  9577. }
  9578. },
  9579. frontPoncho: {
  9580. height: math.unit(5 + 8 / 12, "feet"),
  9581. weight: math.unit(130, "lbs"),
  9582. name: "Front (Poncho)",
  9583. image: {
  9584. source: "./media/characters/corvin/front-poncho.svg",
  9585. extra: 1803 / 1629
  9586. }
  9587. },
  9588. side: {
  9589. height: math.unit(5 + 8 / 12, "feet"),
  9590. weight: math.unit(130, "lbs"),
  9591. name: "Side",
  9592. image: {
  9593. source: "./media/characters/corvin/side.svg",
  9594. extra: 1012 / 945
  9595. }
  9596. },
  9597. back: {
  9598. height: math.unit(5 + 8 / 12, "feet"),
  9599. weight: math.unit(130, "lbs"),
  9600. name: "Back",
  9601. image: {
  9602. source: "./media/characters/corvin/back.svg",
  9603. extra: 1803 / 1629
  9604. }
  9605. },
  9606. },
  9607. [
  9608. {
  9609. name: "Micro",
  9610. height: math.unit(3, "inches")
  9611. },
  9612. {
  9613. name: "Normal",
  9614. height: math.unit(5 + 8 / 12, "feet")
  9615. },
  9616. {
  9617. name: "Macro",
  9618. height: math.unit(300, "feet"),
  9619. default: true
  9620. },
  9621. {
  9622. name: "Megamacro",
  9623. height: math.unit(500, "miles")
  9624. }
  9625. ]
  9626. ))
  9627. characterMakers.push(() => makeCharacter(
  9628. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9629. {
  9630. front: {
  9631. height: math.unit(6, "feet"),
  9632. weight: math.unit(135, "lbs"),
  9633. name: "Front",
  9634. image: {
  9635. source: "./media/characters/q/front.svg",
  9636. extra: 854 / 752,
  9637. bottom: 0.005
  9638. }
  9639. },
  9640. back: {
  9641. height: math.unit(6, "feet"),
  9642. weight: math.unit(130, "lbs"),
  9643. name: "Back",
  9644. image: {
  9645. source: "./media/characters/q/back.svg",
  9646. extra: 854 / 752
  9647. }
  9648. },
  9649. },
  9650. [
  9651. {
  9652. name: "Macro",
  9653. height: math.unit(90, "feet"),
  9654. default: true
  9655. },
  9656. {
  9657. name: "Extra Macro",
  9658. height: math.unit(300, "feet"),
  9659. },
  9660. {
  9661. name: "BIG WALF",
  9662. height: math.unit(750, "feet"),
  9663. },
  9664. ]
  9665. ))
  9666. characterMakers.push(() => makeCharacter(
  9667. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9668. {
  9669. front: {
  9670. height: math.unit(3, "feet"),
  9671. weight: math.unit(28, "lbs"),
  9672. name: "Front",
  9673. image: {
  9674. source: "./media/characters/citrine/front.svg"
  9675. }
  9676. }
  9677. },
  9678. [
  9679. {
  9680. name: "Normal",
  9681. height: math.unit(3, "feet"),
  9682. default: true
  9683. }
  9684. ]
  9685. ))
  9686. characterMakers.push(() => makeCharacter(
  9687. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9688. {
  9689. front: {
  9690. height: math.unit(14, "feet"),
  9691. weight: math.unit(1450, "kg"),
  9692. preyCapacity: math.unit(15, "people"),
  9693. name: "Front",
  9694. image: {
  9695. source: "./media/characters/aura-starwind/front.svg",
  9696. extra: 1440/1327,
  9697. bottom: 11/1451
  9698. }
  9699. },
  9700. side: {
  9701. height: math.unit(14, "feet"),
  9702. weight: math.unit(1450, "kg"),
  9703. preyCapacity: math.unit(15, "people"),
  9704. name: "Side",
  9705. image: {
  9706. source: "./media/characters/aura-starwind/side.svg",
  9707. extra: 1654 / 1497
  9708. }
  9709. },
  9710. taur: {
  9711. height: math.unit(18, "feet"),
  9712. weight: math.unit(5500, "kg"),
  9713. preyCapacity: math.unit(50, "people"),
  9714. name: "Taur",
  9715. image: {
  9716. source: "./media/characters/aura-starwind/taur.svg",
  9717. extra: 1760 / 1650
  9718. }
  9719. },
  9720. feral: {
  9721. height: math.unit(46, "feet"),
  9722. weight: math.unit(25000, "kg"),
  9723. preyCapacity: math.unit(120, "people"),
  9724. name: "Feral",
  9725. image: {
  9726. source: "./media/characters/aura-starwind/feral.svg"
  9727. }
  9728. },
  9729. },
  9730. [
  9731. {
  9732. name: "Normal",
  9733. height: math.unit(14, "feet"),
  9734. default: true
  9735. },
  9736. {
  9737. name: "Macro",
  9738. height: math.unit(50, "meters")
  9739. },
  9740. {
  9741. name: "Megamacro",
  9742. height: math.unit(5000, "meters")
  9743. },
  9744. {
  9745. name: "Gigamacro",
  9746. height: math.unit(100000, "kilometers")
  9747. },
  9748. ]
  9749. ))
  9750. characterMakers.push(() => makeCharacter(
  9751. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9752. {
  9753. front: {
  9754. height: math.unit(2 + 7 / 12, "feet"),
  9755. weight: math.unit(32, "lbs"),
  9756. name: "Front",
  9757. image: {
  9758. source: "./media/characters/rivet/front.svg",
  9759. extra: 1716 / 1658,
  9760. bottom: 0.03
  9761. }
  9762. },
  9763. foot: {
  9764. height: math.unit(0.551, "feet"),
  9765. name: "Rivet's Foot",
  9766. image: {
  9767. source: "./media/characters/rivet/foot.svg"
  9768. },
  9769. rename: true
  9770. }
  9771. },
  9772. [
  9773. {
  9774. name: "Micro",
  9775. height: math.unit(1.5, "inches"),
  9776. },
  9777. {
  9778. name: "Normal",
  9779. height: math.unit(2 + 7 / 12, "feet"),
  9780. default: true
  9781. },
  9782. {
  9783. name: "Macro",
  9784. height: math.unit(85, "feet")
  9785. },
  9786. {
  9787. name: "Megamacro",
  9788. height: math.unit(2.2, "km")
  9789. }
  9790. ]
  9791. ))
  9792. characterMakers.push(() => makeCharacter(
  9793. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9794. {
  9795. front: {
  9796. height: math.unit(5 + 9 / 12, "feet"),
  9797. weight: math.unit(150, "lbs"),
  9798. name: "Front",
  9799. image: {
  9800. source: "./media/characters/coffee/front.svg",
  9801. extra: 946/880,
  9802. bottom: 66/1012
  9803. }
  9804. },
  9805. foot: {
  9806. height: math.unit(1.29, "feet"),
  9807. name: "Foot",
  9808. image: {
  9809. source: "./media/characters/coffee/foot.svg"
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Micro",
  9816. height: math.unit(2, "inches"),
  9817. },
  9818. {
  9819. name: "Normal",
  9820. height: math.unit(5 + 9 / 12, "feet"),
  9821. default: true
  9822. },
  9823. {
  9824. name: "Macro",
  9825. height: math.unit(800, "feet")
  9826. },
  9827. {
  9828. name: "Megamacro",
  9829. height: math.unit(25, "miles")
  9830. }
  9831. ]
  9832. ))
  9833. characterMakers.push(() => makeCharacter(
  9834. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9835. {
  9836. front: {
  9837. height: math.unit(6, "feet"),
  9838. weight: math.unit(200, "lbs"),
  9839. name: "Front",
  9840. image: {
  9841. source: "./media/characters/chari-gal/front.svg",
  9842. extra: 735/649,
  9843. bottom: 55/790
  9844. },
  9845. form: "normal",
  9846. default: true
  9847. },
  9848. back: {
  9849. height: math.unit(6, "feet"),
  9850. weight: math.unit(200, "lb"),
  9851. name: "Back",
  9852. image: {
  9853. source: "./media/characters/chari-gal/back.svg",
  9854. extra: 762/666,
  9855. bottom: 31/793
  9856. },
  9857. form: "normal"
  9858. },
  9859. mouth: {
  9860. height: math.unit(1.35, "feet"),
  9861. name: "Mouth",
  9862. image: {
  9863. source: "./media/characters/chari-gal/mouth.svg"
  9864. },
  9865. form: "normal"
  9866. },
  9867. gigantamax: {
  9868. height: math.unit(6 * 16, "feet"),
  9869. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9870. name: "Gigantamax",
  9871. image: {
  9872. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9873. extra: 1507/1149,
  9874. bottom: 254/1761
  9875. },
  9876. form: "gigantamax",
  9877. default: true
  9878. },
  9879. },
  9880. [
  9881. {
  9882. name: "Normal",
  9883. height: math.unit(5 + 7 / 12, "feet"),
  9884. form: "normal",
  9885. },
  9886. {
  9887. name: "Macro",
  9888. height: math.unit(200, "feet"),
  9889. default: true,
  9890. form: "normal"
  9891. },
  9892. {
  9893. name: "Normal",
  9894. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9895. form: "gigantamax",
  9896. },
  9897. {
  9898. name: "Macro",
  9899. height: math.unit(16 * 200, "feet"),
  9900. default: true,
  9901. form: "gigantamax"
  9902. },
  9903. ],
  9904. {
  9905. "normal": {
  9906. name: "Normal",
  9907. default: true
  9908. },
  9909. "gigantamax": {
  9910. name: "Gigantamax",
  9911. },
  9912. }
  9913. ))
  9914. characterMakers.push(() => makeCharacter(
  9915. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9916. {
  9917. front: {
  9918. height: math.unit(6, "feet"),
  9919. weight: math.unit(150, "lbs"),
  9920. name: "Front",
  9921. image: {
  9922. source: "./media/characters/nova/front.svg",
  9923. extra: 5000 / 4722,
  9924. bottom: 0.02
  9925. }
  9926. }
  9927. },
  9928. [
  9929. {
  9930. name: "Micro-",
  9931. height: math.unit(0.8, "inches")
  9932. },
  9933. {
  9934. name: "Micro",
  9935. height: math.unit(2, "inches"),
  9936. default: true
  9937. },
  9938. ]
  9939. ))
  9940. characterMakers.push(() => makeCharacter(
  9941. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9942. {
  9943. koboldFront: {
  9944. height: math.unit(3 + 1 / 12, "feet"),
  9945. weight: math.unit(21.7, "lbs"),
  9946. name: "Front",
  9947. image: {
  9948. source: "./media/characters/argent/kobold-front.svg",
  9949. extra: 1471 / 1331,
  9950. bottom: 100.8 / 1575.5
  9951. },
  9952. form: "kobold",
  9953. default: true
  9954. },
  9955. dragonFront: {
  9956. height: math.unit(75, "inches"),
  9957. name: "Front",
  9958. image: {
  9959. source: "./media/characters/argent/dragon-front.svg",
  9960. extra: 1389/1248,
  9961. bottom: 54/1443
  9962. },
  9963. form: "dragon",
  9964. },
  9965. dragonBack: {
  9966. height: math.unit(75, "inches"),
  9967. name: "Back",
  9968. image: {
  9969. source: "./media/characters/argent/dragon-back.svg",
  9970. extra: 1399/1271,
  9971. bottom: 23/1422
  9972. },
  9973. form: "dragon",
  9974. },
  9975. dragonDressed: {
  9976. height: math.unit(75, "inches"),
  9977. name: "Dressed",
  9978. image: {
  9979. source: "./media/characters/argent/dragon-dressed.svg",
  9980. extra: 1350/1215,
  9981. bottom: 26/1376
  9982. },
  9983. form: "dragon"
  9984. },
  9985. dragonHead: {
  9986. height: math.unit(23.5, "inches"),
  9987. name: "Head",
  9988. image: {
  9989. source: "./media/characters/argent/dragon-head.svg"
  9990. },
  9991. form: "dragon",
  9992. },
  9993. },
  9994. [
  9995. {
  9996. name: "Micro",
  9997. height: math.unit(2, "inches"),
  9998. form: "kobold",
  9999. },
  10000. {
  10001. name: "Normal",
  10002. height: math.unit(3 + 1 / 12, "feet"),
  10003. form: "kobold",
  10004. default: true
  10005. },
  10006. {
  10007. name: "Macro",
  10008. height: math.unit(120, "feet"),
  10009. form: "kobold",
  10010. },
  10011. {
  10012. name: "Speck",
  10013. height: math.unit(1, "mm"),
  10014. form: "dragon",
  10015. },
  10016. {
  10017. name: "Tiny",
  10018. height: math.unit(1, "cm"),
  10019. form: "dragon",
  10020. },
  10021. {
  10022. name: "Micro",
  10023. height: math.unit(5, "cm"),
  10024. form: "dragon",
  10025. },
  10026. {
  10027. name: "Normal",
  10028. height: math.unit(75, "inches"),
  10029. form: "dragon",
  10030. default: true
  10031. },
  10032. {
  10033. name: "Extra Tall",
  10034. height: math.unit(9, "feet"),
  10035. form: "dragon",
  10036. },
  10037. {
  10038. name: "Inconvenient",
  10039. height: math.unit(5, "meters"),
  10040. form: "dragon",
  10041. },
  10042. {
  10043. name: "Macro",
  10044. height: math.unit(70, "meters"),
  10045. form: "dragon",
  10046. },
  10047. {
  10048. name: "Macro+",
  10049. height: math.unit(250, "meters"),
  10050. form: "dragon",
  10051. },
  10052. {
  10053. name: "Megamacro",
  10054. height: math.unit(20, "km"),
  10055. form: "dragon",
  10056. },
  10057. {
  10058. name: "Mountainous",
  10059. height: math.unit(100, "km"),
  10060. form: "dragon",
  10061. },
  10062. {
  10063. name: "Continental",
  10064. height: math.unit(2, "megameters"),
  10065. form: "dragon",
  10066. },
  10067. {
  10068. name: "Too Big",
  10069. height: math.unit(900, "megameters"),
  10070. form: "dragon",
  10071. },
  10072. ],
  10073. {
  10074. "kobold": {
  10075. name: "Kobold",
  10076. default: true
  10077. },
  10078. "dragon": {
  10079. name: "Dragon",
  10080. },
  10081. }
  10082. ))
  10083. characterMakers.push(() => makeCharacter(
  10084. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10085. {
  10086. lamp: {
  10087. height: math.unit(7 * 1559 / 989, "feet"),
  10088. name: "Magic Lamp",
  10089. image: {
  10090. source: "./media/characters/mira-al-cul/lamp.svg",
  10091. extra: 1617 / 1559
  10092. }
  10093. },
  10094. front: {
  10095. height: math.unit(7, "feet"),
  10096. name: "Front",
  10097. image: {
  10098. source: "./media/characters/mira-al-cul/front.svg",
  10099. extra: 1044 / 990
  10100. }
  10101. },
  10102. },
  10103. [
  10104. {
  10105. name: "Heavily Restricted",
  10106. height: math.unit(7 * 1559 / 989, "feet")
  10107. },
  10108. {
  10109. name: "Freshly Freed",
  10110. height: math.unit(50 * 1559 / 989, "feet")
  10111. },
  10112. {
  10113. name: "World Encompassing",
  10114. height: math.unit(10000 * 1559 / 989, "miles")
  10115. },
  10116. {
  10117. name: "Galactic",
  10118. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10119. },
  10120. {
  10121. name: "Palmed Universe",
  10122. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10123. default: true
  10124. },
  10125. {
  10126. name: "Multiversal Matriarch",
  10127. height: math.unit(8.87e10, "yottameters")
  10128. },
  10129. {
  10130. name: "Void Mother",
  10131. height: math.unit(3.14e110, "yottaparsecs")
  10132. },
  10133. {
  10134. name: "Toying with Transcendence",
  10135. height: math.unit(1e307, "meters")
  10136. },
  10137. ]
  10138. ))
  10139. characterMakers.push(() => makeCharacter(
  10140. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10141. {
  10142. front: {
  10143. height: math.unit(17 + 1 / 12, "feet"),
  10144. weight: math.unit(476.2 * 5, "lbs"),
  10145. name: "Front",
  10146. image: {
  10147. source: "./media/characters/kuro-shi-uchū/front.svg",
  10148. extra: 2329 / 1835,
  10149. bottom: 0.02
  10150. }
  10151. },
  10152. },
  10153. [
  10154. {
  10155. name: "Micro",
  10156. height: math.unit(2, "inches")
  10157. },
  10158. {
  10159. name: "Normal",
  10160. height: math.unit(12, "meters")
  10161. },
  10162. {
  10163. name: "Planetary",
  10164. height: math.unit(0.00929, "AU"),
  10165. default: true
  10166. },
  10167. {
  10168. name: "Universal",
  10169. height: math.unit(20, "gigaparsecs")
  10170. },
  10171. ]
  10172. ))
  10173. characterMakers.push(() => makeCharacter(
  10174. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10175. {
  10176. front: {
  10177. height: math.unit(5 + 2 / 12, "feet"),
  10178. weight: math.unit(120, "lbs"),
  10179. name: "Front",
  10180. image: {
  10181. source: "./media/characters/katherine/front.svg",
  10182. extra: 2075 / 1969
  10183. }
  10184. },
  10185. dress: {
  10186. height: math.unit(5 + 2 / 12, "feet"),
  10187. weight: math.unit(120, "lbs"),
  10188. name: "Dress",
  10189. image: {
  10190. source: "./media/characters/katherine/dress.svg",
  10191. extra: 2258 / 2064
  10192. }
  10193. },
  10194. },
  10195. [
  10196. {
  10197. name: "Micro",
  10198. height: math.unit(1, "inches"),
  10199. default: true
  10200. },
  10201. {
  10202. name: "Normal",
  10203. height: math.unit(5 + 2 / 12, "feet")
  10204. },
  10205. {
  10206. name: "Macro",
  10207. height: math.unit(100, "meters")
  10208. },
  10209. {
  10210. name: "Megamacro",
  10211. height: math.unit(80, "miles")
  10212. },
  10213. ]
  10214. ))
  10215. characterMakers.push(() => makeCharacter(
  10216. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10217. {
  10218. front: {
  10219. height: math.unit(7 + 8 / 12, "feet"),
  10220. weight: math.unit(250, "lbs"),
  10221. name: "Front",
  10222. image: {
  10223. source: "./media/characters/yevis/front.svg",
  10224. extra: 1938 / 1755
  10225. }
  10226. }
  10227. },
  10228. [
  10229. {
  10230. name: "Mortal",
  10231. height: math.unit(7 + 8 / 12, "feet")
  10232. },
  10233. {
  10234. name: "Battle",
  10235. height: math.unit(25 + 11 / 12, "feet")
  10236. },
  10237. {
  10238. name: "Wrath",
  10239. height: math.unit(1654 + 11 / 12, "feet")
  10240. },
  10241. {
  10242. name: "Planet Destroyer",
  10243. height: math.unit(12000, "miles")
  10244. },
  10245. {
  10246. name: "Galaxy Conqueror",
  10247. height: math.unit(1.45, "zettameters"),
  10248. default: true
  10249. },
  10250. {
  10251. name: "Universal War",
  10252. height: math.unit(184, "gigaparsecs")
  10253. },
  10254. {
  10255. name: "Eternity War",
  10256. height: math.unit(1.98e55, "yottaparsecs")
  10257. },
  10258. ]
  10259. ))
  10260. characterMakers.push(() => makeCharacter(
  10261. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10262. {
  10263. front: {
  10264. height: math.unit(5 + 8 / 12, "feet"),
  10265. weight: math.unit(63, "kg"),
  10266. name: "Front",
  10267. image: {
  10268. source: "./media/characters/xavier/front.svg",
  10269. extra: 944 / 883
  10270. }
  10271. },
  10272. frontStretch: {
  10273. height: math.unit(5 + 8 / 12, "feet"),
  10274. weight: math.unit(63, "kg"),
  10275. name: "Stretching",
  10276. image: {
  10277. source: "./media/characters/xavier/front-stretch.svg",
  10278. extra: 962 / 820
  10279. }
  10280. },
  10281. },
  10282. [
  10283. {
  10284. name: "Normal",
  10285. height: math.unit(5 + 8 / 12, "feet")
  10286. },
  10287. {
  10288. name: "Macro",
  10289. height: math.unit(100, "meters"),
  10290. default: true
  10291. },
  10292. {
  10293. name: "McLargeHuge",
  10294. height: math.unit(10, "miles")
  10295. },
  10296. ]
  10297. ))
  10298. characterMakers.push(() => makeCharacter(
  10299. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10300. {
  10301. front: {
  10302. height: math.unit(5 + 5 / 12, "feet"),
  10303. weight: math.unit(150, "lb"),
  10304. name: "Front",
  10305. image: {
  10306. source: "./media/characters/joshii/front.svg",
  10307. extra: 765 / 653,
  10308. bottom: 51 / 816
  10309. }
  10310. },
  10311. foot: {
  10312. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10313. name: "Foot",
  10314. image: {
  10315. source: "./media/characters/joshii/foot.svg"
  10316. }
  10317. },
  10318. },
  10319. [
  10320. {
  10321. name: "Micro",
  10322. height: math.unit(2, "inches")
  10323. },
  10324. {
  10325. name: "Normal",
  10326. height: math.unit(5 + 5 / 12, "feet")
  10327. },
  10328. {
  10329. name: "Macro",
  10330. height: math.unit(785, "feet"),
  10331. default: true
  10332. },
  10333. {
  10334. name: "Megamacro",
  10335. height: math.unit(24.5, "miles")
  10336. },
  10337. ]
  10338. ))
  10339. characterMakers.push(() => makeCharacter(
  10340. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10341. {
  10342. front: {
  10343. height: math.unit(6, "feet"),
  10344. weight: math.unit(150, "lb"),
  10345. name: "Front",
  10346. image: {
  10347. source: "./media/characters/goddess-elizabeth/front.svg",
  10348. extra: 1800 / 1525,
  10349. bottom: 0.005
  10350. }
  10351. },
  10352. foot: {
  10353. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10354. name: "Foot",
  10355. image: {
  10356. source: "./media/characters/goddess-elizabeth/foot.svg"
  10357. }
  10358. },
  10359. mouth: {
  10360. height: math.unit(6, "feet"),
  10361. name: "Mouth",
  10362. image: {
  10363. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10364. }
  10365. },
  10366. },
  10367. [
  10368. {
  10369. name: "Micro",
  10370. height: math.unit(12, "feet")
  10371. },
  10372. {
  10373. name: "Normal",
  10374. height: math.unit(80, "miles"),
  10375. default: true
  10376. },
  10377. {
  10378. name: "Macro",
  10379. height: math.unit(15000, "parsecs")
  10380. },
  10381. ]
  10382. ))
  10383. characterMakers.push(() => makeCharacter(
  10384. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10385. {
  10386. front: {
  10387. height: math.unit(5 + 9 / 12, "feet"),
  10388. weight: math.unit(144, "lb"),
  10389. name: "Front",
  10390. image: {
  10391. source: "./media/characters/kara/front.svg"
  10392. }
  10393. },
  10394. feet: {
  10395. height: math.unit(6 / 6.765, "feet"),
  10396. name: "Kara's Feet",
  10397. rename: true,
  10398. image: {
  10399. source: "./media/characters/kara/feet.svg"
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(5 + 9 / 12, "feet")
  10407. },
  10408. {
  10409. name: "Macro",
  10410. height: math.unit(174, "feet"),
  10411. default: true
  10412. },
  10413. ]
  10414. ))
  10415. characterMakers.push(() => makeCharacter(
  10416. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10417. {
  10418. front: {
  10419. height: math.unit(18, "feet"),
  10420. weight: math.unit(4050, "lb"),
  10421. name: "Front",
  10422. image: {
  10423. source: "./media/characters/tyrone/front.svg",
  10424. extra: 2405 / 2270,
  10425. bottom: 182 / 2587
  10426. }
  10427. },
  10428. },
  10429. [
  10430. {
  10431. name: "Normal",
  10432. height: math.unit(18, "feet"),
  10433. default: true
  10434. },
  10435. {
  10436. name: "Macro",
  10437. height: math.unit(300, "feet")
  10438. },
  10439. {
  10440. name: "Megamacro",
  10441. height: math.unit(15, "km")
  10442. },
  10443. {
  10444. name: "Gigamacro",
  10445. height: math.unit(500, "km")
  10446. },
  10447. {
  10448. name: "Teramacro",
  10449. height: math.unit(0.5, "gigameters")
  10450. },
  10451. {
  10452. name: "Omnimacro",
  10453. height: math.unit(1e252, "yottauniverse")
  10454. },
  10455. ]
  10456. ))
  10457. characterMakers.push(() => makeCharacter(
  10458. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10459. {
  10460. front: {
  10461. height: math.unit(7 + 8 / 12, "feet"),
  10462. weight: math.unit(120, "lb"),
  10463. name: "Front",
  10464. image: {
  10465. source: "./media/characters/danny/front.svg",
  10466. extra: 1490 / 1350
  10467. }
  10468. },
  10469. back: {
  10470. height: math.unit(7 + 8 / 12, "feet"),
  10471. weight: math.unit(120, "lb"),
  10472. name: "Back",
  10473. image: {
  10474. source: "./media/characters/danny/back.svg",
  10475. extra: 1490 / 1350
  10476. }
  10477. },
  10478. },
  10479. [
  10480. {
  10481. name: "Normal",
  10482. height: math.unit(7 + 8 / 12, "feet"),
  10483. default: true
  10484. },
  10485. ]
  10486. ))
  10487. characterMakers.push(() => makeCharacter(
  10488. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10489. {
  10490. front: {
  10491. height: math.unit(3.5, "inches"),
  10492. weight: math.unit(19, "grams"),
  10493. name: "Front",
  10494. image: {
  10495. source: "./media/characters/mallow/front.svg",
  10496. extra: 471 / 431
  10497. }
  10498. },
  10499. back: {
  10500. height: math.unit(3.5, "inches"),
  10501. weight: math.unit(19, "grams"),
  10502. name: "Back",
  10503. image: {
  10504. source: "./media/characters/mallow/back.svg",
  10505. extra: 471 / 431
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Normal",
  10512. height: math.unit(3.5, "inches"),
  10513. default: true
  10514. },
  10515. ]
  10516. ))
  10517. characterMakers.push(() => makeCharacter(
  10518. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10519. {
  10520. front: {
  10521. height: math.unit(9, "feet"),
  10522. weight: math.unit(230, "kg"),
  10523. name: "Front",
  10524. image: {
  10525. source: "./media/characters/starry-aqua/front.svg"
  10526. }
  10527. },
  10528. back: {
  10529. height: math.unit(9, "feet"),
  10530. weight: math.unit(230, "kg"),
  10531. name: "Back",
  10532. image: {
  10533. source: "./media/characters/starry-aqua/back.svg"
  10534. }
  10535. },
  10536. hand: {
  10537. height: math.unit(9 * 0.1168, "feet"),
  10538. name: "Hand",
  10539. image: {
  10540. source: "./media/characters/starry-aqua/hand.svg"
  10541. }
  10542. },
  10543. foot: {
  10544. height: math.unit(9 * 0.18, "feet"),
  10545. name: "Foot",
  10546. image: {
  10547. source: "./media/characters/starry-aqua/foot.svg"
  10548. }
  10549. }
  10550. },
  10551. [
  10552. {
  10553. name: "Micro",
  10554. height: math.unit(3, "inches")
  10555. },
  10556. {
  10557. name: "Normal",
  10558. height: math.unit(9, "feet")
  10559. },
  10560. {
  10561. name: "Macro",
  10562. height: math.unit(300, "feet"),
  10563. default: true
  10564. },
  10565. {
  10566. name: "Megamacro",
  10567. height: math.unit(3200, "feet")
  10568. }
  10569. ]
  10570. ))
  10571. characterMakers.push(() => makeCharacter(
  10572. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10573. {
  10574. front: {
  10575. height: math.unit(15, "feet"),
  10576. weight: math.unit(5026, "lb"),
  10577. name: "Front",
  10578. image: {
  10579. source: "./media/characters/luka-towers/front.svg",
  10580. extra: 1269/1133,
  10581. bottom: 51/1320
  10582. }
  10583. },
  10584. },
  10585. [
  10586. {
  10587. name: "Normal",
  10588. height: math.unit(15, "feet"),
  10589. default: true
  10590. },
  10591. {
  10592. name: "Minimacro",
  10593. height: math.unit(25, "feet")
  10594. },
  10595. {
  10596. name: "Macro",
  10597. height: math.unit(320, "feet")
  10598. },
  10599. {
  10600. name: "Megamacro",
  10601. height: math.unit(35000, "feet")
  10602. },
  10603. {
  10604. name: "Gigamacro",
  10605. height: math.unit(4000, "miles")
  10606. },
  10607. {
  10608. name: "Teramacro",
  10609. height: math.unit(15000, "miles")
  10610. },
  10611. ]
  10612. ))
  10613. characterMakers.push(() => makeCharacter(
  10614. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10615. {
  10616. front: {
  10617. height: math.unit(6, "feet"),
  10618. weight: math.unit(150, "lb"),
  10619. name: "Front",
  10620. image: {
  10621. source: "./media/characters/natalie-nightring/front.svg",
  10622. extra: 1,
  10623. bottom: 0.06
  10624. }
  10625. },
  10626. },
  10627. [
  10628. {
  10629. name: "Uh Oh",
  10630. height: math.unit(0.1, "mm")
  10631. },
  10632. {
  10633. name: "Small",
  10634. height: math.unit(3, "inches")
  10635. },
  10636. {
  10637. name: "Human Scale",
  10638. height: math.unit(6, "feet")
  10639. },
  10640. {
  10641. name: "Librarian",
  10642. height: math.unit(50, "feet"),
  10643. default: true
  10644. },
  10645. {
  10646. name: "Immense",
  10647. height: math.unit(200, "miles")
  10648. },
  10649. ]
  10650. ))
  10651. characterMakers.push(() => makeCharacter(
  10652. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10653. {
  10654. front: {
  10655. height: math.unit(6, "feet"),
  10656. weight: math.unit(180, "lbs"),
  10657. name: "Front",
  10658. image: {
  10659. source: "./media/characters/danni-rosie/front.svg",
  10660. extra: 1260 / 1128,
  10661. bottom: 0.022
  10662. }
  10663. },
  10664. },
  10665. [
  10666. {
  10667. name: "Micro",
  10668. height: math.unit(2, "inches"),
  10669. default: true
  10670. },
  10671. ]
  10672. ))
  10673. characterMakers.push(() => makeCharacter(
  10674. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10675. {
  10676. front: {
  10677. height: math.unit(5 + 9 / 12, "feet"),
  10678. weight: math.unit(220, "lb"),
  10679. name: "Front",
  10680. image: {
  10681. source: "./media/characters/samantha-kruse/front.svg",
  10682. extra: (985 / 935),
  10683. bottom: 0.03
  10684. }
  10685. },
  10686. frontUndressed: {
  10687. height: math.unit(5 + 9 / 12, "feet"),
  10688. weight: math.unit(220, "lb"),
  10689. name: "Front (Undressed)",
  10690. image: {
  10691. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10692. extra: (973 / 923),
  10693. bottom: 0.025
  10694. }
  10695. },
  10696. fat: {
  10697. height: math.unit(5 + 9 / 12, "feet"),
  10698. weight: math.unit(900, "lb"),
  10699. name: "Front (Fat)",
  10700. image: {
  10701. source: "./media/characters/samantha-kruse/fat.svg",
  10702. extra: 2688 / 2561
  10703. }
  10704. },
  10705. },
  10706. [
  10707. {
  10708. name: "Normal",
  10709. height: math.unit(5 + 9 / 12, "feet"),
  10710. default: true
  10711. }
  10712. ]
  10713. ))
  10714. characterMakers.push(() => makeCharacter(
  10715. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10716. {
  10717. back: {
  10718. height: math.unit(5 + 4 / 12, "feet"),
  10719. weight: math.unit(4963, "lb"),
  10720. name: "Back",
  10721. image: {
  10722. source: "./media/characters/amelia-rosie/back.svg",
  10723. extra: 1113 / 963,
  10724. bottom: 0.01
  10725. }
  10726. },
  10727. },
  10728. [
  10729. {
  10730. name: "Level 0",
  10731. height: math.unit(5 + 4 / 12, "feet")
  10732. },
  10733. {
  10734. name: "Level 1",
  10735. height: math.unit(164597, "feet"),
  10736. default: true
  10737. },
  10738. {
  10739. name: "Level 2",
  10740. height: math.unit(956243, "miles")
  10741. },
  10742. {
  10743. name: "Level 3",
  10744. height: math.unit(29421709423, "miles")
  10745. },
  10746. {
  10747. name: "Level 4",
  10748. height: math.unit(154, "lightyears")
  10749. },
  10750. {
  10751. name: "Level 5",
  10752. height: math.unit(4738272, "lightyears")
  10753. },
  10754. {
  10755. name: "Level 6",
  10756. height: math.unit(145787152896, "lightyears")
  10757. },
  10758. ]
  10759. ))
  10760. characterMakers.push(() => makeCharacter(
  10761. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10762. {
  10763. front: {
  10764. height: math.unit(5 + 11 / 12, "feet"),
  10765. weight: math.unit(65, "kg"),
  10766. name: "Front",
  10767. image: {
  10768. source: "./media/characters/rook-kitara/front.svg",
  10769. extra: 1347 / 1274,
  10770. bottom: 0.005
  10771. }
  10772. },
  10773. },
  10774. [
  10775. {
  10776. name: "Totally Unfair",
  10777. height: math.unit(1.8, "mm")
  10778. },
  10779. {
  10780. name: "Lap Rookie",
  10781. height: math.unit(1.4, "feet")
  10782. },
  10783. {
  10784. name: "Normal",
  10785. height: math.unit(5 + 11 / 12, "feet"),
  10786. default: true
  10787. },
  10788. {
  10789. name: "How Did This Happen",
  10790. height: math.unit(80, "miles")
  10791. }
  10792. ]
  10793. ))
  10794. characterMakers.push(() => makeCharacter(
  10795. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10796. {
  10797. front: {
  10798. height: math.unit(7, "feet"),
  10799. weight: math.unit(300, "lb"),
  10800. name: "Front",
  10801. image: {
  10802. source: "./media/characters/pisces/front.svg",
  10803. extra: 2255 / 2115,
  10804. bottom: 0.03
  10805. }
  10806. },
  10807. back: {
  10808. height: math.unit(7, "feet"),
  10809. weight: math.unit(300, "lb"),
  10810. name: "Back",
  10811. image: {
  10812. source: "./media/characters/pisces/back.svg",
  10813. extra: 2146 / 2055,
  10814. bottom: 0.04
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Normal",
  10821. height: math.unit(7, "feet"),
  10822. default: true
  10823. },
  10824. {
  10825. name: "Swimming Pool",
  10826. height: math.unit(12.2, "meters")
  10827. },
  10828. {
  10829. name: "Olympic Swimming Pool",
  10830. height: math.unit(56.3, "meters")
  10831. },
  10832. {
  10833. name: "Lake Superior",
  10834. height: math.unit(93900, "meters")
  10835. },
  10836. {
  10837. name: "Mediterranean Sea",
  10838. height: math.unit(644457, "meters")
  10839. },
  10840. {
  10841. name: "World's Oceans",
  10842. height: math.unit(4567491, "meters")
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10848. {
  10849. front: {
  10850. height: math.unit(2.3, "meters"),
  10851. weight: math.unit(120, "kg"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/zelas/front.svg"
  10855. }
  10856. },
  10857. side: {
  10858. height: math.unit(2.3, "meters"),
  10859. weight: math.unit(120, "kg"),
  10860. name: "Side",
  10861. image: {
  10862. source: "./media/characters/zelas/side.svg"
  10863. }
  10864. },
  10865. back: {
  10866. height: math.unit(2.3, "meters"),
  10867. weight: math.unit(120, "kg"),
  10868. name: "Back",
  10869. image: {
  10870. source: "./media/characters/zelas/back.svg"
  10871. }
  10872. },
  10873. foot: {
  10874. height: math.unit(1.116, "feet"),
  10875. name: "Foot",
  10876. image: {
  10877. source: "./media/characters/zelas/foot.svg"
  10878. }
  10879. },
  10880. },
  10881. [
  10882. {
  10883. name: "Normal",
  10884. height: math.unit(2.3, "meters")
  10885. },
  10886. {
  10887. name: "Macro",
  10888. height: math.unit(30, "meters"),
  10889. default: true
  10890. },
  10891. ]
  10892. ))
  10893. characterMakers.push(() => makeCharacter(
  10894. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10895. {
  10896. front: {
  10897. height: math.unit(1, "inch"),
  10898. weight: math.unit(0.21, "grams"),
  10899. name: "Front",
  10900. image: {
  10901. source: "./media/characters/talbot/front.svg",
  10902. extra: 594 / 544
  10903. }
  10904. },
  10905. },
  10906. [
  10907. {
  10908. name: "Micro",
  10909. height: math.unit(1, "inch"),
  10910. default: true
  10911. },
  10912. ]
  10913. ))
  10914. characterMakers.push(() => makeCharacter(
  10915. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10916. {
  10917. front: {
  10918. height: math.unit(3 + 3 / 12, "feet"),
  10919. weight: math.unit(51.8, "lb"),
  10920. name: "Front",
  10921. image: {
  10922. source: "./media/characters/fliss/front.svg",
  10923. extra: 840 / 640
  10924. }
  10925. },
  10926. },
  10927. [
  10928. {
  10929. name: "Teeny Tiny",
  10930. height: math.unit(1, "mm")
  10931. },
  10932. {
  10933. name: "Small",
  10934. height: math.unit(1, "inch"),
  10935. default: true
  10936. },
  10937. {
  10938. name: "Standard Sylveon",
  10939. height: math.unit(3 + 3 / 12, "feet")
  10940. },
  10941. {
  10942. name: "Large Nuisance",
  10943. height: math.unit(33, "feet")
  10944. },
  10945. {
  10946. name: "City Filler",
  10947. height: math.unit(3000, "feet")
  10948. },
  10949. {
  10950. name: "New Horizon",
  10951. height: math.unit(6000, "miles")
  10952. },
  10953. ]
  10954. ))
  10955. characterMakers.push(() => makeCharacter(
  10956. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10957. {
  10958. front: {
  10959. height: math.unit(5, "cm"),
  10960. weight: math.unit(1.94, "g"),
  10961. name: "Front",
  10962. image: {
  10963. source: "./media/characters/fleta/front.svg",
  10964. extra: 835 / 803
  10965. }
  10966. },
  10967. back: {
  10968. height: math.unit(5, "cm"),
  10969. weight: math.unit(1.94, "g"),
  10970. name: "Back",
  10971. image: {
  10972. source: "./media/characters/fleta/back.svg",
  10973. extra: 835 / 803
  10974. }
  10975. },
  10976. },
  10977. [
  10978. {
  10979. name: "Micro",
  10980. height: math.unit(5, "cm"),
  10981. default: true
  10982. },
  10983. ]
  10984. ))
  10985. characterMakers.push(() => makeCharacter(
  10986. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10987. {
  10988. front: {
  10989. height: math.unit(6, "feet"),
  10990. weight: math.unit(225, "lb"),
  10991. name: "Front",
  10992. image: {
  10993. source: "./media/characters/dominic/front.svg",
  10994. extra: 1770 / 1620,
  10995. bottom: 0.025
  10996. }
  10997. },
  10998. back: {
  10999. height: math.unit(6, "feet"),
  11000. weight: math.unit(225, "lb"),
  11001. name: "Back",
  11002. image: {
  11003. source: "./media/characters/dominic/back.svg",
  11004. extra: 1745 / 1620,
  11005. bottom: 0.065
  11006. }
  11007. },
  11008. },
  11009. [
  11010. {
  11011. name: "Nano",
  11012. height: math.unit(0.1, "mm")
  11013. },
  11014. {
  11015. name: "Micro-",
  11016. height: math.unit(1, "mm")
  11017. },
  11018. {
  11019. name: "Micro",
  11020. height: math.unit(4, "inches")
  11021. },
  11022. {
  11023. name: "Normal",
  11024. height: math.unit(6 + 4 / 12, "feet"),
  11025. default: true
  11026. },
  11027. {
  11028. name: "Macro",
  11029. height: math.unit(115, "feet")
  11030. },
  11031. {
  11032. name: "Macro+",
  11033. height: math.unit(955, "feet")
  11034. },
  11035. {
  11036. name: "Megamacro",
  11037. height: math.unit(8990, "feet")
  11038. },
  11039. {
  11040. name: "Gigmacro",
  11041. height: math.unit(9310, "miles")
  11042. },
  11043. {
  11044. name: "Teramacro",
  11045. height: math.unit(1567005010, "miles")
  11046. },
  11047. {
  11048. name: "Examacro",
  11049. height: math.unit(1425, "parsecs")
  11050. },
  11051. ]
  11052. ))
  11053. characterMakers.push(() => makeCharacter(
  11054. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11055. {
  11056. front: {
  11057. height: math.unit(400, "feet"),
  11058. weight: math.unit(44444444, "lb"),
  11059. name: "Front",
  11060. image: {
  11061. source: "./media/characters/major-colonel/front.svg"
  11062. }
  11063. },
  11064. back: {
  11065. height: math.unit(400, "feet"),
  11066. weight: math.unit(44444444, "lb"),
  11067. name: "Back",
  11068. image: {
  11069. source: "./media/characters/major-colonel/back.svg"
  11070. }
  11071. },
  11072. },
  11073. [
  11074. {
  11075. name: "Macro",
  11076. height: math.unit(400, "feet"),
  11077. default: true
  11078. },
  11079. ]
  11080. ))
  11081. characterMakers.push(() => makeCharacter(
  11082. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11083. {
  11084. catFront: {
  11085. height: math.unit(6, "feet"),
  11086. weight: math.unit(120, "lb"),
  11087. name: "Front (Cat Side)",
  11088. image: {
  11089. source: "./media/characters/axel-lycan/cat-front.svg",
  11090. extra: 430 / 402,
  11091. bottom: 43 / 472.35
  11092. }
  11093. },
  11094. catBack: {
  11095. height: math.unit(6, "feet"),
  11096. weight: math.unit(120, "lb"),
  11097. name: "Back (Cat Side)",
  11098. image: {
  11099. source: "./media/characters/axel-lycan/cat-back.svg",
  11100. extra: 447 / 419,
  11101. bottom: 23.3 / 469
  11102. }
  11103. },
  11104. wolfFront: {
  11105. height: math.unit(6, "feet"),
  11106. weight: math.unit(120, "lb"),
  11107. name: "Front (Wolf Side)",
  11108. image: {
  11109. source: "./media/characters/axel-lycan/wolf-front.svg",
  11110. extra: 485 / 456,
  11111. bottom: 19 / 504
  11112. }
  11113. },
  11114. wolfBack: {
  11115. height: math.unit(6, "feet"),
  11116. weight: math.unit(120, "lb"),
  11117. name: "Back (Wolf Side)",
  11118. image: {
  11119. source: "./media/characters/axel-lycan/wolf-back.svg",
  11120. extra: 475 / 438,
  11121. bottom: 39.2 / 514
  11122. }
  11123. },
  11124. },
  11125. [
  11126. {
  11127. name: "Macro",
  11128. height: math.unit(1, "km"),
  11129. default: true
  11130. },
  11131. ]
  11132. ))
  11133. characterMakers.push(() => makeCharacter(
  11134. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11135. {
  11136. front: {
  11137. height: math.unit(5 + 9 / 12, "feet"),
  11138. weight: math.unit(175, "lb"),
  11139. name: "Front",
  11140. image: {
  11141. source: "./media/characters/vanrel-hyena/front.svg",
  11142. extra: 1086 / 1010,
  11143. bottom: 0.04
  11144. }
  11145. },
  11146. },
  11147. [
  11148. {
  11149. name: "Normal",
  11150. height: math.unit(5 + 9 / 12, "feet"),
  11151. default: true
  11152. },
  11153. ]
  11154. ))
  11155. characterMakers.push(() => makeCharacter(
  11156. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11157. {
  11158. front: {
  11159. height: math.unit(6, "feet"),
  11160. weight: math.unit(103, "lb"),
  11161. name: "Front",
  11162. image: {
  11163. source: "./media/characters/abbott-absol/front.svg",
  11164. extra: 765/694,
  11165. bottom: 47/812
  11166. }
  11167. },
  11168. },
  11169. [
  11170. {
  11171. name: "Megamicro",
  11172. height: math.unit(0.1, "mm")
  11173. },
  11174. {
  11175. name: "Micro",
  11176. height: math.unit(1, "inch")
  11177. },
  11178. {
  11179. name: "Normal",
  11180. height: math.unit(6, "feet"),
  11181. default: true
  11182. },
  11183. ]
  11184. ))
  11185. characterMakers.push(() => makeCharacter(
  11186. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11187. {
  11188. front: {
  11189. height: math.unit(6, "feet"),
  11190. weight: math.unit(264, "lb"),
  11191. name: "Front",
  11192. image: {
  11193. source: "./media/characters/hector/front.svg",
  11194. extra: 2280 / 2130,
  11195. bottom: 0.07
  11196. }
  11197. },
  11198. },
  11199. [
  11200. {
  11201. name: "Normal",
  11202. height: math.unit(12.25, "foot"),
  11203. default: true
  11204. },
  11205. {
  11206. name: "Macro",
  11207. height: math.unit(160, "feet")
  11208. },
  11209. ]
  11210. ))
  11211. characterMakers.push(() => makeCharacter(
  11212. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11213. {
  11214. front: {
  11215. height: math.unit(6, "feet"),
  11216. weight: math.unit(150, "lb"),
  11217. name: "Front",
  11218. image: {
  11219. source: "./media/characters/sal/front.svg",
  11220. extra: 1846 / 1699,
  11221. bottom: 0.04
  11222. }
  11223. },
  11224. },
  11225. [
  11226. {
  11227. name: "Megamacro",
  11228. height: math.unit(10, "miles"),
  11229. default: true
  11230. },
  11231. ]
  11232. ))
  11233. characterMakers.push(() => makeCharacter(
  11234. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11235. {
  11236. front: {
  11237. height: math.unit(3, "meters"),
  11238. weight: math.unit(450, "kg"),
  11239. name: "front",
  11240. image: {
  11241. source: "./media/characters/ranger/front.svg",
  11242. extra: 2401 / 2243,
  11243. bottom: 0.05
  11244. }
  11245. },
  11246. },
  11247. [
  11248. {
  11249. name: "Normal",
  11250. height: math.unit(3, "meters"),
  11251. default: true
  11252. },
  11253. ]
  11254. ))
  11255. characterMakers.push(() => makeCharacter(
  11256. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11257. {
  11258. front: {
  11259. height: math.unit(14, "feet"),
  11260. weight: math.unit(800, "kg"),
  11261. name: "Front",
  11262. image: {
  11263. source: "./media/characters/theresa/front.svg",
  11264. extra: 3575 / 3346,
  11265. bottom: 0.03
  11266. }
  11267. },
  11268. },
  11269. [
  11270. {
  11271. name: "Normal",
  11272. height: math.unit(14, "feet"),
  11273. default: true
  11274. },
  11275. ]
  11276. ))
  11277. characterMakers.push(() => makeCharacter(
  11278. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11279. {
  11280. front: {
  11281. height: math.unit(6, "feet"),
  11282. weight: math.unit(3, "kg"),
  11283. name: "Front",
  11284. image: {
  11285. source: "./media/characters/ine/front.svg",
  11286. extra: 678 / 539,
  11287. bottom: 0.023
  11288. }
  11289. },
  11290. },
  11291. [
  11292. {
  11293. name: "Normal",
  11294. height: math.unit(2.265, "feet"),
  11295. default: true
  11296. },
  11297. ]
  11298. ))
  11299. characterMakers.push(() => makeCharacter(
  11300. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11301. {
  11302. front: {
  11303. height: math.unit(5, "feet"),
  11304. weight: math.unit(30, "kg"),
  11305. name: "Front",
  11306. image: {
  11307. source: "./media/characters/vial/front.svg",
  11308. extra: 1365 / 1277,
  11309. bottom: 0.04
  11310. }
  11311. },
  11312. },
  11313. [
  11314. {
  11315. name: "Normal",
  11316. height: math.unit(5, "feet"),
  11317. default: true
  11318. },
  11319. ]
  11320. ))
  11321. characterMakers.push(() => makeCharacter(
  11322. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11323. {
  11324. side: {
  11325. height: math.unit(3.4, "meters"),
  11326. weight: math.unit(1000, "lb"),
  11327. name: "Side",
  11328. image: {
  11329. source: "./media/characters/rovoska/side.svg",
  11330. extra: 4403 / 1515
  11331. }
  11332. },
  11333. },
  11334. [
  11335. {
  11336. name: "Normal",
  11337. height: math.unit(3.4, "meters"),
  11338. default: true
  11339. },
  11340. ]
  11341. ))
  11342. characterMakers.push(() => makeCharacter(
  11343. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11344. {
  11345. front: {
  11346. height: math.unit(8, "feet"),
  11347. weight: math.unit(315, "lb"),
  11348. name: "Front",
  11349. image: {
  11350. source: "./media/characters/gunner-rotthbauer/front.svg"
  11351. }
  11352. },
  11353. back: {
  11354. height: math.unit(8, "feet"),
  11355. weight: math.unit(315, "lb"),
  11356. name: "Back",
  11357. image: {
  11358. source: "./media/characters/gunner-rotthbauer/back.svg"
  11359. }
  11360. },
  11361. },
  11362. [
  11363. {
  11364. name: "Micro",
  11365. height: math.unit(3.5, "inches")
  11366. },
  11367. {
  11368. name: "Normal",
  11369. height: math.unit(8, "feet"),
  11370. default: true
  11371. },
  11372. {
  11373. name: "Macro",
  11374. height: math.unit(250, "feet")
  11375. },
  11376. {
  11377. name: "Megamacro",
  11378. height: math.unit(1, "AU")
  11379. },
  11380. ]
  11381. ))
  11382. characterMakers.push(() => makeCharacter(
  11383. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11384. {
  11385. front: {
  11386. height: math.unit(5 + 5 / 12, "feet"),
  11387. weight: math.unit(140, "lb"),
  11388. name: "Front",
  11389. image: {
  11390. source: "./media/characters/allatia/front.svg",
  11391. extra: 1227 / 1180,
  11392. bottom: 0.027
  11393. }
  11394. },
  11395. },
  11396. [
  11397. {
  11398. name: "Normal",
  11399. height: math.unit(5 + 5 / 12, "feet")
  11400. },
  11401. {
  11402. name: "Macro",
  11403. height: math.unit(250, "feet"),
  11404. default: true
  11405. },
  11406. {
  11407. name: "Megamacro",
  11408. height: math.unit(8, "miles")
  11409. }
  11410. ]
  11411. ))
  11412. characterMakers.push(() => makeCharacter(
  11413. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11414. {
  11415. front: {
  11416. height: math.unit(6, "feet"),
  11417. weight: math.unit(120, "lb"),
  11418. name: "Front",
  11419. image: {
  11420. source: "./media/characters/tene/front.svg",
  11421. extra: 814/750,
  11422. bottom: 36/850
  11423. }
  11424. },
  11425. stomping: {
  11426. height: math.unit(2.025, "meters"),
  11427. weight: math.unit(120, "lb"),
  11428. name: "Stomping",
  11429. image: {
  11430. source: "./media/characters/tene/stomping.svg",
  11431. extra: 885/821,
  11432. bottom: 15/900
  11433. }
  11434. },
  11435. sitting: {
  11436. height: math.unit(1, "meter"),
  11437. weight: math.unit(120, "lb"),
  11438. name: "Sitting",
  11439. image: {
  11440. source: "./media/characters/tene/sitting.svg",
  11441. extra: 396/366,
  11442. bottom: 79/475
  11443. }
  11444. },
  11445. smiling: {
  11446. height: math.unit(1.2, "feet"),
  11447. name: "Smiling",
  11448. image: {
  11449. source: "./media/characters/tene/smiling.svg",
  11450. extra: 1364/1071,
  11451. bottom: 0/1364
  11452. }
  11453. },
  11454. smug: {
  11455. height: math.unit(1.3, "feet"),
  11456. name: "Smug",
  11457. image: {
  11458. source: "./media/characters/tene/smug.svg",
  11459. extra: 1323/1082,
  11460. bottom: 0/1323
  11461. }
  11462. },
  11463. feral: {
  11464. height: math.unit(3.9, "feet"),
  11465. weight: math.unit(250, "lb"),
  11466. name: "Feral",
  11467. image: {
  11468. source: "./media/characters/tene/feral.svg",
  11469. extra: 717 / 458,
  11470. bottom: 0.179
  11471. }
  11472. },
  11473. },
  11474. [
  11475. {
  11476. name: "Normal",
  11477. height: math.unit(6, "feet")
  11478. },
  11479. {
  11480. name: "Macro",
  11481. height: math.unit(300, "feet"),
  11482. default: true
  11483. },
  11484. {
  11485. name: "Megamacro",
  11486. height: math.unit(5, "miles")
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11492. {
  11493. side: {
  11494. height: math.unit(6, "feet"),
  11495. name: "Side",
  11496. image: {
  11497. source: "./media/characters/evander/side.svg",
  11498. extra: 877 / 477
  11499. }
  11500. },
  11501. },
  11502. [
  11503. {
  11504. name: "Normal",
  11505. height: math.unit(0.83, "meters"),
  11506. default: true
  11507. },
  11508. ]
  11509. ))
  11510. characterMakers.push(() => makeCharacter(
  11511. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11512. {
  11513. front: {
  11514. height: math.unit(12, "feet"),
  11515. weight: math.unit(1000, "lb"),
  11516. name: "Front",
  11517. image: {
  11518. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11519. extra: 1762 / 1611
  11520. }
  11521. },
  11522. back: {
  11523. height: math.unit(12, "feet"),
  11524. weight: math.unit(1000, "lb"),
  11525. name: "Back",
  11526. image: {
  11527. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11528. extra: 1762 / 1611
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Normal",
  11535. height: math.unit(12, "feet"),
  11536. default: true
  11537. },
  11538. {
  11539. name: "Kaiju",
  11540. height: math.unit(150, "feet")
  11541. },
  11542. ]
  11543. ))
  11544. characterMakers.push(() => makeCharacter(
  11545. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11546. {
  11547. front: {
  11548. height: math.unit(5 + 11/12, "feet"),
  11549. weight: math.unit(180, "lb"),
  11550. name: "Front",
  11551. image: {
  11552. source: "./media/characters/zero-alurus/front.svg",
  11553. extra: 1032/957,
  11554. bottom: 10/1042
  11555. }
  11556. },
  11557. back: {
  11558. height: math.unit(5 + 11/12, "feet"),
  11559. weight: math.unit(180, "lb"),
  11560. name: "Back",
  11561. image: {
  11562. source: "./media/characters/zero-alurus/back.svg",
  11563. extra: 1027/950,
  11564. bottom: 12/1039
  11565. }
  11566. },
  11567. },
  11568. [
  11569. {
  11570. name: "Normal",
  11571. height: math.unit(5 + 11 / 12, "feet")
  11572. },
  11573. {
  11574. name: "Mini-Macro",
  11575. height: math.unit(25, "feet")
  11576. },
  11577. {
  11578. name: "Macro",
  11579. height: math.unit(90, "feet"),
  11580. default: true
  11581. },
  11582. {
  11583. name: "Macro+",
  11584. height: math.unit(500, "feet")
  11585. },
  11586. {
  11587. name: "Megamacro",
  11588. height: math.unit(1200, "feet")
  11589. },
  11590. ]
  11591. ))
  11592. characterMakers.push(() => makeCharacter(
  11593. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11594. {
  11595. front: {
  11596. height: math.unit(6, "feet"),
  11597. weight: math.unit(200, "lb"),
  11598. name: "Front",
  11599. image: {
  11600. source: "./media/characters/mega-shi/front.svg",
  11601. extra: 1279 / 1250,
  11602. bottom: 0.02
  11603. }
  11604. },
  11605. back: {
  11606. height: math.unit(6, "feet"),
  11607. weight: math.unit(200, "lb"),
  11608. name: "Back",
  11609. image: {
  11610. source: "./media/characters/mega-shi/back.svg",
  11611. extra: 1279 / 1250,
  11612. bottom: 0.02
  11613. }
  11614. },
  11615. },
  11616. [
  11617. {
  11618. name: "Micro",
  11619. height: math.unit(16 + 6 / 12, "feet")
  11620. },
  11621. {
  11622. name: "Third Dimension",
  11623. height: math.unit(40, "meters")
  11624. },
  11625. {
  11626. name: "Normal",
  11627. height: math.unit(660, "feet"),
  11628. default: true
  11629. },
  11630. {
  11631. name: "Megamacro",
  11632. height: math.unit(10, "miles")
  11633. },
  11634. {
  11635. name: "Planetary Launch",
  11636. height: math.unit(500, "miles")
  11637. },
  11638. {
  11639. name: "Interstellar",
  11640. height: math.unit(1e9, "miles")
  11641. },
  11642. {
  11643. name: "Leaving the Universe",
  11644. height: math.unit(1, "gigaparsec")
  11645. },
  11646. {
  11647. name: "Travelling Universes",
  11648. height: math.unit(30e15, "parsecs")
  11649. },
  11650. ]
  11651. ))
  11652. characterMakers.push(() => makeCharacter(
  11653. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11654. {
  11655. front: {
  11656. height: math.unit(5 + 4/12, "feet"),
  11657. weight: math.unit(120, "lb"),
  11658. name: "Front",
  11659. image: {
  11660. source: "./media/characters/odyssey/front.svg",
  11661. extra: 1747/1571,
  11662. bottom: 47/1794
  11663. }
  11664. },
  11665. side: {
  11666. height: math.unit(5.1, "feet"),
  11667. weight: math.unit(120, "lb"),
  11668. name: "Side",
  11669. image: {
  11670. source: "./media/characters/odyssey/side.svg",
  11671. extra: 1847/1619,
  11672. bottom: 47/1894
  11673. }
  11674. },
  11675. lounging: {
  11676. height: math.unit(1.464, "feet"),
  11677. weight: math.unit(120, "lb"),
  11678. name: "Lounging",
  11679. image: {
  11680. source: "./media/characters/odyssey/lounging.svg",
  11681. extra: 1235/837,
  11682. bottom: 551/1786
  11683. }
  11684. },
  11685. },
  11686. [
  11687. {
  11688. name: "Normal",
  11689. height: math.unit(5 + 4 / 12, "feet")
  11690. },
  11691. {
  11692. name: "Macro",
  11693. height: math.unit(1, "km")
  11694. },
  11695. {
  11696. name: "Megamacro",
  11697. height: math.unit(3000, "km")
  11698. },
  11699. {
  11700. name: "Gigamacro",
  11701. height: math.unit(1, "AU"),
  11702. default: true
  11703. },
  11704. {
  11705. name: "Omniversal",
  11706. height: math.unit(100e14, "lightyears")
  11707. },
  11708. ]
  11709. ))
  11710. characterMakers.push(() => makeCharacter(
  11711. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11712. {
  11713. front: {
  11714. height: math.unit(5 + 10/12, "feet"),
  11715. name: "Front",
  11716. image: {
  11717. source: "./media/characters/mekuto/front.svg",
  11718. extra: 875/835,
  11719. bottom: 46/921
  11720. }
  11721. },
  11722. },
  11723. [
  11724. {
  11725. name: "Minimicro",
  11726. height: math.unit(0.2, "inches")
  11727. },
  11728. {
  11729. name: "Micro",
  11730. height: math.unit(1.5, "inches")
  11731. },
  11732. {
  11733. name: "Normal",
  11734. height: math.unit(5 + 10 / 12, "feet"),
  11735. default: true
  11736. },
  11737. {
  11738. name: "Minimacro",
  11739. height: math.unit(17 + 9 / 12, "feet")
  11740. },
  11741. {
  11742. name: "Macro",
  11743. height: math.unit(177.5, "feet")
  11744. },
  11745. {
  11746. name: "Megamacro",
  11747. height: math.unit(152, "miles")
  11748. },
  11749. ]
  11750. ))
  11751. characterMakers.push(() => makeCharacter(
  11752. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11753. {
  11754. front: {
  11755. height: math.unit(6.5, "inches"),
  11756. weight: math.unit(13, "oz"),
  11757. name: "Front",
  11758. image: {
  11759. source: "./media/characters/dafydd-tomos/front.svg",
  11760. extra: 2990 / 2603,
  11761. bottom: 0.03
  11762. }
  11763. },
  11764. },
  11765. [
  11766. {
  11767. name: "Micro",
  11768. height: math.unit(6.5, "inches"),
  11769. default: true
  11770. },
  11771. ]
  11772. ))
  11773. characterMakers.push(() => makeCharacter(
  11774. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11775. {
  11776. front: {
  11777. height: math.unit(6, "feet"),
  11778. weight: math.unit(150, "lb"),
  11779. name: "Front",
  11780. image: {
  11781. source: "./media/characters/splinter/front.svg",
  11782. extra: 2990 / 2882,
  11783. bottom: 0.04
  11784. }
  11785. },
  11786. back: {
  11787. height: math.unit(6, "feet"),
  11788. weight: math.unit(150, "lb"),
  11789. name: "Back",
  11790. image: {
  11791. source: "./media/characters/splinter/back.svg",
  11792. extra: 2990 / 2882,
  11793. bottom: 0.04
  11794. }
  11795. },
  11796. },
  11797. [
  11798. {
  11799. name: "Normal",
  11800. height: math.unit(6, "feet")
  11801. },
  11802. {
  11803. name: "Macro",
  11804. height: math.unit(230, "meters"),
  11805. default: true
  11806. },
  11807. ]
  11808. ))
  11809. characterMakers.push(() => makeCharacter(
  11810. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11811. {
  11812. front: {
  11813. height: math.unit(4 + 10 / 12, "feet"),
  11814. weight: math.unit(480, "lb"),
  11815. name: "Front",
  11816. image: {
  11817. source: "./media/characters/snow-gabumon/front.svg",
  11818. extra: 1140 / 963,
  11819. bottom: 0.058
  11820. }
  11821. },
  11822. back: {
  11823. height: math.unit(4 + 10 / 12, "feet"),
  11824. weight: math.unit(480, "lb"),
  11825. name: "Back",
  11826. image: {
  11827. source: "./media/characters/snow-gabumon/back.svg",
  11828. extra: 1115 / 962,
  11829. bottom: 0.041
  11830. }
  11831. },
  11832. frontUndresed: {
  11833. height: math.unit(4 + 10 / 12, "feet"),
  11834. weight: math.unit(480, "lb"),
  11835. name: "Front (Undressed)",
  11836. image: {
  11837. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11838. extra: 1061 / 960,
  11839. bottom: 0.045
  11840. }
  11841. },
  11842. },
  11843. [
  11844. {
  11845. name: "Micro",
  11846. height: math.unit(1, "inch")
  11847. },
  11848. {
  11849. name: "Normal",
  11850. height: math.unit(4 + 10 / 12, "feet"),
  11851. default: true
  11852. },
  11853. {
  11854. name: "Macro",
  11855. height: math.unit(200, "feet")
  11856. },
  11857. {
  11858. name: "Megamacro",
  11859. height: math.unit(120, "miles")
  11860. },
  11861. {
  11862. name: "Gigamacro",
  11863. height: math.unit(9800, "miles")
  11864. },
  11865. ]
  11866. ))
  11867. characterMakers.push(() => makeCharacter(
  11868. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11869. {
  11870. front: {
  11871. height: math.unit(1.7, "meters"),
  11872. weight: math.unit(140, "lb"),
  11873. name: "Front",
  11874. image: {
  11875. source: "./media/characters/moody/front.svg",
  11876. extra: 3226 / 3007,
  11877. bottom: 0.087
  11878. }
  11879. },
  11880. },
  11881. [
  11882. {
  11883. name: "Micro",
  11884. height: math.unit(1, "mm")
  11885. },
  11886. {
  11887. name: "Normal",
  11888. height: math.unit(1.7, "meters"),
  11889. default: true
  11890. },
  11891. {
  11892. name: "Macro",
  11893. height: math.unit(80, "meters")
  11894. },
  11895. {
  11896. name: "Macro+",
  11897. height: math.unit(500, "meters")
  11898. },
  11899. ]
  11900. ))
  11901. characterMakers.push(() => makeCharacter(
  11902. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11903. {
  11904. front: {
  11905. height: math.unit(6, "feet"),
  11906. weight: math.unit(150, "lb"),
  11907. name: "Front",
  11908. image: {
  11909. source: "./media/characters/zyas/front.svg",
  11910. extra: 1180 / 1120,
  11911. bottom: 0.045
  11912. }
  11913. },
  11914. },
  11915. [
  11916. {
  11917. name: "Normal",
  11918. height: math.unit(10, "feet"),
  11919. default: true
  11920. },
  11921. {
  11922. name: "Macro",
  11923. height: math.unit(500, "feet")
  11924. },
  11925. {
  11926. name: "Megamacro",
  11927. height: math.unit(5, "miles")
  11928. },
  11929. {
  11930. name: "Teramacro",
  11931. height: math.unit(150000, "miles")
  11932. },
  11933. ]
  11934. ))
  11935. characterMakers.push(() => makeCharacter(
  11936. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11937. {
  11938. front: {
  11939. height: math.unit(6, "feet"),
  11940. weight: math.unit(150, "lb"),
  11941. name: "Front",
  11942. image: {
  11943. source: "./media/characters/cuon/front.svg",
  11944. extra: 1390 / 1320,
  11945. bottom: 0.008
  11946. }
  11947. },
  11948. },
  11949. [
  11950. {
  11951. name: "Micro",
  11952. height: math.unit(3, "inches")
  11953. },
  11954. {
  11955. name: "Normal",
  11956. height: math.unit(18 + 9 / 12, "feet"),
  11957. default: true
  11958. },
  11959. {
  11960. name: "Macro",
  11961. height: math.unit(360, "feet")
  11962. },
  11963. {
  11964. name: "Megamacro",
  11965. height: math.unit(360, "miles")
  11966. },
  11967. ]
  11968. ))
  11969. characterMakers.push(() => makeCharacter(
  11970. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11971. {
  11972. front: {
  11973. height: math.unit(2.4, "meters"),
  11974. weight: math.unit(70, "kg"),
  11975. name: "Front",
  11976. image: {
  11977. source: "./media/characters/nyanuxk/front.svg",
  11978. extra: 1172 / 1084,
  11979. bottom: 0.065
  11980. }
  11981. },
  11982. side: {
  11983. height: math.unit(2.4, "meters"),
  11984. weight: math.unit(70, "kg"),
  11985. name: "Side",
  11986. image: {
  11987. source: "./media/characters/nyanuxk/side.svg",
  11988. extra: 1190 / 1132,
  11989. bottom: 0.007
  11990. }
  11991. },
  11992. back: {
  11993. height: math.unit(2.4, "meters"),
  11994. weight: math.unit(70, "kg"),
  11995. name: "Back",
  11996. image: {
  11997. source: "./media/characters/nyanuxk/back.svg",
  11998. extra: 1200 / 1141,
  11999. bottom: 0.015
  12000. }
  12001. },
  12002. foot: {
  12003. height: math.unit(0.52, "meters"),
  12004. name: "Foot",
  12005. image: {
  12006. source: "./media/characters/nyanuxk/foot.svg"
  12007. }
  12008. },
  12009. },
  12010. [
  12011. {
  12012. name: "Micro",
  12013. height: math.unit(2, "cm")
  12014. },
  12015. {
  12016. name: "Normal",
  12017. height: math.unit(2.4, "meters"),
  12018. default: true
  12019. },
  12020. {
  12021. name: "Smaller Macro",
  12022. height: math.unit(120, "meters")
  12023. },
  12024. {
  12025. name: "Bigger Macro",
  12026. height: math.unit(1.2, "km")
  12027. },
  12028. {
  12029. name: "Megamacro",
  12030. height: math.unit(15, "kilometers")
  12031. },
  12032. {
  12033. name: "Gigamacro",
  12034. height: math.unit(2000, "km")
  12035. },
  12036. {
  12037. name: "Teramacro",
  12038. height: math.unit(500000, "km")
  12039. },
  12040. ]
  12041. ))
  12042. characterMakers.push(() => makeCharacter(
  12043. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12044. {
  12045. side: {
  12046. height: math.unit(6, "feet"),
  12047. name: "Side",
  12048. image: {
  12049. source: "./media/characters/ailbhe/side.svg",
  12050. extra: 757 / 464,
  12051. bottom: 0.041
  12052. }
  12053. },
  12054. },
  12055. [
  12056. {
  12057. name: "Normal",
  12058. height: math.unit(1.07, "meters"),
  12059. default: true
  12060. },
  12061. ]
  12062. ))
  12063. characterMakers.push(() => makeCharacter(
  12064. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12065. {
  12066. front: {
  12067. height: math.unit(6, "feet"),
  12068. weight: math.unit(120, "kg"),
  12069. name: "Front",
  12070. image: {
  12071. source: "./media/characters/zevulfius/front.svg",
  12072. extra: 965 / 903
  12073. }
  12074. },
  12075. side: {
  12076. height: math.unit(6, "feet"),
  12077. weight: math.unit(120, "kg"),
  12078. name: "Side",
  12079. image: {
  12080. source: "./media/characters/zevulfius/side.svg",
  12081. extra: 939 / 900
  12082. }
  12083. },
  12084. back: {
  12085. height: math.unit(6, "feet"),
  12086. weight: math.unit(120, "kg"),
  12087. name: "Back",
  12088. image: {
  12089. source: "./media/characters/zevulfius/back.svg",
  12090. extra: 918 / 854,
  12091. bottom: 0.005
  12092. }
  12093. },
  12094. foot: {
  12095. height: math.unit(6 / 3.72, "feet"),
  12096. name: "Foot",
  12097. image: {
  12098. source: "./media/characters/zevulfius/foot.svg"
  12099. }
  12100. },
  12101. },
  12102. [
  12103. {
  12104. name: "Macro",
  12105. height: math.unit(750, "meters")
  12106. },
  12107. {
  12108. name: "Megamacro",
  12109. height: math.unit(20, "km"),
  12110. default: true
  12111. },
  12112. {
  12113. name: "Gigamacro",
  12114. height: math.unit(2000, "km")
  12115. },
  12116. {
  12117. name: "Teramacro",
  12118. height: math.unit(250000, "km")
  12119. },
  12120. ]
  12121. ))
  12122. characterMakers.push(() => makeCharacter(
  12123. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12124. {
  12125. front: {
  12126. height: math.unit(100, "feet"),
  12127. weight: math.unit(350, "kg"),
  12128. name: "Front",
  12129. image: {
  12130. source: "./media/characters/rikes/front.svg",
  12131. extra: 1565 / 1483,
  12132. bottom: 0.017
  12133. }
  12134. },
  12135. },
  12136. [
  12137. {
  12138. name: "Macro",
  12139. height: math.unit(100, "feet"),
  12140. default: true
  12141. },
  12142. ]
  12143. ))
  12144. characterMakers.push(() => makeCharacter(
  12145. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12146. {
  12147. front: {
  12148. height: math.unit(8, "feet"),
  12149. weight: math.unit(356, "lb"),
  12150. name: "Front",
  12151. image: {
  12152. source: "./media/characters/adam-silver-mane/front.svg",
  12153. extra: 1036/937,
  12154. bottom: 63/1099
  12155. }
  12156. },
  12157. side: {
  12158. height: math.unit(8, "feet"),
  12159. weight: math.unit(356, "lb"),
  12160. name: "Side",
  12161. image: {
  12162. source: "./media/characters/adam-silver-mane/side.svg",
  12163. extra: 997/901,
  12164. bottom: 59/1056
  12165. }
  12166. },
  12167. frontNsfw: {
  12168. height: math.unit(8, "feet"),
  12169. weight: math.unit(356, "lb"),
  12170. name: "Front (NSFW)",
  12171. image: {
  12172. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12173. extra: 1036/937,
  12174. bottom: 63/1099
  12175. }
  12176. },
  12177. sideNsfw: {
  12178. height: math.unit(8, "feet"),
  12179. weight: math.unit(356, "lb"),
  12180. name: "Side (NSFW)",
  12181. image: {
  12182. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12183. extra: 997/901,
  12184. bottom: 59/1056
  12185. }
  12186. },
  12187. dick: {
  12188. height: math.unit(2.1, "feet"),
  12189. name: "Dick",
  12190. image: {
  12191. source: "./media/characters/adam-silver-mane/dick.svg"
  12192. }
  12193. },
  12194. taur: {
  12195. height: math.unit(16, "feet"),
  12196. weight: math.unit(1500, "kg"),
  12197. name: "Taur",
  12198. image: {
  12199. source: "./media/characters/adam-silver-mane/taur.svg",
  12200. extra: 1713 / 1571,
  12201. bottom: 0.01
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Normal",
  12208. height: math.unit(8, "feet")
  12209. },
  12210. {
  12211. name: "Minimacro",
  12212. height: math.unit(80, "feet")
  12213. },
  12214. {
  12215. name: "MDA",
  12216. height: math.unit(80, "meters")
  12217. },
  12218. {
  12219. name: "Macro",
  12220. height: math.unit(800, "feet"),
  12221. default: true
  12222. },
  12223. {
  12224. name: "Megamacro",
  12225. height: math.unit(8000, "feet")
  12226. },
  12227. {
  12228. name: "Gigamacro",
  12229. height: math.unit(800, "miles")
  12230. },
  12231. {
  12232. name: "Teramacro",
  12233. height: math.unit(80000, "miles")
  12234. },
  12235. {
  12236. name: "Celestial",
  12237. height: math.unit(8e6, "miles")
  12238. },
  12239. {
  12240. name: "Star Dragon",
  12241. height: math.unit(800000, "parsecs")
  12242. },
  12243. {
  12244. name: "Godly",
  12245. height: math.unit(800, "teraparsecs")
  12246. },
  12247. ]
  12248. ))
  12249. characterMakers.push(() => makeCharacter(
  12250. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12251. {
  12252. front: {
  12253. height: math.unit(6, "feet"),
  12254. weight: math.unit(150, "lb"),
  12255. name: "Front",
  12256. image: {
  12257. source: "./media/characters/ky'owin/front.svg",
  12258. extra: 3862/3053,
  12259. bottom: 74/3936
  12260. }
  12261. },
  12262. },
  12263. [
  12264. {
  12265. name: "Normal",
  12266. height: math.unit(6 + 8 / 12, "feet")
  12267. },
  12268. {
  12269. name: "Large",
  12270. height: math.unit(68, "feet")
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(132, "feet")
  12275. },
  12276. {
  12277. name: "Macro+",
  12278. height: math.unit(340, "feet")
  12279. },
  12280. {
  12281. name: "Macro++",
  12282. height: math.unit(680, "feet"),
  12283. default: true
  12284. },
  12285. {
  12286. name: "Megamacro",
  12287. height: math.unit(1, "mile")
  12288. },
  12289. {
  12290. name: "Megamacro+",
  12291. height: math.unit(10, "miles")
  12292. },
  12293. ]
  12294. ))
  12295. characterMakers.push(() => makeCharacter(
  12296. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12297. {
  12298. front: {
  12299. height: math.unit(4, "feet"),
  12300. weight: math.unit(50, "lb"),
  12301. name: "Front",
  12302. image: {
  12303. source: "./media/characters/mal/front.svg",
  12304. extra: 785 / 724,
  12305. bottom: 0.07
  12306. }
  12307. },
  12308. },
  12309. [
  12310. {
  12311. name: "Micro",
  12312. height: math.unit(4, "inches")
  12313. },
  12314. {
  12315. name: "Normal",
  12316. height: math.unit(4, "feet"),
  12317. default: true
  12318. },
  12319. {
  12320. name: "Macro",
  12321. height: math.unit(200, "feet")
  12322. },
  12323. ]
  12324. ))
  12325. characterMakers.push(() => makeCharacter(
  12326. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12327. {
  12328. front: {
  12329. height: math.unit(6, "feet"),
  12330. weight: math.unit(150, "lb"),
  12331. name: "Front",
  12332. image: {
  12333. source: "./media/characters/jordan-deware/front.svg",
  12334. extra: 1191 / 1012
  12335. }
  12336. },
  12337. },
  12338. [
  12339. {
  12340. name: "Nano",
  12341. height: math.unit(0.01, "mm")
  12342. },
  12343. {
  12344. name: "Minimicro",
  12345. height: math.unit(1, "mm")
  12346. },
  12347. {
  12348. name: "Micro",
  12349. height: math.unit(0.5, "inches")
  12350. },
  12351. {
  12352. name: "Normal",
  12353. height: math.unit(4, "feet"),
  12354. default: true
  12355. },
  12356. {
  12357. name: "Minimacro",
  12358. height: math.unit(40, "meters")
  12359. },
  12360. {
  12361. name: "Small Macro",
  12362. height: math.unit(400, "meters")
  12363. },
  12364. {
  12365. name: "Macro",
  12366. height: math.unit(4, "miles")
  12367. },
  12368. {
  12369. name: "Megamacro",
  12370. height: math.unit(40, "miles")
  12371. },
  12372. {
  12373. name: "Megamacro+",
  12374. height: math.unit(400, "miles")
  12375. },
  12376. {
  12377. name: "Gigamacro",
  12378. height: math.unit(400000, "miles")
  12379. },
  12380. ]
  12381. ))
  12382. characterMakers.push(() => makeCharacter(
  12383. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12384. {
  12385. front: {
  12386. height: math.unit(15, "feet"),
  12387. weight: math.unit(3000, "kg"),
  12388. preyCapacity: math.unit(450, "people"),
  12389. name: "Front",
  12390. image: {
  12391. source: "./media/characters/kimiko/front.svg",
  12392. extra: 875/832,
  12393. bottom: 36/911
  12394. },
  12395. extraAttributes: {
  12396. "pawSize": {
  12397. name: "Paw Size",
  12398. power: 1,
  12399. type: "length",
  12400. base: math.unit(0.9, "meters")
  12401. },
  12402. }
  12403. },
  12404. side: {
  12405. height: math.unit(15, "feet"),
  12406. weight: math.unit(3000, "kg"),
  12407. preyCapacity: math.unit(400, "people"),
  12408. name: "Side",
  12409. image: {
  12410. source: "./media/characters/kimiko/side.svg",
  12411. extra: 448/270,
  12412. bottom: 7/455
  12413. },
  12414. extraAttributes: {
  12415. "pawSize": {
  12416. name: "Paw Size",
  12417. power: 1,
  12418. type: "length",
  12419. base: math.unit(0.9, "meters")
  12420. },
  12421. }
  12422. },
  12423. maw: {
  12424. height: math.unit(0.81, "feet"),
  12425. name: "Maw",
  12426. image: {
  12427. source: "./media/characters/kimiko/maw.svg"
  12428. }
  12429. },
  12430. },
  12431. [
  12432. {
  12433. name: "Normal",
  12434. height: math.unit(15, "feet"),
  12435. default: true
  12436. },
  12437. {
  12438. name: "Macro",
  12439. height: math.unit(220, "feet")
  12440. },
  12441. {
  12442. name: "Macro+",
  12443. height: math.unit(1450, "feet")
  12444. },
  12445. {
  12446. name: "Megamacro",
  12447. height: math.unit(11500, "feet")
  12448. },
  12449. {
  12450. name: "Gigamacro",
  12451. height: math.unit(9500, "miles")
  12452. },
  12453. {
  12454. name: "Teramacro",
  12455. height: math.unit(2208005005, "miles")
  12456. },
  12457. {
  12458. name: "Examacro",
  12459. height: math.unit(2750, "parsecs")
  12460. },
  12461. {
  12462. name: "Zettamacro",
  12463. height: math.unit(101500, "parsecs")
  12464. },
  12465. ]
  12466. ))
  12467. characterMakers.push(() => makeCharacter(
  12468. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12469. {
  12470. front: {
  12471. height: math.unit(6, "feet"),
  12472. weight: math.unit(70, "kg"),
  12473. name: "Front",
  12474. image: {
  12475. source: "./media/characters/andrew-sleepy/front.svg"
  12476. }
  12477. },
  12478. side: {
  12479. height: math.unit(6, "feet"),
  12480. weight: math.unit(70, "kg"),
  12481. name: "Side",
  12482. image: {
  12483. source: "./media/characters/andrew-sleepy/side.svg"
  12484. }
  12485. },
  12486. },
  12487. [
  12488. {
  12489. name: "Micro",
  12490. height: math.unit(1, "mm"),
  12491. default: true
  12492. },
  12493. ]
  12494. ))
  12495. characterMakers.push(() => makeCharacter(
  12496. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12497. {
  12498. front: {
  12499. height: math.unit(6, "feet"),
  12500. weight: math.unit(150, "lb"),
  12501. name: "Front",
  12502. image: {
  12503. source: "./media/characters/judio/front.svg",
  12504. extra: 1258 / 1110
  12505. }
  12506. },
  12507. },
  12508. [
  12509. {
  12510. name: "Normal",
  12511. height: math.unit(5 + 6 / 12, "feet")
  12512. },
  12513. {
  12514. name: "Macro",
  12515. height: math.unit(1000, "feet"),
  12516. default: true
  12517. },
  12518. {
  12519. name: "Megamacro",
  12520. height: math.unit(10, "miles")
  12521. },
  12522. ]
  12523. ))
  12524. characterMakers.push(() => makeCharacter(
  12525. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12526. {
  12527. frontDressed: {
  12528. height: math.unit(6, "feet"),
  12529. weight: math.unit(68, "kg"),
  12530. name: "Front (Dressed)",
  12531. image: {
  12532. source: "./media/characters/nomaxice/front-dressed.svg",
  12533. extra: 1137/824,
  12534. bottom: 74/1211
  12535. }
  12536. },
  12537. frontShorts: {
  12538. height: math.unit(6, "feet"),
  12539. weight: math.unit(68, "kg"),
  12540. name: "Front (Shorts)",
  12541. image: {
  12542. source: "./media/characters/nomaxice/front-shorts.svg",
  12543. extra: 1137/824,
  12544. bottom: 74/1211
  12545. }
  12546. },
  12547. back: {
  12548. height: math.unit(6, "feet"),
  12549. weight: math.unit(68, "kg"),
  12550. name: "Back",
  12551. image: {
  12552. source: "./media/characters/nomaxice/back.svg",
  12553. extra: 822/786,
  12554. bottom: 39/861
  12555. }
  12556. },
  12557. hand: {
  12558. height: math.unit(0.565, "feet"),
  12559. name: "Hand",
  12560. image: {
  12561. source: "./media/characters/nomaxice/hand.svg"
  12562. }
  12563. },
  12564. foot: {
  12565. height: math.unit(1, "feet"),
  12566. name: "Foot",
  12567. image: {
  12568. source: "./media/characters/nomaxice/foot.svg"
  12569. }
  12570. },
  12571. },
  12572. [
  12573. {
  12574. name: "Micro",
  12575. height: math.unit(8, "cm")
  12576. },
  12577. {
  12578. name: "Norm",
  12579. height: math.unit(1.82, "m")
  12580. },
  12581. {
  12582. name: "Norm+",
  12583. height: math.unit(8.8, "feet"),
  12584. default: true
  12585. },
  12586. {
  12587. name: "Big",
  12588. height: math.unit(8, "meters")
  12589. },
  12590. {
  12591. name: "Macro",
  12592. height: math.unit(18, "meters")
  12593. },
  12594. {
  12595. name: "Macro+",
  12596. height: math.unit(88, "meters")
  12597. },
  12598. ]
  12599. ))
  12600. characterMakers.push(() => makeCharacter(
  12601. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12602. {
  12603. front: {
  12604. height: math.unit(12, "feet"),
  12605. weight: math.unit(1.5, "tons"),
  12606. name: "Front",
  12607. image: {
  12608. source: "./media/characters/dydros/front.svg",
  12609. extra: 863 / 800,
  12610. bottom: 0.015
  12611. }
  12612. },
  12613. back: {
  12614. height: math.unit(12, "feet"),
  12615. weight: math.unit(1.5, "tons"),
  12616. name: "Back",
  12617. image: {
  12618. source: "./media/characters/dydros/back.svg",
  12619. extra: 900 / 843,
  12620. bottom: 0.005
  12621. }
  12622. },
  12623. },
  12624. [
  12625. {
  12626. name: "Normal",
  12627. height: math.unit(12, "feet"),
  12628. default: true
  12629. },
  12630. ]
  12631. ))
  12632. characterMakers.push(() => makeCharacter(
  12633. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12634. {
  12635. front: {
  12636. height: math.unit(6, "feet"),
  12637. weight: math.unit(100, "kg"),
  12638. name: "Front",
  12639. image: {
  12640. source: "./media/characters/riggi/front.svg",
  12641. extra: 5787 / 5303
  12642. }
  12643. },
  12644. hyper: {
  12645. height: math.unit(6 * 5 / 3, "feet"),
  12646. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12647. name: "Hyper",
  12648. image: {
  12649. source: "./media/characters/riggi/hyper.svg",
  12650. extra: 3595 / 3485
  12651. }
  12652. },
  12653. },
  12654. [
  12655. {
  12656. name: "Small Macro",
  12657. height: math.unit(50, "feet")
  12658. },
  12659. {
  12660. name: "Default",
  12661. height: math.unit(200, "feet"),
  12662. default: true
  12663. },
  12664. {
  12665. name: "Loom",
  12666. height: math.unit(10000, "feet")
  12667. },
  12668. {
  12669. name: "Cruising Altitude",
  12670. height: math.unit(30000, "feet")
  12671. },
  12672. {
  12673. name: "Megamacro",
  12674. height: math.unit(100, "miles")
  12675. },
  12676. {
  12677. name: "Continent Sized",
  12678. height: math.unit(2800, "miles")
  12679. },
  12680. {
  12681. name: "Earth Sized",
  12682. height: math.unit(8000, "miles")
  12683. },
  12684. ]
  12685. ))
  12686. characterMakers.push(() => makeCharacter(
  12687. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12688. {
  12689. front: {
  12690. height: math.unit(6, "feet"),
  12691. weight: math.unit(250, "lb"),
  12692. name: "Front",
  12693. image: {
  12694. source: "./media/characters/alexi/front.svg",
  12695. extra: 3483 / 3291,
  12696. bottom: 0.04
  12697. }
  12698. },
  12699. back: {
  12700. height: math.unit(6, "feet"),
  12701. weight: math.unit(250, "lb"),
  12702. name: "Back",
  12703. image: {
  12704. source: "./media/characters/alexi/back.svg",
  12705. extra: 3533 / 3356,
  12706. bottom: 0.021
  12707. }
  12708. },
  12709. frontTransforming: {
  12710. height: math.unit(8.58, "feet"),
  12711. weight: math.unit(1300, "lb"),
  12712. name: "Transforming",
  12713. image: {
  12714. source: "./media/characters/alexi/front-transforming.svg",
  12715. extra: 437 / 409,
  12716. bottom: 19 / 458.66
  12717. }
  12718. },
  12719. frontTransformed: {
  12720. height: math.unit(12.5, "feet"),
  12721. weight: math.unit(4000, "lb"),
  12722. name: "Transformed",
  12723. image: {
  12724. source: "./media/characters/alexi/front-transformed.svg",
  12725. extra: 639 / 614,
  12726. bottom: 30.55 / 671
  12727. }
  12728. },
  12729. },
  12730. [
  12731. {
  12732. name: "Normal",
  12733. height: math.unit(14, "feet"),
  12734. default: true
  12735. },
  12736. {
  12737. name: "Minimacro",
  12738. height: math.unit(30, "meters")
  12739. },
  12740. {
  12741. name: "Macro",
  12742. height: math.unit(500, "meters")
  12743. },
  12744. {
  12745. name: "Megamacro",
  12746. height: math.unit(9000, "km")
  12747. },
  12748. {
  12749. name: "Teramacro",
  12750. height: math.unit(384000, "km")
  12751. },
  12752. ]
  12753. ))
  12754. characterMakers.push(() => makeCharacter(
  12755. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12756. {
  12757. front: {
  12758. height: math.unit(6, "feet"),
  12759. weight: math.unit(150, "lb"),
  12760. name: "Front",
  12761. image: {
  12762. source: "./media/characters/kayroo/front.svg",
  12763. extra: 1153 / 1038,
  12764. bottom: 0.06
  12765. }
  12766. },
  12767. foot: {
  12768. height: math.unit(6, "feet"),
  12769. weight: math.unit(150, "lb"),
  12770. name: "Foot",
  12771. image: {
  12772. source: "./media/characters/kayroo/foot.svg"
  12773. }
  12774. },
  12775. },
  12776. [
  12777. {
  12778. name: "Normal",
  12779. height: math.unit(8, "feet"),
  12780. default: true
  12781. },
  12782. {
  12783. name: "Minimacro",
  12784. height: math.unit(250, "feet")
  12785. },
  12786. {
  12787. name: "Macro",
  12788. height: math.unit(2800, "feet")
  12789. },
  12790. {
  12791. name: "Megamacro",
  12792. height: math.unit(5200, "feet")
  12793. },
  12794. {
  12795. name: "Gigamacro",
  12796. height: math.unit(27000, "feet")
  12797. },
  12798. {
  12799. name: "Omega",
  12800. height: math.unit(45000, "feet")
  12801. },
  12802. ]
  12803. ))
  12804. characterMakers.push(() => makeCharacter(
  12805. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12806. {
  12807. front: {
  12808. height: math.unit(18, "feet"),
  12809. weight: math.unit(5800, "lb"),
  12810. name: "Front",
  12811. image: {
  12812. source: "./media/characters/rhys/front.svg",
  12813. extra: 3386 / 3090,
  12814. bottom: 0.07
  12815. }
  12816. },
  12817. },
  12818. [
  12819. {
  12820. name: "Normal",
  12821. height: math.unit(18, "feet"),
  12822. default: true
  12823. },
  12824. {
  12825. name: "Working Size",
  12826. height: math.unit(200, "feet")
  12827. },
  12828. {
  12829. name: "Demolition Size",
  12830. height: math.unit(2000, "feet")
  12831. },
  12832. {
  12833. name: "Maximum Licensed Size",
  12834. height: math.unit(5, "miles")
  12835. },
  12836. {
  12837. name: "Maximum Observed Size",
  12838. height: math.unit(10, "yottameters")
  12839. },
  12840. ]
  12841. ))
  12842. characterMakers.push(() => makeCharacter(
  12843. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12844. {
  12845. front: {
  12846. height: math.unit(6, "feet"),
  12847. weight: math.unit(250, "lb"),
  12848. name: "Front",
  12849. image: {
  12850. source: "./media/characters/toto/front.svg",
  12851. extra: 527 / 479,
  12852. bottom: 0.05
  12853. }
  12854. },
  12855. },
  12856. [
  12857. {
  12858. name: "Micro",
  12859. height: math.unit(3, "feet")
  12860. },
  12861. {
  12862. name: "Normal",
  12863. height: math.unit(10, "feet")
  12864. },
  12865. {
  12866. name: "Macro",
  12867. height: math.unit(150, "feet"),
  12868. default: true
  12869. },
  12870. {
  12871. name: "Megamacro",
  12872. height: math.unit(1200, "feet")
  12873. },
  12874. ]
  12875. ))
  12876. characterMakers.push(() => makeCharacter(
  12877. { name: "King", species: ["lion"], tags: ["anthro"] },
  12878. {
  12879. back: {
  12880. height: math.unit(6, "feet"),
  12881. weight: math.unit(150, "lb"),
  12882. name: "Back",
  12883. image: {
  12884. source: "./media/characters/king/back.svg"
  12885. }
  12886. },
  12887. },
  12888. [
  12889. {
  12890. name: "Micro",
  12891. height: math.unit(2, "inches")
  12892. },
  12893. {
  12894. name: "Normal",
  12895. height: math.unit(8, "feet")
  12896. },
  12897. {
  12898. name: "Macro",
  12899. height: math.unit(200, "feet"),
  12900. default: true
  12901. },
  12902. {
  12903. name: "Megamacro",
  12904. height: math.unit(50, "miles")
  12905. },
  12906. ]
  12907. ))
  12908. characterMakers.push(() => makeCharacter(
  12909. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12910. {
  12911. front: {
  12912. height: math.unit(11, "feet"),
  12913. weight: math.unit(1400, "lb"),
  12914. name: "Front",
  12915. image: {
  12916. source: "./media/characters/cordite/front.svg",
  12917. extra: 1919/1827,
  12918. bottom: 40/1959
  12919. }
  12920. },
  12921. side: {
  12922. height: math.unit(11, "feet"),
  12923. weight: math.unit(1400, "lb"),
  12924. name: "Side",
  12925. image: {
  12926. source: "./media/characters/cordite/side.svg",
  12927. extra: 1908/1793,
  12928. bottom: 38/1946
  12929. }
  12930. },
  12931. back: {
  12932. height: math.unit(11, "feet"),
  12933. weight: math.unit(1400, "lb"),
  12934. name: "Back",
  12935. image: {
  12936. source: "./media/characters/cordite/back.svg",
  12937. extra: 1938/1837,
  12938. bottom: 10/1948
  12939. }
  12940. },
  12941. feral: {
  12942. height: math.unit(2, "feet"),
  12943. weight: math.unit(90, "lb"),
  12944. name: "Feral",
  12945. image: {
  12946. source: "./media/characters/cordite/feral.svg",
  12947. extra: 1260 / 755,
  12948. bottom: 0.05
  12949. }
  12950. },
  12951. },
  12952. [
  12953. {
  12954. name: "Normal",
  12955. height: math.unit(11, "feet"),
  12956. default: true
  12957. },
  12958. ]
  12959. ))
  12960. characterMakers.push(() => makeCharacter(
  12961. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12962. {
  12963. front: {
  12964. height: math.unit(6, "feet"),
  12965. weight: math.unit(150, "lb"),
  12966. name: "Front",
  12967. image: {
  12968. source: "./media/characters/pianostrong/front.svg",
  12969. extra: 6577 / 6254,
  12970. bottom: 0.02
  12971. }
  12972. },
  12973. side: {
  12974. height: math.unit(6, "feet"),
  12975. weight: math.unit(150, "lb"),
  12976. name: "Side",
  12977. image: {
  12978. source: "./media/characters/pianostrong/side.svg",
  12979. extra: 6106 / 5730
  12980. }
  12981. },
  12982. back: {
  12983. height: math.unit(6, "feet"),
  12984. weight: math.unit(150, "lb"),
  12985. name: "Back",
  12986. image: {
  12987. source: "./media/characters/pianostrong/back.svg",
  12988. extra: 6085 / 5733,
  12989. bottom: 0.01
  12990. }
  12991. },
  12992. },
  12993. [
  12994. {
  12995. name: "Macro",
  12996. height: math.unit(100, "feet")
  12997. },
  12998. {
  12999. name: "Macro+",
  13000. height: math.unit(300, "feet"),
  13001. default: true
  13002. },
  13003. {
  13004. name: "Macro++",
  13005. height: math.unit(1000, "feet")
  13006. },
  13007. ]
  13008. ))
  13009. characterMakers.push(() => makeCharacter(
  13010. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13011. {
  13012. front: {
  13013. height: math.unit(6, "feet"),
  13014. weight: math.unit(150, "lb"),
  13015. name: "Front",
  13016. image: {
  13017. source: "./media/characters/kona/front.svg",
  13018. extra: 2960 / 2629,
  13019. bottom: 0.005
  13020. }
  13021. },
  13022. },
  13023. [
  13024. {
  13025. name: "Normal",
  13026. height: math.unit(11 + 8 / 12, "feet")
  13027. },
  13028. {
  13029. name: "Macro",
  13030. height: math.unit(850, "feet"),
  13031. default: true
  13032. },
  13033. {
  13034. name: "Macro+",
  13035. height: math.unit(1.5, "km"),
  13036. default: true
  13037. },
  13038. {
  13039. name: "Megamacro",
  13040. height: math.unit(80, "miles")
  13041. },
  13042. {
  13043. name: "Gigamacro",
  13044. height: math.unit(3500, "miles")
  13045. },
  13046. ]
  13047. ))
  13048. characterMakers.push(() => makeCharacter(
  13049. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13050. {
  13051. side: {
  13052. height: math.unit(1.9, "meters"),
  13053. weight: math.unit(326, "kg"),
  13054. name: "Side",
  13055. image: {
  13056. source: "./media/characters/levi/side.svg",
  13057. extra: 1704 / 1334,
  13058. bottom: 0.02
  13059. }
  13060. },
  13061. },
  13062. [
  13063. {
  13064. name: "Normal",
  13065. height: math.unit(1.9, "meters"),
  13066. default: true
  13067. },
  13068. {
  13069. name: "Macro",
  13070. height: math.unit(20, "meters")
  13071. },
  13072. {
  13073. name: "Macro+",
  13074. height: math.unit(200, "meters")
  13075. },
  13076. {
  13077. name: "Megamacro",
  13078. height: math.unit(2, "km")
  13079. },
  13080. {
  13081. name: "Megamacro+",
  13082. height: math.unit(20, "km")
  13083. },
  13084. {
  13085. name: "Gigamacro",
  13086. height: math.unit(2500, "km")
  13087. },
  13088. {
  13089. name: "Gigamacro+",
  13090. height: math.unit(120000, "km")
  13091. },
  13092. {
  13093. name: "Teramacro",
  13094. height: math.unit(7.77e6, "km")
  13095. },
  13096. ]
  13097. ))
  13098. characterMakers.push(() => makeCharacter(
  13099. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13100. {
  13101. front: {
  13102. height: math.unit(6 + 4/12, "feet"),
  13103. weight: math.unit(190, "lb"),
  13104. name: "Front",
  13105. image: {
  13106. source: "./media/characters/bmc/front.svg",
  13107. extra: 1626/1472,
  13108. bottom: 79/1705
  13109. }
  13110. },
  13111. back: {
  13112. height: math.unit(6 + 4/12, "feet"),
  13113. weight: math.unit(190, "lb"),
  13114. name: "Back",
  13115. image: {
  13116. source: "./media/characters/bmc/back.svg",
  13117. extra: 1640/1479,
  13118. bottom: 45/1685
  13119. }
  13120. },
  13121. frontArmor: {
  13122. height: math.unit(6 + 4/12, "feet"),
  13123. weight: math.unit(190, "lb"),
  13124. name: "Front-armor",
  13125. image: {
  13126. source: "./media/characters/bmc/front-armor.svg",
  13127. extra: 1538/1468,
  13128. bottom: 79/1617
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Human-sized",
  13135. height: math.unit(6 + 4 / 12, "feet")
  13136. },
  13137. {
  13138. name: "Interactive Size",
  13139. height: math.unit(25, "feet")
  13140. },
  13141. {
  13142. name: "Small",
  13143. height: math.unit(250, "feet")
  13144. },
  13145. {
  13146. name: "Normal",
  13147. height: math.unit(1250, "feet"),
  13148. default: true
  13149. },
  13150. {
  13151. name: "Good Day",
  13152. height: math.unit(88, "miles")
  13153. },
  13154. {
  13155. name: "Largest Measured Size",
  13156. height: math.unit(105.960, "galaxies")
  13157. },
  13158. ]
  13159. ))
  13160. characterMakers.push(() => makeCharacter(
  13161. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13162. {
  13163. front: {
  13164. height: math.unit(20, "feet"),
  13165. weight: math.unit(2016, "kg"),
  13166. name: "Front",
  13167. image: {
  13168. source: "./media/characters/sven-the-kaiju/front.svg",
  13169. extra: 1277/1250,
  13170. bottom: 35/1312
  13171. }
  13172. },
  13173. mouth: {
  13174. height: math.unit(1.85, "feet"),
  13175. name: "Mouth",
  13176. image: {
  13177. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13178. }
  13179. },
  13180. },
  13181. [
  13182. {
  13183. name: "Fairy",
  13184. height: math.unit(6, "inches")
  13185. },
  13186. {
  13187. name: "Normal",
  13188. height: math.unit(20, "feet"),
  13189. default: true
  13190. },
  13191. {
  13192. name: "Rampage",
  13193. height: math.unit(200, "feet")
  13194. },
  13195. {
  13196. name: "Archfey Forest Guardian",
  13197. height: math.unit(1, "mile")
  13198. },
  13199. ]
  13200. ))
  13201. characterMakers.push(() => makeCharacter(
  13202. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13203. {
  13204. front: {
  13205. height: math.unit(4, "meters"),
  13206. weight: math.unit(2, "tons"),
  13207. name: "Front",
  13208. image: {
  13209. source: "./media/characters/marik/front.svg",
  13210. extra: 1057 / 1003,
  13211. bottom: 0.08
  13212. }
  13213. },
  13214. },
  13215. [
  13216. {
  13217. name: "Normal",
  13218. height: math.unit(4, "meters"),
  13219. default: true
  13220. },
  13221. {
  13222. name: "Macro",
  13223. height: math.unit(20, "meters")
  13224. },
  13225. {
  13226. name: "Megamacro",
  13227. height: math.unit(50, "km")
  13228. },
  13229. {
  13230. name: "Gigamacro",
  13231. height: math.unit(100, "km")
  13232. },
  13233. {
  13234. name: "Alpha Macro",
  13235. height: math.unit(7.88e7, "yottameters")
  13236. },
  13237. ]
  13238. ))
  13239. characterMakers.push(() => makeCharacter(
  13240. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13241. {
  13242. front: {
  13243. height: math.unit(6, "feet"),
  13244. weight: math.unit(110, "lb"),
  13245. name: "Front",
  13246. image: {
  13247. source: "./media/characters/mel/front.svg",
  13248. extra: 736 / 617,
  13249. bottom: 0.017
  13250. }
  13251. },
  13252. },
  13253. [
  13254. {
  13255. name: "Pico",
  13256. height: math.unit(3, "pm")
  13257. },
  13258. {
  13259. name: "Nano",
  13260. height: math.unit(3, "nm")
  13261. },
  13262. {
  13263. name: "Micro",
  13264. height: math.unit(0.3, "mm"),
  13265. default: true
  13266. },
  13267. {
  13268. name: "Micro+",
  13269. height: math.unit(3, "mm")
  13270. },
  13271. {
  13272. name: "Normal",
  13273. height: math.unit(5 + 10.5 / 12, "feet")
  13274. },
  13275. ]
  13276. ))
  13277. characterMakers.push(() => makeCharacter(
  13278. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13279. {
  13280. kaiju: {
  13281. height: math.unit(1.75, "meters"),
  13282. weight: math.unit(55, "kg"),
  13283. name: "Kaiju",
  13284. image: {
  13285. source: "./media/characters/lykonous/kaiju.svg",
  13286. extra: 1055 / 946,
  13287. bottom: 0.135
  13288. }
  13289. },
  13290. },
  13291. [
  13292. {
  13293. name: "Normal",
  13294. height: math.unit(2.5, "meters"),
  13295. default: true
  13296. },
  13297. {
  13298. name: "Kaiju Dragon",
  13299. height: math.unit(60, "meters")
  13300. },
  13301. {
  13302. name: "Mega Kaiju",
  13303. height: math.unit(120, "km")
  13304. },
  13305. {
  13306. name: "Giga Kaiju",
  13307. height: math.unit(200, "megameters")
  13308. },
  13309. {
  13310. name: "Terra Kaiju",
  13311. height: math.unit(400, "gigameters")
  13312. },
  13313. {
  13314. name: "Kaiju Dragon God",
  13315. height: math.unit(13000, "exaparsecs")
  13316. },
  13317. ]
  13318. ))
  13319. characterMakers.push(() => makeCharacter(
  13320. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13321. {
  13322. front: {
  13323. height: math.unit(6, "feet"),
  13324. weight: math.unit(150, "lb"),
  13325. name: "Front",
  13326. image: {
  13327. source: "./media/characters/blü/front.svg",
  13328. extra: 1883 / 1564,
  13329. bottom: 0.031
  13330. }
  13331. },
  13332. },
  13333. [
  13334. {
  13335. name: "Normal",
  13336. height: math.unit(13, "feet"),
  13337. default: true
  13338. },
  13339. {
  13340. name: "Big Boi",
  13341. height: math.unit(150, "meters")
  13342. },
  13343. {
  13344. name: "Mini Stomper",
  13345. height: math.unit(300, "meters")
  13346. },
  13347. {
  13348. name: "Macro",
  13349. height: math.unit(1000, "meters")
  13350. },
  13351. {
  13352. name: "Megamacro",
  13353. height: math.unit(11000, "meters")
  13354. },
  13355. {
  13356. name: "Gigamacro",
  13357. height: math.unit(11000, "km")
  13358. },
  13359. {
  13360. name: "Teramacro",
  13361. height: math.unit(420000, "km")
  13362. },
  13363. {
  13364. name: "Examacro",
  13365. height: math.unit(120, "parsecs")
  13366. },
  13367. {
  13368. name: "God Tho",
  13369. height: math.unit(98000000000, "parsecs")
  13370. },
  13371. ]
  13372. ))
  13373. characterMakers.push(() => makeCharacter(
  13374. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13375. {
  13376. taurFront: {
  13377. height: math.unit(6, "feet"),
  13378. weight: math.unit(200, "lb"),
  13379. name: "Taur (Front)",
  13380. image: {
  13381. source: "./media/characters/scales/taur-front.svg",
  13382. extra: 1,
  13383. bottom: 0.05
  13384. }
  13385. },
  13386. taurBack: {
  13387. height: math.unit(6, "feet"),
  13388. weight: math.unit(200, "lb"),
  13389. name: "Taur (Back)",
  13390. image: {
  13391. source: "./media/characters/scales/taur-back.svg",
  13392. extra: 1,
  13393. bottom: 0.08
  13394. }
  13395. },
  13396. anthro: {
  13397. height: math.unit(6 * 7 / 12, "feet"),
  13398. weight: math.unit(100, "lb"),
  13399. name: "Anthro",
  13400. image: {
  13401. source: "./media/characters/scales/anthro.svg",
  13402. extra: 1,
  13403. bottom: 0.06
  13404. }
  13405. },
  13406. },
  13407. [
  13408. {
  13409. name: "Normal",
  13410. height: math.unit(12, "feet"),
  13411. default: true
  13412. },
  13413. ]
  13414. ))
  13415. characterMakers.push(() => makeCharacter(
  13416. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13417. {
  13418. front: {
  13419. height: math.unit(6, "feet"),
  13420. weight: math.unit(150, "lb"),
  13421. name: "Front",
  13422. image: {
  13423. source: "./media/characters/koragos/front.svg",
  13424. extra: 841 / 794,
  13425. bottom: 0.035
  13426. }
  13427. },
  13428. back: {
  13429. height: math.unit(6, "feet"),
  13430. weight: math.unit(150, "lb"),
  13431. name: "Back",
  13432. image: {
  13433. source: "./media/characters/koragos/back.svg",
  13434. extra: 841 / 810,
  13435. bottom: 0.022
  13436. }
  13437. },
  13438. },
  13439. [
  13440. {
  13441. name: "Normal",
  13442. height: math.unit(6 + 11 / 12, "feet"),
  13443. default: true
  13444. },
  13445. {
  13446. name: "Macro",
  13447. height: math.unit(490, "feet")
  13448. },
  13449. {
  13450. name: "Megamacro",
  13451. height: math.unit(10, "miles")
  13452. },
  13453. {
  13454. name: "Gigamacro",
  13455. height: math.unit(50, "miles")
  13456. },
  13457. ]
  13458. ))
  13459. characterMakers.push(() => makeCharacter(
  13460. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13461. {
  13462. front: {
  13463. height: math.unit(6, "feet"),
  13464. weight: math.unit(250, "lb"),
  13465. name: "Front",
  13466. image: {
  13467. source: "./media/characters/xylrem/front.svg",
  13468. extra: 3323 / 3050,
  13469. bottom: 0.065
  13470. }
  13471. },
  13472. },
  13473. [
  13474. {
  13475. name: "Micro",
  13476. height: math.unit(4, "feet")
  13477. },
  13478. {
  13479. name: "Normal",
  13480. height: math.unit(16, "feet"),
  13481. default: true
  13482. },
  13483. {
  13484. name: "Macro",
  13485. height: math.unit(2720, "feet")
  13486. },
  13487. {
  13488. name: "Megamacro",
  13489. height: math.unit(25000, "miles")
  13490. },
  13491. ]
  13492. ))
  13493. characterMakers.push(() => makeCharacter(
  13494. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13495. {
  13496. front: {
  13497. height: math.unit(8, "feet"),
  13498. weight: math.unit(250, "kg"),
  13499. name: "Front",
  13500. image: {
  13501. source: "./media/characters/ikideru/front.svg",
  13502. extra: 930 / 870,
  13503. bottom: 0.087
  13504. }
  13505. },
  13506. back: {
  13507. height: math.unit(8, "feet"),
  13508. weight: math.unit(250, "kg"),
  13509. name: "Back",
  13510. image: {
  13511. source: "./media/characters/ikideru/back.svg",
  13512. extra: 919 / 852,
  13513. bottom: 0.055
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Rare",
  13520. height: math.unit(8, "feet"),
  13521. default: true
  13522. },
  13523. {
  13524. name: "Playful Loom",
  13525. height: math.unit(80, "feet")
  13526. },
  13527. {
  13528. name: "City Leaner",
  13529. height: math.unit(230, "feet")
  13530. },
  13531. {
  13532. name: "Megamacro",
  13533. height: math.unit(2500, "feet")
  13534. },
  13535. {
  13536. name: "Gigamacro",
  13537. height: math.unit(26400, "feet")
  13538. },
  13539. {
  13540. name: "Tectonic Shifter",
  13541. height: math.unit(1.7, "megameters")
  13542. },
  13543. {
  13544. name: "Planet Carer",
  13545. height: math.unit(21, "megameters")
  13546. },
  13547. {
  13548. name: "God",
  13549. height: math.unit(11157.22, "parsecs")
  13550. },
  13551. ]
  13552. ))
  13553. characterMakers.push(() => makeCharacter(
  13554. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13555. {
  13556. front: {
  13557. height: math.unit(6, "feet"),
  13558. weight: math.unit(120, "lb"),
  13559. name: "Front",
  13560. image: {
  13561. source: "./media/characters/neo/front.svg"
  13562. }
  13563. },
  13564. },
  13565. [
  13566. {
  13567. name: "Micro",
  13568. height: math.unit(2, "inches"),
  13569. default: true
  13570. },
  13571. {
  13572. name: "Human Size",
  13573. height: math.unit(5 + 8 / 12, "feet")
  13574. },
  13575. ]
  13576. ))
  13577. characterMakers.push(() => makeCharacter(
  13578. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13579. {
  13580. front: {
  13581. height: math.unit(13 + 10 / 12, "feet"),
  13582. weight: math.unit(5320, "lb"),
  13583. name: "Front",
  13584. image: {
  13585. source: "./media/characters/chauncey-chantz/front.svg",
  13586. extra: 1587 / 1435,
  13587. bottom: 0.02
  13588. }
  13589. },
  13590. },
  13591. [
  13592. {
  13593. name: "Normal",
  13594. height: math.unit(13 + 10 / 12, "feet"),
  13595. default: true
  13596. },
  13597. {
  13598. name: "Macro",
  13599. height: math.unit(45, "feet")
  13600. },
  13601. {
  13602. name: "Megamacro",
  13603. height: math.unit(250, "miles")
  13604. },
  13605. {
  13606. name: "Planetary",
  13607. height: math.unit(10000, "miles")
  13608. },
  13609. {
  13610. name: "Galactic",
  13611. height: math.unit(40000, "parsecs")
  13612. },
  13613. {
  13614. name: "Universal",
  13615. height: math.unit(1, "yottameter")
  13616. },
  13617. ]
  13618. ))
  13619. characterMakers.push(() => makeCharacter(
  13620. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13621. {
  13622. front: {
  13623. height: math.unit(6, "feet"),
  13624. weight: math.unit(150, "lb"),
  13625. name: "Front",
  13626. image: {
  13627. source: "./media/characters/epifox/front.svg",
  13628. extra: 1,
  13629. bottom: 0.075
  13630. }
  13631. },
  13632. },
  13633. [
  13634. {
  13635. name: "Micro",
  13636. height: math.unit(6, "inches")
  13637. },
  13638. {
  13639. name: "Normal",
  13640. height: math.unit(12, "feet"),
  13641. default: true
  13642. },
  13643. {
  13644. name: "Macro",
  13645. height: math.unit(3810, "feet")
  13646. },
  13647. {
  13648. name: "Megamacro",
  13649. height: math.unit(500, "miles")
  13650. },
  13651. ]
  13652. ))
  13653. characterMakers.push(() => makeCharacter(
  13654. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13655. {
  13656. front: {
  13657. height: math.unit(1.8796, "m"),
  13658. weight: math.unit(230, "lb"),
  13659. name: "Front",
  13660. image: {
  13661. source: "./media/characters/colin-t/front.svg",
  13662. extra: 1272 / 1193,
  13663. bottom: 0.07
  13664. }
  13665. },
  13666. },
  13667. [
  13668. {
  13669. name: "Micro",
  13670. height: math.unit(0.571, "meters")
  13671. },
  13672. {
  13673. name: "Normal",
  13674. height: math.unit(1.8796, "meters"),
  13675. default: true
  13676. },
  13677. {
  13678. name: "Tall",
  13679. height: math.unit(4, "meters")
  13680. },
  13681. {
  13682. name: "Macro",
  13683. height: math.unit(67.241, "meters")
  13684. },
  13685. {
  13686. name: "Megamacro",
  13687. height: math.unit(371.856, "meters")
  13688. },
  13689. {
  13690. name: "Planetary",
  13691. height: math.unit(12631.5689, "km")
  13692. },
  13693. ]
  13694. ))
  13695. characterMakers.push(() => makeCharacter(
  13696. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13697. {
  13698. front: {
  13699. height: math.unit(1.85, "meters"),
  13700. weight: math.unit(80, "kg"),
  13701. name: "Front",
  13702. image: {
  13703. source: "./media/characters/matvei/front.svg",
  13704. extra: 456/447,
  13705. bottom: 8/464
  13706. }
  13707. },
  13708. back: {
  13709. height: math.unit(1.85, "meters"),
  13710. weight: math.unit(80, "kg"),
  13711. name: "Back",
  13712. image: {
  13713. source: "./media/characters/matvei/back.svg",
  13714. extra: 434/427,
  13715. bottom: 11/445
  13716. }
  13717. },
  13718. },
  13719. [
  13720. {
  13721. name: "Normal",
  13722. height: math.unit(1.85, "meters"),
  13723. default: true
  13724. },
  13725. ]
  13726. ))
  13727. characterMakers.push(() => makeCharacter(
  13728. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13729. {
  13730. front: {
  13731. height: math.unit(5 + 9 / 12, "feet"),
  13732. weight: math.unit(70, "lb"),
  13733. name: "Front",
  13734. image: {
  13735. source: "./media/characters/quincy/front.svg",
  13736. extra: 3041 / 2751
  13737. }
  13738. },
  13739. back: {
  13740. height: math.unit(5 + 9 / 12, "feet"),
  13741. weight: math.unit(70, "lb"),
  13742. name: "Back",
  13743. image: {
  13744. source: "./media/characters/quincy/back.svg",
  13745. extra: 3041 / 2751
  13746. }
  13747. },
  13748. flying: {
  13749. height: math.unit(5 + 4 / 12, "feet"),
  13750. weight: math.unit(70, "lb"),
  13751. name: "Flying",
  13752. image: {
  13753. source: "./media/characters/quincy/flying.svg",
  13754. extra: 1044 / 930
  13755. }
  13756. },
  13757. },
  13758. [
  13759. {
  13760. name: "Micro",
  13761. height: math.unit(3, "cm")
  13762. },
  13763. {
  13764. name: "Normal",
  13765. height: math.unit(5 + 9 / 12, "feet")
  13766. },
  13767. {
  13768. name: "Macro",
  13769. height: math.unit(200, "meters"),
  13770. default: true
  13771. },
  13772. {
  13773. name: "Megamacro",
  13774. height: math.unit(1000, "meters")
  13775. },
  13776. ]
  13777. ))
  13778. characterMakers.push(() => makeCharacter(
  13779. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13780. {
  13781. front: {
  13782. height: math.unit(3 + 11/12, "feet"),
  13783. weight: math.unit(50, "lb"),
  13784. name: "Front",
  13785. image: {
  13786. source: "./media/characters/vanrel/front.svg",
  13787. extra: 1104/949,
  13788. bottom: 52/1156
  13789. }
  13790. },
  13791. back: {
  13792. height: math.unit(3 + 11/12, "feet"),
  13793. weight: math.unit(50, "lb"),
  13794. name: "Back",
  13795. image: {
  13796. source: "./media/characters/vanrel/back.svg",
  13797. extra: 1119/976,
  13798. bottom: 37/1156
  13799. }
  13800. },
  13801. tome: {
  13802. height: math.unit(1.35, "feet"),
  13803. weight: math.unit(10, "lb"),
  13804. name: "Vanrel's Tome",
  13805. rename: true,
  13806. image: {
  13807. source: "./media/characters/vanrel/tome.svg"
  13808. }
  13809. },
  13810. beans: {
  13811. height: math.unit(0.89, "feet"),
  13812. name: "Beans",
  13813. image: {
  13814. source: "./media/characters/vanrel/beans.svg"
  13815. }
  13816. },
  13817. },
  13818. [
  13819. {
  13820. name: "Normal",
  13821. height: math.unit(3 + 11/12, "feet"),
  13822. default: true
  13823. },
  13824. ]
  13825. ))
  13826. characterMakers.push(() => makeCharacter(
  13827. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13828. {
  13829. front: {
  13830. height: math.unit(7 + 5 / 12, "feet"),
  13831. name: "Front",
  13832. image: {
  13833. source: "./media/characters/kuiper-vanrel/front.svg",
  13834. extra: 1219/1169,
  13835. bottom: 69/1288
  13836. }
  13837. },
  13838. back: {
  13839. height: math.unit(7 + 5 / 12, "feet"),
  13840. name: "Back",
  13841. image: {
  13842. source: "./media/characters/kuiper-vanrel/back.svg",
  13843. extra: 1236/1193,
  13844. bottom: 27/1263
  13845. }
  13846. },
  13847. foot: {
  13848. height: math.unit(0.55, "meters"),
  13849. name: "Foot",
  13850. image: {
  13851. source: "./media/characters/kuiper-vanrel/foot.svg",
  13852. }
  13853. },
  13854. battle: {
  13855. height: math.unit(6.824, "feet"),
  13856. name: "Battle",
  13857. image: {
  13858. source: "./media/characters/kuiper-vanrel/battle.svg",
  13859. extra: 1466 / 1327,
  13860. bottom: 29 / 1492.5
  13861. }
  13862. },
  13863. meerkui: {
  13864. height: math.unit(18, "inches"),
  13865. name: "Meerkui",
  13866. image: {
  13867. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13868. extra: 1354/1289,
  13869. bottom: 69/1423
  13870. }
  13871. },
  13872. },
  13873. [
  13874. {
  13875. name: "Normal",
  13876. height: math.unit(7 + 5 / 12, "feet"),
  13877. default: true
  13878. },
  13879. ]
  13880. ))
  13881. characterMakers.push(() => makeCharacter(
  13882. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13883. {
  13884. front: {
  13885. height: math.unit(8 + 5 / 12, "feet"),
  13886. name: "Front",
  13887. image: {
  13888. source: "./media/characters/keset-vanrel/front.svg",
  13889. extra: 1231/1148,
  13890. bottom: 82/1313
  13891. }
  13892. },
  13893. back: {
  13894. height: math.unit(8 + 5 / 12, "feet"),
  13895. name: "Back",
  13896. image: {
  13897. source: "./media/characters/keset-vanrel/back.svg",
  13898. extra: 1240/1174,
  13899. bottom: 33/1273
  13900. }
  13901. },
  13902. hand: {
  13903. height: math.unit(0.6, "meters"),
  13904. name: "Hand",
  13905. image: {
  13906. source: "./media/characters/keset-vanrel/hand.svg"
  13907. }
  13908. },
  13909. foot: {
  13910. height: math.unit(0.94978, "meters"),
  13911. name: "Foot",
  13912. image: {
  13913. source: "./media/characters/keset-vanrel/foot.svg"
  13914. }
  13915. },
  13916. battle: {
  13917. height: math.unit(7.408, "feet"),
  13918. name: "Battle",
  13919. image: {
  13920. source: "./media/characters/keset-vanrel/battle.svg",
  13921. extra: 1890 / 1386,
  13922. bottom: 73.28 / 1970
  13923. }
  13924. },
  13925. },
  13926. [
  13927. {
  13928. name: "Normal",
  13929. height: math.unit(8 + 5 / 12, "feet"),
  13930. default: true
  13931. },
  13932. ]
  13933. ))
  13934. characterMakers.push(() => makeCharacter(
  13935. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13936. {
  13937. front: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(150, "lb"),
  13940. name: "Front",
  13941. image: {
  13942. source: "./media/characters/neos/front.svg",
  13943. extra: 1696 / 992,
  13944. bottom: 0.14
  13945. }
  13946. },
  13947. },
  13948. [
  13949. {
  13950. name: "Normal",
  13951. height: math.unit(54, "cm"),
  13952. default: true
  13953. },
  13954. {
  13955. name: "Macro",
  13956. height: math.unit(100, "m")
  13957. },
  13958. {
  13959. name: "Megamacro",
  13960. height: math.unit(10, "km")
  13961. },
  13962. {
  13963. name: "Megamacro+",
  13964. height: math.unit(100, "km")
  13965. },
  13966. {
  13967. name: "Gigamacro",
  13968. height: math.unit(100, "Mm")
  13969. },
  13970. {
  13971. name: "Teramacro",
  13972. height: math.unit(100, "Gm")
  13973. },
  13974. {
  13975. name: "Examacro",
  13976. height: math.unit(100, "Em")
  13977. },
  13978. {
  13979. name: "Godly",
  13980. height: math.unit(10000, "Ym")
  13981. },
  13982. {
  13983. name: "Beyond Godly",
  13984. height: math.unit(25, "multiverses")
  13985. },
  13986. ]
  13987. ))
  13988. characterMakers.push(() => makeCharacter(
  13989. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13990. {
  13991. fluide_tame: {
  13992. height: math.unit(5, "feet"),
  13993. name: "Tame",
  13994. image: {
  13995. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13996. extra: 1655/1574,
  13997. bottom: 231/1886
  13998. },
  13999. form: "fluide",
  14000. default: true
  14001. },
  14002. fluide_nude: {
  14003. height: math.unit(5, "feet"),
  14004. name: "Nude",
  14005. image: {
  14006. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14007. extra: 1655/1574,
  14008. bottom: 231/1886
  14009. },
  14010. form: "fluide",
  14011. },
  14012. male_tame: {
  14013. height: math.unit(5, "feet"),
  14014. name: "Tame",
  14015. image: {
  14016. source: "./media/characters/sammy-mouse/male-tame.svg",
  14017. extra: 1655/1574,
  14018. bottom: 231/1886
  14019. },
  14020. form: "male",
  14021. default: true
  14022. },
  14023. male_nude: {
  14024. height: math.unit(5, "feet"),
  14025. name: "Nude",
  14026. image: {
  14027. source: "./media/characters/sammy-mouse/male-nude.svg",
  14028. extra: 1655/1574,
  14029. bottom: 231/1886
  14030. },
  14031. form: "male",
  14032. },
  14033. female_nude: {
  14034. height: math.unit(5, "feet"),
  14035. name: "Nude",
  14036. image: {
  14037. source: "./media/characters/sammy-mouse/female-nude.svg",
  14038. extra: 1655/1574,
  14039. bottom: 231/1886
  14040. },
  14041. form: "female",
  14042. default: true
  14043. },
  14044. mouth: {
  14045. height: math.unit(0.32, "feet"),
  14046. name: "Mouth",
  14047. image: {
  14048. source: "./media/characters/sammy-mouse/mouth.svg"
  14049. },
  14050. allForms: true
  14051. },
  14052. paw: {
  14053. height: math.unit(0.42, "feet"),
  14054. name: "Paw",
  14055. image: {
  14056. source: "./media/characters/sammy-mouse/paw.svg"
  14057. },
  14058. allForms: true
  14059. },
  14060. },
  14061. [
  14062. {
  14063. name: "Micro",
  14064. height: math.unit(5, "inches"),
  14065. allForms: true
  14066. },
  14067. {
  14068. name: "Normal",
  14069. height: math.unit(5, "feet"),
  14070. default: true,
  14071. allForms: true
  14072. },
  14073. {
  14074. name: "Macro",
  14075. height: math.unit(60, "feet"),
  14076. allForms: true
  14077. },
  14078. ],
  14079. {
  14080. "fluide": {
  14081. name: "Fluide",
  14082. default: true
  14083. },
  14084. "male": {
  14085. name: "Male",
  14086. },
  14087. "female": {
  14088. name: "Female",
  14089. },
  14090. }
  14091. ))
  14092. characterMakers.push(() => makeCharacter(
  14093. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14094. {
  14095. front: {
  14096. height: math.unit(4, "feet"),
  14097. weight: math.unit(50, "lb"),
  14098. name: "Front",
  14099. image: {
  14100. source: "./media/characters/kole/front.svg",
  14101. extra: 1423 / 1303,
  14102. bottom: 0.025
  14103. }
  14104. },
  14105. back: {
  14106. height: math.unit(4, "feet"),
  14107. weight: math.unit(50, "lb"),
  14108. name: "Back",
  14109. image: {
  14110. source: "./media/characters/kole/back.svg",
  14111. extra: 1426 / 1280,
  14112. bottom: 0.02
  14113. }
  14114. },
  14115. },
  14116. [
  14117. {
  14118. name: "Normal",
  14119. height: math.unit(4, "feet"),
  14120. default: true
  14121. },
  14122. ]
  14123. ))
  14124. characterMakers.push(() => makeCharacter(
  14125. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14126. {
  14127. front: {
  14128. height: math.unit(2.5, "feet"),
  14129. weight: math.unit(32, "lb"),
  14130. name: "Front",
  14131. image: {
  14132. source: "./media/characters/rufran/front.svg",
  14133. extra: 1313/885,
  14134. bottom: 94/1407
  14135. }
  14136. },
  14137. side: {
  14138. height: math.unit(2.5, "feet"),
  14139. weight: math.unit(32, "lb"),
  14140. name: "Side",
  14141. image: {
  14142. source: "./media/characters/rufran/side.svg",
  14143. extra: 1109/852,
  14144. bottom: 118/1227
  14145. }
  14146. },
  14147. back: {
  14148. height: math.unit(2.5, "feet"),
  14149. weight: math.unit(32, "lb"),
  14150. name: "Back",
  14151. image: {
  14152. source: "./media/characters/rufran/back.svg",
  14153. extra: 1280/878,
  14154. bottom: 131/1411
  14155. }
  14156. },
  14157. mouth: {
  14158. height: math.unit(1.13, "feet"),
  14159. name: "Mouth",
  14160. image: {
  14161. source: "./media/characters/rufran/mouth.svg"
  14162. }
  14163. },
  14164. foot: {
  14165. height: math.unit(1.33, "feet"),
  14166. name: "Foot",
  14167. image: {
  14168. source: "./media/characters/rufran/foot.svg"
  14169. }
  14170. },
  14171. koboldFront: {
  14172. height: math.unit(2 + 6 / 12, "feet"),
  14173. weight: math.unit(20, "lb"),
  14174. name: "Front (Kobold)",
  14175. image: {
  14176. source: "./media/characters/rufran/kobold-front.svg",
  14177. extra: 2041 / 1839,
  14178. bottom: 0.055
  14179. }
  14180. },
  14181. koboldBack: {
  14182. height: math.unit(2 + 6 / 12, "feet"),
  14183. weight: math.unit(20, "lb"),
  14184. name: "Back (Kobold)",
  14185. image: {
  14186. source: "./media/characters/rufran/kobold-back.svg",
  14187. extra: 2054 / 1839,
  14188. bottom: 0.01
  14189. }
  14190. },
  14191. koboldHand: {
  14192. height: math.unit(0.2166, "meters"),
  14193. name: "Hand (Kobold)",
  14194. image: {
  14195. source: "./media/characters/rufran/kobold-hand.svg"
  14196. }
  14197. },
  14198. koboldFoot: {
  14199. height: math.unit(0.185, "meters"),
  14200. name: "Foot (Kobold)",
  14201. image: {
  14202. source: "./media/characters/rufran/kobold-foot.svg"
  14203. }
  14204. },
  14205. },
  14206. [
  14207. {
  14208. name: "Micro",
  14209. height: math.unit(1, "inch")
  14210. },
  14211. {
  14212. name: "Normal",
  14213. height: math.unit(2 + 6 / 12, "feet"),
  14214. default: true
  14215. },
  14216. {
  14217. name: "Big",
  14218. height: math.unit(60, "feet")
  14219. },
  14220. {
  14221. name: "Macro",
  14222. height: math.unit(325, "feet")
  14223. },
  14224. ]
  14225. ))
  14226. characterMakers.push(() => makeCharacter(
  14227. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14228. {
  14229. front: {
  14230. height: math.unit(0.3, "meters"),
  14231. weight: math.unit(3.5, "kg"),
  14232. name: "Front",
  14233. image: {
  14234. source: "./media/characters/chip/front.svg",
  14235. extra: 748 / 674
  14236. }
  14237. },
  14238. },
  14239. [
  14240. {
  14241. name: "Micro",
  14242. height: math.unit(1, "inch"),
  14243. default: true
  14244. },
  14245. ]
  14246. ))
  14247. characterMakers.push(() => makeCharacter(
  14248. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14249. {
  14250. side: {
  14251. height: math.unit(2.3, "meters"),
  14252. weight: math.unit(3500, "lb"),
  14253. name: "Side",
  14254. image: {
  14255. source: "./media/characters/torvid/side.svg",
  14256. extra: 1972 / 722,
  14257. bottom: 0.035
  14258. }
  14259. },
  14260. },
  14261. [
  14262. {
  14263. name: "Normal",
  14264. height: math.unit(2.3, "meters"),
  14265. default: true
  14266. },
  14267. ]
  14268. ))
  14269. characterMakers.push(() => makeCharacter(
  14270. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14271. {
  14272. front: {
  14273. height: math.unit(2, "meters"),
  14274. weight: math.unit(150.5, "kg"),
  14275. name: "Front",
  14276. image: {
  14277. source: "./media/characters/susan/front.svg",
  14278. extra: 693 / 635,
  14279. bottom: 0.05
  14280. }
  14281. },
  14282. },
  14283. [
  14284. {
  14285. name: "Megamacro",
  14286. height: math.unit(505, "miles"),
  14287. default: true
  14288. },
  14289. ]
  14290. ))
  14291. characterMakers.push(() => makeCharacter(
  14292. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14293. {
  14294. front: {
  14295. height: math.unit(6, "feet"),
  14296. weight: math.unit(150, "lb"),
  14297. name: "Front",
  14298. image: {
  14299. source: "./media/characters/raindrops/front.svg",
  14300. extra: 2655 / 2461,
  14301. bottom: 49 / 2705
  14302. }
  14303. },
  14304. back: {
  14305. height: math.unit(6, "feet"),
  14306. weight: math.unit(150, "lb"),
  14307. name: "Back",
  14308. image: {
  14309. source: "./media/characters/raindrops/back.svg",
  14310. extra: 2574 / 2400,
  14311. bottom: 65 / 2634
  14312. }
  14313. },
  14314. },
  14315. [
  14316. {
  14317. name: "Micro",
  14318. height: math.unit(6, "inches")
  14319. },
  14320. {
  14321. name: "Normal",
  14322. height: math.unit(6 + 2 / 12, "feet")
  14323. },
  14324. {
  14325. name: "Macro",
  14326. height: math.unit(131, "feet"),
  14327. default: true
  14328. },
  14329. {
  14330. name: "Megamacro",
  14331. height: math.unit(15, "miles")
  14332. },
  14333. {
  14334. name: "Gigamacro",
  14335. height: math.unit(4000, "miles")
  14336. },
  14337. {
  14338. name: "Teramacro",
  14339. height: math.unit(315000, "miles")
  14340. },
  14341. ]
  14342. ))
  14343. characterMakers.push(() => makeCharacter(
  14344. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14345. {
  14346. front: {
  14347. height: math.unit(2.794, "meters"),
  14348. weight: math.unit(325, "kg"),
  14349. name: "Front",
  14350. image: {
  14351. source: "./media/characters/tezwa/front.svg",
  14352. extra: 2083 / 1906,
  14353. bottom: 0.031
  14354. }
  14355. },
  14356. foot: {
  14357. height: math.unit(0.687, "meters"),
  14358. name: "Foot",
  14359. image: {
  14360. source: "./media/characters/tezwa/foot.svg"
  14361. }
  14362. },
  14363. },
  14364. [
  14365. {
  14366. name: "Normal",
  14367. height: math.unit(9 + 2 / 12, "feet"),
  14368. default: true
  14369. },
  14370. ]
  14371. ))
  14372. characterMakers.push(() => makeCharacter(
  14373. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14374. {
  14375. front: {
  14376. height: math.unit(58, "feet"),
  14377. weight: math.unit(89000, "lb"),
  14378. name: "Front",
  14379. image: {
  14380. source: "./media/characters/typhus/front.svg",
  14381. extra: 816 / 800,
  14382. bottom: 0.065
  14383. }
  14384. },
  14385. },
  14386. [
  14387. {
  14388. name: "Macro",
  14389. height: math.unit(58, "feet"),
  14390. default: true
  14391. },
  14392. ]
  14393. ))
  14394. characterMakers.push(() => makeCharacter(
  14395. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14396. {
  14397. front: {
  14398. height: math.unit(12, "feet"),
  14399. weight: math.unit(6, "tonnes"),
  14400. name: "Front",
  14401. image: {
  14402. source: "./media/characters/lyra-von-wulf/front.svg",
  14403. extra: 1,
  14404. bottom: 0.10
  14405. }
  14406. },
  14407. frontMecha: {
  14408. height: math.unit(12, "feet"),
  14409. weight: math.unit(12, "tonnes"),
  14410. name: "Front (Mecha)",
  14411. image: {
  14412. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14413. extra: 1,
  14414. bottom: 0.042
  14415. }
  14416. },
  14417. maw: {
  14418. height: math.unit(2.2, "feet"),
  14419. name: "Maw",
  14420. image: {
  14421. source: "./media/characters/lyra-von-wulf/maw.svg"
  14422. }
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Normal",
  14428. height: math.unit(12, "feet"),
  14429. default: true
  14430. },
  14431. {
  14432. name: "Classic",
  14433. height: math.unit(50, "feet")
  14434. },
  14435. {
  14436. name: "Macro",
  14437. height: math.unit(500, "feet")
  14438. },
  14439. {
  14440. name: "Megamacro",
  14441. height: math.unit(1, "mile")
  14442. },
  14443. {
  14444. name: "Gigamacro",
  14445. height: math.unit(400, "miles")
  14446. },
  14447. {
  14448. name: "Teramacro",
  14449. height: math.unit(22000, "miles")
  14450. },
  14451. {
  14452. name: "Solarmacro",
  14453. height: math.unit(8600000, "miles")
  14454. },
  14455. {
  14456. name: "Galactic",
  14457. height: math.unit(1057000, "lightyears")
  14458. },
  14459. ]
  14460. ))
  14461. characterMakers.push(() => makeCharacter(
  14462. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14463. {
  14464. front: {
  14465. height: math.unit(6 + 10 / 12, "feet"),
  14466. weight: math.unit(150, "lb"),
  14467. name: "Front",
  14468. image: {
  14469. source: "./media/characters/dixon/front.svg",
  14470. extra: 3361 / 3209,
  14471. bottom: 0.01
  14472. }
  14473. },
  14474. },
  14475. [
  14476. {
  14477. name: "Normal",
  14478. height: math.unit(6 + 10 / 12, "feet"),
  14479. default: true
  14480. },
  14481. {
  14482. name: "Big",
  14483. height: math.unit(12, "meters")
  14484. },
  14485. {
  14486. name: "Macro",
  14487. height: math.unit(500, "meters")
  14488. },
  14489. {
  14490. name: "Megamacro",
  14491. height: math.unit(2, "km")
  14492. },
  14493. ]
  14494. ))
  14495. characterMakers.push(() => makeCharacter(
  14496. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14497. {
  14498. kingCheetah_front: {
  14499. height: math.unit(1.85, "meters"),
  14500. weight: math.unit(68, "kg"),
  14501. name: "Front",
  14502. image: {
  14503. source: "./media/characters/kauko/king-cheetah-front.svg",
  14504. extra: 1007/972,
  14505. bottom: 35/1042
  14506. },
  14507. form: "king-cheetah",
  14508. default: true
  14509. },
  14510. kingCheetah_back: {
  14511. height: math.unit(1.85, "meters"),
  14512. weight: math.unit(68, "kg"),
  14513. name: "Back",
  14514. image: {
  14515. source: "./media/characters/kauko/king-cheetah-back.svg",
  14516. extra: 1015/980,
  14517. bottom: 11/1026
  14518. },
  14519. form: "king-cheetah",
  14520. },
  14521. kingCheetah_hand: {
  14522. height: math.unit(0.23, "meters"),
  14523. name: "Hand",
  14524. image: {
  14525. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14526. },
  14527. form: "king-cheetah",
  14528. },
  14529. kingCheetah_paw: {
  14530. height: math.unit(0.38, "meters"),
  14531. name: "Paw",
  14532. image: {
  14533. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14534. },
  14535. form: "king-cheetah",
  14536. },
  14537. kingCheetah_nape: {
  14538. height: math.unit(0.23, "meters"),
  14539. name: "Nape",
  14540. image: {
  14541. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14542. },
  14543. form: "king-cheetah",
  14544. },
  14545. wolf_front: {
  14546. height: math.unit(1.88, "meters"),
  14547. weight: math.unit(74, "kg"),
  14548. name: "Front",
  14549. image: {
  14550. source: "./media/characters/kauko/wolf-front.svg",
  14551. extra: 952/908,
  14552. bottom: 64/1016
  14553. },
  14554. form: "wolf",
  14555. default: true
  14556. },
  14557. wolf_dressed: {
  14558. height: math.unit(1.88, "meters"),
  14559. weight: math.unit(74, "kg"),
  14560. name: "Dressed",
  14561. image: {
  14562. source: "./media/characters/kauko/wolf-dressed.svg",
  14563. extra: 963/916,
  14564. bottom: 101/1064
  14565. },
  14566. form: "wolf",
  14567. },
  14568. wolf_hand: {
  14569. height: math.unit(0.3, "meters"),
  14570. name: "Hand",
  14571. image: {
  14572. source: "./media/characters/kauko/wolf-hand.svg"
  14573. },
  14574. form: "wolf",
  14575. },
  14576. wolf_paw: {
  14577. height: math.unit(0.407, "meters"),
  14578. name: "Paw",
  14579. image: {
  14580. source: "./media/characters/kauko/wolf-paw.svg"
  14581. },
  14582. form: "wolf",
  14583. },
  14584. wolf_nape: {
  14585. height: math.unit(0.25, "meters"),
  14586. name: "Nape",
  14587. image: {
  14588. source: "./media/characters/kauko/wolf-nape.svg"
  14589. },
  14590. form: "wolf",
  14591. },
  14592. },
  14593. [
  14594. {
  14595. name: "Normal",
  14596. height: math.unit(1.85, "m"),
  14597. default: true,
  14598. form: "king-cheetah"
  14599. },
  14600. {
  14601. name: "Normal",
  14602. height: math.unit(1.88, "m"),
  14603. default: true,
  14604. form: "wolf"
  14605. },
  14606. ],
  14607. {
  14608. "king-cheetah": {
  14609. name: "King Cheetah",
  14610. default: true
  14611. },
  14612. "wolf": {
  14613. name: "Wolf",
  14614. },
  14615. }
  14616. ))
  14617. characterMakers.push(() => makeCharacter(
  14618. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14619. {
  14620. frontSfw: {
  14621. height: math.unit(5, "meters"),
  14622. weight: math.unit(4250, "lb"),
  14623. name: "Front",
  14624. image: {
  14625. source: "./media/characters/varg/front-sfw.svg",
  14626. extra: 1103/1010,
  14627. bottom: 50/1153
  14628. },
  14629. form: "anthro",
  14630. default: true
  14631. },
  14632. backSfw: {
  14633. height: math.unit(5, "meters"),
  14634. weight: math.unit(4250, "lb"),
  14635. name: "Back",
  14636. image: {
  14637. source: "./media/characters/varg/back-sfw.svg",
  14638. extra: 1038/1022,
  14639. bottom: 36/1074
  14640. },
  14641. form: "anthro"
  14642. },
  14643. frontNsfw: {
  14644. height: math.unit(5, "meters"),
  14645. weight: math.unit(4250, "lb"),
  14646. name: "Front (NSFW)",
  14647. image: {
  14648. source: "./media/characters/varg/front-nsfw.svg",
  14649. extra: 1103/1010,
  14650. bottom: 50/1153
  14651. },
  14652. form: "anthro"
  14653. },
  14654. sheath: {
  14655. height: math.unit(3.8, "feet"),
  14656. weight: math.unit(90, "kilograms"),
  14657. name: "Sheath",
  14658. image: {
  14659. source: "./media/characters/varg/sheath.svg"
  14660. },
  14661. form: "anthro"
  14662. },
  14663. dick: {
  14664. height: math.unit(4.6, "feet"),
  14665. weight: math.unit(451, "kilograms"),
  14666. name: "Dick",
  14667. image: {
  14668. source: "./media/characters/varg/dick.svg"
  14669. },
  14670. form: "anthro"
  14671. },
  14672. feralSfw: {
  14673. height: math.unit(5, "meters"),
  14674. weight: math.unit(100000, "lb"),
  14675. name: "Side",
  14676. image: {
  14677. source: "./media/characters/varg/feral-sfw.svg",
  14678. extra: 1065/511,
  14679. bottom: 211/1276
  14680. },
  14681. form: "feral",
  14682. default: true
  14683. },
  14684. feralNsfw: {
  14685. height: math.unit(5, "meters"),
  14686. weight: math.unit(100000, "lb"),
  14687. name: "Side (NSFW)",
  14688. image: {
  14689. source: "./media/characters/varg/feral-nsfw.svg",
  14690. extra: 1065/511,
  14691. bottom: 211/1276
  14692. },
  14693. form: "feral",
  14694. },
  14695. feralSheath: {
  14696. height: math.unit(9.8, "feet"),
  14697. weight: math.unit(2000, "kilograms"),
  14698. name: "Sheath",
  14699. image: {
  14700. source: "./media/characters/varg/sheath.svg"
  14701. },
  14702. form: "feral"
  14703. },
  14704. feralDick: {
  14705. height: math.unit(13.11, "feet"),
  14706. weight: math.unit(10440, "kilograms"),
  14707. name: "Dick",
  14708. image: {
  14709. source: "./media/characters/varg/dick.svg"
  14710. },
  14711. form: "feral"
  14712. },
  14713. },
  14714. [
  14715. {
  14716. name: "Normal",
  14717. height: math.unit(5, "meters"),
  14718. form: "anthro"
  14719. },
  14720. {
  14721. name: "Macro",
  14722. height: math.unit(200, "meters"),
  14723. form: "anthro"
  14724. },
  14725. {
  14726. name: "Megamacro",
  14727. height: math.unit(20, "kilometers"),
  14728. form: "anthro"
  14729. },
  14730. {
  14731. name: "True Size",
  14732. height: math.unit(211, "km"),
  14733. form: "anthro",
  14734. default: true
  14735. },
  14736. {
  14737. name: "Gigamacro",
  14738. height: math.unit(1000, "km"),
  14739. form: "anthro"
  14740. },
  14741. {
  14742. name: "Gigamacro+",
  14743. height: math.unit(8000, "km"),
  14744. form: "anthro"
  14745. },
  14746. {
  14747. name: "Teramacro",
  14748. height: math.unit(1000000, "km"),
  14749. form: "anthro"
  14750. },
  14751. {
  14752. name: "Normal",
  14753. height: math.unit(5, "meters"),
  14754. form: "feral"
  14755. },
  14756. {
  14757. name: "Macro",
  14758. height: math.unit(200, "meters"),
  14759. form: "feral"
  14760. },
  14761. {
  14762. name: "Megamacro",
  14763. height: math.unit(20, "kilometers"),
  14764. form: "feral"
  14765. },
  14766. {
  14767. name: "True Size",
  14768. height: math.unit(211, "km"),
  14769. form: "feral",
  14770. default: true
  14771. },
  14772. {
  14773. name: "Gigamacro",
  14774. height: math.unit(1000, "km"),
  14775. form: "feral"
  14776. },
  14777. {
  14778. name: "Gigamacro+",
  14779. height: math.unit(8000, "km"),
  14780. form: "feral"
  14781. },
  14782. {
  14783. name: "Teramacro",
  14784. height: math.unit(1000000, "km"),
  14785. form: "feral"
  14786. },
  14787. ],
  14788. {
  14789. "anthro": {
  14790. name: "Anthro",
  14791. default: true
  14792. },
  14793. "feral": {
  14794. name: "Feral",
  14795. },
  14796. }
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14800. {
  14801. front: {
  14802. height: math.unit(7 + 7 / 12, "feet"),
  14803. weight: math.unit(267, "lb"),
  14804. name: "Front",
  14805. image: {
  14806. source: "./media/characters/dayza/front.svg",
  14807. extra: 1262 / 1200,
  14808. bottom: 0.035
  14809. }
  14810. },
  14811. side: {
  14812. height: math.unit(7 + 7 / 12, "feet"),
  14813. weight: math.unit(267, "lb"),
  14814. name: "Side",
  14815. image: {
  14816. source: "./media/characters/dayza/side.svg",
  14817. extra: 1295 / 1245,
  14818. bottom: 0.05
  14819. }
  14820. },
  14821. back: {
  14822. height: math.unit(7 + 7 / 12, "feet"),
  14823. weight: math.unit(267, "lb"),
  14824. name: "Back",
  14825. image: {
  14826. source: "./media/characters/dayza/back.svg",
  14827. extra: 1241 / 1170
  14828. }
  14829. },
  14830. },
  14831. [
  14832. {
  14833. name: "Normal",
  14834. height: math.unit(7 + 7 / 12, "feet"),
  14835. default: true
  14836. },
  14837. {
  14838. name: "Macro",
  14839. height: math.unit(155, "feet")
  14840. },
  14841. ]
  14842. ))
  14843. characterMakers.push(() => makeCharacter(
  14844. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14845. {
  14846. front: {
  14847. height: math.unit(6 + 5 / 12, "feet"),
  14848. weight: math.unit(160, "lb"),
  14849. name: "Front",
  14850. image: {
  14851. source: "./media/characters/xanthos/front.svg",
  14852. extra: 1,
  14853. bottom: 0.04
  14854. }
  14855. },
  14856. back: {
  14857. height: math.unit(6 + 5 / 12, "feet"),
  14858. weight: math.unit(160, "lb"),
  14859. name: "Back",
  14860. image: {
  14861. source: "./media/characters/xanthos/back.svg",
  14862. extra: 1,
  14863. bottom: 0.03
  14864. }
  14865. },
  14866. hand: {
  14867. height: math.unit(0.928, "feet"),
  14868. name: "Hand",
  14869. image: {
  14870. source: "./media/characters/xanthos/hand.svg"
  14871. }
  14872. },
  14873. foot: {
  14874. height: math.unit(1.286, "feet"),
  14875. name: "Foot",
  14876. image: {
  14877. source: "./media/characters/xanthos/foot.svg"
  14878. }
  14879. },
  14880. },
  14881. [
  14882. {
  14883. name: "Normal",
  14884. height: math.unit(6 + 5 / 12, "feet"),
  14885. default: true
  14886. },
  14887. {
  14888. name: "Normal+",
  14889. height: math.unit(6, "meters")
  14890. },
  14891. {
  14892. name: "Macro",
  14893. height: math.unit(40, "feet")
  14894. },
  14895. {
  14896. name: "Macro+",
  14897. height: math.unit(200, "meters")
  14898. },
  14899. {
  14900. name: "Megamacro",
  14901. height: math.unit(20, "km")
  14902. },
  14903. {
  14904. name: "Megamacro+",
  14905. height: math.unit(100, "km")
  14906. },
  14907. {
  14908. name: "Gigamacro",
  14909. height: math.unit(200, "megameters")
  14910. },
  14911. {
  14912. name: "Gigamacro+",
  14913. height: math.unit(1.5, "gigameters")
  14914. },
  14915. ]
  14916. ))
  14917. characterMakers.push(() => makeCharacter(
  14918. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14919. {
  14920. front: {
  14921. height: math.unit(6 + 3 / 12, "feet"),
  14922. weight: math.unit(215, "lb"),
  14923. name: "Front",
  14924. image: {
  14925. source: "./media/characters/grynn/front.svg",
  14926. extra: 4627 / 4209,
  14927. bottom: 0.047
  14928. }
  14929. },
  14930. },
  14931. [
  14932. {
  14933. name: "Micro",
  14934. height: math.unit(6, "inches")
  14935. },
  14936. {
  14937. name: "Normal",
  14938. height: math.unit(6 + 3 / 12, "feet"),
  14939. default: true
  14940. },
  14941. {
  14942. name: "Big",
  14943. height: math.unit(104, "feet")
  14944. },
  14945. {
  14946. name: "Macro",
  14947. height: math.unit(944, "feet")
  14948. },
  14949. {
  14950. name: "Macro+",
  14951. height: math.unit(9480, "feet")
  14952. },
  14953. {
  14954. name: "Megamacro",
  14955. height: math.unit(78752, "feet")
  14956. },
  14957. {
  14958. name: "Megamacro+",
  14959. height: math.unit(630128, "feet")
  14960. },
  14961. {
  14962. name: "Megamacro++",
  14963. height: math.unit(3150695, "feet")
  14964. },
  14965. ]
  14966. ))
  14967. characterMakers.push(() => makeCharacter(
  14968. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14969. {
  14970. front: {
  14971. height: math.unit(7 + 5 / 12, "feet"),
  14972. weight: math.unit(450, "lb"),
  14973. name: "Front",
  14974. image: {
  14975. source: "./media/characters/mocha-aura/front.svg",
  14976. extra: 1907 / 1817,
  14977. bottom: 0.04
  14978. }
  14979. },
  14980. back: {
  14981. height: math.unit(7 + 5 / 12, "feet"),
  14982. weight: math.unit(450, "lb"),
  14983. name: "Back",
  14984. image: {
  14985. source: "./media/characters/mocha-aura/back.svg",
  14986. extra: 1900 / 1825,
  14987. bottom: 0.045
  14988. }
  14989. },
  14990. },
  14991. [
  14992. {
  14993. name: "Nano",
  14994. height: math.unit(1, "nm")
  14995. },
  14996. {
  14997. name: "Megamicro",
  14998. height: math.unit(1, "mm")
  14999. },
  15000. {
  15001. name: "Micro",
  15002. height: math.unit(3, "inches")
  15003. },
  15004. {
  15005. name: "Normal",
  15006. height: math.unit(7 + 5 / 12, "feet"),
  15007. default: true
  15008. },
  15009. {
  15010. name: "Macro",
  15011. height: math.unit(30, "feet")
  15012. },
  15013. {
  15014. name: "Megamacro",
  15015. height: math.unit(3500, "feet")
  15016. },
  15017. {
  15018. name: "Teramacro",
  15019. height: math.unit(500000, "miles")
  15020. },
  15021. {
  15022. name: "Petamacro",
  15023. height: math.unit(50000000000000000, "parsecs")
  15024. },
  15025. ]
  15026. ))
  15027. characterMakers.push(() => makeCharacter(
  15028. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15029. {
  15030. front: {
  15031. height: math.unit(6, "feet"),
  15032. weight: math.unit(150, "lb"),
  15033. name: "Front",
  15034. image: {
  15035. source: "./media/characters/ilisha-devya/front.svg",
  15036. extra: 1053/1049,
  15037. bottom: 270/1323
  15038. }
  15039. },
  15040. back: {
  15041. height: math.unit(6, "feet"),
  15042. weight: math.unit(150, "lb"),
  15043. name: "Back",
  15044. image: {
  15045. source: "./media/characters/ilisha-devya/back.svg",
  15046. extra: 1131/1128,
  15047. bottom: 39/1170
  15048. }
  15049. },
  15050. },
  15051. [
  15052. {
  15053. name: "Macro",
  15054. height: math.unit(500, "feet"),
  15055. default: true
  15056. },
  15057. {
  15058. name: "Megamacro",
  15059. height: math.unit(10, "miles")
  15060. },
  15061. {
  15062. name: "Gigamacro",
  15063. height: math.unit(100000, "miles")
  15064. },
  15065. {
  15066. name: "Examacro",
  15067. height: math.unit(1e9, "lightyears")
  15068. },
  15069. {
  15070. name: "Omniversal",
  15071. height: math.unit(1e33, "lightyears")
  15072. },
  15073. {
  15074. name: "Beyond Infinite",
  15075. height: math.unit(1e100, "lightyears")
  15076. },
  15077. ]
  15078. ))
  15079. characterMakers.push(() => makeCharacter(
  15080. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15081. {
  15082. Side: {
  15083. height: math.unit(6, "feet"),
  15084. weight: math.unit(150, "lb"),
  15085. name: "Side",
  15086. image: {
  15087. source: "./media/characters/mira/side.svg",
  15088. extra: 900 / 799,
  15089. bottom: 0.02
  15090. }
  15091. },
  15092. },
  15093. [
  15094. {
  15095. name: "Human Size",
  15096. height: math.unit(6, "feet")
  15097. },
  15098. {
  15099. name: "Macro",
  15100. height: math.unit(100, "feet"),
  15101. default: true
  15102. },
  15103. {
  15104. name: "Megamacro",
  15105. height: math.unit(10, "miles")
  15106. },
  15107. {
  15108. name: "Gigamacro",
  15109. height: math.unit(25000, "miles")
  15110. },
  15111. {
  15112. name: "Teramacro",
  15113. height: math.unit(300, "AU")
  15114. },
  15115. {
  15116. name: "Full Size",
  15117. height: math.unit(4.5e10, "lightyears")
  15118. },
  15119. ]
  15120. ))
  15121. characterMakers.push(() => makeCharacter(
  15122. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15123. {
  15124. front: {
  15125. height: math.unit(6, "feet"),
  15126. weight: math.unit(150, "lb"),
  15127. name: "Front",
  15128. image: {
  15129. source: "./media/characters/holly/front.svg",
  15130. extra: 639 / 606
  15131. }
  15132. },
  15133. back: {
  15134. height: math.unit(6, "feet"),
  15135. weight: math.unit(150, "lb"),
  15136. name: "Back",
  15137. image: {
  15138. source: "./media/characters/holly/back.svg",
  15139. extra: 623 / 598
  15140. }
  15141. },
  15142. frontWorking: {
  15143. height: math.unit(6, "feet"),
  15144. weight: math.unit(150, "lb"),
  15145. name: "Front (Working)",
  15146. image: {
  15147. source: "./media/characters/holly/front-working.svg",
  15148. extra: 607 / 577,
  15149. bottom: 0.048
  15150. }
  15151. },
  15152. },
  15153. [
  15154. {
  15155. name: "Normal",
  15156. height: math.unit(12 + 3 / 12, "feet"),
  15157. default: true
  15158. },
  15159. ]
  15160. ))
  15161. characterMakers.push(() => makeCharacter(
  15162. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15163. {
  15164. front: {
  15165. height: math.unit(6, "feet"),
  15166. weight: math.unit(150, "lb"),
  15167. name: "Front",
  15168. image: {
  15169. source: "./media/characters/porter/front.svg",
  15170. extra: 1,
  15171. bottom: 0.01
  15172. }
  15173. },
  15174. frontRobes: {
  15175. height: math.unit(6, "feet"),
  15176. weight: math.unit(150, "lb"),
  15177. name: "Front (Robes)",
  15178. image: {
  15179. source: "./media/characters/porter/front-robes.svg",
  15180. extra: 1.01,
  15181. bottom: 0.01
  15182. }
  15183. },
  15184. },
  15185. [
  15186. {
  15187. name: "Normal",
  15188. height: math.unit(11 + 9 / 12, "feet"),
  15189. default: true
  15190. },
  15191. ]
  15192. ))
  15193. characterMakers.push(() => makeCharacter(
  15194. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15195. {
  15196. legendary: {
  15197. height: math.unit(6, "feet"),
  15198. weight: math.unit(150, "lb"),
  15199. name: "Legendary",
  15200. image: {
  15201. source: "./media/characters/lucy/legendary.svg",
  15202. extra: 1355 / 1100,
  15203. bottom: 0.045
  15204. }
  15205. },
  15206. },
  15207. [
  15208. {
  15209. name: "Legendary",
  15210. height: math.unit(86882 * 2, "miles"),
  15211. default: true
  15212. },
  15213. ]
  15214. ))
  15215. characterMakers.push(() => makeCharacter(
  15216. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15217. {
  15218. front: {
  15219. height: math.unit(6, "feet"),
  15220. weight: math.unit(150, "lb"),
  15221. name: "Front",
  15222. image: {
  15223. source: "./media/characters/drusilla/front.svg",
  15224. extra: 678 / 635,
  15225. bottom: 0.03
  15226. }
  15227. },
  15228. back: {
  15229. height: math.unit(6, "feet"),
  15230. weight: math.unit(150, "lb"),
  15231. name: "Back",
  15232. image: {
  15233. source: "./media/characters/drusilla/back.svg",
  15234. extra: 678 / 635,
  15235. bottom: 0.005
  15236. }
  15237. },
  15238. },
  15239. [
  15240. {
  15241. name: "Macro",
  15242. height: math.unit(100, "feet")
  15243. },
  15244. {
  15245. name: "Canon Height",
  15246. height: math.unit(2000, "feet"),
  15247. default: true
  15248. },
  15249. ]
  15250. ))
  15251. characterMakers.push(() => makeCharacter(
  15252. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15253. {
  15254. front: {
  15255. height: math.unit(6, "feet"),
  15256. weight: math.unit(180, "lb"),
  15257. name: "Front",
  15258. image: {
  15259. source: "./media/characters/renard-thatch/front.svg",
  15260. extra: 2411 / 2275,
  15261. bottom: 0.01
  15262. }
  15263. },
  15264. frontPosing: {
  15265. height: math.unit(6, "feet"),
  15266. weight: math.unit(180, "lb"),
  15267. name: "Front (Posing)",
  15268. image: {
  15269. source: "./media/characters/renard-thatch/front-posing.svg",
  15270. extra: 2381 / 2261,
  15271. bottom: 0.01
  15272. }
  15273. },
  15274. back: {
  15275. height: math.unit(6, "feet"),
  15276. weight: math.unit(180, "lb"),
  15277. name: "Back",
  15278. image: {
  15279. source: "./media/characters/renard-thatch/back.svg",
  15280. extra: 2428 / 2288
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Micro",
  15287. height: math.unit(3, "inches")
  15288. },
  15289. {
  15290. name: "Default",
  15291. height: math.unit(6, "feet"),
  15292. default: true
  15293. },
  15294. {
  15295. name: "Macro",
  15296. height: math.unit(75, "feet")
  15297. },
  15298. ]
  15299. ))
  15300. characterMakers.push(() => makeCharacter(
  15301. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15302. {
  15303. front: {
  15304. height: math.unit(1450, "feet"),
  15305. weight: math.unit(1.21e6, "tons"),
  15306. name: "Front",
  15307. image: {
  15308. source: "./media/characters/sekvra/front.svg",
  15309. extra: 1193/1190,
  15310. bottom: 78/1271
  15311. }
  15312. },
  15313. side: {
  15314. height: math.unit(1450, "feet"),
  15315. weight: math.unit(1.21e6, "tons"),
  15316. name: "Side",
  15317. image: {
  15318. source: "./media/characters/sekvra/side.svg",
  15319. extra: 1193/1190,
  15320. bottom: 52/1245
  15321. }
  15322. },
  15323. back: {
  15324. height: math.unit(1450, "feet"),
  15325. weight: math.unit(1.21e6, "tons"),
  15326. name: "Back",
  15327. image: {
  15328. source: "./media/characters/sekvra/back.svg",
  15329. extra: 1219/1216,
  15330. bottom: 21/1240
  15331. }
  15332. },
  15333. frontClothed: {
  15334. height: math.unit(1450, "feet"),
  15335. weight: math.unit(1.21e6, "tons"),
  15336. name: "Front (Clothed)",
  15337. image: {
  15338. source: "./media/characters/sekvra/front-clothed.svg",
  15339. extra: 1192/1189,
  15340. bottom: 79/1271
  15341. }
  15342. },
  15343. },
  15344. [
  15345. {
  15346. name: "Macro",
  15347. height: math.unit(1450, "feet"),
  15348. default: true
  15349. },
  15350. {
  15351. name: "Megamacro",
  15352. height: math.unit(15000, "feet")
  15353. },
  15354. ]
  15355. ))
  15356. characterMakers.push(() => makeCharacter(
  15357. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15358. {
  15359. front: {
  15360. height: math.unit(6, "feet"),
  15361. weight: math.unit(150, "lb"),
  15362. name: "Front",
  15363. image: {
  15364. source: "./media/characters/carmine/front.svg",
  15365. extra: 1557/1538,
  15366. bottom: 68/1625
  15367. }
  15368. },
  15369. frontArmor: {
  15370. height: math.unit(6, "feet"),
  15371. weight: math.unit(150, "lb"),
  15372. name: "Front (Armor)",
  15373. image: {
  15374. source: "./media/characters/carmine/front-armor.svg",
  15375. extra: 1549/1530,
  15376. bottom: 82/1631
  15377. }
  15378. },
  15379. mouth: {
  15380. height: math.unit(0.55, "feet"),
  15381. name: "Mouth",
  15382. image: {
  15383. source: "./media/characters/carmine/mouth.svg"
  15384. }
  15385. },
  15386. hand: {
  15387. height: math.unit(1.05, "feet"),
  15388. name: "Hand",
  15389. image: {
  15390. source: "./media/characters/carmine/hand.svg"
  15391. }
  15392. },
  15393. foot: {
  15394. height: math.unit(0.6, "feet"),
  15395. name: "Foot",
  15396. image: {
  15397. source: "./media/characters/carmine/foot.svg"
  15398. }
  15399. },
  15400. },
  15401. [
  15402. {
  15403. name: "Large",
  15404. height: math.unit(1, "mile")
  15405. },
  15406. {
  15407. name: "Huge",
  15408. height: math.unit(40, "miles"),
  15409. default: true
  15410. },
  15411. {
  15412. name: "Colossal",
  15413. height: math.unit(2500, "miles")
  15414. },
  15415. ]
  15416. ))
  15417. characterMakers.push(() => makeCharacter(
  15418. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15419. {
  15420. front: {
  15421. height: math.unit(6, "feet"),
  15422. weight: math.unit(150, "lb"),
  15423. name: "Front",
  15424. image: {
  15425. source: "./media/characters/elyssia/front.svg",
  15426. extra: 2201 / 2035,
  15427. bottom: 0.05
  15428. }
  15429. },
  15430. frontClothed: {
  15431. height: math.unit(6, "feet"),
  15432. weight: math.unit(150, "lb"),
  15433. name: "Front (Clothed)",
  15434. image: {
  15435. source: "./media/characters/elyssia/front-clothed.svg",
  15436. extra: 2201 / 2035,
  15437. bottom: 0.05
  15438. }
  15439. },
  15440. back: {
  15441. height: math.unit(6, "feet"),
  15442. weight: math.unit(150, "lb"),
  15443. name: "Back",
  15444. image: {
  15445. source: "./media/characters/elyssia/back.svg",
  15446. extra: 2201 / 2035,
  15447. bottom: 0.013
  15448. }
  15449. },
  15450. },
  15451. [
  15452. {
  15453. name: "Smaller",
  15454. height: math.unit(150, "feet")
  15455. },
  15456. {
  15457. name: "Standard",
  15458. height: math.unit(1400, "feet"),
  15459. default: true
  15460. },
  15461. {
  15462. name: "Distracted",
  15463. height: math.unit(15000, "feet")
  15464. },
  15465. ]
  15466. ))
  15467. characterMakers.push(() => makeCharacter(
  15468. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15469. {
  15470. front: {
  15471. height: math.unit(7 + 4/12, "feet"),
  15472. weight: math.unit(690, "lb"),
  15473. name: "Front",
  15474. image: {
  15475. source: "./media/characters/geno-maxwell/front.svg",
  15476. extra: 984/856,
  15477. bottom: 87/1071
  15478. }
  15479. },
  15480. back: {
  15481. height: math.unit(7 + 4/12, "feet"),
  15482. weight: math.unit(690, "lb"),
  15483. name: "Back",
  15484. image: {
  15485. source: "./media/characters/geno-maxwell/back.svg",
  15486. extra: 981/854,
  15487. bottom: 57/1038
  15488. }
  15489. },
  15490. frontCostume: {
  15491. height: math.unit(7 + 4/12, "feet"),
  15492. weight: math.unit(690, "lb"),
  15493. name: "Front (Costume)",
  15494. image: {
  15495. source: "./media/characters/geno-maxwell/front-costume.svg",
  15496. extra: 984/856,
  15497. bottom: 87/1071
  15498. }
  15499. },
  15500. backcostume: {
  15501. height: math.unit(7 + 4/12, "feet"),
  15502. weight: math.unit(690, "lb"),
  15503. name: "Back (Costume)",
  15504. image: {
  15505. source: "./media/characters/geno-maxwell/back-costume.svg",
  15506. extra: 981/854,
  15507. bottom: 57/1038
  15508. }
  15509. },
  15510. },
  15511. [
  15512. {
  15513. name: "Micro",
  15514. height: math.unit(3, "inches")
  15515. },
  15516. {
  15517. name: "Normal",
  15518. height: math.unit(7 + 4 / 12, "feet"),
  15519. default: true
  15520. },
  15521. {
  15522. name: "Macro",
  15523. height: math.unit(220, "feet")
  15524. },
  15525. {
  15526. name: "Megamacro",
  15527. height: math.unit(11, "miles")
  15528. },
  15529. ]
  15530. ))
  15531. characterMakers.push(() => makeCharacter(
  15532. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15533. {
  15534. front: {
  15535. height: math.unit(7 + 4/12, "feet"),
  15536. weight: math.unit(750, "lb"),
  15537. name: "Front",
  15538. image: {
  15539. source: "./media/characters/regena-maxwell/front.svg",
  15540. extra: 984/856,
  15541. bottom: 87/1071
  15542. }
  15543. },
  15544. back: {
  15545. height: math.unit(7 + 4/12, "feet"),
  15546. weight: math.unit(750, "lb"),
  15547. name: "Back",
  15548. image: {
  15549. source: "./media/characters/regena-maxwell/back.svg",
  15550. extra: 981/854,
  15551. bottom: 57/1038
  15552. }
  15553. },
  15554. frontCostume: {
  15555. height: math.unit(7 + 4/12, "feet"),
  15556. weight: math.unit(750, "lb"),
  15557. name: "Front (Costume)",
  15558. image: {
  15559. source: "./media/characters/regena-maxwell/front-costume.svg",
  15560. extra: 984/856,
  15561. bottom: 87/1071
  15562. }
  15563. },
  15564. backcostume: {
  15565. height: math.unit(7 + 4/12, "feet"),
  15566. weight: math.unit(750, "lb"),
  15567. name: "Back (Costume)",
  15568. image: {
  15569. source: "./media/characters/regena-maxwell/back-costume.svg",
  15570. extra: 981/854,
  15571. bottom: 57/1038
  15572. }
  15573. },
  15574. },
  15575. [
  15576. {
  15577. name: "Normal",
  15578. height: math.unit(7 + 4 / 12, "feet"),
  15579. default: true
  15580. },
  15581. {
  15582. name: "Macro",
  15583. height: math.unit(220, "feet")
  15584. },
  15585. {
  15586. name: "Megamacro",
  15587. height: math.unit(11, "miles")
  15588. },
  15589. ]
  15590. ))
  15591. characterMakers.push(() => makeCharacter(
  15592. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15593. {
  15594. front: {
  15595. height: math.unit(6, "feet"),
  15596. weight: math.unit(150, "lb"),
  15597. name: "Front",
  15598. image: {
  15599. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15600. extra: 860 / 690,
  15601. bottom: 0.03
  15602. }
  15603. },
  15604. },
  15605. [
  15606. {
  15607. name: "Normal",
  15608. height: math.unit(1.7, "meters"),
  15609. default: true
  15610. },
  15611. ]
  15612. ))
  15613. characterMakers.push(() => makeCharacter(
  15614. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15615. {
  15616. front: {
  15617. height: math.unit(6, "feet"),
  15618. weight: math.unit(150, "lb"),
  15619. name: "Front",
  15620. image: {
  15621. source: "./media/characters/quilly/front.svg",
  15622. extra: 890 / 776
  15623. }
  15624. },
  15625. },
  15626. [
  15627. {
  15628. name: "Gigamacro",
  15629. height: math.unit(404090, "miles"),
  15630. default: true
  15631. },
  15632. ]
  15633. ))
  15634. characterMakers.push(() => makeCharacter(
  15635. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15636. {
  15637. front: {
  15638. height: math.unit(7 + 8 / 12, "feet"),
  15639. weight: math.unit(350, "lb"),
  15640. name: "Front",
  15641. image: {
  15642. source: "./media/characters/tempest/front.svg",
  15643. extra: 1175 / 1086,
  15644. bottom: 0.02
  15645. }
  15646. },
  15647. },
  15648. [
  15649. {
  15650. name: "Normal",
  15651. height: math.unit(7 + 8 / 12, "feet"),
  15652. default: true
  15653. },
  15654. ]
  15655. ))
  15656. characterMakers.push(() => makeCharacter(
  15657. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15658. {
  15659. side: {
  15660. height: math.unit(4 + 5 / 12, "feet"),
  15661. weight: math.unit(80, "lb"),
  15662. name: "Side",
  15663. image: {
  15664. source: "./media/characters/rodger/side.svg",
  15665. extra: 1235 / 1118
  15666. }
  15667. },
  15668. },
  15669. [
  15670. {
  15671. name: "Micro",
  15672. height: math.unit(1, "inch")
  15673. },
  15674. {
  15675. name: "Normal",
  15676. height: math.unit(4 + 5 / 12, "feet"),
  15677. default: true
  15678. },
  15679. {
  15680. name: "Macro",
  15681. height: math.unit(120, "feet")
  15682. },
  15683. ]
  15684. ))
  15685. characterMakers.push(() => makeCharacter(
  15686. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15687. {
  15688. front: {
  15689. height: math.unit(6, "feet"),
  15690. weight: math.unit(150, "lb"),
  15691. name: "Front",
  15692. image: {
  15693. source: "./media/characters/danyel/front.svg",
  15694. extra: 1185 / 1123,
  15695. bottom: 0.05
  15696. }
  15697. },
  15698. },
  15699. [
  15700. {
  15701. name: "Shrunken",
  15702. height: math.unit(0.5, "mm")
  15703. },
  15704. {
  15705. name: "Micro",
  15706. height: math.unit(1, "mm"),
  15707. default: true
  15708. },
  15709. {
  15710. name: "Upsized",
  15711. height: math.unit(5 + 5 / 12, "feet")
  15712. },
  15713. ]
  15714. ))
  15715. characterMakers.push(() => makeCharacter(
  15716. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15717. {
  15718. front: {
  15719. height: math.unit(5 + 6 / 12, "feet"),
  15720. weight: math.unit(200, "lb"),
  15721. name: "Front",
  15722. image: {
  15723. source: "./media/characters/vivian-bijoux/front.svg",
  15724. extra: 1217/1209,
  15725. bottom: 76/1293
  15726. }
  15727. },
  15728. back: {
  15729. height: math.unit(5 + 6 / 12, "feet"),
  15730. weight: math.unit(200, "lb"),
  15731. name: "Back",
  15732. image: {
  15733. source: "./media/characters/vivian-bijoux/back.svg",
  15734. extra: 1214/1208,
  15735. bottom: 51/1265
  15736. }
  15737. },
  15738. dressed: {
  15739. height: math.unit(5 + 6 / 12, "feet"),
  15740. weight: math.unit(200, "lb"),
  15741. name: "Dressed",
  15742. image: {
  15743. source: "./media/characters/vivian-bijoux/dressed.svg",
  15744. extra: 1217/1209,
  15745. bottom: 76/1293
  15746. }
  15747. },
  15748. },
  15749. [
  15750. {
  15751. name: "Normal",
  15752. height: math.unit(5 + 6 / 12, "feet"),
  15753. default: true
  15754. },
  15755. {
  15756. name: "Bad Dream",
  15757. height: math.unit(500, "feet")
  15758. },
  15759. {
  15760. name: "Nightmare",
  15761. height: math.unit(500, "miles")
  15762. },
  15763. ]
  15764. ))
  15765. characterMakers.push(() => makeCharacter(
  15766. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15767. {
  15768. front: {
  15769. height: math.unit(6 + 1 / 12, "feet"),
  15770. weight: math.unit(260, "lb"),
  15771. name: "Front",
  15772. image: {
  15773. source: "./media/characters/zeta/front.svg",
  15774. extra: 1968 / 1889,
  15775. bottom: 0.06
  15776. }
  15777. },
  15778. back: {
  15779. height: math.unit(6 + 1 / 12, "feet"),
  15780. weight: math.unit(260, "lb"),
  15781. name: "Back",
  15782. image: {
  15783. source: "./media/characters/zeta/back.svg",
  15784. extra: 1944 / 1858,
  15785. bottom: 0.03
  15786. }
  15787. },
  15788. hand: {
  15789. height: math.unit(1.112, "feet"),
  15790. name: "Hand",
  15791. image: {
  15792. source: "./media/characters/zeta/hand.svg"
  15793. }
  15794. },
  15795. foot: {
  15796. height: math.unit(1.48, "feet"),
  15797. name: "Foot",
  15798. image: {
  15799. source: "./media/characters/zeta/foot.svg"
  15800. }
  15801. },
  15802. },
  15803. [
  15804. {
  15805. name: "Micro",
  15806. height: math.unit(6, "inches")
  15807. },
  15808. {
  15809. name: "Normal",
  15810. height: math.unit(6 + 1 / 12, "feet"),
  15811. default: true
  15812. },
  15813. {
  15814. name: "Macro",
  15815. height: math.unit(20, "feet")
  15816. },
  15817. ]
  15818. ))
  15819. characterMakers.push(() => makeCharacter(
  15820. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15821. {
  15822. front: {
  15823. height: math.unit(6, "feet"),
  15824. weight: math.unit(150, "lb"),
  15825. name: "Front",
  15826. image: {
  15827. source: "./media/characters/jamie-larsen/front.svg",
  15828. extra: 962 / 933,
  15829. bottom: 0.02
  15830. }
  15831. },
  15832. back: {
  15833. height: math.unit(6, "feet"),
  15834. weight: math.unit(150, "lb"),
  15835. name: "Back",
  15836. image: {
  15837. source: "./media/characters/jamie-larsen/back.svg",
  15838. extra: 997 / 946
  15839. }
  15840. },
  15841. },
  15842. [
  15843. {
  15844. name: "Macro",
  15845. height: math.unit(28 + 7 / 12, "feet"),
  15846. default: true
  15847. },
  15848. {
  15849. name: "Macro+",
  15850. height: math.unit(180, "feet")
  15851. },
  15852. {
  15853. name: "Megamacro",
  15854. height: math.unit(10, "miles")
  15855. },
  15856. {
  15857. name: "Gigamacro",
  15858. height: math.unit(200000, "miles")
  15859. },
  15860. ]
  15861. ))
  15862. characterMakers.push(() => makeCharacter(
  15863. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15864. {
  15865. front: {
  15866. height: math.unit(6, "feet"),
  15867. weight: math.unit(120, "lb"),
  15868. name: "Front",
  15869. image: {
  15870. source: "./media/characters/vance/front.svg",
  15871. extra: 1980 / 1890,
  15872. bottom: 0.09
  15873. }
  15874. },
  15875. back: {
  15876. height: math.unit(6, "feet"),
  15877. weight: math.unit(120, "lb"),
  15878. name: "Back",
  15879. image: {
  15880. source: "./media/characters/vance/back.svg",
  15881. extra: 2081 / 1994,
  15882. bottom: 0.014
  15883. }
  15884. },
  15885. hand: {
  15886. height: math.unit(0.88, "feet"),
  15887. name: "Hand",
  15888. image: {
  15889. source: "./media/characters/vance/hand.svg"
  15890. }
  15891. },
  15892. foot: {
  15893. height: math.unit(0.64, "feet"),
  15894. name: "Foot",
  15895. image: {
  15896. source: "./media/characters/vance/foot.svg"
  15897. }
  15898. },
  15899. },
  15900. [
  15901. {
  15902. name: "Small",
  15903. height: math.unit(90, "feet"),
  15904. default: true
  15905. },
  15906. {
  15907. name: "Macro",
  15908. height: math.unit(100, "meters")
  15909. },
  15910. {
  15911. name: "Megamacro",
  15912. height: math.unit(15, "miles")
  15913. },
  15914. ]
  15915. ))
  15916. characterMakers.push(() => makeCharacter(
  15917. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15918. {
  15919. front: {
  15920. height: math.unit(6, "feet"),
  15921. weight: math.unit(180, "lb"),
  15922. name: "Front",
  15923. image: {
  15924. source: "./media/characters/xochitl/front.svg",
  15925. extra: 2297 / 2261,
  15926. bottom: 0.065
  15927. }
  15928. },
  15929. back: {
  15930. height: math.unit(6, "feet"),
  15931. weight: math.unit(180, "lb"),
  15932. name: "Back",
  15933. image: {
  15934. source: "./media/characters/xochitl/back.svg",
  15935. extra: 2386 / 2354,
  15936. bottom: 0.01
  15937. }
  15938. },
  15939. foot: {
  15940. height: math.unit(6 / 5 * 1.15, "feet"),
  15941. weight: math.unit(150, "lb"),
  15942. name: "Foot",
  15943. image: {
  15944. source: "./media/characters/xochitl/foot.svg"
  15945. }
  15946. },
  15947. },
  15948. [
  15949. {
  15950. name: "Macro",
  15951. height: math.unit(80, "feet")
  15952. },
  15953. {
  15954. name: "Macro+",
  15955. height: math.unit(400, "feet"),
  15956. default: true
  15957. },
  15958. {
  15959. name: "Gigamacro",
  15960. height: math.unit(80000, "miles")
  15961. },
  15962. {
  15963. name: "Gigamacro+",
  15964. height: math.unit(400000, "miles")
  15965. },
  15966. {
  15967. name: "Teramacro",
  15968. height: math.unit(300, "AU")
  15969. },
  15970. ]
  15971. ))
  15972. characterMakers.push(() => makeCharacter(
  15973. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15974. {
  15975. front: {
  15976. height: math.unit(6, "feet"),
  15977. weight: math.unit(150, "lb"),
  15978. name: "Front",
  15979. image: {
  15980. source: "./media/characters/vincent/front.svg",
  15981. extra: 1130 / 1080,
  15982. bottom: 0.055
  15983. }
  15984. },
  15985. beak: {
  15986. height: math.unit(6 * 0.1, "feet"),
  15987. name: "Beak",
  15988. image: {
  15989. source: "./media/characters/vincent/beak.svg"
  15990. }
  15991. },
  15992. hand: {
  15993. height: math.unit(6 * 0.85, "feet"),
  15994. weight: math.unit(150, "lb"),
  15995. name: "Hand",
  15996. image: {
  15997. source: "./media/characters/vincent/hand.svg"
  15998. }
  15999. },
  16000. foot: {
  16001. height: math.unit(6 * 0.19, "feet"),
  16002. weight: math.unit(150, "lb"),
  16003. name: "Foot",
  16004. image: {
  16005. source: "./media/characters/vincent/foot.svg"
  16006. }
  16007. },
  16008. },
  16009. [
  16010. {
  16011. name: "Base",
  16012. height: math.unit(6 + 5 / 12, "feet"),
  16013. default: true
  16014. },
  16015. {
  16016. name: "Macro",
  16017. height: math.unit(300, "feet")
  16018. },
  16019. {
  16020. name: "Megamacro",
  16021. height: math.unit(2, "miles")
  16022. },
  16023. {
  16024. name: "Gigamacro",
  16025. height: math.unit(1000, "miles")
  16026. },
  16027. ]
  16028. ))
  16029. characterMakers.push(() => makeCharacter(
  16030. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16031. {
  16032. front: {
  16033. height: math.unit(2, "meters"),
  16034. weight: math.unit(500, "kg"),
  16035. name: "Front",
  16036. image: {
  16037. source: "./media/characters/coatl/front.svg",
  16038. extra: 3948 / 3500,
  16039. bottom: 0.082
  16040. }
  16041. },
  16042. },
  16043. [
  16044. {
  16045. name: "Normal",
  16046. height: math.unit(4, "meters")
  16047. },
  16048. {
  16049. name: "Macro",
  16050. height: math.unit(100, "meters"),
  16051. default: true
  16052. },
  16053. {
  16054. name: "Macro+",
  16055. height: math.unit(300, "meters")
  16056. },
  16057. {
  16058. name: "Megamacro",
  16059. height: math.unit(3, "gigameters")
  16060. },
  16061. {
  16062. name: "Megamacro+",
  16063. height: math.unit(300, "terameters")
  16064. },
  16065. {
  16066. name: "Megamacro++",
  16067. height: math.unit(3, "lightyears")
  16068. },
  16069. ]
  16070. ))
  16071. characterMakers.push(() => makeCharacter(
  16072. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16073. {
  16074. front: {
  16075. height: math.unit(6, "feet"),
  16076. weight: math.unit(50, "kg"),
  16077. name: "front",
  16078. image: {
  16079. source: "./media/characters/shiroryu/front.svg",
  16080. extra: 1990 / 1935
  16081. }
  16082. },
  16083. },
  16084. [
  16085. {
  16086. name: "Mortal Mingling",
  16087. height: math.unit(3, "meters")
  16088. },
  16089. {
  16090. name: "Kaiju-ish",
  16091. height: math.unit(250, "meters")
  16092. },
  16093. {
  16094. name: "Somewhat Godly",
  16095. height: math.unit(400, "km"),
  16096. default: true
  16097. },
  16098. {
  16099. name: "Planetary",
  16100. height: math.unit(300, "megameters")
  16101. },
  16102. {
  16103. name: "Galaxy-dwarfing",
  16104. height: math.unit(450, "kiloparsecs")
  16105. },
  16106. {
  16107. name: "Universe Eater",
  16108. height: math.unit(150, "gigaparsecs")
  16109. },
  16110. {
  16111. name: "Almost Immeasurable",
  16112. height: math.unit(1.3e266, "yottaparsecs")
  16113. },
  16114. ]
  16115. ))
  16116. characterMakers.push(() => makeCharacter(
  16117. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16118. {
  16119. front: {
  16120. height: math.unit(6, "feet"),
  16121. weight: math.unit(150, "lb"),
  16122. name: "Front",
  16123. image: {
  16124. source: "./media/characters/umeko/front.svg",
  16125. extra: 1,
  16126. bottom: 0.019
  16127. }
  16128. },
  16129. frontArmored: {
  16130. height: math.unit(6, "feet"),
  16131. weight: math.unit(150, "lb"),
  16132. name: "Front (Armored)",
  16133. image: {
  16134. source: "./media/characters/umeko/front-armored.svg",
  16135. extra: 1,
  16136. bottom: 0.021
  16137. }
  16138. },
  16139. },
  16140. [
  16141. {
  16142. name: "Macro",
  16143. height: math.unit(220, "feet"),
  16144. default: true
  16145. },
  16146. {
  16147. name: "Guardian Dragon",
  16148. height: math.unit(50, "miles")
  16149. },
  16150. {
  16151. name: "Cosmic",
  16152. height: math.unit(800000, "miles")
  16153. },
  16154. ]
  16155. ))
  16156. characterMakers.push(() => makeCharacter(
  16157. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16158. {
  16159. front: {
  16160. height: math.unit(6, "feet"),
  16161. weight: math.unit(150, "lb"),
  16162. name: "Front",
  16163. image: {
  16164. source: "./media/characters/cassidy/front.svg",
  16165. extra: 810/808,
  16166. bottom: 41/851
  16167. }
  16168. },
  16169. },
  16170. [
  16171. {
  16172. name: "Canon Height",
  16173. height: math.unit(120, "feet"),
  16174. default: true
  16175. },
  16176. {
  16177. name: "Macro+",
  16178. height: math.unit(400, "feet")
  16179. },
  16180. {
  16181. name: "Macro++",
  16182. height: math.unit(4000, "feet")
  16183. },
  16184. {
  16185. name: "Megamacro",
  16186. height: math.unit(3, "miles")
  16187. },
  16188. ]
  16189. ))
  16190. characterMakers.push(() => makeCharacter(
  16191. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16192. {
  16193. front: {
  16194. height: math.unit(6, "feet"),
  16195. weight: math.unit(150, "lb"),
  16196. name: "Front",
  16197. image: {
  16198. source: "./media/characters/isaac/front.svg",
  16199. extra: 896 / 815,
  16200. bottom: 0.11
  16201. }
  16202. },
  16203. },
  16204. [
  16205. {
  16206. name: "Human Size",
  16207. height: math.unit(8, "feet"),
  16208. default: true
  16209. },
  16210. {
  16211. name: "Macro",
  16212. height: math.unit(400, "feet")
  16213. },
  16214. {
  16215. name: "Megamacro",
  16216. height: math.unit(50, "miles")
  16217. },
  16218. {
  16219. name: "Canon Height",
  16220. height: math.unit(200, "AU")
  16221. },
  16222. ]
  16223. ))
  16224. characterMakers.push(() => makeCharacter(
  16225. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16226. {
  16227. front: {
  16228. height: math.unit(6, "feet"),
  16229. weight: math.unit(72, "kg"),
  16230. name: "Front",
  16231. image: {
  16232. source: "./media/characters/sleekit/front.svg",
  16233. extra: 4693 / 4487,
  16234. bottom: 0.012
  16235. }
  16236. },
  16237. },
  16238. [
  16239. {
  16240. name: "Minimum Height",
  16241. height: math.unit(10, "meters")
  16242. },
  16243. {
  16244. name: "Smaller",
  16245. height: math.unit(25, "meters")
  16246. },
  16247. {
  16248. name: "Larger",
  16249. height: math.unit(38, "meters"),
  16250. default: true
  16251. },
  16252. {
  16253. name: "Maximum height",
  16254. height: math.unit(100, "meters")
  16255. },
  16256. ]
  16257. ))
  16258. characterMakers.push(() => makeCharacter(
  16259. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16260. {
  16261. front: {
  16262. height: math.unit(6, "feet"),
  16263. weight: math.unit(150, "lb"),
  16264. name: "Front",
  16265. image: {
  16266. source: "./media/characters/nillia/front.svg",
  16267. extra: 719/665,
  16268. bottom: 6/725
  16269. }
  16270. },
  16271. back: {
  16272. height: math.unit(6, "feet"),
  16273. weight: math.unit(150, "lb"),
  16274. name: "Back",
  16275. image: {
  16276. source: "./media/characters/nillia/back.svg",
  16277. extra: 705/651,
  16278. bottom: 5/710
  16279. }
  16280. },
  16281. },
  16282. [
  16283. {
  16284. name: "Canon Height",
  16285. height: math.unit(489, "feet"),
  16286. default: true
  16287. }
  16288. ]
  16289. ))
  16290. characterMakers.push(() => makeCharacter(
  16291. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16292. {
  16293. front: {
  16294. height: math.unit(6, "feet"),
  16295. weight: math.unit(150, "lb"),
  16296. name: "Front",
  16297. image: {
  16298. source: "./media/characters/mesmyriza/front.svg",
  16299. extra: 1541/1291,
  16300. bottom: 87/1628
  16301. }
  16302. },
  16303. foot: {
  16304. height: math.unit(6 / (250 / 35), "feet"),
  16305. name: "Foot",
  16306. image: {
  16307. source: "./media/characters/mesmyriza/foot.svg"
  16308. }
  16309. },
  16310. },
  16311. [
  16312. {
  16313. name: "Macro",
  16314. height: math.unit(457, "meters"),
  16315. default: true
  16316. },
  16317. {
  16318. name: "Megamacro",
  16319. height: math.unit(8, "megameters")
  16320. },
  16321. ]
  16322. ))
  16323. characterMakers.push(() => makeCharacter(
  16324. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16325. {
  16326. front: {
  16327. height: math.unit(6, "feet"),
  16328. weight: math.unit(250, "lb"),
  16329. name: "Front",
  16330. image: {
  16331. source: "./media/characters/saudade/front.svg",
  16332. extra: 1172 / 1139,
  16333. bottom: 0.035
  16334. }
  16335. },
  16336. },
  16337. [
  16338. {
  16339. name: "Micro",
  16340. height: math.unit(3, "inches")
  16341. },
  16342. {
  16343. name: "Normal",
  16344. height: math.unit(6, "feet"),
  16345. default: true
  16346. },
  16347. {
  16348. name: "Macro",
  16349. height: math.unit(50, "feet")
  16350. },
  16351. {
  16352. name: "Megamacro",
  16353. height: math.unit(2800, "feet")
  16354. },
  16355. ]
  16356. ))
  16357. characterMakers.push(() => makeCharacter(
  16358. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16359. {
  16360. front: {
  16361. height: math.unit(5 + 4 / 12, "feet"),
  16362. weight: math.unit(100, "lb"),
  16363. name: "Front",
  16364. image: {
  16365. source: "./media/characters/keireer/front.svg",
  16366. extra: 716 / 666,
  16367. bottom: 0.05
  16368. }
  16369. },
  16370. },
  16371. [
  16372. {
  16373. name: "Normal",
  16374. height: math.unit(5 + 4 / 12, "feet"),
  16375. default: true
  16376. },
  16377. ]
  16378. ))
  16379. characterMakers.push(() => makeCharacter(
  16380. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16381. {
  16382. front: {
  16383. height: math.unit(5.5, "feet"),
  16384. weight: math.unit(90, "kg"),
  16385. name: "Front",
  16386. image: {
  16387. source: "./media/characters/mirja/front.svg",
  16388. extra: 1452/1262,
  16389. bottom: 67/1519
  16390. }
  16391. },
  16392. frontDressed: {
  16393. height: math.unit(5.5, "feet"),
  16394. weight: math.unit(90, "lb"),
  16395. name: "Front (Dressed)",
  16396. image: {
  16397. source: "./media/characters/mirja/dressed.svg",
  16398. extra: 1452/1262,
  16399. bottom: 67/1519
  16400. }
  16401. },
  16402. back: {
  16403. height: math.unit(6, "feet"),
  16404. weight: math.unit(90, "lb"),
  16405. name: "Back",
  16406. image: {
  16407. source: "./media/characters/mirja/back.svg",
  16408. extra: 1892/1795,
  16409. bottom: 48/1940
  16410. }
  16411. },
  16412. maw: {
  16413. height: math.unit(1.312, "feet"),
  16414. name: "Maw",
  16415. image: {
  16416. source: "./media/characters/mirja/maw.svg"
  16417. }
  16418. },
  16419. paw: {
  16420. height: math.unit(1.15, "feet"),
  16421. name: "Paw",
  16422. image: {
  16423. source: "./media/characters/mirja/paw.svg"
  16424. }
  16425. },
  16426. },
  16427. [
  16428. {
  16429. name: "\"Incognito\"",
  16430. height: math.unit(3, "meters")
  16431. },
  16432. {
  16433. name: "Strolling Size",
  16434. height: math.unit(15, "km")
  16435. },
  16436. {
  16437. name: "Larger Strolling Size",
  16438. height: math.unit(400, "km")
  16439. },
  16440. {
  16441. name: "Preferred Size",
  16442. height: math.unit(5000, "km"),
  16443. default: true
  16444. },
  16445. {
  16446. name: "True Size",
  16447. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16448. },
  16449. ]
  16450. ))
  16451. characterMakers.push(() => makeCharacter(
  16452. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16453. {
  16454. front: {
  16455. height: math.unit(15, "feet"),
  16456. weight: math.unit(880, "kg"),
  16457. name: "Front",
  16458. image: {
  16459. source: "./media/characters/nightraver/front.svg",
  16460. extra: 2444 / 2160,
  16461. bottom: 0.027
  16462. }
  16463. },
  16464. back: {
  16465. height: math.unit(15, "feet"),
  16466. weight: math.unit(880, "kg"),
  16467. name: "Back",
  16468. image: {
  16469. source: "./media/characters/nightraver/back.svg",
  16470. extra: 2309 / 2180,
  16471. bottom: 0.005
  16472. }
  16473. },
  16474. sole: {
  16475. height: math.unit(2.878, "feet"),
  16476. name: "Sole",
  16477. image: {
  16478. source: "./media/characters/nightraver/sole.svg"
  16479. }
  16480. },
  16481. foot: {
  16482. height: math.unit(2.285, "feet"),
  16483. name: "Foot",
  16484. image: {
  16485. source: "./media/characters/nightraver/foot.svg"
  16486. }
  16487. },
  16488. maw: {
  16489. height: math.unit(2.67, "feet"),
  16490. name: "Maw",
  16491. image: {
  16492. source: "./media/characters/nightraver/maw.svg"
  16493. }
  16494. },
  16495. },
  16496. [
  16497. {
  16498. name: "Micro",
  16499. height: math.unit(1, "cm")
  16500. },
  16501. {
  16502. name: "Normal",
  16503. height: math.unit(15, "feet"),
  16504. default: true
  16505. },
  16506. {
  16507. name: "Macro",
  16508. height: math.unit(300, "feet")
  16509. },
  16510. {
  16511. name: "Megamacro",
  16512. height: math.unit(300, "miles")
  16513. },
  16514. {
  16515. name: "Gigamacro",
  16516. height: math.unit(10000, "miles")
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16522. {
  16523. side: {
  16524. height: math.unit(2, "inches"),
  16525. weight: math.unit(5, "grams"),
  16526. name: "Side",
  16527. image: {
  16528. source: "./media/characters/arc/side.svg"
  16529. }
  16530. },
  16531. },
  16532. [
  16533. {
  16534. name: "Micro",
  16535. height: math.unit(2, "inches"),
  16536. default: true
  16537. },
  16538. ]
  16539. ))
  16540. characterMakers.push(() => makeCharacter(
  16541. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16542. {
  16543. front: {
  16544. height: math.unit(1.1938, "meters"),
  16545. weight: math.unit(54, "kg"),
  16546. name: "Front",
  16547. image: {
  16548. source: "./media/characters/nebula-shahar/front.svg",
  16549. extra: 1642 / 1436,
  16550. bottom: 0.06
  16551. }
  16552. },
  16553. },
  16554. [
  16555. {
  16556. name: "Megamicro",
  16557. height: math.unit(0.3, "mm")
  16558. },
  16559. {
  16560. name: "Micro",
  16561. height: math.unit(3, "cm")
  16562. },
  16563. {
  16564. name: "Normal",
  16565. height: math.unit(138, "cm"),
  16566. default: true
  16567. },
  16568. {
  16569. name: "Macro",
  16570. height: math.unit(30, "m")
  16571. },
  16572. ]
  16573. ))
  16574. characterMakers.push(() => makeCharacter(
  16575. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16576. {
  16577. front: {
  16578. height: math.unit(5.24, "feet"),
  16579. weight: math.unit(150, "lb"),
  16580. name: "Front",
  16581. image: {
  16582. source: "./media/characters/shayla/front.svg",
  16583. extra: 1512 / 1414,
  16584. bottom: 0.01
  16585. }
  16586. },
  16587. back: {
  16588. height: math.unit(5.24, "feet"),
  16589. weight: math.unit(150, "lb"),
  16590. name: "Back",
  16591. image: {
  16592. source: "./media/characters/shayla/back.svg",
  16593. extra: 1512 / 1414
  16594. }
  16595. },
  16596. hand: {
  16597. height: math.unit(0.7781496062992126, "feet"),
  16598. name: "Hand",
  16599. image: {
  16600. source: "./media/characters/shayla/hand.svg"
  16601. }
  16602. },
  16603. foot: {
  16604. height: math.unit(1.4206036745406823, "feet"),
  16605. name: "Foot",
  16606. image: {
  16607. source: "./media/characters/shayla/foot.svg"
  16608. }
  16609. },
  16610. },
  16611. [
  16612. {
  16613. name: "Micro",
  16614. height: math.unit(0.32, "feet")
  16615. },
  16616. {
  16617. name: "Normal",
  16618. height: math.unit(5.24, "feet"),
  16619. default: true
  16620. },
  16621. {
  16622. name: "Macro",
  16623. height: math.unit(492.12, "feet")
  16624. },
  16625. {
  16626. name: "Megamacro",
  16627. height: math.unit(186.41, "miles")
  16628. },
  16629. ]
  16630. ))
  16631. characterMakers.push(() => makeCharacter(
  16632. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16633. {
  16634. front: {
  16635. height: math.unit(2.2, "m"),
  16636. weight: math.unit(120, "kg"),
  16637. name: "Front",
  16638. image: {
  16639. source: "./media/characters/pia-jr/front.svg",
  16640. extra: 1000 / 970,
  16641. bottom: 0.035
  16642. }
  16643. },
  16644. hand: {
  16645. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16646. name: "Hand",
  16647. image: {
  16648. source: "./media/characters/pia-jr/hand.svg"
  16649. }
  16650. },
  16651. paw: {
  16652. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16653. name: "Paw",
  16654. image: {
  16655. source: "./media/characters/pia-jr/paw.svg"
  16656. }
  16657. },
  16658. },
  16659. [
  16660. {
  16661. name: "Micro",
  16662. height: math.unit(1.2, "cm")
  16663. },
  16664. {
  16665. name: "Normal",
  16666. height: math.unit(2.2, "m"),
  16667. default: true
  16668. },
  16669. {
  16670. name: "Macro",
  16671. height: math.unit(180, "m")
  16672. },
  16673. {
  16674. name: "Megamacro",
  16675. height: math.unit(420, "km")
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16681. {
  16682. front: {
  16683. height: math.unit(2, "m"),
  16684. weight: math.unit(115, "kg"),
  16685. name: "Front",
  16686. image: {
  16687. source: "./media/characters/pia-sr/front.svg",
  16688. extra: 760 / 730,
  16689. bottom: 0.015
  16690. }
  16691. },
  16692. back: {
  16693. height: math.unit(2, "m"),
  16694. weight: math.unit(115, "kg"),
  16695. name: "Back",
  16696. image: {
  16697. source: "./media/characters/pia-sr/back.svg",
  16698. extra: 760 / 730,
  16699. bottom: 0.01
  16700. }
  16701. },
  16702. hand: {
  16703. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16704. name: "Hand",
  16705. image: {
  16706. source: "./media/characters/pia-sr/hand.svg"
  16707. }
  16708. },
  16709. foot: {
  16710. height: math.unit(1.83, "feet"),
  16711. name: "Foot",
  16712. image: {
  16713. source: "./media/characters/pia-sr/foot.svg"
  16714. }
  16715. },
  16716. },
  16717. [
  16718. {
  16719. name: "Micro",
  16720. height: math.unit(88, "mm")
  16721. },
  16722. {
  16723. name: "Normal",
  16724. height: math.unit(2, "m"),
  16725. default: true
  16726. },
  16727. {
  16728. name: "Macro",
  16729. height: math.unit(200, "m")
  16730. },
  16731. {
  16732. name: "Megamacro",
  16733. height: math.unit(420, "km")
  16734. },
  16735. ]
  16736. ))
  16737. characterMakers.push(() => makeCharacter(
  16738. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16739. {
  16740. front: {
  16741. height: math.unit(8 + 2 / 12, "feet"),
  16742. weight: math.unit(300, "lb"),
  16743. name: "Front",
  16744. image: {
  16745. source: "./media/characters/kibibyte/front.svg",
  16746. extra: 2221 / 2098,
  16747. bottom: 0.04
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Normal",
  16754. height: math.unit(8 + 2 / 12, "feet"),
  16755. default: true
  16756. },
  16757. {
  16758. name: "Socialable Macro",
  16759. height: math.unit(50, "feet")
  16760. },
  16761. {
  16762. name: "Macro",
  16763. height: math.unit(300, "feet")
  16764. },
  16765. {
  16766. name: "Megamacro",
  16767. height: math.unit(500, "miles")
  16768. },
  16769. ]
  16770. ))
  16771. characterMakers.push(() => makeCharacter(
  16772. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16773. {
  16774. front: {
  16775. height: math.unit(6, "feet"),
  16776. weight: math.unit(150, "lb"),
  16777. name: "Front",
  16778. image: {
  16779. source: "./media/characters/felix/front.svg",
  16780. extra: 762 / 722,
  16781. bottom: 0.02
  16782. }
  16783. },
  16784. frontClothed: {
  16785. height: math.unit(6, "feet"),
  16786. weight: math.unit(150, "lb"),
  16787. name: "Front (Clothed)",
  16788. image: {
  16789. source: "./media/characters/felix/front-clothed.svg",
  16790. extra: 762 / 722,
  16791. bottom: 0.02
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(6 + 8 / 12, "feet"),
  16799. default: true
  16800. },
  16801. {
  16802. name: "Macro",
  16803. height: math.unit(2600, "feet")
  16804. },
  16805. {
  16806. name: "Megamacro",
  16807. height: math.unit(450, "miles")
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16813. {
  16814. front: {
  16815. height: math.unit(6 + 1 / 12, "feet"),
  16816. weight: math.unit(250, "lb"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/tobo/front.svg",
  16820. extra: 608 / 586,
  16821. bottom: 0.023
  16822. }
  16823. },
  16824. back: {
  16825. height: math.unit(6 + 1 / 12, "feet"),
  16826. weight: math.unit(250, "lb"),
  16827. name: "Back",
  16828. image: {
  16829. source: "./media/characters/tobo/back.svg",
  16830. extra: 608 / 586
  16831. }
  16832. },
  16833. },
  16834. [
  16835. {
  16836. name: "Nano",
  16837. height: math.unit(2, "nm")
  16838. },
  16839. {
  16840. name: "Megamicro",
  16841. height: math.unit(0.1, "mm")
  16842. },
  16843. {
  16844. name: "Micro",
  16845. height: math.unit(1, "inch"),
  16846. default: true
  16847. },
  16848. {
  16849. name: "Human-sized",
  16850. height: math.unit(6 + 1 / 12, "feet")
  16851. },
  16852. {
  16853. name: "Macro",
  16854. height: math.unit(250, "feet")
  16855. },
  16856. {
  16857. name: "Megamacro",
  16858. height: math.unit(75, "miles")
  16859. },
  16860. {
  16861. name: "Texas-sized",
  16862. height: math.unit(750, "miles")
  16863. },
  16864. {
  16865. name: "Teramacro",
  16866. height: math.unit(50000, "miles")
  16867. },
  16868. ]
  16869. ))
  16870. characterMakers.push(() => makeCharacter(
  16871. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16872. {
  16873. front: {
  16874. height: math.unit(6, "feet"),
  16875. weight: math.unit(269, "lb"),
  16876. name: "Front",
  16877. image: {
  16878. source: "./media/characters/danny-kapowsky/front.svg",
  16879. extra: 766 / 736,
  16880. bottom: 0.044
  16881. }
  16882. },
  16883. back: {
  16884. height: math.unit(6, "feet"),
  16885. weight: math.unit(269, "lb"),
  16886. name: "Back",
  16887. image: {
  16888. source: "./media/characters/danny-kapowsky/back.svg",
  16889. extra: 797 / 760,
  16890. bottom: 0.025
  16891. }
  16892. },
  16893. },
  16894. [
  16895. {
  16896. name: "Macro",
  16897. height: math.unit(150, "feet"),
  16898. default: true
  16899. },
  16900. {
  16901. name: "Macro+",
  16902. height: math.unit(200, "feet")
  16903. },
  16904. {
  16905. name: "Macro++",
  16906. height: math.unit(300, "feet")
  16907. },
  16908. {
  16909. name: "Macro+++",
  16910. height: math.unit(400, "feet")
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16916. {
  16917. side: {
  16918. height: math.unit(6, "feet"),
  16919. weight: math.unit(170, "lb"),
  16920. name: "Side",
  16921. image: {
  16922. source: "./media/characters/finn/side.svg",
  16923. extra: 1953 / 1807,
  16924. bottom: 0.057
  16925. }
  16926. },
  16927. },
  16928. [
  16929. {
  16930. name: "Megamacro",
  16931. height: math.unit(14445, "feet"),
  16932. default: true
  16933. },
  16934. ]
  16935. ))
  16936. characterMakers.push(() => makeCharacter(
  16937. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16938. {
  16939. front: {
  16940. height: math.unit(5 + 6 / 12, "feet"),
  16941. weight: math.unit(125, "lb"),
  16942. name: "Front",
  16943. image: {
  16944. source: "./media/characters/roy/front.svg",
  16945. extra: 1,
  16946. bottom: 0.11
  16947. }
  16948. },
  16949. },
  16950. [
  16951. {
  16952. name: "Micro",
  16953. height: math.unit(3, "inches"),
  16954. default: true
  16955. },
  16956. {
  16957. name: "Normal",
  16958. height: math.unit(5 + 6 / 12, "feet")
  16959. },
  16960. {
  16961. name: "Lesser Macro",
  16962. height: math.unit(60, "feet")
  16963. },
  16964. {
  16965. name: "Greater Macro",
  16966. height: math.unit(120, "feet")
  16967. },
  16968. ]
  16969. ))
  16970. characterMakers.push(() => makeCharacter(
  16971. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16972. {
  16973. front: {
  16974. height: math.unit(6, "feet"),
  16975. weight: math.unit(100, "lb"),
  16976. name: "Front",
  16977. image: {
  16978. source: "./media/characters/aevsivs/front.svg",
  16979. extra: 1,
  16980. bottom: 0.03
  16981. }
  16982. },
  16983. back: {
  16984. height: math.unit(6, "feet"),
  16985. weight: math.unit(100, "lb"),
  16986. name: "Back",
  16987. image: {
  16988. source: "./media/characters/aevsivs/back.svg"
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Micro",
  16995. height: math.unit(2, "inches"),
  16996. default: true
  16997. },
  16998. {
  16999. name: "Normal",
  17000. height: math.unit(5, "feet")
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17006. {
  17007. front: {
  17008. height: math.unit(5 + 7 / 12, "feet"),
  17009. weight: math.unit(159, "lb"),
  17010. name: "Front",
  17011. image: {
  17012. source: "./media/characters/hildegard/front.svg",
  17013. extra: 289 / 269,
  17014. bottom: 7.63 / 297.8
  17015. }
  17016. },
  17017. back: {
  17018. height: math.unit(5 + 7 / 12, "feet"),
  17019. weight: math.unit(159, "lb"),
  17020. name: "Back",
  17021. image: {
  17022. source: "./media/characters/hildegard/back.svg",
  17023. extra: 280 / 260,
  17024. bottom: 2.3 / 282
  17025. }
  17026. },
  17027. },
  17028. [
  17029. {
  17030. name: "Normal",
  17031. height: math.unit(5 + 7 / 12, "feet"),
  17032. default: true
  17033. },
  17034. ]
  17035. ))
  17036. characterMakers.push(() => makeCharacter(
  17037. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17038. {
  17039. bernard: {
  17040. height: math.unit(2 + 7 / 12, "feet"),
  17041. weight: math.unit(66, "lb"),
  17042. name: "Bernard",
  17043. rename: true,
  17044. image: {
  17045. source: "./media/characters/bernard-wilder/bernard.svg",
  17046. extra: 192 / 128,
  17047. bottom: 0.05
  17048. }
  17049. },
  17050. wilder: {
  17051. height: math.unit(5 + 8 / 12, "feet"),
  17052. weight: math.unit(143, "lb"),
  17053. name: "Wilder",
  17054. rename: true,
  17055. image: {
  17056. source: "./media/characters/bernard-wilder/wilder.svg",
  17057. extra: 361 / 312,
  17058. bottom: 0.02
  17059. }
  17060. },
  17061. },
  17062. [
  17063. {
  17064. name: "Normal",
  17065. height: math.unit(2 + 7 / 12, "feet"),
  17066. default: true
  17067. },
  17068. ]
  17069. ))
  17070. characterMakers.push(() => makeCharacter(
  17071. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17072. {
  17073. anthro: {
  17074. height: math.unit(6 + 1 / 12, "feet"),
  17075. weight: math.unit(155, "lb"),
  17076. name: "Anthro",
  17077. image: {
  17078. source: "./media/characters/hearth/anthro.svg",
  17079. extra: 1178/1136,
  17080. bottom: 28/1206
  17081. }
  17082. },
  17083. feral: {
  17084. height: math.unit(3.78, "feet"),
  17085. weight: math.unit(35, "kg"),
  17086. name: "Feral",
  17087. image: {
  17088. source: "./media/characters/hearth/feral.svg",
  17089. extra: 153 / 135,
  17090. bottom: 0.03
  17091. }
  17092. },
  17093. },
  17094. [
  17095. {
  17096. name: "Normal",
  17097. height: math.unit(6 + 1 / 12, "feet"),
  17098. default: true
  17099. },
  17100. ]
  17101. ))
  17102. characterMakers.push(() => makeCharacter(
  17103. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17104. {
  17105. front: {
  17106. height: math.unit(6, "feet"),
  17107. weight: math.unit(182, "lb"),
  17108. name: "Front",
  17109. image: {
  17110. source: "./media/characters/ingrid/front.svg",
  17111. extra: 294 / 268,
  17112. bottom: 0.027
  17113. }
  17114. },
  17115. },
  17116. [
  17117. {
  17118. name: "Normal",
  17119. height: math.unit(6, "feet"),
  17120. default: true
  17121. },
  17122. ]
  17123. ))
  17124. characterMakers.push(() => makeCharacter(
  17125. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17126. {
  17127. eevee: {
  17128. height: math.unit(2 + 10 / 12, "feet"),
  17129. weight: math.unit(86, "lb"),
  17130. name: "Malgam",
  17131. image: {
  17132. source: "./media/characters/malgam/eevee.svg",
  17133. extra: 952/784,
  17134. bottom: 38/990
  17135. }
  17136. },
  17137. sylveon: {
  17138. height: math.unit(4, "feet"),
  17139. weight: math.unit(101, "lb"),
  17140. name: "Future Malgam",
  17141. rename: true,
  17142. image: {
  17143. source: "./media/characters/malgam/sylveon.svg",
  17144. extra: 371 / 325,
  17145. bottom: 0.015
  17146. }
  17147. },
  17148. gigantamax: {
  17149. height: math.unit(50, "feet"),
  17150. name: "Gigantamax Malgam",
  17151. rename: true,
  17152. image: {
  17153. source: "./media/characters/malgam/gigantamax.svg"
  17154. }
  17155. },
  17156. },
  17157. [
  17158. {
  17159. name: "Normal",
  17160. height: math.unit(2 + 10 / 12, "feet"),
  17161. default: true
  17162. },
  17163. ]
  17164. ))
  17165. characterMakers.push(() => makeCharacter(
  17166. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17167. {
  17168. front: {
  17169. height: math.unit(5 + 11 / 12, "feet"),
  17170. weight: math.unit(188, "lb"),
  17171. name: "Front",
  17172. image: {
  17173. source: "./media/characters/fleur/front.svg",
  17174. extra: 309 / 283,
  17175. bottom: 0.007
  17176. }
  17177. },
  17178. },
  17179. [
  17180. {
  17181. name: "Normal",
  17182. height: math.unit(5 + 11 / 12, "feet"),
  17183. default: true
  17184. },
  17185. ]
  17186. ))
  17187. characterMakers.push(() => makeCharacter(
  17188. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17189. {
  17190. front: {
  17191. height: math.unit(5 + 4 / 12, "feet"),
  17192. weight: math.unit(122, "lb"),
  17193. name: "Front",
  17194. image: {
  17195. source: "./media/characters/jude/front.svg",
  17196. extra: 288 / 273,
  17197. bottom: 0.03
  17198. }
  17199. },
  17200. },
  17201. [
  17202. {
  17203. name: "Normal",
  17204. height: math.unit(5 + 4 / 12, "feet"),
  17205. default: true
  17206. },
  17207. ]
  17208. ))
  17209. characterMakers.push(() => makeCharacter(
  17210. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17211. {
  17212. front: {
  17213. height: math.unit(5 + 11 / 12, "feet"),
  17214. weight: math.unit(190, "lb"),
  17215. name: "Front",
  17216. image: {
  17217. source: "./media/characters/seara/front.svg",
  17218. extra: 1,
  17219. bottom: 0.05
  17220. }
  17221. },
  17222. },
  17223. [
  17224. {
  17225. name: "Normal",
  17226. height: math.unit(5 + 11 / 12, "feet"),
  17227. default: true
  17228. },
  17229. ]
  17230. ))
  17231. characterMakers.push(() => makeCharacter(
  17232. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17233. {
  17234. front: {
  17235. height: math.unit(16 + 5 / 12, "feet"),
  17236. weight: math.unit(524, "lb"),
  17237. name: "Front",
  17238. image: {
  17239. source: "./media/characters/caspian-lugia/front.svg",
  17240. extra: 1,
  17241. bottom: 0.04
  17242. }
  17243. },
  17244. },
  17245. [
  17246. {
  17247. name: "Normal",
  17248. height: math.unit(16 + 5 / 12, "feet"),
  17249. default: true
  17250. },
  17251. ]
  17252. ))
  17253. characterMakers.push(() => makeCharacter(
  17254. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17255. {
  17256. front: {
  17257. height: math.unit(5 + 7 / 12, "feet"),
  17258. weight: math.unit(170, "lb"),
  17259. name: "Front",
  17260. image: {
  17261. source: "./media/characters/mika/front.svg",
  17262. extra: 1,
  17263. bottom: 0.016
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Normal",
  17270. height: math.unit(5 + 7 / 12, "feet"),
  17271. default: true
  17272. },
  17273. ]
  17274. ))
  17275. characterMakers.push(() => makeCharacter(
  17276. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17277. {
  17278. front: {
  17279. height: math.unit(6 + 2 / 12, "feet"),
  17280. weight: math.unit(268, "lb"),
  17281. name: "Front",
  17282. image: {
  17283. source: "./media/characters/sol/front.svg",
  17284. extra: 247 / 231,
  17285. bottom: 0.05
  17286. }
  17287. },
  17288. },
  17289. [
  17290. {
  17291. name: "Normal",
  17292. height: math.unit(6 + 2 / 12, "feet"),
  17293. default: true
  17294. },
  17295. ]
  17296. ))
  17297. characterMakers.push(() => makeCharacter(
  17298. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17299. {
  17300. buizel: {
  17301. height: math.unit(2 + 5 / 12, "feet"),
  17302. weight: math.unit(87, "lb"),
  17303. name: "Front",
  17304. image: {
  17305. source: "./media/characters/umiko/buizel.svg",
  17306. extra: 172 / 157,
  17307. bottom: 0.01
  17308. },
  17309. form: "buizel",
  17310. default: true
  17311. },
  17312. floatzel: {
  17313. height: math.unit(5 + 9 / 12, "feet"),
  17314. weight: math.unit(250, "lb"),
  17315. name: "Front",
  17316. image: {
  17317. source: "./media/characters/umiko/floatzel.svg",
  17318. extra: 1076/1006,
  17319. bottom: 15/1091
  17320. },
  17321. form: "floatzel",
  17322. default: true
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Normal",
  17328. height: math.unit(2 + 5 / 12, "feet"),
  17329. form: "buizel",
  17330. default: true
  17331. },
  17332. {
  17333. name: "Normal",
  17334. height: math.unit(5 + 9 / 12, "feet"),
  17335. form: "floatzel",
  17336. default: true
  17337. },
  17338. ],
  17339. {
  17340. "buizel": {
  17341. name: "Buizel"
  17342. },
  17343. "floatzel": {
  17344. name: "Floatzel",
  17345. default: true
  17346. }
  17347. }
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17351. {
  17352. front: {
  17353. height: math.unit(6 + 2 / 12, "feet"),
  17354. weight: math.unit(146, "lb"),
  17355. name: "Front",
  17356. image: {
  17357. source: "./media/characters/iliac/front.svg",
  17358. extra: 389 / 365,
  17359. bottom: 0.035
  17360. }
  17361. },
  17362. },
  17363. [
  17364. {
  17365. name: "Normal",
  17366. height: math.unit(6 + 2 / 12, "feet"),
  17367. default: true
  17368. },
  17369. ]
  17370. ))
  17371. characterMakers.push(() => makeCharacter(
  17372. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17373. {
  17374. front: {
  17375. height: math.unit(6, "feet"),
  17376. weight: math.unit(170, "lb"),
  17377. name: "Front",
  17378. image: {
  17379. source: "./media/characters/topaz/front.svg",
  17380. extra: 317 / 303,
  17381. bottom: 0.055
  17382. }
  17383. },
  17384. },
  17385. [
  17386. {
  17387. name: "Normal",
  17388. height: math.unit(6, "feet"),
  17389. default: true
  17390. },
  17391. ]
  17392. ))
  17393. characterMakers.push(() => makeCharacter(
  17394. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17395. {
  17396. front: {
  17397. height: math.unit(5 + 11 / 12, "feet"),
  17398. weight: math.unit(144, "lb"),
  17399. name: "Front",
  17400. image: {
  17401. source: "./media/characters/gabriel/front.svg",
  17402. extra: 285 / 262,
  17403. bottom: 0.004
  17404. }
  17405. },
  17406. },
  17407. [
  17408. {
  17409. name: "Normal",
  17410. height: math.unit(5 + 11 / 12, "feet"),
  17411. default: true
  17412. },
  17413. ]
  17414. ))
  17415. characterMakers.push(() => makeCharacter(
  17416. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17417. {
  17418. side: {
  17419. height: math.unit(6 + 5 / 12, "feet"),
  17420. weight: math.unit(300, "lb"),
  17421. name: "Side",
  17422. image: {
  17423. source: "./media/characters/tempest-suicune/side.svg",
  17424. extra: 195 / 154,
  17425. bottom: 0.04
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(6 + 5 / 12, "feet"),
  17433. default: true
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17439. {
  17440. front: {
  17441. height: math.unit(7 + 2 / 12, "feet"),
  17442. weight: math.unit(322, "lb"),
  17443. name: "Front",
  17444. image: {
  17445. source: "./media/characters/vulcan/front.svg",
  17446. extra: 154 / 147,
  17447. bottom: 0.04
  17448. }
  17449. },
  17450. },
  17451. [
  17452. {
  17453. name: "Normal",
  17454. height: math.unit(7 + 2 / 12, "feet"),
  17455. default: true
  17456. },
  17457. ]
  17458. ))
  17459. characterMakers.push(() => makeCharacter(
  17460. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17461. {
  17462. front: {
  17463. height: math.unit(5 + 10 / 12, "feet"),
  17464. weight: math.unit(264, "lb"),
  17465. name: "Front",
  17466. image: {
  17467. source: "./media/characters/gault/front.svg",
  17468. extra: 161 / 140,
  17469. bottom: 0.028
  17470. }
  17471. },
  17472. },
  17473. [
  17474. {
  17475. name: "Normal",
  17476. height: math.unit(5 + 10 / 12, "feet"),
  17477. default: true
  17478. },
  17479. ]
  17480. ))
  17481. characterMakers.push(() => makeCharacter(
  17482. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17483. {
  17484. front: {
  17485. height: math.unit(6, "feet"),
  17486. weight: math.unit(150, "lb"),
  17487. name: "Front",
  17488. image: {
  17489. source: "./media/characters/shard/front.svg",
  17490. extra: 273 / 238,
  17491. bottom: 0.02
  17492. }
  17493. },
  17494. },
  17495. [
  17496. {
  17497. name: "Normal",
  17498. height: math.unit(3 + 6 / 12, "feet"),
  17499. default: true
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17505. {
  17506. front: {
  17507. height: math.unit(5 + 11 / 12, "feet"),
  17508. weight: math.unit(146, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/ashe/front.svg",
  17512. extra: 400 / 373,
  17513. bottom: 0.01
  17514. }
  17515. },
  17516. },
  17517. [
  17518. {
  17519. name: "Normal",
  17520. height: math.unit(5 + 11 / 12, "feet"),
  17521. default: true
  17522. },
  17523. ]
  17524. ))
  17525. characterMakers.push(() => makeCharacter(
  17526. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17527. {
  17528. front: {
  17529. height: math.unit(5 + 5 / 12, "feet"),
  17530. weight: math.unit(135, "lb"),
  17531. name: "Front",
  17532. image: {
  17533. source: "./media/characters/beatrix/front.svg",
  17534. extra: 392 / 379,
  17535. bottom: 0.01
  17536. }
  17537. },
  17538. },
  17539. [
  17540. {
  17541. name: "Normal",
  17542. height: math.unit(6, "feet"),
  17543. default: true
  17544. },
  17545. ]
  17546. ))
  17547. characterMakers.push(() => makeCharacter(
  17548. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17549. {
  17550. front: {
  17551. height: math.unit(6 + 2/12, "feet"),
  17552. weight: math.unit(135, "lb"),
  17553. name: "Front",
  17554. image: {
  17555. source: "./media/characters/ignatius/front.svg",
  17556. extra: 1380/1259,
  17557. bottom: 27/1407
  17558. }
  17559. },
  17560. },
  17561. [
  17562. {
  17563. name: "Normal",
  17564. height: math.unit(6 + 2/12, "feet"),
  17565. default: true
  17566. },
  17567. ]
  17568. ))
  17569. characterMakers.push(() => makeCharacter(
  17570. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17571. {
  17572. front: {
  17573. height: math.unit(6 + 2 / 12, "feet"),
  17574. weight: math.unit(138, "lb"),
  17575. name: "Front",
  17576. image: {
  17577. source: "./media/characters/mei-li/front.svg",
  17578. extra: 237 / 229,
  17579. bottom: 0.03
  17580. }
  17581. },
  17582. },
  17583. [
  17584. {
  17585. name: "Normal",
  17586. height: math.unit(6 + 2 / 12, "feet"),
  17587. default: true
  17588. },
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17593. {
  17594. front: {
  17595. height: math.unit(2 + 4 / 12, "feet"),
  17596. weight: math.unit(62, "lb"),
  17597. name: "Front",
  17598. image: {
  17599. source: "./media/characters/puru/front.svg",
  17600. extra: 206 / 149,
  17601. bottom: 0.06
  17602. }
  17603. },
  17604. },
  17605. [
  17606. {
  17607. name: "Normal",
  17608. height: math.unit(2 + 4 / 12, "feet"),
  17609. default: true
  17610. },
  17611. ]
  17612. ))
  17613. characterMakers.push(() => makeCharacter(
  17614. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17615. {
  17616. anthro: {
  17617. height: math.unit(5 + 8/12, "feet"),
  17618. weight: math.unit(200, "lb"),
  17619. energyNeed: math.unit(2000, "kcal"),
  17620. name: "Anthro",
  17621. image: {
  17622. source: "./media/characters/kee/anthro.svg",
  17623. extra: 3251/3184,
  17624. bottom: 250/3501
  17625. }
  17626. },
  17627. taur: {
  17628. height: math.unit(11, "feet"),
  17629. weight: math.unit(500, "lb"),
  17630. energyNeed: math.unit(5000, "kcal"),
  17631. name: "Taur",
  17632. image: {
  17633. source: "./media/characters/kee/taur.svg",
  17634. extra: 1362/1320,
  17635. bottom: 83/1445
  17636. }
  17637. },
  17638. },
  17639. [
  17640. {
  17641. name: "Normal",
  17642. height: math.unit(5 + 8/12, "feet"),
  17643. default: true
  17644. },
  17645. {
  17646. name: "Macro",
  17647. height: math.unit(35, "feet")
  17648. },
  17649. ]
  17650. ))
  17651. characterMakers.push(() => makeCharacter(
  17652. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17653. {
  17654. anthro: {
  17655. height: math.unit(7, "feet"),
  17656. weight: math.unit(190, "lb"),
  17657. name: "Anthro",
  17658. image: {
  17659. source: "./media/characters/cobalt-dracha/anthro.svg",
  17660. extra: 231 / 225,
  17661. bottom: 0.04
  17662. }
  17663. },
  17664. feral: {
  17665. height: math.unit(9 + 7 / 12, "feet"),
  17666. weight: math.unit(294, "lb"),
  17667. name: "Feral",
  17668. image: {
  17669. source: "./media/characters/cobalt-dracha/feral.svg",
  17670. extra: 692 / 633,
  17671. bottom: 0.05
  17672. }
  17673. },
  17674. },
  17675. [
  17676. {
  17677. name: "Normal",
  17678. height: math.unit(7, "feet"),
  17679. default: true
  17680. },
  17681. ]
  17682. ))
  17683. characterMakers.push(() => makeCharacter(
  17684. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17685. {
  17686. fallen: {
  17687. height: math.unit(11 + 8 / 12, "feet"),
  17688. weight: math.unit(485, "lb"),
  17689. name: "Java (Fallen)",
  17690. rename: true,
  17691. image: {
  17692. source: "./media/characters/java/fallen.svg",
  17693. extra: 226 / 208,
  17694. bottom: 0.005
  17695. }
  17696. },
  17697. godkin: {
  17698. height: math.unit(10 + 6 / 12, "feet"),
  17699. weight: math.unit(328, "lb"),
  17700. name: "Java (Godkin)",
  17701. rename: true,
  17702. image: {
  17703. source: "./media/characters/java/godkin.svg",
  17704. extra: 1104/1068,
  17705. bottom: 36/1140
  17706. }
  17707. },
  17708. },
  17709. [
  17710. {
  17711. name: "Normal",
  17712. height: math.unit(11 + 8 / 12, "feet"),
  17713. default: true
  17714. },
  17715. ]
  17716. ))
  17717. characterMakers.push(() => makeCharacter(
  17718. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17719. {
  17720. front: {
  17721. height: math.unit(5 + 9 / 12, "feet"),
  17722. weight: math.unit(170, "lb"),
  17723. name: "Front",
  17724. image: {
  17725. source: "./media/characters/purna/front.svg",
  17726. extra: 239 / 229,
  17727. bottom: 0.01
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Normal",
  17734. height: math.unit(5 + 9 / 12, "feet"),
  17735. default: true
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17741. {
  17742. front: {
  17743. height: math.unit(5 + 9 / 12, "feet"),
  17744. weight: math.unit(142, "lb"),
  17745. name: "Front",
  17746. image: {
  17747. source: "./media/characters/kuva/front.svg",
  17748. extra: 281 / 271,
  17749. bottom: 0.006
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Normal",
  17756. height: math.unit(5 + 9 / 12, "feet"),
  17757. default: true
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17763. {
  17764. anthro: {
  17765. height: math.unit(9 + 2 / 12, "feet"),
  17766. weight: math.unit(270, "lb"),
  17767. name: "Anthro",
  17768. image: {
  17769. source: "./media/characters/embra/anthro.svg",
  17770. extra: 200 / 187,
  17771. bottom: 0.02
  17772. }
  17773. },
  17774. feral: {
  17775. height: math.unit(18 + 8 / 12, "feet"),
  17776. weight: math.unit(576, "lb"),
  17777. name: "Feral",
  17778. image: {
  17779. source: "./media/characters/embra/feral.svg",
  17780. extra: 152 / 137,
  17781. bottom: 0.037
  17782. }
  17783. },
  17784. },
  17785. [
  17786. {
  17787. name: "Normal",
  17788. height: math.unit(9 + 2 / 12, "feet"),
  17789. default: true
  17790. },
  17791. ]
  17792. ))
  17793. characterMakers.push(() => makeCharacter(
  17794. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17795. {
  17796. anthro: {
  17797. height: math.unit(10 + 9 / 12, "feet"),
  17798. weight: math.unit(224, "lb"),
  17799. name: "Anthro",
  17800. image: {
  17801. source: "./media/characters/grottos/anthro.svg",
  17802. extra: 350 / 332,
  17803. bottom: 0.045
  17804. }
  17805. },
  17806. feral: {
  17807. height: math.unit(20 + 7 / 12, "feet"),
  17808. weight: math.unit(629, "lb"),
  17809. name: "Feral",
  17810. image: {
  17811. source: "./media/characters/grottos/feral.svg",
  17812. extra: 207 / 190,
  17813. bottom: 0.05
  17814. }
  17815. },
  17816. },
  17817. [
  17818. {
  17819. name: "Normal",
  17820. height: math.unit(10 + 9 / 12, "feet"),
  17821. default: true
  17822. },
  17823. ]
  17824. ))
  17825. characterMakers.push(() => makeCharacter(
  17826. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17827. {
  17828. anthro: {
  17829. height: math.unit(9 + 6 / 12, "feet"),
  17830. weight: math.unit(298, "lb"),
  17831. name: "Anthro",
  17832. image: {
  17833. source: "./media/characters/frifna/anthro.svg",
  17834. extra: 282 / 269,
  17835. bottom: 0.015
  17836. }
  17837. },
  17838. feral: {
  17839. height: math.unit(16 + 2 / 12, "feet"),
  17840. weight: math.unit(624, "lb"),
  17841. name: "Feral",
  17842. image: {
  17843. source: "./media/characters/frifna/feral.svg"
  17844. }
  17845. },
  17846. },
  17847. [
  17848. {
  17849. name: "Normal",
  17850. height: math.unit(9 + 6 / 12, "feet"),
  17851. default: true
  17852. },
  17853. ]
  17854. ))
  17855. characterMakers.push(() => makeCharacter(
  17856. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17857. {
  17858. front: {
  17859. height: math.unit(6 + 2 / 12, "feet"),
  17860. weight: math.unit(168, "lb"),
  17861. name: "Front",
  17862. image: {
  17863. source: "./media/characters/elise/front.svg",
  17864. extra: 276 / 271
  17865. }
  17866. },
  17867. },
  17868. [
  17869. {
  17870. name: "Normal",
  17871. height: math.unit(6 + 2 / 12, "feet"),
  17872. default: true
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17878. {
  17879. front: {
  17880. height: math.unit(5 + 10 / 12, "feet"),
  17881. weight: math.unit(210, "lb"),
  17882. name: "Front",
  17883. image: {
  17884. source: "./media/characters/glade/front.svg",
  17885. extra: 258 / 247,
  17886. bottom: 0.008
  17887. }
  17888. },
  17889. },
  17890. [
  17891. {
  17892. name: "Normal",
  17893. height: math.unit(5 + 10 / 12, "feet"),
  17894. default: true
  17895. },
  17896. ]
  17897. ))
  17898. characterMakers.push(() => makeCharacter(
  17899. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17900. {
  17901. front: {
  17902. height: math.unit(5 + 10 / 12, "feet"),
  17903. weight: math.unit(129, "lb"),
  17904. name: "Front",
  17905. image: {
  17906. source: "./media/characters/rina/front.svg",
  17907. extra: 266 / 255,
  17908. bottom: 0.005
  17909. }
  17910. },
  17911. },
  17912. [
  17913. {
  17914. name: "Normal",
  17915. height: math.unit(5 + 10 / 12, "feet"),
  17916. default: true
  17917. },
  17918. ]
  17919. ))
  17920. characterMakers.push(() => makeCharacter(
  17921. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17922. {
  17923. front: {
  17924. height: math.unit(6 + 1 / 12, "feet"),
  17925. weight: math.unit(192, "lb"),
  17926. name: "Front",
  17927. image: {
  17928. source: "./media/characters/veronica/front.svg",
  17929. extra: 319 / 309,
  17930. bottom: 0.005
  17931. }
  17932. },
  17933. },
  17934. [
  17935. {
  17936. name: "Normal",
  17937. height: math.unit(6 + 1 / 12, "feet"),
  17938. default: true
  17939. },
  17940. ]
  17941. ))
  17942. characterMakers.push(() => makeCharacter(
  17943. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17944. {
  17945. front: {
  17946. height: math.unit(9 + 3 / 12, "feet"),
  17947. weight: math.unit(1100, "lb"),
  17948. name: "Front",
  17949. image: {
  17950. source: "./media/characters/braxton/front.svg",
  17951. extra: 1057 / 984,
  17952. bottom: 0.05
  17953. }
  17954. },
  17955. },
  17956. [
  17957. {
  17958. name: "Normal",
  17959. height: math.unit(9 + 3 / 12, "feet")
  17960. },
  17961. {
  17962. name: "Giant",
  17963. height: math.unit(300, "feet"),
  17964. default: true
  17965. },
  17966. {
  17967. name: "Macro",
  17968. height: math.unit(700, "feet")
  17969. },
  17970. {
  17971. name: "Megamacro",
  17972. height: math.unit(6000, "feet")
  17973. },
  17974. ]
  17975. ))
  17976. characterMakers.push(() => makeCharacter(
  17977. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17978. {
  17979. front: {
  17980. height: math.unit(6 + 7 / 12, "feet"),
  17981. weight: math.unit(150, "lb"),
  17982. name: "Front",
  17983. image: {
  17984. source: "./media/characters/blue-feyonics/front.svg",
  17985. extra: 1403 / 1306,
  17986. bottom: 0.047
  17987. }
  17988. },
  17989. },
  17990. [
  17991. {
  17992. name: "Normal",
  17993. height: math.unit(6 + 7 / 12, "feet"),
  17994. default: true
  17995. },
  17996. ]
  17997. ))
  17998. characterMakers.push(() => makeCharacter(
  17999. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18000. {
  18001. front: {
  18002. height: math.unit(1.8, "meters"),
  18003. weight: math.unit(60, "kg"),
  18004. name: "Front",
  18005. image: {
  18006. source: "./media/characters/maxwell/front.svg",
  18007. extra: 2060 / 1873
  18008. }
  18009. },
  18010. },
  18011. [
  18012. {
  18013. name: "Micro",
  18014. height: math.unit(1, "mm")
  18015. },
  18016. {
  18017. name: "Normal",
  18018. height: math.unit(1.8, "meter"),
  18019. default: true
  18020. },
  18021. {
  18022. name: "Macro",
  18023. height: math.unit(30, "meters")
  18024. },
  18025. {
  18026. name: "Megamacro",
  18027. height: math.unit(10, "km")
  18028. },
  18029. ]
  18030. ))
  18031. characterMakers.push(() => makeCharacter(
  18032. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18033. {
  18034. front: {
  18035. height: math.unit(6, "feet"),
  18036. weight: math.unit(150, "lb"),
  18037. name: "Front",
  18038. image: {
  18039. source: "./media/characters/jack/front.svg",
  18040. extra: 1754 / 1640,
  18041. bottom: 0.01
  18042. }
  18043. },
  18044. },
  18045. [
  18046. {
  18047. name: "Normal",
  18048. height: math.unit(80000, "feet"),
  18049. default: true
  18050. },
  18051. {
  18052. name: "Max size",
  18053. height: math.unit(10, "lightyears")
  18054. },
  18055. ]
  18056. ))
  18057. characterMakers.push(() => makeCharacter(
  18058. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18059. {
  18060. urban: {
  18061. height: math.unit(5, "feet"),
  18062. weight: math.unit(240, "lb"),
  18063. name: "Urban",
  18064. image: {
  18065. source: "./media/characters/cafat/urban.svg",
  18066. extra: 1223/1126,
  18067. bottom: 205/1428
  18068. }
  18069. },
  18070. summer: {
  18071. height: math.unit(5, "feet"),
  18072. weight: math.unit(240, "lb"),
  18073. name: "Summer",
  18074. image: {
  18075. source: "./media/characters/cafat/summer.svg",
  18076. extra: 1223/1126,
  18077. bottom: 205/1428
  18078. }
  18079. },
  18080. winter: {
  18081. height: math.unit(5, "feet"),
  18082. weight: math.unit(240, "lb"),
  18083. name: "Winter",
  18084. image: {
  18085. source: "./media/characters/cafat/winter.svg",
  18086. extra: 1223/1126,
  18087. bottom: 205/1428
  18088. }
  18089. },
  18090. lingerie: {
  18091. height: math.unit(5, "feet"),
  18092. weight: math.unit(240, "lb"),
  18093. name: "Lingerie",
  18094. image: {
  18095. source: "./media/characters/cafat/lingerie.svg",
  18096. extra: 1223/1126,
  18097. bottom: 205/1428
  18098. }
  18099. },
  18100. upright: {
  18101. height: math.unit(6.3, "feet"),
  18102. weight: math.unit(240, "lb"),
  18103. name: "Upright",
  18104. image: {
  18105. source: "./media/characters/cafat/upright.svg",
  18106. bottom: 0.01
  18107. }
  18108. },
  18109. uprightFull: {
  18110. height: math.unit(6.3, "feet"),
  18111. weight: math.unit(240, "lb"),
  18112. name: "Upright (Full)",
  18113. image: {
  18114. source: "./media/characters/cafat/upright-full.svg",
  18115. bottom: 0.01
  18116. }
  18117. },
  18118. },
  18119. [
  18120. {
  18121. name: "Small",
  18122. height: math.unit(5, "feet"),
  18123. default: true
  18124. },
  18125. {
  18126. name: "Large",
  18127. height: math.unit(13, "feet")
  18128. },
  18129. ]
  18130. ))
  18131. characterMakers.push(() => makeCharacter(
  18132. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18133. {
  18134. front: {
  18135. height: math.unit(6, "feet"),
  18136. weight: math.unit(150, "lb"),
  18137. name: "Front",
  18138. image: {
  18139. source: "./media/characters/verin-raharra/front.svg",
  18140. extra: 5019 / 4835,
  18141. bottom: 0.023
  18142. }
  18143. },
  18144. },
  18145. [
  18146. {
  18147. name: "Normal",
  18148. height: math.unit(7 + 5 / 12, "feet"),
  18149. default: true
  18150. },
  18151. {
  18152. name: "Upsized",
  18153. height: math.unit(20, "feet")
  18154. },
  18155. ]
  18156. ))
  18157. characterMakers.push(() => makeCharacter(
  18158. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18159. {
  18160. front: {
  18161. height: math.unit(7, "feet"),
  18162. weight: math.unit(230, "lb"),
  18163. name: "Front",
  18164. image: {
  18165. source: "./media/characters/nakata/front.svg",
  18166. extra: 1.005,
  18167. bottom: 0.01
  18168. }
  18169. },
  18170. },
  18171. [
  18172. {
  18173. name: "Normal",
  18174. height: math.unit(7, "feet"),
  18175. default: true
  18176. },
  18177. {
  18178. name: "Big",
  18179. height: math.unit(14, "feet")
  18180. },
  18181. {
  18182. name: "Macro",
  18183. height: math.unit(400, "feet")
  18184. },
  18185. ]
  18186. ))
  18187. characterMakers.push(() => makeCharacter(
  18188. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18189. {
  18190. front: {
  18191. height: math.unit(4.91, "feet"),
  18192. weight: math.unit(100, "lb"),
  18193. name: "Front",
  18194. image: {
  18195. source: "./media/characters/lily/front.svg",
  18196. extra: 1585 / 1415,
  18197. bottom: 0.02
  18198. }
  18199. },
  18200. },
  18201. [
  18202. {
  18203. name: "Normal",
  18204. height: math.unit(4.91, "feet"),
  18205. default: true
  18206. },
  18207. ]
  18208. ))
  18209. characterMakers.push(() => makeCharacter(
  18210. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18211. {
  18212. laying: {
  18213. height: math.unit(4 + 4 / 12, "feet"),
  18214. weight: math.unit(600, "lb"),
  18215. name: "Laying",
  18216. image: {
  18217. source: "./media/characters/sheila/laying.svg",
  18218. extra: 1333 / 1265,
  18219. bottom: 0.16
  18220. }
  18221. },
  18222. },
  18223. [
  18224. {
  18225. name: "Normal",
  18226. height: math.unit(4 + 4 / 12, "feet"),
  18227. default: true
  18228. },
  18229. ]
  18230. ))
  18231. characterMakers.push(() => makeCharacter(
  18232. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18233. {
  18234. front: {
  18235. height: math.unit(6, "feet"),
  18236. weight: math.unit(190, "lb"),
  18237. name: "Front",
  18238. image: {
  18239. source: "./media/characters/sax/front.svg",
  18240. extra: 1187 / 973,
  18241. bottom: 0.042
  18242. }
  18243. },
  18244. },
  18245. [
  18246. {
  18247. name: "Micro",
  18248. height: math.unit(4, "inches"),
  18249. default: true
  18250. },
  18251. ]
  18252. ))
  18253. characterMakers.push(() => makeCharacter(
  18254. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18255. {
  18256. front: {
  18257. height: math.unit(6, "feet"),
  18258. weight: math.unit(150, "lb"),
  18259. name: "Front",
  18260. image: {
  18261. source: "./media/characters/pandora/front.svg",
  18262. extra: 2720 / 2556,
  18263. bottom: 0.015
  18264. }
  18265. },
  18266. back: {
  18267. height: math.unit(6, "feet"),
  18268. weight: math.unit(150, "lb"),
  18269. name: "Back",
  18270. image: {
  18271. source: "./media/characters/pandora/back.svg",
  18272. extra: 2720 / 2556,
  18273. bottom: 0.01
  18274. }
  18275. },
  18276. beans: {
  18277. height: math.unit(6 / 8, "feet"),
  18278. name: "Beans",
  18279. image: {
  18280. source: "./media/characters/pandora/beans.svg"
  18281. }
  18282. },
  18283. collar: {
  18284. height: math.unit(0.31, "feet"),
  18285. name: "Collar",
  18286. image: {
  18287. source: "./media/characters/pandora/collar.svg"
  18288. }
  18289. },
  18290. skirt: {
  18291. height: math.unit(6, "feet"),
  18292. weight: math.unit(150, "lb"),
  18293. name: "Skirt",
  18294. image: {
  18295. source: "./media/characters/pandora/skirt.svg",
  18296. extra: 1622 / 1525,
  18297. bottom: 0.015
  18298. }
  18299. },
  18300. hoodie: {
  18301. height: math.unit(6, "feet"),
  18302. weight: math.unit(150, "lb"),
  18303. name: "Hoodie",
  18304. image: {
  18305. source: "./media/characters/pandora/hoodie.svg",
  18306. extra: 1622 / 1525,
  18307. bottom: 0.015
  18308. }
  18309. },
  18310. casual: {
  18311. height: math.unit(6, "feet"),
  18312. weight: math.unit(150, "lb"),
  18313. name: "Casual",
  18314. image: {
  18315. source: "./media/characters/pandora/casual.svg",
  18316. extra: 1622 / 1525,
  18317. bottom: 0.015
  18318. }
  18319. },
  18320. },
  18321. [
  18322. {
  18323. name: "Normal",
  18324. height: math.unit(6, "feet")
  18325. },
  18326. {
  18327. name: "Big Steppy",
  18328. height: math.unit(1, "km"),
  18329. default: true
  18330. },
  18331. {
  18332. name: "Galactic Steppy",
  18333. height: math.unit(2, "gigameters")
  18334. },
  18335. ]
  18336. ))
  18337. characterMakers.push(() => makeCharacter(
  18338. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18339. {
  18340. side: {
  18341. height: math.unit(10, "feet"),
  18342. weight: math.unit(800, "kg"),
  18343. name: "Side",
  18344. image: {
  18345. source: "./media/characters/venio-darcony/side.svg",
  18346. extra: 1373 / 1003,
  18347. bottom: 0.037
  18348. }
  18349. },
  18350. front: {
  18351. height: math.unit(19, "feet"),
  18352. weight: math.unit(800, "kg"),
  18353. name: "Front",
  18354. image: {
  18355. source: "./media/characters/venio-darcony/front.svg"
  18356. }
  18357. },
  18358. back: {
  18359. height: math.unit(19, "feet"),
  18360. weight: math.unit(800, "kg"),
  18361. name: "Back",
  18362. image: {
  18363. source: "./media/characters/venio-darcony/back.svg"
  18364. }
  18365. },
  18366. sideNsfw: {
  18367. height: math.unit(10, "feet"),
  18368. weight: math.unit(800, "kg"),
  18369. name: "Side (NSFW)",
  18370. image: {
  18371. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18372. extra: 1373 / 1003,
  18373. bottom: 0.037
  18374. }
  18375. },
  18376. frontNsfw: {
  18377. height: math.unit(19, "feet"),
  18378. weight: math.unit(800, "kg"),
  18379. name: "Front (NSFW)",
  18380. image: {
  18381. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18382. }
  18383. },
  18384. backNsfw: {
  18385. height: math.unit(19, "feet"),
  18386. weight: math.unit(800, "kg"),
  18387. name: "Back (NSFW)",
  18388. image: {
  18389. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18390. }
  18391. },
  18392. sideArmored: {
  18393. height: math.unit(10, "feet"),
  18394. weight: math.unit(800, "kg"),
  18395. name: "Side (Armored)",
  18396. image: {
  18397. source: "./media/characters/venio-darcony/side-armored.svg",
  18398. extra: 1373 / 1003,
  18399. bottom: 0.037
  18400. }
  18401. },
  18402. frontArmored: {
  18403. height: math.unit(19, "feet"),
  18404. weight: math.unit(900, "kg"),
  18405. name: "Front (Armored)",
  18406. image: {
  18407. source: "./media/characters/venio-darcony/front-armored.svg"
  18408. }
  18409. },
  18410. backArmored: {
  18411. height: math.unit(19, "feet"),
  18412. weight: math.unit(900, "kg"),
  18413. name: "Back (Armored)",
  18414. image: {
  18415. source: "./media/characters/venio-darcony/back-armored.svg"
  18416. }
  18417. },
  18418. sword: {
  18419. height: math.unit(10, "feet"),
  18420. weight: math.unit(50, "lb"),
  18421. name: "Sword",
  18422. image: {
  18423. source: "./media/characters/venio-darcony/sword.svg"
  18424. }
  18425. },
  18426. },
  18427. [
  18428. {
  18429. name: "Normal",
  18430. height: math.unit(10, "feet")
  18431. },
  18432. {
  18433. name: "Macro",
  18434. height: math.unit(130, "feet"),
  18435. default: true
  18436. },
  18437. {
  18438. name: "Macro+",
  18439. height: math.unit(240, "feet")
  18440. },
  18441. ]
  18442. ))
  18443. characterMakers.push(() => makeCharacter(
  18444. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18445. {
  18446. front: {
  18447. height: math.unit(6, "feet"),
  18448. weight: math.unit(150, "lb"),
  18449. name: "Front",
  18450. image: {
  18451. source: "./media/characters/veski/front.svg",
  18452. extra: 1299 / 1225,
  18453. bottom: 0.04
  18454. }
  18455. },
  18456. back: {
  18457. height: math.unit(6, "feet"),
  18458. weight: math.unit(150, "lb"),
  18459. name: "Back",
  18460. image: {
  18461. source: "./media/characters/veski/back.svg",
  18462. extra: 1299 / 1225,
  18463. bottom: 0.008
  18464. }
  18465. },
  18466. maw: {
  18467. height: math.unit(1.5 * 1.21, "feet"),
  18468. name: "Maw",
  18469. image: {
  18470. source: "./media/characters/veski/maw.svg"
  18471. }
  18472. },
  18473. },
  18474. [
  18475. {
  18476. name: "Macro",
  18477. height: math.unit(2, "km"),
  18478. default: true
  18479. },
  18480. ]
  18481. ))
  18482. characterMakers.push(() => makeCharacter(
  18483. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18484. {
  18485. front: {
  18486. height: math.unit(5 + 7 / 12, "feet"),
  18487. name: "Front",
  18488. image: {
  18489. source: "./media/characters/isabelle/front.svg",
  18490. extra: 2130 / 1976,
  18491. bottom: 0.05
  18492. }
  18493. },
  18494. },
  18495. [
  18496. {
  18497. name: "Supermicro",
  18498. height: math.unit(10, "micrometers")
  18499. },
  18500. {
  18501. name: "Micro",
  18502. height: math.unit(1, "inch")
  18503. },
  18504. {
  18505. name: "Tiny",
  18506. height: math.unit(5, "inches")
  18507. },
  18508. {
  18509. name: "Standard",
  18510. height: math.unit(5 + 7 / 12, "inches")
  18511. },
  18512. {
  18513. name: "Macro",
  18514. height: math.unit(80, "meters"),
  18515. default: true
  18516. },
  18517. {
  18518. name: "Megamacro",
  18519. height: math.unit(250, "meters")
  18520. },
  18521. {
  18522. name: "Gigamacro",
  18523. height: math.unit(5, "km")
  18524. },
  18525. {
  18526. name: "Cosmic",
  18527. height: math.unit(2.5e6, "miles")
  18528. },
  18529. ]
  18530. ))
  18531. characterMakers.push(() => makeCharacter(
  18532. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18533. {
  18534. front: {
  18535. height: math.unit(6, "feet"),
  18536. weight: math.unit(150, "lb"),
  18537. name: "Front",
  18538. image: {
  18539. source: "./media/characters/hanzo/front.svg",
  18540. extra: 374 / 344,
  18541. bottom: 0.02
  18542. }
  18543. },
  18544. },
  18545. [
  18546. {
  18547. name: "Normal",
  18548. height: math.unit(8, "feet"),
  18549. default: true
  18550. },
  18551. ]
  18552. ))
  18553. characterMakers.push(() => makeCharacter(
  18554. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18555. {
  18556. front: {
  18557. height: math.unit(7, "feet"),
  18558. weight: math.unit(130, "lb"),
  18559. name: "Front",
  18560. image: {
  18561. source: "./media/characters/anna/front.svg",
  18562. extra: 169 / 145,
  18563. bottom: 0.06
  18564. }
  18565. },
  18566. full: {
  18567. height: math.unit(4.96, "feet"),
  18568. weight: math.unit(220, "lb"),
  18569. name: "Full",
  18570. image: {
  18571. source: "./media/characters/anna/full.svg",
  18572. extra: 138 / 114,
  18573. bottom: 0.15
  18574. }
  18575. },
  18576. tongue: {
  18577. height: math.unit(2.53, "feet"),
  18578. name: "Tongue",
  18579. image: {
  18580. source: "./media/characters/anna/tongue.svg"
  18581. }
  18582. },
  18583. },
  18584. [
  18585. {
  18586. name: "Normal",
  18587. height: math.unit(7, "feet"),
  18588. default: true
  18589. },
  18590. ]
  18591. ))
  18592. characterMakers.push(() => makeCharacter(
  18593. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18594. {
  18595. front: {
  18596. height: math.unit(7, "feet"),
  18597. weight: math.unit(150, "lb"),
  18598. name: "Front",
  18599. image: {
  18600. source: "./media/characters/ian-corvid/front.svg",
  18601. extra: 150 / 142,
  18602. bottom: 0.02
  18603. }
  18604. },
  18605. back: {
  18606. height: math.unit(7, "feet"),
  18607. weight: math.unit(150, "lb"),
  18608. name: "Back",
  18609. image: {
  18610. source: "./media/characters/ian-corvid/back.svg",
  18611. extra: 150 / 143,
  18612. bottom: 0.01
  18613. }
  18614. },
  18615. stomping: {
  18616. height: math.unit(7, "feet"),
  18617. weight: math.unit(150, "lb"),
  18618. name: "Stomping",
  18619. image: {
  18620. source: "./media/characters/ian-corvid/stomping.svg",
  18621. extra: 76 / 72
  18622. }
  18623. },
  18624. sitting: {
  18625. height: math.unit(7 / 1.8, "feet"),
  18626. weight: math.unit(150, "lb"),
  18627. name: "Sitting",
  18628. image: {
  18629. source: "./media/characters/ian-corvid/sitting.svg",
  18630. extra: 1400 / 1269,
  18631. bottom: 0.15
  18632. }
  18633. },
  18634. },
  18635. [
  18636. {
  18637. name: "Tiny Microw",
  18638. height: math.unit(1, "inch")
  18639. },
  18640. {
  18641. name: "Microw",
  18642. height: math.unit(6, "inches")
  18643. },
  18644. {
  18645. name: "Crow",
  18646. height: math.unit(7 + 1 / 12, "feet"),
  18647. default: true
  18648. },
  18649. {
  18650. name: "Macrow",
  18651. height: math.unit(176, "feet")
  18652. },
  18653. ]
  18654. ))
  18655. characterMakers.push(() => makeCharacter(
  18656. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18657. {
  18658. front: {
  18659. height: math.unit(5 + 7 / 12, "feet"),
  18660. weight: math.unit(147, "lb"),
  18661. name: "Front",
  18662. image: {
  18663. source: "./media/characters/natalie-kellon/front.svg",
  18664. extra: 1214 / 1141,
  18665. bottom: 0.02
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Micro",
  18672. height: math.unit(1 / 16, "inch")
  18673. },
  18674. {
  18675. name: "Tiny",
  18676. height: math.unit(4, "inches")
  18677. },
  18678. {
  18679. name: "Normal",
  18680. height: math.unit(5 + 7 / 12, "feet"),
  18681. default: true
  18682. },
  18683. {
  18684. name: "Amazon",
  18685. height: math.unit(12, "feet")
  18686. },
  18687. {
  18688. name: "Giantess",
  18689. height: math.unit(160, "meters")
  18690. },
  18691. {
  18692. name: "Titaness",
  18693. height: math.unit(800, "meters")
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18699. {
  18700. front: {
  18701. height: math.unit(6, "feet"),
  18702. weight: math.unit(150, "lb"),
  18703. name: "Front",
  18704. image: {
  18705. source: "./media/characters/alluria/front.svg",
  18706. extra: 806 / 738,
  18707. bottom: 0.01
  18708. }
  18709. },
  18710. side: {
  18711. height: math.unit(6, "feet"),
  18712. weight: math.unit(150, "lb"),
  18713. name: "Side",
  18714. image: {
  18715. source: "./media/characters/alluria/side.svg",
  18716. extra: 800 / 750,
  18717. }
  18718. },
  18719. back: {
  18720. height: math.unit(6, "feet"),
  18721. weight: math.unit(150, "lb"),
  18722. name: "Back",
  18723. image: {
  18724. source: "./media/characters/alluria/back.svg",
  18725. extra: 806 / 738,
  18726. }
  18727. },
  18728. frontMaid: {
  18729. height: math.unit(6, "feet"),
  18730. weight: math.unit(150, "lb"),
  18731. name: "Front (Maid)",
  18732. image: {
  18733. source: "./media/characters/alluria/front-maid.svg",
  18734. extra: 806 / 738,
  18735. bottom: 0.01
  18736. }
  18737. },
  18738. sideMaid: {
  18739. height: math.unit(6, "feet"),
  18740. weight: math.unit(150, "lb"),
  18741. name: "Side (Maid)",
  18742. image: {
  18743. source: "./media/characters/alluria/side-maid.svg",
  18744. extra: 800 / 750,
  18745. bottom: 0.005
  18746. }
  18747. },
  18748. backMaid: {
  18749. height: math.unit(6, "feet"),
  18750. weight: math.unit(150, "lb"),
  18751. name: "Back (Maid)",
  18752. image: {
  18753. source: "./media/characters/alluria/back-maid.svg",
  18754. extra: 806 / 738,
  18755. }
  18756. },
  18757. },
  18758. [
  18759. {
  18760. name: "Micro",
  18761. height: math.unit(6, "inches"),
  18762. default: true
  18763. },
  18764. ]
  18765. ))
  18766. characterMakers.push(() => makeCharacter(
  18767. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18768. {
  18769. front: {
  18770. height: math.unit(6, "feet"),
  18771. weight: math.unit(150, "lb"),
  18772. name: "Front",
  18773. image: {
  18774. source: "./media/characters/kyle/front.svg",
  18775. extra: 1069 / 962,
  18776. bottom: 77.228 / 1727.45
  18777. }
  18778. },
  18779. },
  18780. [
  18781. {
  18782. name: "Macro",
  18783. height: math.unit(150, "feet"),
  18784. default: true
  18785. },
  18786. ]
  18787. ))
  18788. characterMakers.push(() => makeCharacter(
  18789. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18790. {
  18791. front: {
  18792. height: math.unit(6, "feet"),
  18793. weight: math.unit(300, "lb"),
  18794. name: "Front",
  18795. image: {
  18796. source: "./media/characters/duncan/front.svg",
  18797. extra: 1650 / 1482,
  18798. bottom: 0.05
  18799. }
  18800. },
  18801. },
  18802. [
  18803. {
  18804. name: "Macro",
  18805. height: math.unit(100, "feet"),
  18806. default: true
  18807. },
  18808. ]
  18809. ))
  18810. characterMakers.push(() => makeCharacter(
  18811. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18812. {
  18813. front: {
  18814. height: math.unit(5 + 4 / 12, "feet"),
  18815. weight: math.unit(220, "lb"),
  18816. name: "Front",
  18817. image: {
  18818. source: "./media/characters/memory/front.svg",
  18819. extra: 3641 / 3545,
  18820. bottom: 0.03
  18821. }
  18822. },
  18823. back: {
  18824. height: math.unit(5 + 4 / 12, "feet"),
  18825. weight: math.unit(220, "lb"),
  18826. name: "Back",
  18827. image: {
  18828. source: "./media/characters/memory/back.svg",
  18829. extra: 3641 / 3545,
  18830. bottom: 0.025
  18831. }
  18832. },
  18833. frontSkirt: {
  18834. height: math.unit(5 + 4 / 12, "feet"),
  18835. weight: math.unit(220, "lb"),
  18836. name: "Front (Skirt)",
  18837. image: {
  18838. source: "./media/characters/memory/front-skirt.svg",
  18839. extra: 3641 / 3545,
  18840. bottom: 0.03
  18841. }
  18842. },
  18843. frontDress: {
  18844. height: math.unit(5 + 4 / 12, "feet"),
  18845. weight: math.unit(220, "lb"),
  18846. name: "Front (Dress)",
  18847. image: {
  18848. source: "./media/characters/memory/front-dress.svg",
  18849. extra: 3641 / 3545,
  18850. bottom: 0.03
  18851. }
  18852. },
  18853. },
  18854. [
  18855. {
  18856. name: "Micro",
  18857. height: math.unit(6, "inches"),
  18858. default: true
  18859. },
  18860. {
  18861. name: "Normal",
  18862. height: math.unit(5 + 4 / 12, "feet")
  18863. },
  18864. ]
  18865. ))
  18866. characterMakers.push(() => makeCharacter(
  18867. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18868. {
  18869. front: {
  18870. height: math.unit(4 + 11 / 12, "feet"),
  18871. weight: math.unit(100, "lb"),
  18872. name: "Front",
  18873. image: {
  18874. source: "./media/characters/luno/front.svg",
  18875. extra: 1535 / 1487,
  18876. bottom: 0.03
  18877. }
  18878. },
  18879. },
  18880. [
  18881. {
  18882. name: "Micro",
  18883. height: math.unit(3, "inches")
  18884. },
  18885. {
  18886. name: "Normal",
  18887. height: math.unit(4 + 11 / 12, "feet"),
  18888. default: true
  18889. },
  18890. {
  18891. name: "Macro",
  18892. height: math.unit(300, "feet")
  18893. },
  18894. {
  18895. name: "Megamacro",
  18896. height: math.unit(700, "miles")
  18897. },
  18898. ]
  18899. ))
  18900. characterMakers.push(() => makeCharacter(
  18901. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18902. {
  18903. front: {
  18904. height: math.unit(6 + 2 / 12, "feet"),
  18905. weight: math.unit(170, "lb"),
  18906. name: "Front",
  18907. image: {
  18908. source: "./media/characters/jamesy/front.svg",
  18909. extra: 440 / 382,
  18910. bottom: 0.005
  18911. }
  18912. },
  18913. },
  18914. [
  18915. {
  18916. name: "Micro",
  18917. height: math.unit(3, "inches")
  18918. },
  18919. {
  18920. name: "Normal",
  18921. height: math.unit(6 + 2 / 12, "feet"),
  18922. default: true
  18923. },
  18924. {
  18925. name: "Macro",
  18926. height: math.unit(300, "feet")
  18927. },
  18928. {
  18929. name: "Megamacro",
  18930. height: math.unit(700, "miles")
  18931. },
  18932. ]
  18933. ))
  18934. characterMakers.push(() => makeCharacter(
  18935. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18936. {
  18937. front: {
  18938. height: math.unit(6, "feet"),
  18939. weight: math.unit(160, "lb"),
  18940. name: "Front",
  18941. image: {
  18942. source: "./media/characters/mark/front.svg",
  18943. extra: 3300 / 3100,
  18944. bottom: 136.42 / 3440.47
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Macro",
  18951. height: math.unit(120, "meters")
  18952. },
  18953. {
  18954. name: "Bigger Macro",
  18955. height: math.unit(350, "meters")
  18956. },
  18957. {
  18958. name: "Megamacro",
  18959. height: math.unit(8, "km"),
  18960. default: true
  18961. },
  18962. {
  18963. name: "Continental",
  18964. height: math.unit(4550, "km")
  18965. },
  18966. {
  18967. name: "Planetary",
  18968. height: math.unit(65000, "km")
  18969. },
  18970. ]
  18971. ))
  18972. characterMakers.push(() => makeCharacter(
  18973. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18974. {
  18975. front: {
  18976. height: math.unit(6, "feet"),
  18977. weight: math.unit(400, "lb"),
  18978. name: "Front",
  18979. image: {
  18980. source: "./media/characters/mac/front.svg",
  18981. extra: 1048 / 987.7,
  18982. bottom: 60 / 1107.6,
  18983. }
  18984. },
  18985. },
  18986. [
  18987. {
  18988. name: "Macro",
  18989. height: math.unit(500, "feet"),
  18990. default: true
  18991. },
  18992. ]
  18993. ))
  18994. characterMakers.push(() => makeCharacter(
  18995. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18996. {
  18997. front: {
  18998. height: math.unit(5 + 2 / 12, "feet"),
  18999. weight: math.unit(190, "lb"),
  19000. name: "Front",
  19001. image: {
  19002. source: "./media/characters/bari/front.svg",
  19003. extra: 3156 / 2880,
  19004. bottom: 0.03
  19005. }
  19006. },
  19007. back: {
  19008. height: math.unit(5 + 2 / 12, "feet"),
  19009. weight: math.unit(190, "lb"),
  19010. name: "Back",
  19011. image: {
  19012. source: "./media/characters/bari/back.svg",
  19013. extra: 3260 / 2834,
  19014. bottom: 0.025
  19015. }
  19016. },
  19017. frontPlush: {
  19018. height: math.unit(5 + 2 / 12, "feet"),
  19019. weight: math.unit(190, "lb"),
  19020. name: "Front (Plush)",
  19021. image: {
  19022. source: "./media/characters/bari/front-plush.svg",
  19023. extra: 1112 / 1061,
  19024. bottom: 0.002
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Micro",
  19031. height: math.unit(3, "inches")
  19032. },
  19033. {
  19034. name: "Normal",
  19035. height: math.unit(5 + 2 / 12, "feet"),
  19036. default: true
  19037. },
  19038. {
  19039. name: "Macro",
  19040. height: math.unit(20, "feet")
  19041. },
  19042. ]
  19043. ))
  19044. characterMakers.push(() => makeCharacter(
  19045. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19046. {
  19047. front: {
  19048. height: math.unit(6 + 1 / 12, "feet"),
  19049. weight: math.unit(275, "lb"),
  19050. name: "Front",
  19051. image: {
  19052. source: "./media/characters/hunter-misha-raven/front.svg"
  19053. }
  19054. },
  19055. },
  19056. [
  19057. {
  19058. name: "Mortal",
  19059. height: math.unit(6 + 1 / 12, "feet")
  19060. },
  19061. {
  19062. name: "Divine",
  19063. height: math.unit(1.12134e34, "parsecs"),
  19064. default: true
  19065. },
  19066. ]
  19067. ))
  19068. characterMakers.push(() => makeCharacter(
  19069. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19070. {
  19071. front: {
  19072. height: math.unit(6 + 3 / 12, "feet"),
  19073. weight: math.unit(220, "lb"),
  19074. name: "Front",
  19075. image: {
  19076. source: "./media/characters/max-calore/front.svg",
  19077. extra: 1700 / 1648,
  19078. bottom: 0.01
  19079. }
  19080. },
  19081. back: {
  19082. height: math.unit(6 + 3 / 12, "feet"),
  19083. weight: math.unit(220, "lb"),
  19084. name: "Back",
  19085. image: {
  19086. source: "./media/characters/max-calore/back.svg",
  19087. extra: 1700 / 1648,
  19088. bottom: 0.01
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(6 + 3 / 12, "feet"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19102. {
  19103. side: {
  19104. height: math.unit(2 + 8 / 12, "feet"),
  19105. weight: math.unit(99, "lb"),
  19106. name: "Side",
  19107. image: {
  19108. source: "./media/characters/aspen/side.svg",
  19109. extra: 152 / 138,
  19110. bottom: 0.032
  19111. }
  19112. },
  19113. },
  19114. [
  19115. {
  19116. name: "Normal",
  19117. height: math.unit(2 + 8 / 12, "feet"),
  19118. default: true
  19119. },
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19124. {
  19125. side: {
  19126. height: math.unit(3 + 2 / 12, "feet"),
  19127. weight: math.unit(224, "lb"),
  19128. name: "Side",
  19129. image: {
  19130. source: "./media/characters/sheila-feral-wolf/side.svg",
  19131. extra: 179 / 166,
  19132. bottom: 0.03
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(3 + 2 / 12, "feet"),
  19140. default: true
  19141. },
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19146. {
  19147. side: {
  19148. height: math.unit(1 + 9 / 12, "feet"),
  19149. weight: math.unit(38, "lb"),
  19150. name: "Side",
  19151. image: {
  19152. source: "./media/characters/michelle/side.svg",
  19153. extra: 147 / 136.7,
  19154. bottom: 0.03
  19155. }
  19156. },
  19157. },
  19158. [
  19159. {
  19160. name: "Normal",
  19161. height: math.unit(1 + 9 / 12, "feet"),
  19162. default: true
  19163. },
  19164. ]
  19165. ))
  19166. characterMakers.push(() => makeCharacter(
  19167. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19168. {
  19169. front: {
  19170. height: math.unit(1.54, "feet"),
  19171. weight: math.unit(50, "lb"),
  19172. name: "Front",
  19173. image: {
  19174. source: "./media/characters/nino/front.svg"
  19175. }
  19176. },
  19177. },
  19178. [
  19179. {
  19180. name: "Normal",
  19181. height: math.unit(1.54, "feet"),
  19182. default: true
  19183. },
  19184. ]
  19185. ))
  19186. characterMakers.push(() => makeCharacter(
  19187. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19188. {
  19189. front: {
  19190. height: math.unit(1.49, "feet"),
  19191. weight: math.unit(45, "lb"),
  19192. name: "Front",
  19193. image: {
  19194. source: "./media/characters/viola/front.svg"
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Normal",
  19201. height: math.unit(1.49, "feet"),
  19202. default: true
  19203. },
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19208. {
  19209. front: {
  19210. height: math.unit(6 + 5 / 12, "feet"),
  19211. weight: math.unit(580, "lb"),
  19212. name: "Front",
  19213. image: {
  19214. source: "./media/characters/atlas/front.svg",
  19215. extra: 298.5 / 290,
  19216. bottom: 0.015
  19217. }
  19218. },
  19219. },
  19220. [
  19221. {
  19222. name: "Normal",
  19223. height: math.unit(6 + 5 / 12, "feet"),
  19224. default: true
  19225. },
  19226. ]
  19227. ))
  19228. characterMakers.push(() => makeCharacter(
  19229. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19230. {
  19231. side: {
  19232. height: math.unit(15.6, "inches"),
  19233. weight: math.unit(10, "lb"),
  19234. name: "Side",
  19235. image: {
  19236. source: "./media/characters/davy/side.svg",
  19237. extra: 200 / 170,
  19238. bottom: 0.01
  19239. }
  19240. },
  19241. },
  19242. [
  19243. {
  19244. name: "Normal",
  19245. height: math.unit(15.6, "inches"),
  19246. default: true
  19247. },
  19248. ]
  19249. ))
  19250. characterMakers.push(() => makeCharacter(
  19251. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19252. {
  19253. side: {
  19254. height: math.unit(4 + 8 / 12, "feet"),
  19255. weight: math.unit(166, "lb"),
  19256. name: "Side",
  19257. image: {
  19258. source: "./media/characters/fiona/side.svg",
  19259. extra: 232 / 220,
  19260. bottom: 0.03
  19261. }
  19262. },
  19263. },
  19264. [
  19265. {
  19266. name: "Normal",
  19267. height: math.unit(4 + 8 / 12, "feet"),
  19268. default: true
  19269. },
  19270. ]
  19271. ))
  19272. characterMakers.push(() => makeCharacter(
  19273. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19274. {
  19275. front: {
  19276. height: math.unit(26, "inches"),
  19277. weight: math.unit(35, "lb"),
  19278. name: "Front",
  19279. image: {
  19280. source: "./media/characters/lyla/front.svg",
  19281. bottom: 0.1
  19282. }
  19283. },
  19284. },
  19285. [
  19286. {
  19287. name: "Normal",
  19288. height: math.unit(3, "feet"),
  19289. default: true
  19290. },
  19291. ]
  19292. ))
  19293. characterMakers.push(() => makeCharacter(
  19294. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19295. {
  19296. side: {
  19297. height: math.unit(1.8, "feet"),
  19298. weight: math.unit(44, "lb"),
  19299. name: "Side",
  19300. image: {
  19301. source: "./media/characters/perseus/side.svg",
  19302. bottom: 0.21
  19303. }
  19304. },
  19305. },
  19306. [
  19307. {
  19308. name: "Normal",
  19309. height: math.unit(1.8, "feet"),
  19310. default: true
  19311. },
  19312. ]
  19313. ))
  19314. characterMakers.push(() => makeCharacter(
  19315. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19316. {
  19317. side: {
  19318. height: math.unit(4 + 2 / 12, "feet"),
  19319. weight: math.unit(20, "lb"),
  19320. name: "Side",
  19321. image: {
  19322. source: "./media/characters/remus/side.svg"
  19323. }
  19324. },
  19325. },
  19326. [
  19327. {
  19328. name: "Normal",
  19329. height: math.unit(4 + 2 / 12, "feet"),
  19330. default: true
  19331. },
  19332. ]
  19333. ))
  19334. characterMakers.push(() => makeCharacter(
  19335. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19336. {
  19337. front: {
  19338. height: math.unit(4 + 11 / 12, "feet"),
  19339. weight: math.unit(114, "lb"),
  19340. name: "Front",
  19341. image: {
  19342. source: "./media/characters/raf/front.svg",
  19343. extra: 1504/1339,
  19344. bottom: 26/1530
  19345. }
  19346. },
  19347. side: {
  19348. height: math.unit(4 + 11 / 12, "feet"),
  19349. weight: math.unit(114, "lb"),
  19350. name: "Side",
  19351. image: {
  19352. source: "./media/characters/raf/side.svg",
  19353. extra: 1466/1316,
  19354. bottom: 29/1495
  19355. }
  19356. },
  19357. paw: {
  19358. height: math.unit(1.45, "feet"),
  19359. name: "Paw",
  19360. image: {
  19361. source: "./media/characters/raf/paw.svg"
  19362. },
  19363. extraAttributes: {
  19364. "toeSize": {
  19365. name: "Toe Size",
  19366. power: 2,
  19367. type: "area",
  19368. base: math.unit(0.004, "m^2")
  19369. },
  19370. "padSize": {
  19371. name: "Pad Size",
  19372. power: 2,
  19373. type: "area",
  19374. base: math.unit(0.04, "m^2")
  19375. },
  19376. "footSize": {
  19377. name: "Foot Size",
  19378. power: 2,
  19379. type: "area",
  19380. base: math.unit(0.08, "m^2")
  19381. },
  19382. }
  19383. },
  19384. },
  19385. [
  19386. {
  19387. name: "Micro",
  19388. height: math.unit(2, "inches")
  19389. },
  19390. {
  19391. name: "Normal",
  19392. height: math.unit(4 + 11 / 12, "feet"),
  19393. default: true
  19394. },
  19395. {
  19396. name: "Macro",
  19397. height: math.unit(70, "feet")
  19398. },
  19399. ]
  19400. ))
  19401. characterMakers.push(() => makeCharacter(
  19402. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19403. {
  19404. front: {
  19405. height: math.unit(1.5, "meters"),
  19406. weight: math.unit(68, "kg"),
  19407. name: "Front",
  19408. image: {
  19409. source: "./media/characters/liam-einarr/front.svg",
  19410. extra: 2822 / 2666
  19411. }
  19412. },
  19413. back: {
  19414. height: math.unit(1.5, "meters"),
  19415. weight: math.unit(68, "kg"),
  19416. name: "Back",
  19417. image: {
  19418. source: "./media/characters/liam-einarr/back.svg",
  19419. extra: 2822 / 2666,
  19420. bottom: 0.015
  19421. }
  19422. },
  19423. },
  19424. [
  19425. {
  19426. name: "Normal",
  19427. height: math.unit(1.5, "meters"),
  19428. default: true
  19429. },
  19430. {
  19431. name: "Macro",
  19432. height: math.unit(150, "meters")
  19433. },
  19434. {
  19435. name: "Megamacro",
  19436. height: math.unit(35, "km")
  19437. },
  19438. ]
  19439. ))
  19440. characterMakers.push(() => makeCharacter(
  19441. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19442. {
  19443. front: {
  19444. height: math.unit(6, "feet"),
  19445. weight: math.unit(75, "kg"),
  19446. name: "Front",
  19447. image: {
  19448. source: "./media/characters/linda/front.svg",
  19449. extra: 930 / 874,
  19450. bottom: 0.004
  19451. }
  19452. },
  19453. },
  19454. [
  19455. {
  19456. name: "Normal",
  19457. height: math.unit(6, "feet"),
  19458. default: true
  19459. },
  19460. ]
  19461. ))
  19462. characterMakers.push(() => makeCharacter(
  19463. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19464. {
  19465. front: {
  19466. height: math.unit(6 + 8 / 12, "feet"),
  19467. weight: math.unit(220, "lb"),
  19468. name: "Front",
  19469. image: {
  19470. source: "./media/characters/caylex/front.svg",
  19471. extra: 821 / 772,
  19472. bottom: 0.07
  19473. }
  19474. },
  19475. back: {
  19476. height: math.unit(6 + 8 / 12, "feet"),
  19477. weight: math.unit(220, "lb"),
  19478. name: "Back",
  19479. image: {
  19480. source: "./media/characters/caylex/back.svg",
  19481. extra: 821 / 772,
  19482. bottom: 0.022
  19483. }
  19484. },
  19485. hand: {
  19486. height: math.unit(1.25, "feet"),
  19487. name: "Hand",
  19488. image: {
  19489. source: "./media/characters/caylex/hand.svg"
  19490. }
  19491. },
  19492. foot: {
  19493. height: math.unit(1.6, "feet"),
  19494. name: "Foot",
  19495. image: {
  19496. source: "./media/characters/caylex/foot.svg"
  19497. }
  19498. },
  19499. armored: {
  19500. height: math.unit(6 + 8 / 12, "feet"),
  19501. weight: math.unit(250, "lb"),
  19502. name: "Armored",
  19503. image: {
  19504. source: "./media/characters/caylex/armored.svg",
  19505. extra: 1420 / 1310,
  19506. bottom: 0.045
  19507. }
  19508. },
  19509. },
  19510. [
  19511. {
  19512. name: "Normal",
  19513. height: math.unit(6 + 8 / 12, "feet"),
  19514. default: true
  19515. },
  19516. {
  19517. name: "Normal+",
  19518. height: math.unit(12, "feet")
  19519. },
  19520. ]
  19521. ))
  19522. characterMakers.push(() => makeCharacter(
  19523. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19524. {
  19525. front: {
  19526. height: math.unit(7 + 6 / 12, "feet"),
  19527. weight: math.unit(288, "lb"),
  19528. name: "Front",
  19529. image: {
  19530. source: "./media/characters/alana/front.svg",
  19531. extra: 679 / 653,
  19532. bottom: 22.5 / 701
  19533. }
  19534. },
  19535. },
  19536. [
  19537. {
  19538. name: "Normal",
  19539. height: math.unit(7 + 6 / 12, "feet")
  19540. },
  19541. {
  19542. name: "Large",
  19543. height: math.unit(50, "feet")
  19544. },
  19545. {
  19546. name: "Macro",
  19547. height: math.unit(100, "feet"),
  19548. default: true
  19549. },
  19550. {
  19551. name: "Macro+",
  19552. height: math.unit(200, "feet")
  19553. },
  19554. ]
  19555. ))
  19556. characterMakers.push(() => makeCharacter(
  19557. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19558. {
  19559. front: {
  19560. height: math.unit(6 + 1 / 12, "feet"),
  19561. weight: math.unit(210, "lb"),
  19562. name: "Front",
  19563. image: {
  19564. source: "./media/characters/hasani/front.svg",
  19565. extra: 244 / 232,
  19566. bottom: 0.01
  19567. }
  19568. },
  19569. back: {
  19570. height: math.unit(6 + 1 / 12, "feet"),
  19571. weight: math.unit(210, "lb"),
  19572. name: "Back",
  19573. image: {
  19574. source: "./media/characters/hasani/back.svg",
  19575. extra: 244 / 232,
  19576. bottom: 0.01
  19577. }
  19578. },
  19579. },
  19580. [
  19581. {
  19582. name: "Normal",
  19583. height: math.unit(6 + 1 / 12, "feet")
  19584. },
  19585. {
  19586. name: "Macro",
  19587. height: math.unit(175, "feet"),
  19588. default: true
  19589. },
  19590. ]
  19591. ))
  19592. characterMakers.push(() => makeCharacter(
  19593. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19594. {
  19595. front: {
  19596. height: math.unit(1.82, "meters"),
  19597. weight: math.unit(140, "lb"),
  19598. name: "Front",
  19599. image: {
  19600. source: "./media/characters/nita/front.svg",
  19601. extra: 2473 / 2363,
  19602. bottom: 0.01
  19603. }
  19604. },
  19605. },
  19606. [
  19607. {
  19608. name: "Normal",
  19609. height: math.unit(1.82, "m")
  19610. },
  19611. {
  19612. name: "Macro",
  19613. height: math.unit(300, "m")
  19614. },
  19615. {
  19616. name: "Mistake Canon",
  19617. height: math.unit(0.5, "miles"),
  19618. default: true
  19619. },
  19620. {
  19621. name: "Big Mistake",
  19622. height: math.unit(13, "miles")
  19623. },
  19624. {
  19625. name: "Playing God",
  19626. height: math.unit(2450, "miles")
  19627. },
  19628. ]
  19629. ))
  19630. characterMakers.push(() => makeCharacter(
  19631. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19632. {
  19633. front: {
  19634. height: math.unit(4, "feet"),
  19635. weight: math.unit(120, "lb"),
  19636. name: "Front",
  19637. image: {
  19638. source: "./media/characters/shiriko/front.svg",
  19639. extra: 970/934,
  19640. bottom: 5/975
  19641. }
  19642. },
  19643. },
  19644. [
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(4, "feet"),
  19648. default: true
  19649. },
  19650. ]
  19651. ))
  19652. characterMakers.push(() => makeCharacter(
  19653. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19654. {
  19655. front: {
  19656. height: math.unit(6, "feet"),
  19657. name: "front",
  19658. image: {
  19659. source: "./media/characters/deja/front.svg",
  19660. extra: 926 / 840,
  19661. bottom: 0.07
  19662. }
  19663. },
  19664. },
  19665. [
  19666. {
  19667. name: "Planck Length",
  19668. height: math.unit(1.6e-35, "meters")
  19669. },
  19670. {
  19671. name: "Normal",
  19672. height: math.unit(30.48, "meters"),
  19673. default: true
  19674. },
  19675. {
  19676. name: "Universal",
  19677. height: math.unit(8.8e26, "meters")
  19678. },
  19679. ]
  19680. ))
  19681. characterMakers.push(() => makeCharacter(
  19682. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19683. {
  19684. side: {
  19685. height: math.unit(8, "feet"),
  19686. weight: math.unit(6300, "lb"),
  19687. name: "Side",
  19688. image: {
  19689. source: "./media/characters/anima/side.svg",
  19690. bottom: 0.035
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(8, "feet"),
  19698. default: true
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19704. {
  19705. front: {
  19706. height: math.unit(8, "feet"),
  19707. weight: math.unit(350, "lb"),
  19708. name: "Front",
  19709. image: {
  19710. source: "./media/characters/bianca/front.svg",
  19711. extra: 234 / 225,
  19712. bottom: 0.03
  19713. }
  19714. },
  19715. },
  19716. [
  19717. {
  19718. name: "Normal",
  19719. height: math.unit(8, "feet"),
  19720. default: true
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19726. {
  19727. front: {
  19728. height: math.unit(11 + 5/12, "feet"),
  19729. weight: math.unit(1200, "lb"),
  19730. name: "Front",
  19731. image: {
  19732. source: "./media/characters/adinia/front.svg",
  19733. extra: 1767/1641,
  19734. bottom: 44/1811
  19735. },
  19736. extraAttributes: {
  19737. "energyIntake": {
  19738. name: "Energy Intake",
  19739. power: 3,
  19740. type: "energy",
  19741. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19742. },
  19743. }
  19744. },
  19745. back: {
  19746. height: math.unit(11 + 5/12, "feet"),
  19747. weight: math.unit(1200, "lb"),
  19748. name: "Back",
  19749. image: {
  19750. source: "./media/characters/adinia/back.svg",
  19751. extra: 1834/1684,
  19752. bottom: 14/1848
  19753. },
  19754. extraAttributes: {
  19755. "energyIntake": {
  19756. name: "Energy Intake",
  19757. power: 3,
  19758. type: "energy",
  19759. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19760. },
  19761. }
  19762. },
  19763. maw: {
  19764. height: math.unit(3.79, "feet"),
  19765. name: "Maw",
  19766. image: {
  19767. source: "./media/characters/adinia/maw.svg"
  19768. }
  19769. },
  19770. rump: {
  19771. height: math.unit(4.6, "feet"),
  19772. name: "Rump",
  19773. image: {
  19774. source: "./media/characters/adinia/rump.svg"
  19775. }
  19776. },
  19777. },
  19778. [
  19779. {
  19780. name: "Normal",
  19781. height: math.unit(11 + 5 / 12, "feet"),
  19782. default: true
  19783. },
  19784. ]
  19785. ))
  19786. characterMakers.push(() => makeCharacter(
  19787. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19788. {
  19789. front: {
  19790. height: math.unit(3, "meters"),
  19791. weight: math.unit(200, "kg"),
  19792. name: "Front",
  19793. image: {
  19794. source: "./media/characters/lykasa/front.svg",
  19795. extra: 1076 / 976,
  19796. bottom: 0.06
  19797. }
  19798. },
  19799. },
  19800. [
  19801. {
  19802. name: "Normal",
  19803. height: math.unit(3, "meters")
  19804. },
  19805. {
  19806. name: "Kaiju",
  19807. height: math.unit(120, "meters"),
  19808. default: true
  19809. },
  19810. {
  19811. name: "Mega Kaiju",
  19812. height: math.unit(240, "km")
  19813. },
  19814. {
  19815. name: "Giga Kaiju",
  19816. height: math.unit(400, "megameters")
  19817. },
  19818. {
  19819. name: "Tera Kaiju",
  19820. height: math.unit(800, "gigameters")
  19821. },
  19822. {
  19823. name: "Kaiju Dragon Goddess",
  19824. height: math.unit(26, "zettaparsecs")
  19825. },
  19826. ]
  19827. ))
  19828. characterMakers.push(() => makeCharacter(
  19829. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19830. {
  19831. side: {
  19832. height: math.unit(283 / 124 * 6, "feet"),
  19833. weight: math.unit(35000, "lb"),
  19834. name: "Side",
  19835. image: {
  19836. source: "./media/characters/malfaren/side.svg",
  19837. extra: 1310/529,
  19838. bottom: 24/1334
  19839. }
  19840. },
  19841. front: {
  19842. height: math.unit(22.36, "feet"),
  19843. weight: math.unit(35000, "lb"),
  19844. name: "Front",
  19845. image: {
  19846. source: "./media/characters/malfaren/front.svg",
  19847. extra: 1237/1115,
  19848. bottom: 32/1269
  19849. }
  19850. },
  19851. maw: {
  19852. height: math.unit(6.9, "feet"),
  19853. name: "Maw",
  19854. image: {
  19855. source: "./media/characters/malfaren/maw.svg"
  19856. }
  19857. },
  19858. dick: {
  19859. height: math.unit(6.19, "feet"),
  19860. name: "Dick",
  19861. image: {
  19862. source: "./media/characters/malfaren/dick.svg"
  19863. }
  19864. },
  19865. eye: {
  19866. height: math.unit(0.69, "feet"),
  19867. name: "Eye",
  19868. image: {
  19869. source: "./media/characters/malfaren/eye.svg"
  19870. }
  19871. },
  19872. },
  19873. [
  19874. {
  19875. name: "Big",
  19876. height: math.unit(283 / 162 * 6, "feet"),
  19877. },
  19878. {
  19879. name: "Bigger",
  19880. height: math.unit(283 / 124 * 6, "feet")
  19881. },
  19882. {
  19883. name: "Massive",
  19884. height: math.unit(283 / 92 * 6, "feet"),
  19885. default: true
  19886. },
  19887. {
  19888. name: "👀💦",
  19889. height: math.unit(283 / 73 * 6, "feet"),
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19895. {
  19896. front: {
  19897. height: math.unit(1.7, "m"),
  19898. weight: math.unit(70, "kg"),
  19899. name: "Front",
  19900. image: {
  19901. source: "./media/characters/kernel/front.svg",
  19902. extra: 1960/1821,
  19903. bottom: 17/1977
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Nano",
  19910. height: math.unit(17, "micrometers")
  19911. },
  19912. {
  19913. name: "Micro",
  19914. height: math.unit(1.7, "mm")
  19915. },
  19916. {
  19917. name: "Small",
  19918. height: math.unit(1.7, "cm")
  19919. },
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(1.7, "m"),
  19923. default: true
  19924. },
  19925. ]
  19926. ))
  19927. characterMakers.push(() => makeCharacter(
  19928. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19929. {
  19930. front: {
  19931. height: math.unit(1.75, "meters"),
  19932. weight: math.unit(65, "kg"),
  19933. name: "Front",
  19934. image: {
  19935. source: "./media/characters/jayne-folest/front.svg",
  19936. extra: 2115 / 2007,
  19937. bottom: 0.02
  19938. }
  19939. },
  19940. back: {
  19941. height: math.unit(1.75, "meters"),
  19942. weight: math.unit(65, "kg"),
  19943. name: "Back",
  19944. image: {
  19945. source: "./media/characters/jayne-folest/back.svg",
  19946. extra: 2115 / 2007,
  19947. bottom: 0.005
  19948. }
  19949. },
  19950. frontClothed: {
  19951. height: math.unit(1.75, "meters"),
  19952. weight: math.unit(65, "kg"),
  19953. name: "Front (Clothed)",
  19954. image: {
  19955. source: "./media/characters/jayne-folest/front-clothed.svg",
  19956. extra: 2115 / 2007,
  19957. bottom: 0.035
  19958. }
  19959. },
  19960. hand: {
  19961. height: math.unit(1 / 1.260, "feet"),
  19962. name: "Hand",
  19963. image: {
  19964. source: "./media/characters/jayne-folest/hand.svg"
  19965. }
  19966. },
  19967. foot: {
  19968. height: math.unit(1 / 0.918, "feet"),
  19969. name: "Foot",
  19970. image: {
  19971. source: "./media/characters/jayne-folest/foot.svg"
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Micro",
  19978. height: math.unit(4, "cm")
  19979. },
  19980. {
  19981. name: "Normal",
  19982. height: math.unit(1.75, "meters")
  19983. },
  19984. {
  19985. name: "Macro",
  19986. height: math.unit(47.5, "meters"),
  19987. default: true
  19988. },
  19989. ]
  19990. ))
  19991. characterMakers.push(() => makeCharacter(
  19992. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19993. {
  19994. front: {
  19995. height: math.unit(180, "cm"),
  19996. weight: math.unit(70, "kg"),
  19997. name: "Front",
  19998. image: {
  19999. source: "./media/characters/algier/front.svg",
  20000. extra: 596 / 572,
  20001. bottom: 0.04
  20002. }
  20003. },
  20004. back: {
  20005. height: math.unit(180, "cm"),
  20006. weight: math.unit(70, "kg"),
  20007. name: "Back",
  20008. image: {
  20009. source: "./media/characters/algier/back.svg",
  20010. extra: 596 / 572,
  20011. bottom: 0.025
  20012. }
  20013. },
  20014. frontdressed: {
  20015. height: math.unit(180, "cm"),
  20016. weight: math.unit(150, "kg"),
  20017. name: "Front-dressed",
  20018. image: {
  20019. source: "./media/characters/algier/front-dressed.svg",
  20020. extra: 596 / 572,
  20021. bottom: 0.038
  20022. }
  20023. },
  20024. },
  20025. [
  20026. {
  20027. name: "Micro",
  20028. height: math.unit(5, "cm")
  20029. },
  20030. {
  20031. name: "Normal",
  20032. height: math.unit(180, "cm"),
  20033. default: true
  20034. },
  20035. {
  20036. name: "Macro",
  20037. height: math.unit(64, "m")
  20038. },
  20039. ]
  20040. ))
  20041. characterMakers.push(() => makeCharacter(
  20042. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20043. {
  20044. upright: {
  20045. height: math.unit(7, "feet"),
  20046. weight: math.unit(300, "lb"),
  20047. name: "Upright",
  20048. image: {
  20049. source: "./media/characters/pretzel/upright.svg",
  20050. extra: 534 / 522,
  20051. bottom: 0.065
  20052. }
  20053. },
  20054. sprawling: {
  20055. height: math.unit(3.75, "feet"),
  20056. weight: math.unit(300, "lb"),
  20057. name: "Sprawling",
  20058. image: {
  20059. source: "./media/characters/pretzel/sprawling.svg",
  20060. extra: 314 / 281,
  20061. bottom: 0.1
  20062. }
  20063. },
  20064. tongue: {
  20065. height: math.unit(2, "feet"),
  20066. name: "Tongue",
  20067. image: {
  20068. source: "./media/characters/pretzel/tongue.svg"
  20069. }
  20070. },
  20071. },
  20072. [
  20073. {
  20074. name: "Normal",
  20075. height: math.unit(7, "feet"),
  20076. default: true
  20077. },
  20078. {
  20079. name: "Oversized",
  20080. height: math.unit(15, "feet")
  20081. },
  20082. {
  20083. name: "Huge",
  20084. height: math.unit(30, "feet")
  20085. },
  20086. {
  20087. name: "Macro",
  20088. height: math.unit(250, "feet")
  20089. },
  20090. ]
  20091. ))
  20092. characterMakers.push(() => makeCharacter(
  20093. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20094. {
  20095. sideFront: {
  20096. height: math.unit(5 + 2 / 12, "feet"),
  20097. weight: math.unit(120, "lb"),
  20098. name: "Front Side",
  20099. image: {
  20100. source: "./media/characters/roxi/side-front.svg",
  20101. extra: 2924 / 2717,
  20102. bottom: 0.08
  20103. }
  20104. },
  20105. sideBack: {
  20106. height: math.unit(5 + 2 / 12, "feet"),
  20107. weight: math.unit(120, "lb"),
  20108. name: "Back Side",
  20109. image: {
  20110. source: "./media/characters/roxi/side-back.svg",
  20111. extra: 2904 / 2693,
  20112. bottom: 0.06
  20113. }
  20114. },
  20115. front: {
  20116. height: math.unit(5 + 2 / 12, "feet"),
  20117. weight: math.unit(120, "lb"),
  20118. name: "Front",
  20119. image: {
  20120. source: "./media/characters/roxi/front.svg",
  20121. extra: 2028 / 1907,
  20122. bottom: 0.01
  20123. }
  20124. },
  20125. frontAlt: {
  20126. height: math.unit(5 + 2 / 12, "feet"),
  20127. weight: math.unit(120, "lb"),
  20128. name: "Front (Alt)",
  20129. image: {
  20130. source: "./media/characters/roxi/front-alt.svg",
  20131. extra: 1828 / 1798,
  20132. bottom: 0.01
  20133. }
  20134. },
  20135. sitting: {
  20136. height: math.unit(2.8, "feet"),
  20137. weight: math.unit(120, "lb"),
  20138. name: "Sitting",
  20139. image: {
  20140. source: "./media/characters/roxi/sitting.svg",
  20141. extra: 2660 / 2462,
  20142. bottom: 0.1
  20143. }
  20144. },
  20145. },
  20146. [
  20147. {
  20148. name: "Normal",
  20149. height: math.unit(5 + 2 / 12, "feet"),
  20150. default: true
  20151. },
  20152. ]
  20153. ))
  20154. characterMakers.push(() => makeCharacter(
  20155. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20156. {
  20157. side: {
  20158. height: math.unit(55, "feet"),
  20159. weight: math.unit(153, "tons"),
  20160. name: "Side",
  20161. image: {
  20162. source: "./media/characters/shadow/side.svg",
  20163. extra: 701 / 628,
  20164. bottom: 0.02
  20165. }
  20166. },
  20167. flying: {
  20168. height: math.unit(145, "feet"),
  20169. weight: math.unit(153, "tons"),
  20170. name: "Flying",
  20171. image: {
  20172. source: "./media/characters/shadow/flying.svg"
  20173. }
  20174. },
  20175. },
  20176. [
  20177. {
  20178. name: "Normal",
  20179. height: math.unit(55, "feet"),
  20180. default: true
  20181. },
  20182. ]
  20183. ))
  20184. characterMakers.push(() => makeCharacter(
  20185. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20186. {
  20187. front: {
  20188. height: math.unit(6, "feet"),
  20189. weight: math.unit(200, "lb"),
  20190. name: "Front",
  20191. image: {
  20192. source: "./media/characters/marcie/front.svg",
  20193. extra: 960 / 876,
  20194. bottom: 58 / 1017.87
  20195. }
  20196. },
  20197. },
  20198. [
  20199. {
  20200. name: "Macro",
  20201. height: math.unit(1, "mile"),
  20202. default: true
  20203. },
  20204. ]
  20205. ))
  20206. characterMakers.push(() => makeCharacter(
  20207. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20208. {
  20209. front: {
  20210. height: math.unit(7, "feet"),
  20211. weight: math.unit(200, "lb"),
  20212. name: "Front",
  20213. image: {
  20214. source: "./media/characters/kachina/front.svg",
  20215. extra: 3206/2764,
  20216. bottom: 140/3346
  20217. }
  20218. },
  20219. },
  20220. [
  20221. {
  20222. name: "Normal",
  20223. height: math.unit(7, "feet"),
  20224. default: true
  20225. },
  20226. ]
  20227. ))
  20228. characterMakers.push(() => makeCharacter(
  20229. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20230. {
  20231. looking: {
  20232. height: math.unit(2, "meters"),
  20233. weight: math.unit(300, "kg"),
  20234. name: "Looking",
  20235. image: {
  20236. source: "./media/characters/kash/looking.svg",
  20237. extra: 474 / 344,
  20238. bottom: 0.03
  20239. }
  20240. },
  20241. side: {
  20242. height: math.unit(2, "meters"),
  20243. weight: math.unit(300, "kg"),
  20244. name: "Side",
  20245. image: {
  20246. source: "./media/characters/kash/side.svg",
  20247. extra: 302 / 251,
  20248. bottom: 0.03
  20249. }
  20250. },
  20251. front: {
  20252. height: math.unit(2, "meters"),
  20253. weight: math.unit(300, "kg"),
  20254. name: "Front",
  20255. image: {
  20256. source: "./media/characters/kash/front.svg",
  20257. extra: 495 / 360,
  20258. bottom: 0.015
  20259. }
  20260. },
  20261. },
  20262. [
  20263. {
  20264. name: "Normal",
  20265. height: math.unit(2, "meters"),
  20266. default: true
  20267. },
  20268. {
  20269. name: "Big",
  20270. height: math.unit(3, "meters")
  20271. },
  20272. {
  20273. name: "Large",
  20274. height: math.unit(5, "meters")
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20280. {
  20281. feeding: {
  20282. height: math.unit(6.7, "feet"),
  20283. weight: math.unit(350, "lb"),
  20284. name: "Feeding",
  20285. image: {
  20286. source: "./media/characters/lalim/feeding.svg",
  20287. }
  20288. },
  20289. },
  20290. [
  20291. {
  20292. name: "Normal",
  20293. height: math.unit(6.7, "feet"),
  20294. default: true
  20295. },
  20296. ]
  20297. ))
  20298. characterMakers.push(() => makeCharacter(
  20299. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20300. {
  20301. front: {
  20302. height: math.unit(9.5, "feet"),
  20303. weight: math.unit(600, "lb"),
  20304. name: "Front",
  20305. image: {
  20306. source: "./media/characters/de'vout/front.svg",
  20307. extra: 1443 / 1328,
  20308. bottom: 0.025
  20309. }
  20310. },
  20311. back: {
  20312. height: math.unit(9.5, "feet"),
  20313. weight: math.unit(600, "lb"),
  20314. name: "Back",
  20315. image: {
  20316. source: "./media/characters/de'vout/back.svg",
  20317. extra: 1443 / 1328
  20318. }
  20319. },
  20320. frontDressed: {
  20321. height: math.unit(9.5, "feet"),
  20322. weight: math.unit(600, "lb"),
  20323. name: "Front (Dressed",
  20324. image: {
  20325. source: "./media/characters/de'vout/front-dressed.svg",
  20326. extra: 1443 / 1328,
  20327. bottom: 0.025
  20328. }
  20329. },
  20330. backDressed: {
  20331. height: math.unit(9.5, "feet"),
  20332. weight: math.unit(600, "lb"),
  20333. name: "Back (Dressed",
  20334. image: {
  20335. source: "./media/characters/de'vout/back-dressed.svg",
  20336. extra: 1443 / 1328
  20337. }
  20338. },
  20339. },
  20340. [
  20341. {
  20342. name: "Normal",
  20343. height: math.unit(9.5, "feet"),
  20344. default: true
  20345. },
  20346. ]
  20347. ))
  20348. characterMakers.push(() => makeCharacter(
  20349. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20350. {
  20351. front: {
  20352. height: math.unit(8, "feet"),
  20353. weight: math.unit(225, "lb"),
  20354. name: "Front",
  20355. image: {
  20356. source: "./media/characters/talana/front.svg",
  20357. extra: 1410 / 1300,
  20358. bottom: 0.015
  20359. }
  20360. },
  20361. frontDressed: {
  20362. height: math.unit(8, "feet"),
  20363. weight: math.unit(225, "lb"),
  20364. name: "Front (Dressed",
  20365. image: {
  20366. source: "./media/characters/talana/front-dressed.svg",
  20367. extra: 1410 / 1300,
  20368. bottom: 0.015
  20369. }
  20370. },
  20371. },
  20372. [
  20373. {
  20374. name: "Normal",
  20375. height: math.unit(8, "feet"),
  20376. default: true
  20377. },
  20378. ]
  20379. ))
  20380. characterMakers.push(() => makeCharacter(
  20381. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20382. {
  20383. side: {
  20384. height: math.unit(7.2, "feet"),
  20385. weight: math.unit(150, "lb"),
  20386. name: "Side",
  20387. image: {
  20388. source: "./media/characters/xeauvok/side.svg",
  20389. extra: 1975 / 1523,
  20390. bottom: 0.07
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Normal",
  20397. height: math.unit(7.2, "feet"),
  20398. default: true
  20399. },
  20400. ]
  20401. ))
  20402. characterMakers.push(() => makeCharacter(
  20403. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20404. {
  20405. side: {
  20406. height: math.unit(4, "meters"),
  20407. weight: math.unit(2200, "kg"),
  20408. name: "Side",
  20409. image: {
  20410. source: "./media/characters/zara/side.svg",
  20411. extra: 765/744,
  20412. bottom: 156/921
  20413. }
  20414. },
  20415. },
  20416. [
  20417. {
  20418. name: "Normal",
  20419. height: math.unit(4, "meters"),
  20420. default: true
  20421. },
  20422. ]
  20423. ))
  20424. characterMakers.push(() => makeCharacter(
  20425. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20426. {
  20427. side: {
  20428. height: math.unit(6, "feet"),
  20429. weight: math.unit(150, "lb"),
  20430. name: "Side",
  20431. image: {
  20432. source: "./media/characters/richard-dragon/side.svg",
  20433. extra: 845 / 340,
  20434. bottom: 0.017
  20435. }
  20436. },
  20437. maw: {
  20438. height: math.unit(2.97, "feet"),
  20439. name: "Maw",
  20440. image: {
  20441. source: "./media/characters/richard-dragon/maw.svg"
  20442. }
  20443. },
  20444. },
  20445. [
  20446. ]
  20447. ))
  20448. characterMakers.push(() => makeCharacter(
  20449. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20450. {
  20451. front: {
  20452. height: math.unit(4, "feet"),
  20453. weight: math.unit(100, "lb"),
  20454. name: "Front",
  20455. image: {
  20456. source: "./media/characters/richard-smeargle/front.svg",
  20457. extra: 2952 / 2820,
  20458. bottom: 0.028
  20459. }
  20460. },
  20461. },
  20462. [
  20463. {
  20464. name: "Normal",
  20465. height: math.unit(4, "feet"),
  20466. default: true
  20467. },
  20468. {
  20469. name: "Dynamax",
  20470. height: math.unit(20, "meters")
  20471. },
  20472. ]
  20473. ))
  20474. characterMakers.push(() => makeCharacter(
  20475. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20476. {
  20477. front: {
  20478. height: math.unit(6, "feet"),
  20479. weight: math.unit(110, "lb"),
  20480. name: "Front",
  20481. image: {
  20482. source: "./media/characters/klay/front.svg",
  20483. extra: 962 / 883,
  20484. bottom: 0.04
  20485. }
  20486. },
  20487. back: {
  20488. height: math.unit(6, "feet"),
  20489. weight: math.unit(110, "lb"),
  20490. name: "Back",
  20491. image: {
  20492. source: "./media/characters/klay/back.svg",
  20493. extra: 962 / 883
  20494. }
  20495. },
  20496. beans: {
  20497. height: math.unit(1.15, "feet"),
  20498. name: "Beans",
  20499. image: {
  20500. source: "./media/characters/klay/beans.svg"
  20501. }
  20502. },
  20503. },
  20504. [
  20505. {
  20506. name: "Micro",
  20507. height: math.unit(6, "inches")
  20508. },
  20509. {
  20510. name: "Mini",
  20511. height: math.unit(3, "feet")
  20512. },
  20513. {
  20514. name: "Normal",
  20515. height: math.unit(6, "feet"),
  20516. default: true
  20517. },
  20518. {
  20519. name: "Big",
  20520. height: math.unit(25, "feet")
  20521. },
  20522. {
  20523. name: "Macro",
  20524. height: math.unit(100, "feet")
  20525. },
  20526. {
  20527. name: "Megamacro",
  20528. height: math.unit(400, "feet")
  20529. },
  20530. ]
  20531. ))
  20532. characterMakers.push(() => makeCharacter(
  20533. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20534. {
  20535. front: {
  20536. height: math.unit(6, "feet"),
  20537. weight: math.unit(160, "lb"),
  20538. name: "Front",
  20539. image: {
  20540. source: "./media/characters/marcus/front.svg",
  20541. extra: 734 / 676,
  20542. bottom: 0.03
  20543. }
  20544. },
  20545. },
  20546. [
  20547. {
  20548. name: "Little",
  20549. height: math.unit(6, "feet")
  20550. },
  20551. {
  20552. name: "Normal",
  20553. height: math.unit(110, "feet"),
  20554. default: true
  20555. },
  20556. {
  20557. name: "Macro",
  20558. height: math.unit(250, "feet")
  20559. },
  20560. {
  20561. name: "Megamacro",
  20562. height: math.unit(1000, "feet")
  20563. },
  20564. ]
  20565. ))
  20566. characterMakers.push(() => makeCharacter(
  20567. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20568. {
  20569. front: {
  20570. height: math.unit(7, "feet"),
  20571. weight: math.unit(275, "lb"),
  20572. name: "Front",
  20573. image: {
  20574. source: "./media/characters/claude-delroute/front.svg",
  20575. extra: 902/827,
  20576. bottom: 26/928
  20577. }
  20578. },
  20579. side: {
  20580. height: math.unit(7, "feet"),
  20581. weight: math.unit(275, "lb"),
  20582. name: "Side",
  20583. image: {
  20584. source: "./media/characters/claude-delroute/side.svg",
  20585. extra: 908/853,
  20586. bottom: 16/924
  20587. }
  20588. },
  20589. back: {
  20590. height: math.unit(7, "feet"),
  20591. weight: math.unit(275, "lb"),
  20592. name: "Back",
  20593. image: {
  20594. source: "./media/characters/claude-delroute/back.svg",
  20595. extra: 911/829,
  20596. bottom: 18/929
  20597. }
  20598. },
  20599. maw: {
  20600. height: math.unit(0.6407, "meters"),
  20601. name: "Maw",
  20602. image: {
  20603. source: "./media/characters/claude-delroute/maw.svg"
  20604. }
  20605. },
  20606. },
  20607. [
  20608. {
  20609. name: "Normal",
  20610. height: math.unit(7, "feet"),
  20611. default: true
  20612. },
  20613. {
  20614. name: "Lorge",
  20615. height: math.unit(20, "feet")
  20616. },
  20617. ]
  20618. ))
  20619. characterMakers.push(() => makeCharacter(
  20620. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20621. {
  20622. front: {
  20623. height: math.unit(8 + 4 / 12, "feet"),
  20624. weight: math.unit(600, "lb"),
  20625. name: "Front",
  20626. image: {
  20627. source: "./media/characters/dragonien/front.svg",
  20628. extra: 100 / 94,
  20629. bottom: 3.3 / 103.3445
  20630. }
  20631. },
  20632. back: {
  20633. height: math.unit(8 + 4 / 12, "feet"),
  20634. weight: math.unit(600, "lb"),
  20635. name: "Back",
  20636. image: {
  20637. source: "./media/characters/dragonien/back.svg",
  20638. extra: 776 / 746,
  20639. bottom: 6.4 / 782.0616
  20640. }
  20641. },
  20642. foot: {
  20643. height: math.unit(1.54, "feet"),
  20644. name: "Foot",
  20645. image: {
  20646. source: "./media/characters/dragonien/foot.svg",
  20647. }
  20648. },
  20649. },
  20650. [
  20651. {
  20652. name: "Normal",
  20653. height: math.unit(8 + 4 / 12, "feet"),
  20654. default: true
  20655. },
  20656. {
  20657. name: "Macro",
  20658. height: math.unit(200, "feet")
  20659. },
  20660. {
  20661. name: "Megamacro",
  20662. height: math.unit(1, "mile")
  20663. },
  20664. {
  20665. name: "Gigamacro",
  20666. height: math.unit(1000, "miles")
  20667. },
  20668. ]
  20669. ))
  20670. characterMakers.push(() => makeCharacter(
  20671. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20672. {
  20673. front: {
  20674. height: math.unit(5 + 2 / 12, "feet"),
  20675. weight: math.unit(110, "lb"),
  20676. name: "Front",
  20677. image: {
  20678. source: "./media/characters/desta/front.svg",
  20679. extra: 767 / 726,
  20680. bottom: 11.7 / 779
  20681. }
  20682. },
  20683. back: {
  20684. height: math.unit(5 + 2 / 12, "feet"),
  20685. weight: math.unit(110, "lb"),
  20686. name: "Back",
  20687. image: {
  20688. source: "./media/characters/desta/back.svg",
  20689. extra: 777 / 728,
  20690. bottom: 6 / 784
  20691. }
  20692. },
  20693. frontAlt: {
  20694. height: math.unit(5 + 2 / 12, "feet"),
  20695. weight: math.unit(110, "lb"),
  20696. name: "Front",
  20697. image: {
  20698. source: "./media/characters/desta/front-alt.svg",
  20699. extra: 1482 / 1417
  20700. }
  20701. },
  20702. side: {
  20703. height: math.unit(5 + 2 / 12, "feet"),
  20704. weight: math.unit(110, "lb"),
  20705. name: "Side",
  20706. image: {
  20707. source: "./media/characters/desta/side.svg",
  20708. extra: 2579 / 2491,
  20709. bottom: 0.053
  20710. }
  20711. },
  20712. },
  20713. [
  20714. {
  20715. name: "Micro",
  20716. height: math.unit(6, "inches")
  20717. },
  20718. {
  20719. name: "Normal",
  20720. height: math.unit(5 + 2 / 12, "feet"),
  20721. default: true
  20722. },
  20723. {
  20724. name: "Macro",
  20725. height: math.unit(62, "feet")
  20726. },
  20727. {
  20728. name: "Megamacro",
  20729. height: math.unit(1800, "feet")
  20730. },
  20731. ]
  20732. ))
  20733. characterMakers.push(() => makeCharacter(
  20734. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20735. {
  20736. front: {
  20737. height: math.unit(10, "feet"),
  20738. weight: math.unit(700, "lb"),
  20739. name: "Front",
  20740. image: {
  20741. source: "./media/characters/storm-alystar/front.svg",
  20742. extra: 2112 / 1898,
  20743. bottom: 0.034
  20744. }
  20745. },
  20746. },
  20747. [
  20748. {
  20749. name: "Micro",
  20750. height: math.unit(3.5, "inches")
  20751. },
  20752. {
  20753. name: "Normal",
  20754. height: math.unit(10, "feet"),
  20755. default: true
  20756. },
  20757. {
  20758. name: "Macro",
  20759. height: math.unit(400, "feet")
  20760. },
  20761. {
  20762. name: "Deific",
  20763. height: math.unit(60, "miles")
  20764. },
  20765. ]
  20766. ))
  20767. characterMakers.push(() => makeCharacter(
  20768. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20769. {
  20770. front: {
  20771. height: math.unit(2.35, "meters"),
  20772. weight: math.unit(119, "kg"),
  20773. name: "Front",
  20774. image: {
  20775. source: "./media/characters/ilia/front.svg",
  20776. extra: 1285 / 1255,
  20777. bottom: 0.06
  20778. }
  20779. },
  20780. },
  20781. [
  20782. {
  20783. name: "Normal",
  20784. height: math.unit(2.35, "meters")
  20785. },
  20786. {
  20787. name: "Macro",
  20788. height: math.unit(140, "meters"),
  20789. default: true
  20790. },
  20791. {
  20792. name: "Megamacro",
  20793. height: math.unit(100, "miles")
  20794. },
  20795. ]
  20796. ))
  20797. characterMakers.push(() => makeCharacter(
  20798. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20799. {
  20800. front: {
  20801. height: math.unit(6 + 5 / 12, "feet"),
  20802. weight: math.unit(190, "lb"),
  20803. name: "Front",
  20804. image: {
  20805. source: "./media/characters/kingdead/front.svg",
  20806. extra: 1228 / 1177
  20807. }
  20808. },
  20809. },
  20810. [
  20811. {
  20812. name: "Micro",
  20813. height: math.unit(7, "inches")
  20814. },
  20815. {
  20816. name: "Normal",
  20817. height: math.unit(6 + 5 / 12, "feet")
  20818. },
  20819. {
  20820. name: "Macro",
  20821. height: math.unit(150, "feet"),
  20822. default: true
  20823. },
  20824. {
  20825. name: "Megamacro",
  20826. height: math.unit(200, "miles")
  20827. },
  20828. ]
  20829. ))
  20830. characterMakers.push(() => makeCharacter(
  20831. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20832. {
  20833. front: {
  20834. height: math.unit(8, "feet"),
  20835. weight: math.unit(600, "lb"),
  20836. name: "Front",
  20837. image: {
  20838. source: "./media/characters/kyrehx/front.svg",
  20839. extra: 1195 / 1095,
  20840. bottom: 0.034
  20841. }
  20842. },
  20843. },
  20844. [
  20845. {
  20846. name: "Micro",
  20847. height: math.unit(2, "inches")
  20848. },
  20849. {
  20850. name: "Normal",
  20851. height: math.unit(8, "feet"),
  20852. default: true
  20853. },
  20854. {
  20855. name: "Macro",
  20856. height: math.unit(255, "feet")
  20857. },
  20858. ]
  20859. ))
  20860. characterMakers.push(() => makeCharacter(
  20861. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20862. {
  20863. front: {
  20864. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20865. weight: math.unit(184, "lb"),
  20866. name: "Front",
  20867. image: {
  20868. source: "./media/characters/xang/front.svg",
  20869. extra: 845 / 755
  20870. }
  20871. },
  20872. },
  20873. [
  20874. {
  20875. name: "Normal",
  20876. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20877. default: true
  20878. },
  20879. {
  20880. name: "Macro",
  20881. height: math.unit(0.935 * 146, "feet")
  20882. },
  20883. {
  20884. name: "Megamacro",
  20885. height: math.unit(0.935 * 3, "miles")
  20886. },
  20887. ]
  20888. ))
  20889. characterMakers.push(() => makeCharacter(
  20890. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20891. {
  20892. frontDressed: {
  20893. height: math.unit(5 + 7 / 12, "feet"),
  20894. weight: math.unit(140, "lb"),
  20895. name: "Front (Dressed)",
  20896. image: {
  20897. source: "./media/characters/doc-weardno/front-dressed.svg",
  20898. extra: 263 / 234
  20899. }
  20900. },
  20901. backDressed: {
  20902. height: math.unit(5 + 7 / 12, "feet"),
  20903. weight: math.unit(140, "lb"),
  20904. name: "Back (Dressed)",
  20905. image: {
  20906. source: "./media/characters/doc-weardno/back-dressed.svg",
  20907. extra: 266 / 238
  20908. }
  20909. },
  20910. front: {
  20911. height: math.unit(5 + 7 / 12, "feet"),
  20912. weight: math.unit(140, "lb"),
  20913. name: "Front",
  20914. image: {
  20915. source: "./media/characters/doc-weardno/front.svg",
  20916. extra: 254 / 233
  20917. }
  20918. },
  20919. },
  20920. [
  20921. {
  20922. name: "Micro",
  20923. height: math.unit(3, "inches")
  20924. },
  20925. {
  20926. name: "Normal",
  20927. height: math.unit(5 + 7 / 12, "feet"),
  20928. default: true
  20929. },
  20930. {
  20931. name: "Macro",
  20932. height: math.unit(25, "feet")
  20933. },
  20934. {
  20935. name: "Megamacro",
  20936. height: math.unit(2, "miles")
  20937. },
  20938. ]
  20939. ))
  20940. characterMakers.push(() => makeCharacter(
  20941. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20942. {
  20943. front: {
  20944. height: math.unit(6 + 2 / 12, "feet"),
  20945. weight: math.unit(153, "lb"),
  20946. name: "Front",
  20947. image: {
  20948. source: "./media/characters/seth-whilst/front.svg",
  20949. bottom: 0.07
  20950. }
  20951. },
  20952. },
  20953. [
  20954. {
  20955. name: "Micro",
  20956. height: math.unit(5, "inches")
  20957. },
  20958. {
  20959. name: "Normal",
  20960. height: math.unit(6 + 2 / 12, "feet"),
  20961. default: true
  20962. },
  20963. ]
  20964. ))
  20965. characterMakers.push(() => makeCharacter(
  20966. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20967. {
  20968. front: {
  20969. height: math.unit(3, "inches"),
  20970. weight: math.unit(8, "grams"),
  20971. name: "Front",
  20972. image: {
  20973. source: "./media/characters/pocket-jabari/front.svg",
  20974. extra: 1024 / 974,
  20975. bottom: 0.039
  20976. }
  20977. },
  20978. },
  20979. [
  20980. {
  20981. name: "Minimicro",
  20982. height: math.unit(8, "mm")
  20983. },
  20984. {
  20985. name: "Micro",
  20986. height: math.unit(3, "inches"),
  20987. default: true
  20988. },
  20989. {
  20990. name: "Normal",
  20991. height: math.unit(3, "feet")
  20992. },
  20993. ]
  20994. ))
  20995. characterMakers.push(() => makeCharacter(
  20996. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20997. {
  20998. frontDressed: {
  20999. height: math.unit(15, "feet"),
  21000. weight: math.unit(3280, "lb"),
  21001. name: "Front (Dressed)",
  21002. image: {
  21003. source: "./media/characters/sapphy/front-dressed.svg",
  21004. extra: 1951/1654,
  21005. bottom: 194/2145
  21006. },
  21007. form: "anthro",
  21008. default: true
  21009. },
  21010. backDressed: {
  21011. height: math.unit(15, "feet"),
  21012. weight: math.unit(3280, "lb"),
  21013. name: "Back (Dressed)",
  21014. image: {
  21015. source: "./media/characters/sapphy/back-dressed.svg",
  21016. extra: 2058/1918,
  21017. bottom: 125/2183
  21018. },
  21019. form: "anthro"
  21020. },
  21021. frontNude: {
  21022. height: math.unit(15, "feet"),
  21023. weight: math.unit(3280, "lb"),
  21024. name: "Front (Nude)",
  21025. image: {
  21026. source: "./media/characters/sapphy/front-nude.svg",
  21027. extra: 1951/1654,
  21028. bottom: 194/2145
  21029. },
  21030. form: "anthro"
  21031. },
  21032. backNude: {
  21033. height: math.unit(15, "feet"),
  21034. weight: math.unit(3280, "lb"),
  21035. name: "Back (Nude)",
  21036. image: {
  21037. source: "./media/characters/sapphy/back-nude.svg",
  21038. extra: 2058/1918,
  21039. bottom: 125/2183
  21040. },
  21041. form: "anthro"
  21042. },
  21043. full: {
  21044. height: math.unit(15, "feet"),
  21045. weight: math.unit(3280, "lb"),
  21046. name: "Full",
  21047. image: {
  21048. source: "./media/characters/sapphy/full.svg",
  21049. extra: 1396/1317,
  21050. bottom: 44/1440
  21051. },
  21052. form: "anthro"
  21053. },
  21054. dick: {
  21055. height: math.unit(3.8, "feet"),
  21056. name: "Dick",
  21057. image: {
  21058. source: "./media/characters/sapphy/dick.svg"
  21059. },
  21060. form: "anthro"
  21061. },
  21062. feral: {
  21063. height: math.unit(35, "feet"),
  21064. weight: math.unit(160, "tons"),
  21065. name: "Feral",
  21066. image: {
  21067. source: "./media/characters/sapphy/feral.svg",
  21068. extra: 1050/573,
  21069. bottom: 60/1110
  21070. },
  21071. form: "feral",
  21072. default: true
  21073. },
  21074. },
  21075. [
  21076. {
  21077. name: "Normal",
  21078. height: math.unit(15, "feet"),
  21079. form: "anthro"
  21080. },
  21081. {
  21082. name: "Casual Macro",
  21083. height: math.unit(120, "feet"),
  21084. form: "anthro"
  21085. },
  21086. {
  21087. name: "Macro",
  21088. height: math.unit(2150, "feet"),
  21089. default: true,
  21090. form: "anthro"
  21091. },
  21092. {
  21093. name: "Megamacro",
  21094. height: math.unit(8, "miles"),
  21095. form: "anthro"
  21096. },
  21097. {
  21098. name: "Galaxy Mom",
  21099. height: math.unit(6, "megalightyears"),
  21100. form: "anthro"
  21101. },
  21102. {
  21103. name: "Normal",
  21104. height: math.unit(35, "feet"),
  21105. form: "feral",
  21106. default: true
  21107. },
  21108. {
  21109. name: "Macro",
  21110. height: math.unit(300, "feet"),
  21111. form: "feral"
  21112. },
  21113. {
  21114. name: "Galaxy Mom",
  21115. height: math.unit(10, "megalightyears"),
  21116. form: "feral"
  21117. },
  21118. ],
  21119. {
  21120. "anthro": {
  21121. name: "Anthro",
  21122. default: true
  21123. },
  21124. "feral": {
  21125. name: "Feral"
  21126. }
  21127. }
  21128. ))
  21129. characterMakers.push(() => makeCharacter(
  21130. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21131. {
  21132. hyenaFront: {
  21133. height: math.unit(6, "feet"),
  21134. weight: math.unit(190, "lb"),
  21135. name: "Front",
  21136. image: {
  21137. source: "./media/characters/kiro/hyena-front.svg",
  21138. extra: 927/839,
  21139. bottom: 91/1018
  21140. },
  21141. form: "hyena",
  21142. default: true
  21143. },
  21144. front: {
  21145. height: math.unit(6, "feet"),
  21146. weight: math.unit(170, "lb"),
  21147. name: "Front",
  21148. image: {
  21149. source: "./media/characters/kiro/front.svg",
  21150. extra: 1064 / 1012,
  21151. bottom: 0.052
  21152. },
  21153. form: "folf",
  21154. default: true
  21155. },
  21156. },
  21157. [
  21158. {
  21159. name: "Micro",
  21160. height: math.unit(6, "inches"),
  21161. form: "folf"
  21162. },
  21163. {
  21164. name: "Normal",
  21165. height: math.unit(6, "feet"),
  21166. form: "folf",
  21167. default: true
  21168. },
  21169. {
  21170. name: "Macro",
  21171. height: math.unit(72, "feet"),
  21172. form: "folf"
  21173. },
  21174. {
  21175. name: "Micro",
  21176. height: math.unit(6, "inches"),
  21177. form: "hyena"
  21178. },
  21179. {
  21180. name: "Normal",
  21181. height: math.unit(6, "feet"),
  21182. form: "hyena",
  21183. default: true
  21184. },
  21185. {
  21186. name: "Macro",
  21187. height: math.unit(72, "feet"),
  21188. form: "hyena"
  21189. },
  21190. ],
  21191. {
  21192. "hyena": {
  21193. name: "Hyena",
  21194. default: true
  21195. },
  21196. "folf": {
  21197. name: "Folf",
  21198. },
  21199. }
  21200. ))
  21201. characterMakers.push(() => makeCharacter(
  21202. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21203. {
  21204. front: {
  21205. height: math.unit(5 + 9 / 12, "feet"),
  21206. weight: math.unit(175, "lb"),
  21207. name: "Front",
  21208. image: {
  21209. source: "./media/characters/irishfox/front.svg",
  21210. extra: 1912 / 1680,
  21211. bottom: 0.02
  21212. }
  21213. },
  21214. },
  21215. [
  21216. {
  21217. name: "Nano",
  21218. height: math.unit(1, "mm")
  21219. },
  21220. {
  21221. name: "Micro",
  21222. height: math.unit(2, "inches")
  21223. },
  21224. {
  21225. name: "Normal",
  21226. height: math.unit(5 + 9 / 12, "feet"),
  21227. default: true
  21228. },
  21229. {
  21230. name: "Macro",
  21231. height: math.unit(45, "feet")
  21232. },
  21233. ]
  21234. ))
  21235. characterMakers.push(() => makeCharacter(
  21236. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21237. {
  21238. front: {
  21239. height: math.unit(6 + 1 / 12, "feet"),
  21240. weight: math.unit(75, "lb"),
  21241. name: "Front",
  21242. image: {
  21243. source: "./media/characters/aronai-sieyes/front.svg",
  21244. extra: 1532/1450,
  21245. bottom: 42/1574
  21246. }
  21247. },
  21248. side: {
  21249. height: math.unit(6 + 1 / 12, "feet"),
  21250. weight: math.unit(75, "lb"),
  21251. name: "Side",
  21252. image: {
  21253. source: "./media/characters/aronai-sieyes/side.svg",
  21254. extra: 1422/1365,
  21255. bottom: 148/1570
  21256. }
  21257. },
  21258. back: {
  21259. height: math.unit(6 + 1 / 12, "feet"),
  21260. weight: math.unit(75, "lb"),
  21261. name: "Back",
  21262. image: {
  21263. source: "./media/characters/aronai-sieyes/back.svg",
  21264. extra: 1526/1464,
  21265. bottom: 51/1577
  21266. }
  21267. },
  21268. dressed: {
  21269. height: math.unit(6 + 1 / 12, "feet"),
  21270. weight: math.unit(75, "lb"),
  21271. name: "Dressed",
  21272. image: {
  21273. source: "./media/characters/aronai-sieyes/dressed.svg",
  21274. extra: 1559/1483,
  21275. bottom: 39/1598
  21276. }
  21277. },
  21278. slit: {
  21279. height: math.unit(1.3, "feet"),
  21280. name: "Slit",
  21281. image: {
  21282. source: "./media/characters/aronai-sieyes/slit.svg"
  21283. }
  21284. },
  21285. slitSpread: {
  21286. height: math.unit(0.9, "feet"),
  21287. name: "Slit (Spread)",
  21288. image: {
  21289. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21290. }
  21291. },
  21292. rump: {
  21293. height: math.unit(1.3, "feet"),
  21294. name: "Rump",
  21295. image: {
  21296. source: "./media/characters/aronai-sieyes/rump.svg"
  21297. }
  21298. },
  21299. maw: {
  21300. height: math.unit(1.25, "feet"),
  21301. name: "Maw",
  21302. image: {
  21303. source: "./media/characters/aronai-sieyes/maw.svg"
  21304. }
  21305. },
  21306. feral: {
  21307. height: math.unit(18, "feet"),
  21308. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21309. name: "Feral",
  21310. image: {
  21311. source: "./media/characters/aronai-sieyes/feral.svg",
  21312. extra: 1530 / 1240,
  21313. bottom: 0.035
  21314. }
  21315. },
  21316. },
  21317. [
  21318. {
  21319. name: "Micro",
  21320. height: math.unit(2, "inches")
  21321. },
  21322. {
  21323. name: "Normal",
  21324. height: math.unit(6 + 1 / 12, "feet"),
  21325. default: true
  21326. }
  21327. ]
  21328. ))
  21329. characterMakers.push(() => makeCharacter(
  21330. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21331. {
  21332. front: {
  21333. height: math.unit(12, "feet"),
  21334. weight: math.unit(410, "kg"),
  21335. name: "Front",
  21336. image: {
  21337. source: "./media/characters/xuna/front.svg",
  21338. extra: 2184 / 1980
  21339. }
  21340. },
  21341. side: {
  21342. height: math.unit(12, "feet"),
  21343. weight: math.unit(410, "kg"),
  21344. name: "Side",
  21345. image: {
  21346. source: "./media/characters/xuna/side.svg",
  21347. extra: 2184 / 1980
  21348. }
  21349. },
  21350. back: {
  21351. height: math.unit(12, "feet"),
  21352. weight: math.unit(410, "kg"),
  21353. name: "Back",
  21354. image: {
  21355. source: "./media/characters/xuna/back.svg",
  21356. extra: 2184 / 1980
  21357. }
  21358. },
  21359. },
  21360. [
  21361. {
  21362. name: "Nano glow",
  21363. height: math.unit(10, "nm")
  21364. },
  21365. {
  21366. name: "Micro floof",
  21367. height: math.unit(0.3, "m")
  21368. },
  21369. {
  21370. name: "Huggable softy boi",
  21371. height: math.unit(3.6576, "m"),
  21372. default: true
  21373. },
  21374. {
  21375. name: "Admirable floof",
  21376. height: math.unit(80, "meters")
  21377. },
  21378. {
  21379. name: "Gentle macro",
  21380. height: math.unit(300, "meters")
  21381. },
  21382. {
  21383. name: "Very careful floof",
  21384. height: math.unit(3200, "meters")
  21385. },
  21386. {
  21387. name: "The mega floof",
  21388. height: math.unit(36000, "meters")
  21389. },
  21390. {
  21391. name: "Giga-fur-Wicker",
  21392. height: math.unit(4800000, "meters")
  21393. },
  21394. {
  21395. name: "Licky world",
  21396. height: math.unit(20000000, "meters")
  21397. },
  21398. {
  21399. name: "Floofy cyan sun",
  21400. height: math.unit(1500000000, "meters")
  21401. },
  21402. {
  21403. name: "Milky Wicker",
  21404. height: math.unit(1000000000000000000000, "meters")
  21405. },
  21406. {
  21407. name: "The observing Wicker",
  21408. height: math.unit(999999999999999999999999999, "meters")
  21409. },
  21410. ]
  21411. ))
  21412. characterMakers.push(() => makeCharacter(
  21413. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21414. {
  21415. front: {
  21416. height: math.unit(5 + 9 / 12, "feet"),
  21417. weight: math.unit(150, "lb"),
  21418. name: "Front",
  21419. image: {
  21420. source: "./media/characters/arokha-sieyes/front.svg",
  21421. extra: 1425 / 1284,
  21422. bottom: 0.05
  21423. }
  21424. },
  21425. },
  21426. [
  21427. {
  21428. name: "Normal",
  21429. height: math.unit(5 + 9 / 12, "feet")
  21430. },
  21431. {
  21432. name: "Macro",
  21433. height: math.unit(30, "meters"),
  21434. default: true
  21435. },
  21436. ]
  21437. ))
  21438. characterMakers.push(() => makeCharacter(
  21439. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21440. {
  21441. front: {
  21442. height: math.unit(6, "feet"),
  21443. weight: math.unit(180, "lb"),
  21444. name: "Front",
  21445. image: {
  21446. source: "./media/characters/arokh-sieyes/front.svg",
  21447. extra: 1830 / 1769,
  21448. bottom: 0.01
  21449. }
  21450. },
  21451. },
  21452. [
  21453. {
  21454. name: "Normal",
  21455. height: math.unit(6, "feet")
  21456. },
  21457. {
  21458. name: "Macro",
  21459. height: math.unit(30, "meters"),
  21460. default: true
  21461. },
  21462. ]
  21463. ))
  21464. characterMakers.push(() => makeCharacter(
  21465. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21466. {
  21467. side: {
  21468. height: math.unit(13 + 1 / 12, "feet"),
  21469. weight: math.unit(8.5, "tonnes"),
  21470. preyCapacity: math.unit(36, "people"),
  21471. name: "Side",
  21472. image: {
  21473. source: "./media/characters/goldeneye/side.svg",
  21474. extra: 1139/741,
  21475. bottom: 98/1237
  21476. }
  21477. },
  21478. front: {
  21479. height: math.unit(5.1, "feet"),
  21480. weight: math.unit(8.5, "tonnes"),
  21481. preyCapacity: math.unit(36, "people"),
  21482. name: "Front",
  21483. image: {
  21484. source: "./media/characters/goldeneye/front.svg",
  21485. extra: 635/365,
  21486. bottom: 598/1233
  21487. }
  21488. },
  21489. maw: {
  21490. height: math.unit(6.6, "feet"),
  21491. name: "Maw",
  21492. image: {
  21493. source: "./media/characters/goldeneye/maw.svg"
  21494. }
  21495. },
  21496. headFront: {
  21497. height: math.unit(8, "feet"),
  21498. name: "Head (Front)",
  21499. image: {
  21500. source: "./media/characters/goldeneye/head-front.svg"
  21501. }
  21502. },
  21503. headSide: {
  21504. height: math.unit(6, "feet"),
  21505. name: "Head (Side)",
  21506. image: {
  21507. source: "./media/characters/goldeneye/head-side.svg"
  21508. }
  21509. },
  21510. headBack: {
  21511. height: math.unit(8, "feet"),
  21512. name: "Head (Back)",
  21513. image: {
  21514. source: "./media/characters/goldeneye/head-back.svg"
  21515. }
  21516. },
  21517. paw: {
  21518. height: math.unit(3.4, "feet"),
  21519. name: "Paw",
  21520. image: {
  21521. source: "./media/characters/goldeneye/paw.svg"
  21522. }
  21523. },
  21524. toering: {
  21525. height: math.unit(0.45, "feet"),
  21526. name: "Toering",
  21527. image: {
  21528. source: "./media/characters/goldeneye/toering.svg"
  21529. }
  21530. },
  21531. eyes: {
  21532. height: math.unit(0.5, "feet"),
  21533. name: "Eyes",
  21534. image: {
  21535. source: "./media/characters/goldeneye/eyes.svg"
  21536. }
  21537. },
  21538. },
  21539. [
  21540. {
  21541. name: "Normal",
  21542. height: math.unit(13 + 1 / 12, "feet"),
  21543. default: true
  21544. },
  21545. ]
  21546. ))
  21547. characterMakers.push(() => makeCharacter(
  21548. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21549. {
  21550. front: {
  21551. height: math.unit(6 + 1 / 12, "feet"),
  21552. weight: math.unit(210, "lb"),
  21553. name: "Front",
  21554. image: {
  21555. source: "./media/characters/leonardo-lycheborne/front.svg",
  21556. extra: 776/723,
  21557. bottom: 34/810
  21558. }
  21559. },
  21560. side: {
  21561. height: math.unit(6 + 1 / 12, "feet"),
  21562. weight: math.unit(210, "lb"),
  21563. name: "Side",
  21564. image: {
  21565. source: "./media/characters/leonardo-lycheborne/side.svg",
  21566. extra: 780/728,
  21567. bottom: 12/792
  21568. }
  21569. },
  21570. back: {
  21571. height: math.unit(6 + 1 / 12, "feet"),
  21572. weight: math.unit(210, "lb"),
  21573. name: "Back",
  21574. image: {
  21575. source: "./media/characters/leonardo-lycheborne/back.svg",
  21576. extra: 775/721,
  21577. bottom: 17/792
  21578. }
  21579. },
  21580. hand: {
  21581. height: math.unit(1.08, "feet"),
  21582. name: "Hand",
  21583. image: {
  21584. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21585. }
  21586. },
  21587. foot: {
  21588. height: math.unit(1.32, "feet"),
  21589. name: "Foot",
  21590. image: {
  21591. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21592. }
  21593. },
  21594. maw: {
  21595. height: math.unit(1, "feet"),
  21596. name: "Maw",
  21597. image: {
  21598. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21599. }
  21600. },
  21601. were: {
  21602. height: math.unit(20, "feet"),
  21603. weight: math.unit(7800, "lb"),
  21604. name: "Were",
  21605. image: {
  21606. source: "./media/characters/leonardo-lycheborne/were.svg",
  21607. extra: 1224/1165,
  21608. bottom: 72/1296
  21609. }
  21610. },
  21611. feral: {
  21612. height: math.unit(7.5, "feet"),
  21613. weight: math.unit(600, "lb"),
  21614. name: "Feral",
  21615. image: {
  21616. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21617. extra: 797/702,
  21618. bottom: 139/936
  21619. }
  21620. },
  21621. taur: {
  21622. height: math.unit(11, "feet"),
  21623. weight: math.unit(3300, "lb"),
  21624. name: "Taur",
  21625. image: {
  21626. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21627. extra: 1271/1197,
  21628. bottom: 47/1318
  21629. }
  21630. },
  21631. barghest: {
  21632. height: math.unit(11, "feet"),
  21633. weight: math.unit(1300, "lb"),
  21634. name: "Barghest",
  21635. image: {
  21636. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21637. extra: 1291/1204,
  21638. bottom: 37/1328
  21639. }
  21640. },
  21641. dick: {
  21642. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21643. name: "Dick",
  21644. image: {
  21645. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21646. }
  21647. },
  21648. dickWere: {
  21649. height: math.unit((20) / 3.8, "feet"),
  21650. name: "Dick (Were)",
  21651. image: {
  21652. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21653. }
  21654. },
  21655. },
  21656. [
  21657. {
  21658. name: "Normal",
  21659. height: math.unit(6 + 1 / 12, "feet"),
  21660. default: true
  21661. },
  21662. ]
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21666. {
  21667. front: {
  21668. height: math.unit(10, "feet"),
  21669. weight: math.unit(350, "lb"),
  21670. name: "Front",
  21671. image: {
  21672. source: "./media/characters/jet/front.svg",
  21673. extra: 2050 / 1980,
  21674. bottom: 0.013
  21675. }
  21676. },
  21677. back: {
  21678. height: math.unit(10, "feet"),
  21679. weight: math.unit(350, "lb"),
  21680. name: "Back",
  21681. image: {
  21682. source: "./media/characters/jet/back.svg",
  21683. extra: 2050 / 1980,
  21684. bottom: 0.013
  21685. }
  21686. },
  21687. },
  21688. [
  21689. {
  21690. name: "Micro",
  21691. height: math.unit(6, "inches")
  21692. },
  21693. {
  21694. name: "Normal",
  21695. height: math.unit(10, "feet"),
  21696. default: true
  21697. },
  21698. {
  21699. name: "Macro",
  21700. height: math.unit(100, "feet")
  21701. },
  21702. ]
  21703. ))
  21704. characterMakers.push(() => makeCharacter(
  21705. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21706. {
  21707. front: {
  21708. height: math.unit(15, "feet"),
  21709. weight: math.unit(2800, "lb"),
  21710. name: "Front",
  21711. image: {
  21712. source: "./media/characters/tanarath/front.svg",
  21713. extra: 2392 / 2220,
  21714. bottom: 0.03
  21715. }
  21716. },
  21717. back: {
  21718. height: math.unit(15, "feet"),
  21719. weight: math.unit(2800, "lb"),
  21720. name: "Back",
  21721. image: {
  21722. source: "./media/characters/tanarath/back.svg",
  21723. extra: 2392 / 2220,
  21724. bottom: 0.03
  21725. }
  21726. },
  21727. },
  21728. [
  21729. {
  21730. name: "Normal",
  21731. height: math.unit(15, "feet"),
  21732. default: true
  21733. },
  21734. ]
  21735. ))
  21736. characterMakers.push(() => makeCharacter(
  21737. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21738. {
  21739. front: {
  21740. height: math.unit(7 + 1 / 12, "feet"),
  21741. weight: math.unit(175, "lb"),
  21742. name: "Front",
  21743. image: {
  21744. source: "./media/characters/patty-cattybatty/front.svg",
  21745. extra: 908 / 874,
  21746. bottom: 0.025
  21747. }
  21748. },
  21749. },
  21750. [
  21751. {
  21752. name: "Micro",
  21753. height: math.unit(1, "inch")
  21754. },
  21755. {
  21756. name: "Normal",
  21757. height: math.unit(7 + 1 / 12, "feet")
  21758. },
  21759. {
  21760. name: "Mini Macro",
  21761. height: math.unit(155, "feet")
  21762. },
  21763. {
  21764. name: "Macro",
  21765. height: math.unit(1077, "feet")
  21766. },
  21767. {
  21768. name: "Mega Macro",
  21769. height: math.unit(47650, "feet"),
  21770. default: true
  21771. },
  21772. {
  21773. name: "Giga Macro",
  21774. height: math.unit(440, "miles")
  21775. },
  21776. {
  21777. name: "Tera Macro",
  21778. height: math.unit(8700, "miles")
  21779. },
  21780. {
  21781. name: "Planetary Macro",
  21782. height: math.unit(32700, "miles")
  21783. },
  21784. {
  21785. name: "Solar Macro",
  21786. height: math.unit(550000, "miles")
  21787. },
  21788. {
  21789. name: "Celestial Macro",
  21790. height: math.unit(2.5, "AU")
  21791. },
  21792. ]
  21793. ))
  21794. characterMakers.push(() => makeCharacter(
  21795. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21796. {
  21797. front: {
  21798. height: math.unit(4 + 5 / 12, "feet"),
  21799. weight: math.unit(90, "lb"),
  21800. name: "Front",
  21801. image: {
  21802. source: "./media/characters/cappu/front.svg",
  21803. extra: 1247 / 1152,
  21804. bottom: 0.012
  21805. }
  21806. },
  21807. },
  21808. [
  21809. {
  21810. name: "Normal",
  21811. height: math.unit(4 + 5 / 12, "feet"),
  21812. default: true
  21813. },
  21814. ]
  21815. ))
  21816. characterMakers.push(() => makeCharacter(
  21817. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21818. {
  21819. frontDressed: {
  21820. height: math.unit(70, "cm"),
  21821. weight: math.unit(6, "kg"),
  21822. name: "Front (Dressed)",
  21823. image: {
  21824. source: "./media/characters/sebi/front-dressed.svg",
  21825. extra: 713.5 / 686.5,
  21826. bottom: 0.003
  21827. }
  21828. },
  21829. front: {
  21830. height: math.unit(70, "cm"),
  21831. weight: math.unit(5, "kg"),
  21832. name: "Front",
  21833. image: {
  21834. source: "./media/characters/sebi/front.svg",
  21835. extra: 713.5 / 686.5,
  21836. bottom: 0.003
  21837. }
  21838. }
  21839. },
  21840. [
  21841. {
  21842. name: "Normal",
  21843. height: math.unit(70, "cm"),
  21844. default: true
  21845. },
  21846. {
  21847. name: "Macro",
  21848. height: math.unit(8, "meters")
  21849. },
  21850. ]
  21851. ))
  21852. characterMakers.push(() => makeCharacter(
  21853. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21854. {
  21855. front: {
  21856. height: math.unit(6, "feet"),
  21857. weight: math.unit(150, "lb"),
  21858. name: "Front",
  21859. image: {
  21860. source: "./media/characters/typhek/front.svg",
  21861. extra: 1948 / 1929,
  21862. bottom: 0.025
  21863. }
  21864. },
  21865. side: {
  21866. height: math.unit(6, "feet"),
  21867. weight: math.unit(150, "lb"),
  21868. name: "Side",
  21869. image: {
  21870. source: "./media/characters/typhek/side.svg",
  21871. extra: 2034 / 2010,
  21872. bottom: 0.003
  21873. }
  21874. },
  21875. back: {
  21876. height: math.unit(6, "feet"),
  21877. weight: math.unit(150, "lb"),
  21878. name: "Back",
  21879. image: {
  21880. source: "./media/characters/typhek/back.svg",
  21881. extra: 2005 / 1978,
  21882. bottom: 0.004
  21883. }
  21884. },
  21885. palm: {
  21886. height: math.unit(1.2, "feet"),
  21887. name: "Palm",
  21888. image: {
  21889. source: "./media/characters/typhek/palm.svg"
  21890. }
  21891. },
  21892. fist: {
  21893. height: math.unit(1.1, "feet"),
  21894. name: "Fist",
  21895. image: {
  21896. source: "./media/characters/typhek/fist.svg"
  21897. }
  21898. },
  21899. foot: {
  21900. height: math.unit(1.57, "feet"),
  21901. name: "Foot",
  21902. image: {
  21903. source: "./media/characters/typhek/foot.svg"
  21904. }
  21905. },
  21906. sole: {
  21907. height: math.unit(2.05, "feet"),
  21908. name: "Sole",
  21909. image: {
  21910. source: "./media/characters/typhek/sole.svg"
  21911. }
  21912. },
  21913. },
  21914. [
  21915. {
  21916. name: "Macro",
  21917. height: math.unit(40, "stories"),
  21918. default: true
  21919. },
  21920. {
  21921. name: "Megamacro",
  21922. height: math.unit(1, "mile")
  21923. },
  21924. {
  21925. name: "Gigamacro",
  21926. height: math.unit(4000, "solarradii")
  21927. },
  21928. {
  21929. name: "Universal",
  21930. height: math.unit(1.1, "universes")
  21931. }
  21932. ]
  21933. ))
  21934. characterMakers.push(() => makeCharacter(
  21935. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21936. {
  21937. side: {
  21938. height: math.unit(5 + 7 / 12, "feet"),
  21939. weight: math.unit(150, "lb"),
  21940. name: "Side",
  21941. image: {
  21942. source: "./media/characters/kassy/side.svg",
  21943. extra: 1280 / 1225,
  21944. bottom: 0.002
  21945. }
  21946. },
  21947. front: {
  21948. height: math.unit(5 + 7 / 12, "feet"),
  21949. weight: math.unit(150, "lb"),
  21950. name: "Front",
  21951. image: {
  21952. source: "./media/characters/kassy/front.svg",
  21953. extra: 1280 / 1225,
  21954. bottom: 0.025
  21955. }
  21956. },
  21957. back: {
  21958. height: math.unit(5 + 7 / 12, "feet"),
  21959. weight: math.unit(150, "lb"),
  21960. name: "Back",
  21961. image: {
  21962. source: "./media/characters/kassy/back.svg",
  21963. extra: 1280 / 1225,
  21964. bottom: 0.002
  21965. }
  21966. },
  21967. foot: {
  21968. height: math.unit(1.266, "feet"),
  21969. name: "Foot",
  21970. image: {
  21971. source: "./media/characters/kassy/foot.svg"
  21972. }
  21973. },
  21974. },
  21975. [
  21976. {
  21977. name: "Normal",
  21978. height: math.unit(5 + 7 / 12, "feet")
  21979. },
  21980. {
  21981. name: "Macro",
  21982. height: math.unit(137, "feet"),
  21983. default: true
  21984. },
  21985. {
  21986. name: "Megamacro",
  21987. height: math.unit(1, "mile")
  21988. },
  21989. ]
  21990. ))
  21991. characterMakers.push(() => makeCharacter(
  21992. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21993. {
  21994. front: {
  21995. height: math.unit(6 + 1 / 12, "feet"),
  21996. weight: math.unit(200, "lb"),
  21997. name: "Front",
  21998. image: {
  21999. source: "./media/characters/neil/front.svg",
  22000. extra: 1326 / 1250,
  22001. bottom: 0.023
  22002. }
  22003. },
  22004. },
  22005. [
  22006. {
  22007. name: "Normal",
  22008. height: math.unit(6 + 1 / 12, "feet"),
  22009. default: true
  22010. },
  22011. {
  22012. name: "Macro",
  22013. height: math.unit(200, "feet")
  22014. },
  22015. ]
  22016. ))
  22017. characterMakers.push(() => makeCharacter(
  22018. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22019. {
  22020. front: {
  22021. height: math.unit(5 + 9 / 12, "feet"),
  22022. weight: math.unit(190, "lb"),
  22023. name: "Front",
  22024. image: {
  22025. source: "./media/characters/atticus/front.svg",
  22026. extra: 2934 / 2785,
  22027. bottom: 0.025
  22028. }
  22029. },
  22030. },
  22031. [
  22032. {
  22033. name: "Normal",
  22034. height: math.unit(5 + 9 / 12, "feet"),
  22035. default: true
  22036. },
  22037. {
  22038. name: "Macro",
  22039. height: math.unit(180, "feet")
  22040. },
  22041. ]
  22042. ))
  22043. characterMakers.push(() => makeCharacter(
  22044. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22045. {
  22046. side: {
  22047. height: math.unit(9, "feet"),
  22048. weight: math.unit(650, "lb"),
  22049. name: "Side",
  22050. image: {
  22051. source: "./media/characters/milo/side.svg",
  22052. extra: 2644 / 2310,
  22053. bottom: 0.032
  22054. }
  22055. },
  22056. },
  22057. [
  22058. {
  22059. name: "Normal",
  22060. height: math.unit(9, "feet"),
  22061. default: true
  22062. },
  22063. {
  22064. name: "Macro",
  22065. height: math.unit(300, "feet")
  22066. },
  22067. ]
  22068. ))
  22069. characterMakers.push(() => makeCharacter(
  22070. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22071. {
  22072. side: {
  22073. height: math.unit(8, "meters"),
  22074. weight: math.unit(90000, "kg"),
  22075. name: "Side",
  22076. image: {
  22077. source: "./media/characters/ijzer/side.svg",
  22078. extra: 2756 / 1600,
  22079. bottom: 0.01
  22080. }
  22081. },
  22082. },
  22083. [
  22084. {
  22085. name: "Small",
  22086. height: math.unit(3, "meters")
  22087. },
  22088. {
  22089. name: "Normal",
  22090. height: math.unit(8, "meters"),
  22091. default: true
  22092. },
  22093. {
  22094. name: "Normal+",
  22095. height: math.unit(10, "meters")
  22096. },
  22097. {
  22098. name: "Bigger",
  22099. height: math.unit(24, "meters")
  22100. },
  22101. {
  22102. name: "Huge",
  22103. height: math.unit(80, "meters")
  22104. },
  22105. ]
  22106. ))
  22107. characterMakers.push(() => makeCharacter(
  22108. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22109. {
  22110. front: {
  22111. height: math.unit(6 + 2 / 12, "feet"),
  22112. weight: math.unit(153, "lb"),
  22113. name: "Front",
  22114. image: {
  22115. source: "./media/characters/luca-cervicum/front.svg",
  22116. extra: 370 / 327,
  22117. bottom: 0.015
  22118. }
  22119. },
  22120. back: {
  22121. height: math.unit(6 + 2 / 12, "feet"),
  22122. weight: math.unit(153, "lb"),
  22123. name: "Back",
  22124. image: {
  22125. source: "./media/characters/luca-cervicum/back.svg",
  22126. extra: 367 / 333,
  22127. bottom: 0.005
  22128. }
  22129. },
  22130. frontGear: {
  22131. height: math.unit(6 + 2 / 12, "feet"),
  22132. weight: math.unit(173, "lb"),
  22133. name: "Front (Gear)",
  22134. image: {
  22135. source: "./media/characters/luca-cervicum/front-gear.svg",
  22136. extra: 377 / 333,
  22137. bottom: 0.006
  22138. }
  22139. },
  22140. },
  22141. [
  22142. {
  22143. name: "Normal",
  22144. height: math.unit(6 + 2 / 12, "feet"),
  22145. default: true
  22146. },
  22147. ]
  22148. ))
  22149. characterMakers.push(() => makeCharacter(
  22150. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22151. {
  22152. front: {
  22153. height: math.unit(6 + 1 / 12, "feet"),
  22154. weight: math.unit(304, "lb"),
  22155. name: "Front",
  22156. image: {
  22157. source: "./media/characters/oliver/front.svg",
  22158. extra: 157 / 143,
  22159. bottom: 0.08
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(6 + 1 / 12, "feet"),
  22167. default: true
  22168. },
  22169. ]
  22170. ))
  22171. characterMakers.push(() => makeCharacter(
  22172. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22173. {
  22174. front: {
  22175. height: math.unit(5 + 7 / 12, "feet"),
  22176. weight: math.unit(140, "lb"),
  22177. name: "Front",
  22178. image: {
  22179. source: "./media/characters/shane/front.svg",
  22180. extra: 304 / 289,
  22181. bottom: 0.005
  22182. }
  22183. },
  22184. },
  22185. [
  22186. {
  22187. name: "Normal",
  22188. height: math.unit(5 + 7 / 12, "feet"),
  22189. default: true
  22190. },
  22191. ]
  22192. ))
  22193. characterMakers.push(() => makeCharacter(
  22194. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22195. {
  22196. front: {
  22197. height: math.unit(5 + 9 / 12, "feet"),
  22198. weight: math.unit(178, "lb"),
  22199. name: "Front",
  22200. image: {
  22201. source: "./media/characters/shin/front.svg",
  22202. extra: 159 / 151,
  22203. bottom: 0.015
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Normal",
  22210. height: math.unit(5 + 9 / 12, "feet"),
  22211. default: true
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22217. {
  22218. front: {
  22219. height: math.unit(5 + 10 / 12, "feet"),
  22220. weight: math.unit(168, "lb"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/xerxes/front.svg",
  22224. extra: 282 / 260,
  22225. bottom: 0.045
  22226. }
  22227. },
  22228. },
  22229. [
  22230. {
  22231. name: "Normal",
  22232. height: math.unit(5 + 10 / 12, "feet"),
  22233. default: true
  22234. },
  22235. ]
  22236. ))
  22237. characterMakers.push(() => makeCharacter(
  22238. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22239. {
  22240. front: {
  22241. height: math.unit(6 + 7 / 12, "feet"),
  22242. weight: math.unit(208, "lb"),
  22243. name: "Front",
  22244. image: {
  22245. source: "./media/characters/chaska/front.svg",
  22246. extra: 332 / 319,
  22247. bottom: 0.015
  22248. }
  22249. },
  22250. },
  22251. [
  22252. {
  22253. name: "Normal",
  22254. height: math.unit(6 + 7 / 12, "feet"),
  22255. default: true
  22256. },
  22257. ]
  22258. ))
  22259. characterMakers.push(() => makeCharacter(
  22260. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22261. {
  22262. front: {
  22263. height: math.unit(5 + 8 / 12, "feet"),
  22264. weight: math.unit(208, "lb"),
  22265. name: "Front",
  22266. image: {
  22267. source: "./media/characters/enuk/front.svg",
  22268. extra: 437 / 406,
  22269. bottom: 0.02
  22270. }
  22271. },
  22272. },
  22273. [
  22274. {
  22275. name: "Normal",
  22276. height: math.unit(5 + 8 / 12, "feet"),
  22277. default: true
  22278. },
  22279. ]
  22280. ))
  22281. characterMakers.push(() => makeCharacter(
  22282. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22283. {
  22284. front: {
  22285. height: math.unit(5 + 10 / 12, "feet"),
  22286. weight: math.unit(252, "lb"),
  22287. name: "Front",
  22288. image: {
  22289. source: "./media/characters/bruun/front.svg",
  22290. extra: 197 / 187,
  22291. bottom: 0.012
  22292. }
  22293. },
  22294. },
  22295. [
  22296. {
  22297. name: "Normal",
  22298. height: math.unit(5 + 10 / 12, "feet"),
  22299. default: true
  22300. },
  22301. ]
  22302. ))
  22303. characterMakers.push(() => makeCharacter(
  22304. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22305. {
  22306. front: {
  22307. height: math.unit(6 + 10 / 12, "feet"),
  22308. weight: math.unit(255, "lb"),
  22309. name: "Front",
  22310. image: {
  22311. source: "./media/characters/alexeev/front.svg",
  22312. extra: 213 / 200,
  22313. bottom: 0.05
  22314. }
  22315. },
  22316. },
  22317. [
  22318. {
  22319. name: "Normal",
  22320. height: math.unit(6 + 10 / 12, "feet"),
  22321. default: true
  22322. },
  22323. ]
  22324. ))
  22325. characterMakers.push(() => makeCharacter(
  22326. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22327. {
  22328. front: {
  22329. height: math.unit(2 + 8 / 12, "feet"),
  22330. weight: math.unit(22, "lb"),
  22331. name: "Front",
  22332. image: {
  22333. source: "./media/characters/evelyn/front.svg",
  22334. extra: 208 / 180
  22335. }
  22336. },
  22337. },
  22338. [
  22339. {
  22340. name: "Normal",
  22341. height: math.unit(2 + 8 / 12, "feet"),
  22342. default: true
  22343. },
  22344. ]
  22345. ))
  22346. characterMakers.push(() => makeCharacter(
  22347. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22348. {
  22349. front: {
  22350. height: math.unit(5 + 9 / 12, "feet"),
  22351. weight: math.unit(139, "lb"),
  22352. name: "Front",
  22353. image: {
  22354. source: "./media/characters/inca/front.svg",
  22355. extra: 294 / 291,
  22356. bottom: 0.03
  22357. }
  22358. },
  22359. },
  22360. [
  22361. {
  22362. name: "Normal",
  22363. height: math.unit(5 + 9 / 12, "feet"),
  22364. default: true
  22365. },
  22366. ]
  22367. ))
  22368. characterMakers.push(() => makeCharacter(
  22369. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22370. {
  22371. front: {
  22372. height: math.unit(6 + 3 / 12, "feet"),
  22373. weight: math.unit(185, "lb"),
  22374. name: "Front",
  22375. image: {
  22376. source: "./media/characters/mera/front.svg",
  22377. extra: 291 / 277,
  22378. bottom: 0.03
  22379. }
  22380. },
  22381. },
  22382. [
  22383. {
  22384. name: "Normal",
  22385. height: math.unit(6 + 3 / 12, "feet"),
  22386. default: true
  22387. },
  22388. ]
  22389. ))
  22390. characterMakers.push(() => makeCharacter(
  22391. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22392. {
  22393. front: {
  22394. height: math.unit(6 + 7 / 12, "feet"),
  22395. weight: math.unit(160, "lb"),
  22396. name: "Front",
  22397. image: {
  22398. source: "./media/characters/ceres/front.svg",
  22399. extra: 1023 / 950,
  22400. bottom: 0.027
  22401. }
  22402. },
  22403. back: {
  22404. height: math.unit(6 + 7 / 12, "feet"),
  22405. weight: math.unit(160, "lb"),
  22406. name: "Back",
  22407. image: {
  22408. source: "./media/characters/ceres/back.svg",
  22409. extra: 1023 / 950
  22410. }
  22411. },
  22412. },
  22413. [
  22414. {
  22415. name: "Normal",
  22416. height: math.unit(6 + 7 / 12, "feet"),
  22417. default: true
  22418. },
  22419. ]
  22420. ))
  22421. characterMakers.push(() => makeCharacter(
  22422. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22423. {
  22424. front: {
  22425. height: math.unit(5 + 10 / 12, "feet"),
  22426. weight: math.unit(150, "lb"),
  22427. name: "Front",
  22428. image: {
  22429. source: "./media/characters/kris/front.svg",
  22430. extra: 885 / 803,
  22431. bottom: 0.03
  22432. }
  22433. },
  22434. },
  22435. [
  22436. {
  22437. name: "Normal",
  22438. height: math.unit(5 + 10 / 12, "feet"),
  22439. default: true
  22440. },
  22441. ]
  22442. ))
  22443. characterMakers.push(() => makeCharacter(
  22444. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22445. {
  22446. dragon_front: {
  22447. height: math.unit(5, "feet"),
  22448. name: "Front",
  22449. image: {
  22450. source: "./media/characters/taluthus/dragon-front.svg",
  22451. extra: 1203/1098,
  22452. bottom: 46/1249
  22453. },
  22454. form: "dragon",
  22455. default: true
  22456. },
  22457. dragon_maw: {
  22458. height: math.unit(2.35, "feet"),
  22459. name: "Maw",
  22460. image: {
  22461. source: "./media/characters/taluthus/dragon-maw.svg"
  22462. },
  22463. form: "dragon",
  22464. },
  22465. kitsune_front: {
  22466. height: math.unit(7, "feet"),
  22467. name: "Front",
  22468. image: {
  22469. source: "./media/characters/taluthus/kitsune-front.svg",
  22470. extra: 900/841,
  22471. bottom: 65/965
  22472. },
  22473. form: "kitsune",
  22474. default: true
  22475. },
  22476. },
  22477. [
  22478. {
  22479. name: "Normal",
  22480. height: math.unit(5, "feet"),
  22481. form: "dragon",
  22482. default: true,
  22483. },
  22484. {
  22485. name: "Normal",
  22486. height: math.unit(7, "feet"),
  22487. form: "kitsune",
  22488. default: true
  22489. },
  22490. {
  22491. name: "Macro",
  22492. height: math.unit(300, "feet"),
  22493. allForms: true
  22494. },
  22495. ],
  22496. {
  22497. "dragon": {
  22498. name: "Dragon",
  22499. default: true
  22500. },
  22501. "kitsune": {
  22502. name: "Kitsune",
  22503. },
  22504. }
  22505. ))
  22506. characterMakers.push(() => makeCharacter(
  22507. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22508. {
  22509. front: {
  22510. height: math.unit(5 + 9 / 12, "feet"),
  22511. weight: math.unit(145, "lb"),
  22512. name: "Front",
  22513. image: {
  22514. source: "./media/characters/dawn/front.svg",
  22515. extra: 2094 / 2016,
  22516. bottom: 0.025
  22517. }
  22518. },
  22519. back: {
  22520. height: math.unit(5 + 9 / 12, "feet"),
  22521. weight: math.unit(160, "lb"),
  22522. name: "Back",
  22523. image: {
  22524. source: "./media/characters/dawn/back.svg",
  22525. extra: 2112 / 2080,
  22526. bottom: 0.005
  22527. }
  22528. },
  22529. },
  22530. [
  22531. {
  22532. name: "Normal",
  22533. height: math.unit(6 + 7 / 12, "feet"),
  22534. default: true
  22535. },
  22536. ]
  22537. ))
  22538. characterMakers.push(() => makeCharacter(
  22539. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22540. {
  22541. anthro: {
  22542. height: math.unit(8 + 3 / 12, "feet"),
  22543. weight: math.unit(450, "lb"),
  22544. name: "Anthro",
  22545. image: {
  22546. source: "./media/characters/arador/anthro.svg",
  22547. extra: 1835 / 1718,
  22548. bottom: 0.025
  22549. }
  22550. },
  22551. feral: {
  22552. height: math.unit(4, "feet"),
  22553. weight: math.unit(200, "lb"),
  22554. name: "Feral",
  22555. image: {
  22556. source: "./media/characters/arador/feral.svg",
  22557. extra: 1683 / 1514,
  22558. bottom: 0.07
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Normal",
  22565. height: math.unit(8 + 3 / 12, "feet")
  22566. },
  22567. {
  22568. name: "Macro",
  22569. height: math.unit(82.5, "feet"),
  22570. default: true
  22571. },
  22572. ]
  22573. ))
  22574. characterMakers.push(() => makeCharacter(
  22575. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22576. {
  22577. front: {
  22578. height: math.unit(5 + 10 / 12, "feet"),
  22579. weight: math.unit(125, "lb"),
  22580. name: "Front",
  22581. image: {
  22582. source: "./media/characters/dharsi/front.svg",
  22583. extra: 716 / 630,
  22584. bottom: 0.035
  22585. }
  22586. },
  22587. },
  22588. [
  22589. {
  22590. name: "Nano",
  22591. height: math.unit(100, "nm")
  22592. },
  22593. {
  22594. name: "Micro",
  22595. height: math.unit(2, "inches")
  22596. },
  22597. {
  22598. name: "Normal",
  22599. height: math.unit(5 + 10 / 12, "feet"),
  22600. default: true
  22601. },
  22602. {
  22603. name: "Macro",
  22604. height: math.unit(1000, "feet")
  22605. },
  22606. {
  22607. name: "Megamacro",
  22608. height: math.unit(10, "miles")
  22609. },
  22610. {
  22611. name: "Gigamacro",
  22612. height: math.unit(3000, "miles")
  22613. },
  22614. {
  22615. name: "Teramacro",
  22616. height: math.unit(500000, "miles")
  22617. },
  22618. {
  22619. name: "Teramacro+",
  22620. height: math.unit(30, "galaxies")
  22621. },
  22622. ]
  22623. ))
  22624. characterMakers.push(() => makeCharacter(
  22625. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22626. {
  22627. front: {
  22628. height: math.unit(6, "feet"),
  22629. weight: math.unit(150, "lb"),
  22630. name: "Front",
  22631. image: {
  22632. source: "./media/characters/deathy/front.svg",
  22633. extra: 1552 / 1463,
  22634. bottom: 0.025
  22635. }
  22636. },
  22637. side: {
  22638. height: math.unit(6, "feet"),
  22639. weight: math.unit(150, "lb"),
  22640. name: "Side",
  22641. image: {
  22642. source: "./media/characters/deathy/side.svg",
  22643. extra: 1604 / 1455,
  22644. bottom: 0.025
  22645. }
  22646. },
  22647. back: {
  22648. height: math.unit(6, "feet"),
  22649. weight: math.unit(150, "lb"),
  22650. name: "Back",
  22651. image: {
  22652. source: "./media/characters/deathy/back.svg",
  22653. extra: 1580 / 1463,
  22654. bottom: 0.005
  22655. }
  22656. },
  22657. },
  22658. [
  22659. {
  22660. name: "Micro",
  22661. height: math.unit(5, "millimeters")
  22662. },
  22663. {
  22664. name: "Normal",
  22665. height: math.unit(6 + 5 / 12, "feet"),
  22666. default: true
  22667. },
  22668. ]
  22669. ))
  22670. characterMakers.push(() => makeCharacter(
  22671. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22672. {
  22673. front: {
  22674. height: math.unit(16, "feet"),
  22675. weight: math.unit(4000, "lb"),
  22676. name: "Front",
  22677. image: {
  22678. source: "./media/characters/juniper/front.svg",
  22679. bottom: 0.04
  22680. }
  22681. },
  22682. },
  22683. [
  22684. {
  22685. name: "Normal",
  22686. height: math.unit(16, "feet"),
  22687. default: true
  22688. },
  22689. ]
  22690. ))
  22691. characterMakers.push(() => makeCharacter(
  22692. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22693. {
  22694. front: {
  22695. height: math.unit(6, "feet"),
  22696. weight: math.unit(150, "lb"),
  22697. name: "Front",
  22698. image: {
  22699. source: "./media/characters/hipster/front.svg",
  22700. extra: 1312 / 1209,
  22701. bottom: 0.025
  22702. }
  22703. },
  22704. back: {
  22705. height: math.unit(6, "feet"),
  22706. weight: math.unit(150, "lb"),
  22707. name: "Back",
  22708. image: {
  22709. source: "./media/characters/hipster/back.svg",
  22710. extra: 1281 / 1196,
  22711. bottom: 0.01
  22712. }
  22713. },
  22714. },
  22715. [
  22716. {
  22717. name: "Micro",
  22718. height: math.unit(1, "mm")
  22719. },
  22720. {
  22721. name: "Normal",
  22722. height: math.unit(4, "inches"),
  22723. default: true
  22724. },
  22725. {
  22726. name: "Macro",
  22727. height: math.unit(500, "feet")
  22728. },
  22729. {
  22730. name: "Megamacro",
  22731. height: math.unit(1000, "miles")
  22732. },
  22733. ]
  22734. ))
  22735. characterMakers.push(() => makeCharacter(
  22736. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22737. {
  22738. front: {
  22739. height: math.unit(6, "feet"),
  22740. weight: math.unit(150, "lb"),
  22741. name: "Front",
  22742. image: {
  22743. source: "./media/characters/tendirmuldr/front.svg",
  22744. extra: 1878 / 1772,
  22745. bottom: 0.015
  22746. }
  22747. },
  22748. },
  22749. [
  22750. {
  22751. name: "Megamacro",
  22752. height: math.unit(1500, "miles"),
  22753. default: true
  22754. },
  22755. ]
  22756. ))
  22757. characterMakers.push(() => makeCharacter(
  22758. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22759. {
  22760. front: {
  22761. height: math.unit(14, "feet"),
  22762. weight: math.unit(12000, "lb"),
  22763. name: "Front",
  22764. image: {
  22765. source: "./media/characters/mort/front.svg",
  22766. extra: 365 / 318,
  22767. bottom: 0.01
  22768. }
  22769. },
  22770. side: {
  22771. height: math.unit(14, "feet"),
  22772. weight: math.unit(12000, "lb"),
  22773. name: "Side",
  22774. image: {
  22775. source: "./media/characters/mort/side.svg",
  22776. extra: 365 / 318,
  22777. bottom: 0.052
  22778. },
  22779. default: true
  22780. },
  22781. back: {
  22782. height: math.unit(14, "feet"),
  22783. weight: math.unit(12000, "lb"),
  22784. name: "Back",
  22785. image: {
  22786. source: "./media/characters/mort/back.svg",
  22787. extra: 371 / 332,
  22788. bottom: 0.18
  22789. }
  22790. },
  22791. },
  22792. [
  22793. {
  22794. name: "Normal",
  22795. height: math.unit(14, "feet"),
  22796. default: true
  22797. },
  22798. ]
  22799. ))
  22800. characterMakers.push(() => makeCharacter(
  22801. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22802. {
  22803. front: {
  22804. height: math.unit(8, "feet"),
  22805. weight: math.unit(1, "ton"),
  22806. name: "Front",
  22807. image: {
  22808. source: "./media/characters/lycoa/front.svg",
  22809. extra: 1836/1728,
  22810. bottom: 81/1917
  22811. }
  22812. },
  22813. back: {
  22814. height: math.unit(8, "feet"),
  22815. weight: math.unit(1, "ton"),
  22816. name: "Back",
  22817. image: {
  22818. source: "./media/characters/lycoa/back.svg",
  22819. extra: 1785/1720,
  22820. bottom: 91/1876
  22821. }
  22822. },
  22823. head: {
  22824. height: math.unit(1.6243, "feet"),
  22825. name: "Head",
  22826. image: {
  22827. source: "./media/characters/lycoa/head.svg",
  22828. extra: 1011/782,
  22829. bottom: 0/1011
  22830. }
  22831. },
  22832. tailmaw: {
  22833. height: math.unit(1.9, "feet"),
  22834. name: "Tailmaw",
  22835. image: {
  22836. source: "./media/characters/lycoa/tailmaw.svg"
  22837. }
  22838. },
  22839. tentacles: {
  22840. height: math.unit(2.1, "feet"),
  22841. name: "Tentacles",
  22842. image: {
  22843. source: "./media/characters/lycoa/tentacles.svg"
  22844. }
  22845. },
  22846. dick: {
  22847. height: math.unit(1.73, "feet"),
  22848. name: "Dick",
  22849. image: {
  22850. source: "./media/characters/lycoa/dick.svg"
  22851. }
  22852. },
  22853. },
  22854. [
  22855. {
  22856. name: "Normal",
  22857. height: math.unit(8, "feet"),
  22858. default: true
  22859. },
  22860. {
  22861. name: "Macro",
  22862. height: math.unit(30, "feet")
  22863. },
  22864. ]
  22865. ))
  22866. characterMakers.push(() => makeCharacter(
  22867. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22868. {
  22869. front: {
  22870. height: math.unit(4 + 2 / 12, "feet"),
  22871. weight: math.unit(70, "lb"),
  22872. name: "Front",
  22873. image: {
  22874. source: "./media/characters/naldara/front.svg",
  22875. extra: 1664/1387,
  22876. bottom: 81/1745
  22877. },
  22878. form: "anthro",
  22879. default: true
  22880. },
  22881. naga: {
  22882. height: math.unit(20, "feet"),
  22883. weight: math.unit(15000, "kg"),
  22884. name: "Front",
  22885. image: {
  22886. source: "./media/characters/naldara/naga.svg",
  22887. extra: 1590/1396,
  22888. bottom: 285/1875
  22889. },
  22890. form: "naga",
  22891. default: true
  22892. },
  22893. },
  22894. [
  22895. {
  22896. name: "Normal",
  22897. height: math.unit(4 + 2 / 12, "feet"),
  22898. form: "anthro",
  22899. default: true
  22900. },
  22901. {
  22902. name: "Normal",
  22903. height: math.unit(20, "feet"),
  22904. form: "naga",
  22905. default: true
  22906. },
  22907. ],
  22908. {
  22909. "anthro": {
  22910. name: "Anthro",
  22911. default: true
  22912. },
  22913. "naga": {
  22914. name: "Naga"
  22915. }
  22916. }
  22917. ))
  22918. characterMakers.push(() => makeCharacter(
  22919. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22920. {
  22921. front: {
  22922. height: math.unit(13 + 7 / 12, "feet"),
  22923. weight: math.unit(1500, "lb"),
  22924. name: "Front",
  22925. image: {
  22926. source: "./media/characters/briar/front.svg",
  22927. extra: 1223/1157,
  22928. bottom: 123/1346
  22929. }
  22930. },
  22931. },
  22932. [
  22933. {
  22934. name: "Normal",
  22935. height: math.unit(13 + 7 / 12, "feet"),
  22936. default: true
  22937. },
  22938. ]
  22939. ))
  22940. characterMakers.push(() => makeCharacter(
  22941. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22942. {
  22943. side: {
  22944. height: math.unit(16, "feet"),
  22945. weight: math.unit(500, "lb"),
  22946. name: "Side",
  22947. image: {
  22948. source: "./media/characters/vanguard/side.svg",
  22949. extra: 1022/914,
  22950. bottom: 30/1052
  22951. }
  22952. },
  22953. sideAlt: {
  22954. height: math.unit(10, "feet"),
  22955. weight: math.unit(500, "lb"),
  22956. name: "Side (Alt)",
  22957. image: {
  22958. source: "./media/characters/vanguard/side-alt.svg",
  22959. extra: 502 / 425,
  22960. bottom: 0.087
  22961. }
  22962. },
  22963. },
  22964. [
  22965. {
  22966. name: "Normal",
  22967. height: math.unit(17.71, "feet"),
  22968. default: true
  22969. },
  22970. ]
  22971. ))
  22972. characterMakers.push(() => makeCharacter(
  22973. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22974. {
  22975. front: {
  22976. height: math.unit(7.5, "feet"),
  22977. weight: math.unit(2, "lb"),
  22978. name: "Front",
  22979. image: {
  22980. source: "./media/characters/artemis/work-safe-front.svg",
  22981. extra: 1192 / 1075,
  22982. bottom: 0.07
  22983. },
  22984. form: "work-safe",
  22985. default: true
  22986. },
  22987. frontNsfw: {
  22988. height: math.unit(7.5, "feet"),
  22989. weight: math.unit(2, "lb"),
  22990. name: "Front",
  22991. image: {
  22992. source: "./media/characters/artemis/calibrating-front.svg",
  22993. extra: 1192 / 1075,
  22994. bottom: 0.07
  22995. },
  22996. form: "calibrating",
  22997. default: true
  22998. },
  22999. frontNsfwer: {
  23000. height: math.unit(7.5, "feet"),
  23001. weight: math.unit(2, "lb"),
  23002. name: "Front",
  23003. image: {
  23004. source: "./media/characters/artemis/oversize-load-front.svg",
  23005. extra: 1192 / 1075,
  23006. bottom: 0.07
  23007. },
  23008. form: "oversize-load",
  23009. default: true
  23010. },
  23011. side: {
  23012. height: math.unit(7.5, "feet"),
  23013. weight: math.unit(2, "lb"),
  23014. name: "Side",
  23015. image: {
  23016. source: "./media/characters/artemis/work-safe-side.svg",
  23017. extra: 1192 / 1075,
  23018. bottom: 0.07
  23019. },
  23020. form: "work-safe"
  23021. },
  23022. sideNsfw: {
  23023. height: math.unit(7.5, "feet"),
  23024. weight: math.unit(2, "lb"),
  23025. name: "Side",
  23026. image: {
  23027. source: "./media/characters/artemis/calibrating-side.svg",
  23028. extra: 1192 / 1075,
  23029. bottom: 0.07
  23030. },
  23031. form: "calibrating"
  23032. },
  23033. sideNsfwer: {
  23034. height: math.unit(7.5, "feet"),
  23035. weight: math.unit(2, "lb"),
  23036. name: "Side",
  23037. image: {
  23038. source: "./media/characters/artemis/oversize-load-side.svg",
  23039. extra: 1192 / 1075,
  23040. bottom: 0.07
  23041. },
  23042. form: "oversize-load"
  23043. },
  23044. maw: {
  23045. height: math.unit(1.1, "feet"),
  23046. name: "Maw",
  23047. image: {
  23048. source: "./media/characters/artemis/maw.svg"
  23049. },
  23050. form: "work-safe"
  23051. },
  23052. stomach: {
  23053. height: math.unit(0.95, "feet"),
  23054. name: "Stomach",
  23055. image: {
  23056. source: "./media/characters/artemis/stomach.svg"
  23057. },
  23058. form: "work-safe"
  23059. },
  23060. dickCanine: {
  23061. height: math.unit(1, "feet"),
  23062. name: "Dick (Canine)",
  23063. image: {
  23064. source: "./media/characters/artemis/dick-canine.svg"
  23065. },
  23066. form: "calibrating"
  23067. },
  23068. dickEquine: {
  23069. height: math.unit(0.85, "feet"),
  23070. name: "Dick (Equine)",
  23071. image: {
  23072. source: "./media/characters/artemis/dick-equine.svg"
  23073. },
  23074. form: "calibrating"
  23075. },
  23076. dickExotic: {
  23077. height: math.unit(0.85, "feet"),
  23078. name: "Dick (Exotic)",
  23079. image: {
  23080. source: "./media/characters/artemis/dick-exotic.svg"
  23081. },
  23082. form: "calibrating"
  23083. },
  23084. dickCanineBigger: {
  23085. height: math.unit(1 * 1.33, "feet"),
  23086. name: "Dick (Canine)",
  23087. image: {
  23088. source: "./media/characters/artemis/dick-canine.svg"
  23089. },
  23090. form: "oversize-load"
  23091. },
  23092. dickEquineBigger: {
  23093. height: math.unit(0.85 * 1.33, "feet"),
  23094. name: "Dick (Equine)",
  23095. image: {
  23096. source: "./media/characters/artemis/dick-equine.svg"
  23097. },
  23098. form: "oversize-load"
  23099. },
  23100. dickExoticBigger: {
  23101. height: math.unit(0.85 * 1.33, "feet"),
  23102. name: "Dick (Exotic)",
  23103. image: {
  23104. source: "./media/characters/artemis/dick-exotic.svg"
  23105. },
  23106. form: "oversize-load"
  23107. },
  23108. },
  23109. [
  23110. {
  23111. name: "Normal",
  23112. height: math.unit(7.5, "feet"),
  23113. form: "work-safe",
  23114. default: true
  23115. },
  23116. {
  23117. name: "Normal",
  23118. height: math.unit(7.5, "feet"),
  23119. form: "calibrating",
  23120. default: true
  23121. },
  23122. {
  23123. name: "Normal",
  23124. height: math.unit(7.5, "feet"),
  23125. form: "oversize-load",
  23126. default: true
  23127. },
  23128. {
  23129. name: "Enlarged",
  23130. height: math.unit(12, "feet"),
  23131. form: "work-safe",
  23132. },
  23133. {
  23134. name: "Enlarged",
  23135. height: math.unit(12, "feet"),
  23136. form: "calibrating",
  23137. },
  23138. {
  23139. name: "Enlarged",
  23140. height: math.unit(12, "feet"),
  23141. form: "oversize-load",
  23142. },
  23143. ],
  23144. {
  23145. "work-safe": {
  23146. name: "Work-Safe",
  23147. default: true
  23148. },
  23149. "calibrating": {
  23150. name: "Calibrating"
  23151. },
  23152. "oversize-load": {
  23153. name: "Oversize Load"
  23154. }
  23155. }
  23156. ))
  23157. characterMakers.push(() => makeCharacter(
  23158. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23159. {
  23160. front: {
  23161. height: math.unit(5 + 3 / 12, "feet"),
  23162. weight: math.unit(160, "lb"),
  23163. name: "Front",
  23164. image: {
  23165. source: "./media/characters/kira/front.svg",
  23166. extra: 906 / 786,
  23167. bottom: 0.01
  23168. }
  23169. },
  23170. back: {
  23171. height: math.unit(5 + 3 / 12, "feet"),
  23172. weight: math.unit(160, "lb"),
  23173. name: "Back",
  23174. image: {
  23175. source: "./media/characters/kira/back.svg",
  23176. extra: 882 / 757,
  23177. bottom: 0.005
  23178. }
  23179. },
  23180. frontDressed: {
  23181. height: math.unit(5 + 3 / 12, "feet"),
  23182. weight: math.unit(160, "lb"),
  23183. name: "Front (Dressed)",
  23184. image: {
  23185. source: "./media/characters/kira/front-dressed.svg",
  23186. extra: 906 / 786,
  23187. bottom: 0.01
  23188. }
  23189. },
  23190. beans: {
  23191. height: math.unit(0.92, "feet"),
  23192. name: "Beans",
  23193. image: {
  23194. source: "./media/characters/kira/beans.svg"
  23195. }
  23196. },
  23197. },
  23198. [
  23199. {
  23200. name: "Normal",
  23201. height: math.unit(5 + 3 / 12, "feet"),
  23202. default: true
  23203. },
  23204. ]
  23205. ))
  23206. characterMakers.push(() => makeCharacter(
  23207. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23208. {
  23209. front: {
  23210. height: math.unit(5 + 4 / 12, "feet"),
  23211. weight: math.unit(145, "lb"),
  23212. name: "Front",
  23213. image: {
  23214. source: "./media/characters/scramble/front.svg",
  23215. extra: 763 / 727,
  23216. bottom: 0.05
  23217. }
  23218. },
  23219. back: {
  23220. height: math.unit(5 + 4 / 12, "feet"),
  23221. weight: math.unit(145, "lb"),
  23222. name: "Back",
  23223. image: {
  23224. source: "./media/characters/scramble/back.svg",
  23225. extra: 826 / 737,
  23226. bottom: 0.002
  23227. }
  23228. },
  23229. },
  23230. [
  23231. {
  23232. name: "Normal",
  23233. height: math.unit(5 + 4 / 12, "feet"),
  23234. default: true
  23235. },
  23236. ]
  23237. ))
  23238. characterMakers.push(() => makeCharacter(
  23239. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23240. {
  23241. side: {
  23242. height: math.unit(6 + 2 / 12, "feet"),
  23243. weight: math.unit(190, "lb"),
  23244. name: "Side",
  23245. image: {
  23246. source: "./media/characters/biscuit/side.svg",
  23247. extra: 858 / 791,
  23248. bottom: 0.044
  23249. }
  23250. },
  23251. },
  23252. [
  23253. {
  23254. name: "Normal",
  23255. height: math.unit(6 + 2 / 12, "feet"),
  23256. default: true
  23257. },
  23258. ]
  23259. ))
  23260. characterMakers.push(() => makeCharacter(
  23261. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23262. {
  23263. front: {
  23264. height: math.unit(5 + 2 / 12, "feet"),
  23265. weight: math.unit(120, "lb"),
  23266. name: "Front",
  23267. image: {
  23268. source: "./media/characters/poffin/front.svg",
  23269. extra: 786 / 680,
  23270. bottom: 0.005
  23271. }
  23272. },
  23273. },
  23274. [
  23275. {
  23276. name: "Normal",
  23277. height: math.unit(5 + 2 / 12, "feet"),
  23278. default: true
  23279. },
  23280. ]
  23281. ))
  23282. characterMakers.push(() => makeCharacter(
  23283. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23284. {
  23285. front: {
  23286. height: math.unit(6 + 3 / 12, "feet"),
  23287. weight: math.unit(519, "lb"),
  23288. name: "Front",
  23289. image: {
  23290. source: "./media/characters/dhari/front.svg",
  23291. extra: 1048 / 946,
  23292. bottom: 0.015
  23293. }
  23294. },
  23295. back: {
  23296. height: math.unit(6 + 3 / 12, "feet"),
  23297. weight: math.unit(519, "lb"),
  23298. name: "Back",
  23299. image: {
  23300. source: "./media/characters/dhari/back.svg",
  23301. extra: 1048 / 931,
  23302. bottom: 0.005
  23303. }
  23304. },
  23305. frontDressed: {
  23306. height: math.unit(6 + 3 / 12, "feet"),
  23307. weight: math.unit(519, "lb"),
  23308. name: "Front (Dressed)",
  23309. image: {
  23310. source: "./media/characters/dhari/front-dressed.svg",
  23311. extra: 1713 / 1546,
  23312. bottom: 0.02
  23313. }
  23314. },
  23315. backDressed: {
  23316. height: math.unit(6 + 3 / 12, "feet"),
  23317. weight: math.unit(519, "lb"),
  23318. name: "Back (Dressed)",
  23319. image: {
  23320. source: "./media/characters/dhari/back-dressed.svg",
  23321. extra: 1699 / 1537,
  23322. bottom: 0.01
  23323. }
  23324. },
  23325. maw: {
  23326. height: math.unit(0.95, "feet"),
  23327. name: "Maw",
  23328. image: {
  23329. source: "./media/characters/dhari/maw.svg"
  23330. }
  23331. },
  23332. wereFront: {
  23333. height: math.unit(12 + 8 / 12, "feet"),
  23334. weight: math.unit(4000, "lb"),
  23335. name: "Front (Were)",
  23336. image: {
  23337. source: "./media/characters/dhari/were-front.svg",
  23338. extra: 1065 / 969,
  23339. bottom: 0.015
  23340. }
  23341. },
  23342. wereBack: {
  23343. height: math.unit(12 + 8 / 12, "feet"),
  23344. weight: math.unit(4000, "lb"),
  23345. name: "Back (Were)",
  23346. image: {
  23347. source: "./media/characters/dhari/were-back.svg",
  23348. extra: 1065 / 969,
  23349. bottom: 0.012
  23350. }
  23351. },
  23352. wereMaw: {
  23353. height: math.unit(0.625, "meters"),
  23354. name: "Maw (Were)",
  23355. image: {
  23356. source: "./media/characters/dhari/were-maw.svg"
  23357. }
  23358. },
  23359. },
  23360. [
  23361. {
  23362. name: "Normal",
  23363. height: math.unit(6 + 3 / 12, "feet"),
  23364. default: true
  23365. },
  23366. ]
  23367. ))
  23368. characterMakers.push(() => makeCharacter(
  23369. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23370. {
  23371. anthro: {
  23372. height: math.unit(5 + 7 / 12, "feet"),
  23373. weight: math.unit(175, "lb"),
  23374. name: "Anthro",
  23375. image: {
  23376. source: "./media/characters/rena-dyne/anthro.svg",
  23377. extra: 1849 / 1785,
  23378. bottom: 0.005
  23379. }
  23380. },
  23381. taur: {
  23382. height: math.unit(15 + 6 / 12, "feet"),
  23383. weight: math.unit(8000, "lb"),
  23384. name: "Taur",
  23385. image: {
  23386. source: "./media/characters/rena-dyne/taur.svg",
  23387. extra: 2315 / 2234,
  23388. bottom: 0.033
  23389. }
  23390. },
  23391. },
  23392. [
  23393. {
  23394. name: "Normal",
  23395. height: math.unit(5 + 7 / 12, "feet"),
  23396. default: true
  23397. },
  23398. ]
  23399. ))
  23400. characterMakers.push(() => makeCharacter(
  23401. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23402. {
  23403. front: {
  23404. height: math.unit(8, "feet"),
  23405. weight: math.unit(600, "lb"),
  23406. name: "Front",
  23407. image: {
  23408. source: "./media/characters/weremeep/front.svg",
  23409. extra: 970/849,
  23410. bottom: 7/977
  23411. }
  23412. },
  23413. },
  23414. [
  23415. {
  23416. name: "Normal",
  23417. height: math.unit(8, "feet"),
  23418. default: true
  23419. },
  23420. {
  23421. name: "Lorg",
  23422. height: math.unit(12, "feet")
  23423. },
  23424. {
  23425. name: "Oh Lawd She Comin'",
  23426. height: math.unit(20, "feet")
  23427. },
  23428. ]
  23429. ))
  23430. characterMakers.push(() => makeCharacter(
  23431. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23432. {
  23433. front: {
  23434. height: math.unit(4, "feet"),
  23435. weight: math.unit(90, "lb"),
  23436. name: "Front",
  23437. image: {
  23438. source: "./media/characters/reza/front.svg",
  23439. extra: 1183 / 1111,
  23440. bottom: 0.017
  23441. }
  23442. },
  23443. back: {
  23444. height: math.unit(4, "feet"),
  23445. weight: math.unit(90, "lb"),
  23446. name: "Back",
  23447. image: {
  23448. source: "./media/characters/reza/back.svg",
  23449. extra: 1183 / 1111,
  23450. bottom: 0.01
  23451. }
  23452. },
  23453. drake: {
  23454. height: math.unit(30, "feet"),
  23455. weight: math.unit(246960, "lb"),
  23456. name: "Drake",
  23457. image: {
  23458. source: "./media/characters/reza/drake.svg",
  23459. extra: 2350 / 2024,
  23460. bottom: 60.7 / 2403
  23461. }
  23462. },
  23463. },
  23464. [
  23465. {
  23466. name: "Normal",
  23467. height: math.unit(4, "feet"),
  23468. default: true
  23469. },
  23470. ]
  23471. ))
  23472. characterMakers.push(() => makeCharacter(
  23473. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23474. {
  23475. side: {
  23476. height: math.unit(15, "feet"),
  23477. weight: math.unit(14, "tons"),
  23478. name: "Side",
  23479. image: {
  23480. source: "./media/characters/athea/side.svg",
  23481. extra: 960 / 540,
  23482. bottom: 0.003
  23483. }
  23484. },
  23485. sitting: {
  23486. height: math.unit(6 * 2.85, "feet"),
  23487. weight: math.unit(14, "tons"),
  23488. name: "Sitting",
  23489. image: {
  23490. source: "./media/characters/athea/sitting.svg",
  23491. extra: 621 / 581,
  23492. bottom: 0.075
  23493. }
  23494. },
  23495. maw: {
  23496. height: math.unit(7.59498031496063, "feet"),
  23497. name: "Maw",
  23498. image: {
  23499. source: "./media/characters/athea/maw.svg"
  23500. }
  23501. },
  23502. },
  23503. [
  23504. {
  23505. name: "Lap Cat",
  23506. height: math.unit(2.5, "feet")
  23507. },
  23508. {
  23509. name: "Minimacro",
  23510. height: math.unit(15, "feet"),
  23511. default: true
  23512. },
  23513. {
  23514. name: "Macro",
  23515. height: math.unit(120, "feet")
  23516. },
  23517. {
  23518. name: "Macro+",
  23519. height: math.unit(640, "feet")
  23520. },
  23521. {
  23522. name: "Colossus",
  23523. height: math.unit(2.2, "miles")
  23524. },
  23525. ]
  23526. ))
  23527. characterMakers.push(() => makeCharacter(
  23528. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23529. {
  23530. front: {
  23531. height: math.unit(8 + 8 / 12, "feet"),
  23532. weight: math.unit(130, "kg"),
  23533. name: "Front",
  23534. image: {
  23535. source: "./media/characters/seroko/front.svg",
  23536. extra: 1385 / 1280,
  23537. bottom: 0.025
  23538. }
  23539. },
  23540. back: {
  23541. height: math.unit(8 + 8 / 12, "feet"),
  23542. weight: math.unit(130, "kg"),
  23543. name: "Back",
  23544. image: {
  23545. source: "./media/characters/seroko/back.svg",
  23546. extra: 1369 / 1238,
  23547. bottom: 0.018
  23548. }
  23549. },
  23550. frontDressed: {
  23551. height: math.unit(8 + 8 / 12, "feet"),
  23552. weight: math.unit(130, "kg"),
  23553. name: "Front (Dressed)",
  23554. image: {
  23555. source: "./media/characters/seroko/front-dressed.svg",
  23556. extra: 1366 / 1275,
  23557. bottom: 0.03
  23558. }
  23559. },
  23560. },
  23561. [
  23562. {
  23563. name: "Normal",
  23564. height: math.unit(8 + 8 / 12, "feet"),
  23565. default: true
  23566. },
  23567. ]
  23568. ))
  23569. characterMakers.push(() => makeCharacter(
  23570. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23571. {
  23572. front: {
  23573. height: math.unit(5.5, "feet"),
  23574. weight: math.unit(160, "lb"),
  23575. name: "Front",
  23576. image: {
  23577. source: "./media/characters/quatzi/front.svg",
  23578. extra: 2346 / 2242,
  23579. bottom: 0.015
  23580. }
  23581. },
  23582. },
  23583. [
  23584. {
  23585. name: "Normal",
  23586. height: math.unit(5.5, "feet"),
  23587. default: true
  23588. },
  23589. {
  23590. name: "Big",
  23591. height: math.unit(7.7, "feet")
  23592. },
  23593. ]
  23594. ))
  23595. characterMakers.push(() => makeCharacter(
  23596. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23597. {
  23598. front: {
  23599. height: math.unit(5 + 11 / 12, "feet"),
  23600. weight: math.unit(180, "lb"),
  23601. name: "Front",
  23602. image: {
  23603. source: "./media/characters/sen/front.svg",
  23604. extra: 1321 / 1254,
  23605. bottom: 0.015
  23606. }
  23607. },
  23608. side: {
  23609. height: math.unit(5 + 11 / 12, "feet"),
  23610. weight: math.unit(180, "lb"),
  23611. name: "Side",
  23612. image: {
  23613. source: "./media/characters/sen/side.svg",
  23614. extra: 1321 / 1254,
  23615. bottom: 0.007
  23616. }
  23617. },
  23618. back: {
  23619. height: math.unit(5 + 11 / 12, "feet"),
  23620. weight: math.unit(180, "lb"),
  23621. name: "Back",
  23622. image: {
  23623. source: "./media/characters/sen/back.svg",
  23624. extra: 1321 / 1254
  23625. }
  23626. },
  23627. },
  23628. [
  23629. {
  23630. name: "Normal",
  23631. height: math.unit(5 + 11 / 12, "feet"),
  23632. default: true
  23633. },
  23634. ]
  23635. ))
  23636. characterMakers.push(() => makeCharacter(
  23637. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23638. {
  23639. front: {
  23640. height: math.unit(166.6, "cm"),
  23641. weight: math.unit(66.6, "kg"),
  23642. name: "Front",
  23643. image: {
  23644. source: "./media/characters/fruity/front.svg",
  23645. extra: 1510 / 1386,
  23646. bottom: 0.04
  23647. }
  23648. },
  23649. back: {
  23650. height: math.unit(166.6, "cm"),
  23651. weight: math.unit(66.6, "lb"),
  23652. name: "Back",
  23653. image: {
  23654. source: "./media/characters/fruity/back.svg",
  23655. extra: 1563 / 1435,
  23656. bottom: 0.005
  23657. }
  23658. },
  23659. },
  23660. [
  23661. {
  23662. name: "Normal",
  23663. height: math.unit(166.6, "cm"),
  23664. default: true
  23665. },
  23666. {
  23667. name: "Demonic",
  23668. height: math.unit(166.6, "feet")
  23669. },
  23670. ]
  23671. ))
  23672. characterMakers.push(() => makeCharacter(
  23673. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23674. {
  23675. side: {
  23676. height: math.unit(10, "feet"),
  23677. weight: math.unit(500, "lb"),
  23678. name: "Side",
  23679. image: {
  23680. source: "./media/characters/zost/side.svg",
  23681. extra: 2870/2533,
  23682. bottom: 252/3122
  23683. }
  23684. },
  23685. mawFront: {
  23686. height: math.unit(1.08, "meters"),
  23687. name: "Maw (Front)",
  23688. image: {
  23689. source: "./media/characters/zost/maw-front.svg"
  23690. }
  23691. },
  23692. mawSide: {
  23693. height: math.unit(2.66, "feet"),
  23694. name: "Maw (Side)",
  23695. image: {
  23696. source: "./media/characters/zost/maw-side.svg"
  23697. }
  23698. },
  23699. wingspan: {
  23700. height: math.unit(7.4, "feet"),
  23701. name: "Wingspan",
  23702. image: {
  23703. source: "./media/characters/zost/wingspan.svg"
  23704. }
  23705. },
  23706. },
  23707. [
  23708. {
  23709. name: "Normal",
  23710. height: math.unit(10, "feet"),
  23711. default: true
  23712. },
  23713. ]
  23714. ))
  23715. characterMakers.push(() => makeCharacter(
  23716. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23717. {
  23718. front: {
  23719. height: math.unit(5 + 4 / 12, "feet"),
  23720. weight: math.unit(120, "lb"),
  23721. name: "Front",
  23722. image: {
  23723. source: "./media/characters/luci/front.svg",
  23724. extra: 1985 / 1884,
  23725. bottom: 0.04
  23726. }
  23727. },
  23728. back: {
  23729. height: math.unit(5 + 4 / 12, "feet"),
  23730. weight: math.unit(120, "lb"),
  23731. name: "Back",
  23732. image: {
  23733. source: "./media/characters/luci/back.svg",
  23734. extra: 1892 / 1791,
  23735. bottom: 0.002
  23736. }
  23737. },
  23738. },
  23739. [
  23740. {
  23741. name: "Normal",
  23742. height: math.unit(5 + 4 / 12, "feet"),
  23743. default: true
  23744. },
  23745. ]
  23746. ))
  23747. characterMakers.push(() => makeCharacter(
  23748. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23749. {
  23750. front: {
  23751. height: math.unit(1500, "feet"),
  23752. weight: math.unit(3.8e6, "tons"),
  23753. name: "Front",
  23754. image: {
  23755. source: "./media/characters/2th/front.svg",
  23756. extra: 3489 / 3350,
  23757. bottom: 0.1
  23758. }
  23759. },
  23760. foot: {
  23761. height: math.unit(461, "feet"),
  23762. name: "Foot",
  23763. image: {
  23764. source: "./media/characters/2th/foot.svg"
  23765. }
  23766. },
  23767. },
  23768. [
  23769. {
  23770. name: "\"Micro\"",
  23771. height: math.unit(15 + 7 / 12, "feet")
  23772. },
  23773. {
  23774. name: "Normal",
  23775. height: math.unit(1500, "feet"),
  23776. default: true
  23777. },
  23778. {
  23779. name: "Macro",
  23780. height: math.unit(5000, "feet")
  23781. },
  23782. {
  23783. name: "Megamacro",
  23784. height: math.unit(15, "miles")
  23785. },
  23786. {
  23787. name: "Gigamacro",
  23788. height: math.unit(4000, "miles")
  23789. },
  23790. {
  23791. name: "Galactic",
  23792. height: math.unit(50, "AU")
  23793. },
  23794. ]
  23795. ))
  23796. characterMakers.push(() => makeCharacter(
  23797. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23798. {
  23799. front: {
  23800. height: math.unit(5 + 6 / 12, "feet"),
  23801. weight: math.unit(220, "lb"),
  23802. name: "Front",
  23803. image: {
  23804. source: "./media/characters/amethyst/front.svg",
  23805. extra: 2078 / 2040,
  23806. bottom: 0.045
  23807. }
  23808. },
  23809. back: {
  23810. height: math.unit(5 + 6 / 12, "feet"),
  23811. weight: math.unit(220, "lb"),
  23812. name: "Back",
  23813. image: {
  23814. source: "./media/characters/amethyst/back.svg",
  23815. extra: 2021 / 1989,
  23816. bottom: 0.02
  23817. }
  23818. },
  23819. },
  23820. [
  23821. {
  23822. name: "Normal",
  23823. height: math.unit(5 + 6 / 12, "feet"),
  23824. default: true
  23825. },
  23826. ]
  23827. ))
  23828. characterMakers.push(() => makeCharacter(
  23829. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23830. {
  23831. front: {
  23832. height: math.unit(4 + 11 / 12, "feet"),
  23833. weight: math.unit(120, "lb"),
  23834. name: "Front",
  23835. image: {
  23836. source: "./media/characters/yumi-akiyama/front.svg",
  23837. extra: 2638/2432,
  23838. bottom: 70/2708
  23839. }
  23840. },
  23841. back: {
  23842. height: math.unit(4 + 11 / 12, "feet"),
  23843. weight: math.unit(120, "lb"),
  23844. name: "Back",
  23845. image: {
  23846. source: "./media/characters/yumi-akiyama/back.svg",
  23847. extra: 2502/2397,
  23848. bottom: 80/2582
  23849. }
  23850. },
  23851. casual: {
  23852. height: math.unit(4 + 11 / 12, "feet"),
  23853. weight: math.unit(120, "lb"),
  23854. name: "Casual",
  23855. image: {
  23856. source: "./media/characters/yumi-akiyama/casual.svg",
  23857. extra: 958/887,
  23858. bottom: 41/999
  23859. }
  23860. },
  23861. jammies: {
  23862. height: math.unit(4 + 11 / 12, "feet"),
  23863. weight: math.unit(120, "lb"),
  23864. name: "Jammies",
  23865. image: {
  23866. source: "./media/characters/yumi-akiyama/jammies.svg",
  23867. extra: 958/894,
  23868. bottom: 37/995
  23869. }
  23870. },
  23871. warmWeather: {
  23872. height: math.unit(4 + 11 / 12, "feet"),
  23873. weight: math.unit(120, "lb"),
  23874. name: "Warm Weather",
  23875. image: {
  23876. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23877. extra: 929/865,
  23878. bottom: 76/1005
  23879. }
  23880. },
  23881. mouth: {
  23882. height: math.unit(0.35, "feet"),
  23883. name: "Mouth",
  23884. image: {
  23885. source: "./media/characters/yumi-akiyama/mouth.svg"
  23886. }
  23887. },
  23888. paws: {
  23889. height: math.unit(1.05, "feet"),
  23890. name: "Paws",
  23891. image: {
  23892. source: "./media/characters/yumi-akiyama/paws.svg"
  23893. }
  23894. },
  23895. cockRing: {
  23896. height: math.unit(0.225, "feet"),
  23897. name: "Cock Ring",
  23898. image: {
  23899. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  23900. }
  23901. },
  23902. },
  23903. [
  23904. {
  23905. name: "Galactic",
  23906. height: math.unit(50, "galaxies"),
  23907. default: true
  23908. },
  23909. {
  23910. name: "Universal",
  23911. height: math.unit(100, "universes")
  23912. },
  23913. ]
  23914. ))
  23915. characterMakers.push(() => makeCharacter(
  23916. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23917. {
  23918. front: {
  23919. height: math.unit(8, "feet"),
  23920. weight: math.unit(500, "lb"),
  23921. name: "Front",
  23922. image: {
  23923. source: "./media/characters/rifter-yrmori/front.svg",
  23924. extra: 1180 / 1125,
  23925. bottom: 0.02
  23926. }
  23927. },
  23928. back: {
  23929. height: math.unit(8, "feet"),
  23930. weight: math.unit(500, "lb"),
  23931. name: "Back",
  23932. image: {
  23933. source: "./media/characters/rifter-yrmori/back.svg",
  23934. extra: 1190 / 1145,
  23935. bottom: 0.001
  23936. }
  23937. },
  23938. wings: {
  23939. height: math.unit(7.75, "feet"),
  23940. weight: math.unit(500, "lb"),
  23941. name: "Wings",
  23942. image: {
  23943. source: "./media/characters/rifter-yrmori/wings.svg",
  23944. extra: 1357 / 1285
  23945. }
  23946. },
  23947. maw: {
  23948. height: math.unit(0.8, "feet"),
  23949. name: "Maw",
  23950. image: {
  23951. source: "./media/characters/rifter-yrmori/maw.svg"
  23952. }
  23953. },
  23954. mawfront: {
  23955. height: math.unit(1.45, "feet"),
  23956. name: "Maw (Front)",
  23957. image: {
  23958. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23959. }
  23960. },
  23961. },
  23962. [
  23963. {
  23964. name: "Normal",
  23965. height: math.unit(8, "feet"),
  23966. default: true
  23967. },
  23968. {
  23969. name: "Macro",
  23970. height: math.unit(42, "meters")
  23971. },
  23972. ]
  23973. ))
  23974. characterMakers.push(() => makeCharacter(
  23975. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23976. {
  23977. were: {
  23978. height: math.unit(25 + 6 / 12, "feet"),
  23979. weight: math.unit(10000, "lb"),
  23980. name: "Were",
  23981. image: {
  23982. source: "./media/characters/tahajin/were.svg",
  23983. extra: 801 / 770,
  23984. bottom: 0.042
  23985. }
  23986. },
  23987. aquatic: {
  23988. height: math.unit(6 + 4 / 12, "feet"),
  23989. weight: math.unit(160, "lb"),
  23990. name: "Aquatic",
  23991. image: {
  23992. source: "./media/characters/tahajin/aquatic.svg",
  23993. extra: 572 / 542,
  23994. bottom: 0.04
  23995. }
  23996. },
  23997. chow: {
  23998. height: math.unit(8 + 11 / 12, "feet"),
  23999. weight: math.unit(450, "lb"),
  24000. name: "Chow",
  24001. image: {
  24002. source: "./media/characters/tahajin/chow.svg",
  24003. extra: 660 / 640,
  24004. bottom: 0.015
  24005. }
  24006. },
  24007. demiNaga: {
  24008. height: math.unit(6 + 8 / 12, "feet"),
  24009. weight: math.unit(300, "lb"),
  24010. name: "Demi Naga",
  24011. image: {
  24012. source: "./media/characters/tahajin/demi-naga.svg",
  24013. extra: 643 / 615,
  24014. bottom: 0.1
  24015. }
  24016. },
  24017. data: {
  24018. height: math.unit(5, "inches"),
  24019. weight: math.unit(0.1, "lb"),
  24020. name: "Data",
  24021. image: {
  24022. source: "./media/characters/tahajin/data.svg"
  24023. }
  24024. },
  24025. fluu: {
  24026. height: math.unit(5 + 7 / 12, "feet"),
  24027. weight: math.unit(140, "lb"),
  24028. name: "Fluu",
  24029. image: {
  24030. source: "./media/characters/tahajin/fluu.svg",
  24031. extra: 628 / 592,
  24032. bottom: 0.02
  24033. }
  24034. },
  24035. starWarrior: {
  24036. height: math.unit(4 + 5 / 12, "feet"),
  24037. weight: math.unit(50, "lb"),
  24038. name: "Star Warrior",
  24039. image: {
  24040. source: "./media/characters/tahajin/star-warrior.svg"
  24041. }
  24042. },
  24043. },
  24044. [
  24045. {
  24046. name: "Normal",
  24047. height: math.unit(25 + 6 / 12, "feet"),
  24048. default: true
  24049. },
  24050. ]
  24051. ))
  24052. characterMakers.push(() => makeCharacter(
  24053. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24054. {
  24055. front: {
  24056. height: math.unit(8, "feet"),
  24057. weight: math.unit(350, "lb"),
  24058. name: "Front",
  24059. image: {
  24060. source: "./media/characters/gabira/front.svg",
  24061. extra: 1261/1154,
  24062. bottom: 51/1312
  24063. }
  24064. },
  24065. back: {
  24066. height: math.unit(8, "feet"),
  24067. weight: math.unit(350, "lb"),
  24068. name: "Back",
  24069. image: {
  24070. source: "./media/characters/gabira/back.svg",
  24071. extra: 1265/1163,
  24072. bottom: 46/1311
  24073. }
  24074. },
  24075. head: {
  24076. height: math.unit(2.85, "feet"),
  24077. name: "Head",
  24078. image: {
  24079. source: "./media/characters/gabira/head.svg"
  24080. }
  24081. },
  24082. },
  24083. [
  24084. {
  24085. name: "Normal",
  24086. height: math.unit(8, "feet"),
  24087. default: true
  24088. },
  24089. ]
  24090. ))
  24091. characterMakers.push(() => makeCharacter(
  24092. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24093. {
  24094. front: {
  24095. height: math.unit(5 + 3 / 12, "feet"),
  24096. weight: math.unit(137, "lb"),
  24097. name: "Front",
  24098. image: {
  24099. source: "./media/characters/sasha-katraine/front.svg",
  24100. extra: 1745/1694,
  24101. bottom: 37/1782
  24102. }
  24103. },
  24104. back: {
  24105. height: math.unit(5 + 3 / 12, "feet"),
  24106. weight: math.unit(137, "lb"),
  24107. name: "Back",
  24108. image: {
  24109. source: "./media/characters/sasha-katraine/back.svg",
  24110. extra: 1776/1699,
  24111. bottom: 26/1802
  24112. }
  24113. },
  24114. },
  24115. [
  24116. {
  24117. name: "Micro",
  24118. height: math.unit(5, "inches")
  24119. },
  24120. {
  24121. name: "Normal",
  24122. height: math.unit(5 + 3 / 12, "feet"),
  24123. default: true
  24124. },
  24125. ]
  24126. ))
  24127. characterMakers.push(() => makeCharacter(
  24128. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24129. {
  24130. side: {
  24131. height: math.unit(4, "inches"),
  24132. weight: math.unit(200, "grams"),
  24133. name: "Side",
  24134. image: {
  24135. source: "./media/characters/der/side.svg",
  24136. extra: 719 / 400,
  24137. bottom: 30.6 / 749.9187
  24138. }
  24139. },
  24140. },
  24141. [
  24142. {
  24143. name: "Micro",
  24144. height: math.unit(4, "inches"),
  24145. default: true
  24146. },
  24147. ]
  24148. ))
  24149. characterMakers.push(() => makeCharacter(
  24150. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24151. {
  24152. side: {
  24153. height: math.unit(30, "meters"),
  24154. weight: math.unit(700, "tonnes"),
  24155. name: "Side",
  24156. image: {
  24157. source: "./media/characters/fixerdragon/side.svg",
  24158. extra: (1293.0514 - 116.03) / 1106.86,
  24159. bottom: 116.03 / 1293.0514
  24160. }
  24161. },
  24162. },
  24163. [
  24164. {
  24165. name: "Planck",
  24166. height: math.unit(1.6e-35, "meters")
  24167. },
  24168. {
  24169. name: "Micro",
  24170. height: math.unit(0.4, "meters")
  24171. },
  24172. {
  24173. name: "Normal",
  24174. height: math.unit(30, "meters"),
  24175. default: true
  24176. },
  24177. {
  24178. name: "Megamacro",
  24179. height: math.unit(1.2, "megameters")
  24180. },
  24181. {
  24182. name: "Teramacro",
  24183. height: math.unit(130, "terameters")
  24184. },
  24185. {
  24186. name: "Yottamacro",
  24187. height: math.unit(6200, "yottameters")
  24188. },
  24189. ]
  24190. ));
  24191. characterMakers.push(() => makeCharacter(
  24192. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24193. {
  24194. front: {
  24195. height: math.unit(8, "feet"),
  24196. weight: math.unit(250, "lb"),
  24197. name: "Front",
  24198. image: {
  24199. source: "./media/characters/kite/front.svg",
  24200. extra: 2796 / 2659,
  24201. bottom: 0.002
  24202. }
  24203. },
  24204. },
  24205. [
  24206. {
  24207. name: "Normal",
  24208. height: math.unit(8, "feet"),
  24209. default: true
  24210. },
  24211. {
  24212. name: "Macro",
  24213. height: math.unit(360, "feet")
  24214. },
  24215. {
  24216. name: "Megamacro",
  24217. height: math.unit(1500, "feet")
  24218. },
  24219. ]
  24220. ))
  24221. characterMakers.push(() => makeCharacter(
  24222. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24223. {
  24224. anthro_front: {
  24225. height: math.unit(5 + 11/12, "feet"),
  24226. weight: math.unit(170, "lb"),
  24227. name: "Front",
  24228. image: {
  24229. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24230. extra: 1735/1585,
  24231. bottom: 96/1831
  24232. },
  24233. form: "anthro",
  24234. default: true
  24235. },
  24236. anthro_back: {
  24237. height: math.unit(5 + 11/12, "feet"),
  24238. weight: math.unit(170, "lb"),
  24239. name: "Back",
  24240. image: {
  24241. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24242. extra: 1749/1607,
  24243. bottom: 28/1777
  24244. },
  24245. form: "anthro"
  24246. },
  24247. anthro_male: {
  24248. height: math.unit(5 + 11/12, "feet"),
  24249. weight: math.unit(170, "lb"),
  24250. name: "Male",
  24251. image: {
  24252. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24253. extra: 1855/1713,
  24254. bottom: 63/1918
  24255. },
  24256. form: "anthro"
  24257. },
  24258. taur_front: {
  24259. height: math.unit(5 + 7/12, "feet"),
  24260. weight: math.unit(170, "lb"),
  24261. name: "Front",
  24262. image: {
  24263. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24264. extra: 1151/1059,
  24265. bottom: 356/1507
  24266. },
  24267. form: "taur",
  24268. default: true
  24269. },
  24270. anthro_frontDressed: {
  24271. height: math.unit(5 + 11/12, "feet"),
  24272. weight: math.unit(170, "lb"),
  24273. name: "Front (Dressed)",
  24274. image: {
  24275. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24276. extra: 1735/1585,
  24277. bottom: 96/1831
  24278. },
  24279. form: "anthro"
  24280. },
  24281. anthro_backDressed: {
  24282. height: math.unit(5 + 11/12, "feet"),
  24283. weight: math.unit(170, "lb"),
  24284. name: "Back (Dressed)",
  24285. image: {
  24286. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24287. extra: 1749/1607,
  24288. bottom: 28/1777
  24289. },
  24290. form: "anthro"
  24291. },
  24292. anthro_maleDressed: {
  24293. height: math.unit(5 + 11/12, "feet"),
  24294. weight: math.unit(170, "lb"),
  24295. name: "Male (Dressed)",
  24296. image: {
  24297. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24298. extra: 1855/1713,
  24299. bottom: 63/1918
  24300. },
  24301. form: "anthro"
  24302. },
  24303. taur_frontDressed: {
  24304. height: math.unit(5 + 7/12, "feet"),
  24305. weight: math.unit(170, "lb"),
  24306. name: "Front (Dressed)",
  24307. image: {
  24308. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24309. extra: 1151/1059,
  24310. bottom: 356/1507
  24311. },
  24312. form: "taur"
  24313. },
  24314. maw: {
  24315. height: math.unit(1.46, "feet"),
  24316. name: "Maw",
  24317. image: {
  24318. source: "./media/characters/poojawa-vynar/maw.svg"
  24319. },
  24320. allForms: true
  24321. },
  24322. head: {
  24323. height: math.unit(2.34, "feet"),
  24324. name: "Head",
  24325. image: {
  24326. source: "./media/characters/poojawa-vynar/head.svg"
  24327. },
  24328. allForms: true
  24329. },
  24330. leftPaw: {
  24331. height: math.unit(1.72, "feet"),
  24332. name: "Left Paw",
  24333. image: {
  24334. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24335. },
  24336. allForms: true
  24337. },
  24338. rightPaw: {
  24339. height: math.unit(1.61, "feet"),
  24340. name: "Right Paw",
  24341. image: {
  24342. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24343. },
  24344. allForms: true
  24345. },
  24346. toering: {
  24347. height: math.unit(2.9, "inches"),
  24348. name: "Toering",
  24349. image: {
  24350. source: "./media/characters/poojawa-vynar/toering.svg"
  24351. },
  24352. allForms: true
  24353. },
  24354. shaft: {
  24355. height: math.unit(0.625, "feet"),
  24356. name: "Shaft",
  24357. image: {
  24358. source: "./media/characters/poojawa-vynar/shaft.svg"
  24359. },
  24360. allForms: true
  24361. },
  24362. spade: {
  24363. height: math.unit(0.42, "feet"),
  24364. name: "Spade",
  24365. image: {
  24366. source: "./media/characters/poojawa-vynar/spade.svg"
  24367. },
  24368. allForms: true
  24369. },
  24370. },
  24371. [
  24372. {
  24373. name: "Shortstack",
  24374. height: math.unit(4, "feet"),
  24375. form: "anthro"
  24376. },
  24377. {
  24378. name: "Normal",
  24379. height: math.unit(5 + 11 / 12, "feet"),
  24380. form: "anthro",
  24381. default: true
  24382. },
  24383. {
  24384. name: "Tauric",
  24385. height: math.unit(4, "meters"),
  24386. form: "taur",
  24387. default: true
  24388. },
  24389. ],
  24390. {
  24391. "anthro": {
  24392. name: "Anthro",
  24393. default: true
  24394. },
  24395. "taur": {
  24396. name: "Taur",
  24397. },
  24398. }
  24399. ))
  24400. characterMakers.push(() => makeCharacter(
  24401. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24402. {
  24403. front: {
  24404. height: math.unit(293, "meters"),
  24405. weight: math.unit(70400, "tons"),
  24406. name: "Front",
  24407. image: {
  24408. source: "./media/characters/violette/front.svg",
  24409. extra: 1227 / 1180,
  24410. bottom: 0.005
  24411. }
  24412. },
  24413. back: {
  24414. height: math.unit(293, "meters"),
  24415. weight: math.unit(70400, "tons"),
  24416. name: "Back",
  24417. image: {
  24418. source: "./media/characters/violette/back.svg",
  24419. extra: 1227 / 1180,
  24420. bottom: 0.005
  24421. }
  24422. },
  24423. },
  24424. [
  24425. {
  24426. name: "Macro",
  24427. height: math.unit(293, "meters"),
  24428. default: true
  24429. },
  24430. ]
  24431. ))
  24432. characterMakers.push(() => makeCharacter(
  24433. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24434. {
  24435. front: {
  24436. height: math.unit(1050, "feet"),
  24437. weight: math.unit(200000, "tons"),
  24438. name: "Front",
  24439. image: {
  24440. source: "./media/characters/alessandra/front.svg",
  24441. extra: 960 / 912,
  24442. bottom: 0.06
  24443. }
  24444. },
  24445. },
  24446. [
  24447. {
  24448. name: "Macro",
  24449. height: math.unit(1050, "feet")
  24450. },
  24451. {
  24452. name: "Macro+",
  24453. height: math.unit(900, "meters"),
  24454. default: true
  24455. },
  24456. ]
  24457. ))
  24458. characterMakers.push(() => makeCharacter(
  24459. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24460. {
  24461. front: {
  24462. height: math.unit(5, "feet"),
  24463. weight: math.unit(187, "lb"),
  24464. name: "Front",
  24465. image: {
  24466. source: "./media/characters/person/front.svg",
  24467. extra: 3087 / 2945,
  24468. bottom: 91 / 3181
  24469. }
  24470. },
  24471. },
  24472. [
  24473. {
  24474. name: "Micro",
  24475. height: math.unit(3, "inches")
  24476. },
  24477. {
  24478. name: "Normal",
  24479. height: math.unit(5, "feet"),
  24480. default: true
  24481. },
  24482. {
  24483. name: "Macro",
  24484. height: math.unit(90, "feet")
  24485. },
  24486. {
  24487. name: "Max Size",
  24488. height: math.unit(280, "feet")
  24489. },
  24490. ]
  24491. ))
  24492. characterMakers.push(() => makeCharacter(
  24493. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24494. {
  24495. front: {
  24496. height: math.unit(4.5, "meters"),
  24497. weight: math.unit(3200, "lb"),
  24498. name: "Front",
  24499. image: {
  24500. source: "./media/characters/ty/front.svg",
  24501. extra: 1038 / 960,
  24502. bottom: 31.156 / 1068
  24503. }
  24504. },
  24505. back: {
  24506. height: math.unit(4.5, "meters"),
  24507. weight: math.unit(3200, "lb"),
  24508. name: "Back",
  24509. image: {
  24510. source: "./media/characters/ty/back.svg",
  24511. extra: 1044 / 966,
  24512. bottom: 7.48 / 1049
  24513. }
  24514. },
  24515. },
  24516. [
  24517. {
  24518. name: "Normal",
  24519. height: math.unit(4.5, "meters"),
  24520. default: true
  24521. },
  24522. ]
  24523. ))
  24524. characterMakers.push(() => makeCharacter(
  24525. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24526. {
  24527. front: {
  24528. height: math.unit(5 + 4 / 12, "feet"),
  24529. weight: math.unit(115, "lb"),
  24530. name: "Front",
  24531. image: {
  24532. source: "./media/characters/rocky/front.svg",
  24533. extra: 1012 / 975,
  24534. bottom: 54 / 1066
  24535. }
  24536. },
  24537. },
  24538. [
  24539. {
  24540. name: "Normal",
  24541. height: math.unit(5 + 4 / 12, "feet"),
  24542. default: true
  24543. },
  24544. ]
  24545. ))
  24546. characterMakers.push(() => makeCharacter(
  24547. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24548. {
  24549. upright: {
  24550. height: math.unit(6, "meters"),
  24551. weight: math.unit(4000, "kg"),
  24552. name: "Upright",
  24553. image: {
  24554. source: "./media/characters/ruin/upright.svg",
  24555. extra: 668 / 661,
  24556. bottom: 42 / 799.8396
  24557. }
  24558. },
  24559. },
  24560. [
  24561. {
  24562. name: "Normal",
  24563. height: math.unit(6, "meters"),
  24564. default: true
  24565. },
  24566. ]
  24567. ))
  24568. characterMakers.push(() => makeCharacter(
  24569. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24570. {
  24571. front: {
  24572. height: math.unit(5, "feet"),
  24573. weight: math.unit(106, "lb"),
  24574. name: "Front",
  24575. image: {
  24576. source: "./media/characters/robin/front.svg",
  24577. extra: 862 / 799,
  24578. bottom: 42.4 / 914.8856
  24579. }
  24580. },
  24581. },
  24582. [
  24583. {
  24584. name: "Normal",
  24585. height: math.unit(5, "feet"),
  24586. default: true
  24587. },
  24588. ]
  24589. ))
  24590. characterMakers.push(() => makeCharacter(
  24591. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24592. {
  24593. side: {
  24594. height: math.unit(3, "feet"),
  24595. weight: math.unit(225, "lb"),
  24596. name: "Side",
  24597. image: {
  24598. source: "./media/characters/saian/side.svg",
  24599. extra: 566 / 356,
  24600. bottom: 79.7 / 643
  24601. }
  24602. },
  24603. maw: {
  24604. height: math.unit(2.85, "feet"),
  24605. name: "Maw",
  24606. image: {
  24607. source: "./media/characters/saian/maw.svg"
  24608. }
  24609. },
  24610. },
  24611. [
  24612. {
  24613. name: "Normal",
  24614. height: math.unit(3, "feet"),
  24615. default: true
  24616. },
  24617. ]
  24618. ))
  24619. characterMakers.push(() => makeCharacter(
  24620. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24621. {
  24622. side: {
  24623. height: math.unit(8, "feet"),
  24624. weight: math.unit(300, "lb"),
  24625. name: "Side",
  24626. image: {
  24627. source: "./media/characters/equus-silvermane/side.svg",
  24628. extra: 2176 / 2050,
  24629. bottom: 65.7 / 2245
  24630. }
  24631. },
  24632. front: {
  24633. height: math.unit(8, "feet"),
  24634. weight: math.unit(300, "lb"),
  24635. name: "Front",
  24636. image: {
  24637. source: "./media/characters/equus-silvermane/front.svg",
  24638. extra: 4633 / 4400,
  24639. bottom: 71.3 / 4706.915
  24640. }
  24641. },
  24642. sideStepping: {
  24643. height: math.unit(8, "feet"),
  24644. weight: math.unit(300, "lb"),
  24645. name: "Side (Stepping)",
  24646. image: {
  24647. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24648. extra: 1968 / 1860,
  24649. bottom: 16.4 / 1989
  24650. }
  24651. },
  24652. },
  24653. [
  24654. {
  24655. name: "Normal",
  24656. height: math.unit(8, "feet")
  24657. },
  24658. {
  24659. name: "Minimacro",
  24660. height: math.unit(75, "feet"),
  24661. default: true
  24662. },
  24663. {
  24664. name: "Macro",
  24665. height: math.unit(150, "feet")
  24666. },
  24667. {
  24668. name: "Macro+",
  24669. height: math.unit(1000, "feet")
  24670. },
  24671. {
  24672. name: "Megamacro",
  24673. height: math.unit(1, "mile")
  24674. },
  24675. ]
  24676. ))
  24677. characterMakers.push(() => makeCharacter(
  24678. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24679. {
  24680. side: {
  24681. height: math.unit(20, "feet"),
  24682. weight: math.unit(30000, "kg"),
  24683. name: "Side",
  24684. image: {
  24685. source: "./media/characters/windar/side.svg",
  24686. extra: 1491 / 1248,
  24687. bottom: 82.56 / 1568
  24688. }
  24689. },
  24690. },
  24691. [
  24692. {
  24693. name: "Normal",
  24694. height: math.unit(20, "feet"),
  24695. default: true
  24696. },
  24697. ]
  24698. ))
  24699. characterMakers.push(() => makeCharacter(
  24700. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24701. {
  24702. side: {
  24703. height: math.unit(15.66, "feet"),
  24704. weight: math.unit(150, "lb"),
  24705. name: "Side",
  24706. image: {
  24707. source: "./media/characters/melody/side.svg",
  24708. extra: 1097 / 944,
  24709. bottom: 11.8 / 1109
  24710. }
  24711. },
  24712. sideOutfit: {
  24713. height: math.unit(15.66, "feet"),
  24714. weight: math.unit(150, "lb"),
  24715. name: "Side (Outfit)",
  24716. image: {
  24717. source: "./media/characters/melody/side-outfit.svg",
  24718. extra: 1097 / 944,
  24719. bottom: 11.8 / 1109
  24720. }
  24721. },
  24722. },
  24723. [
  24724. {
  24725. name: "Normal",
  24726. height: math.unit(15.66, "feet"),
  24727. default: true
  24728. },
  24729. ]
  24730. ))
  24731. characterMakers.push(() => makeCharacter(
  24732. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24733. {
  24734. armoredFront: {
  24735. height: math.unit(8, "feet"),
  24736. weight: math.unit(325, "lb"),
  24737. name: "Front",
  24738. image: {
  24739. source: "./media/characters/windera/armored-front.svg",
  24740. extra: 1830/1598,
  24741. bottom: 151/1981
  24742. },
  24743. form: "armored",
  24744. default: true
  24745. },
  24746. macroFront: {
  24747. height: math.unit(70, "feet"),
  24748. weight: math.unit(315453, "lb"),
  24749. name: "Front",
  24750. image: {
  24751. source: "./media/characters/windera/macro-front.svg",
  24752. extra: 963/883,
  24753. bottom: 23/986
  24754. },
  24755. form: "macro",
  24756. default: true
  24757. },
  24758. },
  24759. [
  24760. {
  24761. name: "Normal",
  24762. height: math.unit(8, "feet"),
  24763. default: true,
  24764. form: "armored"
  24765. },
  24766. {
  24767. name: "Normal",
  24768. height: math.unit(70, "feet"),
  24769. default: true,
  24770. form: "macro"
  24771. },
  24772. ],
  24773. {
  24774. "armored": {
  24775. name: "Armored",
  24776. default: true
  24777. },
  24778. "macro": {
  24779. name: "Macro",
  24780. },
  24781. }
  24782. ))
  24783. characterMakers.push(() => makeCharacter(
  24784. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24785. {
  24786. front: {
  24787. height: math.unit(28.75, "feet"),
  24788. weight: math.unit(2000, "kg"),
  24789. name: "Front",
  24790. image: {
  24791. source: "./media/characters/sonear/front.svg",
  24792. extra: 1041.1 / 964.9,
  24793. bottom: 53.7 / 1096.6
  24794. }
  24795. },
  24796. },
  24797. [
  24798. {
  24799. name: "Normal",
  24800. height: math.unit(28.75, "feet"),
  24801. default: true
  24802. },
  24803. ]
  24804. ))
  24805. characterMakers.push(() => makeCharacter(
  24806. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24807. {
  24808. side: {
  24809. height: math.unit(25.5, "feet"),
  24810. weight: math.unit(23000, "kg"),
  24811. name: "Side",
  24812. image: {
  24813. source: "./media/characters/kanara/side.svg"
  24814. }
  24815. },
  24816. },
  24817. [
  24818. {
  24819. name: "Normal",
  24820. height: math.unit(25.5, "feet"),
  24821. default: true
  24822. },
  24823. ]
  24824. ))
  24825. characterMakers.push(() => makeCharacter(
  24826. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24827. {
  24828. side: {
  24829. height: math.unit(10, "feet"),
  24830. weight: math.unit(1000, "kg"),
  24831. name: "Side",
  24832. image: {
  24833. source: "./media/characters/ereus/side.svg",
  24834. extra: 1157 / 959,
  24835. bottom: 153 / 1312.5
  24836. }
  24837. },
  24838. },
  24839. [
  24840. {
  24841. name: "Normal",
  24842. height: math.unit(10, "feet"),
  24843. default: true
  24844. },
  24845. ]
  24846. ))
  24847. characterMakers.push(() => makeCharacter(
  24848. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24849. {
  24850. side: {
  24851. height: math.unit(4.5, "feet"),
  24852. weight: math.unit(500, "lb"),
  24853. name: "Side",
  24854. image: {
  24855. source: "./media/characters/e-ter/side.svg",
  24856. extra: 1550 / 1248,
  24857. bottom: 146 / 1694
  24858. }
  24859. },
  24860. },
  24861. [
  24862. {
  24863. name: "Normal",
  24864. height: math.unit(4.5, "feet"),
  24865. default: true
  24866. },
  24867. ]
  24868. ))
  24869. characterMakers.push(() => makeCharacter(
  24870. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24871. {
  24872. side: {
  24873. height: math.unit(9.7, "feet"),
  24874. weight: math.unit(4000, "kg"),
  24875. name: "Side",
  24876. image: {
  24877. source: "./media/characters/yamie/side.svg"
  24878. }
  24879. },
  24880. },
  24881. [
  24882. {
  24883. name: "Normal",
  24884. height: math.unit(9.7, "feet"),
  24885. default: true
  24886. },
  24887. ]
  24888. ))
  24889. characterMakers.push(() => makeCharacter(
  24890. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24891. {
  24892. front: {
  24893. height: math.unit(50, "feet"),
  24894. weight: math.unit(50000, "kg"),
  24895. name: "Front",
  24896. image: {
  24897. source: "./media/characters/anders/front.svg",
  24898. extra: 570 / 539,
  24899. bottom: 14.7 / 586.7
  24900. }
  24901. },
  24902. },
  24903. [
  24904. {
  24905. name: "Large",
  24906. height: math.unit(50, "feet")
  24907. },
  24908. {
  24909. name: "Macro",
  24910. height: math.unit(2000, "feet"),
  24911. default: true
  24912. },
  24913. {
  24914. name: "Megamacro",
  24915. height: math.unit(12, "miles")
  24916. },
  24917. ]
  24918. ))
  24919. characterMakers.push(() => makeCharacter(
  24920. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24921. {
  24922. front: {
  24923. height: math.unit(7 + 2 / 12, "feet"),
  24924. weight: math.unit(300, "lb"),
  24925. name: "Front",
  24926. image: {
  24927. source: "./media/characters/reban/front.svg",
  24928. extra: 1287/1212,
  24929. bottom: 148/1435
  24930. }
  24931. },
  24932. head: {
  24933. height: math.unit(1.95, "feet"),
  24934. name: "Head",
  24935. image: {
  24936. source: "./media/characters/reban/head.svg"
  24937. }
  24938. },
  24939. maw: {
  24940. height: math.unit(0.95, "feet"),
  24941. name: "Maw",
  24942. image: {
  24943. source: "./media/characters/reban/maw.svg"
  24944. }
  24945. },
  24946. foot: {
  24947. height: math.unit(1.65, "feet"),
  24948. name: "Foot",
  24949. image: {
  24950. source: "./media/characters/reban/foot.svg"
  24951. }
  24952. },
  24953. dick: {
  24954. height: math.unit(7 / 5, "feet"),
  24955. name: "Dick",
  24956. image: {
  24957. source: "./media/characters/reban/dick.svg"
  24958. }
  24959. },
  24960. },
  24961. [
  24962. {
  24963. name: "Natural Height",
  24964. height: math.unit(7 + 2 / 12, "feet")
  24965. },
  24966. {
  24967. name: "Macro",
  24968. height: math.unit(500, "feet"),
  24969. default: true
  24970. },
  24971. {
  24972. name: "Canon Height",
  24973. height: math.unit(50, "AU")
  24974. },
  24975. ]
  24976. ))
  24977. characterMakers.push(() => makeCharacter(
  24978. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24979. {
  24980. front: {
  24981. height: math.unit(6, "feet"),
  24982. weight: math.unit(150, "lb"),
  24983. name: "Front",
  24984. image: {
  24985. source: "./media/characters/terrance-keayes/front.svg",
  24986. extra: 1.005,
  24987. bottom: 151 / 1615
  24988. }
  24989. },
  24990. side: {
  24991. height: math.unit(6, "feet"),
  24992. weight: math.unit(150, "lb"),
  24993. name: "Side",
  24994. image: {
  24995. source: "./media/characters/terrance-keayes/side.svg",
  24996. extra: 1.005,
  24997. bottom: 129.4 / 1544
  24998. }
  24999. },
  25000. back: {
  25001. height: math.unit(6, "feet"),
  25002. weight: math.unit(150, "lb"),
  25003. name: "Back",
  25004. image: {
  25005. source: "./media/characters/terrance-keayes/back.svg",
  25006. extra: 1.005,
  25007. bottom: 58.4 / 1557.3
  25008. }
  25009. },
  25010. dick: {
  25011. height: math.unit(6 * 0.208, "feet"),
  25012. name: "Dick",
  25013. image: {
  25014. source: "./media/characters/terrance-keayes/dick.svg"
  25015. }
  25016. },
  25017. },
  25018. [
  25019. {
  25020. name: "Canon Height",
  25021. height: math.unit(35, "miles"),
  25022. default: true
  25023. },
  25024. ]
  25025. ))
  25026. characterMakers.push(() => makeCharacter(
  25027. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25028. {
  25029. front: {
  25030. height: math.unit(6, "feet"),
  25031. weight: math.unit(150, "lb"),
  25032. name: "Front",
  25033. image: {
  25034. source: "./media/characters/ofelia/front.svg",
  25035. extra: 1130/1117,
  25036. bottom: 91/1221
  25037. }
  25038. },
  25039. back: {
  25040. height: math.unit(6, "feet"),
  25041. weight: math.unit(150, "lb"),
  25042. name: "Back",
  25043. image: {
  25044. source: "./media/characters/ofelia/back.svg",
  25045. extra: 1172/1159,
  25046. bottom: 28/1200
  25047. }
  25048. },
  25049. maw: {
  25050. height: math.unit(1, "feet"),
  25051. name: "Maw",
  25052. image: {
  25053. source: "./media/characters/ofelia/maw.svg"
  25054. }
  25055. },
  25056. foot: {
  25057. height: math.unit(1.949, "feet"),
  25058. name: "Foot",
  25059. image: {
  25060. source: "./media/characters/ofelia/foot.svg"
  25061. }
  25062. },
  25063. },
  25064. [
  25065. {
  25066. name: "Canon Height",
  25067. height: math.unit(2000, "miles"),
  25068. default: true
  25069. },
  25070. ]
  25071. ))
  25072. characterMakers.push(() => makeCharacter(
  25073. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25074. {
  25075. front: {
  25076. height: math.unit(6, "feet"),
  25077. weight: math.unit(150, "lb"),
  25078. name: "Front",
  25079. image: {
  25080. source: "./media/characters/samuel/front.svg",
  25081. extra: 265 / 258,
  25082. bottom: 2 / 266.1566
  25083. }
  25084. },
  25085. },
  25086. [
  25087. {
  25088. name: "Macro",
  25089. height: math.unit(100, "feet"),
  25090. default: true
  25091. },
  25092. {
  25093. name: "Full Size",
  25094. height: math.unit(1000, "miles")
  25095. },
  25096. ]
  25097. ))
  25098. characterMakers.push(() => makeCharacter(
  25099. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25100. {
  25101. front: {
  25102. height: math.unit(6, "feet"),
  25103. weight: math.unit(300, "lb"),
  25104. name: "Front",
  25105. image: {
  25106. source: "./media/characters/beishir-kiel/front.svg",
  25107. extra: 569 / 547,
  25108. bottom: 41.9 / 609
  25109. }
  25110. },
  25111. maw: {
  25112. height: math.unit(6 * 0.202, "feet"),
  25113. name: "Maw",
  25114. image: {
  25115. source: "./media/characters/beishir-kiel/maw.svg"
  25116. }
  25117. },
  25118. },
  25119. [
  25120. {
  25121. name: "Macro",
  25122. height: math.unit(300, "feet"),
  25123. default: true
  25124. },
  25125. ]
  25126. ))
  25127. characterMakers.push(() => makeCharacter(
  25128. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25129. {
  25130. front: {
  25131. height: math.unit(5 + 7/12, "feet"),
  25132. weight: math.unit(120, "lb"),
  25133. name: "Front",
  25134. image: {
  25135. source: "./media/characters/logan-grey/front.svg",
  25136. extra: 1836/1738,
  25137. bottom: 108/1944
  25138. }
  25139. },
  25140. back: {
  25141. height: math.unit(5 + 7/12, "feet"),
  25142. weight: math.unit(120, "lb"),
  25143. name: "Back",
  25144. image: {
  25145. source: "./media/characters/logan-grey/back.svg",
  25146. extra: 1880/1794,
  25147. bottom: 24/1904
  25148. }
  25149. },
  25150. frontSfw: {
  25151. height: math.unit(5 + 7/12, "feet"),
  25152. weight: math.unit(120, "lb"),
  25153. name: "Front (SFW)",
  25154. image: {
  25155. source: "./media/characters/logan-grey/front-sfw.svg",
  25156. extra: 1836/1738,
  25157. bottom: 108/1944
  25158. }
  25159. },
  25160. backSfw: {
  25161. height: math.unit(5 + 7/12, "feet"),
  25162. weight: math.unit(120, "lb"),
  25163. name: "Back (SFW)",
  25164. image: {
  25165. source: "./media/characters/logan-grey/back-sfw.svg",
  25166. extra: 1880/1794,
  25167. bottom: 24/1904
  25168. }
  25169. },
  25170. hands: {
  25171. height: math.unit(0.84, "feet"),
  25172. name: "Hands",
  25173. image: {
  25174. source: "./media/characters/logan-grey/hands.svg"
  25175. }
  25176. },
  25177. paws: {
  25178. height: math.unit(0.72, "feet"),
  25179. name: "Paws",
  25180. image: {
  25181. source: "./media/characters/logan-grey/paws.svg"
  25182. }
  25183. },
  25184. cock: {
  25185. height: math.unit(1.45, "feet"),
  25186. name: "Cock",
  25187. image: {
  25188. source: "./media/characters/logan-grey/cock.svg"
  25189. }
  25190. },
  25191. cockAlt: {
  25192. height: math.unit(1.437, "feet"),
  25193. name: "Cock (alt)",
  25194. image: {
  25195. source: "./media/characters/logan-grey/cock-alt.svg"
  25196. }
  25197. },
  25198. },
  25199. [
  25200. {
  25201. name: "Normal",
  25202. height: math.unit(5 + 8 / 12, "feet")
  25203. },
  25204. {
  25205. name: "The 500 Foot Femboy",
  25206. height: math.unit(500, "feet"),
  25207. default: true
  25208. },
  25209. {
  25210. name: "Megmacro",
  25211. height: math.unit(20, "miles")
  25212. },
  25213. ]
  25214. ))
  25215. characterMakers.push(() => makeCharacter(
  25216. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25217. {
  25218. front: {
  25219. height: math.unit(8 + 2 / 12, "feet"),
  25220. weight: math.unit(275, "lb"),
  25221. name: "Front",
  25222. image: {
  25223. source: "./media/characters/draganta/front.svg",
  25224. extra: 1177 / 1135,
  25225. bottom: 33.46 / 1212.1
  25226. }
  25227. },
  25228. },
  25229. [
  25230. {
  25231. name: "Normal",
  25232. height: math.unit(8 + 6 / 12, "feet"),
  25233. default: true
  25234. },
  25235. {
  25236. name: "Macro",
  25237. height: math.unit(150, "feet")
  25238. },
  25239. {
  25240. name: "Megamacro",
  25241. height: math.unit(1000, "miles")
  25242. },
  25243. ]
  25244. ))
  25245. characterMakers.push(() => makeCharacter(
  25246. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25247. {
  25248. front: {
  25249. height: math.unit(1.72, "m"),
  25250. weight: math.unit(80, "lb"),
  25251. name: "Front",
  25252. image: {
  25253. source: "./media/characters/voski/front.svg",
  25254. extra: 2076.22 / 2022.4,
  25255. bottom: 102.7 / 2177.3866
  25256. }
  25257. },
  25258. frontFlaccid: {
  25259. height: math.unit(1.72, "m"),
  25260. weight: math.unit(80, "lb"),
  25261. name: "Front (Flaccid)",
  25262. image: {
  25263. source: "./media/characters/voski/front-flaccid.svg",
  25264. extra: 2076.22 / 2022.4,
  25265. bottom: 102.7 / 2177.3866
  25266. }
  25267. },
  25268. frontErect: {
  25269. height: math.unit(1.72, "m"),
  25270. weight: math.unit(80, "lb"),
  25271. name: "Front (Erect)",
  25272. image: {
  25273. source: "./media/characters/voski/front-erect.svg",
  25274. extra: 2076.22 / 2022.4,
  25275. bottom: 102.7 / 2177.3866
  25276. }
  25277. },
  25278. back: {
  25279. height: math.unit(1.72, "m"),
  25280. weight: math.unit(80, "lb"),
  25281. name: "Back",
  25282. image: {
  25283. source: "./media/characters/voski/back.svg",
  25284. extra: 2104 / 2051,
  25285. bottom: 10.45 / 2113.63
  25286. }
  25287. },
  25288. },
  25289. [
  25290. {
  25291. name: "Normal",
  25292. height: math.unit(1.72, "m")
  25293. },
  25294. {
  25295. name: "Macro",
  25296. height: math.unit(55, "m"),
  25297. default: true
  25298. },
  25299. {
  25300. name: "Macro+",
  25301. height: math.unit(300, "m")
  25302. },
  25303. {
  25304. name: "Macro++",
  25305. height: math.unit(700, "m")
  25306. },
  25307. {
  25308. name: "Macro+++",
  25309. height: math.unit(4500, "m")
  25310. },
  25311. {
  25312. name: "Macro++++",
  25313. height: math.unit(45, "km")
  25314. },
  25315. {
  25316. name: "Macro+++++",
  25317. height: math.unit(1220, "km")
  25318. },
  25319. ]
  25320. ))
  25321. characterMakers.push(() => makeCharacter(
  25322. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25323. {
  25324. front: {
  25325. height: math.unit(2.3, "m"),
  25326. weight: math.unit(304, "kg"),
  25327. name: "Front",
  25328. image: {
  25329. source: "./media/characters/icowom-lee/front.svg",
  25330. extra: 985 / 955,
  25331. bottom: 25.4 / 1012
  25332. }
  25333. },
  25334. fronttentacles: {
  25335. height: math.unit(2.3, "m"),
  25336. weight: math.unit(304, "kg"),
  25337. name: "Front-tentacles",
  25338. image: {
  25339. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25340. extra: 985 / 955,
  25341. bottom: 25.4 / 1012
  25342. }
  25343. },
  25344. back: {
  25345. height: math.unit(2.3, "m"),
  25346. weight: math.unit(304, "kg"),
  25347. name: "Back",
  25348. image: {
  25349. source: "./media/characters/icowom-lee/back.svg",
  25350. extra: 975 / 954,
  25351. bottom: 9.5 / 985
  25352. }
  25353. },
  25354. backtentacles: {
  25355. height: math.unit(2.3, "m"),
  25356. weight: math.unit(304, "kg"),
  25357. name: "Back-tentacles",
  25358. image: {
  25359. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25360. extra: 975 / 954,
  25361. bottom: 9.5 / 985
  25362. }
  25363. },
  25364. frontDressed: {
  25365. height: math.unit(2.3, "m"),
  25366. weight: math.unit(304, "kg"),
  25367. name: "Front (Dressed)",
  25368. image: {
  25369. source: "./media/characters/icowom-lee/front-dressed.svg",
  25370. extra: 3076 / 2933,
  25371. bottom: 51.4 / 3125.1889
  25372. }
  25373. },
  25374. rump: {
  25375. height: math.unit(0.776, "meters"),
  25376. name: "Rump",
  25377. image: {
  25378. source: "./media/characters/icowom-lee/rump.svg"
  25379. }
  25380. },
  25381. genitals: {
  25382. height: math.unit(0.78, "meters"),
  25383. name: "Genitals",
  25384. image: {
  25385. source: "./media/characters/icowom-lee/genitals.svg"
  25386. }
  25387. },
  25388. },
  25389. [
  25390. {
  25391. name: "Normal",
  25392. height: math.unit(2.3, "meters"),
  25393. default: true
  25394. },
  25395. {
  25396. name: "Macro",
  25397. height: math.unit(94, "meters"),
  25398. default: true
  25399. },
  25400. ]
  25401. ))
  25402. characterMakers.push(() => makeCharacter(
  25403. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25404. {
  25405. front: {
  25406. height: math.unit(22, "meters"),
  25407. weight: math.unit(21000, "kg"),
  25408. name: "Front",
  25409. image: {
  25410. source: "./media/characters/shock-diamond/front.svg",
  25411. extra: 2204 / 2053,
  25412. bottom: 65 / 2239.47
  25413. }
  25414. },
  25415. frontNude: {
  25416. height: math.unit(22, "meters"),
  25417. weight: math.unit(21000, "kg"),
  25418. name: "Front (Nude)",
  25419. image: {
  25420. source: "./media/characters/shock-diamond/front-nude.svg",
  25421. extra: 2514 / 2285,
  25422. bottom: 13 / 2527.56
  25423. }
  25424. },
  25425. },
  25426. [
  25427. {
  25428. name: "Normal",
  25429. height: math.unit(3, "meters")
  25430. },
  25431. {
  25432. name: "Macro",
  25433. height: math.unit(22, "meters"),
  25434. default: true
  25435. },
  25436. ]
  25437. ))
  25438. characterMakers.push(() => makeCharacter(
  25439. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25440. {
  25441. front: {
  25442. height: math.unit(5 + 4/12, "feet"),
  25443. weight: math.unit(125, "lb"),
  25444. name: "Front",
  25445. image: {
  25446. source: "./media/characters/rory/front.svg",
  25447. extra: 1790/1681,
  25448. bottom: 66/1856
  25449. },
  25450. form: "normal",
  25451. default: true
  25452. },
  25453. back: {
  25454. height: math.unit(5 + 4/12, "feet"),
  25455. weight: math.unit(125, "lb"),
  25456. name: "Back",
  25457. image: {
  25458. source: "./media/characters/rory/back.svg",
  25459. extra: 1805/1690,
  25460. bottom: 56/1861
  25461. },
  25462. form: "normal"
  25463. },
  25464. frontDressed: {
  25465. height: math.unit(5 + 4/12, "feet"),
  25466. weight: math.unit(125, "lb"),
  25467. name: "Front (Dressed)",
  25468. image: {
  25469. source: "./media/characters/rory/front-dressed.svg",
  25470. extra: 1790/1681,
  25471. bottom: 66/1856
  25472. },
  25473. form: "normal"
  25474. },
  25475. backDressed: {
  25476. height: math.unit(5 + 4/12, "feet"),
  25477. weight: math.unit(125, "lb"),
  25478. name: "Back (Dressed)",
  25479. image: {
  25480. source: "./media/characters/rory/back-dressed.svg",
  25481. extra: 1805/1690,
  25482. bottom: 56/1861
  25483. },
  25484. form: "normal"
  25485. },
  25486. frontNsfw: {
  25487. height: math.unit(5 + 4/12, "feet"),
  25488. weight: math.unit(125, "lb"),
  25489. name: "Front (NSFW)",
  25490. image: {
  25491. source: "./media/characters/rory/front-nsfw.svg",
  25492. extra: 1790/1681,
  25493. bottom: 66/1856
  25494. },
  25495. form: "normal"
  25496. },
  25497. backNsfw: {
  25498. height: math.unit(5 + 4/12, "feet"),
  25499. weight: math.unit(125, "lb"),
  25500. name: "Back (NSFW)",
  25501. image: {
  25502. source: "./media/characters/rory/back-nsfw.svg",
  25503. extra: 1805/1690,
  25504. bottom: 56/1861
  25505. },
  25506. form: "normal"
  25507. },
  25508. dick: {
  25509. height: math.unit(0.8, "feet"),
  25510. name: "Dick",
  25511. image: {
  25512. source: "./media/characters/rory/dick.svg"
  25513. },
  25514. form: "normal"
  25515. },
  25516. thicc_front: {
  25517. height: math.unit(5 + 4/12, "feet"),
  25518. weight: math.unit(195, "lb"),
  25519. name: "Front",
  25520. image: {
  25521. source: "./media/characters/rory/thicc-front.svg",
  25522. extra: 1220/1100,
  25523. bottom: 103/1323
  25524. },
  25525. form: "thicc",
  25526. default: true
  25527. },
  25528. thicc_back: {
  25529. height: math.unit(5 + 4/12, "feet"),
  25530. weight: math.unit(195, "lb"),
  25531. name: "Back",
  25532. image: {
  25533. source: "./media/characters/rory/thicc-back.svg",
  25534. extra: 1166/1086,
  25535. bottom: 35/1201
  25536. },
  25537. form: "thicc"
  25538. },
  25539. },
  25540. [
  25541. {
  25542. name: "Micro",
  25543. height: math.unit(3, "inches"),
  25544. allForms: true
  25545. },
  25546. {
  25547. name: "Normal",
  25548. height: math.unit(5 + 4/12, "feet"),
  25549. allForms: true,
  25550. default: true
  25551. },
  25552. {
  25553. name: "Macro",
  25554. height: math.unit(90, "feet"),
  25555. allForms: true
  25556. },
  25557. {
  25558. name: "Supercharged",
  25559. height: math.unit(270, "feet"),
  25560. allForms: true
  25561. },
  25562. ],
  25563. {
  25564. "normal": {
  25565. name: "Normal",
  25566. default: true
  25567. },
  25568. "thicc": {
  25569. name: "Thicc",
  25570. },
  25571. }
  25572. ))
  25573. characterMakers.push(() => makeCharacter(
  25574. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25575. {
  25576. front: {
  25577. height: math.unit(5 + 9 / 12, "feet"),
  25578. weight: math.unit(190, "lb"),
  25579. name: "Front",
  25580. image: {
  25581. source: "./media/characters/sprisk/front.svg",
  25582. extra: 1225 / 1180,
  25583. bottom: 42.7 / 1266.4
  25584. }
  25585. },
  25586. frontNsfw: {
  25587. height: math.unit(5 + 9 / 12, "feet"),
  25588. weight: math.unit(190, "lb"),
  25589. name: "Front (NSFW)",
  25590. image: {
  25591. source: "./media/characters/sprisk/front-nsfw.svg",
  25592. extra: 1225 / 1180,
  25593. bottom: 42.7 / 1266.4
  25594. }
  25595. },
  25596. back: {
  25597. height: math.unit(5 + 9 / 12, "feet"),
  25598. weight: math.unit(190, "lb"),
  25599. name: "Back",
  25600. image: {
  25601. source: "./media/characters/sprisk/back.svg",
  25602. extra: 1247 / 1200,
  25603. bottom: 5.6 / 1253.04
  25604. }
  25605. },
  25606. },
  25607. [
  25608. {
  25609. name: "Tiny",
  25610. height: math.unit(2, "inches")
  25611. },
  25612. {
  25613. name: "Normal",
  25614. height: math.unit(5 + 9 / 12, "feet"),
  25615. default: true
  25616. },
  25617. {
  25618. name: "Mini Macro",
  25619. height: math.unit(18, "feet")
  25620. },
  25621. {
  25622. name: "Macro",
  25623. height: math.unit(100, "feet")
  25624. },
  25625. {
  25626. name: "MACRO",
  25627. height: math.unit(50, "miles")
  25628. },
  25629. {
  25630. name: "M A C R O",
  25631. height: math.unit(300, "miles")
  25632. },
  25633. ]
  25634. ))
  25635. characterMakers.push(() => makeCharacter(
  25636. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25637. {
  25638. side: {
  25639. height: math.unit(15.6, "meters"),
  25640. weight: math.unit(700000, "kg"),
  25641. name: "Side",
  25642. image: {
  25643. source: "./media/characters/bunsen/side.svg",
  25644. extra: 1644 / 358
  25645. }
  25646. },
  25647. foot: {
  25648. height: math.unit(1.611 * 1644 / 358, "meter"),
  25649. name: "Foot",
  25650. image: {
  25651. source: "./media/characters/bunsen/foot.svg"
  25652. }
  25653. },
  25654. },
  25655. [
  25656. {
  25657. name: "Small",
  25658. height: math.unit(10, "feet")
  25659. },
  25660. {
  25661. name: "Normal",
  25662. height: math.unit(15.6, "meters"),
  25663. default: true
  25664. },
  25665. ]
  25666. ))
  25667. characterMakers.push(() => makeCharacter(
  25668. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25669. {
  25670. front: {
  25671. height: math.unit(4 + 11 / 12, "feet"),
  25672. weight: math.unit(140, "lb"),
  25673. name: "Front",
  25674. image: {
  25675. source: "./media/characters/sesh/front.svg",
  25676. extra: 3420 / 3231,
  25677. bottom: 72 / 3949.5
  25678. }
  25679. },
  25680. },
  25681. [
  25682. {
  25683. name: "Normal",
  25684. height: math.unit(4 + 11 / 12, "feet")
  25685. },
  25686. {
  25687. name: "Grown",
  25688. height: math.unit(15, "feet"),
  25689. default: true
  25690. },
  25691. {
  25692. name: "Macro",
  25693. height: math.unit(1500, "feet")
  25694. },
  25695. {
  25696. name: "Megamacro",
  25697. height: math.unit(30, "miles")
  25698. },
  25699. {
  25700. name: "Continental",
  25701. height: math.unit(3000, "miles")
  25702. },
  25703. {
  25704. name: "Gravity Mass",
  25705. height: math.unit(300000, "miles")
  25706. },
  25707. {
  25708. name: "Planet Buster",
  25709. height: math.unit(30000000, "miles")
  25710. },
  25711. {
  25712. name: "Big",
  25713. height: math.unit(3000000000, "miles")
  25714. },
  25715. ]
  25716. ))
  25717. characterMakers.push(() => makeCharacter(
  25718. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25719. {
  25720. front: {
  25721. height: math.unit(9, "feet"),
  25722. weight: math.unit(350, "lb"),
  25723. name: "Front",
  25724. image: {
  25725. source: "./media/characters/pepper/front.svg",
  25726. extra: 1448 / 1312,
  25727. bottom: 9.4 / 1457.88
  25728. }
  25729. },
  25730. back: {
  25731. height: math.unit(9, "feet"),
  25732. weight: math.unit(350, "lb"),
  25733. name: "Back",
  25734. image: {
  25735. source: "./media/characters/pepper/back.svg",
  25736. extra: 1423 / 1300,
  25737. bottom: 4.6 / 1429
  25738. }
  25739. },
  25740. maw: {
  25741. height: math.unit(0.932, "feet"),
  25742. name: "Maw",
  25743. image: {
  25744. source: "./media/characters/pepper/maw.svg"
  25745. }
  25746. },
  25747. },
  25748. [
  25749. {
  25750. name: "Normal",
  25751. height: math.unit(9, "feet"),
  25752. default: true
  25753. },
  25754. ]
  25755. ))
  25756. characterMakers.push(() => makeCharacter(
  25757. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25758. {
  25759. front: {
  25760. height: math.unit(6, "feet"),
  25761. weight: math.unit(150, "lb"),
  25762. name: "Front",
  25763. image: {
  25764. source: "./media/characters/maelstrom/front.svg",
  25765. extra: 2100 / 1883,
  25766. bottom: 94 / 2196.7
  25767. }
  25768. },
  25769. },
  25770. [
  25771. {
  25772. name: "Less Kaiju",
  25773. height: math.unit(200, "feet")
  25774. },
  25775. {
  25776. name: "Kaiju",
  25777. height: math.unit(400, "feet"),
  25778. default: true
  25779. },
  25780. {
  25781. name: "Kaiju-er",
  25782. height: math.unit(600, "feet")
  25783. },
  25784. ]
  25785. ))
  25786. characterMakers.push(() => makeCharacter(
  25787. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25788. {
  25789. front: {
  25790. height: math.unit(6 + 5 / 12, "feet"),
  25791. weight: math.unit(180, "lb"),
  25792. name: "Front",
  25793. image: {
  25794. source: "./media/characters/lexir/front.svg",
  25795. extra: 180 / 172,
  25796. bottom: 12 / 192
  25797. }
  25798. },
  25799. back: {
  25800. height: math.unit(6 + 5 / 12, "feet"),
  25801. weight: math.unit(180, "lb"),
  25802. name: "Back",
  25803. image: {
  25804. source: "./media/characters/lexir/back.svg",
  25805. extra: 1273/1201,
  25806. bottom: 39/1312
  25807. }
  25808. },
  25809. },
  25810. [
  25811. {
  25812. name: "Very Smal",
  25813. height: math.unit(1, "nm")
  25814. },
  25815. {
  25816. name: "Normal",
  25817. height: math.unit(6 + 5 / 12, "feet"),
  25818. default: true
  25819. },
  25820. {
  25821. name: "Macro",
  25822. height: math.unit(1, "mile")
  25823. },
  25824. {
  25825. name: "Megamacro",
  25826. height: math.unit(50, "miles")
  25827. },
  25828. ]
  25829. ))
  25830. characterMakers.push(() => makeCharacter(
  25831. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25832. {
  25833. front: {
  25834. height: math.unit(1.5, "meters"),
  25835. weight: math.unit(100, "lb"),
  25836. name: "Front",
  25837. image: {
  25838. source: "./media/characters/maksio/front.svg",
  25839. extra: 1549 / 1531,
  25840. bottom: 123.7 / 1674.5429
  25841. }
  25842. },
  25843. back: {
  25844. height: math.unit(1.5, "meters"),
  25845. weight: math.unit(100, "lb"),
  25846. name: "Back",
  25847. image: {
  25848. source: "./media/characters/maksio/back.svg",
  25849. extra: 1541 / 1509,
  25850. bottom: 97 / 1639
  25851. }
  25852. },
  25853. hand: {
  25854. height: math.unit(0.621, "feet"),
  25855. name: "Hand",
  25856. image: {
  25857. source: "./media/characters/maksio/hand.svg"
  25858. }
  25859. },
  25860. foot: {
  25861. height: math.unit(1.611, "feet"),
  25862. name: "Foot",
  25863. image: {
  25864. source: "./media/characters/maksio/foot.svg"
  25865. }
  25866. },
  25867. },
  25868. [
  25869. {
  25870. name: "Shrunken",
  25871. height: math.unit(10, "cm")
  25872. },
  25873. {
  25874. name: "Normal",
  25875. height: math.unit(150, "cm"),
  25876. default: true
  25877. },
  25878. ]
  25879. ))
  25880. characterMakers.push(() => makeCharacter(
  25881. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25882. {
  25883. front: {
  25884. height: math.unit(100, "feet"),
  25885. name: "Front",
  25886. image: {
  25887. source: "./media/characters/erza-bear/front.svg",
  25888. extra: 2449 / 2390,
  25889. bottom: 46 / 2494
  25890. }
  25891. },
  25892. back: {
  25893. height: math.unit(100, "feet"),
  25894. name: "Back",
  25895. image: {
  25896. source: "./media/characters/erza-bear/back.svg",
  25897. extra: 2489 / 2430,
  25898. bottom: 85.4 / 2480
  25899. }
  25900. },
  25901. tail: {
  25902. height: math.unit(42, "feet"),
  25903. name: "Tail",
  25904. image: {
  25905. source: "./media/characters/erza-bear/tail.svg"
  25906. }
  25907. },
  25908. tongue: {
  25909. height: math.unit(8, "feet"),
  25910. name: "Tongue",
  25911. image: {
  25912. source: "./media/characters/erza-bear/tongue.svg"
  25913. }
  25914. },
  25915. dick: {
  25916. height: math.unit(10.5, "feet"),
  25917. name: "Dick",
  25918. image: {
  25919. source: "./media/characters/erza-bear/dick.svg"
  25920. }
  25921. },
  25922. dickVertical: {
  25923. height: math.unit(16.9, "feet"),
  25924. name: "Dick (Vertical)",
  25925. image: {
  25926. source: "./media/characters/erza-bear/dick-vertical.svg"
  25927. }
  25928. },
  25929. },
  25930. [
  25931. {
  25932. name: "Macro",
  25933. height: math.unit(100, "feet"),
  25934. default: true
  25935. },
  25936. ]
  25937. ))
  25938. characterMakers.push(() => makeCharacter(
  25939. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25940. {
  25941. front: {
  25942. height: math.unit(172, "cm"),
  25943. weight: math.unit(73, "kg"),
  25944. name: "Front",
  25945. image: {
  25946. source: "./media/characters/violet-flor/front.svg",
  25947. extra: 1474/1379,
  25948. bottom: 113/1587
  25949. }
  25950. },
  25951. back: {
  25952. height: math.unit(180, "cm"),
  25953. weight: math.unit(73, "kg"),
  25954. name: "Back",
  25955. image: {
  25956. source: "./media/characters/violet-flor/back.svg",
  25957. extra: 1660/1567,
  25958. bottom: 49/1709
  25959. }
  25960. },
  25961. },
  25962. [
  25963. {
  25964. name: "Normal",
  25965. height: math.unit(172, "cm"),
  25966. default: true
  25967. },
  25968. ]
  25969. ))
  25970. characterMakers.push(() => makeCharacter(
  25971. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25972. {
  25973. front: {
  25974. height: math.unit(6, "feet"),
  25975. weight: math.unit(220, "lb"),
  25976. name: "Front",
  25977. image: {
  25978. source: "./media/characters/lynn-rhea/front.svg",
  25979. extra: 310 / 273
  25980. }
  25981. },
  25982. back: {
  25983. height: math.unit(6, "feet"),
  25984. weight: math.unit(220, "lb"),
  25985. name: "Back",
  25986. image: {
  25987. source: "./media/characters/lynn-rhea/back.svg",
  25988. extra: 310 / 273
  25989. }
  25990. },
  25991. dicks: {
  25992. height: math.unit(0.9, "feet"),
  25993. name: "Dicks",
  25994. image: {
  25995. source: "./media/characters/lynn-rhea/dicks.svg"
  25996. }
  25997. },
  25998. slit: {
  25999. height: math.unit(0.4, "feet"),
  26000. name: "Slit",
  26001. image: {
  26002. source: "./media/characters/lynn-rhea/slit.svg"
  26003. }
  26004. },
  26005. },
  26006. [
  26007. {
  26008. name: "Micro",
  26009. height: math.unit(1, "inch")
  26010. },
  26011. {
  26012. name: "Macro",
  26013. height: math.unit(60, "feet"),
  26014. default: true
  26015. },
  26016. {
  26017. name: "Megamacro",
  26018. height: math.unit(2, "miles")
  26019. },
  26020. {
  26021. name: "Gigamacro",
  26022. height: math.unit(3, "earths")
  26023. },
  26024. {
  26025. name: "Galactic",
  26026. height: math.unit(0.8, "galaxies")
  26027. },
  26028. ]
  26029. ))
  26030. characterMakers.push(() => makeCharacter(
  26031. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26032. {
  26033. front: {
  26034. height: math.unit(1600, "feet"),
  26035. weight: math.unit(85758785169, "kg"),
  26036. name: "Front",
  26037. image: {
  26038. source: "./media/characters/valathos/front.svg",
  26039. extra: 1451 / 1339
  26040. }
  26041. },
  26042. },
  26043. [
  26044. {
  26045. name: "Macro",
  26046. height: math.unit(1600, "feet"),
  26047. default: true
  26048. },
  26049. ]
  26050. ))
  26051. characterMakers.push(() => makeCharacter(
  26052. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26053. {
  26054. front: {
  26055. height: math.unit(7 + 5 / 12, "feet"),
  26056. weight: math.unit(300, "lb"),
  26057. name: "Front",
  26058. image: {
  26059. source: "./media/characters/azula/front.svg",
  26060. extra: 3208 / 2880,
  26061. bottom: 80.2 / 3277
  26062. }
  26063. },
  26064. back: {
  26065. height: math.unit(7 + 5 / 12, "feet"),
  26066. weight: math.unit(300, "lb"),
  26067. name: "Back",
  26068. image: {
  26069. source: "./media/characters/azula/back.svg",
  26070. extra: 3169 / 2822,
  26071. bottom: 150.6 / 3321
  26072. }
  26073. },
  26074. },
  26075. [
  26076. {
  26077. name: "Normal",
  26078. height: math.unit(7 + 5 / 12, "feet"),
  26079. default: true
  26080. },
  26081. {
  26082. name: "Big",
  26083. height: math.unit(20, "feet")
  26084. },
  26085. ]
  26086. ))
  26087. characterMakers.push(() => makeCharacter(
  26088. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26089. {
  26090. front: {
  26091. height: math.unit(5 + 1 / 12, "feet"),
  26092. weight: math.unit(110, "lb"),
  26093. name: "Front",
  26094. image: {
  26095. source: "./media/characters/rupert/front.svg",
  26096. extra: 1549 / 1495,
  26097. bottom: 54.2 / 1604.4
  26098. }
  26099. },
  26100. },
  26101. [
  26102. {
  26103. name: "Normal",
  26104. height: math.unit(5 + 1 / 12, "feet"),
  26105. default: true
  26106. },
  26107. ]
  26108. ))
  26109. characterMakers.push(() => makeCharacter(
  26110. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26111. {
  26112. front: {
  26113. height: math.unit(8 + 4 / 12, "feet"),
  26114. weight: math.unit(350, "lb"),
  26115. name: "Front",
  26116. image: {
  26117. source: "./media/characters/sheera-castellar/front.svg",
  26118. extra: 1957 / 1894,
  26119. bottom: 26.97 / 1975.017
  26120. }
  26121. },
  26122. side: {
  26123. height: math.unit(8 + 4 / 12, "feet"),
  26124. weight: math.unit(350, "lb"),
  26125. name: "Side",
  26126. image: {
  26127. source: "./media/characters/sheera-castellar/side.svg",
  26128. extra: 1957 / 1894
  26129. }
  26130. },
  26131. back: {
  26132. height: math.unit(8 + 4 / 12, "feet"),
  26133. weight: math.unit(350, "lb"),
  26134. name: "Back",
  26135. image: {
  26136. source: "./media/characters/sheera-castellar/back.svg",
  26137. extra: 1957 / 1894
  26138. }
  26139. },
  26140. angled: {
  26141. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26142. weight: math.unit(350, "lb"),
  26143. name: "Angled",
  26144. image: {
  26145. source: "./media/characters/sheera-castellar/angled.svg",
  26146. extra: 1807 / 1707,
  26147. bottom: 68 / 1875
  26148. }
  26149. },
  26150. genitals: {
  26151. height: math.unit(2.2, "feet"),
  26152. name: "Genitals",
  26153. image: {
  26154. source: "./media/characters/sheera-castellar/genitals.svg"
  26155. }
  26156. },
  26157. taur: {
  26158. height: math.unit(10 + 6/12, "feet"),
  26159. name: "Taur",
  26160. image: {
  26161. source: "./media/characters/sheera-castellar/taur.svg",
  26162. extra: 2017/1909,
  26163. bottom: 185/2202
  26164. }
  26165. },
  26166. },
  26167. [
  26168. {
  26169. name: "Normal",
  26170. height: math.unit(8 + 4 / 12, "feet")
  26171. },
  26172. {
  26173. name: "Macro",
  26174. height: math.unit(150, "feet"),
  26175. default: true
  26176. },
  26177. {
  26178. name: "Macro+",
  26179. height: math.unit(800, "feet")
  26180. },
  26181. ]
  26182. ))
  26183. characterMakers.push(() => makeCharacter(
  26184. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26185. {
  26186. front: {
  26187. height: math.unit(6, "feet"),
  26188. weight: math.unit(150, "lb"),
  26189. name: "Front",
  26190. image: {
  26191. source: "./media/characters/jaipur/front.svg",
  26192. extra: 3860 / 3731,
  26193. bottom: 287 / 4140
  26194. }
  26195. },
  26196. back: {
  26197. height: math.unit(6, "feet"),
  26198. weight: math.unit(150, "lb"),
  26199. name: "Back",
  26200. image: {
  26201. source: "./media/characters/jaipur/back.svg",
  26202. extra: 1637/1561,
  26203. bottom: 154/1791
  26204. }
  26205. },
  26206. },
  26207. [
  26208. {
  26209. name: "Normal",
  26210. height: math.unit(1.85, "meters"),
  26211. default: true
  26212. },
  26213. {
  26214. name: "Macro",
  26215. height: math.unit(150, "meters")
  26216. },
  26217. {
  26218. name: "Macro+",
  26219. height: math.unit(0.5, "miles")
  26220. },
  26221. {
  26222. name: "Macro++",
  26223. height: math.unit(2.5, "miles")
  26224. },
  26225. {
  26226. name: "Macro+++",
  26227. height: math.unit(12, "miles")
  26228. },
  26229. {
  26230. name: "Macro++++",
  26231. height: math.unit(120, "miles")
  26232. },
  26233. {
  26234. name: "Macro+++++",
  26235. height: math.unit(1200, "miles")
  26236. },
  26237. ]
  26238. ))
  26239. characterMakers.push(() => makeCharacter(
  26240. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26241. {
  26242. front: {
  26243. height: math.unit(6, "feet"),
  26244. weight: math.unit(150, "lb"),
  26245. name: "Front",
  26246. image: {
  26247. source: "./media/characters/sheila-wolf/front.svg",
  26248. extra: 1931 / 1808,
  26249. bottom: 29.5 / 1960
  26250. }
  26251. },
  26252. dick: {
  26253. height: math.unit(1.464, "feet"),
  26254. name: "Dick",
  26255. image: {
  26256. source: "./media/characters/sheila-wolf/dick.svg"
  26257. }
  26258. },
  26259. muzzle: {
  26260. height: math.unit(0.513, "feet"),
  26261. name: "Muzzle",
  26262. image: {
  26263. source: "./media/characters/sheila-wolf/muzzle.svg"
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Macro",
  26270. height: math.unit(70, "feet"),
  26271. default: true
  26272. },
  26273. ]
  26274. ))
  26275. characterMakers.push(() => makeCharacter(
  26276. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26277. {
  26278. front: {
  26279. height: math.unit(32, "meters"),
  26280. weight: math.unit(300000, "kg"),
  26281. name: "Front",
  26282. image: {
  26283. source: "./media/characters/almor/front.svg",
  26284. extra: 1408 / 1322,
  26285. bottom: 94.6 / 1506.5
  26286. }
  26287. },
  26288. },
  26289. [
  26290. {
  26291. name: "Macro",
  26292. height: math.unit(32, "meters"),
  26293. default: true
  26294. },
  26295. ]
  26296. ))
  26297. characterMakers.push(() => makeCharacter(
  26298. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26299. {
  26300. front: {
  26301. height: math.unit(7, "feet"),
  26302. weight: math.unit(200, "lb"),
  26303. name: "Front",
  26304. image: {
  26305. source: "./media/characters/silver/front.svg",
  26306. extra: 472.1 / 450.5,
  26307. bottom: 26.5 / 499.424
  26308. }
  26309. },
  26310. },
  26311. [
  26312. {
  26313. name: "Normal",
  26314. height: math.unit(7, "feet"),
  26315. default: true
  26316. },
  26317. {
  26318. name: "Macro",
  26319. height: math.unit(800, "feet")
  26320. },
  26321. {
  26322. name: "Megamacro",
  26323. height: math.unit(250, "miles")
  26324. },
  26325. ]
  26326. ))
  26327. characterMakers.push(() => makeCharacter(
  26328. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26329. {
  26330. front: {
  26331. height: math.unit(6, "feet"),
  26332. weight: math.unit(150, "lb"),
  26333. name: "Front",
  26334. image: {
  26335. source: "./media/characters/pliskin/front.svg",
  26336. extra: 1469 / 1359,
  26337. bottom: 70 / 1540
  26338. }
  26339. },
  26340. },
  26341. [
  26342. {
  26343. name: "Micro",
  26344. height: math.unit(3, "inches")
  26345. },
  26346. {
  26347. name: "Normal",
  26348. height: math.unit(5 + 11 / 12, "feet"),
  26349. default: true
  26350. },
  26351. {
  26352. name: "Macro",
  26353. height: math.unit(120, "feet")
  26354. },
  26355. ]
  26356. ))
  26357. characterMakers.push(() => makeCharacter(
  26358. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26359. {
  26360. front: {
  26361. height: math.unit(6, "feet"),
  26362. weight: math.unit(150, "lb"),
  26363. name: "Front",
  26364. image: {
  26365. source: "./media/characters/sammy/front.svg",
  26366. extra: 1193 / 1089,
  26367. bottom: 30.5 / 1226
  26368. }
  26369. },
  26370. },
  26371. [
  26372. {
  26373. name: "Macro",
  26374. height: math.unit(1700, "feet"),
  26375. default: true
  26376. },
  26377. {
  26378. name: "Examacro",
  26379. height: math.unit(2.5e9, "lightyears")
  26380. },
  26381. ]
  26382. ))
  26383. characterMakers.push(() => makeCharacter(
  26384. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26385. {
  26386. front: {
  26387. height: math.unit(21, "meters"),
  26388. weight: math.unit(12, "tonnes"),
  26389. name: "Front",
  26390. image: {
  26391. source: "./media/characters/kuru/front.svg",
  26392. extra: 4301 / 3785,
  26393. bottom: 371.3 / 4691
  26394. }
  26395. },
  26396. },
  26397. [
  26398. {
  26399. name: "Macro",
  26400. height: math.unit(21, "meters"),
  26401. default: true
  26402. },
  26403. ]
  26404. ))
  26405. characterMakers.push(() => makeCharacter(
  26406. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26407. {
  26408. front: {
  26409. height: math.unit(23, "meters"),
  26410. weight: math.unit(12.2, "tonnes"),
  26411. name: "Front",
  26412. image: {
  26413. source: "./media/characters/rakka/front.svg",
  26414. extra: 4670 / 4169,
  26415. bottom: 301 / 4968.7
  26416. }
  26417. },
  26418. },
  26419. [
  26420. {
  26421. name: "Macro",
  26422. height: math.unit(23, "meters"),
  26423. default: true
  26424. },
  26425. ]
  26426. ))
  26427. characterMakers.push(() => makeCharacter(
  26428. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26429. {
  26430. front: {
  26431. height: math.unit(6, "feet"),
  26432. weight: math.unit(150, "lb"),
  26433. name: "Front",
  26434. image: {
  26435. source: "./media/characters/rhys-feline/front.svg",
  26436. extra: 2488 / 2308,
  26437. bottom: 35.67 / 2519.19
  26438. }
  26439. },
  26440. },
  26441. [
  26442. {
  26443. name: "Really Small",
  26444. height: math.unit(1, "nm")
  26445. },
  26446. {
  26447. name: "Micro",
  26448. height: math.unit(4, "inches")
  26449. },
  26450. {
  26451. name: "Normal",
  26452. height: math.unit(4 + 10 / 12, "feet"),
  26453. default: true
  26454. },
  26455. {
  26456. name: "Macro",
  26457. height: math.unit(100, "feet")
  26458. },
  26459. {
  26460. name: "Megamacto",
  26461. height: math.unit(50, "miles")
  26462. },
  26463. ]
  26464. ))
  26465. characterMakers.push(() => makeCharacter(
  26466. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26467. {
  26468. side: {
  26469. height: math.unit(30, "feet"),
  26470. weight: math.unit(35000, "kg"),
  26471. name: "Side",
  26472. image: {
  26473. source: "./media/characters/alydar/side.svg",
  26474. extra: 234 / 222,
  26475. bottom: 6.5 / 241
  26476. }
  26477. },
  26478. front: {
  26479. height: math.unit(30, "feet"),
  26480. weight: math.unit(35000, "kg"),
  26481. name: "Front",
  26482. image: {
  26483. source: "./media/characters/alydar/front.svg",
  26484. extra: 223.37 / 210.2,
  26485. bottom: 22.3 / 246.76
  26486. }
  26487. },
  26488. top: {
  26489. height: math.unit(64.54, "feet"),
  26490. weight: math.unit(35000, "kg"),
  26491. name: "Top",
  26492. image: {
  26493. source: "./media/characters/alydar/top.svg"
  26494. }
  26495. },
  26496. anthro: {
  26497. height: math.unit(30, "feet"),
  26498. weight: math.unit(9000, "kg"),
  26499. name: "Anthro",
  26500. image: {
  26501. source: "./media/characters/alydar/anthro.svg",
  26502. extra: 432 / 421,
  26503. bottom: 7.18 / 440
  26504. }
  26505. },
  26506. maw: {
  26507. height: math.unit(11.693, "feet"),
  26508. name: "Maw",
  26509. image: {
  26510. source: "./media/characters/alydar/maw.svg"
  26511. }
  26512. },
  26513. head: {
  26514. height: math.unit(11.693, "feet"),
  26515. name: "Head",
  26516. image: {
  26517. source: "./media/characters/alydar/head.svg"
  26518. }
  26519. },
  26520. headAlt: {
  26521. height: math.unit(12.861, "feet"),
  26522. name: "Head (Alt)",
  26523. image: {
  26524. source: "./media/characters/alydar/head-alt.svg"
  26525. }
  26526. },
  26527. wing: {
  26528. height: math.unit(20.712, "feet"),
  26529. name: "Wing",
  26530. image: {
  26531. source: "./media/characters/alydar/wing.svg"
  26532. }
  26533. },
  26534. wingFeather: {
  26535. height: math.unit(9.662, "feet"),
  26536. name: "Wing Feather",
  26537. image: {
  26538. source: "./media/characters/alydar/wing-feather.svg"
  26539. }
  26540. },
  26541. countourFeather: {
  26542. height: math.unit(4.154, "feet"),
  26543. name: "Contour Feather",
  26544. image: {
  26545. source: "./media/characters/alydar/contour-feather.svg"
  26546. }
  26547. },
  26548. },
  26549. [
  26550. {
  26551. name: "Diplomatic",
  26552. height: math.unit(13, "feet"),
  26553. default: true
  26554. },
  26555. {
  26556. name: "Small",
  26557. height: math.unit(30, "feet")
  26558. },
  26559. {
  26560. name: "Normal",
  26561. height: math.unit(95, "feet"),
  26562. default: true
  26563. },
  26564. {
  26565. name: "Large",
  26566. height: math.unit(285, "feet")
  26567. },
  26568. {
  26569. name: "Incomprehensible",
  26570. height: math.unit(450, "megameters")
  26571. },
  26572. ]
  26573. ))
  26574. characterMakers.push(() => makeCharacter(
  26575. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26576. {
  26577. side: {
  26578. height: math.unit(11, "feet"),
  26579. weight: math.unit(1750, "kg"),
  26580. name: "Side",
  26581. image: {
  26582. source: "./media/characters/selicia/side.svg",
  26583. extra: 440 / 396,
  26584. bottom: 24.8 / 465.979
  26585. }
  26586. },
  26587. maw: {
  26588. height: math.unit(4.665, "feet"),
  26589. name: "Maw",
  26590. image: {
  26591. source: "./media/characters/selicia/maw.svg"
  26592. }
  26593. },
  26594. },
  26595. [
  26596. {
  26597. name: "Normal",
  26598. height: math.unit(11, "feet"),
  26599. default: true
  26600. },
  26601. ]
  26602. ))
  26603. characterMakers.push(() => makeCharacter(
  26604. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26605. {
  26606. side: {
  26607. height: math.unit(2 + 6 / 12, "feet"),
  26608. weight: math.unit(30, "lb"),
  26609. name: "Side",
  26610. image: {
  26611. source: "./media/characters/layla/side.svg",
  26612. extra: 244 / 188,
  26613. bottom: 18.2 / 262.1
  26614. }
  26615. },
  26616. back: {
  26617. height: math.unit(2 + 6 / 12, "feet"),
  26618. weight: math.unit(30, "lb"),
  26619. name: "Back",
  26620. image: {
  26621. source: "./media/characters/layla/back.svg",
  26622. extra: 308 / 241.5,
  26623. bottom: 8.9 / 316.8
  26624. }
  26625. },
  26626. cumming: {
  26627. height: math.unit(2 + 6 / 12, "feet"),
  26628. weight: math.unit(30, "lb"),
  26629. name: "Cumming",
  26630. image: {
  26631. source: "./media/characters/layla/cumming.svg",
  26632. extra: 342 / 279,
  26633. bottom: 595 / 938
  26634. }
  26635. },
  26636. dickFlaccid: {
  26637. height: math.unit(2.595, "feet"),
  26638. name: "Flaccid Genitals",
  26639. image: {
  26640. source: "./media/characters/layla/dick-flaccid.svg"
  26641. }
  26642. },
  26643. dickErect: {
  26644. height: math.unit(2.359, "feet"),
  26645. name: "Erect Genitals",
  26646. image: {
  26647. source: "./media/characters/layla/dick-erect.svg"
  26648. }
  26649. },
  26650. dragon: {
  26651. height: math.unit(40, "feet"),
  26652. name: "Dragon",
  26653. image: {
  26654. source: "./media/characters/layla/dragon.svg",
  26655. extra: 610/535,
  26656. bottom: 367/977
  26657. }
  26658. },
  26659. taur: {
  26660. height: math.unit(30, "feet"),
  26661. name: "Taur",
  26662. image: {
  26663. source: "./media/characters/layla/taur.svg",
  26664. extra: 1268/1199,
  26665. bottom: 112/1380
  26666. }
  26667. },
  26668. },
  26669. [
  26670. {
  26671. name: "Micro",
  26672. height: math.unit(1, "inch")
  26673. },
  26674. {
  26675. name: "Small",
  26676. height: math.unit(1, "foot")
  26677. },
  26678. {
  26679. name: "Normal",
  26680. height: math.unit(2 + 6 / 12, "feet"),
  26681. default: true
  26682. },
  26683. {
  26684. name: "Macro",
  26685. height: math.unit(200, "feet")
  26686. },
  26687. {
  26688. name: "Megamacro",
  26689. height: math.unit(1000, "miles")
  26690. },
  26691. {
  26692. name: "Planetary",
  26693. height: math.unit(8000, "miles")
  26694. },
  26695. {
  26696. name: "True Layla",
  26697. height: math.unit(200000 * 7, "multiverses")
  26698. },
  26699. ]
  26700. ))
  26701. characterMakers.push(() => makeCharacter(
  26702. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26703. {
  26704. back: {
  26705. height: math.unit(10.5, "feet"),
  26706. weight: math.unit(800, "lb"),
  26707. name: "Back",
  26708. image: {
  26709. source: "./media/characters/knox/back.svg",
  26710. extra: 1486 / 1089,
  26711. bottom: 107 / 1601.4
  26712. }
  26713. },
  26714. side: {
  26715. height: math.unit(10.5, "feet"),
  26716. weight: math.unit(800, "lb"),
  26717. name: "Side",
  26718. image: {
  26719. source: "./media/characters/knox/side.svg",
  26720. extra: 244 / 218,
  26721. bottom: 14 / 260
  26722. }
  26723. },
  26724. },
  26725. [
  26726. {
  26727. name: "Compact",
  26728. height: math.unit(10.5, "feet"),
  26729. default: true
  26730. },
  26731. {
  26732. name: "Dynamax",
  26733. height: math.unit(210, "feet")
  26734. },
  26735. {
  26736. name: "Full Macro",
  26737. height: math.unit(850, "feet")
  26738. },
  26739. ]
  26740. ))
  26741. characterMakers.push(() => makeCharacter(
  26742. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26743. {
  26744. front: {
  26745. height: math.unit(28, "feet"),
  26746. weight: math.unit(10500, "lb"),
  26747. name: "Front",
  26748. image: {
  26749. source: "./media/characters/kayda/front.svg",
  26750. extra: 1536 / 1428,
  26751. bottom: 68.7 / 1603
  26752. }
  26753. },
  26754. back: {
  26755. height: math.unit(28, "feet"),
  26756. weight: math.unit(10500, "lb"),
  26757. name: "Back",
  26758. image: {
  26759. source: "./media/characters/kayda/back.svg",
  26760. extra: 1557 / 1464,
  26761. bottom: 39.5 / 1597.49
  26762. }
  26763. },
  26764. dick: {
  26765. height: math.unit(3.858, "feet"),
  26766. name: "Dick",
  26767. image: {
  26768. source: "./media/characters/kayda/dick.svg"
  26769. }
  26770. },
  26771. },
  26772. [
  26773. {
  26774. name: "Macro",
  26775. height: math.unit(28, "feet"),
  26776. default: true
  26777. },
  26778. ]
  26779. ))
  26780. characterMakers.push(() => makeCharacter(
  26781. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26782. {
  26783. front: {
  26784. height: math.unit(10 + 11 / 12, "feet"),
  26785. weight: math.unit(1400, "lb"),
  26786. name: "Front",
  26787. image: {
  26788. source: "./media/characters/brian/front.svg",
  26789. extra: 737 / 692,
  26790. bottom: 55.4 / 785
  26791. }
  26792. },
  26793. },
  26794. [
  26795. {
  26796. name: "Normal",
  26797. height: math.unit(10 + 11 / 12, "feet"),
  26798. default: true
  26799. },
  26800. ]
  26801. ))
  26802. characterMakers.push(() => makeCharacter(
  26803. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26804. {
  26805. front: {
  26806. height: math.unit(5 + 8 / 12, "feet"),
  26807. weight: math.unit(140, "lb"),
  26808. name: "Front",
  26809. image: {
  26810. source: "./media/characters/khemri/front.svg",
  26811. extra: 4780 / 4059,
  26812. bottom: 80.1 / 4859.25
  26813. }
  26814. },
  26815. },
  26816. [
  26817. {
  26818. name: "Micro",
  26819. height: math.unit(6, "inches")
  26820. },
  26821. {
  26822. name: "Normal",
  26823. height: math.unit(5 + 8 / 12, "feet"),
  26824. default: true
  26825. },
  26826. ]
  26827. ))
  26828. characterMakers.push(() => makeCharacter(
  26829. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26830. {
  26831. front: {
  26832. height: math.unit(13, "feet"),
  26833. weight: math.unit(1700, "lb"),
  26834. name: "Front",
  26835. image: {
  26836. source: "./media/characters/felix-braveheart/front.svg",
  26837. extra: 1222 / 1157,
  26838. bottom: 53.2 / 1280
  26839. }
  26840. },
  26841. back: {
  26842. height: math.unit(13, "feet"),
  26843. weight: math.unit(1700, "lb"),
  26844. name: "Back",
  26845. image: {
  26846. source: "./media/characters/felix-braveheart/back.svg",
  26847. extra: 1277 / 1203,
  26848. bottom: 50.2 / 1327
  26849. }
  26850. },
  26851. feral: {
  26852. height: math.unit(6, "feet"),
  26853. weight: math.unit(400, "lb"),
  26854. name: "Feral",
  26855. image: {
  26856. source: "./media/characters/felix-braveheart/feral.svg",
  26857. extra: 682 / 625,
  26858. bottom: 6.9 / 688
  26859. }
  26860. },
  26861. },
  26862. [
  26863. {
  26864. name: "Normal",
  26865. height: math.unit(13, "feet"),
  26866. default: true
  26867. },
  26868. ]
  26869. ))
  26870. characterMakers.push(() => makeCharacter(
  26871. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26872. {
  26873. side: {
  26874. height: math.unit(5 + 11 / 12, "feet"),
  26875. weight: math.unit(1400, "lb"),
  26876. name: "Side",
  26877. image: {
  26878. source: "./media/characters/shadow-blade/side.svg",
  26879. extra: 1726 / 1267,
  26880. bottom: 58.4 / 1785
  26881. }
  26882. },
  26883. },
  26884. [
  26885. {
  26886. name: "Normal",
  26887. height: math.unit(5 + 11 / 12, "feet"),
  26888. default: true
  26889. },
  26890. ]
  26891. ))
  26892. characterMakers.push(() => makeCharacter(
  26893. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26894. {
  26895. front: {
  26896. height: math.unit(1 + 6 / 12, "feet"),
  26897. weight: math.unit(25, "lb"),
  26898. name: "Front",
  26899. image: {
  26900. source: "./media/characters/karla-halldor/front.svg",
  26901. extra: 1459 / 1383,
  26902. bottom: 12 / 1472
  26903. }
  26904. },
  26905. },
  26906. [
  26907. {
  26908. name: "Normal",
  26909. height: math.unit(1 + 6 / 12, "feet"),
  26910. default: true
  26911. },
  26912. ]
  26913. ))
  26914. characterMakers.push(() => makeCharacter(
  26915. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26916. {
  26917. front: {
  26918. height: math.unit(6 + 2 / 12, "feet"),
  26919. weight: math.unit(160, "lb"),
  26920. name: "Front",
  26921. image: {
  26922. source: "./media/characters/ariam/front.svg",
  26923. extra: 1073/976,
  26924. bottom: 52/1125
  26925. }
  26926. },
  26927. back: {
  26928. height: math.unit(6 + 2/12, "feet"),
  26929. weight: math.unit(160, "lb"),
  26930. name: "Back",
  26931. image: {
  26932. source: "./media/characters/ariam/back.svg",
  26933. extra: 1103/1023,
  26934. bottom: 9/1112
  26935. }
  26936. },
  26937. dressed: {
  26938. height: math.unit(6 + 2/12, "feet"),
  26939. weight: math.unit(160, "lb"),
  26940. name: "Dressed",
  26941. image: {
  26942. source: "./media/characters/ariam/dressed.svg",
  26943. extra: 1099/1009,
  26944. bottom: 25/1124
  26945. }
  26946. },
  26947. squatting: {
  26948. height: math.unit(4.1, "feet"),
  26949. weight: math.unit(160, "lb"),
  26950. name: "Squatting",
  26951. image: {
  26952. source: "./media/characters/ariam/squatting.svg",
  26953. extra: 2617 / 2112,
  26954. bottom: 61.2 / 2681,
  26955. }
  26956. },
  26957. },
  26958. [
  26959. {
  26960. name: "Normal",
  26961. height: math.unit(6 + 2 / 12, "feet"),
  26962. default: true
  26963. },
  26964. {
  26965. name: "Normal+",
  26966. height: math.unit(4, "meters")
  26967. },
  26968. {
  26969. name: "Macro",
  26970. height: math.unit(50, "meters")
  26971. },
  26972. {
  26973. name: "Macro+",
  26974. height: math.unit(100, "meters")
  26975. },
  26976. {
  26977. name: "Megamacro",
  26978. height: math.unit(20, "km")
  26979. },
  26980. {
  26981. name: "Caretaker",
  26982. height: math.unit(444, "megameters")
  26983. },
  26984. ]
  26985. ))
  26986. characterMakers.push(() => makeCharacter(
  26987. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26988. {
  26989. front: {
  26990. height: math.unit(1.67, "meters"),
  26991. weight: math.unit(140, "lb"),
  26992. name: "Front",
  26993. image: {
  26994. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26995. extra: 438 / 410,
  26996. bottom: 0.75 / 439
  26997. }
  26998. },
  26999. },
  27000. [
  27001. {
  27002. name: "Shrunken",
  27003. height: math.unit(7.6, "cm")
  27004. },
  27005. {
  27006. name: "Human Scale",
  27007. height: math.unit(1.67, "meters")
  27008. },
  27009. {
  27010. name: "Wolxi Scale",
  27011. height: math.unit(36.7, "meters"),
  27012. default: true
  27013. },
  27014. ]
  27015. ))
  27016. characterMakers.push(() => makeCharacter(
  27017. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27018. {
  27019. front: {
  27020. height: math.unit(1.73, "meters"),
  27021. weight: math.unit(240, "lb"),
  27022. name: "Front",
  27023. image: {
  27024. source: "./media/characters/izue-two-mothers/front.svg",
  27025. extra: 469 / 437,
  27026. bottom: 1.24 / 470.6
  27027. }
  27028. },
  27029. },
  27030. [
  27031. {
  27032. name: "Shrunken",
  27033. height: math.unit(7.86, "cm")
  27034. },
  27035. {
  27036. name: "Human Scale",
  27037. height: math.unit(1.73, "meters")
  27038. },
  27039. {
  27040. name: "Wolxi Scale",
  27041. height: math.unit(38, "meters"),
  27042. default: true
  27043. },
  27044. ]
  27045. ))
  27046. characterMakers.push(() => makeCharacter(
  27047. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27048. {
  27049. front: {
  27050. height: math.unit(1.55, "meters"),
  27051. weight: math.unit(120, "lb"),
  27052. name: "Front",
  27053. image: {
  27054. source: "./media/characters/teeku-love-shack/front.svg",
  27055. extra: 387 / 362,
  27056. bottom: 1.51 / 388
  27057. }
  27058. },
  27059. },
  27060. [
  27061. {
  27062. name: "Shrunken",
  27063. height: math.unit(7, "cm")
  27064. },
  27065. {
  27066. name: "Human Scale",
  27067. height: math.unit(1.55, "meters")
  27068. },
  27069. {
  27070. name: "Wolxi Scale",
  27071. height: math.unit(34.1, "meters"),
  27072. default: true
  27073. },
  27074. ]
  27075. ))
  27076. characterMakers.push(() => makeCharacter(
  27077. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27078. {
  27079. front: {
  27080. height: math.unit(1.83, "meters"),
  27081. weight: math.unit(135, "lb"),
  27082. name: "Front",
  27083. image: {
  27084. source: "./media/characters/dejma-the-red/front.svg",
  27085. extra: 480 / 458,
  27086. bottom: 1.8 / 482
  27087. }
  27088. },
  27089. },
  27090. [
  27091. {
  27092. name: "Shrunken",
  27093. height: math.unit(8.3, "cm")
  27094. },
  27095. {
  27096. name: "Human Scale",
  27097. height: math.unit(1.83, "meters")
  27098. },
  27099. {
  27100. name: "Wolxi Scale",
  27101. height: math.unit(40, "meters"),
  27102. default: true
  27103. },
  27104. ]
  27105. ))
  27106. characterMakers.push(() => makeCharacter(
  27107. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27108. {
  27109. front: {
  27110. height: math.unit(1.78, "meters"),
  27111. weight: math.unit(65, "kg"),
  27112. name: "Front",
  27113. image: {
  27114. source: "./media/characters/aki/front.svg",
  27115. extra: 452 / 415
  27116. }
  27117. },
  27118. frontNsfw: {
  27119. height: math.unit(1.78, "meters"),
  27120. weight: math.unit(65, "kg"),
  27121. name: "Front (NSFW)",
  27122. image: {
  27123. source: "./media/characters/aki/front-nsfw.svg",
  27124. extra: 452 / 415
  27125. }
  27126. },
  27127. back: {
  27128. height: math.unit(1.78, "meters"),
  27129. weight: math.unit(65, "kg"),
  27130. name: "Back",
  27131. image: {
  27132. source: "./media/characters/aki/back.svg",
  27133. extra: 452 / 415
  27134. }
  27135. },
  27136. rump: {
  27137. height: math.unit(2.05, "feet"),
  27138. name: "Rump",
  27139. image: {
  27140. source: "./media/characters/aki/rump.svg"
  27141. }
  27142. },
  27143. dick: {
  27144. height: math.unit(0.95, "feet"),
  27145. name: "Dick",
  27146. image: {
  27147. source: "./media/characters/aki/dick.svg"
  27148. }
  27149. },
  27150. },
  27151. [
  27152. {
  27153. name: "Micro",
  27154. height: math.unit(15, "cm")
  27155. },
  27156. {
  27157. name: "Normal",
  27158. height: math.unit(178, "cm"),
  27159. default: true
  27160. },
  27161. {
  27162. name: "Macro",
  27163. height: math.unit(214, "m")
  27164. },
  27165. {
  27166. name: "Macro+",
  27167. height: math.unit(534, "m")
  27168. },
  27169. ]
  27170. ))
  27171. characterMakers.push(() => makeCharacter(
  27172. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27173. {
  27174. front: {
  27175. height: math.unit(5 + 5 / 12, "feet"),
  27176. weight: math.unit(120, "lb"),
  27177. name: "Front",
  27178. image: {
  27179. source: "./media/characters/ari/front.svg",
  27180. extra: 1550/1471,
  27181. bottom: 39/1589
  27182. }
  27183. },
  27184. },
  27185. [
  27186. {
  27187. name: "Normal",
  27188. height: math.unit(5 + 5 / 12, "feet")
  27189. },
  27190. {
  27191. name: "Macro",
  27192. height: math.unit(100, "feet"),
  27193. default: true
  27194. },
  27195. {
  27196. name: "Megamacro",
  27197. height: math.unit(100, "miles")
  27198. },
  27199. {
  27200. name: "Gigamacro",
  27201. height: math.unit(80000, "miles")
  27202. },
  27203. ]
  27204. ))
  27205. characterMakers.push(() => makeCharacter(
  27206. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27207. {
  27208. side: {
  27209. height: math.unit(9, "feet"),
  27210. weight: math.unit(400, "kg"),
  27211. name: "Side",
  27212. image: {
  27213. source: "./media/characters/bolt/side.svg",
  27214. extra: 1126 / 896,
  27215. bottom: 60 / 1187.3,
  27216. }
  27217. },
  27218. },
  27219. [
  27220. {
  27221. name: "Micro",
  27222. height: math.unit(5, "inches")
  27223. },
  27224. {
  27225. name: "Normal",
  27226. height: math.unit(9, "feet"),
  27227. default: true
  27228. },
  27229. {
  27230. name: "Macro",
  27231. height: math.unit(700, "feet")
  27232. },
  27233. {
  27234. name: "Max Size",
  27235. height: math.unit(1.52e22, "yottameters")
  27236. },
  27237. ]
  27238. ))
  27239. characterMakers.push(() => makeCharacter(
  27240. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27241. {
  27242. front: {
  27243. height: math.unit(4.3, "meters"),
  27244. weight: math.unit(3, "tons"),
  27245. name: "Front",
  27246. image: {
  27247. source: "./media/characters/draekon-sylviar/front.svg",
  27248. extra: 2072/1512,
  27249. bottom: 74/2146
  27250. }
  27251. },
  27252. back: {
  27253. height: math.unit(4.3, "meters"),
  27254. weight: math.unit(3, "tons"),
  27255. name: "Back",
  27256. image: {
  27257. source: "./media/characters/draekon-sylviar/back.svg",
  27258. extra: 1639/1483,
  27259. bottom: 41/1680
  27260. }
  27261. },
  27262. feral: {
  27263. height: math.unit(1.15, "meters"),
  27264. weight: math.unit(3, "tons"),
  27265. name: "Feral",
  27266. image: {
  27267. source: "./media/characters/draekon-sylviar/feral.svg",
  27268. extra: 1033/395,
  27269. bottom: 130/1163
  27270. }
  27271. },
  27272. maw: {
  27273. height: math.unit(1.3, "meters"),
  27274. name: "Maw",
  27275. image: {
  27276. source: "./media/characters/draekon-sylviar/maw.svg"
  27277. }
  27278. },
  27279. mawSeparated: {
  27280. height: math.unit(1.53, "meters"),
  27281. name: "Separated Maw",
  27282. image: {
  27283. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27284. }
  27285. },
  27286. tail: {
  27287. height: math.unit(1.15, "meters"),
  27288. name: "Tail",
  27289. image: {
  27290. source: "./media/characters/draekon-sylviar/tail.svg"
  27291. }
  27292. },
  27293. tailDick: {
  27294. height: math.unit(1.15, "meters"),
  27295. name: "Tail (Dick)",
  27296. image: {
  27297. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27298. }
  27299. },
  27300. tailDickSeparated: {
  27301. height: math.unit(1.19, "meters"),
  27302. name: "Tail (Separated Dick)",
  27303. image: {
  27304. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27305. }
  27306. },
  27307. slit: {
  27308. height: math.unit(1, "meters"),
  27309. name: "Slit",
  27310. image: {
  27311. source: "./media/characters/draekon-sylviar/slit.svg"
  27312. }
  27313. },
  27314. dick: {
  27315. height: math.unit(1.15, "meters"),
  27316. name: "Dick",
  27317. image: {
  27318. source: "./media/characters/draekon-sylviar/dick.svg"
  27319. }
  27320. },
  27321. dickSeparated: {
  27322. height: math.unit(1.1, "meters"),
  27323. name: "Separated Dick",
  27324. image: {
  27325. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27326. }
  27327. },
  27328. sheath: {
  27329. height: math.unit(1.15, "meters"),
  27330. name: "Sheath",
  27331. image: {
  27332. source: "./media/characters/draekon-sylviar/sheath.svg"
  27333. }
  27334. },
  27335. },
  27336. [
  27337. {
  27338. name: "Small",
  27339. height: math.unit(4.53 / 2, "meters"),
  27340. default: true
  27341. },
  27342. {
  27343. name: "Normal",
  27344. height: math.unit(4.53, "meters"),
  27345. default: true
  27346. },
  27347. {
  27348. name: "Large",
  27349. height: math.unit(4.53 * 2, "meters"),
  27350. },
  27351. ]
  27352. ))
  27353. characterMakers.push(() => makeCharacter(
  27354. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27355. {
  27356. front: {
  27357. height: math.unit(6 + 2 / 12, "feet"),
  27358. weight: math.unit(180, "lb"),
  27359. name: "Front",
  27360. image: {
  27361. source: "./media/characters/brawler/front.svg",
  27362. extra: 3301 / 3027,
  27363. bottom: 138 / 3439
  27364. }
  27365. },
  27366. },
  27367. [
  27368. {
  27369. name: "Normal",
  27370. height: math.unit(6 + 2 / 12, "feet"),
  27371. default: true
  27372. },
  27373. ]
  27374. ))
  27375. characterMakers.push(() => makeCharacter(
  27376. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27377. {
  27378. front: {
  27379. height: math.unit(11, "feet"),
  27380. weight: math.unit(1000, "lb"),
  27381. name: "Front",
  27382. image: {
  27383. source: "./media/characters/alex/front.svg",
  27384. bottom: 44.5 / 620
  27385. }
  27386. },
  27387. },
  27388. [
  27389. {
  27390. name: "Micro",
  27391. height: math.unit(5, "inches")
  27392. },
  27393. {
  27394. name: "Normal",
  27395. height: math.unit(11, "feet"),
  27396. default: true
  27397. },
  27398. {
  27399. name: "Macro",
  27400. height: math.unit(9.5e9, "feet")
  27401. },
  27402. {
  27403. name: "Max Size",
  27404. height: math.unit(1.4e283, "yottameters")
  27405. },
  27406. ]
  27407. ))
  27408. characterMakers.push(() => makeCharacter(
  27409. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27410. {
  27411. female: {
  27412. height: math.unit(29.9, "m"),
  27413. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27414. name: "Female",
  27415. image: {
  27416. source: "./media/characters/zenari/female.svg",
  27417. extra: 3281.6 / 3217,
  27418. bottom: 72.2 / 3353
  27419. }
  27420. },
  27421. male: {
  27422. height: math.unit(27.7, "m"),
  27423. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27424. name: "Male",
  27425. image: {
  27426. source: "./media/characters/zenari/male.svg",
  27427. extra: 3008 / 2991,
  27428. bottom: 54.6 / 3069
  27429. }
  27430. },
  27431. },
  27432. [
  27433. {
  27434. name: "Macro",
  27435. height: math.unit(29.7, "meters"),
  27436. default: true
  27437. },
  27438. ]
  27439. ))
  27440. characterMakers.push(() => makeCharacter(
  27441. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27442. {
  27443. female: {
  27444. height: math.unit(23.8, "m"),
  27445. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27446. name: "Female",
  27447. image: {
  27448. source: "./media/characters/mactarian/female.svg",
  27449. extra: 2662 / 2569,
  27450. bottom: 73 / 2736
  27451. }
  27452. },
  27453. male: {
  27454. height: math.unit(23.8, "m"),
  27455. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27456. name: "Male",
  27457. image: {
  27458. source: "./media/characters/mactarian/male.svg",
  27459. extra: 2673 / 2600,
  27460. bottom: 76 / 2750
  27461. }
  27462. },
  27463. },
  27464. [
  27465. {
  27466. name: "Macro",
  27467. height: math.unit(23.8, "meters"),
  27468. default: true
  27469. },
  27470. ]
  27471. ))
  27472. characterMakers.push(() => makeCharacter(
  27473. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27474. {
  27475. female: {
  27476. height: math.unit(19.3, "m"),
  27477. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27478. name: "Female",
  27479. image: {
  27480. source: "./media/characters/umok/female.svg",
  27481. extra: 2186 / 2078,
  27482. bottom: 87 / 2277
  27483. }
  27484. },
  27485. male: {
  27486. height: math.unit(19.5, "m"),
  27487. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27488. name: "Male",
  27489. image: {
  27490. source: "./media/characters/umok/male.svg",
  27491. extra: 2233 / 2140,
  27492. bottom: 24.4 / 2258
  27493. }
  27494. },
  27495. },
  27496. [
  27497. {
  27498. name: "Macro",
  27499. height: math.unit(19.3, "meters"),
  27500. default: true
  27501. },
  27502. ]
  27503. ))
  27504. characterMakers.push(() => makeCharacter(
  27505. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27506. {
  27507. female: {
  27508. height: math.unit(26.15, "m"),
  27509. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27510. name: "Female",
  27511. image: {
  27512. source: "./media/characters/joraxian/female.svg",
  27513. extra: 2912 / 2824,
  27514. bottom: 36 / 2956
  27515. }
  27516. },
  27517. male: {
  27518. height: math.unit(25.4, "m"),
  27519. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27520. name: "Male",
  27521. image: {
  27522. source: "./media/characters/joraxian/male.svg",
  27523. extra: 2877 / 2721,
  27524. bottom: 82 / 2967
  27525. }
  27526. },
  27527. },
  27528. [
  27529. {
  27530. name: "Macro",
  27531. height: math.unit(26.15, "meters"),
  27532. default: true
  27533. },
  27534. ]
  27535. ))
  27536. characterMakers.push(() => makeCharacter(
  27537. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27538. {
  27539. female: {
  27540. height: math.unit(21.6, "m"),
  27541. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27542. name: "Female",
  27543. image: {
  27544. source: "./media/characters/sthara/female.svg",
  27545. extra: 2516 / 2347,
  27546. bottom: 21.5 / 2537
  27547. }
  27548. },
  27549. male: {
  27550. height: math.unit(24, "m"),
  27551. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27552. name: "Male",
  27553. image: {
  27554. source: "./media/characters/sthara/male.svg",
  27555. extra: 2732 / 2607,
  27556. bottom: 23 / 2732
  27557. }
  27558. },
  27559. },
  27560. [
  27561. {
  27562. name: "Macro",
  27563. height: math.unit(21.6, "meters"),
  27564. default: true
  27565. },
  27566. ]
  27567. ))
  27568. characterMakers.push(() => makeCharacter(
  27569. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27570. {
  27571. front: {
  27572. height: math.unit(6 + 4 / 12, "feet"),
  27573. weight: math.unit(175, "lb"),
  27574. name: "Front",
  27575. image: {
  27576. source: "./media/characters/luka-bryzant/front.svg",
  27577. extra: 311 / 289,
  27578. bottom: 4 / 315
  27579. }
  27580. },
  27581. back: {
  27582. height: math.unit(6 + 4 / 12, "feet"),
  27583. weight: math.unit(175, "lb"),
  27584. name: "Back",
  27585. image: {
  27586. source: "./media/characters/luka-bryzant/back.svg",
  27587. extra: 311 / 289,
  27588. bottom: 3.8 / 313.7
  27589. }
  27590. },
  27591. },
  27592. [
  27593. {
  27594. name: "Micro",
  27595. height: math.unit(10, "inches")
  27596. },
  27597. {
  27598. name: "Normal",
  27599. height: math.unit(6 + 4 / 12, "feet"),
  27600. default: true
  27601. },
  27602. {
  27603. name: "Large",
  27604. height: math.unit(12, "feet")
  27605. },
  27606. ]
  27607. ))
  27608. characterMakers.push(() => makeCharacter(
  27609. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27610. {
  27611. front: {
  27612. height: math.unit(5 + 7 / 12, "feet"),
  27613. weight: math.unit(185, "lb"),
  27614. name: "Front",
  27615. image: {
  27616. source: "./media/characters/aman-aquila/front.svg",
  27617. extra: 1013 / 976,
  27618. bottom: 45.6 / 1057
  27619. }
  27620. },
  27621. side: {
  27622. height: math.unit(5 + 7 / 12, "feet"),
  27623. weight: math.unit(185, "lb"),
  27624. name: "Side",
  27625. image: {
  27626. source: "./media/characters/aman-aquila/side.svg",
  27627. extra: 1054 / 1011,
  27628. bottom: 15 / 1070
  27629. }
  27630. },
  27631. back: {
  27632. height: math.unit(5 + 7 / 12, "feet"),
  27633. weight: math.unit(185, "lb"),
  27634. name: "Back",
  27635. image: {
  27636. source: "./media/characters/aman-aquila/back.svg",
  27637. extra: 1026 / 970,
  27638. bottom: 12 / 1039
  27639. }
  27640. },
  27641. head: {
  27642. height: math.unit(1.211, "feet"),
  27643. name: "Head",
  27644. image: {
  27645. source: "./media/characters/aman-aquila/head.svg",
  27646. }
  27647. },
  27648. },
  27649. [
  27650. {
  27651. name: "Minimicro",
  27652. height: math.unit(0.057, "inches")
  27653. },
  27654. {
  27655. name: "Micro",
  27656. height: math.unit(7, "inches")
  27657. },
  27658. {
  27659. name: "Mini",
  27660. height: math.unit(3 + 7 / 12, "feet")
  27661. },
  27662. {
  27663. name: "Normal",
  27664. height: math.unit(5 + 7 / 12, "feet"),
  27665. default: true
  27666. },
  27667. {
  27668. name: "Macro",
  27669. height: math.unit(157 + 7 / 12, "feet")
  27670. },
  27671. {
  27672. name: "Megamacro",
  27673. height: math.unit(1557 + 7 / 12, "feet")
  27674. },
  27675. {
  27676. name: "Gigamacro",
  27677. height: math.unit(15557 + 7 / 12, "feet")
  27678. },
  27679. ]
  27680. ))
  27681. characterMakers.push(() => makeCharacter(
  27682. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27683. {
  27684. front: {
  27685. height: math.unit(3 + 2 / 12, "inches"),
  27686. weight: math.unit(0.3, "ounces"),
  27687. name: "Front",
  27688. image: {
  27689. source: "./media/characters/hiphae/front.svg",
  27690. extra: 1931 / 1683,
  27691. bottom: 24 / 1955
  27692. }
  27693. },
  27694. },
  27695. [
  27696. {
  27697. name: "Normal",
  27698. height: math.unit(3 + 1 / 2, "inches"),
  27699. default: true
  27700. },
  27701. ]
  27702. ))
  27703. characterMakers.push(() => makeCharacter(
  27704. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27705. {
  27706. front: {
  27707. height: math.unit(5 + 10 / 12, "feet"),
  27708. weight: math.unit(165, "lb"),
  27709. name: "Front",
  27710. image: {
  27711. source: "./media/characters/nicky/front.svg",
  27712. extra: 3144 / 2886,
  27713. bottom: 45.6 / 3192
  27714. }
  27715. },
  27716. back: {
  27717. height: math.unit(5 + 10 / 12, "feet"),
  27718. weight: math.unit(165, "lb"),
  27719. name: "Back",
  27720. image: {
  27721. source: "./media/characters/nicky/back.svg",
  27722. extra: 3055 / 2804,
  27723. bottom: 28.4 / 3087
  27724. }
  27725. },
  27726. frontclothed: {
  27727. height: math.unit(5 + 10 / 12, "feet"),
  27728. weight: math.unit(165, "lb"),
  27729. name: "Front-clothed",
  27730. image: {
  27731. source: "./media/characters/nicky/front-clothed.svg",
  27732. extra: 3184.9 / 2926.9,
  27733. bottom: 86.5 / 3239.9
  27734. }
  27735. },
  27736. foot: {
  27737. height: math.unit(1.16, "feet"),
  27738. name: "Foot",
  27739. image: {
  27740. source: "./media/characters/nicky/foot.svg"
  27741. }
  27742. },
  27743. feet: {
  27744. height: math.unit(1.34, "feet"),
  27745. name: "Feet",
  27746. image: {
  27747. source: "./media/characters/nicky/feet.svg"
  27748. }
  27749. },
  27750. maw: {
  27751. height: math.unit(0.9, "feet"),
  27752. name: "Maw",
  27753. image: {
  27754. source: "./media/characters/nicky/maw.svg"
  27755. }
  27756. },
  27757. },
  27758. [
  27759. {
  27760. name: "Normal",
  27761. height: math.unit(5 + 10 / 12, "feet"),
  27762. default: true
  27763. },
  27764. {
  27765. name: "Macro",
  27766. height: math.unit(60, "feet")
  27767. },
  27768. {
  27769. name: "Megamacro",
  27770. height: math.unit(1, "mile")
  27771. },
  27772. ]
  27773. ))
  27774. characterMakers.push(() => makeCharacter(
  27775. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27776. {
  27777. side: {
  27778. height: math.unit(10, "feet"),
  27779. weight: math.unit(600, "lb"),
  27780. name: "Side",
  27781. image: {
  27782. source: "./media/characters/blair/side.svg",
  27783. bottom: 16.6 / 475,
  27784. extra: 458 / 431
  27785. }
  27786. },
  27787. },
  27788. [
  27789. {
  27790. name: "Micro",
  27791. height: math.unit(8, "inches")
  27792. },
  27793. {
  27794. name: "Normal",
  27795. height: math.unit(10, "feet"),
  27796. default: true
  27797. },
  27798. {
  27799. name: "Macro",
  27800. height: math.unit(180, "feet")
  27801. },
  27802. ]
  27803. ))
  27804. characterMakers.push(() => makeCharacter(
  27805. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27806. {
  27807. front: {
  27808. height: math.unit(5 + 4 / 12, "feet"),
  27809. weight: math.unit(125, "lb"),
  27810. name: "Front",
  27811. image: {
  27812. source: "./media/characters/fisher/front.svg",
  27813. extra: 444 / 390,
  27814. bottom: 2 / 444.8
  27815. }
  27816. },
  27817. },
  27818. [
  27819. {
  27820. name: "Micro",
  27821. height: math.unit(4, "inches")
  27822. },
  27823. {
  27824. name: "Normal",
  27825. height: math.unit(5 + 4 / 12, "feet"),
  27826. default: true
  27827. },
  27828. {
  27829. name: "Macro",
  27830. height: math.unit(100, "feet")
  27831. },
  27832. ]
  27833. ))
  27834. characterMakers.push(() => makeCharacter(
  27835. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27836. {
  27837. front: {
  27838. height: math.unit(6.71, "feet"),
  27839. weight: math.unit(200, "lb"),
  27840. preyCapacity: math.unit(1000000, "people"),
  27841. name: "Front",
  27842. image: {
  27843. source: "./media/characters/gliss/front.svg",
  27844. extra: 2347 / 2231,
  27845. bottom: 113 / 2462
  27846. }
  27847. },
  27848. hammerspaceSize: {
  27849. height: math.unit(6.71 * 717, "feet"),
  27850. weight: math.unit(200, "lb"),
  27851. preyCapacity: math.unit(1000000, "people"),
  27852. name: "Hammerspace Size",
  27853. image: {
  27854. source: "./media/characters/gliss/front.svg",
  27855. extra: 2347 / 2231,
  27856. bottom: 113 / 2462
  27857. }
  27858. },
  27859. },
  27860. [
  27861. {
  27862. name: "Normal",
  27863. height: math.unit(6.71, "feet"),
  27864. default: true
  27865. },
  27866. ]
  27867. ))
  27868. characterMakers.push(() => makeCharacter(
  27869. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27870. {
  27871. side: {
  27872. height: math.unit(1.44, "m"),
  27873. weight: math.unit(80, "kg"),
  27874. name: "Side",
  27875. image: {
  27876. source: "./media/characters/dune-anderson/side.svg",
  27877. bottom: 49 / 1426
  27878. }
  27879. },
  27880. },
  27881. [
  27882. {
  27883. name: "Wolf-sized",
  27884. height: math.unit(1.44, "meters")
  27885. },
  27886. {
  27887. name: "Normal",
  27888. height: math.unit(5.05, "meters"),
  27889. default: true
  27890. },
  27891. {
  27892. name: "Big",
  27893. height: math.unit(14.4, "meters")
  27894. },
  27895. {
  27896. name: "Huge",
  27897. height: math.unit(144, "meters")
  27898. },
  27899. ]
  27900. ))
  27901. characterMakers.push(() => makeCharacter(
  27902. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27903. {
  27904. front: {
  27905. height: math.unit(6, "feet"),
  27906. weight: math.unit(220, "lb"),
  27907. name: "Front",
  27908. image: {
  27909. source: "./media/characters/hind/front.svg",
  27910. extra: 1912/1787,
  27911. bottom: 52/1964
  27912. }
  27913. },
  27914. back: {
  27915. height: math.unit(6, "feet"),
  27916. weight: math.unit(220, "lb"),
  27917. name: "Back",
  27918. image: {
  27919. source: "./media/characters/hind/back.svg",
  27920. extra: 1901/1794,
  27921. bottom: 26/1927
  27922. }
  27923. },
  27924. },
  27925. [
  27926. {
  27927. name: "Normal",
  27928. height: math.unit(6, "feet"),
  27929. default: true
  27930. },
  27931. ]
  27932. ))
  27933. characterMakers.push(() => makeCharacter(
  27934. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27935. {
  27936. front: {
  27937. height: math.unit(2.1, "meters"),
  27938. weight: math.unit(150, "lb"),
  27939. name: "Front",
  27940. image: {
  27941. source: "./media/characters/tharquench-sizestealer/front.svg",
  27942. extra: 1605/1470,
  27943. bottom: 36/1641
  27944. }
  27945. },
  27946. frontAlt: {
  27947. height: math.unit(2.1, "meters"),
  27948. weight: math.unit(150, "lb"),
  27949. name: "Front (Alt)",
  27950. image: {
  27951. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27952. extra: 2318 / 2063,
  27953. bottom: 93.4 / 2410
  27954. }
  27955. },
  27956. },
  27957. [
  27958. {
  27959. name: "Nano",
  27960. height: math.unit(1, "mm")
  27961. },
  27962. {
  27963. name: "Micro",
  27964. height: math.unit(1, "cm")
  27965. },
  27966. {
  27967. name: "Normal",
  27968. height: math.unit(2.1, "meters"),
  27969. default: true
  27970. },
  27971. ]
  27972. ))
  27973. characterMakers.push(() => makeCharacter(
  27974. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27975. {
  27976. front: {
  27977. height: math.unit(7 + 5 / 12, "feet"),
  27978. weight: math.unit(357, "lb"),
  27979. name: "Front",
  27980. image: {
  27981. source: "./media/characters/solex-draconov/front.svg",
  27982. extra: 1993 / 1865,
  27983. bottom: 117 / 2111
  27984. }
  27985. },
  27986. },
  27987. [
  27988. {
  27989. name: "Natural Height",
  27990. height: math.unit(7 + 5 / 12, "feet"),
  27991. default: true
  27992. },
  27993. {
  27994. name: "Macro",
  27995. height: math.unit(350, "feet")
  27996. },
  27997. {
  27998. name: "Macro+",
  27999. height: math.unit(1000, "feet")
  28000. },
  28001. {
  28002. name: "Megamacro",
  28003. height: math.unit(20, "km")
  28004. },
  28005. {
  28006. name: "Megamacro+",
  28007. height: math.unit(1000, "km")
  28008. },
  28009. {
  28010. name: "Gigamacro",
  28011. height: math.unit(2.5, "Gm")
  28012. },
  28013. {
  28014. name: "Teramacro",
  28015. height: math.unit(15, "Tm")
  28016. },
  28017. {
  28018. name: "Galactic",
  28019. height: math.unit(30, "Zm")
  28020. },
  28021. {
  28022. name: "Universal",
  28023. height: math.unit(21000, "Ym")
  28024. },
  28025. {
  28026. name: "Omniversal",
  28027. height: math.unit(9.861e50, "Ym")
  28028. },
  28029. {
  28030. name: "Existential",
  28031. height: math.unit(1e300, "meters")
  28032. },
  28033. ]
  28034. ))
  28035. characterMakers.push(() => makeCharacter(
  28036. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28037. {
  28038. side: {
  28039. height: math.unit(25, "feet"),
  28040. weight: math.unit(90000, "lb"),
  28041. name: "Side",
  28042. image: {
  28043. source: "./media/characters/mandarax/side.svg",
  28044. extra: 614 / 332,
  28045. bottom: 55 / 630
  28046. }
  28047. },
  28048. lounging: {
  28049. height: math.unit(15.4, "feet"),
  28050. weight: math.unit(90000, "lb"),
  28051. name: "Lounging",
  28052. image: {
  28053. source: "./media/characters/mandarax/lounging.svg",
  28054. extra: 817/609,
  28055. bottom: 685/1502
  28056. }
  28057. },
  28058. head: {
  28059. height: math.unit(11.4, "feet"),
  28060. name: "Head",
  28061. image: {
  28062. source: "./media/characters/mandarax/head.svg"
  28063. }
  28064. },
  28065. belly: {
  28066. height: math.unit(33, "feet"),
  28067. name: "Belly",
  28068. preyCapacity: math.unit(500, "people"),
  28069. image: {
  28070. source: "./media/characters/mandarax/belly.svg"
  28071. }
  28072. },
  28073. dick: {
  28074. height: math.unit(8.46, "feet"),
  28075. name: "Dick",
  28076. image: {
  28077. source: "./media/characters/mandarax/dick.svg"
  28078. }
  28079. },
  28080. top: {
  28081. height: math.unit(28, "meters"),
  28082. name: "Top",
  28083. image: {
  28084. source: "./media/characters/mandarax/top.svg"
  28085. }
  28086. },
  28087. },
  28088. [
  28089. {
  28090. name: "Normal",
  28091. height: math.unit(25, "feet"),
  28092. default: true
  28093. },
  28094. ]
  28095. ))
  28096. characterMakers.push(() => makeCharacter(
  28097. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28098. {
  28099. front: {
  28100. height: math.unit(5, "feet"),
  28101. weight: math.unit(90, "lb"),
  28102. name: "Front",
  28103. image: {
  28104. source: "./media/characters/pixil/front.svg",
  28105. extra: 2000 / 1618,
  28106. bottom: 12.3 / 2011
  28107. }
  28108. },
  28109. },
  28110. [
  28111. {
  28112. name: "Normal",
  28113. height: math.unit(5, "feet"),
  28114. default: true
  28115. },
  28116. {
  28117. name: "Megamacro",
  28118. height: math.unit(10, "miles"),
  28119. },
  28120. ]
  28121. ))
  28122. characterMakers.push(() => makeCharacter(
  28123. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28124. {
  28125. front: {
  28126. height: math.unit(7 + 2 / 12, "feet"),
  28127. weight: math.unit(200, "lb"),
  28128. name: "Front",
  28129. image: {
  28130. source: "./media/characters/angel/front.svg",
  28131. extra: 1946/1840,
  28132. bottom: 30/1976
  28133. }
  28134. },
  28135. },
  28136. [
  28137. {
  28138. name: "Normal",
  28139. height: math.unit(7 + 2 / 12, "feet"),
  28140. default: true
  28141. },
  28142. {
  28143. name: "Macro",
  28144. height: math.unit(1000, "feet")
  28145. },
  28146. {
  28147. name: "Megamacro",
  28148. height: math.unit(2, "miles")
  28149. },
  28150. {
  28151. name: "Gigamacro",
  28152. height: math.unit(20, "earths")
  28153. },
  28154. ]
  28155. ))
  28156. characterMakers.push(() => makeCharacter(
  28157. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28158. {
  28159. front: {
  28160. height: math.unit(5, "feet"),
  28161. weight: math.unit(180, "lb"),
  28162. name: "Front",
  28163. image: {
  28164. source: "./media/characters/mekana/front.svg",
  28165. extra: 1671 / 1605,
  28166. bottom: 3.5 / 1691
  28167. }
  28168. },
  28169. side: {
  28170. height: math.unit(5, "feet"),
  28171. weight: math.unit(180, "lb"),
  28172. name: "Side",
  28173. image: {
  28174. source: "./media/characters/mekana/side.svg",
  28175. extra: 1671 / 1605,
  28176. bottom: 3.5 / 1691
  28177. }
  28178. },
  28179. back: {
  28180. height: math.unit(5, "feet"),
  28181. weight: math.unit(180, "lb"),
  28182. name: "Back",
  28183. image: {
  28184. source: "./media/characters/mekana/back.svg",
  28185. extra: 1671 / 1605,
  28186. bottom: 3.5 / 1691
  28187. }
  28188. },
  28189. },
  28190. [
  28191. {
  28192. name: "Normal",
  28193. height: math.unit(5, "feet"),
  28194. default: true
  28195. },
  28196. ]
  28197. ))
  28198. characterMakers.push(() => makeCharacter(
  28199. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28200. {
  28201. front: {
  28202. height: math.unit(4 + 6 / 12, "feet"),
  28203. weight: math.unit(80, "lb"),
  28204. name: "Front",
  28205. image: {
  28206. source: "./media/characters/pixie/front.svg",
  28207. extra: 1924 / 1825,
  28208. bottom: 22.4 / 1946
  28209. }
  28210. },
  28211. },
  28212. [
  28213. {
  28214. name: "Normal",
  28215. height: math.unit(4 + 6 / 12, "feet"),
  28216. default: true
  28217. },
  28218. {
  28219. name: "Macro",
  28220. height: math.unit(40, "feet")
  28221. },
  28222. ]
  28223. ))
  28224. characterMakers.push(() => makeCharacter(
  28225. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28226. {
  28227. front: {
  28228. height: math.unit(2.1, "meters"),
  28229. weight: math.unit(200, "lb"),
  28230. name: "Front",
  28231. image: {
  28232. source: "./media/characters/the-lascivious/front.svg",
  28233. extra: 1 / 0.893,
  28234. bottom: 3.5 / 573.7
  28235. }
  28236. },
  28237. },
  28238. [
  28239. {
  28240. name: "Human Scale",
  28241. height: math.unit(2.1, "meters")
  28242. },
  28243. {
  28244. name: "Wolxi Scale",
  28245. height: math.unit(46.2, "m"),
  28246. default: true
  28247. },
  28248. {
  28249. name: "Boinker of Buildings",
  28250. height: math.unit(10, "km")
  28251. },
  28252. {
  28253. name: "Shagger of Skyscrapers",
  28254. height: math.unit(40, "km")
  28255. },
  28256. {
  28257. name: "Banger of Boroughs",
  28258. height: math.unit(4000, "km")
  28259. },
  28260. {
  28261. name: "Screwer of States",
  28262. height: math.unit(100000, "km")
  28263. },
  28264. {
  28265. name: "Pounder of Planets",
  28266. height: math.unit(2000000, "km")
  28267. },
  28268. ]
  28269. ))
  28270. characterMakers.push(() => makeCharacter(
  28271. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28272. {
  28273. front: {
  28274. height: math.unit(6, "feet"),
  28275. weight: math.unit(150, "lb"),
  28276. name: "Front",
  28277. image: {
  28278. source: "./media/characters/aj/front.svg",
  28279. extra: 2039 / 1562,
  28280. bottom: 40 / 2079
  28281. }
  28282. },
  28283. },
  28284. [
  28285. {
  28286. name: "Normal",
  28287. height: math.unit(11 + 6 / 12, "feet"),
  28288. default: true
  28289. },
  28290. {
  28291. name: "Megamacro",
  28292. height: math.unit(60, "megameters")
  28293. },
  28294. ]
  28295. ))
  28296. characterMakers.push(() => makeCharacter(
  28297. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28298. {
  28299. side: {
  28300. height: math.unit(31 + 8 / 12, "feet"),
  28301. weight: math.unit(75000, "kg"),
  28302. name: "Side",
  28303. image: {
  28304. source: "./media/characters/koros/side.svg",
  28305. extra: 1442 / 1297,
  28306. bottom: 122.7 / 1562
  28307. }
  28308. },
  28309. dicksKingsCrown: {
  28310. height: math.unit(6, "feet"),
  28311. name: "Dicks (King's Crown)",
  28312. image: {
  28313. source: "./media/characters/koros/dicks-kings-crown.svg"
  28314. }
  28315. },
  28316. dicksTailSet: {
  28317. height: math.unit(3, "feet"),
  28318. name: "Dicks (Tail Set)",
  28319. image: {
  28320. source: "./media/characters/koros/dicks-tail-set.svg"
  28321. }
  28322. },
  28323. dickCumming: {
  28324. height: math.unit(7.98, "feet"),
  28325. name: "Dick (Cumming)",
  28326. image: {
  28327. source: "./media/characters/koros/dick-cumming.svg"
  28328. }
  28329. },
  28330. dicksBack: {
  28331. height: math.unit(5.9, "feet"),
  28332. name: "Dicks (Back)",
  28333. image: {
  28334. source: "./media/characters/koros/dicks-back.svg"
  28335. }
  28336. },
  28337. dicksFront: {
  28338. height: math.unit(3.72, "feet"),
  28339. name: "Dicks (Front)",
  28340. image: {
  28341. source: "./media/characters/koros/dicks-front.svg"
  28342. }
  28343. },
  28344. dicksPeeking: {
  28345. height: math.unit(3.0, "feet"),
  28346. name: "Dicks (Peeking)",
  28347. image: {
  28348. source: "./media/characters/koros/dicks-peeking.svg"
  28349. }
  28350. },
  28351. eye: {
  28352. height: math.unit(1.7, "feet"),
  28353. name: "Eye",
  28354. image: {
  28355. source: "./media/characters/koros/eye.svg"
  28356. }
  28357. },
  28358. headFront: {
  28359. height: math.unit(11.69, "feet"),
  28360. name: "Head (Front)",
  28361. image: {
  28362. source: "./media/characters/koros/head-front.svg"
  28363. }
  28364. },
  28365. headSide: {
  28366. height: math.unit(14, "feet"),
  28367. name: "Head (Side)",
  28368. image: {
  28369. source: "./media/characters/koros/head-side.svg"
  28370. }
  28371. },
  28372. leg: {
  28373. height: math.unit(17, "feet"),
  28374. name: "Leg",
  28375. image: {
  28376. source: "./media/characters/koros/leg.svg"
  28377. }
  28378. },
  28379. mawSide: {
  28380. height: math.unit(12.8, "feet"),
  28381. name: "Maw (Side)",
  28382. image: {
  28383. source: "./media/characters/koros/maw-side.svg"
  28384. }
  28385. },
  28386. mawSpitting: {
  28387. height: math.unit(17, "feet"),
  28388. name: "Maw (Spitting)",
  28389. image: {
  28390. source: "./media/characters/koros/maw-spitting.svg"
  28391. }
  28392. },
  28393. slit: {
  28394. height: math.unit(2.8, "feet"),
  28395. name: "Slit",
  28396. image: {
  28397. source: "./media/characters/koros/slit.svg"
  28398. }
  28399. },
  28400. stomach: {
  28401. height: math.unit(6.8, "feet"),
  28402. preyCapacity: math.unit(20, "people"),
  28403. name: "Stomach",
  28404. image: {
  28405. source: "./media/characters/koros/stomach.svg"
  28406. }
  28407. },
  28408. wingspanBottom: {
  28409. height: math.unit(114, "feet"),
  28410. name: "Wingspan (Bottom)",
  28411. image: {
  28412. source: "./media/characters/koros/wingspan-bottom.svg"
  28413. }
  28414. },
  28415. wingspanTop: {
  28416. height: math.unit(104, "feet"),
  28417. name: "Wingspan (Top)",
  28418. image: {
  28419. source: "./media/characters/koros/wingspan-top.svg"
  28420. }
  28421. },
  28422. },
  28423. [
  28424. {
  28425. name: "Normal",
  28426. height: math.unit(31 + 8 / 12, "feet"),
  28427. default: true
  28428. },
  28429. ]
  28430. ))
  28431. characterMakers.push(() => makeCharacter(
  28432. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28433. {
  28434. front: {
  28435. height: math.unit(18 + 5 / 12, "feet"),
  28436. weight: math.unit(3750, "kg"),
  28437. name: "Front",
  28438. image: {
  28439. source: "./media/characters/vexx/front.svg",
  28440. extra: 426 / 396,
  28441. bottom: 31.5 / 458
  28442. }
  28443. },
  28444. maw: {
  28445. height: math.unit(6, "feet"),
  28446. name: "Maw",
  28447. image: {
  28448. source: "./media/characters/vexx/maw.svg"
  28449. }
  28450. },
  28451. },
  28452. [
  28453. {
  28454. name: "Normal",
  28455. height: math.unit(18 + 5 / 12, "feet"),
  28456. default: true
  28457. },
  28458. ]
  28459. ))
  28460. characterMakers.push(() => makeCharacter(
  28461. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28462. {
  28463. front: {
  28464. height: math.unit(17 + 6 / 12, "feet"),
  28465. weight: math.unit(150, "lb"),
  28466. name: "Front",
  28467. image: {
  28468. source: "./media/characters/baadra/front.svg",
  28469. extra: 1694/1553,
  28470. bottom: 179/1873
  28471. }
  28472. },
  28473. frontAlt: {
  28474. height: math.unit(17 + 6 / 12, "feet"),
  28475. weight: math.unit(150, "lb"),
  28476. name: "Front (Alt)",
  28477. image: {
  28478. source: "./media/characters/baadra/front-alt.svg",
  28479. extra: 3137 / 2890,
  28480. bottom: 168.4 / 3305
  28481. }
  28482. },
  28483. back: {
  28484. height: math.unit(17 + 6 / 12, "feet"),
  28485. weight: math.unit(150, "lb"),
  28486. name: "Back",
  28487. image: {
  28488. source: "./media/characters/baadra/back.svg",
  28489. extra: 3142 / 2890,
  28490. bottom: 220 / 3371
  28491. }
  28492. },
  28493. head: {
  28494. height: math.unit(5.45, "feet"),
  28495. name: "Head",
  28496. image: {
  28497. source: "./media/characters/baadra/head.svg"
  28498. }
  28499. },
  28500. headAngry: {
  28501. height: math.unit(4.95, "feet"),
  28502. name: "Head (Angry)",
  28503. image: {
  28504. source: "./media/characters/baadra/head-angry.svg"
  28505. }
  28506. },
  28507. headOpen: {
  28508. height: math.unit(6, "feet"),
  28509. name: "Head (Open)",
  28510. image: {
  28511. source: "./media/characters/baadra/head-open.svg"
  28512. }
  28513. },
  28514. },
  28515. [
  28516. {
  28517. name: "Normal",
  28518. height: math.unit(17 + 6 / 12, "feet"),
  28519. default: true
  28520. },
  28521. ]
  28522. ))
  28523. characterMakers.push(() => makeCharacter(
  28524. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28525. {
  28526. front: {
  28527. height: math.unit(7 + 3 / 12, "feet"),
  28528. weight: math.unit(180, "lb"),
  28529. name: "Front",
  28530. image: {
  28531. source: "./media/characters/juri/front.svg",
  28532. extra: 1401 / 1237,
  28533. bottom: 18.5 / 1418
  28534. }
  28535. },
  28536. side: {
  28537. height: math.unit(7 + 3 / 12, "feet"),
  28538. weight: math.unit(180, "lb"),
  28539. name: "Side",
  28540. image: {
  28541. source: "./media/characters/juri/side.svg",
  28542. extra: 1424 / 1242,
  28543. bottom: 18.5 / 1447
  28544. }
  28545. },
  28546. sitting: {
  28547. height: math.unit(6, "feet"),
  28548. weight: math.unit(180, "lb"),
  28549. name: "Sitting",
  28550. image: {
  28551. source: "./media/characters/juri/sitting.svg",
  28552. extra: 1270 / 1143,
  28553. bottom: 100 / 1343
  28554. }
  28555. },
  28556. back: {
  28557. height: math.unit(7 + 3 / 12, "feet"),
  28558. weight: math.unit(180, "lb"),
  28559. name: "Back",
  28560. image: {
  28561. source: "./media/characters/juri/back.svg",
  28562. extra: 1377 / 1240,
  28563. bottom: 23.7 / 1405
  28564. }
  28565. },
  28566. maw: {
  28567. height: math.unit(2.8, "feet"),
  28568. name: "Maw",
  28569. image: {
  28570. source: "./media/characters/juri/maw.svg"
  28571. }
  28572. },
  28573. stomach: {
  28574. height: math.unit(0.89, "feet"),
  28575. preyCapacity: math.unit(4, "liters"),
  28576. name: "Stomach",
  28577. image: {
  28578. source: "./media/characters/juri/stomach.svg"
  28579. }
  28580. },
  28581. },
  28582. [
  28583. {
  28584. name: "Normal",
  28585. height: math.unit(7 + 3 / 12, "feet"),
  28586. default: true
  28587. },
  28588. ]
  28589. ))
  28590. characterMakers.push(() => makeCharacter(
  28591. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28592. {
  28593. fox: {
  28594. height: math.unit(5 + 6 / 12, "feet"),
  28595. weight: math.unit(140, "lb"),
  28596. name: "Fox",
  28597. image: {
  28598. source: "./media/characters/maxene-sita/fox.svg",
  28599. extra: 146 / 138,
  28600. bottom: 2.1 / 148.19
  28601. }
  28602. },
  28603. foxLaying: {
  28604. height: math.unit(1.70, "feet"),
  28605. weight: math.unit(140, "lb"),
  28606. name: "Fox (Laying)",
  28607. image: {
  28608. source: "./media/characters/maxene-sita/fox-laying.svg",
  28609. extra: 910 / 572,
  28610. bottom: 71 / 981
  28611. }
  28612. },
  28613. kitsune: {
  28614. height: math.unit(10, "feet"),
  28615. weight: math.unit(800, "lb"),
  28616. name: "Kitsune",
  28617. image: {
  28618. source: "./media/characters/maxene-sita/kitsune.svg",
  28619. extra: 185 / 176,
  28620. bottom: 4.7 / 189.9
  28621. }
  28622. },
  28623. hellhound: {
  28624. height: math.unit(10, "feet"),
  28625. weight: math.unit(700, "lb"),
  28626. name: "Hellhound",
  28627. image: {
  28628. source: "./media/characters/maxene-sita/hellhound.svg",
  28629. extra: 1600 / 1545,
  28630. bottom: 81 / 1681
  28631. }
  28632. },
  28633. },
  28634. [
  28635. {
  28636. name: "Normal",
  28637. height: math.unit(5 + 6 / 12, "feet"),
  28638. default: true
  28639. },
  28640. ]
  28641. ))
  28642. characterMakers.push(() => makeCharacter(
  28643. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28644. {
  28645. front: {
  28646. height: math.unit(3 + 4 / 12, "feet"),
  28647. weight: math.unit(70, "lb"),
  28648. name: "Front",
  28649. image: {
  28650. source: "./media/characters/maia/front.svg",
  28651. extra: 227 / 219.5,
  28652. bottom: 40 / 267
  28653. }
  28654. },
  28655. back: {
  28656. height: math.unit(3 + 4 / 12, "feet"),
  28657. weight: math.unit(70, "lb"),
  28658. name: "Back",
  28659. image: {
  28660. source: "./media/characters/maia/back.svg",
  28661. extra: 237 / 225
  28662. }
  28663. },
  28664. },
  28665. [
  28666. {
  28667. name: "Normal",
  28668. height: math.unit(3 + 4 / 12, "feet"),
  28669. default: true
  28670. },
  28671. ]
  28672. ))
  28673. characterMakers.push(() => makeCharacter(
  28674. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28675. {
  28676. front: {
  28677. height: math.unit(5 + 10 / 12, "feet"),
  28678. weight: math.unit(197, "lb"),
  28679. name: "Front",
  28680. image: {
  28681. source: "./media/characters/jabaro/front.svg",
  28682. extra: 225 / 216,
  28683. bottom: 5.06 / 230
  28684. }
  28685. },
  28686. back: {
  28687. height: math.unit(5 + 10 / 12, "feet"),
  28688. weight: math.unit(197, "lb"),
  28689. name: "Back",
  28690. image: {
  28691. source: "./media/characters/jabaro/back.svg",
  28692. extra: 225 / 219,
  28693. bottom: 1.9 / 227
  28694. }
  28695. },
  28696. },
  28697. [
  28698. {
  28699. name: "Normal",
  28700. height: math.unit(5 + 10 / 12, "feet"),
  28701. default: true
  28702. },
  28703. ]
  28704. ))
  28705. characterMakers.push(() => makeCharacter(
  28706. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28707. {
  28708. front: {
  28709. height: math.unit(5 + 8 / 12, "feet"),
  28710. weight: math.unit(139, "lb"),
  28711. name: "Front",
  28712. image: {
  28713. source: "./media/characters/risa/front.svg",
  28714. extra: 270 / 260,
  28715. bottom: 11.2 / 282
  28716. }
  28717. },
  28718. back: {
  28719. height: math.unit(5 + 8 / 12, "feet"),
  28720. weight: math.unit(139, "lb"),
  28721. name: "Back",
  28722. image: {
  28723. source: "./media/characters/risa/back.svg",
  28724. extra: 264 / 255,
  28725. bottom: 4 / 268
  28726. }
  28727. },
  28728. },
  28729. [
  28730. {
  28731. name: "Normal",
  28732. height: math.unit(5 + 8 / 12, "feet"),
  28733. default: true
  28734. },
  28735. ]
  28736. ))
  28737. characterMakers.push(() => makeCharacter(
  28738. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28739. {
  28740. front: {
  28741. height: math.unit(2 + 11 / 12, "feet"),
  28742. weight: math.unit(30, "lb"),
  28743. name: "Front",
  28744. image: {
  28745. source: "./media/characters/weatley/front.svg",
  28746. bottom: 10.7 / 414,
  28747. extra: 403.5 / 362
  28748. }
  28749. },
  28750. back: {
  28751. height: math.unit(2 + 11 / 12, "feet"),
  28752. weight: math.unit(30, "lb"),
  28753. name: "Back",
  28754. image: {
  28755. source: "./media/characters/weatley/back.svg",
  28756. bottom: 10.7 / 414,
  28757. extra: 403.5 / 362
  28758. }
  28759. },
  28760. },
  28761. [
  28762. {
  28763. name: "Normal",
  28764. height: math.unit(2 + 11 / 12, "feet"),
  28765. default: true
  28766. },
  28767. ]
  28768. ))
  28769. characterMakers.push(() => makeCharacter(
  28770. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28771. {
  28772. front: {
  28773. height: math.unit(5 + 2 / 12, "feet"),
  28774. weight: math.unit(50, "kg"),
  28775. name: "Front",
  28776. image: {
  28777. source: "./media/characters/mercury-crescent/front.svg",
  28778. extra: 1088 / 1033,
  28779. bottom: 18.9 / 1109
  28780. }
  28781. },
  28782. },
  28783. [
  28784. {
  28785. name: "Normal",
  28786. height: math.unit(5 + 2 / 12, "feet"),
  28787. default: true
  28788. },
  28789. ]
  28790. ))
  28791. characterMakers.push(() => makeCharacter(
  28792. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28793. {
  28794. front: {
  28795. height: math.unit(2, "feet"),
  28796. weight: math.unit(15, "kg"),
  28797. name: "Front",
  28798. image: {
  28799. source: "./media/characters/diamond-jones/front.svg",
  28800. extra: 727/723,
  28801. bottom: 46/773
  28802. }
  28803. },
  28804. },
  28805. [
  28806. {
  28807. name: "Normal",
  28808. height: math.unit(2, "feet"),
  28809. default: true
  28810. },
  28811. ]
  28812. ))
  28813. characterMakers.push(() => makeCharacter(
  28814. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28815. {
  28816. front: {
  28817. height: math.unit(3, "feet"),
  28818. weight: math.unit(30, "kg"),
  28819. name: "Front",
  28820. image: {
  28821. source: "./media/characters/sweet-bit/front.svg",
  28822. extra: 675 / 567,
  28823. bottom: 27.7 / 703
  28824. }
  28825. },
  28826. },
  28827. [
  28828. {
  28829. name: "Normal",
  28830. height: math.unit(3, "feet"),
  28831. default: true
  28832. },
  28833. ]
  28834. ))
  28835. characterMakers.push(() => makeCharacter(
  28836. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28837. {
  28838. side: {
  28839. height: math.unit(9.178, "feet"),
  28840. weight: math.unit(500, "lb"),
  28841. name: "Side",
  28842. image: {
  28843. source: "./media/characters/umbrazen/side.svg",
  28844. extra: 1730 / 1473,
  28845. bottom: 34.6 / 1765
  28846. }
  28847. },
  28848. },
  28849. [
  28850. {
  28851. name: "Normal",
  28852. height: math.unit(9.178, "feet"),
  28853. default: true
  28854. },
  28855. ]
  28856. ))
  28857. characterMakers.push(() => makeCharacter(
  28858. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28859. {
  28860. front: {
  28861. height: math.unit(10, "feet"),
  28862. weight: math.unit(750, "lb"),
  28863. name: "Front",
  28864. image: {
  28865. source: "./media/characters/arlist/front.svg",
  28866. extra: 961 / 778,
  28867. bottom: 6.2 / 986
  28868. }
  28869. },
  28870. },
  28871. [
  28872. {
  28873. name: "Normal",
  28874. height: math.unit(10, "feet"),
  28875. default: true
  28876. },
  28877. ]
  28878. ))
  28879. characterMakers.push(() => makeCharacter(
  28880. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28881. {
  28882. front: {
  28883. height: math.unit(5 + 1 / 12, "feet"),
  28884. weight: math.unit(110, "lb"),
  28885. name: "Front",
  28886. image: {
  28887. source: "./media/characters/aradel/front.svg",
  28888. extra: 324 / 303,
  28889. bottom: 3.6 / 329.4
  28890. }
  28891. },
  28892. },
  28893. [
  28894. {
  28895. name: "Normal",
  28896. height: math.unit(5 + 1 / 12, "feet"),
  28897. default: true
  28898. },
  28899. ]
  28900. ))
  28901. characterMakers.push(() => makeCharacter(
  28902. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28903. {
  28904. dressed: {
  28905. height: math.unit(3 + 8 / 12, "feet"),
  28906. weight: math.unit(50, "lb"),
  28907. name: "Dressed",
  28908. image: {
  28909. source: "./media/characters/serryn/dressed.svg",
  28910. extra: 1792 / 1656,
  28911. bottom: 43.5 / 1840
  28912. }
  28913. },
  28914. nude: {
  28915. height: math.unit(3 + 8 / 12, "feet"),
  28916. weight: math.unit(50, "lb"),
  28917. name: "Nude",
  28918. image: {
  28919. source: "./media/characters/serryn/nude.svg",
  28920. extra: 1792 / 1656,
  28921. bottom: 43.5 / 1840
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Normal",
  28928. height: math.unit(3 + 8 / 12, "feet"),
  28929. default: true
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28935. {
  28936. front: {
  28937. height: math.unit(7 + 10 / 12, "feet"),
  28938. weight: math.unit(255, "lb"),
  28939. name: "Front",
  28940. image: {
  28941. source: "./media/characters/xavier-thyme/front.svg",
  28942. extra: 3733 / 3642,
  28943. bottom: 131 / 3869
  28944. }
  28945. },
  28946. frontRaven: {
  28947. height: math.unit(7 + 10 / 12, "feet"),
  28948. weight: math.unit(255, "lb"),
  28949. name: "Front (Raven)",
  28950. image: {
  28951. source: "./media/characters/xavier-thyme/front-raven.svg",
  28952. extra: 4385 / 3642,
  28953. bottom: 131 / 4517
  28954. }
  28955. },
  28956. },
  28957. [
  28958. {
  28959. name: "Normal",
  28960. height: math.unit(7 + 10 / 12, "feet"),
  28961. default: true
  28962. },
  28963. ]
  28964. ))
  28965. characterMakers.push(() => makeCharacter(
  28966. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28967. {
  28968. front: {
  28969. height: math.unit(1.6, "m"),
  28970. weight: math.unit(50, "kg"),
  28971. name: "Front",
  28972. image: {
  28973. source: "./media/characters/kiki/front.svg",
  28974. extra: 4682 / 3610,
  28975. bottom: 115 / 4777
  28976. }
  28977. },
  28978. },
  28979. [
  28980. {
  28981. name: "Normal",
  28982. height: math.unit(1.6, "meters"),
  28983. default: true
  28984. },
  28985. ]
  28986. ))
  28987. characterMakers.push(() => makeCharacter(
  28988. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28989. {
  28990. front: {
  28991. height: math.unit(50, "m"),
  28992. weight: math.unit(500, "tonnes"),
  28993. name: "Front",
  28994. image: {
  28995. source: "./media/characters/ryoko/front.svg",
  28996. extra: 4632 / 3926,
  28997. bottom: 193 / 4823
  28998. }
  28999. },
  29000. },
  29001. [
  29002. {
  29003. name: "Normal",
  29004. height: math.unit(50, "meters"),
  29005. default: true
  29006. },
  29007. ]
  29008. ))
  29009. characterMakers.push(() => makeCharacter(
  29010. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29011. {
  29012. front: {
  29013. height: math.unit(30, "m"),
  29014. weight: math.unit(22, "tonnes"),
  29015. name: "Front",
  29016. image: {
  29017. source: "./media/characters/elio/front.svg",
  29018. extra: 4582 / 3720,
  29019. bottom: 236 / 4828
  29020. }
  29021. },
  29022. },
  29023. [
  29024. {
  29025. name: "Normal",
  29026. height: math.unit(30, "meters"),
  29027. default: true
  29028. },
  29029. ]
  29030. ))
  29031. characterMakers.push(() => makeCharacter(
  29032. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29033. {
  29034. front: {
  29035. height: math.unit(6 + 3 / 12, "feet"),
  29036. weight: math.unit(120, "lb"),
  29037. name: "Front",
  29038. image: {
  29039. source: "./media/characters/azura/front.svg",
  29040. extra: 1149 / 1135,
  29041. bottom: 45 / 1194
  29042. }
  29043. },
  29044. frontClothed: {
  29045. height: math.unit(6 + 3 / 12, "feet"),
  29046. weight: math.unit(120, "lb"),
  29047. name: "Front (Clothed)",
  29048. image: {
  29049. source: "./media/characters/azura/front-clothed.svg",
  29050. extra: 1149 / 1135,
  29051. bottom: 45 / 1194
  29052. }
  29053. },
  29054. },
  29055. [
  29056. {
  29057. name: "Normal",
  29058. height: math.unit(6 + 3 / 12, "feet"),
  29059. default: true
  29060. },
  29061. {
  29062. name: "Macro",
  29063. height: math.unit(20 + 6 / 12, "feet")
  29064. },
  29065. {
  29066. name: "Megamacro",
  29067. height: math.unit(12, "miles")
  29068. },
  29069. {
  29070. name: "Gigamacro",
  29071. height: math.unit(10000, "miles")
  29072. },
  29073. {
  29074. name: "Teramacro",
  29075. height: math.unit(900000, "miles")
  29076. },
  29077. ]
  29078. ))
  29079. characterMakers.push(() => makeCharacter(
  29080. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29081. {
  29082. front: {
  29083. height: math.unit(12, "feet"),
  29084. weight: math.unit(1, "ton"),
  29085. capacity: math.unit(660000, "gallons"),
  29086. name: "Front",
  29087. image: {
  29088. source: "./media/characters/zeus/front.svg",
  29089. extra: 5005 / 4717,
  29090. bottom: 363 / 5388
  29091. }
  29092. },
  29093. },
  29094. [
  29095. {
  29096. name: "Normal",
  29097. height: math.unit(12, "feet")
  29098. },
  29099. {
  29100. name: "Preferred Size",
  29101. height: math.unit(0.5, "miles"),
  29102. default: true
  29103. },
  29104. {
  29105. name: "Giga Horse",
  29106. height: math.unit(300, "miles")
  29107. },
  29108. {
  29109. name: "Riding Planets",
  29110. height: math.unit(30, "megameters")
  29111. },
  29112. {
  29113. name: "Cosmic Giant",
  29114. height: math.unit(3, "zettameters")
  29115. },
  29116. {
  29117. name: "Breeding God",
  29118. height: math.unit(9.92e22, "yottameters")
  29119. },
  29120. ]
  29121. ))
  29122. characterMakers.push(() => makeCharacter(
  29123. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29124. {
  29125. side: {
  29126. height: math.unit(9, "feet"),
  29127. weight: math.unit(1500, "kg"),
  29128. name: "Side",
  29129. image: {
  29130. source: "./media/characters/fang/side.svg",
  29131. extra: 924 / 866,
  29132. bottom: 47.5 / 972.3
  29133. }
  29134. },
  29135. },
  29136. [
  29137. {
  29138. name: "Normal",
  29139. height: math.unit(9, "feet"),
  29140. default: true
  29141. },
  29142. {
  29143. name: "Macro",
  29144. height: math.unit(75 + 6 / 12, "feet")
  29145. },
  29146. {
  29147. name: "Teramacro",
  29148. height: math.unit(50000, "miles")
  29149. },
  29150. ]
  29151. ))
  29152. characterMakers.push(() => makeCharacter(
  29153. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29154. {
  29155. front: {
  29156. height: math.unit(10, "feet"),
  29157. weight: math.unit(2, "tons"),
  29158. name: "Front",
  29159. image: {
  29160. source: "./media/characters/rekhit/front.svg",
  29161. extra: 2796 / 2590,
  29162. bottom: 225 / 3022
  29163. }
  29164. },
  29165. },
  29166. [
  29167. {
  29168. name: "Normal",
  29169. height: math.unit(10, "feet"),
  29170. default: true
  29171. },
  29172. {
  29173. name: "Macro",
  29174. height: math.unit(500, "feet")
  29175. },
  29176. ]
  29177. ))
  29178. characterMakers.push(() => makeCharacter(
  29179. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29180. {
  29181. front: {
  29182. height: math.unit(7 + 6.451 / 12, "feet"),
  29183. weight: math.unit(310, "lb"),
  29184. name: "Front",
  29185. image: {
  29186. source: "./media/characters/dahlia-verrick/front.svg",
  29187. extra: 1488 / 1365,
  29188. bottom: 6.2 / 1495
  29189. }
  29190. },
  29191. back: {
  29192. height: math.unit(7 + 6.451 / 12, "feet"),
  29193. weight: math.unit(310, "lb"),
  29194. name: "Back",
  29195. image: {
  29196. source: "./media/characters/dahlia-verrick/back.svg",
  29197. extra: 1472 / 1351,
  29198. bottom: 5.28 / 1477
  29199. }
  29200. },
  29201. frontBusiness: {
  29202. height: math.unit(7 + 6.451 / 12, "feet"),
  29203. weight: math.unit(200, "lb"),
  29204. name: "Front (Business)",
  29205. image: {
  29206. source: "./media/characters/dahlia-verrick/front-business.svg",
  29207. extra: 1478 / 1381,
  29208. bottom: 5.5 / 1484
  29209. }
  29210. },
  29211. frontCasual: {
  29212. height: math.unit(7 + 6.451 / 12, "feet"),
  29213. weight: math.unit(200, "lb"),
  29214. name: "Front (Casual)",
  29215. image: {
  29216. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29217. extra: 1478 / 1381,
  29218. bottom: 5.5 / 1484
  29219. }
  29220. },
  29221. },
  29222. [
  29223. {
  29224. name: "Travel-Sized",
  29225. height: math.unit(7.45, "inches")
  29226. },
  29227. {
  29228. name: "Normal",
  29229. height: math.unit(7 + 6.451 / 12, "feet"),
  29230. default: true
  29231. },
  29232. {
  29233. name: "Hitting the Town",
  29234. height: math.unit(37 + 8 / 12, "feet")
  29235. },
  29236. {
  29237. name: "Stomp in the Suburbs",
  29238. height: math.unit(964 + 9.728 / 12, "feet")
  29239. },
  29240. {
  29241. name: "Sit on the City",
  29242. height: math.unit(61747 + 10.592 / 12, "feet")
  29243. },
  29244. {
  29245. name: "Glomp the Globe",
  29246. height: math.unit(252919327 + 4.832 / 12, "feet")
  29247. },
  29248. ]
  29249. ))
  29250. characterMakers.push(() => makeCharacter(
  29251. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29252. {
  29253. front: {
  29254. height: math.unit(6 + 4 / 12, "feet"),
  29255. weight: math.unit(320, "lb"),
  29256. name: "Front",
  29257. image: {
  29258. source: "./media/characters/balina-mahigan/front.svg",
  29259. extra: 447 / 428,
  29260. bottom: 18 / 466
  29261. }
  29262. },
  29263. back: {
  29264. height: math.unit(6 + 4 / 12, "feet"),
  29265. weight: math.unit(320, "lb"),
  29266. name: "Back",
  29267. image: {
  29268. source: "./media/characters/balina-mahigan/back.svg",
  29269. extra: 445 / 428,
  29270. bottom: 4.07 / 448
  29271. }
  29272. },
  29273. arm: {
  29274. height: math.unit(1.88, "feet"),
  29275. name: "Arm",
  29276. image: {
  29277. source: "./media/characters/balina-mahigan/arm.svg"
  29278. }
  29279. },
  29280. backPort: {
  29281. height: math.unit(0.685, "feet"),
  29282. name: "Back Port",
  29283. image: {
  29284. source: "./media/characters/balina-mahigan/back-port.svg"
  29285. }
  29286. },
  29287. hoofpaw: {
  29288. height: math.unit(1.41, "feet"),
  29289. name: "Hoofpaw",
  29290. image: {
  29291. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29292. }
  29293. },
  29294. leftHandBack: {
  29295. height: math.unit(0.938, "feet"),
  29296. name: "Left Hand (Back)",
  29297. image: {
  29298. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29299. }
  29300. },
  29301. leftHandFront: {
  29302. height: math.unit(0.938, "feet"),
  29303. name: "Left Hand (Front)",
  29304. image: {
  29305. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29306. }
  29307. },
  29308. rightHandBack: {
  29309. height: math.unit(0.95, "feet"),
  29310. name: "Right Hand (Back)",
  29311. image: {
  29312. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29313. }
  29314. },
  29315. rightHandFront: {
  29316. height: math.unit(0.95, "feet"),
  29317. name: "Right Hand (Front)",
  29318. image: {
  29319. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29320. }
  29321. },
  29322. },
  29323. [
  29324. {
  29325. name: "Normal",
  29326. height: math.unit(6 + 4 / 12, "feet"),
  29327. default: true
  29328. },
  29329. ]
  29330. ))
  29331. characterMakers.push(() => makeCharacter(
  29332. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29333. {
  29334. front: {
  29335. height: math.unit(6, "feet"),
  29336. weight: math.unit(320, "lb"),
  29337. name: "Front",
  29338. image: {
  29339. source: "./media/characters/balina-mejeri/front.svg",
  29340. extra: 517 / 488,
  29341. bottom: 44.2 / 561
  29342. }
  29343. },
  29344. },
  29345. [
  29346. {
  29347. name: "Normal",
  29348. height: math.unit(6 + 4 / 12, "feet")
  29349. },
  29350. {
  29351. name: "Business",
  29352. height: math.unit(155, "feet"),
  29353. default: true
  29354. },
  29355. ]
  29356. ))
  29357. characterMakers.push(() => makeCharacter(
  29358. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29359. {
  29360. kneeling: {
  29361. height: math.unit(6 + 4 / 12, "feet"),
  29362. weight: math.unit(300 * 20, "lb"),
  29363. name: "Kneeling",
  29364. image: {
  29365. source: "./media/characters/balbarian/kneeling.svg",
  29366. extra: 922 / 862,
  29367. bottom: 42.4 / 965
  29368. }
  29369. },
  29370. },
  29371. [
  29372. {
  29373. name: "Normal",
  29374. height: math.unit(6 + 4 / 12, "feet")
  29375. },
  29376. {
  29377. name: "Treasured",
  29378. height: math.unit(18 + 9 / 12, "feet"),
  29379. default: true
  29380. },
  29381. {
  29382. name: "Macro",
  29383. height: math.unit(900, "feet")
  29384. },
  29385. ]
  29386. ))
  29387. characterMakers.push(() => makeCharacter(
  29388. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29389. {
  29390. front: {
  29391. height: math.unit(6 + 4 / 12, "feet"),
  29392. weight: math.unit(325, "lb"),
  29393. name: "Front",
  29394. image: {
  29395. source: "./media/characters/balina-amarini/front.svg",
  29396. extra: 415 / 403,
  29397. bottom: 19 / 433.4
  29398. }
  29399. },
  29400. back: {
  29401. height: math.unit(6 + 4 / 12, "feet"),
  29402. weight: math.unit(325, "lb"),
  29403. name: "Back",
  29404. image: {
  29405. source: "./media/characters/balina-amarini/back.svg",
  29406. extra: 415 / 403,
  29407. bottom: 13.5 / 432
  29408. }
  29409. },
  29410. overdrive: {
  29411. height: math.unit(6 + 4 / 12, "feet"),
  29412. weight: math.unit(400, "lb"),
  29413. name: "Overdrive",
  29414. image: {
  29415. source: "./media/characters/balina-amarini/overdrive.svg",
  29416. extra: 269 / 259,
  29417. bottom: 12 / 282
  29418. }
  29419. },
  29420. },
  29421. [
  29422. {
  29423. name: "Boom",
  29424. height: math.unit(9 + 10 / 12, "feet"),
  29425. default: true
  29426. },
  29427. {
  29428. name: "Macro",
  29429. height: math.unit(280, "feet")
  29430. },
  29431. ]
  29432. ))
  29433. characterMakers.push(() => makeCharacter(
  29434. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29435. {
  29436. goddess: {
  29437. height: math.unit(600, "feet"),
  29438. weight: math.unit(2000000, "tons"),
  29439. name: "Goddess",
  29440. image: {
  29441. source: "./media/characters/lady-kubwa/goddess.svg",
  29442. extra: 1240.5 / 1223,
  29443. bottom: 22 / 1263
  29444. }
  29445. },
  29446. goddesser: {
  29447. height: math.unit(900, "feet"),
  29448. weight: math.unit(20000000, "lb"),
  29449. name: "Goddess-er",
  29450. image: {
  29451. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29452. extra: 899 / 888,
  29453. bottom: 12.6 / 912
  29454. }
  29455. },
  29456. },
  29457. [
  29458. {
  29459. name: "Macro",
  29460. height: math.unit(600, "feet"),
  29461. default: true
  29462. },
  29463. {
  29464. name: "Megamacro",
  29465. height: math.unit(250, "miles")
  29466. },
  29467. ]
  29468. ))
  29469. characterMakers.push(() => makeCharacter(
  29470. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29471. {
  29472. front: {
  29473. height: math.unit(7 + 7 / 12, "feet"),
  29474. weight: math.unit(250, "lb"),
  29475. name: "Front",
  29476. image: {
  29477. source: "./media/characters/tala-grovehorn/front.svg",
  29478. extra: 2636 / 2525,
  29479. bottom: 147 / 2781
  29480. }
  29481. },
  29482. back: {
  29483. height: math.unit(7 + 7 / 12, "feet"),
  29484. weight: math.unit(250, "lb"),
  29485. name: "Back",
  29486. image: {
  29487. source: "./media/characters/tala-grovehorn/back.svg",
  29488. extra: 2635 / 2539,
  29489. bottom: 100 / 2732.8
  29490. }
  29491. },
  29492. mouth: {
  29493. height: math.unit(1.15, "feet"),
  29494. name: "Mouth",
  29495. image: {
  29496. source: "./media/characters/tala-grovehorn/mouth.svg"
  29497. }
  29498. },
  29499. dick: {
  29500. height: math.unit(2.36, "feet"),
  29501. name: "Dick",
  29502. image: {
  29503. source: "./media/characters/tala-grovehorn/dick.svg"
  29504. }
  29505. },
  29506. slit: {
  29507. height: math.unit(0.61, "feet"),
  29508. name: "Slit",
  29509. image: {
  29510. source: "./media/characters/tala-grovehorn/slit.svg"
  29511. }
  29512. },
  29513. },
  29514. [
  29515. ]
  29516. ))
  29517. characterMakers.push(() => makeCharacter(
  29518. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29519. {
  29520. front: {
  29521. height: math.unit(7 + 7 / 12, "feet"),
  29522. weight: math.unit(225, "lb"),
  29523. name: "Front",
  29524. image: {
  29525. source: "./media/characters/epona/front.svg",
  29526. extra: 2445 / 2290,
  29527. bottom: 251 / 2696
  29528. }
  29529. },
  29530. back: {
  29531. height: math.unit(7 + 7 / 12, "feet"),
  29532. weight: math.unit(225, "lb"),
  29533. name: "Back",
  29534. image: {
  29535. source: "./media/characters/epona/back.svg",
  29536. extra: 2546 / 2408,
  29537. bottom: 44 / 2589
  29538. }
  29539. },
  29540. genitals: {
  29541. height: math.unit(1.5, "feet"),
  29542. name: "Genitals",
  29543. image: {
  29544. source: "./media/characters/epona/genitals.svg"
  29545. }
  29546. },
  29547. },
  29548. [
  29549. {
  29550. name: "Normal",
  29551. height: math.unit(7 + 7 / 12, "feet"),
  29552. default: true
  29553. },
  29554. ]
  29555. ))
  29556. characterMakers.push(() => makeCharacter(
  29557. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29558. {
  29559. front: {
  29560. height: math.unit(7, "feet"),
  29561. weight: math.unit(518, "lb"),
  29562. name: "Front",
  29563. image: {
  29564. source: "./media/characters/avia-bloodbourn/front.svg",
  29565. extra: 1466 / 1350,
  29566. bottom: 65 / 1527
  29567. }
  29568. },
  29569. },
  29570. [
  29571. ]
  29572. ))
  29573. characterMakers.push(() => makeCharacter(
  29574. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29575. {
  29576. front: {
  29577. height: math.unit(9.35, "feet"),
  29578. weight: math.unit(600, "lb"),
  29579. name: "Front",
  29580. image: {
  29581. source: "./media/characters/amera/front.svg",
  29582. extra: 891 / 818,
  29583. bottom: 30 / 922.7
  29584. }
  29585. },
  29586. back: {
  29587. height: math.unit(9.35, "feet"),
  29588. weight: math.unit(600, "lb"),
  29589. name: "Back",
  29590. image: {
  29591. source: "./media/characters/amera/back.svg",
  29592. extra: 876 / 824,
  29593. bottom: 6.8 / 884
  29594. }
  29595. },
  29596. dick: {
  29597. height: math.unit(2.14, "feet"),
  29598. name: "Dick",
  29599. image: {
  29600. source: "./media/characters/amera/dick.svg"
  29601. }
  29602. },
  29603. },
  29604. [
  29605. {
  29606. name: "Normal",
  29607. height: math.unit(9.35, "feet"),
  29608. default: true
  29609. },
  29610. ]
  29611. ))
  29612. characterMakers.push(() => makeCharacter(
  29613. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29614. {
  29615. kneeling: {
  29616. height: math.unit(3 + 4 / 12, "feet"),
  29617. weight: math.unit(90, "lb"),
  29618. name: "Kneeling",
  29619. image: {
  29620. source: "./media/characters/rosewen/kneeling.svg",
  29621. extra: 1835 / 1571,
  29622. bottom: 27.7 / 1862
  29623. }
  29624. },
  29625. },
  29626. [
  29627. {
  29628. name: "Normal",
  29629. height: math.unit(3 + 4 / 12, "feet"),
  29630. default: true
  29631. },
  29632. ]
  29633. ))
  29634. characterMakers.push(() => makeCharacter(
  29635. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29636. {
  29637. front: {
  29638. height: math.unit(5 + 10 / 12, "feet"),
  29639. weight: math.unit(200, "lb"),
  29640. name: "Front",
  29641. image: {
  29642. source: "./media/characters/sabah/front.svg",
  29643. extra: 849 / 763,
  29644. bottom: 33.9 / 881
  29645. }
  29646. },
  29647. },
  29648. [
  29649. {
  29650. name: "Normal",
  29651. height: math.unit(5 + 10 / 12, "feet"),
  29652. default: true
  29653. },
  29654. ]
  29655. ))
  29656. characterMakers.push(() => makeCharacter(
  29657. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29658. {
  29659. front: {
  29660. height: math.unit(3 + 5 / 12, "feet"),
  29661. weight: math.unit(40, "kg"),
  29662. name: "Front",
  29663. image: {
  29664. source: "./media/characters/purple-flame/front.svg",
  29665. extra: 1577 / 1412,
  29666. bottom: 97 / 1694
  29667. }
  29668. },
  29669. frontDressed: {
  29670. height: math.unit(3 + 5 / 12, "feet"),
  29671. weight: math.unit(40, "kg"),
  29672. name: "Front (Dressed)",
  29673. image: {
  29674. source: "./media/characters/purple-flame/front-dressed.svg",
  29675. extra: 1577 / 1412,
  29676. bottom: 97 / 1694
  29677. }
  29678. },
  29679. headphones: {
  29680. height: math.unit(0.85, "feet"),
  29681. name: "Headphones",
  29682. image: {
  29683. source: "./media/characters/purple-flame/headphones.svg"
  29684. }
  29685. },
  29686. },
  29687. [
  29688. {
  29689. name: "Really Small",
  29690. height: math.unit(5, "cm")
  29691. },
  29692. {
  29693. name: "Micro",
  29694. height: math.unit(1 + 5 / 12, "feet")
  29695. },
  29696. {
  29697. name: "Normal",
  29698. height: math.unit(3 + 5 / 12, "feet"),
  29699. default: true
  29700. },
  29701. {
  29702. name: "Minimacro",
  29703. height: math.unit(125, "feet")
  29704. },
  29705. {
  29706. name: "Macro",
  29707. height: math.unit(0.5, "miles")
  29708. },
  29709. {
  29710. name: "Megamacro",
  29711. height: math.unit(50, "miles")
  29712. },
  29713. {
  29714. name: "Gigantic",
  29715. height: math.unit(750, "miles")
  29716. },
  29717. {
  29718. name: "Planetary",
  29719. height: math.unit(15000, "miles")
  29720. },
  29721. ]
  29722. ))
  29723. characterMakers.push(() => makeCharacter(
  29724. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29725. {
  29726. front: {
  29727. height: math.unit(14, "feet"),
  29728. weight: math.unit(959, "lb"),
  29729. name: "Front",
  29730. image: {
  29731. source: "./media/characters/arsenal/front.svg",
  29732. extra: 2357 / 2157,
  29733. bottom: 93 / 2458
  29734. }
  29735. },
  29736. },
  29737. [
  29738. {
  29739. name: "Normal",
  29740. height: math.unit(14, "feet"),
  29741. default: true
  29742. },
  29743. ]
  29744. ))
  29745. characterMakers.push(() => makeCharacter(
  29746. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29747. {
  29748. front: {
  29749. height: math.unit(6, "feet"),
  29750. weight: math.unit(150, "lb"),
  29751. name: "Front",
  29752. image: {
  29753. source: "./media/characters/adira/front.svg",
  29754. extra: 2121/2013,
  29755. bottom: 206/2327
  29756. }
  29757. },
  29758. },
  29759. [
  29760. {
  29761. name: "Micro",
  29762. height: math.unit(4, "inches"),
  29763. default: true
  29764. },
  29765. {
  29766. name: "Macro",
  29767. height: math.unit(50, "feet")
  29768. },
  29769. ]
  29770. ))
  29771. characterMakers.push(() => makeCharacter(
  29772. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29773. {
  29774. front: {
  29775. height: math.unit(16, "feet"),
  29776. weight: math.unit(1000, "lb"),
  29777. name: "Front",
  29778. image: {
  29779. source: "./media/characters/grim/front.svg",
  29780. extra: 622 / 614,
  29781. bottom: 18.1 / 642
  29782. }
  29783. },
  29784. back: {
  29785. height: math.unit(16, "feet"),
  29786. weight: math.unit(1000, "lb"),
  29787. name: "Back",
  29788. image: {
  29789. source: "./media/characters/grim/back.svg",
  29790. extra: 610.6 / 602,
  29791. bottom: 40.8 / 652
  29792. }
  29793. },
  29794. hunched: {
  29795. height: math.unit(9.75, "feet"),
  29796. weight: math.unit(1000, "lb"),
  29797. name: "Hunched",
  29798. image: {
  29799. source: "./media/characters/grim/hunched.svg",
  29800. extra: 304 / 297,
  29801. bottom: 35.4 / 394
  29802. }
  29803. },
  29804. },
  29805. [
  29806. {
  29807. name: "Normal",
  29808. height: math.unit(16, "feet"),
  29809. default: true
  29810. },
  29811. ]
  29812. ))
  29813. characterMakers.push(() => makeCharacter(
  29814. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29815. {
  29816. front: {
  29817. height: math.unit(2.3, "meters"),
  29818. weight: math.unit(300, "lb"),
  29819. name: "Front",
  29820. image: {
  29821. source: "./media/characters/sinja/front-sfw.svg",
  29822. extra: 1393 / 1294,
  29823. bottom: 70 / 1463
  29824. }
  29825. },
  29826. frontNsfw: {
  29827. height: math.unit(2.3, "meters"),
  29828. weight: math.unit(300, "lb"),
  29829. name: "Front (NSFW)",
  29830. image: {
  29831. source: "./media/characters/sinja/front-nsfw.svg",
  29832. extra: 1393 / 1294,
  29833. bottom: 70 / 1463
  29834. }
  29835. },
  29836. back: {
  29837. height: math.unit(2.3, "meters"),
  29838. weight: math.unit(300, "lb"),
  29839. name: "Back",
  29840. image: {
  29841. source: "./media/characters/sinja/back.svg",
  29842. extra: 1393 / 1294,
  29843. bottom: 70 / 1463
  29844. }
  29845. },
  29846. head: {
  29847. height: math.unit(1.771, "feet"),
  29848. name: "Head",
  29849. image: {
  29850. source: "./media/characters/sinja/head.svg"
  29851. }
  29852. },
  29853. slit: {
  29854. height: math.unit(0.8, "feet"),
  29855. name: "Slit",
  29856. image: {
  29857. source: "./media/characters/sinja/slit.svg"
  29858. }
  29859. },
  29860. },
  29861. [
  29862. {
  29863. name: "Normal",
  29864. height: math.unit(2.3, "meters")
  29865. },
  29866. {
  29867. name: "Macro",
  29868. height: math.unit(91, "meters"),
  29869. default: true
  29870. },
  29871. {
  29872. name: "Megamacro",
  29873. height: math.unit(91440, "meters")
  29874. },
  29875. {
  29876. name: "Gigamacro",
  29877. height: math.unit(60960000, "meters")
  29878. },
  29879. {
  29880. name: "Teramacro",
  29881. height: math.unit(9144000000, "meters")
  29882. },
  29883. ]
  29884. ))
  29885. characterMakers.push(() => makeCharacter(
  29886. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29887. {
  29888. front: {
  29889. height: math.unit(1.7, "meters"),
  29890. weight: math.unit(130, "lb"),
  29891. name: "Front",
  29892. image: {
  29893. source: "./media/characters/kyu/front.svg",
  29894. extra: 415 / 395,
  29895. bottom: 5 / 420
  29896. }
  29897. },
  29898. head: {
  29899. height: math.unit(1.75, "feet"),
  29900. name: "Head",
  29901. image: {
  29902. source: "./media/characters/kyu/head.svg"
  29903. }
  29904. },
  29905. foot: {
  29906. height: math.unit(0.81, "feet"),
  29907. name: "Foot",
  29908. image: {
  29909. source: "./media/characters/kyu/foot.svg"
  29910. }
  29911. },
  29912. },
  29913. [
  29914. {
  29915. name: "Normal",
  29916. height: math.unit(1.7, "meters")
  29917. },
  29918. {
  29919. name: "Macro",
  29920. height: math.unit(131, "feet"),
  29921. default: true
  29922. },
  29923. {
  29924. name: "Megamacro",
  29925. height: math.unit(91440, "meters")
  29926. },
  29927. {
  29928. name: "Gigamacro",
  29929. height: math.unit(60960000, "meters")
  29930. },
  29931. {
  29932. name: "Teramacro",
  29933. height: math.unit(9144000000, "meters")
  29934. },
  29935. ]
  29936. ))
  29937. characterMakers.push(() => makeCharacter(
  29938. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29939. {
  29940. front: {
  29941. height: math.unit(7 + 1 / 12, "feet"),
  29942. weight: math.unit(250, "lb"),
  29943. name: "Front",
  29944. image: {
  29945. source: "./media/characters/joey/front.svg",
  29946. extra: 1791 / 1537,
  29947. bottom: 28 / 1816
  29948. }
  29949. },
  29950. },
  29951. [
  29952. {
  29953. name: "Micro",
  29954. height: math.unit(3, "inches")
  29955. },
  29956. {
  29957. name: "Normal",
  29958. height: math.unit(7 + 1 / 12, "feet"),
  29959. default: true
  29960. },
  29961. ]
  29962. ))
  29963. characterMakers.push(() => makeCharacter(
  29964. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29965. {
  29966. front: {
  29967. height: math.unit(165, "cm"),
  29968. weight: math.unit(140, "lb"),
  29969. name: "Front",
  29970. image: {
  29971. source: "./media/characters/sam-evans/front.svg",
  29972. extra: 3417 / 3230,
  29973. bottom: 41.3 / 3417
  29974. }
  29975. },
  29976. frontSixTails: {
  29977. height: math.unit(165, "cm"),
  29978. weight: math.unit(140, "lb"),
  29979. name: "Front-six-tails",
  29980. image: {
  29981. source: "./media/characters/sam-evans/front-six-tails.svg",
  29982. extra: 3417 / 3230,
  29983. bottom: 41.3 / 3417
  29984. }
  29985. },
  29986. back: {
  29987. height: math.unit(165, "cm"),
  29988. weight: math.unit(140, "lb"),
  29989. name: "Back",
  29990. image: {
  29991. source: "./media/characters/sam-evans/back.svg",
  29992. extra: 3227 / 3032,
  29993. bottom: 6.8 / 3234
  29994. }
  29995. },
  29996. face: {
  29997. height: math.unit(0.68, "feet"),
  29998. name: "Face",
  29999. image: {
  30000. source: "./media/characters/sam-evans/face.svg"
  30001. }
  30002. },
  30003. },
  30004. [
  30005. {
  30006. name: "Normal",
  30007. height: math.unit(165, "cm"),
  30008. default: true
  30009. },
  30010. {
  30011. name: "Macro",
  30012. height: math.unit(100, "meters")
  30013. },
  30014. {
  30015. name: "Macro+",
  30016. height: math.unit(800, "meters")
  30017. },
  30018. {
  30019. name: "Macro++",
  30020. height: math.unit(3, "km")
  30021. },
  30022. {
  30023. name: "Macro+++",
  30024. height: math.unit(30, "km")
  30025. },
  30026. ]
  30027. ))
  30028. characterMakers.push(() => makeCharacter(
  30029. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30030. {
  30031. front: {
  30032. height: math.unit(10, "feet"),
  30033. weight: math.unit(750, "lb"),
  30034. name: "Front",
  30035. image: {
  30036. source: "./media/characters/juliet-a/front.svg",
  30037. extra: 1766 / 1720,
  30038. bottom: 43 / 1809
  30039. }
  30040. },
  30041. back: {
  30042. height: math.unit(10, "feet"),
  30043. weight: math.unit(750, "lb"),
  30044. name: "Back",
  30045. image: {
  30046. source: "./media/characters/juliet-a/back.svg",
  30047. extra: 1781 / 1734,
  30048. bottom: 35 / 1810,
  30049. }
  30050. },
  30051. },
  30052. [
  30053. {
  30054. name: "Normal",
  30055. height: math.unit(10, "feet"),
  30056. default: true
  30057. },
  30058. {
  30059. name: "Dragon Form",
  30060. height: math.unit(250, "feet")
  30061. },
  30062. {
  30063. name: "Macro",
  30064. height: math.unit(1000, "feet")
  30065. },
  30066. {
  30067. name: "Megamacro",
  30068. height: math.unit(10000, "feet")
  30069. }
  30070. ]
  30071. ))
  30072. characterMakers.push(() => makeCharacter(
  30073. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30074. {
  30075. regular: {
  30076. height: math.unit(7 + 3 / 12, "feet"),
  30077. weight: math.unit(260, "lb"),
  30078. name: "Regular",
  30079. image: {
  30080. source: "./media/characters/wild/regular.svg",
  30081. extra: 97.45 / 92,
  30082. bottom: 6.8 / 104.3
  30083. }
  30084. },
  30085. biggums: {
  30086. height: math.unit(8 + 6 / 12, "feet"),
  30087. weight: math.unit(425, "lb"),
  30088. name: "Biggums",
  30089. image: {
  30090. source: "./media/characters/wild/biggums.svg",
  30091. extra: 97.45 / 92,
  30092. bottom: 7.5 / 132.34
  30093. }
  30094. },
  30095. mawRegular: {
  30096. height: math.unit(1.24, "feet"),
  30097. name: "Maw (Regular)",
  30098. image: {
  30099. source: "./media/characters/wild/maw.svg"
  30100. }
  30101. },
  30102. mawBiggums: {
  30103. height: math.unit(1.47, "feet"),
  30104. name: "Maw (Biggums)",
  30105. image: {
  30106. source: "./media/characters/wild/maw.svg"
  30107. }
  30108. },
  30109. },
  30110. [
  30111. {
  30112. name: "Normal",
  30113. height: math.unit(7 + 3 / 12, "feet"),
  30114. default: true
  30115. },
  30116. ]
  30117. ))
  30118. characterMakers.push(() => makeCharacter(
  30119. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30120. {
  30121. front: {
  30122. height: math.unit(2.5, "meters"),
  30123. weight: math.unit(200, "kg"),
  30124. name: "Front",
  30125. image: {
  30126. source: "./media/characters/vidar/front.svg",
  30127. extra: 2994 / 2795,
  30128. bottom: 56 / 3061
  30129. }
  30130. },
  30131. back: {
  30132. height: math.unit(2.5, "meters"),
  30133. weight: math.unit(200, "kg"),
  30134. name: "Back",
  30135. image: {
  30136. source: "./media/characters/vidar/back.svg",
  30137. extra: 3131 / 2928,
  30138. bottom: 13.5 / 3141.5
  30139. }
  30140. },
  30141. feral: {
  30142. height: math.unit(2.5, "meters"),
  30143. weight: math.unit(2000, "kg"),
  30144. name: "Feral",
  30145. image: {
  30146. source: "./media/characters/vidar/feral.svg",
  30147. extra: 2790 / 1765,
  30148. bottom: 6 / 2796
  30149. }
  30150. },
  30151. },
  30152. [
  30153. {
  30154. name: "Normal",
  30155. height: math.unit(2.5, "meters"),
  30156. default: true
  30157. },
  30158. {
  30159. name: "Macro",
  30160. height: math.unit(100, "meters")
  30161. },
  30162. ]
  30163. ))
  30164. characterMakers.push(() => makeCharacter(
  30165. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30166. {
  30167. front: {
  30168. height: math.unit(5 + 9 / 12, "feet"),
  30169. weight: math.unit(120, "lb"),
  30170. name: "Front",
  30171. image: {
  30172. source: "./media/characters/ash/front.svg",
  30173. extra: 2189 / 1961,
  30174. bottom: 5.2 / 2194
  30175. }
  30176. },
  30177. },
  30178. [
  30179. {
  30180. name: "Normal",
  30181. height: math.unit(5 + 9 / 12, "feet"),
  30182. default: true
  30183. },
  30184. ]
  30185. ))
  30186. characterMakers.push(() => makeCharacter(
  30187. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30188. {
  30189. front: {
  30190. height: math.unit(9, "feet"),
  30191. weight: math.unit(10000, "lb"),
  30192. name: "Front",
  30193. image: {
  30194. source: "./media/characters/gygabite/front.svg",
  30195. bottom: 31.7 / 537.8,
  30196. extra: 505 / 370
  30197. }
  30198. },
  30199. },
  30200. [
  30201. {
  30202. name: "Normal",
  30203. height: math.unit(9, "feet"),
  30204. default: true
  30205. },
  30206. ]
  30207. ))
  30208. characterMakers.push(() => makeCharacter(
  30209. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30210. {
  30211. front: {
  30212. height: math.unit(12, "feet"),
  30213. weight: math.unit(4000, "lb"),
  30214. name: "Front",
  30215. image: {
  30216. source: "./media/characters/p0tat0/front.svg",
  30217. extra: 1065 / 921,
  30218. bottom: 55.7 / 1121.25
  30219. }
  30220. },
  30221. },
  30222. [
  30223. {
  30224. name: "Normal",
  30225. height: math.unit(12, "feet"),
  30226. default: true
  30227. },
  30228. ]
  30229. ))
  30230. characterMakers.push(() => makeCharacter(
  30231. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30232. {
  30233. side: {
  30234. height: math.unit(6.5, "feet"),
  30235. weight: math.unit(800, "lb"),
  30236. name: "Side",
  30237. image: {
  30238. source: "./media/characters/dusk/side.svg",
  30239. extra: 615 / 373,
  30240. bottom: 53 / 664
  30241. }
  30242. },
  30243. sitting: {
  30244. height: math.unit(7, "feet"),
  30245. weight: math.unit(800, "lb"),
  30246. name: "Sitting",
  30247. image: {
  30248. source: "./media/characters/dusk/sitting.svg",
  30249. extra: 753 / 425,
  30250. bottom: 33 / 774
  30251. }
  30252. },
  30253. head: {
  30254. height: math.unit(6.1, "feet"),
  30255. name: "Head",
  30256. image: {
  30257. source: "./media/characters/dusk/head.svg"
  30258. }
  30259. },
  30260. },
  30261. [
  30262. {
  30263. name: "Normal",
  30264. height: math.unit(7, "feet"),
  30265. default: true
  30266. },
  30267. ]
  30268. ))
  30269. characterMakers.push(() => makeCharacter(
  30270. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30271. {
  30272. front: {
  30273. height: math.unit(15, "feet"),
  30274. weight: math.unit(7000, "lb"),
  30275. name: "Front",
  30276. image: {
  30277. source: "./media/characters/jay-direwolf/front.svg",
  30278. extra: 1810 / 1732,
  30279. bottom: 66 / 1892
  30280. }
  30281. },
  30282. },
  30283. [
  30284. {
  30285. name: "Normal",
  30286. height: math.unit(15, "feet"),
  30287. default: true
  30288. },
  30289. ]
  30290. ))
  30291. characterMakers.push(() => makeCharacter(
  30292. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30293. {
  30294. front: {
  30295. height: math.unit(4 + 9 / 12, "feet"),
  30296. weight: math.unit(130, "lb"),
  30297. name: "Front",
  30298. image: {
  30299. source: "./media/characters/anchovie/front.svg",
  30300. extra: 382 / 350,
  30301. bottom: 25 / 409
  30302. }
  30303. },
  30304. back: {
  30305. height: math.unit(4 + 9 / 12, "feet"),
  30306. weight: math.unit(130, "lb"),
  30307. name: "Back",
  30308. image: {
  30309. source: "./media/characters/anchovie/back.svg",
  30310. extra: 385 / 352,
  30311. bottom: 16.6 / 402
  30312. }
  30313. },
  30314. frontDressed: {
  30315. height: math.unit(4 + 9 / 12, "feet"),
  30316. weight: math.unit(130, "lb"),
  30317. name: "Front (Dressed)",
  30318. image: {
  30319. source: "./media/characters/anchovie/front-dressed.svg",
  30320. extra: 382 / 350,
  30321. bottom: 25 / 409
  30322. }
  30323. },
  30324. backDressed: {
  30325. height: math.unit(4 + 9 / 12, "feet"),
  30326. weight: math.unit(130, "lb"),
  30327. name: "Back (Dressed)",
  30328. image: {
  30329. source: "./media/characters/anchovie/back-dressed.svg",
  30330. extra: 385 / 352,
  30331. bottom: 16.6 / 402
  30332. }
  30333. },
  30334. },
  30335. [
  30336. {
  30337. name: "Micro",
  30338. height: math.unit(6.4, "inches")
  30339. },
  30340. {
  30341. name: "Normal",
  30342. height: math.unit(4 + 9 / 12, "feet"),
  30343. default: true
  30344. },
  30345. ]
  30346. ))
  30347. characterMakers.push(() => makeCharacter(
  30348. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30349. {
  30350. front: {
  30351. height: math.unit(2, "meters"),
  30352. weight: math.unit(180, "lb"),
  30353. name: "Front",
  30354. image: {
  30355. source: "./media/characters/acidrenamon/front.svg",
  30356. extra: 987 / 890,
  30357. bottom: 22.8 / 1009
  30358. }
  30359. },
  30360. back: {
  30361. height: math.unit(2, "meters"),
  30362. weight: math.unit(180, "lb"),
  30363. name: "Back",
  30364. image: {
  30365. source: "./media/characters/acidrenamon/back.svg",
  30366. extra: 983 / 891,
  30367. bottom: 8.4 / 992
  30368. }
  30369. },
  30370. head: {
  30371. height: math.unit(1.92, "feet"),
  30372. name: "Head",
  30373. image: {
  30374. source: "./media/characters/acidrenamon/head.svg"
  30375. }
  30376. },
  30377. rump: {
  30378. height: math.unit(1.72, "feet"),
  30379. name: "Rump",
  30380. image: {
  30381. source: "./media/characters/acidrenamon/rump.svg"
  30382. }
  30383. },
  30384. tail: {
  30385. height: math.unit(4.2, "feet"),
  30386. name: "Tail",
  30387. image: {
  30388. source: "./media/characters/acidrenamon/tail.svg"
  30389. }
  30390. },
  30391. },
  30392. [
  30393. {
  30394. name: "Normal",
  30395. height: math.unit(2, "meters"),
  30396. default: true
  30397. },
  30398. {
  30399. name: "Minimacro",
  30400. height: math.unit(7, "meters")
  30401. },
  30402. {
  30403. name: "Macro",
  30404. height: math.unit(200, "meters")
  30405. },
  30406. {
  30407. name: "Gigamacro",
  30408. height: math.unit(0.2, "earths")
  30409. },
  30410. ]
  30411. ))
  30412. characterMakers.push(() => makeCharacter(
  30413. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30414. {
  30415. front: {
  30416. height: math.unit(152, "feet"),
  30417. name: "Front",
  30418. image: {
  30419. source: "./media/characters/kenzie-lee/front.svg",
  30420. extra: 1869/1774,
  30421. bottom: 128/1997
  30422. }
  30423. },
  30424. side: {
  30425. height: math.unit(86, "feet"),
  30426. name: "Side",
  30427. image: {
  30428. source: "./media/characters/kenzie-lee/side.svg",
  30429. extra: 930/815,
  30430. bottom: 177/1107
  30431. }
  30432. },
  30433. paw: {
  30434. height: math.unit(15, "feet"),
  30435. name: "Paw",
  30436. image: {
  30437. source: "./media/characters/kenzie-lee/paw.svg"
  30438. }
  30439. },
  30440. },
  30441. [
  30442. {
  30443. name: "Kenzie Flea",
  30444. height: math.unit(2, "mm"),
  30445. default: true
  30446. },
  30447. {
  30448. name: "Micro",
  30449. height: math.unit(2, "inches")
  30450. },
  30451. {
  30452. name: "Normal",
  30453. height: math.unit(152, "feet")
  30454. },
  30455. {
  30456. name: "Megamacro",
  30457. height: math.unit(7, "miles")
  30458. },
  30459. {
  30460. name: "Gigamacro",
  30461. height: math.unit(8000, "miles")
  30462. },
  30463. ]
  30464. ))
  30465. characterMakers.push(() => makeCharacter(
  30466. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30467. {
  30468. front: {
  30469. height: math.unit(6, "feet"),
  30470. name: "Front",
  30471. image: {
  30472. source: "./media/characters/withers/front.svg",
  30473. extra: 1935/1760,
  30474. bottom: 72/2007
  30475. }
  30476. },
  30477. back: {
  30478. height: math.unit(6, "feet"),
  30479. name: "Back",
  30480. image: {
  30481. source: "./media/characters/withers/back.svg",
  30482. extra: 1944/1792,
  30483. bottom: 12/1956
  30484. }
  30485. },
  30486. dressed: {
  30487. height: math.unit(6, "feet"),
  30488. name: "Dressed",
  30489. image: {
  30490. source: "./media/characters/withers/dressed.svg",
  30491. extra: 1937/1765,
  30492. bottom: 73/2010
  30493. }
  30494. },
  30495. phase1: {
  30496. height: math.unit(1.1, "feet"),
  30497. name: "Phase 1",
  30498. image: {
  30499. source: "./media/characters/withers/phase-1.svg",
  30500. extra: 1885/1232,
  30501. bottom: 0/1885
  30502. }
  30503. },
  30504. phase2: {
  30505. height: math.unit(1.05, "feet"),
  30506. name: "Phase 2",
  30507. image: {
  30508. source: "./media/characters/withers/phase-2.svg",
  30509. extra: 1792/1090,
  30510. bottom: 0/1792
  30511. }
  30512. },
  30513. partyWipe: {
  30514. height: math.unit(1.1, "feet"),
  30515. name: "Party Wipe",
  30516. image: {
  30517. source: "./media/characters/withers/party-wipe.svg",
  30518. extra: 1864/1207,
  30519. bottom: 0/1864
  30520. }
  30521. },
  30522. },
  30523. [
  30524. {
  30525. name: "Macro",
  30526. height: math.unit(167, "feet"),
  30527. default: true
  30528. },
  30529. {
  30530. name: "Megamacro",
  30531. height: math.unit(15, "miles")
  30532. }
  30533. ]
  30534. ))
  30535. characterMakers.push(() => makeCharacter(
  30536. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30537. {
  30538. front: {
  30539. height: math.unit(6 + 7 / 12, "feet"),
  30540. weight: math.unit(250, "lb"),
  30541. name: "Front",
  30542. image: {
  30543. source: "./media/characters/nemoskii/front.svg",
  30544. extra: 2270 / 1734,
  30545. bottom: 86 / 2354
  30546. }
  30547. },
  30548. back: {
  30549. height: math.unit(6 + 7 / 12, "feet"),
  30550. weight: math.unit(250, "lb"),
  30551. name: "Back",
  30552. image: {
  30553. source: "./media/characters/nemoskii/back.svg",
  30554. extra: 1845 / 1788,
  30555. bottom: 10.5 / 1852
  30556. }
  30557. },
  30558. head: {
  30559. height: math.unit(1.31, "feet"),
  30560. name: "Head",
  30561. image: {
  30562. source: "./media/characters/nemoskii/head.svg"
  30563. }
  30564. },
  30565. },
  30566. [
  30567. {
  30568. name: "Micro",
  30569. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30570. },
  30571. {
  30572. name: "Normal",
  30573. height: math.unit(6 + 7 / 12, "feet"),
  30574. default: true
  30575. },
  30576. {
  30577. name: "Macro",
  30578. height: math.unit((6 + 7 / 12) * 150, "feet")
  30579. },
  30580. {
  30581. name: "Macro+",
  30582. height: math.unit((6 + 7 / 12) * 500, "feet")
  30583. },
  30584. {
  30585. name: "Megamacro",
  30586. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30587. },
  30588. ]
  30589. ))
  30590. characterMakers.push(() => makeCharacter(
  30591. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30592. {
  30593. front: {
  30594. height: math.unit(1, "mile"),
  30595. weight: math.unit(265261.9, "lb"),
  30596. name: "Front",
  30597. image: {
  30598. source: "./media/characters/shui/front.svg",
  30599. extra: 1633 / 1564,
  30600. bottom: 91.5 / 1726
  30601. }
  30602. },
  30603. },
  30604. [
  30605. {
  30606. name: "Macro",
  30607. height: math.unit(1, "mile"),
  30608. default: true
  30609. },
  30610. ]
  30611. ))
  30612. characterMakers.push(() => makeCharacter(
  30613. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30614. {
  30615. front: {
  30616. height: math.unit(12 + 6 / 12, "feet"),
  30617. weight: math.unit(1342, "lb"),
  30618. name: "Front",
  30619. image: {
  30620. source: "./media/characters/arokh-takakura/front.svg",
  30621. extra: 1089 / 1043,
  30622. bottom: 77.4 / 1176.7
  30623. }
  30624. },
  30625. back: {
  30626. height: math.unit(12 + 6 / 12, "feet"),
  30627. weight: math.unit(1342, "lb"),
  30628. name: "Back",
  30629. image: {
  30630. source: "./media/characters/arokh-takakura/back.svg",
  30631. extra: 1046 / 1019,
  30632. bottom: 102 / 1150
  30633. }
  30634. },
  30635. },
  30636. [
  30637. {
  30638. name: "Big",
  30639. height: math.unit(12 + 6 / 12, "feet"),
  30640. default: true
  30641. },
  30642. ]
  30643. ))
  30644. characterMakers.push(() => makeCharacter(
  30645. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30646. {
  30647. front: {
  30648. height: math.unit(5 + 6 / 12, "feet"),
  30649. weight: math.unit(150, "lb"),
  30650. name: "Front",
  30651. image: {
  30652. source: "./media/characters/theo/front.svg",
  30653. extra: 1184 / 1131,
  30654. bottom: 7.4 / 1191
  30655. }
  30656. },
  30657. },
  30658. [
  30659. {
  30660. name: "Micro",
  30661. height: math.unit(5, "inches")
  30662. },
  30663. {
  30664. name: "Normal",
  30665. height: math.unit(5 + 6 / 12, "feet"),
  30666. default: true
  30667. },
  30668. ]
  30669. ))
  30670. characterMakers.push(() => makeCharacter(
  30671. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30672. {
  30673. front: {
  30674. height: math.unit(5 + 9 / 12, "feet"),
  30675. weight: math.unit(130, "lb"),
  30676. name: "Front",
  30677. image: {
  30678. source: "./media/characters/cecelia-swift/front.svg",
  30679. extra: 502 / 484,
  30680. bottom: 23 / 523
  30681. }
  30682. },
  30683. back: {
  30684. height: math.unit(5 + 9 / 12, "feet"),
  30685. weight: math.unit(130, "lb"),
  30686. name: "Back",
  30687. image: {
  30688. source: "./media/characters/cecelia-swift/back.svg",
  30689. extra: 499 / 485,
  30690. bottom: 12 / 511
  30691. }
  30692. },
  30693. head: {
  30694. height: math.unit(0.90, "feet"),
  30695. name: "Head",
  30696. image: {
  30697. source: "./media/characters/cecelia-swift/head.svg"
  30698. }
  30699. },
  30700. rump: {
  30701. height: math.unit(1.75, "feet"),
  30702. name: "Rump",
  30703. image: {
  30704. source: "./media/characters/cecelia-swift/rump.svg"
  30705. }
  30706. },
  30707. },
  30708. [
  30709. {
  30710. name: "Normal",
  30711. height: math.unit(5 + 9 / 12, "feet"),
  30712. default: true
  30713. },
  30714. {
  30715. name: "Big",
  30716. height: math.unit(50, "feet")
  30717. },
  30718. {
  30719. name: "Macro",
  30720. height: math.unit(100, "feet")
  30721. },
  30722. {
  30723. name: "Macro+",
  30724. height: math.unit(500, "feet")
  30725. },
  30726. {
  30727. name: "Macro++",
  30728. height: math.unit(1000, "feet")
  30729. },
  30730. ]
  30731. ))
  30732. characterMakers.push(() => makeCharacter(
  30733. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30734. {
  30735. front: {
  30736. height: math.unit(6, "feet"),
  30737. weight: math.unit(150, "lb"),
  30738. name: "Front",
  30739. image: {
  30740. source: "./media/characters/kaunan/front.svg",
  30741. extra: 2890 / 2523,
  30742. bottom: 49 / 2939
  30743. }
  30744. },
  30745. },
  30746. [
  30747. {
  30748. name: "Macro",
  30749. height: math.unit(150, "feet"),
  30750. default: true
  30751. },
  30752. ]
  30753. ))
  30754. characterMakers.push(() => makeCharacter(
  30755. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30756. {
  30757. dressed: {
  30758. height: math.unit(175, "cm"),
  30759. weight: math.unit(60, "kg"),
  30760. name: "Dressed",
  30761. image: {
  30762. source: "./media/characters/fei/dressed.svg",
  30763. extra: 1402/1278,
  30764. bottom: 27/1429
  30765. }
  30766. },
  30767. nude: {
  30768. height: math.unit(175, "cm"),
  30769. weight: math.unit(60, "kg"),
  30770. name: "Nude",
  30771. image: {
  30772. source: "./media/characters/fei/nude.svg",
  30773. extra: 1402/1278,
  30774. bottom: 27/1429
  30775. }
  30776. },
  30777. heels: {
  30778. height: math.unit(0.466, "feet"),
  30779. name: "Heels",
  30780. image: {
  30781. source: "./media/characters/fei/heels.svg",
  30782. extra: 156/152,
  30783. bottom: 28/184
  30784. }
  30785. },
  30786. },
  30787. [
  30788. {
  30789. name: "Mortal",
  30790. height: math.unit(175, "cm")
  30791. },
  30792. {
  30793. name: "Normal",
  30794. height: math.unit(3500, "m")
  30795. },
  30796. {
  30797. name: "Stroll",
  30798. height: math.unit(18.4, "km"),
  30799. default: true
  30800. },
  30801. {
  30802. name: "Showoff",
  30803. height: math.unit(175, "km")
  30804. },
  30805. ]
  30806. ))
  30807. characterMakers.push(() => makeCharacter(
  30808. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30809. {
  30810. front: {
  30811. height: math.unit(7, "feet"),
  30812. weight: math.unit(1000, "kg"),
  30813. name: "Front",
  30814. image: {
  30815. source: "./media/characters/edrax/front.svg",
  30816. extra: 2838 / 2550,
  30817. bottom: 130 / 2968
  30818. }
  30819. },
  30820. },
  30821. [
  30822. {
  30823. name: "Small",
  30824. height: math.unit(7, "feet")
  30825. },
  30826. {
  30827. name: "Normal",
  30828. height: math.unit(1500, "meters")
  30829. },
  30830. {
  30831. name: "Mega",
  30832. height: math.unit(12000000, "km"),
  30833. default: true
  30834. },
  30835. {
  30836. name: "Megamacro",
  30837. height: math.unit(10600000, "lightyears")
  30838. },
  30839. {
  30840. name: "Hypermacro",
  30841. height: math.unit(256, "yottameters")
  30842. },
  30843. ]
  30844. ))
  30845. characterMakers.push(() => makeCharacter(
  30846. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30847. {
  30848. front: {
  30849. height: math.unit(10, "feet"),
  30850. weight: math.unit(750, "lb"),
  30851. name: "Front",
  30852. image: {
  30853. source: "./media/characters/clove/front.svg",
  30854. extra: 1918/1751,
  30855. bottom: 52/1970
  30856. }
  30857. },
  30858. back: {
  30859. height: math.unit(10, "feet"),
  30860. weight: math.unit(750, "lb"),
  30861. name: "Back",
  30862. image: {
  30863. source: "./media/characters/clove/back.svg",
  30864. extra: 1912/1747,
  30865. bottom: 50/1962
  30866. }
  30867. },
  30868. },
  30869. [
  30870. {
  30871. name: "Normal",
  30872. height: math.unit(10, "feet"),
  30873. default: true
  30874. },
  30875. ]
  30876. ))
  30877. characterMakers.push(() => makeCharacter(
  30878. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30879. {
  30880. front: {
  30881. height: math.unit(4, "feet"),
  30882. weight: math.unit(50, "lb"),
  30883. name: "Front",
  30884. image: {
  30885. source: "./media/characters/alex-rabbit/front.svg",
  30886. extra: 507 / 458,
  30887. bottom: 18.5 / 527
  30888. }
  30889. },
  30890. back: {
  30891. height: math.unit(4, "feet"),
  30892. weight: math.unit(50, "lb"),
  30893. name: "Back",
  30894. image: {
  30895. source: "./media/characters/alex-rabbit/back.svg",
  30896. extra: 502 / 460,
  30897. bottom: 18.9 / 521
  30898. }
  30899. },
  30900. },
  30901. [
  30902. {
  30903. name: "Normal",
  30904. height: math.unit(4, "feet"),
  30905. default: true
  30906. },
  30907. ]
  30908. ))
  30909. characterMakers.push(() => makeCharacter(
  30910. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30911. {
  30912. front: {
  30913. height: math.unit(1 + 3 / 12, "feet"),
  30914. weight: math.unit(80, "lb"),
  30915. name: "Front",
  30916. image: {
  30917. source: "./media/characters/zander-rose/front.svg",
  30918. extra: 916 / 797,
  30919. bottom: 17 / 933
  30920. }
  30921. },
  30922. back: {
  30923. height: math.unit(1 + 3 / 12, "feet"),
  30924. weight: math.unit(80, "lb"),
  30925. name: "Back",
  30926. image: {
  30927. source: "./media/characters/zander-rose/back.svg",
  30928. extra: 903 / 779,
  30929. bottom: 31 / 934
  30930. }
  30931. },
  30932. },
  30933. [
  30934. {
  30935. name: "Normal",
  30936. height: math.unit(1 + 3 / 12, "feet"),
  30937. default: true
  30938. },
  30939. ]
  30940. ))
  30941. characterMakers.push(() => makeCharacter(
  30942. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30943. {
  30944. anthro: {
  30945. height: math.unit(6, "feet"),
  30946. weight: math.unit(150, "lb"),
  30947. name: "Anthro",
  30948. image: {
  30949. source: "./media/characters/razz/anthro.svg",
  30950. extra: 1437 / 1343,
  30951. bottom: 48 / 1485
  30952. }
  30953. },
  30954. feral: {
  30955. height: math.unit(6, "feet"),
  30956. weight: math.unit(150, "lb"),
  30957. name: "Feral",
  30958. image: {
  30959. source: "./media/characters/razz/feral.svg",
  30960. extra: 2569 / 1385,
  30961. bottom: 95 / 2664
  30962. }
  30963. },
  30964. },
  30965. [
  30966. {
  30967. name: "Normal",
  30968. height: math.unit(6, "feet"),
  30969. default: true
  30970. },
  30971. ]
  30972. ))
  30973. characterMakers.push(() => makeCharacter(
  30974. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30975. {
  30976. front: {
  30977. height: math.unit(9 + 4 / 12, "feet"),
  30978. weight: math.unit(500, "lb"),
  30979. name: "Front",
  30980. image: {
  30981. source: "./media/characters/morrigan/front.svg",
  30982. extra: 2707 / 2579,
  30983. bottom: 156 / 2863
  30984. }
  30985. },
  30986. },
  30987. [
  30988. {
  30989. name: "Normal",
  30990. height: math.unit(9 + 4 / 12, "feet"),
  30991. default: true
  30992. },
  30993. ]
  30994. ))
  30995. characterMakers.push(() => makeCharacter(
  30996. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30997. {
  30998. front: {
  30999. height: math.unit(5, "stories"),
  31000. weight: math.unit(4000, "lb"),
  31001. name: "Front",
  31002. image: {
  31003. source: "./media/characters/jenene/front.svg",
  31004. extra: 1780 / 1710,
  31005. bottom: 57 / 1837
  31006. }
  31007. },
  31008. },
  31009. [
  31010. {
  31011. name: "Normal",
  31012. height: math.unit(5, "stories"),
  31013. default: true
  31014. },
  31015. ]
  31016. ))
  31017. characterMakers.push(() => makeCharacter(
  31018. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31019. {
  31020. taurSfw: {
  31021. height: math.unit(10, "meters"),
  31022. weight: math.unit(17500, "kg"),
  31023. name: "Taur",
  31024. image: {
  31025. source: "./media/characters/faey/taur-sfw.svg",
  31026. extra: 1200 / 968,
  31027. bottom: 41 / 1241
  31028. }
  31029. },
  31030. chestmaw: {
  31031. height: math.unit(2.01, "meters"),
  31032. name: "Chestmaw",
  31033. image: {
  31034. source: "./media/characters/faey/chestmaw.svg"
  31035. }
  31036. },
  31037. foot: {
  31038. height: math.unit(2.43, "meters"),
  31039. name: "Foot",
  31040. image: {
  31041. source: "./media/characters/faey/foot.svg"
  31042. }
  31043. },
  31044. jaws: {
  31045. height: math.unit(1.66, "meters"),
  31046. name: "Jaws",
  31047. image: {
  31048. source: "./media/characters/faey/jaws.svg"
  31049. }
  31050. },
  31051. tongues: {
  31052. height: math.unit(2.01, "meters"),
  31053. name: "Tongues",
  31054. image: {
  31055. source: "./media/characters/faey/tongues.svg"
  31056. }
  31057. },
  31058. },
  31059. [
  31060. {
  31061. name: "Small",
  31062. height: math.unit(10, "meters"),
  31063. default: true
  31064. },
  31065. {
  31066. name: "Big",
  31067. height: math.unit(500000, "km")
  31068. },
  31069. ]
  31070. ))
  31071. characterMakers.push(() => makeCharacter(
  31072. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31073. {
  31074. front: {
  31075. height: math.unit(7, "feet"),
  31076. weight: math.unit(275, "lb"),
  31077. name: "Front",
  31078. image: {
  31079. source: "./media/characters/roku/front.svg",
  31080. extra: 903 / 878,
  31081. bottom: 37 / 940
  31082. }
  31083. },
  31084. },
  31085. [
  31086. {
  31087. name: "Normal",
  31088. height: math.unit(7, "feet"),
  31089. default: true
  31090. },
  31091. {
  31092. name: "Macro",
  31093. height: math.unit(500, "feet")
  31094. },
  31095. {
  31096. name: "Megamacro",
  31097. height: math.unit(200, "miles")
  31098. },
  31099. ]
  31100. ))
  31101. characterMakers.push(() => makeCharacter(
  31102. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31103. {
  31104. front: {
  31105. height: math.unit(6 + 2 / 12, "feet"),
  31106. weight: math.unit(150, "lb"),
  31107. name: "Front",
  31108. image: {
  31109. source: "./media/characters/lira/front.svg",
  31110. extra: 1727 / 1605,
  31111. bottom: 26 / 1753
  31112. }
  31113. },
  31114. back: {
  31115. height: math.unit(6 + 2 / 12, "feet"),
  31116. weight: math.unit(150, "lb"),
  31117. name: "Back",
  31118. image: {
  31119. source: "./media/characters/lira/back.svg",
  31120. extra: 1713/1621,
  31121. bottom: 20/1733
  31122. }
  31123. },
  31124. hand: {
  31125. height: math.unit(0.75, "feet"),
  31126. name: "Hand",
  31127. image: {
  31128. source: "./media/characters/lira/hand.svg"
  31129. }
  31130. },
  31131. maw: {
  31132. height: math.unit(0.65, "feet"),
  31133. name: "Maw",
  31134. image: {
  31135. source: "./media/characters/lira/maw.svg"
  31136. }
  31137. },
  31138. pawDigi: {
  31139. height: math.unit(1.6, "feet"),
  31140. name: "Paw Digi",
  31141. image: {
  31142. source: "./media/characters/lira/paw-digi.svg"
  31143. }
  31144. },
  31145. pawPlanti: {
  31146. height: math.unit(1.4, "feet"),
  31147. name: "Paw Planti",
  31148. image: {
  31149. source: "./media/characters/lira/paw-planti.svg"
  31150. }
  31151. },
  31152. },
  31153. [
  31154. {
  31155. name: "Normal",
  31156. height: math.unit(6 + 2 / 12, "feet"),
  31157. default: true
  31158. },
  31159. {
  31160. name: "Macro",
  31161. height: math.unit(100, "feet")
  31162. },
  31163. {
  31164. name: "Macro²",
  31165. height: math.unit(1600, "feet")
  31166. },
  31167. {
  31168. name: "Planetary",
  31169. height: math.unit(20, "earths")
  31170. },
  31171. ]
  31172. ))
  31173. characterMakers.push(() => makeCharacter(
  31174. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31175. {
  31176. front: {
  31177. height: math.unit(6, "feet"),
  31178. weight: math.unit(150, "lb"),
  31179. name: "Front",
  31180. image: {
  31181. source: "./media/characters/hadjet/front.svg",
  31182. extra: 1480 / 1346,
  31183. bottom: 26 / 1506
  31184. }
  31185. },
  31186. frontNsfw: {
  31187. height: math.unit(6, "feet"),
  31188. weight: math.unit(150, "lb"),
  31189. name: "Front (NSFW)",
  31190. image: {
  31191. source: "./media/characters/hadjet/front-nsfw.svg",
  31192. extra: 1440 / 1358,
  31193. bottom: 52 / 1492
  31194. }
  31195. },
  31196. },
  31197. [
  31198. {
  31199. name: "Macro",
  31200. height: math.unit(10, "stories"),
  31201. default: true
  31202. },
  31203. {
  31204. name: "Megamacro",
  31205. height: math.unit(1.5, "miles")
  31206. },
  31207. {
  31208. name: "Megamacro+",
  31209. height: math.unit(5, "miles")
  31210. },
  31211. ]
  31212. ))
  31213. characterMakers.push(() => makeCharacter(
  31214. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31215. {
  31216. side: {
  31217. height: math.unit(106, "feet"),
  31218. weight: math.unit(500, "tonnes"),
  31219. name: "Side",
  31220. image: {
  31221. source: "./media/characters/kodran/side.svg",
  31222. extra: 553 / 480,
  31223. bottom: 33 / 586
  31224. }
  31225. },
  31226. front: {
  31227. height: math.unit(132, "feet"),
  31228. weight: math.unit(500, "tonnes"),
  31229. name: "Front",
  31230. image: {
  31231. source: "./media/characters/kodran/front.svg",
  31232. extra: 667 / 643,
  31233. bottom: 42 / 709
  31234. }
  31235. },
  31236. flying: {
  31237. height: math.unit(350, "feet"),
  31238. weight: math.unit(500, "tonnes"),
  31239. name: "Flying",
  31240. image: {
  31241. source: "./media/characters/kodran/flying.svg"
  31242. }
  31243. },
  31244. foot: {
  31245. height: math.unit(33, "feet"),
  31246. name: "Foot",
  31247. image: {
  31248. source: "./media/characters/kodran/foot.svg"
  31249. }
  31250. },
  31251. footFront: {
  31252. height: math.unit(19, "feet"),
  31253. name: "Foot (Front)",
  31254. image: {
  31255. source: "./media/characters/kodran/foot-front.svg",
  31256. extra: 261 / 261,
  31257. bottom: 91 / 352
  31258. }
  31259. },
  31260. headFront: {
  31261. height: math.unit(53, "feet"),
  31262. name: "Head (Front)",
  31263. image: {
  31264. source: "./media/characters/kodran/head-front.svg"
  31265. }
  31266. },
  31267. headSide: {
  31268. height: math.unit(65, "feet"),
  31269. name: "Head (Side)",
  31270. image: {
  31271. source: "./media/characters/kodran/head-side.svg"
  31272. }
  31273. },
  31274. throat: {
  31275. height: math.unit(79, "feet"),
  31276. name: "Throat",
  31277. image: {
  31278. source: "./media/characters/kodran/throat.svg"
  31279. }
  31280. },
  31281. },
  31282. [
  31283. {
  31284. name: "Large",
  31285. height: math.unit(106, "feet"),
  31286. default: true
  31287. },
  31288. ]
  31289. ))
  31290. characterMakers.push(() => makeCharacter(
  31291. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31292. {
  31293. side: {
  31294. height: math.unit(11, "feet"),
  31295. weight: math.unit(150, "lb"),
  31296. name: "Side",
  31297. image: {
  31298. source: "./media/characters/pyxaron/side.svg",
  31299. extra: 305 / 195,
  31300. bottom: 17 / 322
  31301. }
  31302. },
  31303. },
  31304. [
  31305. {
  31306. name: "Normal",
  31307. height: math.unit(11, "feet"),
  31308. default: true
  31309. },
  31310. ]
  31311. ))
  31312. characterMakers.push(() => makeCharacter(
  31313. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31314. {
  31315. front: {
  31316. height: math.unit(6, "feet"),
  31317. weight: math.unit(150, "lb"),
  31318. name: "Front",
  31319. image: {
  31320. source: "./media/characters/meep/front.svg",
  31321. extra: 88 / 80,
  31322. bottom: 6 / 94
  31323. }
  31324. },
  31325. },
  31326. [
  31327. {
  31328. name: "Fun Sized",
  31329. height: math.unit(2, "inches"),
  31330. default: true
  31331. },
  31332. {
  31333. name: "Friend Sized",
  31334. height: math.unit(8, "inches")
  31335. },
  31336. ]
  31337. ))
  31338. characterMakers.push(() => makeCharacter(
  31339. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31340. {
  31341. front: {
  31342. height: math.unit(15, "feet"),
  31343. weight: math.unit(2500, "lb"),
  31344. name: "Front",
  31345. image: {
  31346. source: "./media/characters/holly-rabbit/front.svg",
  31347. extra: 1433 / 1233,
  31348. bottom: 125 / 1558
  31349. }
  31350. },
  31351. dick: {
  31352. height: math.unit(4.6, "feet"),
  31353. name: "Dick",
  31354. image: {
  31355. source: "./media/characters/holly-rabbit/dick.svg"
  31356. }
  31357. },
  31358. },
  31359. [
  31360. {
  31361. name: "Normal",
  31362. height: math.unit(15, "feet"),
  31363. default: true
  31364. },
  31365. {
  31366. name: "Macro",
  31367. height: math.unit(250, "feet")
  31368. },
  31369. {
  31370. name: "Macro+",
  31371. height: math.unit(2500, "feet")
  31372. },
  31373. ]
  31374. ))
  31375. characterMakers.push(() => makeCharacter(
  31376. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31377. {
  31378. front: {
  31379. height: math.unit(3.02, "meters"),
  31380. weight: math.unit(500, "kg"),
  31381. name: "Front",
  31382. image: {
  31383. source: "./media/characters/drena/front.svg",
  31384. extra: 282 / 243,
  31385. bottom: 8 / 290
  31386. }
  31387. },
  31388. side: {
  31389. height: math.unit(3.02, "meters"),
  31390. weight: math.unit(500, "kg"),
  31391. name: "Side",
  31392. image: {
  31393. source: "./media/characters/drena/side.svg",
  31394. extra: 280 / 245,
  31395. bottom: 10 / 290
  31396. }
  31397. },
  31398. back: {
  31399. height: math.unit(3.02, "meters"),
  31400. weight: math.unit(500, "kg"),
  31401. name: "Back",
  31402. image: {
  31403. source: "./media/characters/drena/back.svg",
  31404. extra: 278 / 243,
  31405. bottom: 2 / 280
  31406. }
  31407. },
  31408. foot: {
  31409. height: math.unit(0.75, "meters"),
  31410. name: "Foot",
  31411. image: {
  31412. source: "./media/characters/drena/foot.svg"
  31413. }
  31414. },
  31415. maw: {
  31416. height: math.unit(0.82, "meters"),
  31417. name: "Maw",
  31418. image: {
  31419. source: "./media/characters/drena/maw.svg"
  31420. }
  31421. },
  31422. eating: {
  31423. height: math.unit(0.75, "meters"),
  31424. name: "Eating",
  31425. image: {
  31426. source: "./media/characters/drena/eating.svg"
  31427. }
  31428. },
  31429. rump: {
  31430. height: math.unit(0.93, "meters"),
  31431. name: "Rump",
  31432. image: {
  31433. source: "./media/characters/drena/rump.svg"
  31434. }
  31435. },
  31436. },
  31437. [
  31438. {
  31439. name: "Normal",
  31440. height: math.unit(3.02, "meters"),
  31441. default: true
  31442. },
  31443. ]
  31444. ))
  31445. characterMakers.push(() => makeCharacter(
  31446. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31447. {
  31448. front: {
  31449. height: math.unit(6 + 4 / 12, "feet"),
  31450. weight: math.unit(250, "lb"),
  31451. name: "Front",
  31452. image: {
  31453. source: "./media/characters/remmyzilla/front.svg",
  31454. extra: 4033 / 3588,
  31455. bottom: 123 / 4156
  31456. }
  31457. },
  31458. back: {
  31459. height: math.unit(6 + 4 / 12, "feet"),
  31460. weight: math.unit(250, "lb"),
  31461. name: "Back",
  31462. image: {
  31463. source: "./media/characters/remmyzilla/back.svg",
  31464. extra: 1696/1602,
  31465. bottom: 63/1759
  31466. }
  31467. },
  31468. paw: {
  31469. height: math.unit(1.73, "feet"),
  31470. name: "Paw",
  31471. image: {
  31472. source: "./media/characters/remmyzilla/paw.svg"
  31473. },
  31474. extraAttributes: {
  31475. "toeSize": {
  31476. name: "Toe Size",
  31477. power: 2,
  31478. type: "area",
  31479. base: math.unit(0.0035, "m^2")
  31480. },
  31481. "padSize": {
  31482. name: "Pad Size",
  31483. power: 2,
  31484. type: "area",
  31485. base: math.unit(0.015, "m^2")
  31486. },
  31487. "pawsize": {
  31488. name: "Paw Size",
  31489. power: 2,
  31490. type: "area",
  31491. base: math.unit(0.072, "m^2")
  31492. },
  31493. }
  31494. },
  31495. maw: {
  31496. height: math.unit(1.73, "feet"),
  31497. name: "Maw",
  31498. image: {
  31499. source: "./media/characters/remmyzilla/maw.svg"
  31500. }
  31501. },
  31502. },
  31503. [
  31504. {
  31505. name: "Normal",
  31506. height: math.unit(6 + 4 / 12, "feet")
  31507. },
  31508. {
  31509. name: "Minimacro",
  31510. height: math.unit(12 + 8 / 12, "feet")
  31511. },
  31512. {
  31513. name: "Normal",
  31514. height: math.unit(640, "feet"),
  31515. default: true
  31516. },
  31517. {
  31518. name: "Megamacro",
  31519. height: math.unit(6400, "feet")
  31520. },
  31521. {
  31522. name: "Gigamacro",
  31523. height: math.unit(64000, "miles")
  31524. },
  31525. ]
  31526. ))
  31527. characterMakers.push(() => makeCharacter(
  31528. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31529. {
  31530. front: {
  31531. height: math.unit(2.5, "meters"),
  31532. weight: math.unit(300, "lb"),
  31533. name: "Front",
  31534. image: {
  31535. source: "./media/characters/lawrence/front.svg",
  31536. extra: 357 / 335,
  31537. bottom: 30 / 387
  31538. }
  31539. },
  31540. back: {
  31541. height: math.unit(2.5, "meters"),
  31542. weight: math.unit(300, "lb"),
  31543. name: "Back",
  31544. image: {
  31545. source: "./media/characters/lawrence/back.svg",
  31546. extra: 357 / 338,
  31547. bottom: 16 / 373
  31548. }
  31549. },
  31550. head: {
  31551. height: math.unit(0.9, "meter"),
  31552. name: "Head",
  31553. image: {
  31554. source: "./media/characters/lawrence/head.svg"
  31555. }
  31556. },
  31557. maw: {
  31558. height: math.unit(0.7, "meter"),
  31559. name: "Maw",
  31560. image: {
  31561. source: "./media/characters/lawrence/maw.svg"
  31562. }
  31563. },
  31564. footBottom: {
  31565. height: math.unit(0.5, "meter"),
  31566. name: "Foot (Bottom)",
  31567. image: {
  31568. source: "./media/characters/lawrence/foot-bottom.svg"
  31569. }
  31570. },
  31571. footTop: {
  31572. height: math.unit(0.5, "meter"),
  31573. name: "Foot (Top)",
  31574. image: {
  31575. source: "./media/characters/lawrence/foot-top.svg"
  31576. }
  31577. },
  31578. },
  31579. [
  31580. {
  31581. name: "Normal",
  31582. height: math.unit(2.5, "meters"),
  31583. default: true
  31584. },
  31585. {
  31586. name: "Macro",
  31587. height: math.unit(95, "meters")
  31588. },
  31589. {
  31590. name: "Megamacro",
  31591. height: math.unit(150, "km")
  31592. },
  31593. ]
  31594. ))
  31595. characterMakers.push(() => makeCharacter(
  31596. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31597. {
  31598. front: {
  31599. height: math.unit(4.2, "meters"),
  31600. preyCapacity: math.unit(50, "m^3"),
  31601. weight: math.unit(30, "tonnes"),
  31602. name: "Front",
  31603. image: {
  31604. source: "./media/characters/sydney/front.svg",
  31605. extra: 1177/1129,
  31606. bottom: 197/1374
  31607. },
  31608. extraAttributes: {
  31609. "length": {
  31610. name: "Length",
  31611. power: 1,
  31612. type: "length",
  31613. base: math.unit(21, "meters")
  31614. },
  31615. }
  31616. },
  31617. },
  31618. [
  31619. {
  31620. name: "Normal",
  31621. height: math.unit(4.2, "meters"),
  31622. default: true
  31623. },
  31624. ]
  31625. ))
  31626. characterMakers.push(() => makeCharacter(
  31627. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31628. {
  31629. back: {
  31630. height: math.unit(201, "feet"),
  31631. name: "Back",
  31632. image: {
  31633. source: "./media/characters/jessica/back.svg",
  31634. extra: 273 / 259,
  31635. bottom: 7 / 280
  31636. }
  31637. },
  31638. },
  31639. [
  31640. {
  31641. name: "Normal",
  31642. height: math.unit(201, "feet"),
  31643. default: true
  31644. },
  31645. {
  31646. name: "Megamacro",
  31647. height: math.unit(8, "miles")
  31648. },
  31649. ]
  31650. ))
  31651. characterMakers.push(() => makeCharacter(
  31652. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31653. {
  31654. side: {
  31655. height: math.unit(5.6, "m"),
  31656. weight: math.unit(8000, "kg"),
  31657. name: "Side",
  31658. image: {
  31659. source: "./media/characters/victoria/side.svg",
  31660. extra: 1542/1229,
  31661. bottom: 124/1666
  31662. }
  31663. },
  31664. maw: {
  31665. height: math.unit(7.14, "feet"),
  31666. name: "Maw",
  31667. image: {
  31668. source: "./media/characters/victoria/maw.svg"
  31669. }
  31670. },
  31671. },
  31672. [
  31673. {
  31674. name: "Normal",
  31675. height: math.unit(5.6, "m"),
  31676. default: true
  31677. },
  31678. ]
  31679. ))
  31680. characterMakers.push(() => makeCharacter(
  31681. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31682. {
  31683. front: {
  31684. height: math.unit(5 + 6 / 12, "feet"),
  31685. name: "Front",
  31686. image: {
  31687. source: "./media/characters/cat/cat-front.svg",
  31688. extra: 1422/1262,
  31689. bottom: 61/1483
  31690. },
  31691. form: "cat",
  31692. default: true
  31693. },
  31694. back: {
  31695. height: math.unit(5 + 6 / 12, "feet"),
  31696. name: "Back",
  31697. image: {
  31698. source: "./media/characters/cat/cat-back.svg",
  31699. extra: 1466/1301,
  31700. bottom: 19/1485
  31701. },
  31702. form: "cat"
  31703. },
  31704. taur: {
  31705. height: math.unit(7, "feet"),
  31706. name: "Side",
  31707. image: {
  31708. source: "./media/characters/cat/taur-side.svg",
  31709. extra: 1389/1233,
  31710. bottom: 83/1472
  31711. },
  31712. form: "taur",
  31713. default: true
  31714. },
  31715. lucarioFront: {
  31716. height: math.unit(4, "feet"),
  31717. name: "Front",
  31718. image: {
  31719. source: "./media/characters/cat/lucario-front.svg",
  31720. extra: 1149/1019,
  31721. bottom: 84/1233
  31722. },
  31723. form: "lucario",
  31724. default: true
  31725. },
  31726. lucarioBack: {
  31727. height: math.unit(4, "feet"),
  31728. name: "Back",
  31729. image: {
  31730. source: "./media/characters/cat/lucario-back.svg",
  31731. extra: 1190/1059,
  31732. bottom: 33/1223
  31733. },
  31734. form: "lucario"
  31735. },
  31736. riolu_front: {
  31737. height: math.unit(2 + 4/12, "feet"),
  31738. name: "Front",
  31739. image: {
  31740. source: "./media/characters/cat/riolu-front.svg",
  31741. extra: 1104/956,
  31742. bottom: 70/1174
  31743. },
  31744. form: "riolu",
  31745. default: true
  31746. },
  31747. nickit: {
  31748. height: math.unit(2, "feet"),
  31749. name: "Side",
  31750. image: {
  31751. source: "./media/characters/cat/nickit-side.svg",
  31752. extra: 1087/852,
  31753. bottom: 67/1154
  31754. },
  31755. form: "nickit",
  31756. default: true
  31757. },
  31758. lopunnyFront: {
  31759. height: math.unit(5, "feet"),
  31760. name: "Front",
  31761. image: {
  31762. source: "./media/characters/cat/lopunny-front.svg",
  31763. extra: 1217/1078,
  31764. bottom: 23/1240
  31765. },
  31766. form: "lopunny",
  31767. default: true
  31768. },
  31769. lopunnyBack: {
  31770. height: math.unit(5, "feet"),
  31771. name: "Back",
  31772. image: {
  31773. source: "./media/characters/cat/lopunny-back.svg",
  31774. extra: 1205/1057,
  31775. bottom: 33/1238
  31776. },
  31777. form: "lopunny"
  31778. },
  31779. dog_front: {
  31780. height: math.unit(5 + 9/12, "feet"),
  31781. name: "Front",
  31782. image: {
  31783. source: "./media/characters/cat/dog-front.svg",
  31784. extra: 1403/1309,
  31785. bottom: 31/1434
  31786. },
  31787. form: "dog",
  31788. default: true
  31789. },
  31790. dog_back: {
  31791. height: math.unit(5 + 9/12, "feet"),
  31792. name: "Back",
  31793. image: {
  31794. source: "./media/characters/cat/dog-back.svg",
  31795. extra: 1393/1297,
  31796. bottom: 38/1431
  31797. },
  31798. form: "dog",
  31799. },
  31800. pikachu_front: {
  31801. height: math.unit(2.64, "feet"),
  31802. name: "Front",
  31803. image: {
  31804. source: "./media/characters/cat/pikachu-front.svg",
  31805. extra: 1224/958,
  31806. bottom: 34/1258
  31807. },
  31808. form: "pikachu",
  31809. default: true
  31810. },
  31811. pikachu_back: {
  31812. height: math.unit(2.64, "feet"),
  31813. name: "Back",
  31814. image: {
  31815. source: "./media/characters/cat/pikachu-back.svg",
  31816. extra: 1228/958,
  31817. bottom: 16/1244
  31818. },
  31819. form: "pikachu",
  31820. },
  31821. gigachuFront: {
  31822. height: math.unit(75, "feet"),
  31823. name: "Front",
  31824. image: {
  31825. source: "./media/characters/cat/gigachu-front.svg",
  31826. extra: 1239/1027,
  31827. bottom: 32/1271
  31828. },
  31829. form: "gigachu",
  31830. default: true
  31831. },
  31832. gigachuBack: {
  31833. height: math.unit(75, "feet"),
  31834. name: "Back",
  31835. image: {
  31836. source: "./media/characters/cat/gigachu-back.svg",
  31837. extra: 1229/1030,
  31838. bottom: 9/1238
  31839. },
  31840. form: "gigachu"
  31841. },
  31842. },
  31843. [
  31844. {
  31845. name: "Really small",
  31846. height: math.unit(1, "nm"),
  31847. allForms: true
  31848. },
  31849. {
  31850. name: "Micro",
  31851. height: math.unit(5, "inches"),
  31852. allForms: true
  31853. },
  31854. {
  31855. name: "Normal",
  31856. height: math.unit(5 + 6 / 12, "feet"),
  31857. default: true,
  31858. form: "cat"
  31859. },
  31860. {
  31861. name: "Normal",
  31862. height: math.unit(7, "feet"),
  31863. default: true,
  31864. form: "taur"
  31865. },
  31866. {
  31867. name: "Normal",
  31868. height: math.unit(4, "feet"),
  31869. default: true,
  31870. form: "lucario"
  31871. },
  31872. {
  31873. name: "Normal",
  31874. height: math.unit(2, "feet"),
  31875. default: true,
  31876. form: "nickit"
  31877. },
  31878. {
  31879. name: "Normal",
  31880. height: math.unit(5, "feet"),
  31881. default: true,
  31882. form: "lopunny"
  31883. },
  31884. {
  31885. name: "Normal",
  31886. height: math.unit(2 + 4/12, "feet"),
  31887. default: true,
  31888. form: "riolu"
  31889. },
  31890. {
  31891. name: "Normal",
  31892. height: math.unit(5 + 6 / 12, "feet"),
  31893. default: true,
  31894. form: "dog"
  31895. },
  31896. {
  31897. name: "Macro",
  31898. height: math.unit(50, "feet"),
  31899. allForms: true
  31900. },
  31901. {
  31902. name: "Normal",
  31903. height: math.unit(2.64, "feet"),
  31904. default: true,
  31905. form: "pikachu"
  31906. },
  31907. {
  31908. name: "Dynamax",
  31909. height: math.unit(75, "feet"),
  31910. form: "gigachu",
  31911. default: true
  31912. },
  31913. {
  31914. name: "Macro+",
  31915. height: math.unit(150, "feet"),
  31916. allForms: true
  31917. },
  31918. {
  31919. name: "Megamacro",
  31920. height: math.unit(100, "miles"),
  31921. allForms: true
  31922. },
  31923. ],
  31924. {
  31925. "cat": {
  31926. name: "Cat",
  31927. default: true
  31928. },
  31929. "taur": {
  31930. name: "Taur",
  31931. },
  31932. "lucario": {
  31933. name: "Lucario",
  31934. },
  31935. "riolu": {
  31936. name: "Riolu",
  31937. },
  31938. "nickit": {
  31939. name: "Nickit",
  31940. },
  31941. "lopunny": {
  31942. name: "Lopunny",
  31943. },
  31944. "dog": {
  31945. name: "Dog",
  31946. },
  31947. "pikachu": {
  31948. name: "Pikachu",
  31949. },
  31950. "gigachu": {
  31951. name: "Gigachu",
  31952. ignoreAllFormSizes: true
  31953. }
  31954. }
  31955. ))
  31956. characterMakers.push(() => makeCharacter(
  31957. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31958. {
  31959. front: {
  31960. height: math.unit(63.4, "meters"),
  31961. weight: math.unit(3.28349e+6, "kilograms"),
  31962. name: "Front",
  31963. image: {
  31964. source: "./media/characters/kirina-violet/front.svg",
  31965. extra: 2812 / 2725,
  31966. bottom: 0 / 2812
  31967. }
  31968. },
  31969. back: {
  31970. height: math.unit(63.4, "meters"),
  31971. weight: math.unit(3.28349e+6, "kilograms"),
  31972. name: "Back",
  31973. image: {
  31974. source: "./media/characters/kirina-violet/back.svg",
  31975. extra: 2812 / 2725,
  31976. bottom: 0 / 2812
  31977. }
  31978. },
  31979. mouth: {
  31980. height: math.unit(4.35, "meters"),
  31981. name: "Mouth",
  31982. image: {
  31983. source: "./media/characters/kirina-violet/mouth.svg"
  31984. }
  31985. },
  31986. paw: {
  31987. height: math.unit(5.6, "meters"),
  31988. name: "Paw",
  31989. image: {
  31990. source: "./media/characters/kirina-violet/paw.svg"
  31991. }
  31992. },
  31993. tail: {
  31994. height: math.unit(18, "meters"),
  31995. name: "Tail",
  31996. image: {
  31997. source: "./media/characters/kirina-violet/tail.svg"
  31998. }
  31999. },
  32000. },
  32001. [
  32002. {
  32003. name: "Macro",
  32004. height: math.unit(63.4, "meters"),
  32005. default: true
  32006. },
  32007. ]
  32008. ))
  32009. characterMakers.push(() => makeCharacter(
  32010. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32011. {
  32012. front: {
  32013. height: math.unit(6, "feet"),
  32014. weight: math.unit(150, "lb"),
  32015. name: "Front",
  32016. image: {
  32017. source: "./media/characters/sfaiyan/front.svg",
  32018. extra: 999 / 978,
  32019. bottom: 5 / 1004
  32020. }
  32021. },
  32022. },
  32023. [
  32024. {
  32025. name: "Normal",
  32026. height: math.unit(1.82, "meters")
  32027. },
  32028. {
  32029. name: "Giant",
  32030. height: math.unit(2.27, "km"),
  32031. default: true
  32032. },
  32033. ]
  32034. ))
  32035. characterMakers.push(() => makeCharacter(
  32036. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32037. {
  32038. front: {
  32039. height: math.unit(179, "cm"),
  32040. weight: math.unit(100, "kg"),
  32041. name: "Front",
  32042. image: {
  32043. source: "./media/characters/raunehkeli/front.svg",
  32044. extra: 1934 / 1926,
  32045. bottom: 0 / 1934
  32046. }
  32047. },
  32048. },
  32049. [
  32050. {
  32051. name: "Normal",
  32052. height: math.unit(179, "cm")
  32053. },
  32054. {
  32055. name: "Maximum",
  32056. height: math.unit(575, "meters"),
  32057. default: true
  32058. },
  32059. ]
  32060. ))
  32061. characterMakers.push(() => makeCharacter(
  32062. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32063. {
  32064. front: {
  32065. height: math.unit(6, "feet"),
  32066. weight: math.unit(150, "lb"),
  32067. name: "Front",
  32068. image: {
  32069. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  32070. extra: 2625 / 2518,
  32071. bottom: 60 / 2685
  32072. }
  32073. },
  32074. },
  32075. [
  32076. {
  32077. name: "Normal",
  32078. height: math.unit(6 + 2 / 12, "feet")
  32079. },
  32080. {
  32081. name: "Macro",
  32082. height: math.unit(1180, "feet"),
  32083. default: true
  32084. },
  32085. ]
  32086. ))
  32087. characterMakers.push(() => makeCharacter(
  32088. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32089. {
  32090. front: {
  32091. height: math.unit(5 + 6 / 12, "feet"),
  32092. weight: math.unit(108, "lb"),
  32093. name: "Front",
  32094. image: {
  32095. source: "./media/characters/lilith-zott/front.svg",
  32096. extra: 2510 / 2238,
  32097. bottom: 100 / 2610
  32098. }
  32099. },
  32100. frontDressed: {
  32101. height: math.unit(5 + 6 / 12, "feet"),
  32102. weight: math.unit(108, "lb"),
  32103. name: "Front (Dressed)",
  32104. image: {
  32105. source: "./media/characters/lilith-zott/front-dressed.svg",
  32106. extra: 2510 / 2238,
  32107. bottom: 100 / 2610
  32108. }
  32109. },
  32110. },
  32111. [
  32112. {
  32113. name: "Normal",
  32114. height: math.unit(5 + 6 / 12, "feet")
  32115. },
  32116. {
  32117. name: "Macro",
  32118. height: math.unit(1030, "feet"),
  32119. default: true
  32120. },
  32121. ]
  32122. ))
  32123. characterMakers.push(() => makeCharacter(
  32124. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32125. {
  32126. front: {
  32127. height: math.unit(6, "feet"),
  32128. weight: math.unit(150, "lb"),
  32129. name: "Front",
  32130. image: {
  32131. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  32132. extra: 2567 / 2435,
  32133. bottom: 39 / 2606
  32134. }
  32135. },
  32136. frontSuper: {
  32137. height: math.unit(6, "feet"),
  32138. name: "Front (Super)",
  32139. image: {
  32140. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  32141. extra: 2567 / 2435,
  32142. bottom: 39 / 2606
  32143. }
  32144. },
  32145. },
  32146. [
  32147. {
  32148. name: "Normal",
  32149. height: math.unit(5 + 10 / 12, "feet")
  32150. },
  32151. {
  32152. name: "Macro",
  32153. height: math.unit(1100, "feet"),
  32154. default: true
  32155. },
  32156. ]
  32157. ))
  32158. characterMakers.push(() => makeCharacter(
  32159. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32160. {
  32161. front: {
  32162. height: math.unit(100, "miles"),
  32163. name: "Front",
  32164. image: {
  32165. source: "./media/characters/sona/front.svg",
  32166. extra: 2433 / 2201,
  32167. bottom: 53 / 2486
  32168. }
  32169. },
  32170. foot: {
  32171. height: math.unit(16.1, "miles"),
  32172. name: "Foot",
  32173. image: {
  32174. source: "./media/characters/sona/foot.svg"
  32175. }
  32176. },
  32177. },
  32178. [
  32179. {
  32180. name: "Macro",
  32181. height: math.unit(100, "miles"),
  32182. default: true
  32183. },
  32184. ]
  32185. ))
  32186. characterMakers.push(() => makeCharacter(
  32187. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32188. {
  32189. front: {
  32190. height: math.unit(6, "feet"),
  32191. weight: math.unit(150, "lb"),
  32192. name: "Front",
  32193. image: {
  32194. source: "./media/characters/bailey/front.svg",
  32195. extra: 1778 / 1724,
  32196. bottom: 30 / 1808
  32197. }
  32198. },
  32199. },
  32200. [
  32201. {
  32202. name: "Micro",
  32203. height: math.unit(4, "inches")
  32204. },
  32205. {
  32206. name: "Normal",
  32207. height: math.unit(5 + 5 / 12, "feet"),
  32208. default: true
  32209. },
  32210. {
  32211. name: "Macro",
  32212. height: math.unit(250, "feet")
  32213. },
  32214. {
  32215. name: "Megamacro",
  32216. height: math.unit(100, "miles")
  32217. },
  32218. ]
  32219. ))
  32220. characterMakers.push(() => makeCharacter(
  32221. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32222. {
  32223. front: {
  32224. height: math.unit(5 + 2 / 12, "feet"),
  32225. weight: math.unit(120, "lb"),
  32226. name: "Front",
  32227. image: {
  32228. source: "./media/characters/snaps/front.svg",
  32229. extra: 2370 / 2177,
  32230. bottom: 48 / 2418
  32231. }
  32232. },
  32233. back: {
  32234. height: math.unit(5 + 2 / 12, "feet"),
  32235. weight: math.unit(120, "lb"),
  32236. name: "Back",
  32237. image: {
  32238. source: "./media/characters/snaps/back.svg",
  32239. extra: 2408 / 2258,
  32240. bottom: 15 / 2423
  32241. }
  32242. },
  32243. },
  32244. [
  32245. {
  32246. name: "Micro",
  32247. height: math.unit(9, "inches")
  32248. },
  32249. {
  32250. name: "Normal",
  32251. height: math.unit(5 + 2 / 12, "feet"),
  32252. default: true
  32253. },
  32254. {
  32255. name: "Mini Macro",
  32256. height: math.unit(10, "feet")
  32257. },
  32258. ]
  32259. ))
  32260. characterMakers.push(() => makeCharacter(
  32261. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32262. {
  32263. front: {
  32264. height: math.unit(1.8, "meters"),
  32265. weight: math.unit(85, "kg"),
  32266. name: "Front",
  32267. image: {
  32268. source: "./media/characters/azteck/front.svg",
  32269. extra: 2815 / 2625,
  32270. bottom: 89 / 2904
  32271. }
  32272. },
  32273. back: {
  32274. height: math.unit(1.8, "meters"),
  32275. weight: math.unit(85, "kg"),
  32276. name: "Back",
  32277. image: {
  32278. source: "./media/characters/azteck/back.svg",
  32279. extra: 2856 / 2648,
  32280. bottom: 85 / 2941
  32281. }
  32282. },
  32283. frontDressed: {
  32284. height: math.unit(1.8, "meters"),
  32285. weight: math.unit(85, "kg"),
  32286. name: "Front (Dressed)",
  32287. image: {
  32288. source: "./media/characters/azteck/front-dressed.svg",
  32289. extra: 2147 / 2003,
  32290. bottom: 68 / 2215
  32291. }
  32292. },
  32293. head: {
  32294. height: math.unit(0.47, "meters"),
  32295. weight: math.unit(85, "kg"),
  32296. name: "Head",
  32297. image: {
  32298. source: "./media/characters/azteck/head.svg"
  32299. }
  32300. },
  32301. },
  32302. [
  32303. {
  32304. name: "Bite sized",
  32305. height: math.unit(16, "cm")
  32306. },
  32307. {
  32308. name: "Normal",
  32309. height: math.unit(1.8, "meters"),
  32310. default: true
  32311. },
  32312. ]
  32313. ))
  32314. characterMakers.push(() => makeCharacter(
  32315. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32316. {
  32317. front: {
  32318. height: math.unit(6, "feet"),
  32319. weight: math.unit(150, "lb"),
  32320. name: "Front",
  32321. image: {
  32322. source: "./media/characters/pidge/front.svg",
  32323. extra: 1936/1820,
  32324. bottom: 0/1936
  32325. }
  32326. },
  32327. back: {
  32328. height: math.unit(6, "feet"),
  32329. weight: math.unit(150, "lb"),
  32330. name: "Back",
  32331. image: {
  32332. source: "./media/characters/pidge/back.svg",
  32333. extra: 1938/1843,
  32334. bottom: 0/1938
  32335. }
  32336. },
  32337. casual: {
  32338. height: math.unit(6, "feet"),
  32339. weight: math.unit(150, "lb"),
  32340. name: "Casual",
  32341. image: {
  32342. source: "./media/characters/pidge/casual.svg",
  32343. extra: 1936/1820,
  32344. bottom: 0/1936
  32345. }
  32346. },
  32347. tech: {
  32348. height: math.unit(6, "feet"),
  32349. weight: math.unit(150, "lb"),
  32350. name: "Tech",
  32351. image: {
  32352. source: "./media/characters/pidge/tech.svg",
  32353. extra: 1802/1682,
  32354. bottom: 0/1802
  32355. }
  32356. },
  32357. head: {
  32358. height: math.unit(1.61, "feet"),
  32359. name: "Head",
  32360. image: {
  32361. source: "./media/characters/pidge/head.svg"
  32362. }
  32363. },
  32364. collar: {
  32365. height: math.unit(0.82, "feet"),
  32366. name: "Collar",
  32367. image: {
  32368. source: "./media/characters/pidge/collar.svg"
  32369. }
  32370. },
  32371. },
  32372. [
  32373. {
  32374. name: "Macro",
  32375. height: math.unit(2, "mile"),
  32376. default: true
  32377. },
  32378. {
  32379. name: "PUPPY",
  32380. height: math.unit(20, "miles")
  32381. },
  32382. ]
  32383. ))
  32384. characterMakers.push(() => makeCharacter(
  32385. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32386. {
  32387. front: {
  32388. height: math.unit(6, "feet"),
  32389. weight: math.unit(150, "lb"),
  32390. name: "Front",
  32391. image: {
  32392. source: "./media/characters/en/front.svg",
  32393. extra: 1697 / 1563,
  32394. bottom: 103 / 1800
  32395. }
  32396. },
  32397. back: {
  32398. height: math.unit(6, "feet"),
  32399. weight: math.unit(150, "lb"),
  32400. name: "Back",
  32401. image: {
  32402. source: "./media/characters/en/back.svg",
  32403. extra: 1700 / 1570,
  32404. bottom: 51 / 1751
  32405. }
  32406. },
  32407. frontDressed: {
  32408. height: math.unit(6, "feet"),
  32409. weight: math.unit(150, "lb"),
  32410. name: "Front (Dressed)",
  32411. image: {
  32412. source: "./media/characters/en/front-dressed.svg",
  32413. extra: 1697 / 1563,
  32414. bottom: 103 / 1800
  32415. }
  32416. },
  32417. backDressed: {
  32418. height: math.unit(6, "feet"),
  32419. weight: math.unit(150, "lb"),
  32420. name: "Back (Dressed)",
  32421. image: {
  32422. source: "./media/characters/en/back-dressed.svg",
  32423. extra: 1700 / 1570,
  32424. bottom: 51 / 1751
  32425. }
  32426. },
  32427. },
  32428. [
  32429. {
  32430. name: "Macro",
  32431. height: math.unit(210, "feet"),
  32432. default: true
  32433. },
  32434. ]
  32435. ))
  32436. characterMakers.push(() => makeCharacter(
  32437. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32438. {
  32439. front: {
  32440. height: math.unit(6, "feet"),
  32441. weight: math.unit(150, "lb"),
  32442. name: "Front",
  32443. image: {
  32444. source: "./media/characters/haze-orris/front.svg",
  32445. extra: 3975 / 3525,
  32446. bottom: 137 / 4112
  32447. }
  32448. },
  32449. },
  32450. [
  32451. {
  32452. name: "Micro",
  32453. height: math.unit(150, "mm"),
  32454. default: true
  32455. },
  32456. ]
  32457. ))
  32458. characterMakers.push(() => makeCharacter(
  32459. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32460. {
  32461. front: {
  32462. height: math.unit(6, "feet"),
  32463. weight: math.unit(150, "lb"),
  32464. name: "Front",
  32465. image: {
  32466. source: "./media/characters/casselene-yaro/front.svg",
  32467. extra: 4721 / 4541,
  32468. bottom: 82 / 4803
  32469. }
  32470. },
  32471. back: {
  32472. height: math.unit(6, "feet"),
  32473. weight: math.unit(150, "lb"),
  32474. name: "Back",
  32475. image: {
  32476. source: "./media/characters/casselene-yaro/back.svg",
  32477. extra: 4569 / 4377,
  32478. bottom: 69 / 4638
  32479. }
  32480. },
  32481. dressed: {
  32482. height: math.unit(6, "feet"),
  32483. weight: math.unit(150, "lb"),
  32484. name: "Dressed",
  32485. image: {
  32486. source: "./media/characters/casselene-yaro/dressed.svg",
  32487. extra: 4721 / 4541,
  32488. bottom: 82 / 4803
  32489. }
  32490. },
  32491. maw: {
  32492. height: math.unit(1, "feet"),
  32493. name: "Maw",
  32494. image: {
  32495. source: "./media/characters/casselene-yaro/maw.svg"
  32496. }
  32497. },
  32498. },
  32499. [
  32500. {
  32501. name: "Macro",
  32502. height: math.unit(190, "feet"),
  32503. default: true
  32504. },
  32505. ]
  32506. ))
  32507. characterMakers.push(() => makeCharacter(
  32508. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32509. {
  32510. front: {
  32511. height: math.unit(10, "feet"),
  32512. weight: math.unit(15015, "lb"),
  32513. name: "Front",
  32514. image: {
  32515. source: "./media/characters/platine/front.svg",
  32516. extra: 1741/1650,
  32517. bottom: 84/1825
  32518. }
  32519. },
  32520. side: {
  32521. height: math.unit(10, "feet"),
  32522. weight: math.unit(15015, "lb"),
  32523. name: "Side",
  32524. image: {
  32525. source: "./media/characters/platine/side.svg",
  32526. extra: 1790/1705,
  32527. bottom: 29/1819
  32528. }
  32529. },
  32530. },
  32531. [
  32532. {
  32533. name: "Normal",
  32534. height: math.unit(10, "feet"),
  32535. default: true
  32536. },
  32537. {
  32538. name: "Macro",
  32539. height: math.unit(100, "feet")
  32540. },
  32541. {
  32542. name: "Megamacro",
  32543. height: math.unit(1000, "feet")
  32544. },
  32545. ]
  32546. ))
  32547. characterMakers.push(() => makeCharacter(
  32548. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32549. {
  32550. front: {
  32551. height: math.unit(15 + 5 / 12, "feet"),
  32552. weight: math.unit(4600, "lb"),
  32553. name: "Front",
  32554. image: {
  32555. source: "./media/characters/neapolitan-ananassa/front.svg",
  32556. extra: 2903 / 2736,
  32557. bottom: 0 / 2903
  32558. }
  32559. },
  32560. side: {
  32561. height: math.unit(15 + 5 / 12, "feet"),
  32562. weight: math.unit(4600, "lb"),
  32563. name: "Side",
  32564. image: {
  32565. source: "./media/characters/neapolitan-ananassa/side.svg",
  32566. extra: 2925 / 2719,
  32567. bottom: 0 / 2925
  32568. }
  32569. },
  32570. back: {
  32571. height: math.unit(15 + 5 / 12, "feet"),
  32572. weight: math.unit(4600, "lb"),
  32573. name: "Back",
  32574. image: {
  32575. source: "./media/characters/neapolitan-ananassa/back.svg",
  32576. extra: 2903 / 2736,
  32577. bottom: 0 / 2903
  32578. }
  32579. },
  32580. },
  32581. [
  32582. {
  32583. name: "Normal",
  32584. height: math.unit(15 + 5 / 12, "feet"),
  32585. default: true
  32586. },
  32587. {
  32588. name: "Post-Millenium",
  32589. height: math.unit(35 + 5 / 12, "feet")
  32590. },
  32591. {
  32592. name: "Post-Era",
  32593. height: math.unit(450 + 5 / 12, "feet")
  32594. },
  32595. ]
  32596. ))
  32597. characterMakers.push(() => makeCharacter(
  32598. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32599. {
  32600. front: {
  32601. height: math.unit(300, "meters"),
  32602. weight: math.unit(125000, "tonnes"),
  32603. name: "Front",
  32604. image: {
  32605. source: "./media/characters/pazuzu/front.svg",
  32606. extra: 877 / 794,
  32607. bottom: 47 / 924
  32608. }
  32609. },
  32610. },
  32611. [
  32612. {
  32613. name: "Macro",
  32614. height: math.unit(300, "meters"),
  32615. default: true
  32616. },
  32617. ]
  32618. ))
  32619. characterMakers.push(() => makeCharacter(
  32620. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32621. {
  32622. side: {
  32623. height: math.unit(10 + 7 / 12, "feet"),
  32624. weight: math.unit(2.5, "tons"),
  32625. name: "Side",
  32626. image: {
  32627. source: "./media/characters/aasha/side.svg",
  32628. extra: 1345 / 1245,
  32629. bottom: 111 / 1456
  32630. }
  32631. },
  32632. back: {
  32633. height: math.unit(10 + 7 / 12, "feet"),
  32634. weight: math.unit(2.5, "tons"),
  32635. name: "Back",
  32636. image: {
  32637. source: "./media/characters/aasha/back.svg",
  32638. extra: 1133 / 1057,
  32639. bottom: 257 / 1390
  32640. }
  32641. },
  32642. },
  32643. [
  32644. {
  32645. name: "Normal",
  32646. height: math.unit(10 + 7 / 12, "feet"),
  32647. default: true
  32648. },
  32649. ]
  32650. ))
  32651. characterMakers.push(() => makeCharacter(
  32652. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32653. {
  32654. front: {
  32655. height: math.unit(6 + 3 / 12, "feet"),
  32656. name: "Front",
  32657. image: {
  32658. source: "./media/characters/nevan/front.svg",
  32659. extra: 704 / 704,
  32660. bottom: 28 / 732
  32661. }
  32662. },
  32663. back: {
  32664. height: math.unit(6 + 3 / 12, "feet"),
  32665. name: "Back",
  32666. image: {
  32667. source: "./media/characters/nevan/back.svg",
  32668. extra: 714 / 714,
  32669. bottom: 21 / 735
  32670. }
  32671. },
  32672. frontFlaccid: {
  32673. height: math.unit(6 + 3 / 12, "feet"),
  32674. name: "Front (Flaccid)",
  32675. image: {
  32676. source: "./media/characters/nevan/front-flaccid.svg",
  32677. extra: 704 / 704,
  32678. bottom: 28 / 732
  32679. }
  32680. },
  32681. frontErect: {
  32682. height: math.unit(6 + 3 / 12, "feet"),
  32683. name: "Front (Erect)",
  32684. image: {
  32685. source: "./media/characters/nevan/front-erect.svg",
  32686. extra: 704 / 704,
  32687. bottom: 28 / 732
  32688. }
  32689. },
  32690. backFlaccid: {
  32691. height: math.unit(6 + 3 / 12, "feet"),
  32692. name: "Back (Flaccid)",
  32693. image: {
  32694. source: "./media/characters/nevan/back-flaccid.svg",
  32695. extra: 714 / 714,
  32696. bottom: 21 / 735
  32697. }
  32698. },
  32699. },
  32700. [
  32701. {
  32702. name: "Normal",
  32703. height: math.unit(6 + 3 / 12, "feet"),
  32704. default: true
  32705. },
  32706. ]
  32707. ))
  32708. characterMakers.push(() => makeCharacter(
  32709. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32710. {
  32711. front: {
  32712. height: math.unit(4, "feet"),
  32713. name: "Front",
  32714. image: {
  32715. source: "./media/characters/arhan/front.svg",
  32716. extra: 3368 / 3133,
  32717. bottom: 0 / 3368
  32718. }
  32719. },
  32720. side: {
  32721. height: math.unit(4, "feet"),
  32722. name: "Side",
  32723. image: {
  32724. source: "./media/characters/arhan/side.svg",
  32725. extra: 3347 / 3105,
  32726. bottom: 0 / 3347
  32727. }
  32728. },
  32729. tongue: {
  32730. height: math.unit(1.42, "feet"),
  32731. name: "Tongue",
  32732. image: {
  32733. source: "./media/characters/arhan/tongue.svg"
  32734. }
  32735. },
  32736. head: {
  32737. height: math.unit(0.85, "feet"),
  32738. name: "Head",
  32739. image: {
  32740. source: "./media/characters/arhan/head.svg"
  32741. }
  32742. },
  32743. },
  32744. [
  32745. {
  32746. name: "Normal",
  32747. height: math.unit(4, "feet"),
  32748. default: true
  32749. },
  32750. ]
  32751. ))
  32752. characterMakers.push(() => makeCharacter(
  32753. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32754. {
  32755. front: {
  32756. height: math.unit(5 + 7.5 / 12, "feet"),
  32757. weight: math.unit(120, "lb"),
  32758. name: "Front",
  32759. image: {
  32760. source: "./media/characters/digi-duncan/front.svg",
  32761. extra: 330 / 326,
  32762. bottom: 16 / 346
  32763. }
  32764. },
  32765. side: {
  32766. height: math.unit(5 + 7.5 / 12, "feet"),
  32767. weight: math.unit(120, "lb"),
  32768. name: "Side",
  32769. image: {
  32770. source: "./media/characters/digi-duncan/side.svg",
  32771. extra: 341 / 337,
  32772. bottom: 1 / 342
  32773. }
  32774. },
  32775. back: {
  32776. height: math.unit(5 + 7.5 / 12, "feet"),
  32777. weight: math.unit(120, "lb"),
  32778. name: "Back",
  32779. image: {
  32780. source: "./media/characters/digi-duncan/back.svg",
  32781. extra: 330 / 326,
  32782. bottom: 12 / 342
  32783. }
  32784. },
  32785. },
  32786. [
  32787. {
  32788. name: "Speck",
  32789. height: math.unit(0.25, "mm")
  32790. },
  32791. {
  32792. name: "Micro",
  32793. height: math.unit(5, "mm")
  32794. },
  32795. {
  32796. name: "Tiny",
  32797. height: math.unit(0.5, "inches"),
  32798. default: true
  32799. },
  32800. {
  32801. name: "Human",
  32802. height: math.unit(5 + 7.5 / 12, "feet")
  32803. },
  32804. {
  32805. name: "Minigiant",
  32806. height: math.unit(8 + 5.25, "feet")
  32807. },
  32808. {
  32809. name: "Giant",
  32810. height: math.unit(2000, "feet")
  32811. },
  32812. {
  32813. name: "Mega",
  32814. height: math.unit(371.1, "miles")
  32815. },
  32816. ]
  32817. ))
  32818. characterMakers.push(() => makeCharacter(
  32819. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32820. {
  32821. front: {
  32822. height: math.unit(2, "meters"),
  32823. weight: math.unit(350, "kg"),
  32824. name: "Front",
  32825. image: {
  32826. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32827. extra: 898 / 838,
  32828. bottom: 9 / 907
  32829. }
  32830. },
  32831. },
  32832. [
  32833. {
  32834. name: "Micro",
  32835. height: math.unit(8, "meters")
  32836. },
  32837. {
  32838. name: "Normal",
  32839. height: math.unit(50, "meters"),
  32840. default: true
  32841. },
  32842. {
  32843. name: "Macro",
  32844. height: math.unit(500, "meters")
  32845. },
  32846. ]
  32847. ))
  32848. characterMakers.push(() => makeCharacter(
  32849. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32850. {
  32851. front: {
  32852. height: math.unit(6 + 6 / 12, "feet"),
  32853. name: "Front",
  32854. image: {
  32855. source: "./media/characters/khardesh/front.svg",
  32856. extra: 1788/1596,
  32857. bottom: 66/1854
  32858. }
  32859. },
  32860. back: {
  32861. height: math.unit(6 + 6 / 12, "feet"),
  32862. name: "Back",
  32863. image: {
  32864. source: "./media/characters/khardesh/back.svg",
  32865. extra: 1781/1584,
  32866. bottom: 68/1849
  32867. }
  32868. },
  32869. },
  32870. [
  32871. {
  32872. name: "Normal",
  32873. height: math.unit(6 + 6 / 12, "feet"),
  32874. default: true
  32875. },
  32876. {
  32877. name: "Normal+",
  32878. height: math.unit(4, "meters")
  32879. },
  32880. {
  32881. name: "Macro",
  32882. height: math.unit(50, "meters")
  32883. },
  32884. {
  32885. name: "Macro+",
  32886. height: math.unit(100, "meters")
  32887. },
  32888. {
  32889. name: "Megamacro",
  32890. height: math.unit(20, "km")
  32891. },
  32892. ]
  32893. ))
  32894. characterMakers.push(() => makeCharacter(
  32895. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32896. {
  32897. front: {
  32898. height: math.unit(6, "feet"),
  32899. weight: math.unit(150, "lb"),
  32900. name: "Front",
  32901. image: {
  32902. source: "./media/characters/kosho/front.svg",
  32903. extra: 1847 / 1847,
  32904. bottom: 86 / 1933
  32905. }
  32906. },
  32907. },
  32908. [
  32909. {
  32910. name: "Second-stage micro",
  32911. height: math.unit(0.5, "inches")
  32912. },
  32913. {
  32914. name: "First-stage micro",
  32915. height: math.unit(6, "inches")
  32916. },
  32917. {
  32918. name: "Normal",
  32919. height: math.unit(6, "feet"),
  32920. default: true
  32921. },
  32922. {
  32923. name: "First-stage macro",
  32924. height: math.unit(72, "feet")
  32925. },
  32926. {
  32927. name: "Second-stage macro",
  32928. height: math.unit(864, "feet")
  32929. },
  32930. ]
  32931. ))
  32932. characterMakers.push(() => makeCharacter(
  32933. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32934. {
  32935. normal: {
  32936. height: math.unit(4 + 6 / 12, "feet"),
  32937. name: "Normal",
  32938. image: {
  32939. source: "./media/characters/hydra/normal.svg",
  32940. extra: 2833 / 2634,
  32941. bottom: 68 / 2901
  32942. }
  32943. },
  32944. smol: {
  32945. height: math.unit(0.705, "inches"),
  32946. name: "Smol",
  32947. image: {
  32948. source: "./media/characters/hydra/smol.svg",
  32949. extra: 2715 / 2540,
  32950. bottom: 0 / 2715
  32951. }
  32952. },
  32953. },
  32954. [
  32955. {
  32956. name: "Normal",
  32957. height: math.unit(4 + 6 / 12, "feet"),
  32958. default: true
  32959. }
  32960. ]
  32961. ))
  32962. characterMakers.push(() => makeCharacter(
  32963. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32964. {
  32965. front: {
  32966. height: math.unit(0.6, "cm"),
  32967. name: "Front",
  32968. image: {
  32969. source: "./media/characters/daz/front.svg",
  32970. extra: 1682 / 1164,
  32971. bottom: 42 / 1724
  32972. }
  32973. },
  32974. },
  32975. [
  32976. {
  32977. name: "Normal",
  32978. height: math.unit(0.6, "cm"),
  32979. default: true
  32980. },
  32981. ]
  32982. ))
  32983. characterMakers.push(() => makeCharacter(
  32984. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32985. {
  32986. front: {
  32987. height: math.unit(6, "feet"),
  32988. weight: math.unit(235, "lb"),
  32989. name: "Front",
  32990. image: {
  32991. source: "./media/characters/theo-pangolin/front.svg",
  32992. extra: 1996 / 1969,
  32993. bottom: 115 / 2111
  32994. }
  32995. },
  32996. back: {
  32997. height: math.unit(6, "feet"),
  32998. weight: math.unit(235, "lb"),
  32999. name: "Back",
  33000. image: {
  33001. source: "./media/characters/theo-pangolin/back.svg",
  33002. extra: 1979 / 1979,
  33003. bottom: 40 / 2019
  33004. }
  33005. },
  33006. feral: {
  33007. height: math.unit(2, "feet"),
  33008. weight: math.unit(30, "lb"),
  33009. name: "Feral",
  33010. image: {
  33011. source: "./media/characters/theo-pangolin/feral.svg",
  33012. extra: 803 / 791,
  33013. bottom: 181 / 984
  33014. }
  33015. },
  33016. footFive: {
  33017. height: math.unit(1.43, "feet"),
  33018. name: "Foot (Five Toes)",
  33019. image: {
  33020. source: "./media/characters/theo-pangolin/foot-five.svg"
  33021. }
  33022. },
  33023. footFour: {
  33024. height: math.unit(1.43, "feet"),
  33025. name: "Foot (Four Toes)",
  33026. image: {
  33027. source: "./media/characters/theo-pangolin/foot-four.svg"
  33028. }
  33029. },
  33030. handFour: {
  33031. height: math.unit(0.81, "feet"),
  33032. name: "Hand (Four Fingers)",
  33033. image: {
  33034. source: "./media/characters/theo-pangolin/hand-four.svg"
  33035. }
  33036. },
  33037. handThree: {
  33038. height: math.unit(0.81, "feet"),
  33039. name: "Hand (Three Fingers)",
  33040. image: {
  33041. source: "./media/characters/theo-pangolin/hand-three.svg"
  33042. }
  33043. },
  33044. headFront: {
  33045. height: math.unit(1.37, "feet"),
  33046. name: "Head (Front)",
  33047. image: {
  33048. source: "./media/characters/theo-pangolin/head-front.svg"
  33049. }
  33050. },
  33051. headSide: {
  33052. height: math.unit(1.43, "feet"),
  33053. name: "Head (Side)",
  33054. image: {
  33055. source: "./media/characters/theo-pangolin/head-side.svg"
  33056. }
  33057. },
  33058. tongue: {
  33059. height: math.unit(2.29, "feet"),
  33060. name: "Tongue",
  33061. image: {
  33062. source: "./media/characters/theo-pangolin/tongue.svg"
  33063. }
  33064. },
  33065. },
  33066. [
  33067. {
  33068. name: "Normal",
  33069. height: math.unit(6, "feet")
  33070. },
  33071. {
  33072. name: "Macro",
  33073. height: math.unit(400, "feet"),
  33074. default: true
  33075. },
  33076. ]
  33077. ))
  33078. characterMakers.push(() => makeCharacter(
  33079. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33080. {
  33081. front: {
  33082. height: math.unit(6, "inches"),
  33083. weight: math.unit(0.036, "kg"),
  33084. name: "Front",
  33085. image: {
  33086. source: "./media/characters/renée/front.svg",
  33087. extra: 900 / 886,
  33088. bottom: 8 / 908
  33089. }
  33090. },
  33091. },
  33092. [
  33093. {
  33094. name: "Nano",
  33095. height: math.unit(1, "nm")
  33096. },
  33097. {
  33098. name: "Micro",
  33099. height: math.unit(1, "mm")
  33100. },
  33101. {
  33102. name: "Normal",
  33103. height: math.unit(6, "inches")
  33104. },
  33105. {
  33106. name: "Macro",
  33107. height: math.unit(2000, "feet"),
  33108. default: true
  33109. },
  33110. {
  33111. name: "Megamacro",
  33112. height: math.unit(2, "km")
  33113. },
  33114. {
  33115. name: "Gigamacro",
  33116. height: math.unit(2000, "km")
  33117. },
  33118. {
  33119. name: "Teramacro",
  33120. height: math.unit(250000, "km")
  33121. },
  33122. ]
  33123. ))
  33124. characterMakers.push(() => makeCharacter(
  33125. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33126. {
  33127. front: {
  33128. height: math.unit(4, "meters"),
  33129. weight: math.unit(150, "kg"),
  33130. name: "Front",
  33131. image: {
  33132. source: "./media/characters/caledvwlch/front.svg",
  33133. extra: 1757/1537,
  33134. bottom: 31/1788
  33135. }
  33136. },
  33137. side: {
  33138. height: math.unit(4, "meters"),
  33139. weight: math.unit(150, "kg"),
  33140. name: "Side",
  33141. image: {
  33142. source: "./media/characters/caledvwlch/side.svg",
  33143. extra: 1605 / 1536,
  33144. bottom: 31 / 1636
  33145. }
  33146. },
  33147. back: {
  33148. height: math.unit(4, "meters"),
  33149. weight: math.unit(150, "kg"),
  33150. name: "Back",
  33151. image: {
  33152. source: "./media/characters/caledvwlch/back.svg",
  33153. extra: 1635 / 1565,
  33154. bottom: 27 / 1662
  33155. }
  33156. },
  33157. },
  33158. [
  33159. {
  33160. name: "\"Incognito\"",
  33161. height: math.unit(4, "meters")
  33162. },
  33163. {
  33164. name: "Small rampage",
  33165. height: math.unit(600, "meters")
  33166. },
  33167. {
  33168. name: "Mega",
  33169. height: math.unit(30, "km")
  33170. },
  33171. {
  33172. name: "Home-size",
  33173. height: math.unit(50, "km"),
  33174. default: true
  33175. },
  33176. {
  33177. name: "Giga",
  33178. height: math.unit(300, "km")
  33179. },
  33180. {
  33181. name: "Lounging",
  33182. height: math.unit(11000, "km")
  33183. },
  33184. {
  33185. name: "Planet snacking",
  33186. height: math.unit(2000000, "km")
  33187. },
  33188. ]
  33189. ))
  33190. characterMakers.push(() => makeCharacter(
  33191. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33192. {
  33193. front: {
  33194. height: math.unit(6, "feet"),
  33195. weight: math.unit(215, "lb"),
  33196. name: "Front",
  33197. image: {
  33198. source: "./media/characters/sapphire-svell/front.svg",
  33199. extra: 495 / 455,
  33200. bottom: 20 / 515
  33201. }
  33202. },
  33203. back: {
  33204. height: math.unit(6, "feet"),
  33205. weight: math.unit(216, "lb"),
  33206. name: "Back",
  33207. image: {
  33208. source: "./media/characters/sapphire-svell/back.svg",
  33209. extra: 497 / 477,
  33210. bottom: 7 / 504
  33211. }
  33212. },
  33213. maw: {
  33214. height: math.unit(1.57, "feet"),
  33215. name: "Maw",
  33216. image: {
  33217. source: "./media/characters/sapphire-svell/maw.svg"
  33218. }
  33219. },
  33220. foot: {
  33221. height: math.unit(1.07, "feet"),
  33222. name: "Foot",
  33223. image: {
  33224. source: "./media/characters/sapphire-svell/foot.svg"
  33225. }
  33226. },
  33227. toering: {
  33228. height: math.unit(1.7, "inch"),
  33229. name: "Toering",
  33230. image: {
  33231. source: "./media/characters/sapphire-svell/toering.svg"
  33232. }
  33233. },
  33234. },
  33235. [
  33236. {
  33237. name: "Normal",
  33238. height: math.unit(300, "feet"),
  33239. default: true
  33240. },
  33241. {
  33242. name: "Augmented",
  33243. height: math.unit(1250, "feet")
  33244. },
  33245. {
  33246. name: "Unleashed",
  33247. height: math.unit(3000, "feet")
  33248. },
  33249. ]
  33250. ))
  33251. characterMakers.push(() => makeCharacter(
  33252. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33253. {
  33254. side: {
  33255. height: math.unit(2 + 3 / 12, "feet"),
  33256. weight: math.unit(110, "lb"),
  33257. name: "Side",
  33258. image: {
  33259. source: "./media/characters/glitch-flux/side.svg",
  33260. extra: 997 / 805,
  33261. bottom: 20 / 1017
  33262. }
  33263. },
  33264. },
  33265. [
  33266. {
  33267. name: "Normal",
  33268. height: math.unit(2 + 3 / 12, "feet"),
  33269. default: true
  33270. },
  33271. ]
  33272. ))
  33273. characterMakers.push(() => makeCharacter(
  33274. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33275. {
  33276. front: {
  33277. height: math.unit(4, "meters"),
  33278. name: "Front",
  33279. image: {
  33280. source: "./media/characters/mid/front.svg",
  33281. extra: 507 / 476,
  33282. bottom: 17 / 524
  33283. }
  33284. },
  33285. back: {
  33286. height: math.unit(4, "meters"),
  33287. name: "Back",
  33288. image: {
  33289. source: "./media/characters/mid/back.svg",
  33290. extra: 519 / 487,
  33291. bottom: 7 / 526
  33292. }
  33293. },
  33294. stuck: {
  33295. height: math.unit(2.2, "meters"),
  33296. name: "Stuck",
  33297. image: {
  33298. source: "./media/characters/mid/stuck.svg",
  33299. extra: 1951 / 1869,
  33300. bottom: 88 / 2039
  33301. }
  33302. }
  33303. },
  33304. [
  33305. {
  33306. name: "Normal",
  33307. height: math.unit(4, "meters"),
  33308. default: true
  33309. },
  33310. {
  33311. name: "Big",
  33312. height: math.unit(10, "meters")
  33313. },
  33314. {
  33315. name: "Macro",
  33316. height: math.unit(800, "meters")
  33317. },
  33318. {
  33319. name: "Megamacro",
  33320. height: math.unit(100, "km")
  33321. },
  33322. {
  33323. name: "Overgrown",
  33324. height: math.unit(1, "parsec")
  33325. },
  33326. ]
  33327. ))
  33328. characterMakers.push(() => makeCharacter(
  33329. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33330. {
  33331. front: {
  33332. height: math.unit(2.5, "meters"),
  33333. weight: math.unit(225, "kg"),
  33334. name: "Front",
  33335. image: {
  33336. source: "./media/characters/iris/front.svg",
  33337. extra: 3348 / 3251,
  33338. bottom: 205 / 3553
  33339. }
  33340. },
  33341. maw: {
  33342. height: math.unit(0.56, "meter"),
  33343. name: "Maw",
  33344. image: {
  33345. source: "./media/characters/iris/maw.svg"
  33346. }
  33347. },
  33348. },
  33349. [
  33350. {
  33351. name: "Mewter cat",
  33352. height: math.unit(1.2, "meters")
  33353. },
  33354. {
  33355. name: "Normal",
  33356. height: math.unit(2.5, "meters"),
  33357. default: true
  33358. },
  33359. {
  33360. name: "Minimacro",
  33361. height: math.unit(18, "feet")
  33362. },
  33363. {
  33364. name: "Macro",
  33365. height: math.unit(140, "feet")
  33366. },
  33367. {
  33368. name: "Macro+",
  33369. height: math.unit(180, "meters")
  33370. },
  33371. {
  33372. name: "Megamacro",
  33373. height: math.unit(2746, "meters")
  33374. },
  33375. ]
  33376. ))
  33377. characterMakers.push(() => makeCharacter(
  33378. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33379. {
  33380. front: {
  33381. height: math.unit(6, "feet"),
  33382. weight: math.unit(135, "lb"),
  33383. name: "Front",
  33384. image: {
  33385. source: "./media/characters/axel/front.svg",
  33386. extra: 908 / 908,
  33387. bottom: 58 / 966
  33388. }
  33389. },
  33390. side: {
  33391. height: math.unit(6, "feet"),
  33392. weight: math.unit(135, "lb"),
  33393. name: "Side",
  33394. image: {
  33395. source: "./media/characters/axel/side.svg",
  33396. extra: 958 / 958,
  33397. bottom: 11 / 969
  33398. }
  33399. },
  33400. back: {
  33401. height: math.unit(6, "feet"),
  33402. weight: math.unit(135, "lb"),
  33403. name: "Back",
  33404. image: {
  33405. source: "./media/characters/axel/back.svg",
  33406. extra: 887 / 887,
  33407. bottom: 34 / 921
  33408. }
  33409. },
  33410. head: {
  33411. height: math.unit(1.07, "feet"),
  33412. name: "Head",
  33413. image: {
  33414. source: "./media/characters/axel/head.svg"
  33415. }
  33416. },
  33417. beak: {
  33418. height: math.unit(1.4, "feet"),
  33419. name: "Beak",
  33420. image: {
  33421. source: "./media/characters/axel/beak.svg"
  33422. }
  33423. },
  33424. beakSide: {
  33425. height: math.unit(1.4, "feet"),
  33426. name: "Beak Side",
  33427. image: {
  33428. source: "./media/characters/axel/beak-side.svg"
  33429. }
  33430. },
  33431. sheath: {
  33432. height: math.unit(0.5, "feet"),
  33433. name: "Sheath",
  33434. image: {
  33435. source: "./media/characters/axel/sheath.svg"
  33436. }
  33437. },
  33438. dick: {
  33439. height: math.unit(0.98, "feet"),
  33440. name: "Dick",
  33441. image: {
  33442. source: "./media/characters/axel/dick.svg"
  33443. }
  33444. },
  33445. },
  33446. [
  33447. {
  33448. name: "Macro",
  33449. height: math.unit(68, "meters"),
  33450. default: true
  33451. },
  33452. ]
  33453. ))
  33454. characterMakers.push(() => makeCharacter(
  33455. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33456. {
  33457. front: {
  33458. height: math.unit(3.5, "meters"),
  33459. weight: math.unit(1200, "kg"),
  33460. name: "Front",
  33461. image: {
  33462. source: "./media/characters/joanna/front.svg",
  33463. extra: 1596 / 1488,
  33464. bottom: 29 / 1625
  33465. }
  33466. },
  33467. back: {
  33468. height: math.unit(3.5, "meters"),
  33469. weight: math.unit(1200, "kg"),
  33470. name: "Back",
  33471. image: {
  33472. source: "./media/characters/joanna/back.svg",
  33473. extra: 1594 / 1495,
  33474. bottom: 26 / 1620
  33475. }
  33476. },
  33477. frontShorts: {
  33478. height: math.unit(3.5, "meters"),
  33479. weight: math.unit(1200, "kg"),
  33480. name: "Front (Shorts)",
  33481. image: {
  33482. source: "./media/characters/joanna/front-shorts.svg",
  33483. extra: 1596 / 1488,
  33484. bottom: 29 / 1625
  33485. }
  33486. },
  33487. frontBiker: {
  33488. height: math.unit(3.5, "meters"),
  33489. weight: math.unit(1200, "kg"),
  33490. name: "Front (Biker)",
  33491. image: {
  33492. source: "./media/characters/joanna/front-biker.svg",
  33493. extra: 1596 / 1488,
  33494. bottom: 29 / 1625
  33495. }
  33496. },
  33497. backBiker: {
  33498. height: math.unit(3.5, "meters"),
  33499. weight: math.unit(1200, "kg"),
  33500. name: "Back (Biker)",
  33501. image: {
  33502. source: "./media/characters/joanna/back-biker.svg",
  33503. extra: 1594 / 1495,
  33504. bottom: 88 / 1682
  33505. }
  33506. },
  33507. bikeLeft: {
  33508. height: math.unit(2.4, "meters"),
  33509. weight: math.unit(1600, "kg"),
  33510. name: "Bike (Left)",
  33511. image: {
  33512. source: "./media/characters/joanna/bike-left.svg",
  33513. extra: 720 / 720,
  33514. bottom: 8 / 728
  33515. }
  33516. },
  33517. bikeRight: {
  33518. height: math.unit(2.4, "meters"),
  33519. weight: math.unit(1600, "kg"),
  33520. name: "Bike (Right)",
  33521. image: {
  33522. source: "./media/characters/joanna/bike-right.svg",
  33523. extra: 720 / 720,
  33524. bottom: 8 / 728
  33525. }
  33526. },
  33527. },
  33528. [
  33529. {
  33530. name: "Incognito",
  33531. height: math.unit(3.5, "meters")
  33532. },
  33533. {
  33534. name: "Casual Big",
  33535. height: math.unit(200, "meters")
  33536. },
  33537. {
  33538. name: "Macro",
  33539. height: math.unit(600, "meters")
  33540. },
  33541. {
  33542. name: "Original",
  33543. height: math.unit(20, "km"),
  33544. default: true
  33545. },
  33546. {
  33547. name: "Giga",
  33548. height: math.unit(400, "km")
  33549. },
  33550. {
  33551. name: "Lounging",
  33552. height: math.unit(1500, "km")
  33553. },
  33554. {
  33555. name: "Planetary",
  33556. height: math.unit(200000, "km")
  33557. },
  33558. ]
  33559. ))
  33560. characterMakers.push(() => makeCharacter(
  33561. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33562. {
  33563. front: {
  33564. height: math.unit(6, "feet"),
  33565. weight: math.unit(150, "lb"),
  33566. name: "Front",
  33567. image: {
  33568. source: "./media/characters/hugo-sigil/front.svg",
  33569. extra: 522 / 500,
  33570. bottom: 2 / 524
  33571. }
  33572. },
  33573. back: {
  33574. height: math.unit(6, "feet"),
  33575. weight: math.unit(150, "lb"),
  33576. name: "Back",
  33577. image: {
  33578. source: "./media/characters/hugo-sigil/back.svg",
  33579. extra: 519 / 495,
  33580. bottom: 5 / 524
  33581. }
  33582. },
  33583. maw: {
  33584. height: math.unit(1.4, "feet"),
  33585. weight: math.unit(150, "lb"),
  33586. name: "Maw",
  33587. image: {
  33588. source: "./media/characters/hugo-sigil/maw.svg"
  33589. }
  33590. },
  33591. feet: {
  33592. height: math.unit(1.56, "feet"),
  33593. weight: math.unit(150, "lb"),
  33594. name: "Feet",
  33595. image: {
  33596. source: "./media/characters/hugo-sigil/feet.svg",
  33597. extra: 177 / 177,
  33598. bottom: 12 / 189
  33599. }
  33600. },
  33601. },
  33602. [
  33603. {
  33604. name: "Normal",
  33605. height: math.unit(6, "feet")
  33606. },
  33607. {
  33608. name: "Macro",
  33609. height: math.unit(200, "feet"),
  33610. default: true
  33611. },
  33612. ]
  33613. ))
  33614. characterMakers.push(() => makeCharacter(
  33615. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33616. {
  33617. front: {
  33618. height: math.unit(6, "feet"),
  33619. weight: math.unit(150, "lb"),
  33620. name: "Front",
  33621. image: {
  33622. source: "./media/characters/peri/front.svg",
  33623. extra: 2354 / 2233,
  33624. bottom: 49 / 2403
  33625. }
  33626. },
  33627. },
  33628. [
  33629. {
  33630. name: "Really Small",
  33631. height: math.unit(1, "nm")
  33632. },
  33633. {
  33634. name: "Micro",
  33635. height: math.unit(4, "inches")
  33636. },
  33637. {
  33638. name: "Normal",
  33639. height: math.unit(7, "inches"),
  33640. default: true
  33641. },
  33642. {
  33643. name: "Macro",
  33644. height: math.unit(400, "feet")
  33645. },
  33646. {
  33647. name: "Megamacro",
  33648. height: math.unit(100, "miles")
  33649. },
  33650. ]
  33651. ))
  33652. characterMakers.push(() => makeCharacter(
  33653. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33654. {
  33655. frontSlim: {
  33656. height: math.unit(7, "feet"),
  33657. name: "Front (Slim)",
  33658. image: {
  33659. source: "./media/characters/issilora/front-slim.svg",
  33660. extra: 529 / 449,
  33661. bottom: 53 / 582
  33662. }
  33663. },
  33664. sideSlim: {
  33665. height: math.unit(7, "feet"),
  33666. name: "Side (Slim)",
  33667. image: {
  33668. source: "./media/characters/issilora/side-slim.svg",
  33669. extra: 570 / 480,
  33670. bottom: 30 / 600
  33671. }
  33672. },
  33673. backSlim: {
  33674. height: math.unit(7, "feet"),
  33675. name: "Back (Slim)",
  33676. image: {
  33677. source: "./media/characters/issilora/back-slim.svg",
  33678. extra: 537 / 455,
  33679. bottom: 46 / 583
  33680. }
  33681. },
  33682. frontBuff: {
  33683. height: math.unit(7, "feet"),
  33684. name: "Front (Buff)",
  33685. image: {
  33686. source: "./media/characters/issilora/front-buff.svg",
  33687. extra: 2310 / 2035,
  33688. bottom: 335 / 2645
  33689. }
  33690. },
  33691. head: {
  33692. height: math.unit(1.94, "feet"),
  33693. name: "Head",
  33694. image: {
  33695. source: "./media/characters/issilora/head.svg"
  33696. }
  33697. },
  33698. },
  33699. [
  33700. {
  33701. name: "Minimum",
  33702. height: math.unit(7, "feet")
  33703. },
  33704. {
  33705. name: "Comfortable",
  33706. height: math.unit(17, "feet")
  33707. },
  33708. {
  33709. name: "Fun Size",
  33710. height: math.unit(47, "feet")
  33711. },
  33712. {
  33713. name: "Natural Macro",
  33714. height: math.unit(137, "feet"),
  33715. default: true
  33716. },
  33717. {
  33718. name: "Maximum Kaiju",
  33719. height: math.unit(397, "feet")
  33720. },
  33721. ]
  33722. ))
  33723. characterMakers.push(() => makeCharacter(
  33724. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33725. {
  33726. front: {
  33727. height: math.unit(50 + 9/12, "feet"),
  33728. weight: math.unit(32.8, "tons"),
  33729. name: "Front",
  33730. image: {
  33731. source: "./media/characters/irb'iiritaahn/front.svg",
  33732. extra: 1878/1826,
  33733. bottom: 326/2204
  33734. }
  33735. },
  33736. back: {
  33737. height: math.unit(50 + 9/12, "feet"),
  33738. weight: math.unit(32.8, "tons"),
  33739. name: "Back",
  33740. image: {
  33741. source: "./media/characters/irb'iiritaahn/back.svg",
  33742. extra: 2052/2018,
  33743. bottom: 152/2204
  33744. }
  33745. },
  33746. head: {
  33747. height: math.unit(12.86, "feet"),
  33748. name: "Head",
  33749. image: {
  33750. source: "./media/characters/irb'iiritaahn/head.svg"
  33751. }
  33752. },
  33753. maw: {
  33754. height: math.unit(9.66, "feet"),
  33755. name: "Maw",
  33756. image: {
  33757. source: "./media/characters/irb'iiritaahn/maw.svg"
  33758. }
  33759. },
  33760. frontDick: {
  33761. height: math.unit(8.78461, "feet"),
  33762. name: "Front Dick",
  33763. image: {
  33764. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33765. }
  33766. },
  33767. rearDick: {
  33768. height: math.unit(8.78461, "feet"),
  33769. name: "Rear Dick",
  33770. image: {
  33771. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33772. }
  33773. },
  33774. rearDickUnfolded: {
  33775. height: math.unit(8.78, "feet"),
  33776. name: "Rear Dick (Unfolded)",
  33777. image: {
  33778. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33779. }
  33780. },
  33781. wings: {
  33782. height: math.unit(43, "feet"),
  33783. name: "Wings",
  33784. image: {
  33785. source: "./media/characters/irb'iiritaahn/wings.svg"
  33786. }
  33787. },
  33788. },
  33789. [
  33790. {
  33791. name: "Macro",
  33792. height: math.unit(50 + 9/12, "feet"),
  33793. default: true
  33794. },
  33795. ]
  33796. ))
  33797. characterMakers.push(() => makeCharacter(
  33798. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33799. {
  33800. front: {
  33801. height: math.unit(205, "cm"),
  33802. weight: math.unit(102, "kg"),
  33803. name: "Front",
  33804. image: {
  33805. source: "./media/characters/irbisgreif/front.svg",
  33806. extra: 785/706,
  33807. bottom: 13/798
  33808. }
  33809. },
  33810. back: {
  33811. height: math.unit(205, "cm"),
  33812. weight: math.unit(102, "kg"),
  33813. name: "Back",
  33814. image: {
  33815. source: "./media/characters/irbisgreif/back.svg",
  33816. extra: 713/701,
  33817. bottom: 26/739
  33818. }
  33819. },
  33820. frontDressed: {
  33821. height: math.unit(216, "cm"),
  33822. weight: math.unit(102, "kg"),
  33823. name: "Front-dressed",
  33824. image: {
  33825. source: "./media/characters/irbisgreif/front-dressed.svg",
  33826. extra: 902/776,
  33827. bottom: 14/916
  33828. }
  33829. },
  33830. sideDressed: {
  33831. height: math.unit(195, "cm"),
  33832. weight: math.unit(102, "kg"),
  33833. name: "Side-dressed",
  33834. image: {
  33835. source: "./media/characters/irbisgreif/side-dressed.svg",
  33836. extra: 788/688,
  33837. bottom: 21/809
  33838. }
  33839. },
  33840. backDressed: {
  33841. height: math.unit(216, "cm"),
  33842. weight: math.unit(102, "kg"),
  33843. name: "Back-dressed",
  33844. image: {
  33845. source: "./media/characters/irbisgreif/back-dressed.svg",
  33846. extra: 901/783,
  33847. bottom: 10/911
  33848. }
  33849. },
  33850. dick: {
  33851. height: math.unit(0.49, "feet"),
  33852. name: "Dick",
  33853. image: {
  33854. source: "./media/characters/irbisgreif/dick.svg"
  33855. }
  33856. },
  33857. wingTop: {
  33858. height: math.unit(1.93 , "feet"),
  33859. name: "Wing-top",
  33860. image: {
  33861. source: "./media/characters/irbisgreif/wing-top.svg"
  33862. }
  33863. },
  33864. wingBottom: {
  33865. height: math.unit(1.93 , "feet"),
  33866. name: "Wing-bottom",
  33867. image: {
  33868. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33869. }
  33870. },
  33871. },
  33872. [
  33873. {
  33874. name: "Normal",
  33875. height: math.unit(216, "cm"),
  33876. default: true
  33877. },
  33878. ]
  33879. ))
  33880. characterMakers.push(() => makeCharacter(
  33881. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33882. {
  33883. front: {
  33884. height: math.unit(6, "feet"),
  33885. weight: math.unit(150, "lb"),
  33886. name: "Front",
  33887. image: {
  33888. source: "./media/characters/pride/front.svg",
  33889. extra: 1299/1230,
  33890. bottom: 18/1317
  33891. }
  33892. },
  33893. },
  33894. [
  33895. {
  33896. name: "Normal",
  33897. height: math.unit(7, "feet")
  33898. },
  33899. {
  33900. name: "Mini-macro",
  33901. height: math.unit(11, "feet")
  33902. },
  33903. {
  33904. name: "Macro",
  33905. height: math.unit(15, "meters"),
  33906. default: true
  33907. },
  33908. {
  33909. name: "Macro+",
  33910. height: math.unit(40, "meters")
  33911. },
  33912. ]
  33913. ))
  33914. characterMakers.push(() => makeCharacter(
  33915. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33916. {
  33917. front: {
  33918. height: math.unit(4 + 2 / 12, "feet"),
  33919. weight: math.unit(95, "lb"),
  33920. name: "Front",
  33921. image: {
  33922. source: "./media/characters/vaelophis-nyx/front.svg",
  33923. extra: 2532/2330,
  33924. bottom: 0/2532
  33925. }
  33926. },
  33927. back: {
  33928. height: math.unit(4 + 2 / 12, "feet"),
  33929. weight: math.unit(95, "lb"),
  33930. name: "Back",
  33931. image: {
  33932. source: "./media/characters/vaelophis-nyx/back.svg",
  33933. extra: 2484/2361,
  33934. bottom: 0/2484
  33935. }
  33936. },
  33937. feralSide: {
  33938. height: math.unit(2 + 1/12, "feet"),
  33939. weight: math.unit(20, "lb"),
  33940. name: "Feral (Side)",
  33941. image: {
  33942. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33943. extra: 1721/1581,
  33944. bottom: 70/1791
  33945. }
  33946. },
  33947. feralLazing: {
  33948. height: math.unit(1.08, "feet"),
  33949. weight: math.unit(20, "lb"),
  33950. name: "Feral (Lazing)",
  33951. image: {
  33952. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33953. extra: 822/822,
  33954. bottom: 248/1070
  33955. }
  33956. },
  33957. ear: {
  33958. height: math.unit(0.416, "feet"),
  33959. name: "Ear",
  33960. image: {
  33961. source: "./media/characters/vaelophis-nyx/ear.svg"
  33962. }
  33963. },
  33964. eye: {
  33965. height: math.unit(0.0748, "feet"),
  33966. name: "Eye",
  33967. image: {
  33968. source: "./media/characters/vaelophis-nyx/eye.svg"
  33969. }
  33970. },
  33971. mouth: {
  33972. height: math.unit(0.378, "feet"),
  33973. name: "Mouth",
  33974. image: {
  33975. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33976. }
  33977. },
  33978. spade: {
  33979. height: math.unit(0.55, "feet"),
  33980. name: "Spade",
  33981. image: {
  33982. source: "./media/characters/vaelophis-nyx/spade.svg"
  33983. }
  33984. },
  33985. },
  33986. [
  33987. {
  33988. name: "Normal",
  33989. height: math.unit(4 + 2/12, "feet"),
  33990. default: true
  33991. },
  33992. ]
  33993. ))
  33994. characterMakers.push(() => makeCharacter(
  33995. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33996. {
  33997. front: {
  33998. height: math.unit(7, "feet"),
  33999. weight: math.unit(231, "lb"),
  34000. name: "Front",
  34001. image: {
  34002. source: "./media/characters/flux/front.svg",
  34003. extra: 919/871,
  34004. bottom: 0/919
  34005. }
  34006. },
  34007. back: {
  34008. height: math.unit(7, "feet"),
  34009. weight: math.unit(231, "lb"),
  34010. name: "Back",
  34011. image: {
  34012. source: "./media/characters/flux/back.svg",
  34013. extra: 1040/992,
  34014. bottom: 0/1040
  34015. }
  34016. },
  34017. frontDressed: {
  34018. height: math.unit(7, "feet"),
  34019. weight: math.unit(231, "lb"),
  34020. name: "Front (Dressed)",
  34021. image: {
  34022. source: "./media/characters/flux/front-dressed.svg",
  34023. extra: 919/871,
  34024. bottom: 0/919
  34025. }
  34026. },
  34027. feralSide: {
  34028. height: math.unit(5, "feet"),
  34029. weight: math.unit(150, "lb"),
  34030. name: "Feral (Side)",
  34031. image: {
  34032. source: "./media/characters/flux/feral-side.svg",
  34033. extra: 598/528,
  34034. bottom: 28/626
  34035. }
  34036. },
  34037. head: {
  34038. height: math.unit(1.585, "feet"),
  34039. name: "Head",
  34040. image: {
  34041. source: "./media/characters/flux/head.svg"
  34042. }
  34043. },
  34044. headSide: {
  34045. height: math.unit(1.74, "feet"),
  34046. name: "Head (Side)",
  34047. image: {
  34048. source: "./media/characters/flux/head-side.svg"
  34049. }
  34050. },
  34051. headSideFire: {
  34052. height: math.unit(1.76, "feet"),
  34053. name: "Head (Side, Fire)",
  34054. image: {
  34055. source: "./media/characters/flux/head-side-fire.svg"
  34056. }
  34057. },
  34058. },
  34059. [
  34060. {
  34061. name: "Normal",
  34062. height: math.unit(7, "feet"),
  34063. default: true
  34064. },
  34065. ]
  34066. ))
  34067. characterMakers.push(() => makeCharacter(
  34068. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34069. {
  34070. front: {
  34071. height: math.unit(9, "feet"),
  34072. weight: math.unit(1012, "lb"),
  34073. name: "Front",
  34074. image: {
  34075. source: "./media/characters/ulfra-lupae/front.svg",
  34076. extra: 1083/1011,
  34077. bottom: 67/1150
  34078. }
  34079. },
  34080. },
  34081. [
  34082. {
  34083. name: "Micro",
  34084. height: math.unit(6, "inches")
  34085. },
  34086. {
  34087. name: "Socializing",
  34088. height: math.unit(6 + 5/12, "feet")
  34089. },
  34090. {
  34091. name: "Normal",
  34092. height: math.unit(9, "feet"),
  34093. default: true
  34094. },
  34095. {
  34096. name: "Macro",
  34097. height: math.unit(150, "feet")
  34098. },
  34099. ]
  34100. ))
  34101. characterMakers.push(() => makeCharacter(
  34102. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34103. {
  34104. front: {
  34105. height: math.unit(5 + 2/12, "feet"),
  34106. weight: math.unit(120, "lb"),
  34107. name: "Front",
  34108. image: {
  34109. source: "./media/characters/timber/front.svg",
  34110. extra: 2814/2705,
  34111. bottom: 181/2995
  34112. }
  34113. },
  34114. },
  34115. [
  34116. {
  34117. name: "Normal",
  34118. height: math.unit(5 + 2/12, "feet"),
  34119. default: true
  34120. },
  34121. ]
  34122. ))
  34123. characterMakers.push(() => makeCharacter(
  34124. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34125. {
  34126. front: {
  34127. height: math.unit(9, "feet"),
  34128. name: "Front",
  34129. image: {
  34130. source: "./media/characters/nicki/front.svg",
  34131. extra: 1240/990,
  34132. bottom: 45/1285
  34133. },
  34134. form: "anthro",
  34135. default: true
  34136. },
  34137. side: {
  34138. height: math.unit(9, "feet"),
  34139. name: "Side",
  34140. image: {
  34141. source: "./media/characters/nicki/side.svg",
  34142. extra: 1047/973,
  34143. bottom: 61/1108
  34144. },
  34145. form: "anthro"
  34146. },
  34147. back: {
  34148. height: math.unit(9, "feet"),
  34149. name: "Back",
  34150. image: {
  34151. source: "./media/characters/nicki/back.svg",
  34152. extra: 1006/965,
  34153. bottom: 39/1045
  34154. },
  34155. form: "anthro"
  34156. },
  34157. taur: {
  34158. height: math.unit(15, "feet"),
  34159. name: "Taur",
  34160. image: {
  34161. source: "./media/characters/nicki/taur.svg",
  34162. extra: 1592/1347,
  34163. bottom: 0/1592
  34164. },
  34165. form: "taur",
  34166. default: true
  34167. },
  34168. },
  34169. [
  34170. {
  34171. name: "Normal",
  34172. height: math.unit(9, "feet"),
  34173. form: "anthro",
  34174. default: true
  34175. },
  34176. {
  34177. name: "Normal",
  34178. height: math.unit(15, "feet"),
  34179. form: "taur",
  34180. default: true
  34181. }
  34182. ],
  34183. {
  34184. "anthro": {
  34185. name: "Anthro",
  34186. default: true
  34187. },
  34188. "taur": {
  34189. name: "Taur"
  34190. }
  34191. }
  34192. ))
  34193. characterMakers.push(() => makeCharacter(
  34194. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34195. {
  34196. front: {
  34197. height: math.unit(7 + 10/12, "feet"),
  34198. weight: math.unit(3.5, "tons"),
  34199. name: "Front",
  34200. image: {
  34201. source: "./media/characters/lee/front.svg",
  34202. extra: 1773/1615,
  34203. bottom: 86/1859
  34204. }
  34205. },
  34206. hand: {
  34207. height: math.unit(1.78, "feet"),
  34208. name: "Hand",
  34209. image: {
  34210. source: "./media/characters/lee/hand.svg"
  34211. }
  34212. },
  34213. maw: {
  34214. height: math.unit(1.18, "feet"),
  34215. name: "Maw",
  34216. image: {
  34217. source: "./media/characters/lee/maw.svg"
  34218. }
  34219. },
  34220. },
  34221. [
  34222. {
  34223. name: "Normal",
  34224. height: math.unit(7 + 10/12, "feet"),
  34225. default: true
  34226. },
  34227. ]
  34228. ))
  34229. characterMakers.push(() => makeCharacter(
  34230. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34231. {
  34232. front: {
  34233. height: math.unit(9, "feet"),
  34234. name: "Front",
  34235. image: {
  34236. source: "./media/characters/guti/front.svg",
  34237. extra: 4551/4355,
  34238. bottom: 123/4674
  34239. }
  34240. },
  34241. tongue: {
  34242. height: math.unit(1, "feet"),
  34243. name: "Tongue",
  34244. image: {
  34245. source: "./media/characters/guti/tongue.svg"
  34246. }
  34247. },
  34248. paw: {
  34249. height: math.unit(1.18, "feet"),
  34250. name: "Paw",
  34251. image: {
  34252. source: "./media/characters/guti/paw.svg"
  34253. }
  34254. },
  34255. },
  34256. [
  34257. {
  34258. name: "Normal",
  34259. height: math.unit(9, "feet"),
  34260. default: true
  34261. },
  34262. ]
  34263. ))
  34264. characterMakers.push(() => makeCharacter(
  34265. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34266. {
  34267. side: {
  34268. height: math.unit(5, "meters"),
  34269. name: "Side",
  34270. image: {
  34271. source: "./media/characters/vesper/side.svg",
  34272. extra: 1605/1518,
  34273. bottom: 0/1605
  34274. }
  34275. },
  34276. },
  34277. [
  34278. {
  34279. name: "Small",
  34280. height: math.unit(5, "meters")
  34281. },
  34282. {
  34283. name: "Sage",
  34284. height: math.unit(100, "meters"),
  34285. default: true
  34286. },
  34287. {
  34288. name: "Fun Size",
  34289. height: math.unit(600, "meters")
  34290. },
  34291. {
  34292. name: "Goddess",
  34293. height: math.unit(20000, "km")
  34294. },
  34295. {
  34296. name: "Maximum",
  34297. height: math.unit(5, "galaxies")
  34298. },
  34299. ]
  34300. ))
  34301. characterMakers.push(() => makeCharacter(
  34302. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34303. {
  34304. front: {
  34305. height: math.unit(6 + 3/12, "feet"),
  34306. weight: math.unit(190, "lb"),
  34307. name: "Front",
  34308. image: {
  34309. source: "./media/characters/gawain/front.svg",
  34310. extra: 2222/2139,
  34311. bottom: 90/2312
  34312. }
  34313. },
  34314. back: {
  34315. height: math.unit(6 + 3/12, "feet"),
  34316. weight: math.unit(190, "lb"),
  34317. name: "Back",
  34318. image: {
  34319. source: "./media/characters/gawain/back.svg",
  34320. extra: 2199/2111,
  34321. bottom: 73/2272
  34322. }
  34323. },
  34324. },
  34325. [
  34326. {
  34327. name: "Normal",
  34328. height: math.unit(6 + 3/12, "feet"),
  34329. default: true
  34330. },
  34331. ]
  34332. ))
  34333. characterMakers.push(() => makeCharacter(
  34334. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34335. {
  34336. side: {
  34337. height: math.unit(3.5, "meters"),
  34338. weight: math.unit(16000, "lb"),
  34339. name: "Side",
  34340. image: {
  34341. source: "./media/characters/dascalti/side.svg",
  34342. extra: 392/273,
  34343. bottom: 47/439
  34344. }
  34345. },
  34346. breath: {
  34347. height: math.unit(7.4, "feet"),
  34348. name: "Breath",
  34349. image: {
  34350. source: "./media/characters/dascalti/breath.svg"
  34351. }
  34352. },
  34353. fed: {
  34354. height: math.unit(3.6, "meters"),
  34355. weight: math.unit(16000, "lb"),
  34356. name: "Fed",
  34357. image: {
  34358. source: "./media/characters/dascalti/fed.svg",
  34359. extra: 1419/820,
  34360. bottom: 95/1514
  34361. }
  34362. },
  34363. },
  34364. [
  34365. {
  34366. name: "Normal",
  34367. height: math.unit(3.5, "meters"),
  34368. default: true
  34369. },
  34370. ]
  34371. ))
  34372. characterMakers.push(() => makeCharacter(
  34373. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34374. {
  34375. front: {
  34376. height: math.unit(3 + 5/12, "feet"),
  34377. name: "Front",
  34378. image: {
  34379. source: "./media/characters/mauve/front.svg",
  34380. extra: 1126/1033,
  34381. bottom: 65/1191
  34382. }
  34383. },
  34384. side: {
  34385. height: math.unit(3 + 5/12, "feet"),
  34386. name: "Side",
  34387. image: {
  34388. source: "./media/characters/mauve/side.svg",
  34389. extra: 1089/1001,
  34390. bottom: 29/1118
  34391. }
  34392. },
  34393. back: {
  34394. height: math.unit(3 + 5/12, "feet"),
  34395. name: "Back",
  34396. image: {
  34397. source: "./media/characters/mauve/back.svg",
  34398. extra: 1173/1053,
  34399. bottom: 109/1282
  34400. }
  34401. },
  34402. },
  34403. [
  34404. {
  34405. name: "Normal",
  34406. height: math.unit(3 + 5/12, "feet"),
  34407. default: true
  34408. },
  34409. ]
  34410. ))
  34411. characterMakers.push(() => makeCharacter(
  34412. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34413. {
  34414. front: {
  34415. height: math.unit(6 + 3/12, "feet"),
  34416. weight: math.unit(430, "lb"),
  34417. name: "Front",
  34418. image: {
  34419. source: "./media/characters/carlos/front.svg",
  34420. extra: 1964/1913,
  34421. bottom: 70/2034
  34422. }
  34423. },
  34424. },
  34425. [
  34426. {
  34427. name: "Normal",
  34428. height: math.unit(6 + 3/12, "feet"),
  34429. default: true
  34430. },
  34431. ]
  34432. ))
  34433. characterMakers.push(() => makeCharacter(
  34434. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34435. {
  34436. back: {
  34437. height: math.unit(5 + 10/12, "feet"),
  34438. weight: math.unit(200, "lb"),
  34439. name: "Back",
  34440. image: {
  34441. source: "./media/characters/jax/back.svg",
  34442. extra: 764/739,
  34443. bottom: 25/789
  34444. }
  34445. },
  34446. },
  34447. [
  34448. {
  34449. name: "Normal",
  34450. height: math.unit(5 + 10/12, "feet"),
  34451. default: true
  34452. },
  34453. ]
  34454. ))
  34455. characterMakers.push(() => makeCharacter(
  34456. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34457. {
  34458. front: {
  34459. height: math.unit(8, "feet"),
  34460. weight: math.unit(250, "lb"),
  34461. name: "Front",
  34462. image: {
  34463. source: "./media/characters/eikthynir/front.svg",
  34464. extra: 1332/1166,
  34465. bottom: 82/1414
  34466. }
  34467. },
  34468. back: {
  34469. height: math.unit(8, "feet"),
  34470. weight: math.unit(250, "lb"),
  34471. name: "Back",
  34472. image: {
  34473. source: "./media/characters/eikthynir/back.svg",
  34474. extra: 1342/1190,
  34475. bottom: 19/1361
  34476. }
  34477. },
  34478. dick: {
  34479. height: math.unit(2.35, "feet"),
  34480. name: "Dick",
  34481. image: {
  34482. source: "./media/characters/eikthynir/dick.svg"
  34483. }
  34484. },
  34485. },
  34486. [
  34487. {
  34488. name: "Normal",
  34489. height: math.unit(8, "feet"),
  34490. default: true
  34491. },
  34492. ]
  34493. ))
  34494. characterMakers.push(() => makeCharacter(
  34495. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34496. {
  34497. front: {
  34498. height: math.unit(99, "meters"),
  34499. weight: math.unit(13000, "tons"),
  34500. name: "Front",
  34501. image: {
  34502. source: "./media/characters/zlmos/front.svg",
  34503. extra: 2202/1992,
  34504. bottom: 315/2517
  34505. }
  34506. },
  34507. },
  34508. [
  34509. {
  34510. name: "Macro",
  34511. height: math.unit(99, "meters"),
  34512. default: true
  34513. },
  34514. ]
  34515. ))
  34516. characterMakers.push(() => makeCharacter(
  34517. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34518. {
  34519. front: {
  34520. height: math.unit(6 + 5/12, "feet"),
  34521. name: "Front",
  34522. image: {
  34523. source: "./media/characters/purri/front.svg",
  34524. extra: 1698/1610,
  34525. bottom: 32/1730
  34526. }
  34527. },
  34528. frontAlt: {
  34529. height: math.unit(6 + 5/12, "feet"),
  34530. name: "Front (Alt)",
  34531. image: {
  34532. source: "./media/characters/purri/front-alt.svg",
  34533. extra: 450/420,
  34534. bottom: 26/476
  34535. }
  34536. },
  34537. boots: {
  34538. height: math.unit(5.5, "feet"),
  34539. name: "Boots",
  34540. image: {
  34541. source: "./media/characters/purri/boots.svg",
  34542. extra: 905/853,
  34543. bottom: 18/923
  34544. },
  34545. extraAttributes: {
  34546. "shoeSize": {
  34547. name: "Shoe Size",
  34548. power: 1,
  34549. type: "length",
  34550. base: math.unit(12, "ShoeSizeMensUS")
  34551. },
  34552. "platformHeight": {
  34553. name: "Platform Height",
  34554. power: 1,
  34555. type: "length",
  34556. base: math.unit(2, "inches")
  34557. },
  34558. }
  34559. },
  34560. lying: {
  34561. height: math.unit(2, "feet"),
  34562. name: "Lying",
  34563. image: {
  34564. source: "./media/characters/purri/lying.svg",
  34565. extra: 940/843,
  34566. bottom: 146/1086
  34567. }
  34568. },
  34569. devious: {
  34570. height: math.unit(1.77, "feet"),
  34571. name: "Devious",
  34572. image: {
  34573. source: "./media/characters/purri/devious.svg",
  34574. extra: 1440/1155,
  34575. bottom: 147/1587
  34576. }
  34577. },
  34578. bean: {
  34579. height: math.unit(1.94, "feet"),
  34580. name: "Bean",
  34581. image: {
  34582. source: "./media/characters/purri/bean.svg"
  34583. }
  34584. },
  34585. },
  34586. [
  34587. {
  34588. name: "Micro",
  34589. height: math.unit(1, "mm")
  34590. },
  34591. {
  34592. name: "Normal",
  34593. height: math.unit(6 + 5/12, "feet"),
  34594. default: true
  34595. },
  34596. {
  34597. name: "Macro :3c",
  34598. height: math.unit(2, "miles")
  34599. },
  34600. ]
  34601. ))
  34602. characterMakers.push(() => makeCharacter(
  34603. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34604. {
  34605. front: {
  34606. height: math.unit(6 + 2/12, "feet"),
  34607. weight: math.unit(250, "lb"),
  34608. name: "Front",
  34609. image: {
  34610. source: "./media/characters/moonlight/front.svg",
  34611. extra: 1044/908,
  34612. bottom: 56/1100
  34613. }
  34614. },
  34615. feral: {
  34616. height: math.unit(3 + 1/12, "feet"),
  34617. weight: math.unit(50, "kg"),
  34618. name: "Feral",
  34619. image: {
  34620. source: "./media/characters/moonlight/feral.svg",
  34621. extra: 3705/2791,
  34622. bottom: 145/3850
  34623. }
  34624. },
  34625. paw: {
  34626. height: math.unit(1, "feet"),
  34627. name: "Paw",
  34628. image: {
  34629. source: "./media/characters/moonlight/paw.svg"
  34630. }
  34631. },
  34632. paws: {
  34633. height: math.unit(0.98, "feet"),
  34634. name: "Paws",
  34635. image: {
  34636. source: "./media/characters/moonlight/paws.svg",
  34637. extra: 939/939,
  34638. bottom: 50/989
  34639. }
  34640. },
  34641. mouth: {
  34642. height: math.unit(0.48, "feet"),
  34643. name: "Mouth",
  34644. image: {
  34645. source: "./media/characters/moonlight/mouth.svg"
  34646. }
  34647. },
  34648. dick: {
  34649. height: math.unit(1.46, "feet"),
  34650. name: "Dick",
  34651. image: {
  34652. source: "./media/characters/moonlight/dick.svg"
  34653. }
  34654. },
  34655. },
  34656. [
  34657. {
  34658. name: "Normal",
  34659. height: math.unit(6 + 2/12, "feet"),
  34660. default: true
  34661. },
  34662. {
  34663. name: "Macro",
  34664. height: math.unit(300, "feet")
  34665. },
  34666. {
  34667. name: "Macro+",
  34668. height: math.unit(1, "mile")
  34669. },
  34670. {
  34671. name: "Mt. Moon",
  34672. height: math.unit(5, "miles")
  34673. },
  34674. {
  34675. name: "Megamacro",
  34676. height: math.unit(15, "miles")
  34677. },
  34678. ]
  34679. ))
  34680. characterMakers.push(() => makeCharacter(
  34681. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34682. {
  34683. back: {
  34684. height: math.unit(6, "feet"),
  34685. weight: math.unit(150, "lb"),
  34686. name: "Back",
  34687. image: {
  34688. source: "./media/characters/sylen/back.svg",
  34689. extra: 1335/1273,
  34690. bottom: 107/1442
  34691. }
  34692. },
  34693. },
  34694. [
  34695. {
  34696. name: "Normal",
  34697. height: math.unit(5 + 5/12, "feet")
  34698. },
  34699. {
  34700. name: "Megamacro",
  34701. height: math.unit(3, "miles"),
  34702. default: true
  34703. },
  34704. ]
  34705. ))
  34706. characterMakers.push(() => makeCharacter(
  34707. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34708. {
  34709. front: {
  34710. height: math.unit(6, "feet"),
  34711. weight: math.unit(190, "lb"),
  34712. name: "Front",
  34713. image: {
  34714. source: "./media/characters/huttser/front.svg",
  34715. extra: 1152/1058,
  34716. bottom: 23/1175
  34717. }
  34718. },
  34719. side: {
  34720. height: math.unit(6, "feet"),
  34721. weight: math.unit(190, "lb"),
  34722. name: "Side",
  34723. image: {
  34724. source: "./media/characters/huttser/side.svg",
  34725. extra: 1174/1065,
  34726. bottom: 18/1192
  34727. }
  34728. },
  34729. back: {
  34730. height: math.unit(6, "feet"),
  34731. weight: math.unit(190, "lb"),
  34732. name: "Back",
  34733. image: {
  34734. source: "./media/characters/huttser/back.svg",
  34735. extra: 1158/1056,
  34736. bottom: 12/1170
  34737. }
  34738. },
  34739. },
  34740. [
  34741. ]
  34742. ))
  34743. characterMakers.push(() => makeCharacter(
  34744. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34745. {
  34746. side: {
  34747. height: math.unit(12 + 9/12, "feet"),
  34748. weight: math.unit(15000, "lb"),
  34749. name: "Side",
  34750. image: {
  34751. source: "./media/characters/faan/side.svg",
  34752. extra: 2747/2697,
  34753. bottom: 0/2747
  34754. }
  34755. },
  34756. front: {
  34757. height: math.unit(12 + 9/12, "feet"),
  34758. weight: math.unit(15000, "lb"),
  34759. name: "Front",
  34760. image: {
  34761. source: "./media/characters/faan/front.svg",
  34762. extra: 607/571,
  34763. bottom: 24/631
  34764. }
  34765. },
  34766. head: {
  34767. height: math.unit(2.85, "feet"),
  34768. name: "Head",
  34769. image: {
  34770. source: "./media/characters/faan/head.svg"
  34771. }
  34772. },
  34773. headAlt: {
  34774. height: math.unit(3.13, "feet"),
  34775. name: "Head-alt",
  34776. image: {
  34777. source: "./media/characters/faan/head-alt.svg"
  34778. }
  34779. },
  34780. },
  34781. [
  34782. {
  34783. name: "Normal",
  34784. height: math.unit(12 + 9/12, "feet"),
  34785. default: true
  34786. },
  34787. ]
  34788. ))
  34789. characterMakers.push(() => makeCharacter(
  34790. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34791. {
  34792. front: {
  34793. height: math.unit(6, "feet"),
  34794. weight: math.unit(300, "lb"),
  34795. name: "Front",
  34796. image: {
  34797. source: "./media/characters/tanio/front.svg",
  34798. extra: 711/673,
  34799. bottom: 25/736
  34800. }
  34801. },
  34802. },
  34803. [
  34804. {
  34805. name: "Normal",
  34806. height: math.unit(6, "feet"),
  34807. default: true
  34808. },
  34809. ]
  34810. ))
  34811. characterMakers.push(() => makeCharacter(
  34812. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34813. {
  34814. front: {
  34815. height: math.unit(3, "inches"),
  34816. name: "Front",
  34817. image: {
  34818. source: "./media/characters/noboru/front.svg",
  34819. extra: 1039/932,
  34820. bottom: 18/1057
  34821. }
  34822. },
  34823. },
  34824. [
  34825. {
  34826. name: "Micro",
  34827. height: math.unit(3, "inches"),
  34828. default: true
  34829. },
  34830. ]
  34831. ))
  34832. characterMakers.push(() => makeCharacter(
  34833. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34834. {
  34835. front: {
  34836. height: math.unit(1.85, "meters"),
  34837. weight: math.unit(80, "kg"),
  34838. name: "Front",
  34839. image: {
  34840. source: "./media/characters/daniel-barrett/front.svg",
  34841. extra: 355/337,
  34842. bottom: 9/364
  34843. }
  34844. },
  34845. },
  34846. [
  34847. {
  34848. name: "Pico",
  34849. height: math.unit(0.0433, "mm")
  34850. },
  34851. {
  34852. name: "Nano",
  34853. height: math.unit(1.5, "mm")
  34854. },
  34855. {
  34856. name: "Micro",
  34857. height: math.unit(5.3, "cm"),
  34858. default: true
  34859. },
  34860. {
  34861. name: "Normal",
  34862. height: math.unit(1.85, "meters")
  34863. },
  34864. {
  34865. name: "Macro",
  34866. height: math.unit(64.7, "meters")
  34867. },
  34868. {
  34869. name: "Megamacro",
  34870. height: math.unit(2.26, "km")
  34871. },
  34872. {
  34873. name: "Gigamacro",
  34874. height: math.unit(79, "km")
  34875. },
  34876. {
  34877. name: "Teramacro",
  34878. height: math.unit(2765, "km")
  34879. },
  34880. {
  34881. name: "Petamacro",
  34882. height: math.unit(96678, "km")
  34883. },
  34884. ]
  34885. ))
  34886. characterMakers.push(() => makeCharacter(
  34887. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34888. {
  34889. front: {
  34890. height: math.unit(30, "meters"),
  34891. weight: math.unit(400, "tons"),
  34892. name: "Front",
  34893. image: {
  34894. source: "./media/characters/zeel/front.svg",
  34895. extra: 2599/2599,
  34896. bottom: 226/2825
  34897. }
  34898. },
  34899. },
  34900. [
  34901. {
  34902. name: "Macro",
  34903. height: math.unit(30, "meters"),
  34904. default: true
  34905. },
  34906. ]
  34907. ))
  34908. characterMakers.push(() => makeCharacter(
  34909. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34910. {
  34911. front: {
  34912. height: math.unit(6 + 7/12, "feet"),
  34913. weight: math.unit(210, "lb"),
  34914. name: "Front",
  34915. image: {
  34916. source: "./media/characters/tarn/front.svg",
  34917. extra: 3517/3220,
  34918. bottom: 91/3608
  34919. }
  34920. },
  34921. back: {
  34922. height: math.unit(6 + 7/12, "feet"),
  34923. weight: math.unit(210, "lb"),
  34924. name: "Back",
  34925. image: {
  34926. source: "./media/characters/tarn/back.svg",
  34927. extra: 3566/3241,
  34928. bottom: 34/3600
  34929. }
  34930. },
  34931. dick: {
  34932. height: math.unit(1.65, "feet"),
  34933. name: "Dick",
  34934. image: {
  34935. source: "./media/characters/tarn/dick.svg"
  34936. }
  34937. },
  34938. paw: {
  34939. height: math.unit(1.80, "feet"),
  34940. name: "Paw",
  34941. image: {
  34942. source: "./media/characters/tarn/paw.svg"
  34943. }
  34944. },
  34945. tongue: {
  34946. height: math.unit(0.97, "feet"),
  34947. name: "Tongue",
  34948. image: {
  34949. source: "./media/characters/tarn/tongue.svg"
  34950. }
  34951. },
  34952. },
  34953. [
  34954. {
  34955. name: "Micro",
  34956. height: math.unit(4, "inches")
  34957. },
  34958. {
  34959. name: "Normal",
  34960. height: math.unit(6 + 7/12, "feet"),
  34961. default: true
  34962. },
  34963. {
  34964. name: "Macro",
  34965. height: math.unit(300, "feet")
  34966. },
  34967. ]
  34968. ))
  34969. characterMakers.push(() => makeCharacter(
  34970. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34971. {
  34972. front: {
  34973. height: math.unit(5 + 7/12, "feet"),
  34974. weight: math.unit(80, "kg"),
  34975. name: "Front",
  34976. image: {
  34977. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34978. extra: 3023/2865,
  34979. bottom: 33/3056
  34980. }
  34981. },
  34982. back: {
  34983. height: math.unit(5 + 7/12, "feet"),
  34984. weight: math.unit(80, "kg"),
  34985. name: "Back",
  34986. image: {
  34987. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34988. extra: 3020/2886,
  34989. bottom: 30/3050
  34990. }
  34991. },
  34992. dick: {
  34993. height: math.unit(0.98, "feet"),
  34994. name: "Dick",
  34995. image: {
  34996. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34997. }
  34998. },
  34999. anatomy: {
  35000. height: math.unit(2.86, "feet"),
  35001. name: "Anatomy",
  35002. image: {
  35003. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35004. }
  35005. },
  35006. },
  35007. [
  35008. {
  35009. name: "Really Small",
  35010. height: math.unit(2, "inches")
  35011. },
  35012. {
  35013. name: "Micro",
  35014. height: math.unit(5.583, "inches")
  35015. },
  35016. {
  35017. name: "Normal",
  35018. height: math.unit(5 + 7/12, "feet"),
  35019. default: true
  35020. },
  35021. {
  35022. name: "Macro",
  35023. height: math.unit(67, "feet")
  35024. },
  35025. {
  35026. name: "Megamacro",
  35027. height: math.unit(134, "feet")
  35028. },
  35029. ]
  35030. ))
  35031. characterMakers.push(() => makeCharacter(
  35032. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35033. {
  35034. front: {
  35035. height: math.unit(9, "feet"),
  35036. weight: math.unit(120, "lb"),
  35037. name: "Front",
  35038. image: {
  35039. source: "./media/characters/sally/front.svg",
  35040. extra: 1506/1349,
  35041. bottom: 66/1572
  35042. }
  35043. },
  35044. },
  35045. [
  35046. {
  35047. name: "Normal",
  35048. height: math.unit(9, "feet"),
  35049. default: true
  35050. },
  35051. ]
  35052. ))
  35053. characterMakers.push(() => makeCharacter(
  35054. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35055. {
  35056. front: {
  35057. height: math.unit(8, "feet"),
  35058. weight: math.unit(900, "lb"),
  35059. name: "Front",
  35060. image: {
  35061. source: "./media/characters/owen/front.svg",
  35062. extra: 1761/1657,
  35063. bottom: 74/1835
  35064. }
  35065. },
  35066. side: {
  35067. height: math.unit(8, "feet"),
  35068. weight: math.unit(900, "lb"),
  35069. name: "Side",
  35070. image: {
  35071. source: "./media/characters/owen/side.svg",
  35072. extra: 1797/1734,
  35073. bottom: 30/1827
  35074. }
  35075. },
  35076. back: {
  35077. height: math.unit(8, "feet"),
  35078. weight: math.unit(900, "lb"),
  35079. name: "Back",
  35080. image: {
  35081. source: "./media/characters/owen/back.svg",
  35082. extra: 1796/1706,
  35083. bottom: 59/1855
  35084. }
  35085. },
  35086. maw: {
  35087. height: math.unit(1.76, "feet"),
  35088. name: "Maw",
  35089. image: {
  35090. source: "./media/characters/owen/maw.svg"
  35091. }
  35092. },
  35093. },
  35094. [
  35095. {
  35096. name: "Normal",
  35097. height: math.unit(8, "feet"),
  35098. default: true
  35099. },
  35100. ]
  35101. ))
  35102. characterMakers.push(() => makeCharacter(
  35103. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35104. {
  35105. front: {
  35106. height: math.unit(4, "feet"),
  35107. weight: math.unit(400, "lb"),
  35108. name: "Front",
  35109. image: {
  35110. source: "./media/characters/ryth/front.svg",
  35111. extra: 1920/1748,
  35112. bottom: 42/1962
  35113. }
  35114. },
  35115. back: {
  35116. height: math.unit(4, "feet"),
  35117. weight: math.unit(400, "lb"),
  35118. name: "Back",
  35119. image: {
  35120. source: "./media/characters/ryth/back.svg",
  35121. extra: 1897/1690,
  35122. bottom: 89/1986
  35123. }
  35124. },
  35125. mouth: {
  35126. height: math.unit(1.39, "feet"),
  35127. name: "Mouth",
  35128. image: {
  35129. source: "./media/characters/ryth/mouth.svg"
  35130. }
  35131. },
  35132. tailmaw: {
  35133. height: math.unit(1.23, "feet"),
  35134. name: "Tailmaw",
  35135. image: {
  35136. source: "./media/characters/ryth/tailmaw.svg"
  35137. }
  35138. },
  35139. goia: {
  35140. height: math.unit(4, "meters"),
  35141. weight: math.unit(10800, "lb"),
  35142. name: "Goia",
  35143. image: {
  35144. source: "./media/characters/ryth/goia.svg",
  35145. extra: 745/640,
  35146. bottom: 107/852
  35147. }
  35148. },
  35149. goiaFront: {
  35150. height: math.unit(4, "meters"),
  35151. weight: math.unit(10800, "lb"),
  35152. name: "Goia (Front)",
  35153. image: {
  35154. source: "./media/characters/ryth/goia-front.svg",
  35155. extra: 750/586,
  35156. bottom: 114/864
  35157. }
  35158. },
  35159. goiaMaw: {
  35160. height: math.unit(5.55, "feet"),
  35161. name: "Goia Maw",
  35162. image: {
  35163. source: "./media/characters/ryth/goia-maw.svg"
  35164. }
  35165. },
  35166. goiaForepaw: {
  35167. height: math.unit(3.5, "feet"),
  35168. name: "Goia Forepaw",
  35169. image: {
  35170. source: "./media/characters/ryth/goia-forepaw.svg"
  35171. }
  35172. },
  35173. goiaHindpaw: {
  35174. height: math.unit(5.55, "feet"),
  35175. name: "Goia Hindpaw",
  35176. image: {
  35177. source: "./media/characters/ryth/goia-hindpaw.svg"
  35178. }
  35179. },
  35180. },
  35181. [
  35182. {
  35183. name: "Normal",
  35184. height: math.unit(4, "feet"),
  35185. default: true
  35186. },
  35187. ]
  35188. ))
  35189. characterMakers.push(() => makeCharacter(
  35190. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35191. {
  35192. front: {
  35193. height: math.unit(7, "feet"),
  35194. weight: math.unit(180, "lb"),
  35195. name: "Front",
  35196. image: {
  35197. source: "./media/characters/necrolance/front.svg",
  35198. extra: 1062/947,
  35199. bottom: 41/1103
  35200. }
  35201. },
  35202. back: {
  35203. height: math.unit(7, "feet"),
  35204. weight: math.unit(180, "lb"),
  35205. name: "Back",
  35206. image: {
  35207. source: "./media/characters/necrolance/back.svg",
  35208. extra: 1045/984,
  35209. bottom: 14/1059
  35210. }
  35211. },
  35212. wing: {
  35213. height: math.unit(2.67, "feet"),
  35214. name: "Wing",
  35215. image: {
  35216. source: "./media/characters/necrolance/wing.svg"
  35217. }
  35218. },
  35219. },
  35220. [
  35221. {
  35222. name: "Normal",
  35223. height: math.unit(7, "feet"),
  35224. default: true
  35225. },
  35226. ]
  35227. ))
  35228. characterMakers.push(() => makeCharacter(
  35229. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35230. {
  35231. front: {
  35232. height: math.unit(76, "meters"),
  35233. weight: math.unit(30000, "tons"),
  35234. name: "Front",
  35235. image: {
  35236. source: "./media/characters/tyler/front.svg",
  35237. extra: 1640/1640,
  35238. bottom: 114/1754
  35239. }
  35240. },
  35241. },
  35242. [
  35243. {
  35244. name: "Macro",
  35245. height: math.unit(76, "meters"),
  35246. default: true
  35247. },
  35248. ]
  35249. ))
  35250. characterMakers.push(() => makeCharacter(
  35251. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35252. {
  35253. front: {
  35254. height: math.unit(4 + 11/12, "feet"),
  35255. weight: math.unit(132, "lb"),
  35256. name: "Front",
  35257. image: {
  35258. source: "./media/characters/icey/front.svg",
  35259. extra: 2750/2550,
  35260. bottom: 33/2783
  35261. }
  35262. },
  35263. back: {
  35264. height: math.unit(4 + 11/12, "feet"),
  35265. weight: math.unit(132, "lb"),
  35266. name: "Back",
  35267. image: {
  35268. source: "./media/characters/icey/back.svg",
  35269. extra: 2624/2481,
  35270. bottom: 35/2659
  35271. }
  35272. },
  35273. },
  35274. [
  35275. {
  35276. name: "Normal",
  35277. height: math.unit(4 + 11/12, "feet"),
  35278. default: true
  35279. },
  35280. ]
  35281. ))
  35282. characterMakers.push(() => makeCharacter(
  35283. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35284. {
  35285. front: {
  35286. height: math.unit(100, "feet"),
  35287. weight: math.unit(0, "lb"),
  35288. name: "Front",
  35289. image: {
  35290. source: "./media/characters/smile/front.svg",
  35291. extra: 2983/2912,
  35292. bottom: 162/3145
  35293. }
  35294. },
  35295. back: {
  35296. height: math.unit(100, "feet"),
  35297. weight: math.unit(0, "lb"),
  35298. name: "Back",
  35299. image: {
  35300. source: "./media/characters/smile/back.svg",
  35301. extra: 3143/3031,
  35302. bottom: 91/3234
  35303. }
  35304. },
  35305. head: {
  35306. height: math.unit(26.3, "feet"),
  35307. weight: math.unit(0, "lb"),
  35308. name: "Head",
  35309. image: {
  35310. source: "./media/characters/smile/head.svg"
  35311. }
  35312. },
  35313. collar: {
  35314. height: math.unit(5.3, "feet"),
  35315. weight: math.unit(0, "lb"),
  35316. name: "Collar",
  35317. image: {
  35318. source: "./media/characters/smile/collar.svg"
  35319. }
  35320. },
  35321. },
  35322. [
  35323. {
  35324. name: "Macro",
  35325. height: math.unit(100, "feet"),
  35326. default: true
  35327. },
  35328. ]
  35329. ))
  35330. characterMakers.push(() => makeCharacter(
  35331. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35332. {
  35333. dragon: {
  35334. height: math.unit(26, "feet"),
  35335. weight: math.unit(36, "tons"),
  35336. name: "Dragon",
  35337. image: {
  35338. source: "./media/characters/arimphae/dragon.svg",
  35339. extra: 1574/983,
  35340. bottom: 357/1931
  35341. }
  35342. },
  35343. drake: {
  35344. height: math.unit(9, "feet"),
  35345. weight: math.unit(1.5, "tons"),
  35346. name: "Drake",
  35347. image: {
  35348. source: "./media/characters/arimphae/drake.svg",
  35349. extra: 1120/925,
  35350. bottom: 435/1555
  35351. }
  35352. },
  35353. },
  35354. [
  35355. {
  35356. name: "Small",
  35357. height: math.unit(26*5/9, "feet")
  35358. },
  35359. {
  35360. name: "Normal",
  35361. height: math.unit(26, "feet"),
  35362. default: true
  35363. },
  35364. ]
  35365. ))
  35366. characterMakers.push(() => makeCharacter(
  35367. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35368. {
  35369. front: {
  35370. height: math.unit(8 + 9/12, "feet"),
  35371. name: "Front",
  35372. image: {
  35373. source: "./media/characters/xander/front.svg",
  35374. extra: 1237/974,
  35375. bottom: 94/1331
  35376. }
  35377. },
  35378. },
  35379. [
  35380. {
  35381. name: "Normal",
  35382. height: math.unit(8 + 9/12, "feet"),
  35383. default: true
  35384. },
  35385. {
  35386. name: "Gaze Grabber",
  35387. height: math.unit(13 + 8/12, "feet")
  35388. },
  35389. {
  35390. name: "Jaw Dropper",
  35391. height: math.unit(27, "feet")
  35392. },
  35393. {
  35394. name: "Show Stopper",
  35395. height: math.unit(136, "feet")
  35396. },
  35397. {
  35398. name: "Superstar",
  35399. height: math.unit(1.9e6, "miles")
  35400. },
  35401. ]
  35402. ))
  35403. characterMakers.push(() => makeCharacter(
  35404. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35405. {
  35406. side: {
  35407. height: math.unit(2100, "feet"),
  35408. name: "Side",
  35409. image: {
  35410. source: "./media/characters/osiris/side.svg",
  35411. extra: 1105/939,
  35412. bottom: 167/1272
  35413. }
  35414. },
  35415. },
  35416. [
  35417. {
  35418. name: "Macro",
  35419. height: math.unit(2100, "feet"),
  35420. default: true
  35421. },
  35422. ]
  35423. ))
  35424. characterMakers.push(() => makeCharacter(
  35425. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35426. {
  35427. front: {
  35428. height: math.unit(6 + 8/12, "feet"),
  35429. weight: math.unit(225, "lb"),
  35430. name: "Front",
  35431. image: {
  35432. source: "./media/characters/rhys-londe/front.svg",
  35433. extra: 2258/2141,
  35434. bottom: 188/2446
  35435. }
  35436. },
  35437. back: {
  35438. height: math.unit(6 + 8/12, "feet"),
  35439. weight: math.unit(225, "lb"),
  35440. name: "Back",
  35441. image: {
  35442. source: "./media/characters/rhys-londe/back.svg",
  35443. extra: 2237/2137,
  35444. bottom: 63/2300
  35445. }
  35446. },
  35447. frontNsfw: {
  35448. height: math.unit(6 + 8/12, "feet"),
  35449. weight: math.unit(225, "lb"),
  35450. name: "Front (NSFW)",
  35451. image: {
  35452. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35453. extra: 2258/2141,
  35454. bottom: 188/2446
  35455. }
  35456. },
  35457. backNsfw: {
  35458. height: math.unit(6 + 8/12, "feet"),
  35459. weight: math.unit(225, "lb"),
  35460. name: "Back (NSFW)",
  35461. image: {
  35462. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35463. extra: 2237/2137,
  35464. bottom: 63/2300
  35465. }
  35466. },
  35467. dick: {
  35468. height: math.unit(30, "inches"),
  35469. name: "Dick",
  35470. image: {
  35471. source: "./media/characters/rhys-londe/dick.svg"
  35472. }
  35473. },
  35474. maw: {
  35475. height: math.unit(1.6, "feet"),
  35476. name: "Maw",
  35477. image: {
  35478. source: "./media/characters/rhys-londe/maw.svg"
  35479. }
  35480. },
  35481. },
  35482. [
  35483. {
  35484. name: "Normal",
  35485. height: math.unit(6 + 8/12, "feet"),
  35486. default: true
  35487. },
  35488. ]
  35489. ))
  35490. characterMakers.push(() => makeCharacter(
  35491. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35492. {
  35493. front: {
  35494. height: math.unit(3 + 10/12, "feet"),
  35495. weight: math.unit(90, "lb"),
  35496. name: "Front",
  35497. image: {
  35498. source: "./media/characters/taivas-ensim/front.svg",
  35499. extra: 1327/1216,
  35500. bottom: 96/1423
  35501. }
  35502. },
  35503. back: {
  35504. height: math.unit(3 + 10/12, "feet"),
  35505. weight: math.unit(90, "lb"),
  35506. name: "Back",
  35507. image: {
  35508. source: "./media/characters/taivas-ensim/back.svg",
  35509. extra: 1355/1247,
  35510. bottom: 11/1366
  35511. }
  35512. },
  35513. frontNsfw: {
  35514. height: math.unit(3 + 10/12, "feet"),
  35515. weight: math.unit(90, "lb"),
  35516. name: "Front (NSFW)",
  35517. image: {
  35518. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35519. extra: 1327/1216,
  35520. bottom: 96/1423
  35521. }
  35522. },
  35523. backNsfw: {
  35524. height: math.unit(3 + 10/12, "feet"),
  35525. weight: math.unit(90, "lb"),
  35526. name: "Back (NSFW)",
  35527. image: {
  35528. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35529. extra: 1355/1247,
  35530. bottom: 11/1366
  35531. }
  35532. },
  35533. },
  35534. [
  35535. {
  35536. name: "Normal",
  35537. height: math.unit(3 + 10/12, "feet"),
  35538. default: true
  35539. },
  35540. ]
  35541. ))
  35542. characterMakers.push(() => makeCharacter(
  35543. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35544. {
  35545. front: {
  35546. height: math.unit(9 + 6/12, "feet"),
  35547. weight: math.unit(940, "lb"),
  35548. name: "Front",
  35549. image: {
  35550. source: "./media/characters/byliss/front.svg",
  35551. extra: 1327/1290,
  35552. bottom: 82/1409
  35553. }
  35554. },
  35555. back: {
  35556. height: math.unit(9 + 6/12, "feet"),
  35557. weight: math.unit(940, "lb"),
  35558. name: "Back",
  35559. image: {
  35560. source: "./media/characters/byliss/back.svg",
  35561. extra: 1376/1349,
  35562. bottom: 9/1385
  35563. }
  35564. },
  35565. frontNsfw: {
  35566. height: math.unit(9 + 6/12, "feet"),
  35567. weight: math.unit(940, "lb"),
  35568. name: "Front (NSFW)",
  35569. image: {
  35570. source: "./media/characters/byliss/front-nsfw.svg",
  35571. extra: 1327/1290,
  35572. bottom: 82/1409
  35573. }
  35574. },
  35575. backNsfw: {
  35576. height: math.unit(9 + 6/12, "feet"),
  35577. weight: math.unit(940, "lb"),
  35578. name: "Back (NSFW)",
  35579. image: {
  35580. source: "./media/characters/byliss/back-nsfw.svg",
  35581. extra: 1376/1349,
  35582. bottom: 9/1385
  35583. }
  35584. },
  35585. },
  35586. [
  35587. {
  35588. name: "Normal",
  35589. height: math.unit(9 + 6/12, "feet"),
  35590. default: true
  35591. },
  35592. ]
  35593. ))
  35594. characterMakers.push(() => makeCharacter(
  35595. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35596. {
  35597. front: {
  35598. height: math.unit(5 + 2/12, "feet"),
  35599. weight: math.unit(200, "lb"),
  35600. name: "Front",
  35601. image: {
  35602. source: "./media/characters/noraly/front.svg",
  35603. extra: 4985/4773,
  35604. bottom: 150/5135
  35605. }
  35606. },
  35607. full: {
  35608. height: math.unit(5 + 2/12, "feet"),
  35609. weight: math.unit(164, "lb"),
  35610. name: "Full",
  35611. image: {
  35612. source: "./media/characters/noraly/full.svg",
  35613. extra: 1114/1059,
  35614. bottom: 35/1149
  35615. }
  35616. },
  35617. fuller: {
  35618. height: math.unit(5 + 2/12, "feet"),
  35619. weight: math.unit(230, "lb"),
  35620. name: "Fuller",
  35621. image: {
  35622. source: "./media/characters/noraly/fuller.svg",
  35623. extra: 1114/1059,
  35624. bottom: 35/1149
  35625. }
  35626. },
  35627. fullest: {
  35628. height: math.unit(5 + 2/12, "feet"),
  35629. weight: math.unit(300, "lb"),
  35630. name: "Fullest",
  35631. image: {
  35632. source: "./media/characters/noraly/fullest.svg",
  35633. extra: 1114/1059,
  35634. bottom: 35/1149
  35635. }
  35636. },
  35637. },
  35638. [
  35639. {
  35640. name: "Normal",
  35641. height: math.unit(5 + 2/12, "feet"),
  35642. default: true
  35643. },
  35644. ]
  35645. ))
  35646. characterMakers.push(() => makeCharacter(
  35647. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35648. {
  35649. front: {
  35650. height: math.unit(5 + 2/12, "feet"),
  35651. weight: math.unit(210, "lb"),
  35652. name: "Front",
  35653. image: {
  35654. source: "./media/characters/pera/front.svg",
  35655. extra: 1560/1531,
  35656. bottom: 165/1725
  35657. }
  35658. },
  35659. back: {
  35660. height: math.unit(5 + 2/12, "feet"),
  35661. weight: math.unit(210, "lb"),
  35662. name: "Back",
  35663. image: {
  35664. source: "./media/characters/pera/back.svg",
  35665. extra: 1523/1493,
  35666. bottom: 152/1675
  35667. }
  35668. },
  35669. dick: {
  35670. height: math.unit(2.4, "feet"),
  35671. name: "Dick",
  35672. image: {
  35673. source: "./media/characters/pera/dick.svg"
  35674. }
  35675. },
  35676. },
  35677. [
  35678. {
  35679. name: "Normal",
  35680. height: math.unit(5 + 2/12, "feet"),
  35681. default: true
  35682. },
  35683. ]
  35684. ))
  35685. characterMakers.push(() => makeCharacter(
  35686. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35687. {
  35688. front: {
  35689. height: math.unit(12, "feet"),
  35690. weight: math.unit(3200, "lb"),
  35691. name: "Front",
  35692. image: {
  35693. source: "./media/characters/julian/front.svg",
  35694. extra: 2962/2701,
  35695. bottom: 184/3146
  35696. }
  35697. },
  35698. maw: {
  35699. height: math.unit(5.35, "feet"),
  35700. name: "Maw",
  35701. image: {
  35702. source: "./media/characters/julian/maw.svg"
  35703. }
  35704. },
  35705. paw: {
  35706. height: math.unit(3.07, "feet"),
  35707. name: "Paw",
  35708. image: {
  35709. source: "./media/characters/julian/paw.svg"
  35710. }
  35711. },
  35712. },
  35713. [
  35714. {
  35715. name: "Default",
  35716. height: math.unit(12, "feet"),
  35717. default: true
  35718. },
  35719. {
  35720. name: "Big",
  35721. height: math.unit(50, "feet")
  35722. },
  35723. {
  35724. name: "Really Big",
  35725. height: math.unit(1, "mile")
  35726. },
  35727. {
  35728. name: "Extremely Big",
  35729. height: math.unit(100, "miles")
  35730. },
  35731. {
  35732. name: "Planet Hugger",
  35733. height: math.unit(200, "megameters")
  35734. },
  35735. {
  35736. name: "Unreasonably Big",
  35737. height: math.unit(1e300, "meters")
  35738. },
  35739. ]
  35740. ))
  35741. characterMakers.push(() => makeCharacter(
  35742. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35743. {
  35744. solgooleo: {
  35745. height: math.unit(4, "meters"),
  35746. weight: math.unit(6000*1.5, "kg"),
  35747. volume: math.unit(6000, "liters"),
  35748. name: "Solgooleo",
  35749. image: {
  35750. source: "./media/characters/pi/solgooleo.svg",
  35751. extra: 388/331,
  35752. bottom: 29/417
  35753. }
  35754. },
  35755. },
  35756. [
  35757. {
  35758. name: "Normal",
  35759. height: math.unit(4, "meters"),
  35760. default: true
  35761. },
  35762. ]
  35763. ))
  35764. characterMakers.push(() => makeCharacter(
  35765. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35766. {
  35767. front: {
  35768. height: math.unit(8, "feet"),
  35769. weight: math.unit(4, "tons"),
  35770. name: "Front",
  35771. image: {
  35772. source: "./media/characters/shaun/front.svg",
  35773. extra: 503/495,
  35774. bottom: 20/523
  35775. }
  35776. },
  35777. back: {
  35778. height: math.unit(8, "feet"),
  35779. weight: math.unit(4, "tons"),
  35780. name: "Back",
  35781. image: {
  35782. source: "./media/characters/shaun/back.svg",
  35783. extra: 487/480,
  35784. bottom: 20/507
  35785. }
  35786. },
  35787. },
  35788. [
  35789. {
  35790. name: "Lorg",
  35791. height: math.unit(8, "feet"),
  35792. default: true
  35793. },
  35794. ]
  35795. ))
  35796. characterMakers.push(() => makeCharacter(
  35797. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35798. {
  35799. frontAnthro: {
  35800. height: math.unit(7, "feet"),
  35801. name: "Front",
  35802. image: {
  35803. source: "./media/characters/sini/front-anthro.svg",
  35804. extra: 726/678,
  35805. bottom: 35/761
  35806. },
  35807. form: "anthro",
  35808. default: true
  35809. },
  35810. backAnthro: {
  35811. height: math.unit(7, "feet"),
  35812. name: "Back",
  35813. image: {
  35814. source: "./media/characters/sini/back-anthro.svg",
  35815. extra: 743/701,
  35816. bottom: 12/755
  35817. },
  35818. form: "anthro",
  35819. },
  35820. frontAnthroNsfw: {
  35821. height: math.unit(7, "feet"),
  35822. name: "Front (NSFW)",
  35823. image: {
  35824. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35825. extra: 726/678,
  35826. bottom: 35/761
  35827. },
  35828. form: "anthro"
  35829. },
  35830. backAnthroNsfw: {
  35831. height: math.unit(7, "feet"),
  35832. name: "Back (NSFW)",
  35833. image: {
  35834. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35835. extra: 743/701,
  35836. bottom: 12/755
  35837. },
  35838. form: "anthro",
  35839. },
  35840. mawAnthro: {
  35841. height: math.unit(2.14, "feet"),
  35842. name: "Maw",
  35843. image: {
  35844. source: "./media/characters/sini/maw-anthro.svg"
  35845. },
  35846. form: "anthro"
  35847. },
  35848. dick: {
  35849. height: math.unit(1.45, "feet"),
  35850. name: "Dick",
  35851. image: {
  35852. source: "./media/characters/sini/dick-anthro.svg"
  35853. },
  35854. form: "anthro"
  35855. },
  35856. feral: {
  35857. height: math.unit(16, "feet"),
  35858. name: "Feral",
  35859. image: {
  35860. source: "./media/characters/sini/feral.svg",
  35861. extra: 814/605,
  35862. bottom: 11/825
  35863. },
  35864. form: "feral",
  35865. default: true
  35866. },
  35867. feralNsfw: {
  35868. height: math.unit(16, "feet"),
  35869. name: "Feral (NSFW)",
  35870. image: {
  35871. source: "./media/characters/sini/feral-nsfw.svg",
  35872. extra: 814/605,
  35873. bottom: 11/825
  35874. },
  35875. form: "feral"
  35876. },
  35877. mawFeral: {
  35878. height: math.unit(5.66, "feet"),
  35879. name: "Maw",
  35880. image: {
  35881. source: "./media/characters/sini/maw-feral.svg"
  35882. },
  35883. form: "feral",
  35884. },
  35885. pawFeral: {
  35886. height: math.unit(5.17, "feet"),
  35887. name: "Paw",
  35888. image: {
  35889. source: "./media/characters/sini/paw-feral.svg"
  35890. },
  35891. form: "feral",
  35892. },
  35893. rumpFeral: {
  35894. height: math.unit(13.11, "feet"),
  35895. name: "Rump",
  35896. image: {
  35897. source: "./media/characters/sini/rump-feral.svg"
  35898. },
  35899. form: "feral",
  35900. },
  35901. dickFeral: {
  35902. height: math.unit(1, "feet"),
  35903. name: "Dick",
  35904. image: {
  35905. source: "./media/characters/sini/dick-feral.svg"
  35906. },
  35907. form: "feral",
  35908. },
  35909. eyeFeral: {
  35910. height: math.unit(1.23, "feet"),
  35911. name: "Eye",
  35912. image: {
  35913. source: "./media/characters/sini/eye-feral.svg"
  35914. },
  35915. form: "feral",
  35916. },
  35917. },
  35918. [
  35919. {
  35920. name: "Normal",
  35921. height: math.unit(7, "feet"),
  35922. default: true,
  35923. form: "anthro"
  35924. },
  35925. {
  35926. name: "Normal",
  35927. height: math.unit(16, "feet"),
  35928. default: true,
  35929. form: "feral"
  35930. },
  35931. ],
  35932. {
  35933. "anthro": {
  35934. name: "Anthro",
  35935. default: true
  35936. },
  35937. "feral": {
  35938. name: "Feral",
  35939. }
  35940. }
  35941. ))
  35942. characterMakers.push(() => makeCharacter(
  35943. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35944. {
  35945. side: {
  35946. height: math.unit(47.2, "meters"),
  35947. weight: math.unit(10000, "tons"),
  35948. name: "Side",
  35949. image: {
  35950. source: "./media/characters/raylldo/side.svg",
  35951. extra: 2363/642,
  35952. bottom: 221/2584
  35953. }
  35954. },
  35955. top: {
  35956. height: math.unit(240, "meters"),
  35957. weight: math.unit(10000, "tons"),
  35958. name: "Top",
  35959. image: {
  35960. source: "./media/characters/raylldo/top.svg"
  35961. }
  35962. },
  35963. bottom: {
  35964. height: math.unit(240, "meters"),
  35965. weight: math.unit(10000, "tons"),
  35966. name: "Bottom",
  35967. image: {
  35968. source: "./media/characters/raylldo/bottom.svg"
  35969. }
  35970. },
  35971. head: {
  35972. height: math.unit(38.6, "meters"),
  35973. name: "Head",
  35974. image: {
  35975. source: "./media/characters/raylldo/head.svg",
  35976. extra: 1335/1112,
  35977. bottom: 0/1335
  35978. }
  35979. },
  35980. maw: {
  35981. height: math.unit(16.37, "meters"),
  35982. name: "Maw",
  35983. image: {
  35984. source: "./media/characters/raylldo/maw.svg",
  35985. extra: 883/660,
  35986. bottom: 0/883
  35987. },
  35988. extraAttributes: {
  35989. preyCapacity: {
  35990. name: "Capacity",
  35991. power: 3,
  35992. type: "volume",
  35993. base: math.unit(1000, "people")
  35994. },
  35995. tongueSize: {
  35996. name: "Tongue Size",
  35997. power: 2,
  35998. type: "area",
  35999. base: math.unit(21, "m^2")
  36000. }
  36001. }
  36002. },
  36003. forepaw: {
  36004. height: math.unit(18, "meters"),
  36005. name: "Forepaw",
  36006. image: {
  36007. source: "./media/characters/raylldo/forepaw.svg"
  36008. }
  36009. },
  36010. hindpaw: {
  36011. height: math.unit(23, "meters"),
  36012. name: "Hindpaw",
  36013. image: {
  36014. source: "./media/characters/raylldo/hindpaw.svg"
  36015. }
  36016. },
  36017. genitals: {
  36018. height: math.unit(42, "meters"),
  36019. name: "Genitals",
  36020. image: {
  36021. source: "./media/characters/raylldo/genitals.svg"
  36022. }
  36023. },
  36024. },
  36025. [
  36026. {
  36027. name: "Normal",
  36028. height: math.unit(47.2, "meters"),
  36029. default: true
  36030. },
  36031. ]
  36032. ))
  36033. characterMakers.push(() => makeCharacter(
  36034. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36035. {
  36036. anthroFront: {
  36037. height: math.unit(9, "feet"),
  36038. weight: math.unit(600, "lb"),
  36039. name: "Anthro (Front)",
  36040. image: {
  36041. source: "./media/characters/glint/anthro-front.svg",
  36042. extra: 1097/1018,
  36043. bottom: 28/1125
  36044. }
  36045. },
  36046. anthroBack: {
  36047. height: math.unit(9, "feet"),
  36048. weight: math.unit(600, "lb"),
  36049. name: "Anthro (Back)",
  36050. image: {
  36051. source: "./media/characters/glint/anthro-back.svg",
  36052. extra: 1154/997,
  36053. bottom: 36/1190
  36054. }
  36055. },
  36056. feral: {
  36057. height: math.unit(11, "feet"),
  36058. weight: math.unit(50000, "lb"),
  36059. name: "Feral",
  36060. image: {
  36061. source: "./media/characters/glint/feral.svg",
  36062. extra: 3035/1585,
  36063. bottom: 1169/4204
  36064. }
  36065. },
  36066. dickAnthro: {
  36067. height: math.unit(0.7, "meters"),
  36068. name: "Dick (Anthro)",
  36069. image: {
  36070. source: "./media/characters/glint/dick-anthro.svg"
  36071. }
  36072. },
  36073. dickFeral: {
  36074. height: math.unit(2.65, "meters"),
  36075. name: "Dick (Feral)",
  36076. image: {
  36077. source: "./media/characters/glint/dick-feral.svg"
  36078. }
  36079. },
  36080. slitHidden: {
  36081. height: math.unit(5.85, "meters"),
  36082. name: "Slit (Hidden)",
  36083. image: {
  36084. source: "./media/characters/glint/slit-hidden.svg"
  36085. }
  36086. },
  36087. slitErect: {
  36088. height: math.unit(5.85, "meters"),
  36089. name: "Slit (Erect)",
  36090. image: {
  36091. source: "./media/characters/glint/slit-erect.svg"
  36092. }
  36093. },
  36094. mawAnthro: {
  36095. height: math.unit(0.63, "meters"),
  36096. name: "Maw (Anthro)",
  36097. image: {
  36098. source: "./media/characters/glint/maw.svg"
  36099. }
  36100. },
  36101. mawFeral: {
  36102. height: math.unit(2.89, "meters"),
  36103. name: "Maw (Feral)",
  36104. image: {
  36105. source: "./media/characters/glint/maw.svg"
  36106. }
  36107. },
  36108. },
  36109. [
  36110. {
  36111. name: "Normal",
  36112. height: math.unit(9, "feet"),
  36113. default: true
  36114. },
  36115. ]
  36116. ))
  36117. characterMakers.push(() => makeCharacter(
  36118. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36119. {
  36120. side: {
  36121. height: math.unit(15, "feet"),
  36122. weight: math.unit(5000, "kg"),
  36123. name: "Side",
  36124. image: {
  36125. source: "./media/characters/kairne/side.svg",
  36126. extra: 979/811,
  36127. bottom: 13/992
  36128. }
  36129. },
  36130. front: {
  36131. height: math.unit(15, "feet"),
  36132. weight: math.unit(5000, "kg"),
  36133. name: "Front",
  36134. image: {
  36135. source: "./media/characters/kairne/front.svg",
  36136. extra: 908/814,
  36137. bottom: 26/934
  36138. }
  36139. },
  36140. sideNsfw: {
  36141. height: math.unit(15, "feet"),
  36142. weight: math.unit(5000, "kg"),
  36143. name: "Side (NSFW)",
  36144. image: {
  36145. source: "./media/characters/kairne/side-nsfw.svg",
  36146. extra: 979/811,
  36147. bottom: 13/992
  36148. }
  36149. },
  36150. frontNsfw: {
  36151. height: math.unit(15, "feet"),
  36152. weight: math.unit(5000, "kg"),
  36153. name: "Front (NSFW)",
  36154. image: {
  36155. source: "./media/characters/kairne/front-nsfw.svg",
  36156. extra: 908/814,
  36157. bottom: 26/934
  36158. }
  36159. },
  36160. dickCaged: {
  36161. height: math.unit(0.65, "meters"),
  36162. name: "Dick-caged",
  36163. image: {
  36164. source: "./media/characters/kairne/dick-caged.svg"
  36165. }
  36166. },
  36167. dick: {
  36168. height: math.unit(0.79, "meters"),
  36169. name: "Dick",
  36170. image: {
  36171. source: "./media/characters/kairne/dick.svg"
  36172. }
  36173. },
  36174. genitals: {
  36175. height: math.unit(1.29, "meters"),
  36176. name: "Genitals",
  36177. image: {
  36178. source: "./media/characters/kairne/genitals.svg"
  36179. }
  36180. },
  36181. maw: {
  36182. height: math.unit(1.73, "meters"),
  36183. name: "Maw",
  36184. image: {
  36185. source: "./media/characters/kairne/maw.svg"
  36186. }
  36187. },
  36188. },
  36189. [
  36190. {
  36191. name: "Normal",
  36192. height: math.unit(15, "feet"),
  36193. default: true
  36194. },
  36195. ]
  36196. ))
  36197. characterMakers.push(() => makeCharacter(
  36198. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36199. {
  36200. front: {
  36201. height: math.unit(5 + 8/12, "feet"),
  36202. weight: math.unit(139, "lb"),
  36203. name: "Front",
  36204. image: {
  36205. source: "./media/characters/biscuit-jackal/front.svg",
  36206. extra: 2106/1961,
  36207. bottom: 58/2164
  36208. }
  36209. },
  36210. back: {
  36211. height: math.unit(5 + 8/12, "feet"),
  36212. weight: math.unit(139, "lb"),
  36213. name: "Back",
  36214. image: {
  36215. source: "./media/characters/biscuit-jackal/back.svg",
  36216. extra: 2132/1976,
  36217. bottom: 57/2189
  36218. }
  36219. },
  36220. werejackal: {
  36221. height: math.unit(6 + 3/12, "feet"),
  36222. weight: math.unit(188, "lb"),
  36223. name: "Werejackal",
  36224. image: {
  36225. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36226. extra: 2373/2178,
  36227. bottom: 53/2426
  36228. }
  36229. },
  36230. },
  36231. [
  36232. {
  36233. name: "Normal",
  36234. height: math.unit(5 + 8/12, "feet"),
  36235. default: true
  36236. },
  36237. ]
  36238. ))
  36239. characterMakers.push(() => makeCharacter(
  36240. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36241. {
  36242. front: {
  36243. height: math.unit(140, "cm"),
  36244. weight: math.unit(45, "kg"),
  36245. name: "Front",
  36246. image: {
  36247. source: "./media/characters/tayra-white/front.svg",
  36248. extra: 2229/2192,
  36249. bottom: 75/2304
  36250. }
  36251. },
  36252. },
  36253. [
  36254. {
  36255. name: "Normal",
  36256. height: math.unit(140, "cm"),
  36257. default: true
  36258. },
  36259. ]
  36260. ))
  36261. characterMakers.push(() => makeCharacter(
  36262. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36263. {
  36264. front: {
  36265. height: math.unit(4 + 5/12, "feet"),
  36266. name: "Front",
  36267. image: {
  36268. source: "./media/characters/scoop/front.svg",
  36269. extra: 1257/1136,
  36270. bottom: 69/1326
  36271. }
  36272. },
  36273. back: {
  36274. height: math.unit(4 + 5/12, "feet"),
  36275. name: "Back",
  36276. image: {
  36277. source: "./media/characters/scoop/back.svg",
  36278. extra: 1321/1152,
  36279. bottom: 32/1353
  36280. }
  36281. },
  36282. maw: {
  36283. height: math.unit(0.68, "feet"),
  36284. name: "Maw",
  36285. image: {
  36286. source: "./media/characters/scoop/maw.svg"
  36287. }
  36288. },
  36289. },
  36290. [
  36291. {
  36292. name: "Really Small",
  36293. height: math.unit(1, "mm")
  36294. },
  36295. {
  36296. name: "Micro",
  36297. height: math.unit(1, "inch")
  36298. },
  36299. {
  36300. name: "Normal",
  36301. height: math.unit(4 + 5/12, "feet"),
  36302. default: true
  36303. },
  36304. {
  36305. name: "Macro",
  36306. height: math.unit(200, "feet")
  36307. },
  36308. {
  36309. name: "Megamacro",
  36310. height: math.unit(3240, "feet")
  36311. },
  36312. {
  36313. name: "Teramacro",
  36314. height: math.unit(2500, "miles")
  36315. },
  36316. ]
  36317. ))
  36318. characterMakers.push(() => makeCharacter(
  36319. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36320. {
  36321. front: {
  36322. height: math.unit(15 + 7/12, "feet"),
  36323. weight: math.unit(1150, "tons"),
  36324. name: "Front",
  36325. image: {
  36326. source: "./media/characters/saphinara/front.svg",
  36327. extra: 1837/1643,
  36328. bottom: 84/1921
  36329. },
  36330. form: "normal",
  36331. default: true
  36332. },
  36333. side: {
  36334. height: math.unit(15 + 7/12, "feet"),
  36335. weight: math.unit(1150, "tons"),
  36336. name: "Side",
  36337. image: {
  36338. source: "./media/characters/saphinara/side.svg",
  36339. extra: 605/547,
  36340. bottom: 6/611
  36341. },
  36342. form: "normal"
  36343. },
  36344. back: {
  36345. height: math.unit(15 + 7/12, "feet"),
  36346. weight: math.unit(1150, "tons"),
  36347. name: "Back",
  36348. image: {
  36349. source: "./media/characters/saphinara/back.svg",
  36350. extra: 591/531,
  36351. bottom: 13/604
  36352. },
  36353. form: "normal"
  36354. },
  36355. frontTail: {
  36356. height: math.unit(15 + 7/12, "feet"),
  36357. weight: math.unit(1150, "tons"),
  36358. name: "Front (Full Tail)",
  36359. image: {
  36360. source: "./media/characters/saphinara/front-tail.svg",
  36361. extra: 2256/1630,
  36362. bottom: 261/2517
  36363. },
  36364. form: "normal"
  36365. },
  36366. insides: {
  36367. height: math.unit(11.92, "feet"),
  36368. name: "Insides",
  36369. image: {
  36370. source: "./media/characters/saphinara/insides.svg"
  36371. },
  36372. form: "normal"
  36373. },
  36374. head: {
  36375. height: math.unit(4.17, "feet"),
  36376. name: "Head",
  36377. image: {
  36378. source: "./media/characters/saphinara/head.svg"
  36379. },
  36380. form: "normal"
  36381. },
  36382. tongue: {
  36383. height: math.unit(4.60, "feet"),
  36384. name: "Tongue",
  36385. image: {
  36386. source: "./media/characters/saphinara/tongue.svg"
  36387. },
  36388. form: "normal"
  36389. },
  36390. headEnraged: {
  36391. height: math.unit(5.55, "feet"),
  36392. name: "Head (Enraged)",
  36393. image: {
  36394. source: "./media/characters/saphinara/head-enraged.svg"
  36395. },
  36396. form: "normal"
  36397. },
  36398. wings: {
  36399. height: math.unit(11.95, "feet"),
  36400. name: "Wings",
  36401. image: {
  36402. source: "./media/characters/saphinara/wings.svg"
  36403. },
  36404. form: "normal"
  36405. },
  36406. feathers: {
  36407. height: math.unit(8.92, "feet"),
  36408. name: "Feathers",
  36409. image: {
  36410. source: "./media/characters/saphinara/feathers.svg"
  36411. },
  36412. form: "normal"
  36413. },
  36414. shackles: {
  36415. height: math.unit(2, "feet"),
  36416. name: "Shackles",
  36417. image: {
  36418. source: "./media/characters/saphinara/shackles.svg"
  36419. },
  36420. form: "normal"
  36421. },
  36422. eyes: {
  36423. height: math.unit(1.331, "feet"),
  36424. name: "Eyes",
  36425. image: {
  36426. source: "./media/characters/saphinara/eyes.svg"
  36427. },
  36428. form: "normal"
  36429. },
  36430. eyesEnraged: {
  36431. height: math.unit(1.331, "feet"),
  36432. name: "Eyes (Enraged)",
  36433. image: {
  36434. source: "./media/characters/saphinara/eyes-enraged.svg"
  36435. },
  36436. form: "normal"
  36437. },
  36438. trueFormSide: {
  36439. height: math.unit(200, "feet"),
  36440. weight: math.unit(1e7, "tons"),
  36441. name: "Side",
  36442. image: {
  36443. source: "./media/characters/saphinara/true-form-side.svg",
  36444. extra: 1399/770,
  36445. bottom: 97/1496
  36446. },
  36447. form: "true-form",
  36448. default: true
  36449. },
  36450. trueFormMaw: {
  36451. height: math.unit(71.5, "feet"),
  36452. name: "Maw",
  36453. image: {
  36454. source: "./media/characters/saphinara/true-form-maw.svg",
  36455. extra: 2302/1453,
  36456. bottom: 0/2302
  36457. },
  36458. form: "true-form"
  36459. },
  36460. meowberusSide: {
  36461. height: math.unit(75, "feet"),
  36462. weight: math.unit(180000, "kg"),
  36463. preyCapacity: math.unit(50000, "people"),
  36464. name: "Side",
  36465. image: {
  36466. source: "./media/characters/saphinara/meowberus-side.svg",
  36467. extra: 1400/711,
  36468. bottom: 126/1526
  36469. },
  36470. form: "meowberus",
  36471. extraAttributes: {
  36472. "pawArea": {
  36473. name: "Paw Size",
  36474. power: 2,
  36475. type: "area",
  36476. base: math.unit(35, "m^2")
  36477. }
  36478. }
  36479. },
  36480. },
  36481. [
  36482. {
  36483. name: "Normal",
  36484. height: math.unit(15 + 7/12, "feet"),
  36485. default: true,
  36486. form: "normal"
  36487. },
  36488. {
  36489. name: "Angry",
  36490. height: math.unit(30 + 6/12, "feet"),
  36491. form: "normal"
  36492. },
  36493. {
  36494. name: "Enraged",
  36495. height: math.unit(102 + 1/12, "feet"),
  36496. form: "normal"
  36497. },
  36498. {
  36499. name: "True",
  36500. height: math.unit(200, "feet"),
  36501. default: true,
  36502. form: "true-form"
  36503. },
  36504. {
  36505. name: "Normal",
  36506. height: math.unit(75, "feet"),
  36507. default: true,
  36508. form: "meowberus"
  36509. },
  36510. ],
  36511. {
  36512. "normal": {
  36513. name: "Normal",
  36514. default: true
  36515. },
  36516. "true-form": {
  36517. name: "True Form"
  36518. },
  36519. "meowberus": {
  36520. name: "Meowberus",
  36521. },
  36522. }
  36523. ))
  36524. characterMakers.push(() => makeCharacter(
  36525. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36526. {
  36527. front: {
  36528. height: math.unit(6 + 8/12, "feet"),
  36529. weight: math.unit(300, "lb"),
  36530. name: "Front",
  36531. image: {
  36532. source: "./media/characters/jrain/front.svg",
  36533. extra: 3039/2865,
  36534. bottom: 399/3438
  36535. }
  36536. },
  36537. back: {
  36538. height: math.unit(6 + 8/12, "feet"),
  36539. weight: math.unit(300, "lb"),
  36540. name: "Back",
  36541. image: {
  36542. source: "./media/characters/jrain/back.svg",
  36543. extra: 3089/2938,
  36544. bottom: 172/3261
  36545. }
  36546. },
  36547. head: {
  36548. height: math.unit(2.14, "feet"),
  36549. name: "Head",
  36550. image: {
  36551. source: "./media/characters/jrain/head.svg"
  36552. }
  36553. },
  36554. maw: {
  36555. height: math.unit(1.77, "feet"),
  36556. name: "Maw",
  36557. image: {
  36558. source: "./media/characters/jrain/maw.svg"
  36559. }
  36560. },
  36561. leftHand: {
  36562. height: math.unit(1.1, "feet"),
  36563. name: "Left Hand",
  36564. image: {
  36565. source: "./media/characters/jrain/left-hand.svg"
  36566. }
  36567. },
  36568. rightHand: {
  36569. height: math.unit(1.1, "feet"),
  36570. name: "Right Hand",
  36571. image: {
  36572. source: "./media/characters/jrain/right-hand.svg"
  36573. }
  36574. },
  36575. eye: {
  36576. height: math.unit(0.35, "feet"),
  36577. name: "Eye",
  36578. image: {
  36579. source: "./media/characters/jrain/eye.svg"
  36580. }
  36581. },
  36582. },
  36583. [
  36584. {
  36585. name: "Normal",
  36586. height: math.unit(6 + 8/12, "feet"),
  36587. default: true
  36588. },
  36589. {
  36590. name: "Casually Large",
  36591. height: math.unit(25, "feet")
  36592. },
  36593. {
  36594. name: "Giant",
  36595. height: math.unit(100, "feet")
  36596. },
  36597. {
  36598. name: "Kaiju",
  36599. height: math.unit(300, "feet")
  36600. },
  36601. ]
  36602. ))
  36603. characterMakers.push(() => makeCharacter(
  36604. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36605. {
  36606. dragon: {
  36607. height: math.unit(5, "meters"),
  36608. name: "Dragon",
  36609. image: {
  36610. source: "./media/characters/sabrina/dragon.svg",
  36611. extra: 3670 / 2365,
  36612. bottom: 333 / 4003
  36613. }
  36614. },
  36615. gryphon: {
  36616. height: math.unit(3, "meters"),
  36617. name: "Gryphon",
  36618. image: {
  36619. source: "./media/characters/sabrina/gryphon.svg",
  36620. extra: 1576 / 945,
  36621. bottom: 71 / 1647
  36622. }
  36623. },
  36624. snake: {
  36625. height: math.unit(12, "meters"),
  36626. name: "Snake",
  36627. image: {
  36628. source: "./media/characters/sabrina/snake.svg",
  36629. extra: 1758 / 1320,
  36630. bottom: 186 / 1944
  36631. }
  36632. },
  36633. collar: {
  36634. height: math.unit(1.86, "meters"),
  36635. name: "Collar",
  36636. image: {
  36637. source: "./media/characters/sabrina/collar.svg"
  36638. }
  36639. },
  36640. eye: {
  36641. height: math.unit(0.53, "meters"),
  36642. name: "Eye",
  36643. image: {
  36644. source: "./media/characters/sabrina/eye.svg"
  36645. }
  36646. },
  36647. foot: {
  36648. height: math.unit(1.86, "meters"),
  36649. name: "Foot",
  36650. image: {
  36651. source: "./media/characters/sabrina/foot.svg"
  36652. }
  36653. },
  36654. hand: {
  36655. height: math.unit(1.32, "meters"),
  36656. name: "Hand",
  36657. image: {
  36658. source: "./media/characters/sabrina/hand.svg"
  36659. }
  36660. },
  36661. head: {
  36662. height: math.unit(2.44, "meters"),
  36663. name: "Head",
  36664. image: {
  36665. source: "./media/characters/sabrina/head.svg"
  36666. }
  36667. },
  36668. headAngry: {
  36669. height: math.unit(2.44, "meters"),
  36670. name: "Head (Angry))",
  36671. image: {
  36672. source: "./media/characters/sabrina/head-angry.svg"
  36673. }
  36674. },
  36675. maw: {
  36676. height: math.unit(1.65, "meters"),
  36677. name: "Maw",
  36678. image: {
  36679. source: "./media/characters/sabrina/maw.svg"
  36680. }
  36681. },
  36682. spikes: {
  36683. height: math.unit(1.69, "meters"),
  36684. name: "Spikes",
  36685. image: {
  36686. source: "./media/characters/sabrina/spikes.svg"
  36687. }
  36688. },
  36689. stomach: {
  36690. height: math.unit(1.15, "meters"),
  36691. name: "Stomach",
  36692. image: {
  36693. source: "./media/characters/sabrina/stomach.svg"
  36694. }
  36695. },
  36696. tongue: {
  36697. height: math.unit(1.27, "meters"),
  36698. name: "Tongue",
  36699. image: {
  36700. source: "./media/characters/sabrina/tongue.svg"
  36701. }
  36702. },
  36703. wingDorsal: {
  36704. height: math.unit(4.85, "meters"),
  36705. name: "Wing (Dorsal)",
  36706. image: {
  36707. source: "./media/characters/sabrina/wing-dorsal.svg"
  36708. }
  36709. },
  36710. wingVentral: {
  36711. height: math.unit(4.85, "meters"),
  36712. name: "Wing (Ventral)",
  36713. image: {
  36714. source: "./media/characters/sabrina/wing-ventral.svg"
  36715. }
  36716. },
  36717. },
  36718. [
  36719. {
  36720. name: "Normal",
  36721. height: math.unit(5, "meters"),
  36722. default: true
  36723. },
  36724. ]
  36725. ))
  36726. characterMakers.push(() => makeCharacter(
  36727. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36728. {
  36729. frontMaid: {
  36730. height: math.unit(5 + 5/12, "feet"),
  36731. weight: math.unit(130, "lb"),
  36732. name: "Front (Maid)",
  36733. image: {
  36734. source: "./media/characters/midnight-tales/front-maid.svg",
  36735. extra: 489/454,
  36736. bottom: 61/550
  36737. }
  36738. },
  36739. frontFormal: {
  36740. height: math.unit(5 + 5/12, "feet"),
  36741. weight: math.unit(130, "lb"),
  36742. name: "Front (Formal)",
  36743. image: {
  36744. source: "./media/characters/midnight-tales/front-formal.svg",
  36745. extra: 489/454,
  36746. bottom: 61/550
  36747. }
  36748. },
  36749. back: {
  36750. height: math.unit(5 + 5/12, "feet"),
  36751. weight: math.unit(130, "lb"),
  36752. name: "Back",
  36753. image: {
  36754. source: "./media/characters/midnight-tales/back.svg",
  36755. extra: 498/456,
  36756. bottom: 33/531
  36757. }
  36758. },
  36759. frontBeast: {
  36760. height: math.unit(40, "feet"),
  36761. weight: math.unit(64000, "lb"),
  36762. name: "Front (Beast)",
  36763. image: {
  36764. source: "./media/characters/midnight-tales/front-beast.svg",
  36765. extra: 927/860,
  36766. bottom: 53/980
  36767. }
  36768. },
  36769. backBeast: {
  36770. height: math.unit(40, "feet"),
  36771. weight: math.unit(64000, "lb"),
  36772. name: "Back (Beast)",
  36773. image: {
  36774. source: "./media/characters/midnight-tales/back-beast.svg",
  36775. extra: 929/855,
  36776. bottom: 16/945
  36777. }
  36778. },
  36779. footBeast: {
  36780. height: math.unit(6.7, "feet"),
  36781. name: "Foot (Beast)",
  36782. image: {
  36783. source: "./media/characters/midnight-tales/foot-beast.svg"
  36784. }
  36785. },
  36786. headBeast: {
  36787. height: math.unit(8, "feet"),
  36788. name: "Head (Beast)",
  36789. image: {
  36790. source: "./media/characters/midnight-tales/head-beast.svg"
  36791. }
  36792. },
  36793. },
  36794. [
  36795. {
  36796. name: "Normal",
  36797. height: math.unit(5 + 5 / 12, "feet"),
  36798. default: true
  36799. },
  36800. {
  36801. name: "Macro",
  36802. height: math.unit(25, "feet")
  36803. },
  36804. ]
  36805. ))
  36806. characterMakers.push(() => makeCharacter(
  36807. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36808. {
  36809. front: {
  36810. height: math.unit(5 + 10/12, "feet"),
  36811. name: "Front",
  36812. image: {
  36813. source: "./media/characters/argon/front.svg",
  36814. extra: 2009/1935,
  36815. bottom: 118/2127
  36816. }
  36817. },
  36818. back: {
  36819. height: math.unit(5 + 10/12, "feet"),
  36820. name: "Back",
  36821. image: {
  36822. source: "./media/characters/argon/back.svg",
  36823. extra: 2047/1992,
  36824. bottom: 20/2067
  36825. }
  36826. },
  36827. frontDressed: {
  36828. height: math.unit(5 + 10/12, "feet"),
  36829. name: "Front (Dressed)",
  36830. image: {
  36831. source: "./media/characters/argon/front-dressed.svg",
  36832. extra: 2009/1935,
  36833. bottom: 118/2127
  36834. }
  36835. },
  36836. },
  36837. [
  36838. {
  36839. name: "Normal",
  36840. height: math.unit(5 + 10/12, "feet"),
  36841. default: true
  36842. },
  36843. ]
  36844. ))
  36845. characterMakers.push(() => makeCharacter(
  36846. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36847. {
  36848. front: {
  36849. height: math.unit(8 + 6/12, "feet"),
  36850. weight: math.unit(1150, "lb"),
  36851. name: "Front",
  36852. image: {
  36853. source: "./media/characters/kichi/front.svg",
  36854. extra: 1267/1164,
  36855. bottom: 61/1328
  36856. }
  36857. },
  36858. back: {
  36859. height: math.unit(8 + 6/12, "feet"),
  36860. weight: math.unit(1150, "lb"),
  36861. name: "Back",
  36862. image: {
  36863. source: "./media/characters/kichi/back.svg",
  36864. extra: 1273/1166,
  36865. bottom: 33/1306
  36866. }
  36867. },
  36868. },
  36869. [
  36870. {
  36871. name: "Normal",
  36872. height: math.unit(8 + 6/12, "feet"),
  36873. default: true
  36874. },
  36875. ]
  36876. ))
  36877. characterMakers.push(() => makeCharacter(
  36878. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36879. {
  36880. front: {
  36881. height: math.unit(6, "feet"),
  36882. weight: math.unit(210, "lb"),
  36883. name: "Front",
  36884. image: {
  36885. source: "./media/characters/manetel-greyscale/front.svg",
  36886. extra: 350/312,
  36887. bottom: 8/358
  36888. }
  36889. },
  36890. },
  36891. [
  36892. {
  36893. name: "Micro",
  36894. height: math.unit(2, "inches")
  36895. },
  36896. {
  36897. name: "Normal",
  36898. height: math.unit(6, "feet"),
  36899. default: true
  36900. },
  36901. {
  36902. name: "Minimacro",
  36903. height: math.unit(17, "feet")
  36904. },
  36905. {
  36906. name: "Macro",
  36907. height: math.unit(117, "feet")
  36908. },
  36909. ]
  36910. ))
  36911. characterMakers.push(() => makeCharacter(
  36912. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36913. {
  36914. side: {
  36915. height: math.unit(5 + 1/12, "feet"),
  36916. weight: math.unit(418, "lb"),
  36917. name: "Side",
  36918. image: {
  36919. source: "./media/characters/softpurr/side.svg",
  36920. extra: 1993/1945,
  36921. bottom: 134/2127
  36922. }
  36923. },
  36924. front: {
  36925. height: math.unit(5 + 1/12, "feet"),
  36926. weight: math.unit(418, "lb"),
  36927. name: "Front",
  36928. image: {
  36929. source: "./media/characters/softpurr/front.svg",
  36930. extra: 1950/1856,
  36931. bottom: 174/2124
  36932. }
  36933. },
  36934. paw: {
  36935. height: math.unit(1, "feet"),
  36936. name: "Paw",
  36937. image: {
  36938. source: "./media/characters/softpurr/paw.svg"
  36939. }
  36940. },
  36941. },
  36942. [
  36943. {
  36944. name: "Normal",
  36945. height: math.unit(5 + 1/12, "feet"),
  36946. default: true
  36947. },
  36948. ]
  36949. ))
  36950. characterMakers.push(() => makeCharacter(
  36951. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36952. {
  36953. front: {
  36954. height: math.unit(260, "meters"),
  36955. name: "Front",
  36956. image: {
  36957. source: "./media/characters/anahita/front.svg",
  36958. extra: 665/635,
  36959. bottom: 89/754
  36960. }
  36961. },
  36962. },
  36963. [
  36964. {
  36965. name: "Macro",
  36966. height: math.unit(260, "meters"),
  36967. default: true
  36968. },
  36969. ]
  36970. ))
  36971. characterMakers.push(() => makeCharacter(
  36972. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36973. {
  36974. front: {
  36975. height: math.unit(4 + 10/12, "feet"),
  36976. weight: math.unit(160, "lb"),
  36977. name: "Front",
  36978. image: {
  36979. source: "./media/characters/chip-mouse/front.svg",
  36980. extra: 3528/3408,
  36981. bottom: 0/3528
  36982. }
  36983. },
  36984. frontNsfw: {
  36985. height: math.unit(4 + 10/12, "feet"),
  36986. weight: math.unit(160, "lb"),
  36987. name: "Front (NSFW)",
  36988. image: {
  36989. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36990. extra: 3528/3408,
  36991. bottom: 0/3528
  36992. }
  36993. },
  36994. },
  36995. [
  36996. {
  36997. name: "Normal",
  36998. height: math.unit(4 + 10/12, "feet"),
  36999. default: true
  37000. },
  37001. ]
  37002. ))
  37003. characterMakers.push(() => makeCharacter(
  37004. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37005. {
  37006. side: {
  37007. height: math.unit(10, "feet"),
  37008. weight: math.unit(14000, "lb"),
  37009. name: "Side",
  37010. image: {
  37011. source: "./media/characters/kremm/side.svg",
  37012. extra: 1390/1053,
  37013. bottom: 90/1480
  37014. }
  37015. },
  37016. gut: {
  37017. height: math.unit(5.8, "feet"),
  37018. name: "Gut",
  37019. image: {
  37020. source: "./media/characters/kremm/gut.svg"
  37021. }
  37022. },
  37023. ass: {
  37024. height: math.unit(6.1, "feet"),
  37025. name: "Ass",
  37026. image: {
  37027. source: "./media/characters/kremm/ass.svg"
  37028. }
  37029. },
  37030. jaws: {
  37031. height: math.unit(2.2, "feet"),
  37032. name: "Jaws",
  37033. image: {
  37034. source: "./media/characters/kremm/jaws.svg"
  37035. }
  37036. },
  37037. dick: {
  37038. height: math.unit(4.26, "feet"),
  37039. name: "Dick",
  37040. image: {
  37041. source: "./media/characters/kremm/dick.svg"
  37042. }
  37043. },
  37044. },
  37045. [
  37046. {
  37047. name: "Normal",
  37048. height: math.unit(10, "feet"),
  37049. default: true
  37050. },
  37051. ]
  37052. ))
  37053. characterMakers.push(() => makeCharacter(
  37054. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37055. {
  37056. front: {
  37057. height: math.unit(30, "stories"),
  37058. name: "Front",
  37059. image: {
  37060. source: "./media/characters/kai/front.svg",
  37061. extra: 1892/1718,
  37062. bottom: 162/2054
  37063. }
  37064. },
  37065. },
  37066. [
  37067. {
  37068. name: "Macro",
  37069. height: math.unit(30, "stories"),
  37070. default: true
  37071. },
  37072. ]
  37073. ))
  37074. characterMakers.push(() => makeCharacter(
  37075. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37076. {
  37077. front: {
  37078. height: math.unit(6 + 4/12, "feet"),
  37079. weight: math.unit(145, "lb"),
  37080. name: "Front",
  37081. image: {
  37082. source: "./media/characters/sykes/front.svg",
  37083. extra: 1321 / 1187,
  37084. bottom: 66 / 1387
  37085. }
  37086. },
  37087. back: {
  37088. height: math.unit(6 + 4/12, "feet"),
  37089. weight: math.unit(145, "lb"),
  37090. name: "Back",
  37091. image: {
  37092. source: "./media/characters/sykes/back.svg",
  37093. extra: 1326/1181,
  37094. bottom: 31/1357
  37095. }
  37096. },
  37097. traditionalOutfit: {
  37098. height: math.unit(6 + 4/12, "feet"),
  37099. weight: math.unit(145, "lb"),
  37100. name: "Traditional Outfit",
  37101. image: {
  37102. source: "./media/characters/sykes/traditional-outfit.svg",
  37103. extra: 1321 / 1187,
  37104. bottom: 66 / 1387
  37105. }
  37106. },
  37107. adventureOutfit: {
  37108. height: math.unit(6 + 4/12, "feet"),
  37109. weight: math.unit(145, "lb"),
  37110. name: "Adventure Outfit",
  37111. image: {
  37112. source: "./media/characters/sykes/adventure-outfit.svg",
  37113. extra: 1321 / 1187,
  37114. bottom: 66 / 1387
  37115. }
  37116. },
  37117. handLeft: {
  37118. height: math.unit(0.9, "feet"),
  37119. name: "Hand (Left)",
  37120. image: {
  37121. source: "./media/characters/sykes/hand-left.svg"
  37122. }
  37123. },
  37124. handRight: {
  37125. height: math.unit(0.839, "feet"),
  37126. name: "Hand (Right)",
  37127. image: {
  37128. source: "./media/characters/sykes/hand-right.svg"
  37129. }
  37130. },
  37131. leftFoot: {
  37132. height: math.unit(1.2, "feet"),
  37133. name: "Foot (Left)",
  37134. image: {
  37135. source: "./media/characters/sykes/foot-left.svg"
  37136. }
  37137. },
  37138. rightFoot: {
  37139. height: math.unit(1.2, "feet"),
  37140. name: "Foot (Right)",
  37141. image: {
  37142. source: "./media/characters/sykes/foot-right.svg"
  37143. }
  37144. },
  37145. maw: {
  37146. height: math.unit(1.93, "feet"),
  37147. name: "Maw",
  37148. image: {
  37149. source: "./media/characters/sykes/maw.svg"
  37150. }
  37151. },
  37152. teeth: {
  37153. height: math.unit(0.51, "feet"),
  37154. name: "Teeth",
  37155. image: {
  37156. source: "./media/characters/sykes/teeth.svg"
  37157. }
  37158. },
  37159. tongue: {
  37160. height: math.unit(2.13, "feet"),
  37161. name: "Tongue",
  37162. image: {
  37163. source: "./media/characters/sykes/tongue.svg"
  37164. }
  37165. },
  37166. uvula: {
  37167. height: math.unit(0.16, "feet"),
  37168. name: "Uvula",
  37169. image: {
  37170. source: "./media/characters/sykes/uvula.svg"
  37171. }
  37172. },
  37173. collar: {
  37174. height: math.unit(0.287, "feet"),
  37175. name: "Collar",
  37176. image: {
  37177. source: "./media/characters/sykes/collar.svg"
  37178. }
  37179. },
  37180. tail: {
  37181. height: math.unit(3.8, "feet"),
  37182. name: "Tail",
  37183. image: {
  37184. source: "./media/characters/sykes/tail.svg"
  37185. }
  37186. },
  37187. },
  37188. [
  37189. {
  37190. name: "Shrunken",
  37191. height: math.unit(5, "inches")
  37192. },
  37193. {
  37194. name: "Normal",
  37195. height: math.unit(6 + 4 / 12, "feet"),
  37196. default: true
  37197. },
  37198. {
  37199. name: "Big",
  37200. height: math.unit(15, "feet")
  37201. },
  37202. ]
  37203. ))
  37204. characterMakers.push(() => makeCharacter(
  37205. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37206. {
  37207. front: {
  37208. height: math.unit(5 + 8/12, "feet"),
  37209. weight: math.unit(190, "lb"),
  37210. name: "Front",
  37211. image: {
  37212. source: "./media/characters/oven-otter/front.svg",
  37213. extra: 1809/1740,
  37214. bottom: 181/1990
  37215. }
  37216. },
  37217. back: {
  37218. height: math.unit(5 + 8/12, "feet"),
  37219. weight: math.unit(190, "lb"),
  37220. name: "Back",
  37221. image: {
  37222. source: "./media/characters/oven-otter/back.svg",
  37223. extra: 1709/1635,
  37224. bottom: 118/1827
  37225. }
  37226. },
  37227. hand: {
  37228. height: math.unit(1.07, "feet"),
  37229. name: "Hand",
  37230. image: {
  37231. source: "./media/characters/oven-otter/hand.svg"
  37232. }
  37233. },
  37234. beans: {
  37235. height: math.unit(1.74, "feet"),
  37236. name: "Beans",
  37237. image: {
  37238. source: "./media/characters/oven-otter/beans.svg"
  37239. }
  37240. },
  37241. },
  37242. [
  37243. {
  37244. name: "Micro",
  37245. height: math.unit(0.5, "inches")
  37246. },
  37247. {
  37248. name: "Normal",
  37249. height: math.unit(5 + 8/12, "feet"),
  37250. default: true
  37251. },
  37252. {
  37253. name: "Macro",
  37254. height: math.unit(250, "feet")
  37255. },
  37256. {
  37257. name: "Really High",
  37258. height: math.unit(420, "feet")
  37259. },
  37260. ]
  37261. ))
  37262. characterMakers.push(() => makeCharacter(
  37263. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37264. {
  37265. front: {
  37266. height: math.unit(5, "meters"),
  37267. weight: math.unit(292000000000000, "kg"),
  37268. name: "Front",
  37269. image: {
  37270. source: "./media/characters/devourer/front.svg",
  37271. extra: 1800/1733,
  37272. bottom: 211/2011
  37273. }
  37274. },
  37275. maw: {
  37276. height: math.unit(1.1, "meter"),
  37277. name: "Maw",
  37278. image: {
  37279. source: "./media/characters/devourer/maw.svg"
  37280. }
  37281. },
  37282. },
  37283. [
  37284. {
  37285. name: "Small",
  37286. height: math.unit(3, "meters")
  37287. },
  37288. {
  37289. name: "Large",
  37290. height: math.unit(5, "meters"),
  37291. default: true
  37292. },
  37293. ]
  37294. ))
  37295. characterMakers.push(() => makeCharacter(
  37296. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37297. {
  37298. front: {
  37299. height: math.unit(6, "feet"),
  37300. weight: math.unit(400, "lb"),
  37301. name: "Front",
  37302. image: {
  37303. source: "./media/characters/ellarby/front.svg",
  37304. extra: 1909/1763,
  37305. bottom: 80/1989
  37306. }
  37307. },
  37308. back: {
  37309. height: math.unit(6, "feet"),
  37310. weight: math.unit(400, "lb"),
  37311. name: "Back",
  37312. image: {
  37313. source: "./media/characters/ellarby/back.svg",
  37314. extra: 1914/1784,
  37315. bottom: 172/2086
  37316. }
  37317. },
  37318. },
  37319. [
  37320. {
  37321. name: "Mischief",
  37322. height: math.unit(18, "inches")
  37323. },
  37324. {
  37325. name: "Trouble",
  37326. height: math.unit(12, "feet")
  37327. },
  37328. {
  37329. name: "Havoc",
  37330. height: math.unit(200, "feet"),
  37331. default: true
  37332. },
  37333. {
  37334. name: "Pandemonium",
  37335. height: math.unit(1, "mile")
  37336. },
  37337. {
  37338. name: "Catastrophe",
  37339. height: math.unit(100, "miles")
  37340. },
  37341. ]
  37342. ))
  37343. characterMakers.push(() => makeCharacter(
  37344. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37345. {
  37346. front: {
  37347. height: math.unit(4.7, "meters"),
  37348. weight: math.unit(6500, "kg"),
  37349. name: "Front",
  37350. image: {
  37351. source: "./media/characters/vex/front.svg",
  37352. extra: 1288/1140,
  37353. bottom: 100/1388
  37354. }
  37355. },
  37356. },
  37357. [
  37358. {
  37359. name: "Normal",
  37360. height: math.unit(4.7, "meters"),
  37361. default: true
  37362. },
  37363. ]
  37364. ))
  37365. characterMakers.push(() => makeCharacter(
  37366. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37367. {
  37368. normal: {
  37369. height: math.unit(6, "feet"),
  37370. weight: math.unit(350, "lb"),
  37371. name: "Normal",
  37372. image: {
  37373. source: "./media/characters/teshy/normal.svg",
  37374. extra: 1795/1735,
  37375. bottom: 16/1811
  37376. }
  37377. },
  37378. monsterFront: {
  37379. height: math.unit(12, "feet"),
  37380. weight: math.unit(4700, "lb"),
  37381. name: "Monster (Front)",
  37382. image: {
  37383. source: "./media/characters/teshy/monster-front.svg",
  37384. extra: 2042/2034,
  37385. bottom: 128/2170
  37386. }
  37387. },
  37388. monsterSide: {
  37389. height: math.unit(12, "feet"),
  37390. weight: math.unit(4700, "lb"),
  37391. name: "Monster (Side)",
  37392. image: {
  37393. source: "./media/characters/teshy/monster-side.svg",
  37394. extra: 2067/2056,
  37395. bottom: 70/2137
  37396. }
  37397. },
  37398. monsterBack: {
  37399. height: math.unit(12, "feet"),
  37400. weight: math.unit(4700, "lb"),
  37401. name: "Monster (Back)",
  37402. image: {
  37403. source: "./media/characters/teshy/monster-back.svg",
  37404. extra: 1921/1914,
  37405. bottom: 171/2092
  37406. }
  37407. },
  37408. },
  37409. [
  37410. {
  37411. name: "Normal",
  37412. height: math.unit(6, "feet"),
  37413. default: true
  37414. },
  37415. ]
  37416. ))
  37417. characterMakers.push(() => makeCharacter(
  37418. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37419. {
  37420. front: {
  37421. height: math.unit(6, "feet"),
  37422. name: "Front",
  37423. image: {
  37424. source: "./media/characters/ramey/front.svg",
  37425. extra: 790/787,
  37426. bottom: 27/817
  37427. }
  37428. },
  37429. },
  37430. [
  37431. {
  37432. name: "Normal",
  37433. height: math.unit(6, "feet"),
  37434. default: true
  37435. },
  37436. ]
  37437. ))
  37438. characterMakers.push(() => makeCharacter(
  37439. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37440. {
  37441. front: {
  37442. height: math.unit(5 + 5/12, "feet"),
  37443. weight: math.unit(120, "lb"),
  37444. name: "Front",
  37445. image: {
  37446. source: "./media/characters/phirae/front.svg",
  37447. extra: 2491/2436,
  37448. bottom: 38/2529
  37449. }
  37450. },
  37451. },
  37452. [
  37453. {
  37454. name: "Normal",
  37455. height: math.unit(5 + 5/12, "feet"),
  37456. default: true
  37457. },
  37458. ]
  37459. ))
  37460. characterMakers.push(() => makeCharacter(
  37461. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37462. {
  37463. front: {
  37464. height: math.unit(5 + 3/12, "feet"),
  37465. name: "Front",
  37466. image: {
  37467. source: "./media/characters/stagglas/front.svg",
  37468. extra: 962/882,
  37469. bottom: 53/1015
  37470. }
  37471. },
  37472. feral: {
  37473. height: math.unit(335, "cm"),
  37474. name: "Feral",
  37475. image: {
  37476. source: "./media/characters/stagglas/feral.svg",
  37477. extra: 1732/1090,
  37478. bottom: 48/1780
  37479. }
  37480. },
  37481. },
  37482. [
  37483. {
  37484. name: "Normal",
  37485. height: math.unit(5 + 3/12, "feet"),
  37486. default: true
  37487. },
  37488. ]
  37489. ))
  37490. characterMakers.push(() => makeCharacter(
  37491. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37492. {
  37493. front: {
  37494. height: math.unit(5 + 4/12, "feet"),
  37495. weight: math.unit(145, "lb"),
  37496. name: "Front",
  37497. image: {
  37498. source: "./media/characters/starra/front.svg",
  37499. extra: 1790/1691,
  37500. bottom: 91/1881
  37501. }
  37502. },
  37503. },
  37504. [
  37505. {
  37506. name: "Normal",
  37507. height: math.unit(5 + 4/12, "feet"),
  37508. default: true
  37509. },
  37510. ]
  37511. ))
  37512. characterMakers.push(() => makeCharacter(
  37513. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37514. {
  37515. front: {
  37516. height: math.unit(3.5, "meters"),
  37517. name: "Front",
  37518. image: {
  37519. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37520. extra: 1248/972,
  37521. bottom: 38/1286
  37522. }
  37523. },
  37524. },
  37525. [
  37526. {
  37527. name: "Normal",
  37528. height: math.unit(3.5, "meters"),
  37529. default: true
  37530. },
  37531. ]
  37532. ))
  37533. characterMakers.push(() => makeCharacter(
  37534. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37535. {
  37536. side: {
  37537. height: math.unit(8 + 2/12, "feet"),
  37538. weight: math.unit(1240, "lb"),
  37539. name: "Side",
  37540. image: {
  37541. source: "./media/characters/mika-valentine/side.svg",
  37542. extra: 2670/2501,
  37543. bottom: 250/2920
  37544. }
  37545. },
  37546. },
  37547. [
  37548. {
  37549. name: "Normal",
  37550. height: math.unit(8 + 2/12, "feet"),
  37551. default: true
  37552. },
  37553. ]
  37554. ))
  37555. characterMakers.push(() => makeCharacter(
  37556. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37557. {
  37558. front: {
  37559. height: math.unit(7 + 2/12, "feet"),
  37560. name: "Front",
  37561. image: {
  37562. source: "./media/characters/xoltol/front.svg",
  37563. extra: 2212/2124,
  37564. bottom: 84/2296
  37565. }
  37566. },
  37567. side: {
  37568. height: math.unit(7 + 2/12, "feet"),
  37569. name: "Side",
  37570. image: {
  37571. source: "./media/characters/xoltol/side.svg",
  37572. extra: 2273/2197,
  37573. bottom: 26/2299
  37574. }
  37575. },
  37576. hand: {
  37577. height: math.unit(2.5, "feet"),
  37578. name: "Hand",
  37579. image: {
  37580. source: "./media/characters/xoltol/hand.svg"
  37581. }
  37582. },
  37583. },
  37584. [
  37585. {
  37586. name: "Small-ish",
  37587. height: math.unit(5 + 11/12, "feet")
  37588. },
  37589. {
  37590. name: "Normal",
  37591. height: math.unit(7 + 2/12, "feet")
  37592. },
  37593. {
  37594. name: "\"Macro\"",
  37595. height: math.unit(14 + 9/12, "feet"),
  37596. default: true
  37597. },
  37598. {
  37599. name: "Alternate Height",
  37600. height: math.unit(20, "feet")
  37601. },
  37602. {
  37603. name: "Actually Macro",
  37604. height: math.unit(100, "feet")
  37605. },
  37606. ]
  37607. ))
  37608. characterMakers.push(() => makeCharacter(
  37609. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37610. {
  37611. front: {
  37612. height: math.unit(5 + 2/12, "feet"),
  37613. weight: math.unit(75, "kg"),
  37614. name: "Front",
  37615. image: {
  37616. source: "./media/characters/kotetsu-redwood/front.svg",
  37617. extra: 1053/942,
  37618. bottom: 60/1113
  37619. }
  37620. },
  37621. },
  37622. [
  37623. {
  37624. name: "Normal",
  37625. height: math.unit(5 + 2/12, "feet"),
  37626. default: true
  37627. },
  37628. ]
  37629. ))
  37630. characterMakers.push(() => makeCharacter(
  37631. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37632. {
  37633. front: {
  37634. height: math.unit(2.4, "meters"),
  37635. weight: math.unit(125, "kg"),
  37636. name: "Front",
  37637. image: {
  37638. source: "./media/characters/lilith/front.svg",
  37639. extra: 1590/1513,
  37640. bottom: 203/1793
  37641. }
  37642. },
  37643. },
  37644. [
  37645. {
  37646. name: "Humanoid",
  37647. height: math.unit(2.4, "meters")
  37648. },
  37649. {
  37650. name: "Normal",
  37651. height: math.unit(6, "meters"),
  37652. default: true
  37653. },
  37654. {
  37655. name: "Largest",
  37656. height: math.unit(55, "meters")
  37657. },
  37658. ]
  37659. ))
  37660. characterMakers.push(() => makeCharacter(
  37661. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37662. {
  37663. front: {
  37664. height: math.unit(8 + 4/12, "feet"),
  37665. weight: math.unit(535, "lb"),
  37666. name: "Front",
  37667. image: {
  37668. source: "./media/characters/beh'kah-bolger/front.svg",
  37669. extra: 1660/1603,
  37670. bottom: 37/1697
  37671. }
  37672. },
  37673. },
  37674. [
  37675. {
  37676. name: "Normal",
  37677. height: math.unit(8 + 4/12, "feet"),
  37678. default: true
  37679. },
  37680. {
  37681. name: "Kaiju",
  37682. height: math.unit(250, "feet")
  37683. },
  37684. {
  37685. name: "Still Growing",
  37686. height: math.unit(10, "miles")
  37687. },
  37688. {
  37689. name: "Continental",
  37690. height: math.unit(5000, "miles")
  37691. },
  37692. {
  37693. name: "Final Form",
  37694. height: math.unit(2500000, "miles")
  37695. },
  37696. ]
  37697. ))
  37698. characterMakers.push(() => makeCharacter(
  37699. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37700. {
  37701. front: {
  37702. height: math.unit(7 + 2/12, "feet"),
  37703. weight: math.unit(230, "kg"),
  37704. name: "Front",
  37705. image: {
  37706. source: "./media/characters/tatyana-milewska/front.svg",
  37707. extra: 1199/1150,
  37708. bottom: 86/1285
  37709. }
  37710. },
  37711. },
  37712. [
  37713. {
  37714. name: "Normal",
  37715. height: math.unit(7 + 2/12, "feet"),
  37716. default: true
  37717. },
  37718. {
  37719. name: "Big",
  37720. height: math.unit(12, "feet")
  37721. },
  37722. {
  37723. name: "Minimacro",
  37724. height: math.unit(20, "feet")
  37725. },
  37726. {
  37727. name: "Macro",
  37728. height: math.unit(120, "feet")
  37729. },
  37730. ]
  37731. ))
  37732. characterMakers.push(() => makeCharacter(
  37733. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37734. {
  37735. front: {
  37736. height: math.unit(7 + 8/12, "feet"),
  37737. weight: math.unit(152, "kg"),
  37738. name: "Front",
  37739. image: {
  37740. source: "./media/characters/helen-arri/front.svg",
  37741. extra: 440/423,
  37742. bottom: 14/454
  37743. }
  37744. },
  37745. back: {
  37746. height: math.unit(7 + 8/12, "feet"),
  37747. weight: math.unit(152, "kg"),
  37748. name: "Back",
  37749. image: {
  37750. source: "./media/characters/helen-arri/back.svg",
  37751. extra: 443/426,
  37752. bottom: 8/451
  37753. }
  37754. },
  37755. },
  37756. [
  37757. {
  37758. name: "Normal",
  37759. height: math.unit(7 + 8/12, "feet"),
  37760. default: true
  37761. },
  37762. {
  37763. name: "Big",
  37764. height: math.unit(14, "feet")
  37765. },
  37766. {
  37767. name: "Minimacro",
  37768. height: math.unit(24, "feet")
  37769. },
  37770. {
  37771. name: "Macro",
  37772. height: math.unit(140, "feet")
  37773. },
  37774. ]
  37775. ))
  37776. characterMakers.push(() => makeCharacter(
  37777. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37778. {
  37779. front: {
  37780. height: math.unit(6, "meters"),
  37781. name: "Front",
  37782. image: {
  37783. source: "./media/characters/ehanu-rehu/front.svg",
  37784. extra: 1800/1800,
  37785. bottom: 59/1859
  37786. }
  37787. },
  37788. },
  37789. [
  37790. {
  37791. name: "Normal",
  37792. height: math.unit(6, "meters"),
  37793. default: true
  37794. },
  37795. ]
  37796. ))
  37797. characterMakers.push(() => makeCharacter(
  37798. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37799. {
  37800. front: {
  37801. height: math.unit(7 + 3/12, "feet"),
  37802. name: "Front",
  37803. image: {
  37804. source: "./media/characters/renholder/front.svg",
  37805. extra: 3096/2960,
  37806. bottom: 250/3346
  37807. }
  37808. },
  37809. },
  37810. [
  37811. {
  37812. name: "Normal Bat",
  37813. height: math.unit(7 + 3/12, "feet"),
  37814. default: true
  37815. },
  37816. {
  37817. name: "Slightly Tall Bat",
  37818. height: math.unit(100, "feet")
  37819. },
  37820. {
  37821. name: "Big Bat",
  37822. height: math.unit(1000, "feet")
  37823. },
  37824. {
  37825. name: "City-Sized Bat",
  37826. height: math.unit(200000, "feet")
  37827. },
  37828. {
  37829. name: "Bigger Bat",
  37830. height: math.unit(10000, "miles")
  37831. },
  37832. {
  37833. name: "Solar Sized Bat",
  37834. height: math.unit(100, "AU")
  37835. },
  37836. {
  37837. name: "Galactic Bat",
  37838. height: math.unit(200000, "lightyears")
  37839. },
  37840. {
  37841. name: "Universally Known Bat",
  37842. height: math.unit(1, "universe")
  37843. },
  37844. ]
  37845. ))
  37846. characterMakers.push(() => makeCharacter(
  37847. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37848. {
  37849. front: {
  37850. height: math.unit(6 + 11/12, "feet"),
  37851. weight: math.unit(250, "lb"),
  37852. name: "Front",
  37853. image: {
  37854. source: "./media/characters/cookiecat/front.svg",
  37855. extra: 893/827,
  37856. bottom: 14/907
  37857. }
  37858. },
  37859. },
  37860. [
  37861. {
  37862. name: "Micro",
  37863. height: math.unit(3, "inches")
  37864. },
  37865. {
  37866. name: "Normal",
  37867. height: math.unit(6 + 11/12, "feet"),
  37868. default: true
  37869. },
  37870. {
  37871. name: "Macro",
  37872. height: math.unit(100, "feet")
  37873. },
  37874. {
  37875. name: "Macro+",
  37876. height: math.unit(404, "feet")
  37877. },
  37878. {
  37879. name: "Megamacro",
  37880. height: math.unit(165, "miles")
  37881. },
  37882. {
  37883. name: "Planetary",
  37884. height: math.unit(4600, "miles")
  37885. },
  37886. ]
  37887. ))
  37888. characterMakers.push(() => makeCharacter(
  37889. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37890. {
  37891. front: {
  37892. height: math.unit(10 + 3/12, "feet"),
  37893. weight: math.unit(1500, "lb"),
  37894. name: "Front",
  37895. image: {
  37896. source: "./media/characters/tux-kusanagi/front.svg",
  37897. extra: 944/840,
  37898. bottom: 39/983
  37899. }
  37900. },
  37901. back: {
  37902. height: math.unit(10 + 3/12, "feet"),
  37903. weight: math.unit(1500, "lb"),
  37904. name: "Back",
  37905. image: {
  37906. source: "./media/characters/tux-kusanagi/back.svg",
  37907. extra: 941/842,
  37908. bottom: 28/969
  37909. }
  37910. },
  37911. rump: {
  37912. height: math.unit(5.25, "feet"),
  37913. name: "Rump",
  37914. image: {
  37915. source: "./media/characters/tux-kusanagi/rump.svg"
  37916. }
  37917. },
  37918. beak: {
  37919. height: math.unit(1.54, "feet"),
  37920. name: "Beak",
  37921. image: {
  37922. source: "./media/characters/tux-kusanagi/beak.svg"
  37923. }
  37924. },
  37925. },
  37926. [
  37927. {
  37928. name: "Normal",
  37929. height: math.unit(10 + 3/12, "feet"),
  37930. default: true
  37931. },
  37932. ]
  37933. ))
  37934. characterMakers.push(() => makeCharacter(
  37935. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37936. {
  37937. front: {
  37938. height: math.unit(58, "feet"),
  37939. weight: math.unit(200, "tons"),
  37940. name: "Front",
  37941. image: {
  37942. source: "./media/characters/uzarmazari/front.svg",
  37943. extra: 1575/1455,
  37944. bottom: 152/1727
  37945. }
  37946. },
  37947. back: {
  37948. height: math.unit(58, "feet"),
  37949. weight: math.unit(200, "tons"),
  37950. name: "Back",
  37951. image: {
  37952. source: "./media/characters/uzarmazari/back.svg",
  37953. extra: 1585/1510,
  37954. bottom: 157/1742
  37955. }
  37956. },
  37957. head: {
  37958. height: math.unit(26, "feet"),
  37959. name: "Head",
  37960. image: {
  37961. source: "./media/characters/uzarmazari/head.svg"
  37962. }
  37963. },
  37964. },
  37965. [
  37966. {
  37967. name: "Normal",
  37968. height: math.unit(58, "feet"),
  37969. default: true
  37970. },
  37971. ]
  37972. ))
  37973. characterMakers.push(() => makeCharacter(
  37974. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37975. {
  37976. side: {
  37977. height: math.unit(15, "feet"),
  37978. name: "Side",
  37979. image: {
  37980. source: "./media/characters/akitu/side.svg",
  37981. extra: 1421/1321,
  37982. bottom: 157/1578
  37983. }
  37984. },
  37985. front: {
  37986. height: math.unit(15, "feet"),
  37987. name: "Front",
  37988. image: {
  37989. source: "./media/characters/akitu/front.svg",
  37990. extra: 1435/1326,
  37991. bottom: 232/1667
  37992. }
  37993. },
  37994. },
  37995. [
  37996. {
  37997. name: "Normal",
  37998. height: math.unit(15, "feet"),
  37999. default: true
  38000. },
  38001. ]
  38002. ))
  38003. characterMakers.push(() => makeCharacter(
  38004. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38005. {
  38006. front: {
  38007. height: math.unit(10 + 8/12, "feet"),
  38008. name: "Front",
  38009. image: {
  38010. source: "./media/characters/azalie-croixland/front.svg",
  38011. extra: 1972/1856,
  38012. bottom: 31/2003
  38013. }
  38014. },
  38015. },
  38016. [
  38017. {
  38018. name: "Original Height",
  38019. height: math.unit(5 + 4/12, "feet")
  38020. },
  38021. {
  38022. name: "Normal Height",
  38023. height: math.unit(10 + 8/12, "feet"),
  38024. default: true
  38025. },
  38026. ]
  38027. ))
  38028. characterMakers.push(() => makeCharacter(
  38029. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38030. {
  38031. side: {
  38032. height: math.unit(7 + 1/12, "feet"),
  38033. weight: math.unit(245, "lb"),
  38034. name: "Side",
  38035. image: {
  38036. source: "./media/characters/kavus-kazian/side.svg",
  38037. extra: 349/342,
  38038. bottom: 15/364
  38039. }
  38040. },
  38041. },
  38042. [
  38043. {
  38044. name: "Normal",
  38045. height: math.unit(7 + 1/12, "feet"),
  38046. default: true
  38047. },
  38048. ]
  38049. ))
  38050. characterMakers.push(() => makeCharacter(
  38051. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38052. {
  38053. normalFront: {
  38054. height: math.unit(5 + 11/12, "feet"),
  38055. name: "Front",
  38056. image: {
  38057. source: "./media/characters/moonlight-rose/normal-front.svg",
  38058. extra: 1980/1825,
  38059. bottom: 18/1998
  38060. },
  38061. form: "normal",
  38062. default: true
  38063. },
  38064. normalBack: {
  38065. height: math.unit(5 + 11/12, "feet"),
  38066. name: "Back",
  38067. image: {
  38068. source: "./media/characters/moonlight-rose/normal-back.svg",
  38069. extra: 2010/1839,
  38070. bottom: 10/2020
  38071. },
  38072. form: "normal"
  38073. },
  38074. demonFront: {
  38075. height: math.unit(1.5, "earths"),
  38076. name: "Front",
  38077. image: {
  38078. source: "./media/characters/moonlight-rose/demon.svg",
  38079. extra: 1400/1294,
  38080. bottom: 45/1445
  38081. },
  38082. form: "demon",
  38083. default: true
  38084. },
  38085. terraFront: {
  38086. height: math.unit(1.5, "earths"),
  38087. name: "Front",
  38088. image: {
  38089. source: "./media/characters/moonlight-rose/terra.svg"
  38090. },
  38091. form: "terra",
  38092. default: true
  38093. },
  38094. jupiterFront: {
  38095. height: math.unit(69911*2, "km"),
  38096. name: "Front",
  38097. image: {
  38098. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38099. extra: 1367/1286,
  38100. bottom: 55/1422
  38101. },
  38102. form: "jupiter",
  38103. default: true
  38104. },
  38105. neptuneFront: {
  38106. height: math.unit(24622*2, "feet"),
  38107. name: "Front",
  38108. image: {
  38109. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38110. extra: 1851/1712,
  38111. bottom: 0/1851
  38112. },
  38113. form: "neptune",
  38114. default: true
  38115. },
  38116. },
  38117. [
  38118. {
  38119. name: "\"Natural\" Height",
  38120. height: math.unit(5 + 11/12, "feet"),
  38121. form: "normal"
  38122. },
  38123. {
  38124. name: "Smallest comfortable size",
  38125. height: math.unit(40, "meters"),
  38126. form: "normal"
  38127. },
  38128. {
  38129. name: "Common size",
  38130. height: math.unit(50, "km"),
  38131. form: "normal",
  38132. default: true
  38133. },
  38134. {
  38135. name: "Normal",
  38136. height: math.unit(1.5, "earths"),
  38137. form: "demon",
  38138. default: true
  38139. },
  38140. {
  38141. name: "Universal",
  38142. height: math.unit(15, "universes"),
  38143. form: "demon"
  38144. },
  38145. {
  38146. name: "Earth",
  38147. height: math.unit(1.5, "earths"),
  38148. form: "terra",
  38149. default: true
  38150. },
  38151. {
  38152. name: "Super Earth",
  38153. height: math.unit(67.5, "earths"),
  38154. form: "terra"
  38155. },
  38156. {
  38157. name: "Doesn't fit in a solar system...",
  38158. height: math.unit(1, "galaxy"),
  38159. form: "terra"
  38160. },
  38161. {
  38162. name: "Saturn",
  38163. height: math.unit(58232*2, "km"),
  38164. form: "jupiter"
  38165. },
  38166. {
  38167. name: "Jupiter",
  38168. height: math.unit(69911*2, "km"),
  38169. form: "jupiter",
  38170. default: true
  38171. },
  38172. {
  38173. name: "HD 100546 b",
  38174. height: math.unit(482938, "km"),
  38175. form: "jupiter"
  38176. },
  38177. {
  38178. name: "Enceladus",
  38179. height: math.unit(513*2, "km"),
  38180. form: "neptune"
  38181. },
  38182. {
  38183. name: "Europe",
  38184. height: math.unit(1560*2, "km"),
  38185. form: "neptune"
  38186. },
  38187. {
  38188. name: "Neptune",
  38189. height: math.unit(24622*2, "km"),
  38190. form: "neptune",
  38191. default: true
  38192. },
  38193. {
  38194. name: "CoRoT-9b",
  38195. height: math.unit(75067*2, "km"),
  38196. form: "neptune"
  38197. },
  38198. ],
  38199. {
  38200. "normal": {
  38201. name: "Normal",
  38202. default: true
  38203. },
  38204. "demon": {
  38205. name: "Demon"
  38206. },
  38207. "terra": {
  38208. name: "Terra"
  38209. },
  38210. "jupiter": {
  38211. name: "Jupiter"
  38212. },
  38213. "neptune": {
  38214. name: "Neptune"
  38215. }
  38216. }
  38217. ))
  38218. characterMakers.push(() => makeCharacter(
  38219. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38220. {
  38221. front: {
  38222. height: math.unit(16, "feet"),
  38223. weight: math.unit(610, "kg"),
  38224. name: "Front",
  38225. image: {
  38226. source: "./media/characters/huckle/front.svg",
  38227. extra: 1731/1625,
  38228. bottom: 33/1764
  38229. }
  38230. },
  38231. back: {
  38232. height: math.unit(16, "feet"),
  38233. weight: math.unit(610, "kg"),
  38234. name: "Back",
  38235. image: {
  38236. source: "./media/characters/huckle/back.svg",
  38237. extra: 1738/1651,
  38238. bottom: 37/1775
  38239. }
  38240. },
  38241. laughing: {
  38242. height: math.unit(3.75, "feet"),
  38243. name: "Laughing",
  38244. image: {
  38245. source: "./media/characters/huckle/laughing.svg"
  38246. }
  38247. },
  38248. angry: {
  38249. height: math.unit(4.15, "feet"),
  38250. name: "Angry",
  38251. image: {
  38252. source: "./media/characters/huckle/angry.svg"
  38253. }
  38254. },
  38255. },
  38256. [
  38257. {
  38258. name: "Normal",
  38259. height: math.unit(16, "feet"),
  38260. default: true
  38261. },
  38262. {
  38263. name: "Mini Macro",
  38264. height: math.unit(463, "feet")
  38265. },
  38266. {
  38267. name: "Macro",
  38268. height: math.unit(1680, "meters")
  38269. },
  38270. {
  38271. name: "Mega Macro",
  38272. height: math.unit(175, "km")
  38273. },
  38274. {
  38275. name: "Terra Macro",
  38276. height: math.unit(32, "gigameters")
  38277. },
  38278. {
  38279. name: "Multiverse+",
  38280. height: math.unit(2.56e23, "yottameters")
  38281. },
  38282. ]
  38283. ))
  38284. characterMakers.push(() => makeCharacter(
  38285. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38286. {
  38287. front: {
  38288. height: math.unit(6 + 9/12, "feet"),
  38289. weight: math.unit(280, "lb"),
  38290. name: "Front",
  38291. image: {
  38292. source: "./media/characters/candy/front.svg",
  38293. extra: 234/217,
  38294. bottom: 11/245
  38295. }
  38296. },
  38297. },
  38298. [
  38299. {
  38300. name: "Really Small",
  38301. height: math.unit(0.1, "nm")
  38302. },
  38303. {
  38304. name: "Micro",
  38305. height: math.unit(2, "inches")
  38306. },
  38307. {
  38308. name: "Normal",
  38309. height: math.unit(6 + 9/12, "feet"),
  38310. default: true
  38311. },
  38312. {
  38313. name: "Small Macro",
  38314. height: math.unit(69, "feet")
  38315. },
  38316. {
  38317. name: "Macro",
  38318. height: math.unit(160, "feet")
  38319. },
  38320. {
  38321. name: "Megamacro",
  38322. height: math.unit(22000, "miles")
  38323. },
  38324. {
  38325. name: "Gigamacro",
  38326. height: math.unit(50000, "miles")
  38327. },
  38328. ]
  38329. ))
  38330. characterMakers.push(() => makeCharacter(
  38331. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38332. {
  38333. front: {
  38334. height: math.unit(4, "feet"),
  38335. weight: math.unit(90, "lb"),
  38336. name: "Front",
  38337. image: {
  38338. source: "./media/characters/joey-mcdonald/front.svg",
  38339. extra: 1059/852,
  38340. bottom: 33/1092
  38341. }
  38342. },
  38343. back: {
  38344. height: math.unit(4, "feet"),
  38345. weight: math.unit(90, "lb"),
  38346. name: "Back",
  38347. image: {
  38348. source: "./media/characters/joey-mcdonald/back.svg",
  38349. extra: 1077/879,
  38350. bottom: 5/1082
  38351. }
  38352. },
  38353. frontKobold: {
  38354. height: math.unit(4, "feet"),
  38355. weight: math.unit(100, "lb"),
  38356. name: "Front-kobold",
  38357. image: {
  38358. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38359. extra: 1480/1367,
  38360. bottom: 0/1480
  38361. }
  38362. },
  38363. backKobold: {
  38364. height: math.unit(4, "feet"),
  38365. weight: math.unit(100, "lb"),
  38366. name: "Back-kobold",
  38367. image: {
  38368. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38369. extra: 1449/1361,
  38370. bottom: 0/1449
  38371. }
  38372. },
  38373. },
  38374. [
  38375. {
  38376. name: "Normal",
  38377. height: math.unit(4, "feet"),
  38378. default: true
  38379. },
  38380. ]
  38381. ))
  38382. characterMakers.push(() => makeCharacter(
  38383. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38384. {
  38385. front: {
  38386. height: math.unit(12 + 6/12, "feet"),
  38387. name: "Front",
  38388. image: {
  38389. source: "./media/characters/kass-lockheed/front.svg",
  38390. extra: 354/343,
  38391. bottom: 9/363
  38392. }
  38393. },
  38394. back: {
  38395. height: math.unit(12 + 6/12, "feet"),
  38396. name: "Back",
  38397. image: {
  38398. source: "./media/characters/kass-lockheed/back.svg",
  38399. extra: 364/352,
  38400. bottom: 3/367
  38401. }
  38402. },
  38403. dick: {
  38404. height: math.unit(3.12, "feet"),
  38405. name: "Dick",
  38406. image: {
  38407. source: "./media/characters/kass-lockheed/dick.svg"
  38408. }
  38409. },
  38410. head: {
  38411. height: math.unit(2.6, "feet"),
  38412. name: "Head",
  38413. image: {
  38414. source: "./media/characters/kass-lockheed/head.svg"
  38415. }
  38416. },
  38417. bleh: {
  38418. height: math.unit(2.85, "feet"),
  38419. name: "Bleh",
  38420. image: {
  38421. source: "./media/characters/kass-lockheed/bleh.svg"
  38422. }
  38423. },
  38424. smug: {
  38425. height: math.unit(2.85, "feet"),
  38426. name: "Smug",
  38427. image: {
  38428. source: "./media/characters/kass-lockheed/smug.svg"
  38429. }
  38430. },
  38431. },
  38432. [
  38433. {
  38434. name: "Normal",
  38435. height: math.unit(12 + 6/12, "feet"),
  38436. default: true
  38437. },
  38438. ]
  38439. ))
  38440. characterMakers.push(() => makeCharacter(
  38441. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38442. {
  38443. front: {
  38444. height: math.unit(6 + 2/12, "feet"),
  38445. name: "Front",
  38446. image: {
  38447. source: "./media/characters/taylor/front.svg",
  38448. extra: 639/495,
  38449. bottom: 12/651
  38450. }
  38451. },
  38452. },
  38453. [
  38454. {
  38455. name: "Normal",
  38456. height: math.unit(6 + 2/12, "feet"),
  38457. default: true
  38458. },
  38459. {
  38460. name: "Big",
  38461. height: math.unit(15, "feet")
  38462. },
  38463. {
  38464. name: "Lorg",
  38465. height: math.unit(80, "feet")
  38466. },
  38467. {
  38468. name: "Too Lorg",
  38469. height: math.unit(120, "feet")
  38470. },
  38471. ]
  38472. ))
  38473. characterMakers.push(() => makeCharacter(
  38474. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38475. {
  38476. front: {
  38477. height: math.unit(15, "feet"),
  38478. name: "Front",
  38479. image: {
  38480. source: "./media/characters/kaizer/front.svg",
  38481. extra: 1612/1436,
  38482. bottom: 43/1655
  38483. }
  38484. },
  38485. },
  38486. [
  38487. {
  38488. name: "Normal",
  38489. height: math.unit(15, "feet"),
  38490. default: true
  38491. },
  38492. ]
  38493. ))
  38494. characterMakers.push(() => makeCharacter(
  38495. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38496. {
  38497. front: {
  38498. height: math.unit(2, "feet"),
  38499. weight: math.unit(30, "lb"),
  38500. name: "Front",
  38501. image: {
  38502. source: "./media/characters/sandy/front.svg",
  38503. extra: 1439/1307,
  38504. bottom: 194/1633
  38505. }
  38506. },
  38507. },
  38508. [
  38509. {
  38510. name: "Normal",
  38511. height: math.unit(2, "feet"),
  38512. default: true
  38513. },
  38514. ]
  38515. ))
  38516. characterMakers.push(() => makeCharacter(
  38517. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38518. {
  38519. front: {
  38520. height: math.unit(3, "feet"),
  38521. name: "Front",
  38522. image: {
  38523. source: "./media/characters/mellvi/front.svg",
  38524. extra: 1831/1630,
  38525. bottom: 58/1889
  38526. }
  38527. },
  38528. },
  38529. [
  38530. {
  38531. name: "Normal",
  38532. height: math.unit(3, "feet"),
  38533. default: true
  38534. },
  38535. ]
  38536. ))
  38537. characterMakers.push(() => makeCharacter(
  38538. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38539. {
  38540. front: {
  38541. height: math.unit(5 + 11/12, "feet"),
  38542. weight: math.unit(200, "lb"),
  38543. name: "Front",
  38544. image: {
  38545. source: "./media/characters/shirou/front.svg",
  38546. extra: 2491/2383,
  38547. bottom: 189/2680
  38548. }
  38549. },
  38550. back: {
  38551. height: math.unit(5 + 11/12, "feet"),
  38552. weight: math.unit(200, "lb"),
  38553. name: "Back",
  38554. image: {
  38555. source: "./media/characters/shirou/back.svg",
  38556. extra: 2554/2450,
  38557. bottom: 76/2630
  38558. }
  38559. },
  38560. },
  38561. [
  38562. {
  38563. name: "Normal",
  38564. height: math.unit(5 + 11/12, "feet"),
  38565. default: true
  38566. },
  38567. ]
  38568. ))
  38569. characterMakers.push(() => makeCharacter(
  38570. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38571. {
  38572. front: {
  38573. height: math.unit(6 + 3/12, "feet"),
  38574. weight: math.unit(177, "lb"),
  38575. name: "Front",
  38576. image: {
  38577. source: "./media/characters/noryu/front.svg",
  38578. extra: 973/885,
  38579. bottom: 10/983
  38580. }
  38581. },
  38582. },
  38583. [
  38584. {
  38585. name: "Normal",
  38586. height: math.unit(6 + 3/12, "feet"),
  38587. default: true
  38588. },
  38589. ]
  38590. ))
  38591. characterMakers.push(() => makeCharacter(
  38592. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38593. {
  38594. front: {
  38595. height: math.unit(5 + 6/12, "feet"),
  38596. weight: math.unit(170, "lb"),
  38597. name: "Front",
  38598. image: {
  38599. source: "./media/characters/mevolas-rubenido/front.svg",
  38600. extra: 2109/1901,
  38601. bottom: 96/2205
  38602. }
  38603. },
  38604. },
  38605. [
  38606. {
  38607. name: "Normal",
  38608. height: math.unit(5 + 6/12, "feet"),
  38609. default: true
  38610. },
  38611. ]
  38612. ))
  38613. characterMakers.push(() => makeCharacter(
  38614. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38615. {
  38616. front: {
  38617. height: math.unit(100, "feet"),
  38618. name: "Front",
  38619. image: {
  38620. source: "./media/characters/dee/front.svg",
  38621. extra: 2153/2036,
  38622. bottom: 59/2212
  38623. }
  38624. },
  38625. back: {
  38626. height: math.unit(100, "feet"),
  38627. name: "Back",
  38628. image: {
  38629. source: "./media/characters/dee/back.svg",
  38630. extra: 2183/2058,
  38631. bottom: 75/2258
  38632. }
  38633. },
  38634. foot: {
  38635. height: math.unit(19.43, "feet"),
  38636. name: "Foot",
  38637. image: {
  38638. source: "./media/characters/dee/foot.svg"
  38639. }
  38640. },
  38641. hoof: {
  38642. height: math.unit(20.6, "feet"),
  38643. name: "Hoof",
  38644. image: {
  38645. source: "./media/characters/dee/hoof.svg"
  38646. }
  38647. },
  38648. },
  38649. [
  38650. {
  38651. name: "Macro",
  38652. height: math.unit(100, "feet"),
  38653. default: true
  38654. },
  38655. ]
  38656. ))
  38657. characterMakers.push(() => makeCharacter(
  38658. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38659. {
  38660. front: {
  38661. height: math.unit(5 + 6/12, "feet"),
  38662. name: "Front",
  38663. image: {
  38664. source: "./media/characters/teh/front.svg",
  38665. extra: 1002/847,
  38666. bottom: 62/1064
  38667. }
  38668. },
  38669. },
  38670. [
  38671. {
  38672. name: "Normal",
  38673. height: math.unit(5 + 6/12, "feet"),
  38674. default: true
  38675. },
  38676. ]
  38677. ))
  38678. characterMakers.push(() => makeCharacter(
  38679. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38680. {
  38681. side: {
  38682. height: math.unit(6 + 1/12, "feet"),
  38683. weight: math.unit(204, "lb"),
  38684. name: "Side",
  38685. image: {
  38686. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38687. extra: 974/775,
  38688. bottom: 169/1143
  38689. }
  38690. },
  38691. sitting: {
  38692. height: math.unit(6 + 2/12, "feet"),
  38693. weight: math.unit(204, "lb"),
  38694. name: "Sitting",
  38695. image: {
  38696. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38697. extra: 1175/964,
  38698. bottom: 378/1553
  38699. }
  38700. },
  38701. },
  38702. [
  38703. {
  38704. name: "Normal",
  38705. height: math.unit(6 + 1/12, "feet"),
  38706. default: true
  38707. },
  38708. ]
  38709. ))
  38710. characterMakers.push(() => makeCharacter(
  38711. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38712. {
  38713. front: {
  38714. height: math.unit(6, "inches"),
  38715. name: "Front",
  38716. image: {
  38717. source: "./media/characters/tululi/front.svg",
  38718. extra: 1997/1876,
  38719. bottom: 20/2017
  38720. }
  38721. },
  38722. },
  38723. [
  38724. {
  38725. name: "Normal",
  38726. height: math.unit(6, "inches"),
  38727. default: true
  38728. },
  38729. ]
  38730. ))
  38731. characterMakers.push(() => makeCharacter(
  38732. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38733. {
  38734. front: {
  38735. height: math.unit(4 + 1/12, "feet"),
  38736. name: "Front",
  38737. image: {
  38738. source: "./media/characters/star/front.svg",
  38739. extra: 1493/1189,
  38740. bottom: 48/1541
  38741. }
  38742. },
  38743. },
  38744. [
  38745. {
  38746. name: "Normal",
  38747. height: math.unit(4 + 1/12, "feet"),
  38748. default: true
  38749. },
  38750. ]
  38751. ))
  38752. characterMakers.push(() => makeCharacter(
  38753. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38754. {
  38755. front: {
  38756. height: math.unit(6 + 3/12, "feet"),
  38757. name: "Front",
  38758. image: {
  38759. source: "./media/characters/comet/front.svg",
  38760. extra: 1681/1462,
  38761. bottom: 26/1707
  38762. }
  38763. },
  38764. },
  38765. [
  38766. {
  38767. name: "Normal",
  38768. height: math.unit(6 + 3/12, "feet"),
  38769. default: true
  38770. },
  38771. ]
  38772. ))
  38773. characterMakers.push(() => makeCharacter(
  38774. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38775. {
  38776. front: {
  38777. height: math.unit(950, "feet"),
  38778. name: "Front",
  38779. image: {
  38780. source: "./media/characters/vortex/front.svg",
  38781. extra: 1497/1434,
  38782. bottom: 56/1553
  38783. }
  38784. },
  38785. maw: {
  38786. height: math.unit(285, "feet"),
  38787. name: "Maw",
  38788. image: {
  38789. source: "./media/characters/vortex/maw.svg"
  38790. }
  38791. },
  38792. },
  38793. [
  38794. {
  38795. name: "Macro",
  38796. height: math.unit(950, "feet"),
  38797. default: true
  38798. },
  38799. ]
  38800. ))
  38801. characterMakers.push(() => makeCharacter(
  38802. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38803. {
  38804. front: {
  38805. height: math.unit(600, "feet"),
  38806. weight: math.unit(0.02, "grams"),
  38807. name: "Front",
  38808. image: {
  38809. source: "./media/characters/doodle/front.svg",
  38810. extra: 1578/1413,
  38811. bottom: 37/1615
  38812. }
  38813. },
  38814. },
  38815. [
  38816. {
  38817. name: "Macro",
  38818. height: math.unit(600, "feet"),
  38819. default: true
  38820. },
  38821. ]
  38822. ))
  38823. characterMakers.push(() => makeCharacter(
  38824. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38825. {
  38826. front: {
  38827. height: math.unit(6 + 6/12, "feet"),
  38828. name: "Front",
  38829. image: {
  38830. source: "./media/characters/jai/front.svg",
  38831. extra: 1645/1534,
  38832. bottom: 115/1760
  38833. }
  38834. },
  38835. },
  38836. [
  38837. {
  38838. name: "Normal",
  38839. height: math.unit(6 + 6/12, "feet"),
  38840. default: true
  38841. },
  38842. ]
  38843. ))
  38844. characterMakers.push(() => makeCharacter(
  38845. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38846. {
  38847. front: {
  38848. height: math.unit(6 + 8/12, "feet"),
  38849. name: "Front",
  38850. image: {
  38851. source: "./media/characters/pixel/front.svg",
  38852. extra: 1900/1735,
  38853. bottom: 63/1963
  38854. }
  38855. },
  38856. },
  38857. [
  38858. {
  38859. name: "Normal",
  38860. height: math.unit(6 + 8/12, "feet"),
  38861. default: true
  38862. },
  38863. ]
  38864. ))
  38865. characterMakers.push(() => makeCharacter(
  38866. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38867. {
  38868. back: {
  38869. height: math.unit(4 + 1/12, "feet"),
  38870. weight: math.unit(75, "lb"),
  38871. name: "Back",
  38872. image: {
  38873. source: "./media/characters/rhett/back.svg",
  38874. extra: 930/878,
  38875. bottom: 25/955
  38876. }
  38877. },
  38878. front: {
  38879. height: math.unit(4 + 1/12, "feet"),
  38880. weight: math.unit(75, "lb"),
  38881. name: "Front",
  38882. image: {
  38883. source: "./media/characters/rhett/front.svg",
  38884. extra: 1682/1586,
  38885. bottom: 92/1774
  38886. }
  38887. },
  38888. },
  38889. [
  38890. {
  38891. name: "Micro",
  38892. height: math.unit(8, "inches")
  38893. },
  38894. {
  38895. name: "Tiny",
  38896. height: math.unit(2, "feet")
  38897. },
  38898. {
  38899. name: "Normal",
  38900. height: math.unit(4 + 1/12, "feet"),
  38901. default: true
  38902. },
  38903. ]
  38904. ))
  38905. characterMakers.push(() => makeCharacter(
  38906. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38907. {
  38908. front: {
  38909. height: math.unit(3 + 3/12, "feet"),
  38910. name: "Front",
  38911. image: {
  38912. source: "./media/characters/penny/front.svg",
  38913. extra: 1406/1311,
  38914. bottom: 26/1432
  38915. }
  38916. },
  38917. },
  38918. [
  38919. {
  38920. name: "Normal",
  38921. height: math.unit(3 + 3/12, "feet"),
  38922. default: true
  38923. },
  38924. ]
  38925. ))
  38926. characterMakers.push(() => makeCharacter(
  38927. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38928. {
  38929. front: {
  38930. height: math.unit(4 + 11/12, "feet"),
  38931. name: "Front",
  38932. image: {
  38933. source: "./media/characters/monty/front.svg",
  38934. extra: 1479/1209,
  38935. bottom: 0/1479
  38936. }
  38937. },
  38938. },
  38939. [
  38940. {
  38941. name: "Normal",
  38942. height: math.unit(4 + 11/12, "feet"),
  38943. default: true
  38944. },
  38945. ]
  38946. ))
  38947. characterMakers.push(() => makeCharacter(
  38948. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38949. {
  38950. front: {
  38951. height: math.unit(8 + 4/12, "feet"),
  38952. name: "Front",
  38953. image: {
  38954. source: "./media/characters/sterling/front.svg",
  38955. extra: 1420/1236,
  38956. bottom: 27/1447
  38957. }
  38958. },
  38959. },
  38960. [
  38961. {
  38962. name: "Normal",
  38963. height: math.unit(8 + 4/12, "feet"),
  38964. default: true
  38965. },
  38966. ]
  38967. ))
  38968. characterMakers.push(() => makeCharacter(
  38969. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38970. {
  38971. front: {
  38972. height: math.unit(15, "feet"),
  38973. name: "Front",
  38974. image: {
  38975. source: "./media/characters/marble/front.svg",
  38976. extra: 973/937,
  38977. bottom: 32/1005
  38978. }
  38979. },
  38980. },
  38981. [
  38982. {
  38983. name: "Normal",
  38984. height: math.unit(15, "feet"),
  38985. default: true
  38986. },
  38987. ]
  38988. ))
  38989. characterMakers.push(() => makeCharacter(
  38990. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38991. {
  38992. front: {
  38993. height: math.unit(3, "inches"),
  38994. name: "Front",
  38995. image: {
  38996. source: "./media/characters/powder/front.svg",
  38997. extra: 1504/1334,
  38998. bottom: 518/2022
  38999. }
  39000. },
  39001. },
  39002. [
  39003. {
  39004. name: "Normal",
  39005. height: math.unit(3, "inches"),
  39006. default: true
  39007. },
  39008. ]
  39009. ))
  39010. characterMakers.push(() => makeCharacter(
  39011. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39012. {
  39013. front: {
  39014. height: math.unit(4 + 5/12, "feet"),
  39015. name: "Front",
  39016. image: {
  39017. source: "./media/characters/joey-raccoon/front.svg",
  39018. extra: 1273/1197,
  39019. bottom: 0/1273
  39020. }
  39021. },
  39022. },
  39023. [
  39024. {
  39025. name: "Normal",
  39026. height: math.unit(4 + 5/12, "feet"),
  39027. default: true
  39028. },
  39029. ]
  39030. ))
  39031. characterMakers.push(() => makeCharacter(
  39032. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39033. {
  39034. front: {
  39035. height: math.unit(8 + 4/12, "feet"),
  39036. name: "Front",
  39037. image: {
  39038. source: "./media/characters/vick/front.svg",
  39039. extra: 2187/2118,
  39040. bottom: 47/2234
  39041. }
  39042. },
  39043. },
  39044. [
  39045. {
  39046. name: "Normal",
  39047. height: math.unit(8 + 4/12, "feet"),
  39048. default: true
  39049. },
  39050. ]
  39051. ))
  39052. characterMakers.push(() => makeCharacter(
  39053. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39054. {
  39055. front: {
  39056. height: math.unit(5 + 5/12, "feet"),
  39057. name: "Front",
  39058. image: {
  39059. source: "./media/characters/mitsy/front.svg",
  39060. extra: 1842/1695,
  39061. bottom: 0/1842
  39062. }
  39063. },
  39064. },
  39065. [
  39066. {
  39067. name: "Normal",
  39068. height: math.unit(5 + 5/12, "feet"),
  39069. default: true
  39070. },
  39071. ]
  39072. ))
  39073. characterMakers.push(() => makeCharacter(
  39074. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39075. {
  39076. front: {
  39077. height: math.unit(6 + 3/12, "feet"),
  39078. name: "Front",
  39079. image: {
  39080. source: "./media/characters/silvy/front.svg",
  39081. extra: 1995/1836,
  39082. bottom: 225/2220
  39083. }
  39084. },
  39085. },
  39086. [
  39087. {
  39088. name: "Normal",
  39089. height: math.unit(6 + 3/12, "feet"),
  39090. default: true
  39091. },
  39092. ]
  39093. ))
  39094. characterMakers.push(() => makeCharacter(
  39095. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39096. {
  39097. front: {
  39098. height: math.unit(3 + 8/12, "feet"),
  39099. name: "Front",
  39100. image: {
  39101. source: "./media/characters/rodney/front.svg",
  39102. extra: 1956/1747,
  39103. bottom: 31/1987
  39104. }
  39105. },
  39106. frontDressed: {
  39107. height: math.unit(2.9, "feet"),
  39108. name: "Front (Dressed)",
  39109. image: {
  39110. source: "./media/characters/rodney/front-dressed.svg",
  39111. extra: 1382/1241,
  39112. bottom: 385/1767
  39113. }
  39114. },
  39115. },
  39116. [
  39117. {
  39118. name: "Normal",
  39119. height: math.unit(3 + 8/12, "feet"),
  39120. default: true
  39121. },
  39122. ]
  39123. ))
  39124. characterMakers.push(() => makeCharacter(
  39125. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39126. {
  39127. front: {
  39128. height: math.unit(5 + 9/12, "feet"),
  39129. weight: math.unit(194, "lbs"),
  39130. name: "Front",
  39131. image: {
  39132. source: "./media/characters/zakail-sudekai/front.svg",
  39133. extra: 2696/2533,
  39134. bottom: 248/2944
  39135. }
  39136. },
  39137. maw: {
  39138. height: math.unit(1.35, "feet"),
  39139. name: "Maw",
  39140. image: {
  39141. source: "./media/characters/zakail-sudekai/maw.svg"
  39142. }
  39143. },
  39144. },
  39145. [
  39146. {
  39147. name: "Normal",
  39148. height: math.unit(5 + 9/12, "feet"),
  39149. default: true
  39150. },
  39151. ]
  39152. ))
  39153. characterMakers.push(() => makeCharacter(
  39154. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39155. {
  39156. front: {
  39157. height: math.unit(8 + 4/12, "feet"),
  39158. weight: math.unit(1200, "lb"),
  39159. name: "Front",
  39160. image: {
  39161. source: "./media/characters/eleanor/front.svg",
  39162. extra: 1226/1192,
  39163. bottom: 52/1278
  39164. }
  39165. },
  39166. back: {
  39167. height: math.unit(8 + 4/12, "feet"),
  39168. weight: math.unit(1200, "lb"),
  39169. name: "Back",
  39170. image: {
  39171. source: "./media/characters/eleanor/back.svg",
  39172. extra: 1242/1184,
  39173. bottom: 60/1302
  39174. }
  39175. },
  39176. head: {
  39177. height: math.unit(2.62, "feet"),
  39178. name: "Head",
  39179. image: {
  39180. source: "./media/characters/eleanor/head.svg"
  39181. }
  39182. },
  39183. },
  39184. [
  39185. {
  39186. name: "Normal",
  39187. height: math.unit(8 + 4/12, "feet"),
  39188. default: true
  39189. },
  39190. ]
  39191. ))
  39192. characterMakers.push(() => makeCharacter(
  39193. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39194. {
  39195. front: {
  39196. height: math.unit(8 + 4/12, "feet"),
  39197. weight: math.unit(750, "lb"),
  39198. name: "Front",
  39199. image: {
  39200. source: "./media/characters/tanya/front.svg",
  39201. extra: 1749/1615,
  39202. bottom: 33/1782
  39203. }
  39204. },
  39205. },
  39206. [
  39207. {
  39208. name: "Normal",
  39209. height: math.unit(8 + 4/12, "feet"),
  39210. default: true
  39211. },
  39212. ]
  39213. ))
  39214. characterMakers.push(() => makeCharacter(
  39215. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39216. {
  39217. front: {
  39218. height: math.unit(5, "feet"),
  39219. weight: math.unit(225, "lb"),
  39220. name: "Front",
  39221. image: {
  39222. source: "./media/characters/cindy/front.svg",
  39223. extra: 1320/1250,
  39224. bottom: 42/1362
  39225. }
  39226. },
  39227. frontDressed: {
  39228. height: math.unit(5, "feet"),
  39229. weight: math.unit(225, "lb"),
  39230. name: "Front (Dressed)",
  39231. image: {
  39232. source: "./media/characters/cindy/front-dressed.svg",
  39233. extra: 1320/1250,
  39234. bottom: 42/1362
  39235. }
  39236. },
  39237. back: {
  39238. height: math.unit(5, "feet"),
  39239. weight: math.unit(225, "lb"),
  39240. name: "Back",
  39241. image: {
  39242. source: "./media/characters/cindy/back.svg",
  39243. extra: 1384/1346,
  39244. bottom: 14/1398
  39245. }
  39246. },
  39247. },
  39248. [
  39249. {
  39250. name: "Normal",
  39251. height: math.unit(5, "feet"),
  39252. default: true
  39253. },
  39254. ]
  39255. ))
  39256. characterMakers.push(() => makeCharacter(
  39257. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39258. {
  39259. front: {
  39260. height: math.unit(6 + 9/12, "feet"),
  39261. weight: math.unit(440, "lb"),
  39262. name: "Front",
  39263. image: {
  39264. source: "./media/characters/wilbur-owen/front.svg",
  39265. extra: 1575/1448,
  39266. bottom: 72/1647
  39267. }
  39268. },
  39269. back: {
  39270. height: math.unit(6 + 9/12, "feet"),
  39271. weight: math.unit(440, "lb"),
  39272. name: "Back",
  39273. image: {
  39274. source: "./media/characters/wilbur-owen/back.svg",
  39275. extra: 1578/1445,
  39276. bottom: 36/1614
  39277. }
  39278. },
  39279. },
  39280. [
  39281. {
  39282. name: "Normal",
  39283. height: math.unit(6 + 9/12, "feet"),
  39284. default: true
  39285. },
  39286. ]
  39287. ))
  39288. characterMakers.push(() => makeCharacter(
  39289. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39290. {
  39291. front: {
  39292. height: math.unit(6 + 5/12, "feet"),
  39293. weight: math.unit(650, "lb"),
  39294. name: "Front",
  39295. image: {
  39296. source: "./media/characters/keegan/front.svg",
  39297. extra: 2387/2198,
  39298. bottom: 33/2420
  39299. }
  39300. },
  39301. side: {
  39302. height: math.unit(6 + 5/12, "feet"),
  39303. weight: math.unit(650, "lb"),
  39304. name: "Side",
  39305. image: {
  39306. source: "./media/characters/keegan/side.svg",
  39307. extra: 2390/2202,
  39308. bottom: 47/2437
  39309. }
  39310. },
  39311. back: {
  39312. height: math.unit(6 + 5/12, "feet"),
  39313. weight: math.unit(650, "lb"),
  39314. name: "Back",
  39315. image: {
  39316. source: "./media/characters/keegan/back.svg",
  39317. extra: 2418/2268,
  39318. bottom: 15/2433
  39319. }
  39320. },
  39321. frontSfw: {
  39322. height: math.unit(6 + 5/12, "feet"),
  39323. weight: math.unit(650, "lb"),
  39324. name: "Front (SFW)",
  39325. image: {
  39326. source: "./media/characters/keegan/front-sfw.svg",
  39327. extra: 2387/2198,
  39328. bottom: 33/2420
  39329. }
  39330. },
  39331. beans: {
  39332. height: math.unit(1.85, "feet"),
  39333. name: "Beans",
  39334. image: {
  39335. source: "./media/characters/keegan/beans.svg"
  39336. }
  39337. },
  39338. },
  39339. [
  39340. {
  39341. name: "Normal",
  39342. height: math.unit(6 + 5/12, "feet"),
  39343. default: true
  39344. },
  39345. ]
  39346. ))
  39347. characterMakers.push(() => makeCharacter(
  39348. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39349. {
  39350. front: {
  39351. height: math.unit(9, "feet"),
  39352. name: "Front",
  39353. image: {
  39354. source: "./media/characters/colton/front.svg",
  39355. extra: 1589/1326,
  39356. bottom: 139/1728
  39357. }
  39358. },
  39359. },
  39360. [
  39361. {
  39362. name: "Normal",
  39363. height: math.unit(9, "feet"),
  39364. default: true
  39365. },
  39366. ]
  39367. ))
  39368. characterMakers.push(() => makeCharacter(
  39369. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39370. {
  39371. front: {
  39372. height: math.unit(2 + 9/12, "feet"),
  39373. name: "Front",
  39374. image: {
  39375. source: "./media/characters/bora/front.svg",
  39376. extra: 1265/1250,
  39377. bottom: 24/1289
  39378. }
  39379. },
  39380. },
  39381. [
  39382. {
  39383. name: "Normal",
  39384. height: math.unit(2 + 9/12, "feet"),
  39385. default: true
  39386. },
  39387. ]
  39388. ))
  39389. characterMakers.push(() => makeCharacter(
  39390. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39391. {
  39392. front: {
  39393. height: math.unit(8, "feet"),
  39394. name: "Front",
  39395. image: {
  39396. source: "./media/characters/myu-myu/front.svg",
  39397. extra: 1949/1857,
  39398. bottom: 90/2039
  39399. }
  39400. },
  39401. },
  39402. [
  39403. {
  39404. name: "Normal",
  39405. height: math.unit(8, "feet"),
  39406. default: true
  39407. },
  39408. {
  39409. name: "Big",
  39410. height: math.unit(15, "feet")
  39411. },
  39412. {
  39413. name: "BIG",
  39414. height: math.unit(25, "feet")
  39415. },
  39416. ]
  39417. ))
  39418. characterMakers.push(() => makeCharacter(
  39419. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39420. {
  39421. side: {
  39422. height: math.unit(7 + 5/12, "feet"),
  39423. weight: math.unit(2800, "lb"),
  39424. name: "Side",
  39425. image: {
  39426. source: "./media/characters/haloren/side.svg",
  39427. extra: 1793/409,
  39428. bottom: 59/1852
  39429. }
  39430. },
  39431. frontPaw: {
  39432. height: math.unit(2.36, "feet"),
  39433. name: "Front paw",
  39434. image: {
  39435. source: "./media/characters/haloren/front-paw.svg"
  39436. }
  39437. },
  39438. hindPaw: {
  39439. height: math.unit(3.18, "feet"),
  39440. name: "Hind paw",
  39441. image: {
  39442. source: "./media/characters/haloren/hind-paw.svg"
  39443. }
  39444. },
  39445. maw: {
  39446. height: math.unit(5.05, "feet"),
  39447. name: "Maw",
  39448. image: {
  39449. source: "./media/characters/haloren/maw.svg"
  39450. }
  39451. },
  39452. dick: {
  39453. height: math.unit(2.90, "feet"),
  39454. name: "Dick",
  39455. image: {
  39456. source: "./media/characters/haloren/dick.svg"
  39457. }
  39458. },
  39459. },
  39460. [
  39461. {
  39462. name: "Normal",
  39463. height: math.unit(7 + 5/12, "feet"),
  39464. default: true
  39465. },
  39466. {
  39467. name: "Enhanced",
  39468. height: math.unit(14 + 3/12, "feet")
  39469. },
  39470. ]
  39471. ))
  39472. characterMakers.push(() => makeCharacter(
  39473. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39474. {
  39475. front: {
  39476. height: math.unit(171, "cm"),
  39477. name: "Front",
  39478. image: {
  39479. source: "./media/characters/kimmy/front.svg",
  39480. extra: 1491/1435,
  39481. bottom: 53/1544
  39482. }
  39483. },
  39484. },
  39485. [
  39486. {
  39487. name: "Small",
  39488. height: math.unit(9, "cm")
  39489. },
  39490. {
  39491. name: "Normal",
  39492. height: math.unit(171, "cm"),
  39493. default: true
  39494. },
  39495. ]
  39496. ))
  39497. characterMakers.push(() => makeCharacter(
  39498. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39499. {
  39500. front: {
  39501. height: math.unit(8, "feet"),
  39502. weight: math.unit(300, "lb"),
  39503. name: "Front",
  39504. image: {
  39505. source: "./media/characters/galeboomer/front.svg",
  39506. extra: 4651/4415,
  39507. bottom: 162/4813
  39508. }
  39509. },
  39510. back: {
  39511. height: math.unit(8, "feet"),
  39512. weight: math.unit(300, "lb"),
  39513. name: "Back",
  39514. image: {
  39515. source: "./media/characters/galeboomer/back.svg",
  39516. extra: 4544/4314,
  39517. bottom: 16/4560
  39518. }
  39519. },
  39520. frontAlt: {
  39521. height: math.unit(8, "feet"),
  39522. weight: math.unit(300, "lb"),
  39523. name: "Front (Alt)",
  39524. image: {
  39525. source: "./media/characters/galeboomer/front-alt.svg",
  39526. extra: 4458/4228,
  39527. bottom: 68/4526
  39528. }
  39529. },
  39530. maw: {
  39531. height: math.unit(1.2, "feet"),
  39532. name: "Maw",
  39533. image: {
  39534. source: "./media/characters/galeboomer/maw.svg"
  39535. }
  39536. },
  39537. },
  39538. [
  39539. {
  39540. name: "Normal",
  39541. height: math.unit(8, "feet"),
  39542. default: true
  39543. },
  39544. ]
  39545. ))
  39546. characterMakers.push(() => makeCharacter(
  39547. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39548. {
  39549. front: {
  39550. height: math.unit(5 + 9/12, "feet"),
  39551. weight: math.unit(120, "lb"),
  39552. name: "Front",
  39553. image: {
  39554. source: "./media/characters/chyr/front.svg",
  39555. extra: 1323/1254,
  39556. bottom: 63/1386
  39557. }
  39558. },
  39559. back: {
  39560. height: math.unit(5 + 9/12, "feet"),
  39561. weight: math.unit(120, "lb"),
  39562. name: "Back",
  39563. image: {
  39564. source: "./media/characters/chyr/back.svg",
  39565. extra: 1323/1252,
  39566. bottom: 48/1371
  39567. }
  39568. },
  39569. },
  39570. [
  39571. {
  39572. name: "Normal",
  39573. height: math.unit(5 + 9/12, "feet"),
  39574. default: true
  39575. },
  39576. ]
  39577. ))
  39578. characterMakers.push(() => makeCharacter(
  39579. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39580. {
  39581. front: {
  39582. height: math.unit(7, "feet"),
  39583. weight: math.unit(310, "lb"),
  39584. name: "Front",
  39585. image: {
  39586. source: "./media/characters/solarus/front.svg",
  39587. extra: 2415/2021,
  39588. bottom: 103/2518
  39589. }
  39590. },
  39591. back: {
  39592. height: math.unit(7, "feet"),
  39593. weight: math.unit(310, "lb"),
  39594. name: "Back",
  39595. image: {
  39596. source: "./media/characters/solarus/back.svg",
  39597. extra: 2463/2089,
  39598. bottom: 79/2542
  39599. }
  39600. },
  39601. },
  39602. [
  39603. {
  39604. name: "Normal",
  39605. height: math.unit(7, "feet"),
  39606. default: true
  39607. },
  39608. ]
  39609. ))
  39610. characterMakers.push(() => makeCharacter(
  39611. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39612. {
  39613. front: {
  39614. height: math.unit(16, "feet"),
  39615. name: "Front",
  39616. image: {
  39617. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39618. extra: 1844/1780,
  39619. bottom: 58/1902
  39620. }
  39621. },
  39622. winterCoat: {
  39623. height: math.unit(16, "feet"),
  39624. name: "Winter Coat",
  39625. image: {
  39626. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39627. extra: 1807/1775,
  39628. bottom: 69/1876
  39629. }
  39630. },
  39631. },
  39632. [
  39633. {
  39634. name: "Normal",
  39635. height: math.unit(16, "feet"),
  39636. default: true
  39637. },
  39638. {
  39639. name: "Chicago Size",
  39640. height: math.unit(560, "feet")
  39641. },
  39642. ]
  39643. ))
  39644. characterMakers.push(() => makeCharacter(
  39645. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39646. {
  39647. front: {
  39648. height: math.unit(11 + 6/12, "feet"),
  39649. weight: math.unit(1366, "lb"),
  39650. name: "Front",
  39651. image: {
  39652. source: "./media/characters/lexor/front.svg",
  39653. extra: 1560/1481,
  39654. bottom: 211/1771
  39655. }
  39656. },
  39657. back: {
  39658. height: math.unit(11 + 6/12, "feet"),
  39659. weight: math.unit(1366, "lb"),
  39660. name: "Back",
  39661. image: {
  39662. source: "./media/characters/lexor/back.svg",
  39663. extra: 1614/1533,
  39664. bottom: 76/1690
  39665. }
  39666. },
  39667. maw: {
  39668. height: math.unit(3, "feet"),
  39669. name: "Maw",
  39670. image: {
  39671. source: "./media/characters/lexor/maw.svg"
  39672. }
  39673. },
  39674. dick: {
  39675. height: math.unit(2.59, "feet"),
  39676. name: "Dick",
  39677. image: {
  39678. source: "./media/characters/lexor/dick.svg"
  39679. }
  39680. },
  39681. },
  39682. [
  39683. {
  39684. name: "Normal",
  39685. height: math.unit(11 + 6/12, "feet"),
  39686. default: true
  39687. },
  39688. ]
  39689. ))
  39690. characterMakers.push(() => makeCharacter(
  39691. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39692. {
  39693. front: {
  39694. height: math.unit(5 + 8/12, "feet"),
  39695. name: "Front",
  39696. image: {
  39697. source: "./media/characters/magnum/front.svg",
  39698. extra: 942/855,
  39699. bottom: 26/968
  39700. }
  39701. },
  39702. },
  39703. [
  39704. {
  39705. name: "Normal",
  39706. height: math.unit(5 + 8/12, "feet"),
  39707. default: true
  39708. },
  39709. ]
  39710. ))
  39711. characterMakers.push(() => makeCharacter(
  39712. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39713. {
  39714. front: {
  39715. height: math.unit(18 + 4/12, "feet"),
  39716. weight: math.unit(1500, "kg"),
  39717. name: "Front",
  39718. image: {
  39719. source: "./media/characters/solas-sharpsman/front.svg",
  39720. extra: 1698/1589,
  39721. bottom: 0/1698
  39722. }
  39723. },
  39724. },
  39725. [
  39726. {
  39727. name: "Normal",
  39728. height: math.unit(18 + 4/12, "feet"),
  39729. default: true
  39730. },
  39731. ]
  39732. ))
  39733. characterMakers.push(() => makeCharacter(
  39734. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39735. {
  39736. front: {
  39737. height: math.unit(5 + 5/12, "feet"),
  39738. weight: math.unit(180, "lb"),
  39739. name: "Front",
  39740. image: {
  39741. source: "./media/characters/october/front.svg",
  39742. extra: 1800/1650,
  39743. bottom: 0/1800
  39744. }
  39745. },
  39746. frontNsfw: {
  39747. height: math.unit(5 + 5/12, "feet"),
  39748. weight: math.unit(180, "lb"),
  39749. name: "Front (NSFW)",
  39750. image: {
  39751. source: "./media/characters/october/front-nsfw.svg",
  39752. extra: 1392/1307,
  39753. bottom: 42/1434
  39754. }
  39755. },
  39756. },
  39757. [
  39758. {
  39759. name: "Normal",
  39760. height: math.unit(5 + 5/12, "feet"),
  39761. default: true
  39762. },
  39763. ]
  39764. ))
  39765. characterMakers.push(() => makeCharacter(
  39766. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39767. {
  39768. front: {
  39769. height: math.unit(8 + 6/12, "feet"),
  39770. name: "Front",
  39771. image: {
  39772. source: "./media/characters/essynkardi/front.svg",
  39773. extra: 1541/1457,
  39774. bottom: 47/1588
  39775. }
  39776. },
  39777. },
  39778. [
  39779. {
  39780. name: "Normal",
  39781. height: math.unit(8 + 6/12, "feet"),
  39782. default: true
  39783. },
  39784. ]
  39785. ))
  39786. characterMakers.push(() => makeCharacter(
  39787. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39788. {
  39789. front: {
  39790. height: math.unit(6 + 6/12, "feet"),
  39791. weight: math.unit(7, "lb"),
  39792. name: "Front",
  39793. image: {
  39794. source: "./media/characters/icky/front.svg",
  39795. extra: 813/782,
  39796. bottom: 66/879
  39797. }
  39798. },
  39799. back: {
  39800. height: math.unit(6 + 6/12, "feet"),
  39801. weight: math.unit(7, "lb"),
  39802. name: "Back",
  39803. image: {
  39804. source: "./media/characters/icky/back.svg",
  39805. extra: 754/735,
  39806. bottom: 56/810
  39807. }
  39808. },
  39809. },
  39810. [
  39811. {
  39812. name: "Normal",
  39813. height: math.unit(6 + 6/12, "feet"),
  39814. default: true
  39815. },
  39816. ]
  39817. ))
  39818. characterMakers.push(() => makeCharacter(
  39819. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39820. {
  39821. front: {
  39822. height: math.unit(15, "feet"),
  39823. name: "Front",
  39824. image: {
  39825. source: "./media/characters/rojas/front.svg",
  39826. extra: 1462/1408,
  39827. bottom: 95/1557
  39828. }
  39829. },
  39830. back: {
  39831. height: math.unit(15, "feet"),
  39832. name: "Back",
  39833. image: {
  39834. source: "./media/characters/rojas/back.svg",
  39835. extra: 1023/954,
  39836. bottom: 28/1051
  39837. }
  39838. },
  39839. },
  39840. [
  39841. {
  39842. name: "Normal",
  39843. height: math.unit(15, "feet"),
  39844. default: true
  39845. },
  39846. ]
  39847. ))
  39848. characterMakers.push(() => makeCharacter(
  39849. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39850. {
  39851. frontHuman: {
  39852. height: math.unit(5 + 7/12, "feet"),
  39853. name: "Front (Human)",
  39854. image: {
  39855. source: "./media/characters/alek-dryagan/front-human.svg",
  39856. extra: 1687/1667,
  39857. bottom: 69/1756
  39858. }
  39859. },
  39860. backHuman: {
  39861. height: math.unit(5 + 7/12, "feet"),
  39862. name: "Back (Human)",
  39863. image: {
  39864. source: "./media/characters/alek-dryagan/back-human.svg",
  39865. extra: 1670/1649,
  39866. bottom: 65/1735
  39867. }
  39868. },
  39869. frontDemi: {
  39870. height: math.unit(65, "feet"),
  39871. name: "Front (Demi)",
  39872. image: {
  39873. source: "./media/characters/alek-dryagan/front-demi.svg",
  39874. extra: 1669/1642,
  39875. bottom: 49/1718
  39876. }
  39877. },
  39878. backDemi: {
  39879. height: math.unit(65, "feet"),
  39880. name: "Back (Demi)",
  39881. image: {
  39882. source: "./media/characters/alek-dryagan/back-demi.svg",
  39883. extra: 1658/1637,
  39884. bottom: 40/1698
  39885. }
  39886. },
  39887. mawHuman: {
  39888. height: math.unit(0.3, "feet"),
  39889. name: "Maw (Human)",
  39890. image: {
  39891. source: "./media/characters/alek-dryagan/maw-human.svg"
  39892. }
  39893. },
  39894. mawDemi: {
  39895. height: math.unit(3.8, "feet"),
  39896. name: "Maw (Demi)",
  39897. image: {
  39898. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39899. }
  39900. },
  39901. },
  39902. [
  39903. {
  39904. name: "Normal",
  39905. height: math.unit(5 + 7/12, "feet"),
  39906. default: true
  39907. },
  39908. ]
  39909. ))
  39910. characterMakers.push(() => makeCharacter(
  39911. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39912. {
  39913. frontHuman: {
  39914. height: math.unit(5 + 2/12, "feet"),
  39915. name: "Front (Human)",
  39916. image: {
  39917. source: "./media/characters/gen/front-human.svg",
  39918. extra: 1627/1538,
  39919. bottom: 71/1698
  39920. }
  39921. },
  39922. backHuman: {
  39923. height: math.unit(5 + 2/12, "feet"),
  39924. name: "Back (Human)",
  39925. image: {
  39926. source: "./media/characters/gen/back-human.svg",
  39927. extra: 1638/1548,
  39928. bottom: 69/1707
  39929. }
  39930. },
  39931. frontDemi: {
  39932. height: math.unit(5 + 2/12, "feet"),
  39933. name: "Front (Demi)",
  39934. image: {
  39935. source: "./media/characters/gen/front-demi.svg",
  39936. extra: 1627/1538,
  39937. bottom: 71/1698
  39938. }
  39939. },
  39940. backDemi: {
  39941. height: math.unit(5 + 2/12, "feet"),
  39942. name: "Back (Demi)",
  39943. image: {
  39944. source: "./media/characters/gen/back-demi.svg",
  39945. extra: 1638/1548,
  39946. bottom: 69/1707
  39947. }
  39948. },
  39949. },
  39950. [
  39951. {
  39952. name: "Normal",
  39953. height: math.unit(5 + 2/12, "feet"),
  39954. default: true
  39955. },
  39956. ]
  39957. ))
  39958. characterMakers.push(() => makeCharacter(
  39959. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39960. {
  39961. frontImp: {
  39962. height: math.unit(1 + 11/12, "feet"),
  39963. name: "Front (Imp)",
  39964. image: {
  39965. source: "./media/characters/max-kobold/front-imp.svg",
  39966. extra: 1238/1134,
  39967. bottom: 81/1319
  39968. }
  39969. },
  39970. backImp: {
  39971. height: math.unit(1 + 11/12, "feet"),
  39972. name: "Back (Imp)",
  39973. image: {
  39974. source: "./media/characters/max-kobold/back-imp.svg",
  39975. extra: 1334/1175,
  39976. bottom: 34/1368
  39977. }
  39978. },
  39979. frontDemi: {
  39980. height: math.unit(5 + 9/12, "feet"),
  39981. name: "Front (Demi)",
  39982. image: {
  39983. source: "./media/characters/max-kobold/front-demi.svg",
  39984. extra: 1715/1685,
  39985. bottom: 54/1769
  39986. }
  39987. },
  39988. backDemi: {
  39989. height: math.unit(5 + 9/12, "feet"),
  39990. name: "Back (Demi)",
  39991. image: {
  39992. source: "./media/characters/max-kobold/back-demi.svg",
  39993. extra: 1752/1729,
  39994. bottom: 41/1793
  39995. }
  39996. },
  39997. handImp: {
  39998. height: math.unit(0.45, "feet"),
  39999. name: "Hand (Imp)",
  40000. image: {
  40001. source: "./media/characters/max-kobold/hand.svg"
  40002. }
  40003. },
  40004. pawImp: {
  40005. height: math.unit(0.46, "feet"),
  40006. name: "Paw (Imp)",
  40007. image: {
  40008. source: "./media/characters/max-kobold/paw.svg"
  40009. }
  40010. },
  40011. handDemi: {
  40012. height: math.unit(0.80, "feet"),
  40013. name: "Hand (Demi)",
  40014. image: {
  40015. source: "./media/characters/max-kobold/hand.svg"
  40016. }
  40017. },
  40018. pawDemi: {
  40019. height: math.unit(1.1, "feet"),
  40020. name: "Paw (Demi)",
  40021. image: {
  40022. source: "./media/characters/max-kobold/paw.svg"
  40023. }
  40024. },
  40025. headImp: {
  40026. height: math.unit(1.33, "feet"),
  40027. name: "Head (Imp)",
  40028. image: {
  40029. source: "./media/characters/max-kobold/head-imp.svg"
  40030. }
  40031. },
  40032. mawImp: {
  40033. height: math.unit(0.75, "feet"),
  40034. name: "Maw (Imp)",
  40035. image: {
  40036. source: "./media/characters/max-kobold/maw-imp.svg"
  40037. }
  40038. },
  40039. mawDemi: {
  40040. height: math.unit(0.42, "feet"),
  40041. name: "Maw (Demi)",
  40042. image: {
  40043. source: "./media/characters/max-kobold/maw-demi.svg"
  40044. }
  40045. },
  40046. },
  40047. [
  40048. {
  40049. name: "Normal",
  40050. height: math.unit(1 + 11/12, "feet"),
  40051. default: true
  40052. },
  40053. ]
  40054. ))
  40055. characterMakers.push(() => makeCharacter(
  40056. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40057. {
  40058. front: {
  40059. height: math.unit(7 + 5/12, "feet"),
  40060. name: "Front",
  40061. image: {
  40062. source: "./media/characters/carbon/front.svg",
  40063. extra: 1754/1689,
  40064. bottom: 65/1819
  40065. }
  40066. },
  40067. back: {
  40068. height: math.unit(7 + 5/12, "feet"),
  40069. name: "Back",
  40070. image: {
  40071. source: "./media/characters/carbon/back.svg",
  40072. extra: 1762/1695,
  40073. bottom: 24/1786
  40074. }
  40075. },
  40076. frontGigantamax: {
  40077. height: math.unit(150, "feet"),
  40078. name: "Front (Gigantamax)",
  40079. image: {
  40080. source: "./media/characters/carbon/front-gigantamax.svg",
  40081. extra: 1826/1669,
  40082. bottom: 59/1885
  40083. }
  40084. },
  40085. backGigantamax: {
  40086. height: math.unit(150, "feet"),
  40087. name: "Back (Gigantamax)",
  40088. image: {
  40089. source: "./media/characters/carbon/back-gigantamax.svg",
  40090. extra: 1796/1653,
  40091. bottom: 53/1849
  40092. }
  40093. },
  40094. maw: {
  40095. height: math.unit(0.48, "feet"),
  40096. name: "Maw",
  40097. image: {
  40098. source: "./media/characters/carbon/maw.svg"
  40099. }
  40100. },
  40101. mawGigantamax: {
  40102. height: math.unit(7.5, "feet"),
  40103. name: "Maw (Gigantamax)",
  40104. image: {
  40105. source: "./media/characters/carbon/maw-gigantamax.svg"
  40106. }
  40107. },
  40108. },
  40109. [
  40110. {
  40111. name: "Normal",
  40112. height: math.unit(7 + 5/12, "feet"),
  40113. default: true
  40114. },
  40115. ]
  40116. ))
  40117. characterMakers.push(() => makeCharacter(
  40118. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40119. {
  40120. front: {
  40121. height: math.unit(6, "feet"),
  40122. name: "Front",
  40123. image: {
  40124. source: "./media/characters/maverick/front.svg",
  40125. extra: 1672/1661,
  40126. bottom: 85/1757
  40127. }
  40128. },
  40129. back: {
  40130. height: math.unit(6, "feet"),
  40131. name: "Back",
  40132. image: {
  40133. source: "./media/characters/maverick/back.svg",
  40134. extra: 1642/1631,
  40135. bottom: 38/1680
  40136. }
  40137. },
  40138. },
  40139. [
  40140. {
  40141. name: "Normal",
  40142. height: math.unit(6, "feet"),
  40143. default: true
  40144. },
  40145. ]
  40146. ))
  40147. characterMakers.push(() => makeCharacter(
  40148. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40149. {
  40150. front: {
  40151. height: math.unit(15, "feet"),
  40152. weight: math.unit(615, "lb"),
  40153. name: "Front",
  40154. image: {
  40155. source: "./media/characters/grockle/front.svg",
  40156. extra: 1535/1427,
  40157. bottom: 56/1591
  40158. }
  40159. },
  40160. },
  40161. [
  40162. {
  40163. name: "Normal",
  40164. height: math.unit(15, "feet"),
  40165. default: true
  40166. },
  40167. {
  40168. name: "Large",
  40169. height: math.unit(150, "feet")
  40170. },
  40171. {
  40172. name: "Macro",
  40173. height: math.unit(1876, "feet")
  40174. },
  40175. {
  40176. name: "Mega Macro",
  40177. height: math.unit(121940, "feet")
  40178. },
  40179. {
  40180. name: "Giga Macro",
  40181. height: math.unit(750, "km")
  40182. },
  40183. {
  40184. name: "Tera Macro",
  40185. height: math.unit(750000, "km")
  40186. },
  40187. {
  40188. name: "Galactic",
  40189. height: math.unit(1.4e5, "km")
  40190. },
  40191. {
  40192. name: "Godlike",
  40193. height: math.unit(9.8e280, "galaxies")
  40194. },
  40195. ]
  40196. ))
  40197. characterMakers.push(() => makeCharacter(
  40198. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40199. {
  40200. front: {
  40201. height: math.unit(11, "meters"),
  40202. weight: math.unit(20, "tonnes"),
  40203. name: "Front",
  40204. image: {
  40205. source: "./media/characters/alistair/front.svg",
  40206. extra: 1265/1009,
  40207. bottom: 93/1358
  40208. }
  40209. },
  40210. },
  40211. [
  40212. {
  40213. name: "Normal",
  40214. height: math.unit(11, "meters"),
  40215. default: true
  40216. },
  40217. ]
  40218. ))
  40219. characterMakers.push(() => makeCharacter(
  40220. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40221. {
  40222. front: {
  40223. height: math.unit(5 + 8/12, "feet"),
  40224. name: "Front",
  40225. image: {
  40226. source: "./media/characters/haruka/front.svg",
  40227. extra: 2012/1952,
  40228. bottom: 0/2012
  40229. }
  40230. },
  40231. },
  40232. [
  40233. {
  40234. name: "Normal",
  40235. height: math.unit(5 + 8/12, "feet"),
  40236. default: true
  40237. },
  40238. ]
  40239. ))
  40240. characterMakers.push(() => makeCharacter(
  40241. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40242. {
  40243. back: {
  40244. height: math.unit(9, "feet"),
  40245. name: "Back",
  40246. image: {
  40247. source: "./media/characters/vivian-sylveon/back.svg",
  40248. extra: 1853/1714,
  40249. bottom: 0/1853
  40250. }
  40251. },
  40252. hyper: {
  40253. height: math.unit(5.58, "feet"),
  40254. name: "Hyper",
  40255. preyCapacity: math.unit(2.80616218797, "m^3"),
  40256. image: {
  40257. source: "./media/characters/vivian-sylveon/hyper.svg",
  40258. extra: 999/676,
  40259. bottom: 697/1696
  40260. },
  40261. },
  40262. paw: {
  40263. height: math.unit(1.8, "feet"),
  40264. name: "Paw",
  40265. image: {
  40266. source: "./media/characters/vivian-sylveon/paw.svg"
  40267. }
  40268. },
  40269. danger: {
  40270. height: math.unit(7.5, "feet"),
  40271. name: "DANGER",
  40272. image: {
  40273. source: "./media/characters/vivian-sylveon/danger.svg"
  40274. }
  40275. },
  40276. },
  40277. [
  40278. {
  40279. name: "Normal",
  40280. height: math.unit(9, "feet"),
  40281. default: true
  40282. },
  40283. {
  40284. name: "Macro",
  40285. height: math.unit(500, "feet")
  40286. },
  40287. {
  40288. name: "Megamacro",
  40289. height: math.unit(600, "miles")
  40290. },
  40291. {
  40292. name: "Gigamacro",
  40293. height: math.unit(30000, "miles")
  40294. },
  40295. ]
  40296. ))
  40297. characterMakers.push(() => makeCharacter(
  40298. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40299. {
  40300. anthro: {
  40301. height: math.unit(5 + 10/12, "feet"),
  40302. weight: math.unit(100, "lb"),
  40303. name: "Anthro",
  40304. image: {
  40305. source: "./media/characters/daiki/anthro.svg",
  40306. extra: 1115/1027,
  40307. bottom: 69/1184
  40308. }
  40309. },
  40310. feral: {
  40311. height: math.unit(200, "feet"),
  40312. name: "Feral",
  40313. image: {
  40314. source: "./media/characters/daiki/feral.svg",
  40315. extra: 1256/313,
  40316. bottom: 39/1295
  40317. }
  40318. },
  40319. feralHead: {
  40320. height: math.unit(171, "feet"),
  40321. name: "Feral Head",
  40322. image: {
  40323. source: "./media/characters/daiki/feral-head.svg"
  40324. }
  40325. },
  40326. manaDragon: {
  40327. height: math.unit(170, "meters"),
  40328. name: "Mana-dragon",
  40329. image: {
  40330. source: "./media/characters/daiki/mana-dragon.svg",
  40331. extra: 763/420,
  40332. bottom: 97/860
  40333. }
  40334. },
  40335. },
  40336. [
  40337. {
  40338. name: "Normal",
  40339. height: math.unit(5 + 10/12, "feet"),
  40340. default: true
  40341. },
  40342. ]
  40343. ))
  40344. characterMakers.push(() => makeCharacter(
  40345. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40346. {
  40347. fullyEquippedFront: {
  40348. height: math.unit(3 + 1/12, "feet"),
  40349. weight: math.unit(24, "lb"),
  40350. name: "Fully Equipped (Front)",
  40351. image: {
  40352. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40353. extra: 687/605,
  40354. bottom: 18/705
  40355. }
  40356. },
  40357. fullyEquippedBack: {
  40358. height: math.unit(3 + 1/12, "feet"),
  40359. weight: math.unit(24, "lb"),
  40360. name: "Fully Equipped (Back)",
  40361. image: {
  40362. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40363. extra: 689/590,
  40364. bottom: 18/707
  40365. }
  40366. },
  40367. dailyWear: {
  40368. height: math.unit(3 + 1/12, "feet"),
  40369. weight: math.unit(24, "lb"),
  40370. name: "Daily Wear",
  40371. image: {
  40372. source: "./media/characters/tea-spot/daily-wear.svg",
  40373. extra: 701/620,
  40374. bottom: 21/722
  40375. }
  40376. },
  40377. maidWork: {
  40378. height: math.unit(3 + 1/12, "feet"),
  40379. weight: math.unit(24, "lb"),
  40380. name: "Maid Work",
  40381. image: {
  40382. source: "./media/characters/tea-spot/maid-work.svg",
  40383. extra: 693/609,
  40384. bottom: 15/708
  40385. }
  40386. },
  40387. },
  40388. [
  40389. {
  40390. name: "Normal",
  40391. height: math.unit(3 + 1/12, "feet"),
  40392. default: true
  40393. },
  40394. ]
  40395. ))
  40396. characterMakers.push(() => makeCharacter(
  40397. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40398. {
  40399. front: {
  40400. height: math.unit(175, "cm"),
  40401. weight: math.unit(75, "kg"),
  40402. name: "Front",
  40403. image: {
  40404. source: "./media/characters/chee/front.svg",
  40405. extra: 1796/1740,
  40406. bottom: 40/1836
  40407. }
  40408. },
  40409. },
  40410. [
  40411. {
  40412. name: "Micro-Micro",
  40413. height: math.unit(1, "nm")
  40414. },
  40415. {
  40416. name: "Micro-erst",
  40417. height: math.unit(1, "micrometer")
  40418. },
  40419. {
  40420. name: "Micro-er",
  40421. height: math.unit(1, "cm")
  40422. },
  40423. {
  40424. name: "Normal",
  40425. height: math.unit(175, "cm"),
  40426. default: true
  40427. },
  40428. {
  40429. name: "Macro",
  40430. height: math.unit(100, "m")
  40431. },
  40432. {
  40433. name: "Macro-er",
  40434. height: math.unit(1, "km")
  40435. },
  40436. {
  40437. name: "Macro-erst",
  40438. height: math.unit(10, "km")
  40439. },
  40440. {
  40441. name: "Macro-Macro",
  40442. height: math.unit(100, "km")
  40443. },
  40444. ]
  40445. ))
  40446. characterMakers.push(() => makeCharacter(
  40447. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40448. {
  40449. front: {
  40450. height: math.unit(11 + 9/12, "feet"),
  40451. weight: math.unit(935, "lb"),
  40452. name: "Front",
  40453. image: {
  40454. source: "./media/characters/kingsley/front.svg",
  40455. extra: 1803/1674,
  40456. bottom: 127/1930
  40457. }
  40458. },
  40459. frontNude: {
  40460. height: math.unit(11 + 9/12, "feet"),
  40461. weight: math.unit(935, "lb"),
  40462. name: "Front (Nude)",
  40463. image: {
  40464. source: "./media/characters/kingsley/front-nude.svg",
  40465. extra: 1803/1674,
  40466. bottom: 127/1930
  40467. }
  40468. },
  40469. },
  40470. [
  40471. {
  40472. name: "Normal",
  40473. height: math.unit(11 + 9/12, "feet"),
  40474. default: true
  40475. },
  40476. ]
  40477. ))
  40478. characterMakers.push(() => makeCharacter(
  40479. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40480. {
  40481. side: {
  40482. height: math.unit(9, "feet"),
  40483. name: "Side",
  40484. image: {
  40485. source: "./media/characters/rymel/side.svg",
  40486. extra: 792/469,
  40487. bottom: 121/913
  40488. }
  40489. },
  40490. maw: {
  40491. height: math.unit(2.4, "meters"),
  40492. name: "Maw",
  40493. image: {
  40494. source: "./media/characters/rymel/maw.svg"
  40495. }
  40496. },
  40497. },
  40498. [
  40499. {
  40500. name: "House Drake",
  40501. height: math.unit(2, "feet")
  40502. },
  40503. {
  40504. name: "Reduced",
  40505. height: math.unit(4.5, "feet")
  40506. },
  40507. {
  40508. name: "Normal",
  40509. height: math.unit(9, "feet"),
  40510. default: true
  40511. },
  40512. ]
  40513. ))
  40514. characterMakers.push(() => makeCharacter(
  40515. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40516. {
  40517. front: {
  40518. height: math.unit(1.74, "meters"),
  40519. weight: math.unit(55, "kg"),
  40520. name: "Front",
  40521. image: {
  40522. source: "./media/characters/rubus/front.svg",
  40523. extra: 1894/1742,
  40524. bottom: 44/1938
  40525. }
  40526. },
  40527. },
  40528. [
  40529. {
  40530. name: "Normal",
  40531. height: math.unit(1.74, "meters"),
  40532. default: true
  40533. },
  40534. ]
  40535. ))
  40536. characterMakers.push(() => makeCharacter(
  40537. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40538. {
  40539. front: {
  40540. height: math.unit(5 + 2/12, "feet"),
  40541. weight: math.unit(112, "lb"),
  40542. name: "Front",
  40543. image: {
  40544. source: "./media/characters/cassie-kingston/front.svg",
  40545. extra: 1438/1390,
  40546. bottom: 47/1485
  40547. }
  40548. },
  40549. },
  40550. [
  40551. {
  40552. name: "Normal",
  40553. height: math.unit(5 + 2/12, "feet"),
  40554. default: true
  40555. },
  40556. {
  40557. name: "Macro",
  40558. height: math.unit(128, "feet")
  40559. },
  40560. {
  40561. name: "Megamacro",
  40562. height: math.unit(2.56, "miles")
  40563. },
  40564. ]
  40565. ))
  40566. characterMakers.push(() => makeCharacter(
  40567. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40568. {
  40569. front: {
  40570. height: math.unit(7, "feet"),
  40571. name: "Front",
  40572. image: {
  40573. source: "./media/characters/fox/front.svg",
  40574. extra: 1798/1703,
  40575. bottom: 55/1853
  40576. }
  40577. },
  40578. back: {
  40579. height: math.unit(7, "feet"),
  40580. name: "Back",
  40581. image: {
  40582. source: "./media/characters/fox/back.svg",
  40583. extra: 1748/1649,
  40584. bottom: 32/1780
  40585. }
  40586. },
  40587. head: {
  40588. height: math.unit(1.95, "feet"),
  40589. name: "Head",
  40590. image: {
  40591. source: "./media/characters/fox/head.svg"
  40592. }
  40593. },
  40594. dick: {
  40595. height: math.unit(1.33, "feet"),
  40596. name: "Dick",
  40597. image: {
  40598. source: "./media/characters/fox/dick.svg"
  40599. }
  40600. },
  40601. foot: {
  40602. height: math.unit(1, "feet"),
  40603. name: "Foot",
  40604. image: {
  40605. source: "./media/characters/fox/foot.svg"
  40606. }
  40607. },
  40608. paw: {
  40609. height: math.unit(0.92, "feet"),
  40610. name: "Paw",
  40611. image: {
  40612. source: "./media/characters/fox/paw.svg"
  40613. }
  40614. },
  40615. },
  40616. [
  40617. {
  40618. name: "Small",
  40619. height: math.unit(3, "inches")
  40620. },
  40621. {
  40622. name: "\"Realistic\"",
  40623. height: math.unit(7, "feet")
  40624. },
  40625. {
  40626. name: "Normal",
  40627. height: math.unit(150, "feet"),
  40628. default: true
  40629. },
  40630. {
  40631. name: "BIG",
  40632. height: math.unit(1200, "feet")
  40633. },
  40634. {
  40635. name: "👀",
  40636. height: math.unit(5, "miles")
  40637. },
  40638. {
  40639. name: "👀👀👀",
  40640. height: math.unit(64, "miles")
  40641. },
  40642. ]
  40643. ))
  40644. characterMakers.push(() => makeCharacter(
  40645. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40646. {
  40647. front: {
  40648. height: math.unit(625, "feet"),
  40649. name: "Front",
  40650. image: {
  40651. source: "./media/characters/asonja-rossa/front.svg",
  40652. extra: 1833/1686,
  40653. bottom: 24/1857
  40654. }
  40655. },
  40656. back: {
  40657. height: math.unit(625, "feet"),
  40658. name: "Back",
  40659. image: {
  40660. source: "./media/characters/asonja-rossa/back.svg",
  40661. extra: 1852/1753,
  40662. bottom: 26/1878
  40663. }
  40664. },
  40665. },
  40666. [
  40667. {
  40668. name: "Macro",
  40669. height: math.unit(625, "feet"),
  40670. default: true
  40671. },
  40672. ]
  40673. ))
  40674. characterMakers.push(() => makeCharacter(
  40675. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40676. {
  40677. side: {
  40678. height: math.unit(8, "feet"),
  40679. name: "Side",
  40680. image: {
  40681. source: "./media/characters/rezukii/side.svg",
  40682. extra: 979/542,
  40683. bottom: 87/1066
  40684. }
  40685. },
  40686. sitting: {
  40687. height: math.unit(14.6, "feet"),
  40688. name: "Sitting",
  40689. image: {
  40690. source: "./media/characters/rezukii/sitting.svg",
  40691. extra: 1023/813,
  40692. bottom: 45/1068
  40693. }
  40694. },
  40695. },
  40696. [
  40697. {
  40698. name: "Tiny",
  40699. height: math.unit(2, "feet")
  40700. },
  40701. {
  40702. name: "Smol",
  40703. height: math.unit(4, "feet")
  40704. },
  40705. {
  40706. name: "Normal",
  40707. height: math.unit(8, "feet"),
  40708. default: true
  40709. },
  40710. {
  40711. name: "Big",
  40712. height: math.unit(12, "feet")
  40713. },
  40714. {
  40715. name: "Macro",
  40716. height: math.unit(30, "feet")
  40717. },
  40718. ]
  40719. ))
  40720. characterMakers.push(() => makeCharacter(
  40721. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40722. {
  40723. front: {
  40724. height: math.unit(14, "feet"),
  40725. weight: math.unit(9.5, "tonnes"),
  40726. name: "Front",
  40727. image: {
  40728. source: "./media/characters/dawnheart/front.svg",
  40729. extra: 2792/2675,
  40730. bottom: 64/2856
  40731. }
  40732. },
  40733. },
  40734. [
  40735. {
  40736. name: "Normal",
  40737. height: math.unit(14, "feet"),
  40738. default: true
  40739. },
  40740. ]
  40741. ))
  40742. characterMakers.push(() => makeCharacter(
  40743. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40744. {
  40745. front: {
  40746. height: math.unit(1.7, "m"),
  40747. name: "Front",
  40748. image: {
  40749. source: "./media/characters/gladi/front.svg",
  40750. extra: 1460/1362,
  40751. bottom: 19/1479
  40752. }
  40753. },
  40754. back: {
  40755. height: math.unit(1.7, "m"),
  40756. name: "Back",
  40757. image: {
  40758. source: "./media/characters/gladi/back.svg",
  40759. extra: 1459/1357,
  40760. bottom: 12/1471
  40761. }
  40762. },
  40763. feral: {
  40764. height: math.unit(2.05, "m"),
  40765. name: "Feral",
  40766. image: {
  40767. source: "./media/characters/gladi/feral.svg",
  40768. extra: 821/557,
  40769. bottom: 91/912
  40770. }
  40771. },
  40772. },
  40773. [
  40774. {
  40775. name: "Shortest",
  40776. height: math.unit(70, "cm")
  40777. },
  40778. {
  40779. name: "Normal",
  40780. height: math.unit(1.7, "m")
  40781. },
  40782. {
  40783. name: "Macro",
  40784. height: math.unit(10, "m"),
  40785. default: true
  40786. },
  40787. {
  40788. name: "Tallest",
  40789. height: math.unit(200, "m")
  40790. },
  40791. ]
  40792. ))
  40793. characterMakers.push(() => makeCharacter(
  40794. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40795. {
  40796. front: {
  40797. height: math.unit(5 + 7/12, "feet"),
  40798. weight: math.unit(2, "tons"),
  40799. name: "Front",
  40800. image: {
  40801. source: "./media/characters/erdno/front.svg",
  40802. extra: 1234/1129,
  40803. bottom: 35/1269
  40804. }
  40805. },
  40806. angled: {
  40807. height: math.unit(5 + 7/12, "feet"),
  40808. weight: math.unit(2, "tons"),
  40809. name: "Angled",
  40810. image: {
  40811. source: "./media/characters/erdno/angled.svg",
  40812. extra: 1185/1139,
  40813. bottom: 36/1221
  40814. }
  40815. },
  40816. side: {
  40817. height: math.unit(5 + 7/12, "feet"),
  40818. weight: math.unit(2, "tons"),
  40819. name: "Side",
  40820. image: {
  40821. source: "./media/characters/erdno/side.svg",
  40822. extra: 1191/1144,
  40823. bottom: 40/1231
  40824. }
  40825. },
  40826. back: {
  40827. height: math.unit(5 + 7/12, "feet"),
  40828. weight: math.unit(2, "tons"),
  40829. name: "Back",
  40830. image: {
  40831. source: "./media/characters/erdno/back.svg",
  40832. extra: 1202/1146,
  40833. bottom: 17/1219
  40834. }
  40835. },
  40836. frontNsfw: {
  40837. height: math.unit(5 + 7/12, "feet"),
  40838. weight: math.unit(2, "tons"),
  40839. name: "Front (NSFW)",
  40840. image: {
  40841. source: "./media/characters/erdno/front-nsfw.svg",
  40842. extra: 1234/1129,
  40843. bottom: 35/1269
  40844. }
  40845. },
  40846. angledNsfw: {
  40847. height: math.unit(5 + 7/12, "feet"),
  40848. weight: math.unit(2, "tons"),
  40849. name: "Angled (NSFW)",
  40850. image: {
  40851. source: "./media/characters/erdno/angled-nsfw.svg",
  40852. extra: 1185/1139,
  40853. bottom: 36/1221
  40854. }
  40855. },
  40856. sideNsfw: {
  40857. height: math.unit(5 + 7/12, "feet"),
  40858. weight: math.unit(2, "tons"),
  40859. name: "Side (NSFW)",
  40860. image: {
  40861. source: "./media/characters/erdno/side-nsfw.svg",
  40862. extra: 1191/1144,
  40863. bottom: 40/1231
  40864. }
  40865. },
  40866. backNsfw: {
  40867. height: math.unit(5 + 7/12, "feet"),
  40868. weight: math.unit(2, "tons"),
  40869. name: "Back (NSFW)",
  40870. image: {
  40871. source: "./media/characters/erdno/back-nsfw.svg",
  40872. extra: 1202/1146,
  40873. bottom: 17/1219
  40874. }
  40875. },
  40876. frontHyper: {
  40877. height: math.unit(5 + 7/12, "feet"),
  40878. weight: math.unit(2, "tons"),
  40879. name: "Front (Hyper)",
  40880. image: {
  40881. source: "./media/characters/erdno/front-hyper.svg",
  40882. extra: 1298/1136,
  40883. bottom: 35/1333
  40884. }
  40885. },
  40886. },
  40887. [
  40888. {
  40889. name: "Normal",
  40890. height: math.unit(5 + 7/12, "feet"),
  40891. default: true
  40892. },
  40893. {
  40894. name: "Big",
  40895. height: math.unit(5.7, "meters")
  40896. },
  40897. {
  40898. name: "Macro",
  40899. height: math.unit(5.7, "kilometers")
  40900. },
  40901. {
  40902. name: "Megamacro",
  40903. height: math.unit(5.7, "earths")
  40904. },
  40905. ]
  40906. ))
  40907. characterMakers.push(() => makeCharacter(
  40908. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40909. {
  40910. front: {
  40911. height: math.unit(5 + 10/12, "feet"),
  40912. weight: math.unit(150, "lb"),
  40913. name: "Front",
  40914. image: {
  40915. source: "./media/characters/jamie/front.svg",
  40916. extra: 1908/1768,
  40917. bottom: 19/1927
  40918. }
  40919. },
  40920. },
  40921. [
  40922. {
  40923. name: "Minimum",
  40924. height: math.unit(2, "cm")
  40925. },
  40926. {
  40927. name: "Micro",
  40928. height: math.unit(3, "inches")
  40929. },
  40930. {
  40931. name: "Normal",
  40932. height: math.unit(5 + 10/12, "feet"),
  40933. default: true
  40934. },
  40935. {
  40936. name: "Macro",
  40937. height: math.unit(150, "feet")
  40938. },
  40939. {
  40940. name: "Megamacro",
  40941. height: math.unit(10000, "m")
  40942. },
  40943. ]
  40944. ))
  40945. characterMakers.push(() => makeCharacter(
  40946. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40947. {
  40948. front: {
  40949. height: math.unit(2, "meters"),
  40950. weight: math.unit(100, "kg"),
  40951. name: "Front",
  40952. image: {
  40953. source: "./media/characters/shiron/front.svg",
  40954. extra: 2103/1985,
  40955. bottom: 98/2201
  40956. }
  40957. },
  40958. back: {
  40959. height: math.unit(2, "meters"),
  40960. weight: math.unit(100, "kg"),
  40961. name: "Back",
  40962. image: {
  40963. source: "./media/characters/shiron/back.svg",
  40964. extra: 2110/2015,
  40965. bottom: 89/2199
  40966. }
  40967. },
  40968. hand: {
  40969. height: math.unit(0.96, "feet"),
  40970. name: "Hand",
  40971. image: {
  40972. source: "./media/characters/shiron/hand.svg"
  40973. }
  40974. },
  40975. foot: {
  40976. height: math.unit(1.464, "feet"),
  40977. name: "Foot",
  40978. image: {
  40979. source: "./media/characters/shiron/foot.svg"
  40980. }
  40981. },
  40982. },
  40983. [
  40984. {
  40985. name: "Normal",
  40986. height: math.unit(2, "meters")
  40987. },
  40988. {
  40989. name: "Macro",
  40990. height: math.unit(500, "meters"),
  40991. default: true
  40992. },
  40993. {
  40994. name: "Megamacro",
  40995. height: math.unit(20, "km")
  40996. },
  40997. ]
  40998. ))
  40999. characterMakers.push(() => makeCharacter(
  41000. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41001. {
  41002. front: {
  41003. height: math.unit(6, "feet"),
  41004. name: "Front",
  41005. image: {
  41006. source: "./media/characters/sam/front.svg",
  41007. extra: 849/826,
  41008. bottom: 19/868
  41009. }
  41010. },
  41011. },
  41012. [
  41013. {
  41014. name: "Normal",
  41015. height: math.unit(6, "feet"),
  41016. default: true
  41017. },
  41018. ]
  41019. ))
  41020. characterMakers.push(() => makeCharacter(
  41021. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41022. {
  41023. front: {
  41024. height: math.unit(8 + 4/12, "feet"),
  41025. weight: math.unit(122, "kg"),
  41026. name: "Front",
  41027. image: {
  41028. source: "./media/characters/namori-kurogawa/front.svg",
  41029. extra: 1894/1576,
  41030. bottom: 34/1928
  41031. }
  41032. },
  41033. },
  41034. [
  41035. {
  41036. name: "Normal",
  41037. height: math.unit(8 + 4/12, "feet"),
  41038. default: true
  41039. },
  41040. ]
  41041. ))
  41042. characterMakers.push(() => makeCharacter(
  41043. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41044. {
  41045. front: {
  41046. height: math.unit(9, "feet"),
  41047. weight: math.unit(621, "lb"),
  41048. name: "Front",
  41049. image: {
  41050. source: "./media/characters/unmru/front.svg",
  41051. extra: 1853/1747,
  41052. bottom: 73/1926
  41053. }
  41054. },
  41055. side: {
  41056. height: math.unit(9, "feet"),
  41057. weight: math.unit(621, "lb"),
  41058. name: "Side",
  41059. image: {
  41060. source: "./media/characters/unmru/side.svg",
  41061. extra: 1781/1671,
  41062. bottom: 127/1908
  41063. }
  41064. },
  41065. back: {
  41066. height: math.unit(9, "feet"),
  41067. weight: math.unit(621, "lb"),
  41068. name: "Back",
  41069. image: {
  41070. source: "./media/characters/unmru/back.svg",
  41071. extra: 1894/1765,
  41072. bottom: 75/1969
  41073. }
  41074. },
  41075. dick: {
  41076. height: math.unit(3, "feet"),
  41077. weight: math.unit(35, "lb"),
  41078. name: "Dick",
  41079. image: {
  41080. source: "./media/characters/unmru/dick.svg"
  41081. }
  41082. },
  41083. },
  41084. [
  41085. {
  41086. name: "Normal",
  41087. height: math.unit(9, "feet")
  41088. },
  41089. {
  41090. name: "Natural",
  41091. height: math.unit(27, "feet"),
  41092. default: true
  41093. },
  41094. {
  41095. name: "Giant",
  41096. height: math.unit(90, "feet")
  41097. },
  41098. {
  41099. name: "Kaiju",
  41100. height: math.unit(270, "feet")
  41101. },
  41102. {
  41103. name: "Macro",
  41104. height: math.unit(900, "feet")
  41105. },
  41106. {
  41107. name: "Macro+",
  41108. height: math.unit(2700, "feet")
  41109. },
  41110. {
  41111. name: "Megamacro",
  41112. height: math.unit(9000, "feet")
  41113. },
  41114. {
  41115. name: "City-Crushing",
  41116. height: math.unit(27000, "feet")
  41117. },
  41118. {
  41119. name: "Mountain-Mashing",
  41120. height: math.unit(90000, "feet")
  41121. },
  41122. {
  41123. name: "Earth-Eclipsing",
  41124. height: math.unit(2.7e8, "feet")
  41125. },
  41126. {
  41127. name: "Sol-Swallowing",
  41128. height: math.unit(9e10, "feet")
  41129. },
  41130. {
  41131. name: "Majoris-Munching",
  41132. height: math.unit(2.7e13, "feet")
  41133. },
  41134. ]
  41135. ))
  41136. characterMakers.push(() => makeCharacter(
  41137. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41138. {
  41139. front: {
  41140. height: math.unit(1, "inch"),
  41141. name: "Front",
  41142. image: {
  41143. source: "./media/characters/squeaks-mouse/front.svg",
  41144. extra: 352/308,
  41145. bottom: 25/377
  41146. }
  41147. },
  41148. },
  41149. [
  41150. {
  41151. name: "Micro",
  41152. height: math.unit(1, "inch"),
  41153. default: true
  41154. },
  41155. ]
  41156. ))
  41157. characterMakers.push(() => makeCharacter(
  41158. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41159. {
  41160. side: {
  41161. height: math.unit(35, "feet"),
  41162. name: "Side",
  41163. image: {
  41164. source: "./media/characters/sayko/side.svg",
  41165. extra: 1697/1021,
  41166. bottom: 82/1779
  41167. }
  41168. },
  41169. head: {
  41170. height: math.unit(16, "feet"),
  41171. name: "Head",
  41172. image: {
  41173. source: "./media/characters/sayko/head.svg"
  41174. }
  41175. },
  41176. forepaw: {
  41177. height: math.unit(7.85, "feet"),
  41178. name: "Forepaw",
  41179. image: {
  41180. source: "./media/characters/sayko/forepaw.svg"
  41181. }
  41182. },
  41183. hindpaw: {
  41184. height: math.unit(8.8, "feet"),
  41185. name: "Hindpaw",
  41186. image: {
  41187. source: "./media/characters/sayko/hindpaw.svg"
  41188. }
  41189. },
  41190. },
  41191. [
  41192. {
  41193. name: "Normal",
  41194. height: math.unit(35, "feet"),
  41195. default: true
  41196. },
  41197. {
  41198. name: "Colossus",
  41199. height: math.unit(100, "meters")
  41200. },
  41201. {
  41202. name: "\"Small\" Deity",
  41203. height: math.unit(1, "km")
  41204. },
  41205. {
  41206. name: "\"Large\" Deity",
  41207. height: math.unit(15, "km")
  41208. },
  41209. ]
  41210. ))
  41211. characterMakers.push(() => makeCharacter(
  41212. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41213. {
  41214. front: {
  41215. height: math.unit(6, "feet"),
  41216. weight: math.unit(250, "lb"),
  41217. name: "Front",
  41218. image: {
  41219. source: "./media/characters/mukiro/front.svg",
  41220. extra: 1368/1310,
  41221. bottom: 34/1402
  41222. }
  41223. },
  41224. },
  41225. [
  41226. {
  41227. name: "Normal",
  41228. height: math.unit(6, "feet"),
  41229. default: true
  41230. },
  41231. ]
  41232. ))
  41233. characterMakers.push(() => makeCharacter(
  41234. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41235. {
  41236. front: {
  41237. height: math.unit(12 + 4/12, "feet"),
  41238. name: "Front",
  41239. image: {
  41240. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41241. extra: 1346/1311,
  41242. bottom: 65/1411
  41243. }
  41244. },
  41245. },
  41246. [
  41247. {
  41248. name: "Base",
  41249. height: math.unit(12 + 4/12, "feet"),
  41250. default: true
  41251. },
  41252. {
  41253. name: "Macro",
  41254. height: math.unit(150, "feet")
  41255. },
  41256. {
  41257. name: "Mega",
  41258. height: math.unit(2, "miles")
  41259. },
  41260. {
  41261. name: "Demi God",
  41262. height: math.unit(4, "AU")
  41263. },
  41264. {
  41265. name: "God Size",
  41266. height: math.unit(1, "universe")
  41267. },
  41268. ]
  41269. ))
  41270. characterMakers.push(() => makeCharacter(
  41271. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41272. {
  41273. front: {
  41274. height: math.unit(3 + 3/12, "feet"),
  41275. weight: math.unit(88, "lb"),
  41276. name: "Front",
  41277. image: {
  41278. source: "./media/characters/trey/front.svg",
  41279. extra: 1815/1509,
  41280. bottom: 60/1875
  41281. }
  41282. },
  41283. },
  41284. [
  41285. {
  41286. name: "Normal",
  41287. height: math.unit(3 + 3/12, "feet"),
  41288. default: true
  41289. },
  41290. ]
  41291. ))
  41292. characterMakers.push(() => makeCharacter(
  41293. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41294. {
  41295. front: {
  41296. height: math.unit(4, "meters"),
  41297. name: "Front",
  41298. image: {
  41299. source: "./media/characters/adelonda/front.svg",
  41300. extra: 1077/982,
  41301. bottom: 39/1116
  41302. }
  41303. },
  41304. back: {
  41305. height: math.unit(4, "meters"),
  41306. name: "Back",
  41307. image: {
  41308. source: "./media/characters/adelonda/back.svg",
  41309. extra: 1105/1003,
  41310. bottom: 25/1130
  41311. }
  41312. },
  41313. feral: {
  41314. height: math.unit(40/1.5, "meters"),
  41315. name: "Feral",
  41316. image: {
  41317. source: "./media/characters/adelonda/feral.svg",
  41318. extra: 597/271,
  41319. bottom: 387/984
  41320. }
  41321. },
  41322. },
  41323. [
  41324. {
  41325. name: "Normal",
  41326. height: math.unit(4, "meters"),
  41327. default: true
  41328. },
  41329. ]
  41330. ))
  41331. characterMakers.push(() => makeCharacter(
  41332. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41333. {
  41334. front: {
  41335. height: math.unit(8 + 4/12, "feet"),
  41336. weight: math.unit(670, "lb"),
  41337. name: "Front",
  41338. image: {
  41339. source: "./media/characters/acadiel/front.svg",
  41340. extra: 1901/1595,
  41341. bottom: 142/2043
  41342. }
  41343. },
  41344. },
  41345. [
  41346. {
  41347. name: "Normal",
  41348. height: math.unit(8 + 4/12, "feet"),
  41349. default: true
  41350. },
  41351. {
  41352. name: "Macro",
  41353. height: math.unit(200, "feet")
  41354. },
  41355. ]
  41356. ))
  41357. characterMakers.push(() => makeCharacter(
  41358. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41359. {
  41360. front: {
  41361. height: math.unit(6 + 2/12, "feet"),
  41362. weight: math.unit(185, "lb"),
  41363. name: "Front",
  41364. image: {
  41365. source: "./media/characters/kayne-ein/front.svg",
  41366. extra: 1780/1560,
  41367. bottom: 81/1861
  41368. }
  41369. },
  41370. },
  41371. [
  41372. {
  41373. name: "Normal",
  41374. height: math.unit(6 + 2/12, "feet"),
  41375. default: true
  41376. },
  41377. {
  41378. name: "Transformation Stage",
  41379. height: math.unit(15, "feet")
  41380. },
  41381. {
  41382. name: "Macro",
  41383. height: math.unit(150, "feet")
  41384. },
  41385. {
  41386. name: "Earth's Shadow",
  41387. height: math.unit(6200, "miles")
  41388. },
  41389. {
  41390. name: "Universal Demon",
  41391. height: math.unit(28e9, "parsecs")
  41392. },
  41393. {
  41394. name: "Multiverse God",
  41395. height: math.unit(3, "multiverses")
  41396. },
  41397. ]
  41398. ))
  41399. characterMakers.push(() => makeCharacter(
  41400. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41401. {
  41402. front: {
  41403. height: math.unit(5 + 5/12, "feet"),
  41404. name: "Front",
  41405. image: {
  41406. source: "./media/characters/fawn/front.svg",
  41407. extra: 1873/1731,
  41408. bottom: 95/1968
  41409. }
  41410. },
  41411. back: {
  41412. height: math.unit(5 + 5/12, "feet"),
  41413. name: "Back",
  41414. image: {
  41415. source: "./media/characters/fawn/back.svg",
  41416. extra: 1813/1700,
  41417. bottom: 14/1827
  41418. }
  41419. },
  41420. hoof: {
  41421. height: math.unit(1.45, "feet"),
  41422. name: "Hoof",
  41423. image: {
  41424. source: "./media/characters/fawn/hoof.svg"
  41425. }
  41426. },
  41427. },
  41428. [
  41429. {
  41430. name: "Normal",
  41431. height: math.unit(5 + 5/12, "feet"),
  41432. default: true
  41433. },
  41434. ]
  41435. ))
  41436. characterMakers.push(() => makeCharacter(
  41437. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41438. {
  41439. front: {
  41440. height: math.unit(2 + 5/12, "feet"),
  41441. name: "Front",
  41442. image: {
  41443. source: "./media/characters/orion/front.svg",
  41444. extra: 1366/1304,
  41445. bottom: 43/1409
  41446. }
  41447. },
  41448. paw: {
  41449. height: math.unit(0.52, "feet"),
  41450. name: "Paw",
  41451. image: {
  41452. source: "./media/characters/orion/paw.svg"
  41453. }
  41454. },
  41455. },
  41456. [
  41457. {
  41458. name: "Normal",
  41459. height: math.unit(2 + 5/12, "feet"),
  41460. default: true
  41461. },
  41462. ]
  41463. ))
  41464. characterMakers.push(() => makeCharacter(
  41465. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41466. {
  41467. front: {
  41468. height: math.unit(5 + 10/12, "feet"),
  41469. name: "Front",
  41470. image: {
  41471. source: "./media/characters/vera/front.svg",
  41472. extra: 1680/1575,
  41473. bottom: 49/1729
  41474. }
  41475. },
  41476. back: {
  41477. height: math.unit(5 + 10/12, "feet"),
  41478. name: "Back",
  41479. image: {
  41480. source: "./media/characters/vera/back.svg",
  41481. extra: 1700/1588,
  41482. bottom: 18/1718
  41483. }
  41484. },
  41485. arcanine: {
  41486. height: math.unit(6 + 8/12, "feet"),
  41487. name: "Arcanine",
  41488. image: {
  41489. source: "./media/characters/vera/arcanine.svg",
  41490. extra: 1590/1511,
  41491. bottom: 71/1661
  41492. }
  41493. },
  41494. maw: {
  41495. height: math.unit(0.82, "feet"),
  41496. name: "Maw",
  41497. image: {
  41498. source: "./media/characters/vera/maw.svg"
  41499. }
  41500. },
  41501. mawArcanine: {
  41502. height: math.unit(0.97, "feet"),
  41503. name: "Maw (Arcanine)",
  41504. image: {
  41505. source: "./media/characters/vera/maw-arcanine.svg"
  41506. }
  41507. },
  41508. paw: {
  41509. height: math.unit(0.75, "feet"),
  41510. name: "Paw",
  41511. image: {
  41512. source: "./media/characters/vera/paw.svg"
  41513. }
  41514. },
  41515. pawprint: {
  41516. height: math.unit(0.52, "feet"),
  41517. name: "Pawprint",
  41518. image: {
  41519. source: "./media/characters/vera/pawprint.svg"
  41520. }
  41521. },
  41522. },
  41523. [
  41524. {
  41525. name: "Normal",
  41526. height: math.unit(5 + 10/12, "feet"),
  41527. default: true
  41528. },
  41529. {
  41530. name: "Macro",
  41531. height: math.unit(75, "feet")
  41532. },
  41533. ]
  41534. ))
  41535. characterMakers.push(() => makeCharacter(
  41536. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41537. {
  41538. front: {
  41539. height: math.unit(4, "feet"),
  41540. weight: math.unit(40, "lb"),
  41541. name: "Front",
  41542. image: {
  41543. source: "./media/characters/orvan-rabbit/front.svg",
  41544. extra: 1896/1642,
  41545. bottom: 29/1925
  41546. }
  41547. },
  41548. },
  41549. [
  41550. {
  41551. name: "Normal",
  41552. height: math.unit(4, "feet"),
  41553. default: true
  41554. },
  41555. ]
  41556. ))
  41557. characterMakers.push(() => makeCharacter(
  41558. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41559. {
  41560. front: {
  41561. height: math.unit(6, "feet"),
  41562. weight: math.unit(168, "lb"),
  41563. name: "Front",
  41564. image: {
  41565. source: "./media/characters/lisa/front.svg",
  41566. extra: 2065/1867,
  41567. bottom: 46/2111
  41568. }
  41569. },
  41570. back: {
  41571. height: math.unit(6, "feet"),
  41572. weight: math.unit(168, "lb"),
  41573. name: "Back",
  41574. image: {
  41575. source: "./media/characters/lisa/back.svg",
  41576. extra: 1982/1838,
  41577. bottom: 29/2011
  41578. }
  41579. },
  41580. maw: {
  41581. height: math.unit(0.81, "feet"),
  41582. name: "Maw",
  41583. image: {
  41584. source: "./media/characters/lisa/maw.svg"
  41585. }
  41586. },
  41587. paw: {
  41588. height: math.unit(0.9, "feet"),
  41589. name: "Paw",
  41590. image: {
  41591. source: "./media/characters/lisa/paw.svg"
  41592. }
  41593. },
  41594. caribousune: {
  41595. height: math.unit(7 + 2/12, "feet"),
  41596. weight: math.unit(268, "lb"),
  41597. name: "Caribousune",
  41598. image: {
  41599. source: "./media/characters/lisa/caribousune.svg",
  41600. extra: 1843/1633,
  41601. bottom: 29/1872
  41602. }
  41603. },
  41604. frontCaribousune: {
  41605. height: math.unit(7 + 2/12, "feet"),
  41606. weight: math.unit(268, "lb"),
  41607. name: "Front (Caribousune)",
  41608. image: {
  41609. source: "./media/characters/lisa/front-caribousune.svg",
  41610. extra: 1818/1638,
  41611. bottom: 52/1870
  41612. }
  41613. },
  41614. sideCaribousune: {
  41615. height: math.unit(7 + 2/12, "feet"),
  41616. weight: math.unit(268, "lb"),
  41617. name: "Side (Caribousune)",
  41618. image: {
  41619. source: "./media/characters/lisa/side-caribousune.svg",
  41620. extra: 1851/1635,
  41621. bottom: 16/1867
  41622. }
  41623. },
  41624. backCaribousune: {
  41625. height: math.unit(7 + 2/12, "feet"),
  41626. weight: math.unit(268, "lb"),
  41627. name: "Back (Caribousune)",
  41628. image: {
  41629. source: "./media/characters/lisa/back-caribousune.svg",
  41630. extra: 1801/1604,
  41631. bottom: 44/1845
  41632. }
  41633. },
  41634. caribou: {
  41635. height: math.unit(7 + 2/12, "feet"),
  41636. weight: math.unit(268, "lb"),
  41637. name: "Caribou",
  41638. image: {
  41639. source: "./media/characters/lisa/caribou.svg",
  41640. extra: 1843/1633,
  41641. bottom: 29/1872
  41642. }
  41643. },
  41644. frontCaribou: {
  41645. height: math.unit(7 + 2/12, "feet"),
  41646. weight: math.unit(268, "lb"),
  41647. name: "Front (Caribou)",
  41648. image: {
  41649. source: "./media/characters/lisa/front-caribou.svg",
  41650. extra: 1818/1638,
  41651. bottom: 52/1870
  41652. }
  41653. },
  41654. sideCaribou: {
  41655. height: math.unit(7 + 2/12, "feet"),
  41656. weight: math.unit(268, "lb"),
  41657. name: "Side (Caribou)",
  41658. image: {
  41659. source: "./media/characters/lisa/side-caribou.svg",
  41660. extra: 1851/1635,
  41661. bottom: 16/1867
  41662. }
  41663. },
  41664. backCaribou: {
  41665. height: math.unit(7 + 2/12, "feet"),
  41666. weight: math.unit(268, "lb"),
  41667. name: "Back (Caribou)",
  41668. image: {
  41669. source: "./media/characters/lisa/back-caribou.svg",
  41670. extra: 1801/1604,
  41671. bottom: 44/1845
  41672. }
  41673. },
  41674. mawCaribou: {
  41675. height: math.unit(1.45, "feet"),
  41676. name: "Maw (Caribou)",
  41677. image: {
  41678. source: "./media/characters/lisa/maw-caribou.svg"
  41679. }
  41680. },
  41681. mawCaribousune: {
  41682. height: math.unit(1.45, "feet"),
  41683. name: "Maw (Caribousune)",
  41684. image: {
  41685. source: "./media/characters/lisa/maw-caribousune.svg"
  41686. }
  41687. },
  41688. pawCaribousune: {
  41689. height: math.unit(1.61, "feet"),
  41690. name: "Paw (Caribou)",
  41691. image: {
  41692. source: "./media/characters/lisa/paw-caribousune.svg"
  41693. }
  41694. },
  41695. },
  41696. [
  41697. {
  41698. name: "Normal",
  41699. height: math.unit(6, "feet")
  41700. },
  41701. {
  41702. name: "God Size",
  41703. height: math.unit(72, "feet"),
  41704. default: true
  41705. },
  41706. {
  41707. name: "Towering",
  41708. height: math.unit(288, "feet")
  41709. },
  41710. {
  41711. name: "City Size",
  41712. height: math.unit(48384, "feet")
  41713. },
  41714. {
  41715. name: "Continental",
  41716. height: math.unit(4200, "miles")
  41717. },
  41718. {
  41719. name: "Planet Eater",
  41720. height: math.unit(42, "earths")
  41721. },
  41722. {
  41723. name: "Star Swallower",
  41724. height: math.unit(42, "solarradii")
  41725. },
  41726. {
  41727. name: "System Swallower",
  41728. height: math.unit(84000, "AU")
  41729. },
  41730. {
  41731. name: "Galaxy Gobbler",
  41732. height: math.unit(42, "galaxies")
  41733. },
  41734. {
  41735. name: "Universe Devourer",
  41736. height: math.unit(42, "universes")
  41737. },
  41738. {
  41739. name: "Multiverse Muncher",
  41740. height: math.unit(42, "multiverses")
  41741. },
  41742. ]
  41743. ))
  41744. characterMakers.push(() => makeCharacter(
  41745. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41746. {
  41747. front: {
  41748. height: math.unit(36, "feet"),
  41749. name: "Front",
  41750. image: {
  41751. source: "./media/characters/shadow-rat/front.svg",
  41752. extra: 1845/1758,
  41753. bottom: 83/1928
  41754. }
  41755. },
  41756. },
  41757. [
  41758. {
  41759. name: "Macro",
  41760. height: math.unit(36, "feet"),
  41761. default: true
  41762. },
  41763. ]
  41764. ))
  41765. characterMakers.push(() => makeCharacter(
  41766. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41767. {
  41768. side: {
  41769. height: math.unit(8, "feet"),
  41770. weight: math.unit(2630, "lb"),
  41771. name: "Side",
  41772. image: {
  41773. source: "./media/characters/torallia/side.svg",
  41774. extra: 2164/2021,
  41775. bottom: 371/2535
  41776. }
  41777. },
  41778. },
  41779. [
  41780. {
  41781. name: "Mortal Interaction",
  41782. height: math.unit(8, "feet")
  41783. },
  41784. {
  41785. name: "Natural",
  41786. height: math.unit(24, "feet"),
  41787. default: true
  41788. },
  41789. {
  41790. name: "Giant",
  41791. height: math.unit(80, "feet")
  41792. },
  41793. {
  41794. name: "Kaiju",
  41795. height: math.unit(240, "feet")
  41796. },
  41797. {
  41798. name: "Macro",
  41799. height: math.unit(800, "feet")
  41800. },
  41801. {
  41802. name: "Macro+",
  41803. height: math.unit(2400, "feet")
  41804. },
  41805. {
  41806. name: "Macro++",
  41807. height: math.unit(8000, "feet")
  41808. },
  41809. {
  41810. name: "City-Crushing",
  41811. height: math.unit(24000, "feet")
  41812. },
  41813. {
  41814. name: "Mountain-Mashing",
  41815. height: math.unit(80000, "feet")
  41816. },
  41817. {
  41818. name: "District Demolisher",
  41819. height: math.unit(240000, "feet")
  41820. },
  41821. {
  41822. name: "Tri-County Terror",
  41823. height: math.unit(800000, "feet")
  41824. },
  41825. {
  41826. name: "State Smasher",
  41827. height: math.unit(2.4e6, "feet")
  41828. },
  41829. {
  41830. name: "Nation Nemesis",
  41831. height: math.unit(8e6, "feet")
  41832. },
  41833. {
  41834. name: "Continent Cracker",
  41835. height: math.unit(2.4e7, "feet")
  41836. },
  41837. {
  41838. name: "Planet-Pillaging",
  41839. height: math.unit(8e7, "feet")
  41840. },
  41841. {
  41842. name: "Earth-Eclipsing",
  41843. height: math.unit(2.4e8, "feet")
  41844. },
  41845. {
  41846. name: "Jovian-Jostling",
  41847. height: math.unit(8e8, "feet")
  41848. },
  41849. {
  41850. name: "Gas Giant Gulper",
  41851. height: math.unit(2.4e9, "feet")
  41852. },
  41853. {
  41854. name: "Astral Annihilator",
  41855. height: math.unit(8e9, "feet")
  41856. },
  41857. {
  41858. name: "Celestial Conqueror",
  41859. height: math.unit(2.4e10, "feet")
  41860. },
  41861. {
  41862. name: "Sol-Swallowing",
  41863. height: math.unit(8e10, "feet")
  41864. },
  41865. {
  41866. name: "Hunter of the Heavens",
  41867. height: math.unit(2.4e13, "feet")
  41868. },
  41869. ]
  41870. ))
  41871. characterMakers.push(() => makeCharacter(
  41872. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41873. {
  41874. front: {
  41875. height: math.unit(10, "feet"),
  41876. weight: math.unit(844, "kilograms"),
  41877. name: "Front",
  41878. image: {
  41879. source: "./media/characters/rebecca-pawlson/front.svg",
  41880. extra: 1196/1099,
  41881. bottom: 81/1277
  41882. },
  41883. extraAttributes: {
  41884. "pawSize": {
  41885. name: "Paw Size",
  41886. power: 2,
  41887. type: "area",
  41888. base: math.unit(0.2 * 0.375, "meters^2")
  41889. },
  41890. "handSize": {
  41891. name: "Hand Size",
  41892. power: 2,
  41893. type: "area",
  41894. base: math.unit(0.2 * 0.35, "meters^2")
  41895. },
  41896. "breastDiameter": {
  41897. name: "Breast Diameter",
  41898. power: 1,
  41899. type: "length",
  41900. base: math.unit(0.5, "meters")
  41901. },
  41902. "breastVolume": {
  41903. name: "Breast Volume",
  41904. power: 3,
  41905. type: "volume",
  41906. base: math.unit(0.065, "m^3")
  41907. },
  41908. "breastMass": {
  41909. name: "Breast Mass",
  41910. power: 3,
  41911. type: "mass",
  41912. base: math.unit(65, "kg")
  41913. },
  41914. "nippleDiameter": {
  41915. name: "Nipple Diameter",
  41916. power: 1,
  41917. type: "length",
  41918. base: math.unit(0.1, "meters")
  41919. },
  41920. }
  41921. },
  41922. back: {
  41923. height: math.unit(10, "feet"),
  41924. weight: math.unit(844, "kilograms"),
  41925. name: "Back",
  41926. image: {
  41927. source: "./media/characters/rebecca-pawlson/back.svg",
  41928. extra: 879/776,
  41929. bottom: 43/922
  41930. },
  41931. extraAttributes: {
  41932. "pawSize": {
  41933. name: "Paw Size",
  41934. power: 2,
  41935. type: "area",
  41936. base: math.unit(0.2 * 0.375, "meters^2")
  41937. },
  41938. "handSize": {
  41939. name: "Hand Size",
  41940. power: 2,
  41941. type: "area",
  41942. base: math.unit(0.2 * 0.35, "meters^2")
  41943. },
  41944. "breastDiameter": {
  41945. name: "Breast Diameter",
  41946. power: 1,
  41947. type: "length",
  41948. base: math.unit(0.5, "meters")
  41949. },
  41950. "breastVolume": {
  41951. name: "Breast Volume",
  41952. power: 3,
  41953. type: "volume",
  41954. base: math.unit(0.065, "m^3")
  41955. },
  41956. "breastMass": {
  41957. name: "Breast Mass",
  41958. power: 3,
  41959. type: "mass",
  41960. base: math.unit(65, "kg")
  41961. },
  41962. "nippleDiameter": {
  41963. name: "Nipple Diameter",
  41964. power: 1,
  41965. type: "length",
  41966. base: math.unit(0.1, "meters")
  41967. },
  41968. }
  41969. },
  41970. },
  41971. [
  41972. {
  41973. name: "Normal",
  41974. height: math.unit(6 + 8/12, "feet")
  41975. },
  41976. {
  41977. name: "Mini Macro",
  41978. height: math.unit(10, "feet"),
  41979. default: true
  41980. },
  41981. {
  41982. name: "Macro",
  41983. height: math.unit(100, "feet")
  41984. },
  41985. {
  41986. name: "Mega Macro",
  41987. height: math.unit(2500, "feet")
  41988. },
  41989. {
  41990. name: "Giga Macro",
  41991. height: math.unit(50, "miles")
  41992. },
  41993. ]
  41994. ))
  41995. characterMakers.push(() => makeCharacter(
  41996. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41997. {
  41998. front: {
  41999. height: math.unit(7 + 6/12, "feet"),
  42000. weight: math.unit(600, "lb"),
  42001. name: "Front",
  42002. image: {
  42003. source: "./media/characters/moxie-nova/front.svg",
  42004. extra: 1734/1652,
  42005. bottom: 41/1775
  42006. }
  42007. },
  42008. },
  42009. [
  42010. {
  42011. name: "Normal",
  42012. height: math.unit(7 + 6/12, "feet"),
  42013. default: true
  42014. },
  42015. ]
  42016. ))
  42017. characterMakers.push(() => makeCharacter(
  42018. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42019. {
  42020. goat: {
  42021. height: math.unit(4, "feet"),
  42022. weight: math.unit(180, "lb"),
  42023. name: "Goat",
  42024. image: {
  42025. source: "./media/characters/tiffany/goat.svg",
  42026. extra: 1845/1595,
  42027. bottom: 106/1951
  42028. }
  42029. },
  42030. front: {
  42031. height: math.unit(5, "feet"),
  42032. weight: math.unit(150, "lb"),
  42033. name: "Foxcoon",
  42034. image: {
  42035. source: "./media/characters/tiffany/foxcoon.svg",
  42036. extra: 1941/1845,
  42037. bottom: 58/1999
  42038. }
  42039. },
  42040. },
  42041. [
  42042. {
  42043. name: "Normal",
  42044. height: math.unit(5, "feet"),
  42045. default: true
  42046. },
  42047. ]
  42048. ))
  42049. characterMakers.push(() => makeCharacter(
  42050. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42051. {
  42052. front: {
  42053. height: math.unit(8, "feet"),
  42054. weight: math.unit(300, "lb"),
  42055. name: "Front",
  42056. image: {
  42057. source: "./media/characters/raxinath/front.svg",
  42058. extra: 1407/1309,
  42059. bottom: 39/1446
  42060. }
  42061. },
  42062. back: {
  42063. height: math.unit(8, "feet"),
  42064. weight: math.unit(300, "lb"),
  42065. name: "Back",
  42066. image: {
  42067. source: "./media/characters/raxinath/back.svg",
  42068. extra: 1405/1315,
  42069. bottom: 9/1414
  42070. }
  42071. },
  42072. },
  42073. [
  42074. {
  42075. name: "Speck",
  42076. height: math.unit(0.5, "nm")
  42077. },
  42078. {
  42079. name: "Micro",
  42080. height: math.unit(3, "inches")
  42081. },
  42082. {
  42083. name: "Kobold",
  42084. height: math.unit(3, "feet")
  42085. },
  42086. {
  42087. name: "Normal",
  42088. height: math.unit(8, "feet"),
  42089. default: true
  42090. },
  42091. {
  42092. name: "Giant",
  42093. height: math.unit(50, "feet")
  42094. },
  42095. {
  42096. name: "Macro",
  42097. height: math.unit(1000, "feet")
  42098. },
  42099. {
  42100. name: "Megamacro",
  42101. height: math.unit(1, "mile")
  42102. },
  42103. ]
  42104. ))
  42105. characterMakers.push(() => makeCharacter(
  42106. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42107. {
  42108. front: {
  42109. height: math.unit(10, "feet"),
  42110. weight: math.unit(1442, "lb"),
  42111. name: "Front",
  42112. image: {
  42113. source: "./media/characters/mal-dragon/front.svg",
  42114. extra: 1515/1444,
  42115. bottom: 113/1628
  42116. }
  42117. },
  42118. back: {
  42119. height: math.unit(10, "feet"),
  42120. weight: math.unit(1442, "lb"),
  42121. name: "Back",
  42122. image: {
  42123. source: "./media/characters/mal-dragon/back.svg",
  42124. extra: 1527/1434,
  42125. bottom: 25/1552
  42126. }
  42127. },
  42128. },
  42129. [
  42130. {
  42131. name: "Mortal Interaction",
  42132. height: math.unit(10, "feet"),
  42133. default: true
  42134. },
  42135. {
  42136. name: "Large",
  42137. height: math.unit(30, "feet")
  42138. },
  42139. {
  42140. name: "Kaiju",
  42141. height: math.unit(300, "feet")
  42142. },
  42143. {
  42144. name: "Megamacro",
  42145. height: math.unit(10000, "feet")
  42146. },
  42147. {
  42148. name: "Continent Cracker",
  42149. height: math.unit(30000000, "feet")
  42150. },
  42151. {
  42152. name: "Sol-Swallowing",
  42153. height: math.unit(1e11, "feet")
  42154. },
  42155. {
  42156. name: "Light Universal",
  42157. height: math.unit(5, "universes")
  42158. },
  42159. {
  42160. name: "Universe Atoms",
  42161. height: math.unit(1.829e9, "universes")
  42162. },
  42163. {
  42164. name: "Light Multiversal",
  42165. height: math.unit(5, "multiverses")
  42166. },
  42167. {
  42168. name: "Multiverse Atoms",
  42169. height: math.unit(1.829e9, "multiverses")
  42170. },
  42171. {
  42172. name: "Fabric of Time",
  42173. height: math.unit(1e262, "multiverses")
  42174. },
  42175. ]
  42176. ))
  42177. characterMakers.push(() => makeCharacter(
  42178. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42179. {
  42180. front: {
  42181. height: math.unit(9, "feet"),
  42182. weight: math.unit(1050, "lb"),
  42183. name: "Front",
  42184. image: {
  42185. source: "./media/characters/tabitha/front.svg",
  42186. extra: 2083/1994,
  42187. bottom: 68/2151
  42188. }
  42189. },
  42190. },
  42191. [
  42192. {
  42193. name: "Baseline",
  42194. height: math.unit(9, "feet"),
  42195. default: true
  42196. },
  42197. {
  42198. name: "Giant",
  42199. height: math.unit(90, "feet")
  42200. },
  42201. {
  42202. name: "Macro",
  42203. height: math.unit(900, "feet")
  42204. },
  42205. {
  42206. name: "Megamacro",
  42207. height: math.unit(9000, "feet")
  42208. },
  42209. {
  42210. name: "City-Crushing",
  42211. height: math.unit(27000, "feet")
  42212. },
  42213. {
  42214. name: "Mountain-Mashing",
  42215. height: math.unit(90000, "feet")
  42216. },
  42217. {
  42218. name: "Nation Nemesis",
  42219. height: math.unit(9e6, "feet")
  42220. },
  42221. {
  42222. name: "Continent Cracker",
  42223. height: math.unit(27e6, "feet")
  42224. },
  42225. {
  42226. name: "Earth-Eclipsing",
  42227. height: math.unit(2.7e8, "feet")
  42228. },
  42229. {
  42230. name: "Gas Giant Gulper",
  42231. height: math.unit(2.7e9, "feet")
  42232. },
  42233. {
  42234. name: "Sol-Swallowing",
  42235. height: math.unit(9e10, "feet")
  42236. },
  42237. {
  42238. name: "Galaxy Gulper",
  42239. height: math.unit(9, "galaxies")
  42240. },
  42241. {
  42242. name: "Cosmos Churner",
  42243. height: math.unit(9, "universes")
  42244. },
  42245. ]
  42246. ))
  42247. characterMakers.push(() => makeCharacter(
  42248. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42249. {
  42250. front: {
  42251. height: math.unit(160, "cm"),
  42252. weight: math.unit(55, "kg"),
  42253. name: "Front",
  42254. image: {
  42255. source: "./media/characters/tow/front.svg",
  42256. extra: 1751/1722,
  42257. bottom: 74/1825
  42258. }
  42259. },
  42260. },
  42261. [
  42262. {
  42263. name: "Norm",
  42264. height: math.unit(160, "cm")
  42265. },
  42266. {
  42267. name: "Casual",
  42268. height: math.unit(3200, "m"),
  42269. default: true
  42270. },
  42271. {
  42272. name: "Show-Off",
  42273. height: math.unit(160, "km")
  42274. },
  42275. ]
  42276. ))
  42277. characterMakers.push(() => makeCharacter(
  42278. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42279. {
  42280. front: {
  42281. height: math.unit(7 + 11/12, "feet"),
  42282. weight: math.unit(342.8, "lb"),
  42283. name: "Front",
  42284. image: {
  42285. source: "./media/characters/vivian-orca-dragon/front.svg",
  42286. extra: 1890/1865,
  42287. bottom: 28/1918
  42288. }
  42289. },
  42290. },
  42291. [
  42292. {
  42293. name: "Micro",
  42294. height: math.unit(5, "inches")
  42295. },
  42296. {
  42297. name: "Normal",
  42298. height: math.unit(7 + 11/12, "feet"),
  42299. default: true
  42300. },
  42301. {
  42302. name: "Macro",
  42303. height: math.unit(395 + 7/12, "feet")
  42304. },
  42305. ]
  42306. ))
  42307. characterMakers.push(() => makeCharacter(
  42308. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42309. {
  42310. side: {
  42311. height: math.unit(10, "feet"),
  42312. weight: math.unit(1442, "lb"),
  42313. name: "Side",
  42314. image: {
  42315. source: "./media/characters/lotherakon/side.svg",
  42316. extra: 1604/1497,
  42317. bottom: 89/1693
  42318. }
  42319. },
  42320. },
  42321. [
  42322. {
  42323. name: "Mortal Interaction",
  42324. height: math.unit(10, "feet")
  42325. },
  42326. {
  42327. name: "Large",
  42328. height: math.unit(30, "feet"),
  42329. default: true
  42330. },
  42331. {
  42332. name: "Giant",
  42333. height: math.unit(100, "feet")
  42334. },
  42335. {
  42336. name: "Kaiju",
  42337. height: math.unit(300, "feet")
  42338. },
  42339. {
  42340. name: "Macro",
  42341. height: math.unit(1000, "feet")
  42342. },
  42343. {
  42344. name: "Macro+",
  42345. height: math.unit(3000, "feet")
  42346. },
  42347. {
  42348. name: "Megamacro",
  42349. height: math.unit(10000, "feet")
  42350. },
  42351. {
  42352. name: "City-Crushing",
  42353. height: math.unit(30000, "feet")
  42354. },
  42355. {
  42356. name: "Continent Cracker",
  42357. height: math.unit(30e6, "feet")
  42358. },
  42359. {
  42360. name: "Earth Eclipsing",
  42361. height: math.unit(3e8, "feet")
  42362. },
  42363. {
  42364. name: "Gas Giant Gulper",
  42365. height: math.unit(3e9, "feet")
  42366. },
  42367. {
  42368. name: "Sol-Swallowing",
  42369. height: math.unit(1e11, "feet")
  42370. },
  42371. {
  42372. name: "System Swallower",
  42373. height: math.unit(3e14, "feet")
  42374. },
  42375. {
  42376. name: "Galaxy Gulper",
  42377. height: math.unit(10, "galaxies")
  42378. },
  42379. {
  42380. name: "Light Universal",
  42381. height: math.unit(5, "universes")
  42382. },
  42383. {
  42384. name: "Universe Palm",
  42385. height: math.unit(20, "universes")
  42386. },
  42387. {
  42388. name: "Light Multiversal",
  42389. height: math.unit(5, "multiverses")
  42390. },
  42391. {
  42392. name: "Multiverse Palm",
  42393. height: math.unit(20, "multiverses")
  42394. },
  42395. {
  42396. name: "Inferno Incarnate",
  42397. height: math.unit(1e7, "multiverses")
  42398. },
  42399. ]
  42400. ))
  42401. characterMakers.push(() => makeCharacter(
  42402. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42403. {
  42404. front: {
  42405. height: math.unit(8, "feet"),
  42406. weight: math.unit(1200, "lb"),
  42407. name: "Front",
  42408. image: {
  42409. source: "./media/characters/malithee/front.svg",
  42410. extra: 1675/1640,
  42411. bottom: 162/1837
  42412. }
  42413. },
  42414. },
  42415. [
  42416. {
  42417. name: "Mortal Interaction",
  42418. height: math.unit(8, "feet"),
  42419. default: true
  42420. },
  42421. {
  42422. name: "Large",
  42423. height: math.unit(24, "feet")
  42424. },
  42425. {
  42426. name: "Kaiju",
  42427. height: math.unit(240, "feet")
  42428. },
  42429. {
  42430. name: "Megamacro",
  42431. height: math.unit(8000, "feet")
  42432. },
  42433. {
  42434. name: "Continent Cracker",
  42435. height: math.unit(24e6, "feet")
  42436. },
  42437. {
  42438. name: "Earth-Eclipsing",
  42439. height: math.unit(2.4e8, "feet")
  42440. },
  42441. {
  42442. name: "Sol-Swallowing",
  42443. height: math.unit(8e10, "feet")
  42444. },
  42445. {
  42446. name: "Galaxy Gulper",
  42447. height: math.unit(8, "galaxies")
  42448. },
  42449. {
  42450. name: "Light Universal",
  42451. height: math.unit(4, "universes")
  42452. },
  42453. {
  42454. name: "Universe Atoms",
  42455. height: math.unit(1.829e9, "universes")
  42456. },
  42457. {
  42458. name: "Light Multiversal",
  42459. height: math.unit(4, "multiverses")
  42460. },
  42461. {
  42462. name: "Multiverse Atoms",
  42463. height: math.unit(1.829e9, "multiverses")
  42464. },
  42465. {
  42466. name: "Nigh-Omnipresence",
  42467. height: math.unit(8e261, "multiverses")
  42468. },
  42469. ]
  42470. ))
  42471. characterMakers.push(() => makeCharacter(
  42472. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42473. {
  42474. front: {
  42475. height: math.unit(10, "feet"),
  42476. weight: math.unit(1500, "lb"),
  42477. name: "Front",
  42478. image: {
  42479. source: "./media/characters/miles-thestia/front.svg",
  42480. extra: 1812/1727,
  42481. bottom: 86/1898
  42482. }
  42483. },
  42484. back: {
  42485. height: math.unit(10, "feet"),
  42486. weight: math.unit(1500, "lb"),
  42487. name: "Back",
  42488. image: {
  42489. source: "./media/characters/miles-thestia/back.svg",
  42490. extra: 1799/1690,
  42491. bottom: 47/1846
  42492. }
  42493. },
  42494. frontNsfw: {
  42495. height: math.unit(10, "feet"),
  42496. weight: math.unit(1500, "lb"),
  42497. name: "Front (NSFW)",
  42498. image: {
  42499. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42500. extra: 1812/1727,
  42501. bottom: 86/1898
  42502. }
  42503. },
  42504. },
  42505. [
  42506. {
  42507. name: "Mini-Macro",
  42508. height: math.unit(10, "feet"),
  42509. default: true
  42510. },
  42511. ]
  42512. ))
  42513. characterMakers.push(() => makeCharacter(
  42514. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42515. {
  42516. front: {
  42517. height: math.unit(25, "feet"),
  42518. name: "Front",
  42519. image: {
  42520. source: "./media/characters/titan-s-wulf/front.svg",
  42521. extra: 1560/1484,
  42522. bottom: 76/1636
  42523. }
  42524. },
  42525. },
  42526. [
  42527. {
  42528. name: "Smallest",
  42529. height: math.unit(25, "feet"),
  42530. default: true
  42531. },
  42532. {
  42533. name: "Normal",
  42534. height: math.unit(200, "feet")
  42535. },
  42536. {
  42537. name: "Macro",
  42538. height: math.unit(200000, "feet")
  42539. },
  42540. {
  42541. name: "Multiversal Original",
  42542. height: math.unit(10000, "multiverses")
  42543. },
  42544. ]
  42545. ))
  42546. characterMakers.push(() => makeCharacter(
  42547. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42548. {
  42549. front: {
  42550. height: math.unit(8, "feet"),
  42551. weight: math.unit(553, "lb"),
  42552. name: "Front",
  42553. image: {
  42554. source: "./media/characters/tawendeh/front.svg",
  42555. extra: 2365/2268,
  42556. bottom: 83/2448
  42557. }
  42558. },
  42559. frontClothed: {
  42560. height: math.unit(8, "feet"),
  42561. weight: math.unit(553, "lb"),
  42562. name: "Front (Clothed)",
  42563. image: {
  42564. source: "./media/characters/tawendeh/front-clothed.svg",
  42565. extra: 2365/2268,
  42566. bottom: 83/2448
  42567. }
  42568. },
  42569. back: {
  42570. height: math.unit(8, "feet"),
  42571. weight: math.unit(553, "lb"),
  42572. name: "Back",
  42573. image: {
  42574. source: "./media/characters/tawendeh/back.svg",
  42575. extra: 2397/2294,
  42576. bottom: 42/2439
  42577. }
  42578. },
  42579. },
  42580. [
  42581. {
  42582. name: "Mortal Interaction",
  42583. height: math.unit(8, "feet"),
  42584. default: true
  42585. },
  42586. {
  42587. name: "Giant",
  42588. height: math.unit(80, "feet")
  42589. },
  42590. {
  42591. name: "Macro",
  42592. height: math.unit(800, "feet")
  42593. },
  42594. {
  42595. name: "Megamacro",
  42596. height: math.unit(8000, "feet")
  42597. },
  42598. {
  42599. name: "City-Crushing",
  42600. height: math.unit(24000, "feet")
  42601. },
  42602. {
  42603. name: "Mountain-Mashing",
  42604. height: math.unit(80000, "feet")
  42605. },
  42606. {
  42607. name: "Nation Nemesis",
  42608. height: math.unit(8e6, "feet")
  42609. },
  42610. {
  42611. name: "Continent Cracker",
  42612. height: math.unit(24e6, "feet")
  42613. },
  42614. {
  42615. name: "Earth-Eclipsing",
  42616. height: math.unit(2.4e8, "feet")
  42617. },
  42618. {
  42619. name: "Gas Giant Gulper",
  42620. height: math.unit(2.4e9, "feet")
  42621. },
  42622. {
  42623. name: "Sol-Swallowing",
  42624. height: math.unit(8e10, "feet")
  42625. },
  42626. {
  42627. name: "Galaxy Gulper",
  42628. height: math.unit(8, "galaxies")
  42629. },
  42630. {
  42631. name: "Cosmos Churner",
  42632. height: math.unit(8, "universes")
  42633. },
  42634. {
  42635. name: "Omnipotent Otter",
  42636. height: math.unit(80, "universes")
  42637. },
  42638. ]
  42639. ))
  42640. characterMakers.push(() => makeCharacter(
  42641. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42642. {
  42643. front: {
  42644. height: math.unit(2.6, "meters"),
  42645. weight: math.unit(900, "kg"),
  42646. name: "Front",
  42647. image: {
  42648. source: "./media/characters/neesha/front.svg",
  42649. extra: 1803/1653,
  42650. bottom: 128/1931
  42651. }
  42652. },
  42653. },
  42654. [
  42655. {
  42656. name: "Normal",
  42657. height: math.unit(2.6, "meters"),
  42658. default: true
  42659. },
  42660. {
  42661. name: "Macro",
  42662. height: math.unit(50, "meters")
  42663. },
  42664. ]
  42665. ))
  42666. characterMakers.push(() => makeCharacter(
  42667. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42668. {
  42669. front: {
  42670. height: math.unit(5, "feet"),
  42671. weight: math.unit(185, "lb"),
  42672. name: "Front",
  42673. image: {
  42674. source: "./media/characters/kyera/front.svg",
  42675. extra: 1875/1790,
  42676. bottom: 96/1971
  42677. }
  42678. },
  42679. },
  42680. [
  42681. {
  42682. name: "Normal",
  42683. height: math.unit(5, "feet"),
  42684. default: true
  42685. },
  42686. ]
  42687. ))
  42688. characterMakers.push(() => makeCharacter(
  42689. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42690. {
  42691. front: {
  42692. height: math.unit(7 + 6/12, "feet"),
  42693. weight: math.unit(540, "lb"),
  42694. name: "Front",
  42695. image: {
  42696. source: "./media/characters/yuko/front.svg",
  42697. extra: 1282/1222,
  42698. bottom: 101/1383
  42699. }
  42700. },
  42701. frontClothed: {
  42702. height: math.unit(7 + 6/12, "feet"),
  42703. weight: math.unit(540, "lb"),
  42704. name: "Front (Clothed)",
  42705. image: {
  42706. source: "./media/characters/yuko/front-clothed.svg",
  42707. extra: 1282/1222,
  42708. bottom: 101/1383
  42709. }
  42710. },
  42711. },
  42712. [
  42713. {
  42714. name: "Normal",
  42715. height: math.unit(7 + 6/12, "feet"),
  42716. default: true
  42717. },
  42718. {
  42719. name: "Macro",
  42720. height: math.unit(26 + 9/12, "feet")
  42721. },
  42722. {
  42723. name: "Megamacro",
  42724. height: math.unit(300, "feet")
  42725. },
  42726. {
  42727. name: "Gigamacro",
  42728. height: math.unit(5000, "feet")
  42729. },
  42730. {
  42731. name: "Planetary",
  42732. height: math.unit(10000, "miles")
  42733. },
  42734. ]
  42735. ))
  42736. characterMakers.push(() => makeCharacter(
  42737. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42738. {
  42739. front: {
  42740. height: math.unit(8 + 2/12, "feet"),
  42741. weight: math.unit(600, "lb"),
  42742. name: "Front",
  42743. image: {
  42744. source: "./media/characters/deam-nitrel/front.svg",
  42745. extra: 1308/1234,
  42746. bottom: 125/1433
  42747. }
  42748. },
  42749. },
  42750. [
  42751. {
  42752. name: "Normal",
  42753. height: math.unit(8 + 2/12, "feet"),
  42754. default: true
  42755. },
  42756. ]
  42757. ))
  42758. characterMakers.push(() => makeCharacter(
  42759. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42760. {
  42761. front: {
  42762. height: math.unit(6.1, "feet"),
  42763. weight: math.unit(180, "lb"),
  42764. name: "Front",
  42765. image: {
  42766. source: "./media/characters/skyress/front.svg",
  42767. extra: 1045/915,
  42768. bottom: 28/1073
  42769. }
  42770. },
  42771. maw: {
  42772. height: math.unit(1, "feet"),
  42773. name: "Maw",
  42774. image: {
  42775. source: "./media/characters/skyress/maw.svg"
  42776. }
  42777. },
  42778. },
  42779. [
  42780. {
  42781. name: "Normal",
  42782. height: math.unit(6.1, "feet"),
  42783. default: true
  42784. },
  42785. {
  42786. name: "Macro",
  42787. height: math.unit(200, "feet")
  42788. },
  42789. ]
  42790. ))
  42791. characterMakers.push(() => makeCharacter(
  42792. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42793. {
  42794. front: {
  42795. height: math.unit(4 + 2/12, "feet"),
  42796. weight: math.unit(40, "kg"),
  42797. name: "Front",
  42798. image: {
  42799. source: "./media/characters/amethyst-jones/front.svg",
  42800. extra: 1220/1150,
  42801. bottom: 101/1321
  42802. }
  42803. },
  42804. },
  42805. [
  42806. {
  42807. name: "Normal",
  42808. height: math.unit(4 + 2/12, "feet"),
  42809. default: true
  42810. },
  42811. ]
  42812. ))
  42813. characterMakers.push(() => makeCharacter(
  42814. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42815. {
  42816. front: {
  42817. height: math.unit(1.7, "m"),
  42818. weight: math.unit(135, "lb"),
  42819. name: "Front",
  42820. image: {
  42821. source: "./media/characters/jade/front.svg",
  42822. extra: 1818/1767,
  42823. bottom: 32/1850
  42824. }
  42825. },
  42826. back: {
  42827. height: math.unit(1.7, "m"),
  42828. weight: math.unit(135, "lb"),
  42829. name: "Back",
  42830. image: {
  42831. source: "./media/characters/jade/back.svg",
  42832. extra: 1869/1809,
  42833. bottom: 35/1904
  42834. }
  42835. },
  42836. hand: {
  42837. height: math.unit(0.24, "m"),
  42838. name: "Hand",
  42839. image: {
  42840. source: "./media/characters/jade/hand.svg"
  42841. }
  42842. },
  42843. foot: {
  42844. height: math.unit(0.263, "m"),
  42845. name: "Foot",
  42846. image: {
  42847. source: "./media/characters/jade/foot.svg"
  42848. }
  42849. },
  42850. dick: {
  42851. height: math.unit(0.47, "m"),
  42852. name: "Dick",
  42853. image: {
  42854. source: "./media/characters/jade/dick.svg"
  42855. }
  42856. },
  42857. },
  42858. [
  42859. {
  42860. name: "Micro",
  42861. height: math.unit(22, "cm")
  42862. },
  42863. {
  42864. name: "Normal",
  42865. height: math.unit(1.7, "m"),
  42866. default: true
  42867. },
  42868. {
  42869. name: "Macro",
  42870. height: math.unit(152, "m")
  42871. },
  42872. ]
  42873. ))
  42874. characterMakers.push(() => makeCharacter(
  42875. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42876. {
  42877. front: {
  42878. height: math.unit(100, "miles"),
  42879. weight: math.unit(20000, "tons"),
  42880. name: "Front",
  42881. image: {
  42882. source: "./media/characters/cookie/front.svg",
  42883. extra: 1125/1070,
  42884. bottom: 30/1155
  42885. }
  42886. },
  42887. },
  42888. [
  42889. {
  42890. name: "Big",
  42891. height: math.unit(50, "feet")
  42892. },
  42893. {
  42894. name: "Macro",
  42895. height: math.unit(100, "miles"),
  42896. default: true
  42897. },
  42898. {
  42899. name: "Megamacro",
  42900. height: math.unit(90000, "miles")
  42901. },
  42902. ]
  42903. ))
  42904. characterMakers.push(() => makeCharacter(
  42905. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42906. {
  42907. front: {
  42908. height: math.unit(6, "feet"),
  42909. weight: math.unit(145, "lb"),
  42910. name: "Front",
  42911. image: {
  42912. source: "./media/characters/farzian/front.svg",
  42913. extra: 1902/1693,
  42914. bottom: 108/2010
  42915. }
  42916. },
  42917. },
  42918. [
  42919. {
  42920. name: "Macro",
  42921. height: math.unit(500, "feet"),
  42922. default: true
  42923. },
  42924. ]
  42925. ))
  42926. characterMakers.push(() => makeCharacter(
  42927. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42928. {
  42929. front: {
  42930. height: math.unit(3 + 6/12, "feet"),
  42931. weight: math.unit(50, "lb"),
  42932. name: "Front",
  42933. image: {
  42934. source: "./media/characters/kimberly-tilson/front.svg",
  42935. extra: 1400/1322,
  42936. bottom: 36/1436
  42937. }
  42938. },
  42939. back: {
  42940. height: math.unit(3 + 6/12, "feet"),
  42941. weight: math.unit(50, "lb"),
  42942. name: "Back",
  42943. image: {
  42944. source: "./media/characters/kimberly-tilson/back.svg",
  42945. extra: 1370/1307,
  42946. bottom: 20/1390
  42947. }
  42948. },
  42949. },
  42950. [
  42951. {
  42952. name: "Normal",
  42953. height: math.unit(3 + 6/12, "feet"),
  42954. default: true
  42955. },
  42956. ]
  42957. ))
  42958. characterMakers.push(() => makeCharacter(
  42959. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42960. {
  42961. front: {
  42962. height: math.unit(350, "meters"),
  42963. weight: math.unit(7.57059e+8, "lb"),
  42964. name: "Front",
  42965. image: {
  42966. source: "./media/characters/harthos/front.svg",
  42967. extra: 455/446,
  42968. bottom: 15/470
  42969. },
  42970. form: "peacekeeper",
  42971. default: true
  42972. },
  42973. allusus_front: {
  42974. height: math.unit(270, "meters"),
  42975. weight: math.unit(3.47550e+8, "lb"),
  42976. name: "Front",
  42977. image: {
  42978. source: "./media/characters/harthos/allusus-front.svg",
  42979. extra: 455/446,
  42980. bottom: 15/470
  42981. },
  42982. form: "allusus",
  42983. },
  42984. },
  42985. [
  42986. {
  42987. name: "Macro",
  42988. height: math.unit(350, "meters"),
  42989. default: true,
  42990. form: "peacekeeper"
  42991. },
  42992. {
  42993. name: "Macro",
  42994. height: math.unit(270, "meters"),
  42995. default: true,
  42996. form: "allusus"
  42997. },
  42998. ],
  42999. {
  43000. "peacekeeper": {
  43001. name: "Peacekeeper",
  43002. default: true
  43003. },
  43004. "allusus": {
  43005. name: "Allusus",
  43006. },
  43007. }
  43008. ))
  43009. characterMakers.push(() => makeCharacter(
  43010. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43011. {
  43012. front: {
  43013. height: math.unit(15, "feet"),
  43014. name: "Front",
  43015. image: {
  43016. source: "./media/characters/hypatia/front.svg",
  43017. extra: 1653/1591,
  43018. bottom: 79/1732
  43019. }
  43020. },
  43021. },
  43022. [
  43023. {
  43024. name: "Normal",
  43025. height: math.unit(15, "feet")
  43026. },
  43027. {
  43028. name: "Small",
  43029. height: math.unit(300, "feet")
  43030. },
  43031. {
  43032. name: "Macro",
  43033. height: math.unit(2500, "feet"),
  43034. default: true
  43035. },
  43036. {
  43037. name: "Mega Macro",
  43038. height: math.unit(1500, "miles")
  43039. },
  43040. {
  43041. name: "Giga Macro",
  43042. height: math.unit(1.5e6, "miles")
  43043. },
  43044. ]
  43045. ))
  43046. characterMakers.push(() => makeCharacter(
  43047. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43048. {
  43049. front: {
  43050. height: math.unit(6, "feet"),
  43051. weight: math.unit(200, "lb"),
  43052. name: "Front",
  43053. image: {
  43054. source: "./media/characters/wulver/front.svg",
  43055. extra: 1724/1632,
  43056. bottom: 130/1854
  43057. }
  43058. },
  43059. frontNsfw: {
  43060. height: math.unit(6, "feet"),
  43061. weight: math.unit(200, "lb"),
  43062. name: "Front (NSFW)",
  43063. image: {
  43064. source: "./media/characters/wulver/front-nsfw.svg",
  43065. extra: 1724/1632,
  43066. bottom: 130/1854
  43067. }
  43068. },
  43069. },
  43070. [
  43071. {
  43072. name: "Human-Sized",
  43073. height: math.unit(6, "feet")
  43074. },
  43075. {
  43076. name: "Normal",
  43077. height: math.unit(4, "meters"),
  43078. default: true
  43079. },
  43080. {
  43081. name: "Large",
  43082. height: math.unit(6, "m")
  43083. },
  43084. ]
  43085. ))
  43086. characterMakers.push(() => makeCharacter(
  43087. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43088. {
  43089. front: {
  43090. height: math.unit(7, "feet"),
  43091. name: "Front",
  43092. image: {
  43093. source: "./media/characters/maru/front.svg",
  43094. extra: 1595/1570,
  43095. bottom: 0/1595
  43096. }
  43097. },
  43098. },
  43099. [
  43100. {
  43101. name: "Normal",
  43102. height: math.unit(7, "feet"),
  43103. default: true
  43104. },
  43105. {
  43106. name: "Macro",
  43107. height: math.unit(700, "feet")
  43108. },
  43109. {
  43110. name: "Mega Macro",
  43111. height: math.unit(25, "miles")
  43112. },
  43113. ]
  43114. ))
  43115. characterMakers.push(() => makeCharacter(
  43116. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43117. {
  43118. front: {
  43119. height: math.unit(6, "feet"),
  43120. weight: math.unit(170, "lb"),
  43121. name: "Front",
  43122. image: {
  43123. source: "./media/characters/xenon/front.svg",
  43124. extra: 1376/1305,
  43125. bottom: 56/1432
  43126. }
  43127. },
  43128. back: {
  43129. height: math.unit(6, "feet"),
  43130. weight: math.unit(170, "lb"),
  43131. name: "Back",
  43132. image: {
  43133. source: "./media/characters/xenon/back.svg",
  43134. extra: 1328/1259,
  43135. bottom: 95/1423
  43136. }
  43137. },
  43138. maw: {
  43139. height: math.unit(0.52, "feet"),
  43140. name: "Maw",
  43141. image: {
  43142. source: "./media/characters/xenon/maw.svg"
  43143. }
  43144. },
  43145. handLeft: {
  43146. height: math.unit(0.82 * 169 / 153, "feet"),
  43147. name: "Hand (Left)",
  43148. image: {
  43149. source: "./media/characters/xenon/hand-left.svg"
  43150. }
  43151. },
  43152. handRight: {
  43153. height: math.unit(0.82, "feet"),
  43154. name: "Hand (Right)",
  43155. image: {
  43156. source: "./media/characters/xenon/hand-right.svg"
  43157. }
  43158. },
  43159. footLeft: {
  43160. height: math.unit(1.13, "feet"),
  43161. name: "Foot (Left)",
  43162. image: {
  43163. source: "./media/characters/xenon/foot-left.svg"
  43164. }
  43165. },
  43166. footRight: {
  43167. height: math.unit(1.13 * 194 / 196, "feet"),
  43168. name: "Foot (Right)",
  43169. image: {
  43170. source: "./media/characters/xenon/foot-right.svg"
  43171. }
  43172. },
  43173. },
  43174. [
  43175. {
  43176. name: "Micro",
  43177. height: math.unit(0.8, "inches")
  43178. },
  43179. {
  43180. name: "Normal",
  43181. height: math.unit(6, "feet")
  43182. },
  43183. {
  43184. name: "Macro",
  43185. height: math.unit(50, "feet"),
  43186. default: true
  43187. },
  43188. {
  43189. name: "Macro+",
  43190. height: math.unit(250, "feet")
  43191. },
  43192. {
  43193. name: "Megamacro",
  43194. height: math.unit(1500, "feet")
  43195. },
  43196. ]
  43197. ))
  43198. characterMakers.push(() => makeCharacter(
  43199. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43200. {
  43201. front: {
  43202. height: math.unit(7 + 5/12, "feet"),
  43203. name: "Front",
  43204. image: {
  43205. source: "./media/characters/zane/front.svg",
  43206. extra: 1260/1203,
  43207. bottom: 94/1354
  43208. }
  43209. },
  43210. back: {
  43211. height: math.unit(5.05, "feet"),
  43212. name: "Back",
  43213. image: {
  43214. source: "./media/characters/zane/back.svg",
  43215. extra: 893/829,
  43216. bottom: 30/923
  43217. }
  43218. },
  43219. werewolf: {
  43220. height: math.unit(11, "feet"),
  43221. name: "Werewolf",
  43222. image: {
  43223. source: "./media/characters/zane/werewolf.svg",
  43224. extra: 1383/1323,
  43225. bottom: 89/1472
  43226. }
  43227. },
  43228. foot: {
  43229. height: math.unit(1.46, "feet"),
  43230. name: "Foot",
  43231. image: {
  43232. source: "./media/characters/zane/foot.svg"
  43233. }
  43234. },
  43235. footFront: {
  43236. height: math.unit(0.784, "feet"),
  43237. name: "Foot (Front)",
  43238. image: {
  43239. source: "./media/characters/zane/foot-front.svg"
  43240. }
  43241. },
  43242. dick: {
  43243. height: math.unit(1.95, "feet"),
  43244. name: "Dick",
  43245. image: {
  43246. source: "./media/characters/zane/dick.svg"
  43247. }
  43248. },
  43249. dickWerewolf: {
  43250. height: math.unit(3.77, "feet"),
  43251. name: "Dick (Werewolf)",
  43252. image: {
  43253. source: "./media/characters/zane/dick.svg"
  43254. }
  43255. },
  43256. },
  43257. [
  43258. {
  43259. name: "Normal",
  43260. height: math.unit(7 + 5/12, "feet"),
  43261. default: true
  43262. },
  43263. ]
  43264. ))
  43265. characterMakers.push(() => makeCharacter(
  43266. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43267. {
  43268. front: {
  43269. height: math.unit(6 + 2/12, "feet"),
  43270. weight: math.unit(284, "lb"),
  43271. name: "Front",
  43272. image: {
  43273. source: "./media/characters/benni-desparque/front.svg",
  43274. extra: 878/729,
  43275. bottom: 58/936
  43276. }
  43277. },
  43278. back: {
  43279. height: math.unit(6 + 2/12, "feet"),
  43280. weight: math.unit(284, "lb"),
  43281. name: "Back",
  43282. image: {
  43283. source: "./media/characters/benni-desparque/back.svg",
  43284. extra: 901/756,
  43285. bottom: 51/952
  43286. }
  43287. },
  43288. dressed: {
  43289. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43290. weight: math.unit(284, "lb"),
  43291. name: "Dressed",
  43292. image: {
  43293. source: "./media/characters/benni-desparque/dressed.svg",
  43294. extra: 1514/1276,
  43295. bottom: 65/1579
  43296. }
  43297. },
  43298. hand: {
  43299. height: math.unit(1.28, "feet"),
  43300. name: "Hand",
  43301. image: {
  43302. source: "./media/characters/benni-desparque/hand.svg"
  43303. }
  43304. },
  43305. foot: {
  43306. height: math.unit(1.53, "feet"),
  43307. name: "Foot",
  43308. image: {
  43309. source: "./media/characters/benni-desparque/foot.svg"
  43310. }
  43311. },
  43312. aiControlUnit: {
  43313. height: math.unit(0.175, "feet"),
  43314. name: "AI Control Unit",
  43315. image: {
  43316. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43317. }
  43318. },
  43319. },
  43320. [
  43321. {
  43322. name: "Civilian",
  43323. height: math.unit(6 + 2/12, "feet")
  43324. },
  43325. {
  43326. name: "Normal",
  43327. height: math.unit(98, "feet"),
  43328. default: true
  43329. },
  43330. {
  43331. name: "Kaiju Fighter",
  43332. height: math.unit(268, "feet")
  43333. },
  43334. ]
  43335. ))
  43336. characterMakers.push(() => makeCharacter(
  43337. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43338. {
  43339. front: {
  43340. height: math.unit(5, "feet"),
  43341. weight: math.unit(105, "lb"),
  43342. name: "Front",
  43343. image: {
  43344. source: "./media/characters/maxine/front.svg",
  43345. extra: 1386/1250,
  43346. bottom: 71/1457
  43347. }
  43348. },
  43349. },
  43350. [
  43351. {
  43352. name: "Normal",
  43353. height: math.unit(5, "feet"),
  43354. default: true
  43355. },
  43356. ]
  43357. ))
  43358. characterMakers.push(() => makeCharacter(
  43359. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43360. {
  43361. front: {
  43362. height: math.unit(11 + 7/12, "feet"),
  43363. weight: math.unit(9576, "lb"),
  43364. name: "Front",
  43365. image: {
  43366. source: "./media/characters/scaly/front.svg",
  43367. extra: 888/867,
  43368. bottom: 36/924
  43369. }
  43370. },
  43371. },
  43372. [
  43373. {
  43374. name: "Normal",
  43375. height: math.unit(11 + 7/12, "feet"),
  43376. default: true
  43377. },
  43378. ]
  43379. ))
  43380. characterMakers.push(() => makeCharacter(
  43381. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43382. {
  43383. front: {
  43384. height: math.unit(6 + 3/12, "feet"),
  43385. name: "Front",
  43386. image: {
  43387. source: "./media/characters/saelria/front.svg",
  43388. extra: 1243/1138,
  43389. bottom: 46/1289
  43390. }
  43391. },
  43392. },
  43393. [
  43394. {
  43395. name: "Micro",
  43396. height: math.unit(6, "inches"),
  43397. },
  43398. {
  43399. name: "Normal",
  43400. height: math.unit(6 + 3/12, "feet"),
  43401. default: true
  43402. },
  43403. {
  43404. name: "Macro",
  43405. height: math.unit(25, "feet")
  43406. },
  43407. ]
  43408. ))
  43409. characterMakers.push(() => makeCharacter(
  43410. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43411. {
  43412. front: {
  43413. height: math.unit(80, "meters"),
  43414. weight: math.unit(7000, "tonnes"),
  43415. name: "Front",
  43416. image: {
  43417. source: "./media/characters/tef/front.svg",
  43418. extra: 2036/1991,
  43419. bottom: 54/2090
  43420. }
  43421. },
  43422. back: {
  43423. height: math.unit(80, "meters"),
  43424. weight: math.unit(7000, "tonnes"),
  43425. name: "Back",
  43426. image: {
  43427. source: "./media/characters/tef/back.svg",
  43428. extra: 2036/1991,
  43429. bottom: 54/2090
  43430. }
  43431. },
  43432. },
  43433. [
  43434. {
  43435. name: "Macro",
  43436. height: math.unit(80, "meters"),
  43437. default: true
  43438. },
  43439. ]
  43440. ))
  43441. characterMakers.push(() => makeCharacter(
  43442. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43443. {
  43444. front: {
  43445. height: math.unit(13, "feet"),
  43446. weight: math.unit(6, "tons"),
  43447. name: "Front",
  43448. image: {
  43449. source: "./media/characters/rover/front.svg",
  43450. extra: 1233/1156,
  43451. bottom: 50/1283
  43452. }
  43453. },
  43454. back: {
  43455. height: math.unit(13, "feet"),
  43456. weight: math.unit(6, "tons"),
  43457. name: "Back",
  43458. image: {
  43459. source: "./media/characters/rover/back.svg",
  43460. extra: 1327/1258,
  43461. bottom: 39/1366
  43462. }
  43463. },
  43464. },
  43465. [
  43466. {
  43467. name: "Normal",
  43468. height: math.unit(13, "feet"),
  43469. default: true
  43470. },
  43471. {
  43472. name: "Macro",
  43473. height: math.unit(1300, "feet")
  43474. },
  43475. {
  43476. name: "Megamacro",
  43477. height: math.unit(1300, "miles")
  43478. },
  43479. {
  43480. name: "Gigamacro",
  43481. height: math.unit(1300000, "miles")
  43482. },
  43483. ]
  43484. ))
  43485. characterMakers.push(() => makeCharacter(
  43486. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43487. {
  43488. front: {
  43489. height: math.unit(10, "feet"),
  43490. weight: math.unit(500, "lb"),
  43491. name: "Front",
  43492. image: {
  43493. source: "./media/characters/ariz/front.svg",
  43494. extra: 461/450,
  43495. bottom: 16/477
  43496. }
  43497. },
  43498. },
  43499. [
  43500. {
  43501. name: "MiniMacro",
  43502. height: math.unit(10, "feet"),
  43503. default: true
  43504. },
  43505. ]
  43506. ))
  43507. characterMakers.push(() => makeCharacter(
  43508. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43509. {
  43510. front: {
  43511. height: math.unit(6, "feet"),
  43512. weight: math.unit(140, "lb"),
  43513. name: "Front",
  43514. image: {
  43515. source: "./media/characters/sigrun/front.svg",
  43516. extra: 1418/1359,
  43517. bottom: 27/1445
  43518. }
  43519. },
  43520. },
  43521. [
  43522. {
  43523. name: "Macro",
  43524. height: math.unit(35, "feet"),
  43525. default: true
  43526. },
  43527. ]
  43528. ))
  43529. characterMakers.push(() => makeCharacter(
  43530. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43531. {
  43532. front: {
  43533. height: math.unit(6, "feet"),
  43534. weight: math.unit(150, "lb"),
  43535. name: "Front",
  43536. image: {
  43537. source: "./media/characters/numin/front.svg",
  43538. extra: 1433/1388,
  43539. bottom: 12/1445
  43540. }
  43541. },
  43542. },
  43543. [
  43544. {
  43545. name: "Macro",
  43546. height: math.unit(21.5, "km"),
  43547. default: true
  43548. },
  43549. ]
  43550. ))
  43551. characterMakers.push(() => makeCharacter(
  43552. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43553. {
  43554. front: {
  43555. height: math.unit(6, "feet"),
  43556. weight: math.unit(463, "lb"),
  43557. name: "Front",
  43558. image: {
  43559. source: "./media/characters/melwa/front.svg",
  43560. extra: 1307/1248,
  43561. bottom: 93/1400
  43562. }
  43563. },
  43564. },
  43565. [
  43566. {
  43567. name: "Macro",
  43568. height: math.unit(50, "meters"),
  43569. default: true
  43570. },
  43571. ]
  43572. ))
  43573. characterMakers.push(() => makeCharacter(
  43574. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43575. {
  43576. front: {
  43577. height: math.unit(325, "feet"),
  43578. name: "Front",
  43579. image: {
  43580. source: "./media/characters/zorkaiju/front.svg",
  43581. extra: 1955/1814,
  43582. bottom: 40/1995
  43583. }
  43584. },
  43585. frontExtended: {
  43586. height: math.unit(325, "feet"),
  43587. name: "Front (Extended)",
  43588. image: {
  43589. source: "./media/characters/zorkaiju/front-extended.svg",
  43590. extra: 1955/1814,
  43591. bottom: 40/1995
  43592. }
  43593. },
  43594. side: {
  43595. height: math.unit(325, "feet"),
  43596. name: "Side",
  43597. image: {
  43598. source: "./media/characters/zorkaiju/side.svg",
  43599. extra: 1495/1396,
  43600. bottom: 17/1512
  43601. }
  43602. },
  43603. sideExtended: {
  43604. height: math.unit(325, "feet"),
  43605. name: "Side (Extended)",
  43606. image: {
  43607. source: "./media/characters/zorkaiju/side-extended.svg",
  43608. extra: 1495/1396,
  43609. bottom: 17/1512
  43610. }
  43611. },
  43612. back: {
  43613. height: math.unit(325, "feet"),
  43614. name: "Back",
  43615. image: {
  43616. source: "./media/characters/zorkaiju/back.svg",
  43617. extra: 1959/1821,
  43618. bottom: 31/1990
  43619. }
  43620. },
  43621. backExtended: {
  43622. height: math.unit(325, "feet"),
  43623. name: "Back (Extended)",
  43624. image: {
  43625. source: "./media/characters/zorkaiju/back-extended.svg",
  43626. extra: 1959/1821,
  43627. bottom: 31/1990
  43628. }
  43629. },
  43630. hand: {
  43631. height: math.unit(58.4, "feet"),
  43632. name: "Hand",
  43633. image: {
  43634. source: "./media/characters/zorkaiju/hand.svg"
  43635. }
  43636. },
  43637. handExtended: {
  43638. height: math.unit(61.4, "feet"),
  43639. name: "Hand (Extended)",
  43640. image: {
  43641. source: "./media/characters/zorkaiju/hand-extended.svg"
  43642. }
  43643. },
  43644. foot: {
  43645. height: math.unit(95, "feet"),
  43646. name: "Foot",
  43647. image: {
  43648. source: "./media/characters/zorkaiju/foot.svg"
  43649. }
  43650. },
  43651. leftArm: {
  43652. height: math.unit(59, "feet"),
  43653. name: "Left Arm",
  43654. image: {
  43655. source: "./media/characters/zorkaiju/left-arm.svg"
  43656. }
  43657. },
  43658. rightArm: {
  43659. height: math.unit(59, "feet"),
  43660. name: "Right Arm",
  43661. image: {
  43662. source: "./media/characters/zorkaiju/right-arm.svg"
  43663. }
  43664. },
  43665. leftArmExtended: {
  43666. height: math.unit(59 * 1.033546, "feet"),
  43667. name: "Left Arm (Extended)",
  43668. image: {
  43669. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43670. }
  43671. },
  43672. rightArmExtended: {
  43673. height: math.unit(59 * 1.0496, "feet"),
  43674. name: "Right Arm (Extended)",
  43675. image: {
  43676. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43677. }
  43678. },
  43679. tail: {
  43680. height: math.unit(104, "feet"),
  43681. name: "Tail",
  43682. image: {
  43683. source: "./media/characters/zorkaiju/tail.svg"
  43684. }
  43685. },
  43686. tailExtended: {
  43687. height: math.unit(104, "feet"),
  43688. name: "Tail (Extended)",
  43689. image: {
  43690. source: "./media/characters/zorkaiju/tail-extended.svg"
  43691. }
  43692. },
  43693. tailBottom: {
  43694. height: math.unit(104, "feet"),
  43695. name: "Tail Bottom",
  43696. image: {
  43697. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43698. }
  43699. },
  43700. crystal: {
  43701. height: math.unit(27.54, "feet"),
  43702. name: "Crystal",
  43703. image: {
  43704. source: "./media/characters/zorkaiju/crystal.svg"
  43705. }
  43706. },
  43707. },
  43708. [
  43709. {
  43710. name: "Kaiju",
  43711. height: math.unit(325, "feet"),
  43712. default: true
  43713. },
  43714. ]
  43715. ))
  43716. characterMakers.push(() => makeCharacter(
  43717. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43718. {
  43719. front: {
  43720. height: math.unit(6 + 1/12, "feet"),
  43721. weight: math.unit(115, "lb"),
  43722. name: "Front",
  43723. image: {
  43724. source: "./media/characters/bailey-belfry/front.svg",
  43725. extra: 1240/1121,
  43726. bottom: 101/1341
  43727. }
  43728. },
  43729. },
  43730. [
  43731. {
  43732. name: "Normal",
  43733. height: math.unit(6 + 1/12, "feet"),
  43734. default: true
  43735. },
  43736. ]
  43737. ))
  43738. characterMakers.push(() => makeCharacter(
  43739. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43740. {
  43741. side: {
  43742. height: math.unit(4, "meters"),
  43743. weight: math.unit(250, "kg"),
  43744. name: "Side",
  43745. image: {
  43746. source: "./media/characters/blacky/side.svg",
  43747. extra: 1027/919,
  43748. bottom: 43/1070
  43749. }
  43750. },
  43751. maw: {
  43752. height: math.unit(1, "meters"),
  43753. name: "Maw",
  43754. image: {
  43755. source: "./media/characters/blacky/maw.svg"
  43756. }
  43757. },
  43758. paw: {
  43759. height: math.unit(1, "meters"),
  43760. name: "Paw",
  43761. image: {
  43762. source: "./media/characters/blacky/paw.svg"
  43763. }
  43764. },
  43765. },
  43766. [
  43767. {
  43768. name: "Normal",
  43769. height: math.unit(4, "meters"),
  43770. default: true
  43771. },
  43772. ]
  43773. ))
  43774. characterMakers.push(() => makeCharacter(
  43775. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43776. {
  43777. front: {
  43778. height: math.unit(170, "cm"),
  43779. weight: math.unit(66, "kg"),
  43780. name: "Front",
  43781. image: {
  43782. source: "./media/characters/thux-ei/front.svg",
  43783. extra: 1109/1011,
  43784. bottom: 8/1117
  43785. }
  43786. },
  43787. },
  43788. [
  43789. {
  43790. name: "Normal",
  43791. height: math.unit(170, "cm"),
  43792. default: true
  43793. },
  43794. ]
  43795. ))
  43796. characterMakers.push(() => makeCharacter(
  43797. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43798. {
  43799. front: {
  43800. height: math.unit(5, "feet"),
  43801. weight: math.unit(120, "lb"),
  43802. name: "Front",
  43803. image: {
  43804. source: "./media/characters/roxanne-voltaire/front.svg",
  43805. extra: 1901/1779,
  43806. bottom: 53/1954
  43807. }
  43808. },
  43809. },
  43810. [
  43811. {
  43812. name: "Normal",
  43813. height: math.unit(5, "feet"),
  43814. default: true
  43815. },
  43816. {
  43817. name: "Giant",
  43818. height: math.unit(50, "feet")
  43819. },
  43820. {
  43821. name: "Titan",
  43822. height: math.unit(500, "feet")
  43823. },
  43824. {
  43825. name: "Macro",
  43826. height: math.unit(5000, "feet")
  43827. },
  43828. {
  43829. name: "Megamacro",
  43830. height: math.unit(50000, "feet")
  43831. },
  43832. {
  43833. name: "Gigamacro",
  43834. height: math.unit(500000, "feet")
  43835. },
  43836. {
  43837. name: "Teramacro",
  43838. height: math.unit(5e6, "feet")
  43839. },
  43840. ]
  43841. ))
  43842. characterMakers.push(() => makeCharacter(
  43843. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43844. {
  43845. front: {
  43846. height: math.unit(6 + 2/12, "feet"),
  43847. name: "Front",
  43848. image: {
  43849. source: "./media/characters/squeaks/front.svg",
  43850. extra: 1823/1768,
  43851. bottom: 138/1961
  43852. }
  43853. },
  43854. },
  43855. [
  43856. {
  43857. name: "Micro",
  43858. height: math.unit(0.5, "inches")
  43859. },
  43860. {
  43861. name: "Normal",
  43862. height: math.unit(6 + 2/12, "feet"),
  43863. default: true
  43864. },
  43865. {
  43866. name: "Macro",
  43867. height: math.unit(600, "feet")
  43868. },
  43869. ]
  43870. ))
  43871. characterMakers.push(() => makeCharacter(
  43872. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43873. {
  43874. front: {
  43875. height: math.unit(1.72, "meters"),
  43876. name: "Front",
  43877. image: {
  43878. source: "./media/characters/archinger/front.svg",
  43879. extra: 1861/1675,
  43880. bottom: 125/1986
  43881. }
  43882. },
  43883. back: {
  43884. height: math.unit(1.72, "meters"),
  43885. name: "Back",
  43886. image: {
  43887. source: "./media/characters/archinger/back.svg",
  43888. extra: 1844/1701,
  43889. bottom: 104/1948
  43890. }
  43891. },
  43892. cock: {
  43893. height: math.unit(0.59, "feet"),
  43894. name: "Cock",
  43895. image: {
  43896. source: "./media/characters/archinger/cock.svg"
  43897. }
  43898. },
  43899. },
  43900. [
  43901. {
  43902. name: "Normal",
  43903. height: math.unit(1.72, "meters"),
  43904. default: true
  43905. },
  43906. {
  43907. name: "Macro",
  43908. height: math.unit(84, "meters")
  43909. },
  43910. {
  43911. name: "Macro+",
  43912. height: math.unit(112, "meters")
  43913. },
  43914. {
  43915. name: "Macro++",
  43916. height: math.unit(960, "meters")
  43917. },
  43918. {
  43919. name: "Macro+++",
  43920. height: math.unit(4, "km")
  43921. },
  43922. {
  43923. name: "Macro++++",
  43924. height: math.unit(48, "km")
  43925. },
  43926. {
  43927. name: "Macro+++++",
  43928. height: math.unit(4500, "km")
  43929. },
  43930. ]
  43931. ))
  43932. characterMakers.push(() => makeCharacter(
  43933. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43934. {
  43935. front: {
  43936. height: math.unit(5 + 5/12, "feet"),
  43937. name: "Front",
  43938. image: {
  43939. source: "./media/characters/alsnapz/front.svg",
  43940. extra: 1157/1065,
  43941. bottom: 42/1199
  43942. }
  43943. },
  43944. },
  43945. [
  43946. {
  43947. name: "Normal",
  43948. height: math.unit(5 + 5/12, "feet"),
  43949. default: true
  43950. },
  43951. ]
  43952. ))
  43953. characterMakers.push(() => makeCharacter(
  43954. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43955. {
  43956. side: {
  43957. height: math.unit(3.2, "earths"),
  43958. name: "Side",
  43959. image: {
  43960. source: "./media/characters/mag/side.svg",
  43961. extra: 1331/1008,
  43962. bottom: 52/1383
  43963. }
  43964. },
  43965. wing: {
  43966. height: math.unit(1.94, "earths"),
  43967. name: "Wing",
  43968. image: {
  43969. source: "./media/characters/mag/wing.svg"
  43970. }
  43971. },
  43972. dick: {
  43973. height: math.unit(1.8, "earths"),
  43974. name: "Dick",
  43975. image: {
  43976. source: "./media/characters/mag/dick.svg"
  43977. }
  43978. },
  43979. ass: {
  43980. height: math.unit(1.33, "earths"),
  43981. name: "Ass",
  43982. image: {
  43983. source: "./media/characters/mag/ass.svg"
  43984. }
  43985. },
  43986. head: {
  43987. height: math.unit(1.1, "earths"),
  43988. name: "Head",
  43989. image: {
  43990. source: "./media/characters/mag/head.svg"
  43991. }
  43992. },
  43993. maw: {
  43994. height: math.unit(1.62, "earths"),
  43995. name: "Maw",
  43996. image: {
  43997. source: "./media/characters/mag/maw.svg"
  43998. }
  43999. },
  44000. },
  44001. [
  44002. {
  44003. name: "Small",
  44004. height: math.unit(162, "feet")
  44005. },
  44006. {
  44007. name: "Normal",
  44008. height: math.unit(3.2, "earths"),
  44009. default: true
  44010. },
  44011. ]
  44012. ))
  44013. characterMakers.push(() => makeCharacter(
  44014. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44015. {
  44016. front: {
  44017. height: math.unit(512, "feet"),
  44018. weight: math.unit(63509, "tonnes"),
  44019. name: "Front",
  44020. image: {
  44021. source: "./media/characters/vorrel-harroc/front.svg",
  44022. extra: 1075/1063,
  44023. bottom: 62/1137
  44024. }
  44025. },
  44026. },
  44027. [
  44028. {
  44029. name: "Normal",
  44030. height: math.unit(10, "feet")
  44031. },
  44032. {
  44033. name: "Macro",
  44034. height: math.unit(512, "feet"),
  44035. default: true
  44036. },
  44037. {
  44038. name: "Megamacro",
  44039. height: math.unit(256, "miles")
  44040. },
  44041. {
  44042. name: "Gigamacro",
  44043. height: math.unit(4096, "miles")
  44044. },
  44045. ]
  44046. ))
  44047. characterMakers.push(() => makeCharacter(
  44048. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44049. {
  44050. side: {
  44051. height: math.unit(50, "feet"),
  44052. name: "Side",
  44053. image: {
  44054. source: "./media/characters/froimar/side.svg",
  44055. extra: 855/638,
  44056. bottom: 99/954
  44057. }
  44058. },
  44059. },
  44060. [
  44061. {
  44062. name: "Macro",
  44063. height: math.unit(50, "feet"),
  44064. default: true
  44065. },
  44066. ]
  44067. ))
  44068. characterMakers.push(() => makeCharacter(
  44069. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44070. {
  44071. front: {
  44072. height: math.unit(210, "miles"),
  44073. name: "Front",
  44074. image: {
  44075. source: "./media/characters/timothy/front.svg",
  44076. extra: 1007/943,
  44077. bottom: 62/1069
  44078. }
  44079. },
  44080. frontSkirt: {
  44081. height: math.unit(210, "miles"),
  44082. name: "Front (Skirt)",
  44083. image: {
  44084. source: "./media/characters/timothy/front-skirt.svg",
  44085. extra: 1007/943,
  44086. bottom: 62/1069
  44087. }
  44088. },
  44089. frontCoat: {
  44090. height: math.unit(210, "miles"),
  44091. name: "Front (Coat)",
  44092. image: {
  44093. source: "./media/characters/timothy/front-coat.svg",
  44094. extra: 1007/943,
  44095. bottom: 62/1069
  44096. }
  44097. },
  44098. },
  44099. [
  44100. {
  44101. name: "Macro",
  44102. height: math.unit(210, "miles"),
  44103. default: true
  44104. },
  44105. {
  44106. name: "Megamacro",
  44107. height: math.unit(210000, "miles")
  44108. },
  44109. ]
  44110. ))
  44111. characterMakers.push(() => makeCharacter(
  44112. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44113. {
  44114. front: {
  44115. height: math.unit(188, "feet"),
  44116. name: "Front",
  44117. image: {
  44118. source: "./media/characters/pyotr/front.svg",
  44119. extra: 1912/1826,
  44120. bottom: 18/1930
  44121. }
  44122. },
  44123. },
  44124. [
  44125. {
  44126. name: "Macro",
  44127. height: math.unit(188, "feet"),
  44128. default: true
  44129. },
  44130. {
  44131. name: "Megamacro",
  44132. height: math.unit(8, "miles")
  44133. },
  44134. ]
  44135. ))
  44136. characterMakers.push(() => makeCharacter(
  44137. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44138. {
  44139. side: {
  44140. height: math.unit(10, "feet"),
  44141. weight: math.unit(4500, "lb"),
  44142. name: "Side",
  44143. image: {
  44144. source: "./media/characters/ackart/side.svg",
  44145. extra: 1776/1668,
  44146. bottom: 116/1892
  44147. }
  44148. },
  44149. },
  44150. [
  44151. {
  44152. name: "Normal",
  44153. height: math.unit(10, "feet"),
  44154. default: true
  44155. },
  44156. ]
  44157. ))
  44158. characterMakers.push(() => makeCharacter(
  44159. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44160. {
  44161. side: {
  44162. height: math.unit(21, "feet"),
  44163. name: "Side",
  44164. image: {
  44165. source: "./media/characters/nolow/side.svg",
  44166. extra: 1484/1434,
  44167. bottom: 85/1569
  44168. }
  44169. },
  44170. sideErect: {
  44171. height: math.unit(21, "feet"),
  44172. name: "Side-erect",
  44173. image: {
  44174. source: "./media/characters/nolow/side-erect.svg",
  44175. extra: 1484/1434,
  44176. bottom: 85/1569
  44177. }
  44178. },
  44179. },
  44180. [
  44181. {
  44182. name: "Regular",
  44183. height: math.unit(12, "feet")
  44184. },
  44185. {
  44186. name: "Big Chee",
  44187. height: math.unit(21, "feet"),
  44188. default: true
  44189. },
  44190. ]
  44191. ))
  44192. characterMakers.push(() => makeCharacter(
  44193. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44194. {
  44195. front: {
  44196. height: math.unit(7, "feet"),
  44197. weight: math.unit(250, "lb"),
  44198. name: "Front",
  44199. image: {
  44200. source: "./media/characters/nines/front.svg",
  44201. extra: 1741/1607,
  44202. bottom: 41/1782
  44203. }
  44204. },
  44205. side: {
  44206. height: math.unit(7, "feet"),
  44207. weight: math.unit(250, "lb"),
  44208. name: "Side",
  44209. image: {
  44210. source: "./media/characters/nines/side.svg",
  44211. extra: 1854/1735,
  44212. bottom: 93/1947
  44213. }
  44214. },
  44215. back: {
  44216. height: math.unit(7, "feet"),
  44217. weight: math.unit(250, "lb"),
  44218. name: "Back",
  44219. image: {
  44220. source: "./media/characters/nines/back.svg",
  44221. extra: 1748/1615,
  44222. bottom: 20/1768
  44223. }
  44224. },
  44225. },
  44226. [
  44227. {
  44228. name: "Megamacro",
  44229. height: math.unit(99, "km"),
  44230. default: true
  44231. },
  44232. ]
  44233. ))
  44234. characterMakers.push(() => makeCharacter(
  44235. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44236. {
  44237. front: {
  44238. height: math.unit(5 + 10/12, "feet"),
  44239. weight: math.unit(210, "lb"),
  44240. name: "Front",
  44241. image: {
  44242. source: "./media/characters/zenith/front.svg",
  44243. extra: 1531/1452,
  44244. bottom: 198/1729
  44245. }
  44246. },
  44247. back: {
  44248. height: math.unit(5 + 10/12, "feet"),
  44249. weight: math.unit(210, "lb"),
  44250. name: "Back",
  44251. image: {
  44252. source: "./media/characters/zenith/back.svg",
  44253. extra: 1571/1487,
  44254. bottom: 75/1646
  44255. }
  44256. },
  44257. },
  44258. [
  44259. {
  44260. name: "Normal",
  44261. height: math.unit(5 + 10/12, "feet"),
  44262. default: true
  44263. }
  44264. ]
  44265. ))
  44266. characterMakers.push(() => makeCharacter(
  44267. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44268. {
  44269. front: {
  44270. height: math.unit(4, "feet"),
  44271. weight: math.unit(60, "lb"),
  44272. name: "Front",
  44273. image: {
  44274. source: "./media/characters/jasper/front.svg",
  44275. extra: 1450/1379,
  44276. bottom: 19/1469
  44277. }
  44278. },
  44279. },
  44280. [
  44281. {
  44282. name: "Normal",
  44283. height: math.unit(4, "feet"),
  44284. default: true
  44285. },
  44286. ]
  44287. ))
  44288. characterMakers.push(() => makeCharacter(
  44289. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44290. {
  44291. front: {
  44292. height: math.unit(6 + 5/12, "feet"),
  44293. weight: math.unit(290, "lb"),
  44294. name: "Front",
  44295. image: {
  44296. source: "./media/characters/tiberius-thyben/front.svg",
  44297. extra: 757/739,
  44298. bottom: 39/796
  44299. }
  44300. },
  44301. },
  44302. [
  44303. {
  44304. name: "Micro",
  44305. height: math.unit(1.5, "inches")
  44306. },
  44307. {
  44308. name: "Normal",
  44309. height: math.unit(6 + 5/12, "feet"),
  44310. default: true
  44311. },
  44312. {
  44313. name: "Macro",
  44314. height: math.unit(300, "feet")
  44315. },
  44316. ]
  44317. ))
  44318. characterMakers.push(() => makeCharacter(
  44319. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44320. {
  44321. front: {
  44322. height: math.unit(5 + 6/12, "feet"),
  44323. weight: math.unit(60, "kg"),
  44324. name: "Front",
  44325. image: {
  44326. source: "./media/characters/sabre/front.svg",
  44327. extra: 738/671,
  44328. bottom: 27/765
  44329. }
  44330. },
  44331. },
  44332. [
  44333. {
  44334. name: "Teeny",
  44335. height: math.unit(2, "inches")
  44336. },
  44337. {
  44338. name: "Smol",
  44339. height: math.unit(8, "inches")
  44340. },
  44341. {
  44342. name: "Normal",
  44343. height: math.unit(5 + 6/12, "feet"),
  44344. default: true
  44345. },
  44346. {
  44347. name: "Mini-Macro",
  44348. height: math.unit(15, "feet")
  44349. },
  44350. {
  44351. name: "Macro",
  44352. height: math.unit(50, "feet")
  44353. },
  44354. ]
  44355. ))
  44356. characterMakers.push(() => makeCharacter(
  44357. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44358. {
  44359. front: {
  44360. height: math.unit(6 + 4/12, "feet"),
  44361. weight: math.unit(170, "lb"),
  44362. name: "Front",
  44363. image: {
  44364. source: "./media/characters/charlie/front.svg",
  44365. extra: 1348/1228,
  44366. bottom: 15/1363
  44367. }
  44368. },
  44369. },
  44370. [
  44371. {
  44372. name: "Macro",
  44373. height: math.unit(1700, "meters"),
  44374. default: true
  44375. },
  44376. {
  44377. name: "MegaMacro",
  44378. height: math.unit(20400, "meters")
  44379. },
  44380. ]
  44381. ))
  44382. characterMakers.push(() => makeCharacter(
  44383. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44384. {
  44385. front: {
  44386. height: math.unit(1.96, "meters"),
  44387. weight: math.unit(220, "lb"),
  44388. name: "Front",
  44389. image: {
  44390. source: "./media/characters/susan-grant/front.svg",
  44391. extra: 482/478,
  44392. bottom: 7/489
  44393. }
  44394. },
  44395. },
  44396. [
  44397. {
  44398. name: "Normal",
  44399. height: math.unit(1.96, "meters"),
  44400. default: true
  44401. },
  44402. {
  44403. name: "Macro",
  44404. height: math.unit(76.2, "meters")
  44405. },
  44406. {
  44407. name: "MegaMacro",
  44408. height: math.unit(305, "meters")
  44409. },
  44410. {
  44411. name: "GigaMacro",
  44412. height: math.unit(1220, "meters")
  44413. },
  44414. {
  44415. name: "SuperMacro",
  44416. height: math.unit(4878, "meters")
  44417. },
  44418. ]
  44419. ))
  44420. characterMakers.push(() => makeCharacter(
  44421. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44422. {
  44423. front: {
  44424. height: math.unit(5 + 4/12, "feet"),
  44425. weight: math.unit(110, "lb"),
  44426. name: "Front",
  44427. image: {
  44428. source: "./media/characters/axel-isanov/front.svg",
  44429. extra: 1096/1065,
  44430. bottom: 13/1109
  44431. }
  44432. },
  44433. },
  44434. [
  44435. {
  44436. name: "Normal",
  44437. height: math.unit(5 + 4/12, "feet"),
  44438. default: true
  44439. },
  44440. ]
  44441. ))
  44442. characterMakers.push(() => makeCharacter(
  44443. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44444. {
  44445. front: {
  44446. height: math.unit(9, "feet"),
  44447. weight: math.unit(467, "lb"),
  44448. name: "Front",
  44449. image: {
  44450. source: "./media/characters/necahual/front.svg",
  44451. extra: 920/873,
  44452. bottom: 26/946
  44453. }
  44454. },
  44455. back: {
  44456. height: math.unit(9, "feet"),
  44457. weight: math.unit(467, "lb"),
  44458. name: "Back",
  44459. image: {
  44460. source: "./media/characters/necahual/back.svg",
  44461. extra: 930/884,
  44462. bottom: 16/946
  44463. }
  44464. },
  44465. frontUnderwear: {
  44466. height: math.unit(9, "feet"),
  44467. weight: math.unit(467, "lb"),
  44468. name: "Front (Underwear)",
  44469. image: {
  44470. source: "./media/characters/necahual/front-underwear.svg",
  44471. extra: 920/873,
  44472. bottom: 26/946
  44473. }
  44474. },
  44475. frontDressed: {
  44476. height: math.unit(9, "feet"),
  44477. weight: math.unit(467, "lb"),
  44478. name: "Front (Dressed)",
  44479. image: {
  44480. source: "./media/characters/necahual/front-dressed.svg",
  44481. extra: 920/873,
  44482. bottom: 26/946
  44483. }
  44484. },
  44485. },
  44486. [
  44487. {
  44488. name: "Comprsesed",
  44489. height: math.unit(9, "feet")
  44490. },
  44491. {
  44492. name: "Natural",
  44493. height: math.unit(15, "feet"),
  44494. default: true
  44495. },
  44496. {
  44497. name: "Boosted",
  44498. height: math.unit(50, "feet")
  44499. },
  44500. {
  44501. name: "Boosted+",
  44502. height: math.unit(150, "feet")
  44503. },
  44504. {
  44505. name: "Max",
  44506. height: math.unit(500, "feet")
  44507. },
  44508. ]
  44509. ))
  44510. characterMakers.push(() => makeCharacter(
  44511. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44512. {
  44513. front: {
  44514. height: math.unit(22 + 1/12, "feet"),
  44515. weight: math.unit(3200, "lb"),
  44516. name: "Front",
  44517. image: {
  44518. source: "./media/characters/theo-acacia/front.svg",
  44519. extra: 1796/1741,
  44520. bottom: 83/1879
  44521. }
  44522. },
  44523. frontUnderwear: {
  44524. height: math.unit(22 + 1/12, "feet"),
  44525. weight: math.unit(3200, "lb"),
  44526. name: "Front (Underwear)",
  44527. image: {
  44528. source: "./media/characters/theo-acacia/front-underwear.svg",
  44529. extra: 1796/1741,
  44530. bottom: 83/1879
  44531. }
  44532. },
  44533. frontNude: {
  44534. height: math.unit(22 + 1/12, "feet"),
  44535. weight: math.unit(3200, "lb"),
  44536. name: "Front (Nude)",
  44537. image: {
  44538. source: "./media/characters/theo-acacia/front-nude.svg",
  44539. extra: 1796/1741,
  44540. bottom: 83/1879
  44541. }
  44542. },
  44543. },
  44544. [
  44545. {
  44546. name: "Normal",
  44547. height: math.unit(22 + 1/12, "feet"),
  44548. default: true
  44549. },
  44550. ]
  44551. ))
  44552. characterMakers.push(() => makeCharacter(
  44553. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44554. {
  44555. front: {
  44556. height: math.unit(20, "feet"),
  44557. name: "Front",
  44558. image: {
  44559. source: "./media/characters/astra/front.svg",
  44560. extra: 1850/1714,
  44561. bottom: 106/1956
  44562. }
  44563. },
  44564. frontUndressed: {
  44565. height: math.unit(20, "feet"),
  44566. name: "Front (Undressed)",
  44567. image: {
  44568. source: "./media/characters/astra/front-undressed.svg",
  44569. extra: 1926/1749,
  44570. bottom: 0/1926
  44571. }
  44572. },
  44573. hand: {
  44574. height: math.unit(1.53, "feet"),
  44575. name: "Hand",
  44576. image: {
  44577. source: "./media/characters/astra/hand.svg"
  44578. }
  44579. },
  44580. paw: {
  44581. height: math.unit(1.53, "feet"),
  44582. name: "Paw",
  44583. image: {
  44584. source: "./media/characters/astra/paw.svg"
  44585. }
  44586. },
  44587. },
  44588. [
  44589. {
  44590. name: "Smallest",
  44591. height: math.unit(20, "feet")
  44592. },
  44593. {
  44594. name: "Normal",
  44595. height: math.unit(1e9, "miles"),
  44596. default: true
  44597. },
  44598. {
  44599. name: "Larger",
  44600. height: math.unit(5, "multiverses")
  44601. },
  44602. {
  44603. name: "Largest",
  44604. height: math.unit(1e9, "multiverses")
  44605. },
  44606. ]
  44607. ))
  44608. characterMakers.push(() => makeCharacter(
  44609. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44610. {
  44611. front: {
  44612. height: math.unit(8, "feet"),
  44613. name: "Front",
  44614. image: {
  44615. source: "./media/characters/breanna/front.svg",
  44616. extra: 1912/1632,
  44617. bottom: 33/1945
  44618. }
  44619. },
  44620. },
  44621. [
  44622. {
  44623. name: "Smallest",
  44624. height: math.unit(8, "feet")
  44625. },
  44626. {
  44627. name: "Normal",
  44628. height: math.unit(1, "mile"),
  44629. default: true
  44630. },
  44631. {
  44632. name: "Maximum",
  44633. height: math.unit(1500000000000, "lightyears")
  44634. },
  44635. ]
  44636. ))
  44637. characterMakers.push(() => makeCharacter(
  44638. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44639. {
  44640. front: {
  44641. height: math.unit(5 + 11/12, "feet"),
  44642. weight: math.unit(155, "lb"),
  44643. name: "Front",
  44644. image: {
  44645. source: "./media/characters/cai/front.svg",
  44646. extra: 1823/1702,
  44647. bottom: 32/1855
  44648. }
  44649. },
  44650. back: {
  44651. height: math.unit(5 + 11/12, "feet"),
  44652. weight: math.unit(155, "lb"),
  44653. name: "Back",
  44654. image: {
  44655. source: "./media/characters/cai/back.svg",
  44656. extra: 1809/1708,
  44657. bottom: 31/1840
  44658. }
  44659. },
  44660. },
  44661. [
  44662. {
  44663. name: "Normal",
  44664. height: math.unit(5 + 11/12, "feet"),
  44665. default: true
  44666. },
  44667. {
  44668. name: "Big",
  44669. height: math.unit(15, "feet")
  44670. },
  44671. {
  44672. name: "Macro",
  44673. height: math.unit(200, "feet")
  44674. },
  44675. ]
  44676. ))
  44677. characterMakers.push(() => makeCharacter(
  44678. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44679. {
  44680. front: {
  44681. height: math.unit(5 + 6/12, "feet"),
  44682. weight: math.unit(160, "lb"),
  44683. name: "Front",
  44684. image: {
  44685. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44686. extra: 1227/1174,
  44687. bottom: 37/1264
  44688. }
  44689. },
  44690. },
  44691. [
  44692. {
  44693. name: "Macro",
  44694. height: math.unit(444, "meters"),
  44695. default: true
  44696. },
  44697. ]
  44698. ))
  44699. characterMakers.push(() => makeCharacter(
  44700. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44701. {
  44702. front: {
  44703. height: math.unit(18 + 7/12, "feet"),
  44704. name: "Front",
  44705. image: {
  44706. source: "./media/characters/rex/front.svg",
  44707. extra: 1941/1807,
  44708. bottom: 66/2007
  44709. }
  44710. },
  44711. back: {
  44712. height: math.unit(18 + 7/12, "feet"),
  44713. name: "Back",
  44714. image: {
  44715. source: "./media/characters/rex/back.svg",
  44716. extra: 1937/1822,
  44717. bottom: 42/1979
  44718. }
  44719. },
  44720. boot: {
  44721. height: math.unit(3.45, "feet"),
  44722. name: "Boot",
  44723. image: {
  44724. source: "./media/characters/rex/boot.svg"
  44725. }
  44726. },
  44727. paw: {
  44728. height: math.unit(4.17, "feet"),
  44729. name: "Paw",
  44730. image: {
  44731. source: "./media/characters/rex/paw.svg"
  44732. }
  44733. },
  44734. head: {
  44735. height: math.unit(6.728, "feet"),
  44736. name: "Head",
  44737. image: {
  44738. source: "./media/characters/rex/head.svg"
  44739. }
  44740. },
  44741. },
  44742. [
  44743. {
  44744. name: "Nano",
  44745. height: math.unit(18 + 7/12, "feet")
  44746. },
  44747. {
  44748. name: "Micro",
  44749. height: math.unit(1.5, "megameters")
  44750. },
  44751. {
  44752. name: "Normal",
  44753. height: math.unit(440, "megameters"),
  44754. default: true
  44755. },
  44756. {
  44757. name: "Macro",
  44758. height: math.unit(2.5, "gigameters")
  44759. },
  44760. {
  44761. name: "Gigamacro",
  44762. height: math.unit(2, "galaxies")
  44763. },
  44764. ]
  44765. ))
  44766. characterMakers.push(() => makeCharacter(
  44767. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44768. {
  44769. side: {
  44770. height: math.unit(32, "feet"),
  44771. weight: math.unit(250000, "lb"),
  44772. name: "Side",
  44773. image: {
  44774. source: "./media/characters/silverwing/side.svg",
  44775. extra: 1100/1019,
  44776. bottom: 204/1304
  44777. }
  44778. },
  44779. },
  44780. [
  44781. {
  44782. name: "Normal",
  44783. height: math.unit(32, "feet"),
  44784. default: true
  44785. },
  44786. ]
  44787. ))
  44788. characterMakers.push(() => makeCharacter(
  44789. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44790. {
  44791. front: {
  44792. height: math.unit(6 + 6/12, "feet"),
  44793. weight: math.unit(350, "lb"),
  44794. name: "Front",
  44795. image: {
  44796. source: "./media/characters/tristan-hawthorne/front.svg",
  44797. extra: 1159/1124,
  44798. bottom: 37/1196
  44799. },
  44800. form: "labrador",
  44801. default: true
  44802. },
  44803. skunkFront: {
  44804. height: math.unit(4 + 6/12, "feet"),
  44805. weight: math.unit(120, "lb"),
  44806. name: "Front",
  44807. image: {
  44808. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44809. extra: 1609/1551,
  44810. bottom: 169/1778
  44811. },
  44812. form: "skunk",
  44813. default: true
  44814. },
  44815. },
  44816. [
  44817. {
  44818. name: "Normal",
  44819. height: math.unit(6 + 6/12, "feet"),
  44820. form: "labrador",
  44821. default: true
  44822. },
  44823. {
  44824. name: "Normal",
  44825. height: math.unit(4 + 6/12, "feet"),
  44826. form: "skunk",
  44827. default: true
  44828. },
  44829. ],
  44830. {
  44831. "labrador": {
  44832. name: "Labrador",
  44833. default: true
  44834. },
  44835. "skunk": {
  44836. name: "Skunk"
  44837. }
  44838. }
  44839. ))
  44840. characterMakers.push(() => makeCharacter(
  44841. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44842. {
  44843. front: {
  44844. height: math.unit(5 + 11/12, "feet"),
  44845. weight: math.unit(190, "lb"),
  44846. name: "Front",
  44847. image: {
  44848. source: "./media/characters/mizu/front.svg",
  44849. extra: 1988/1788,
  44850. bottom: 14/2002
  44851. }
  44852. },
  44853. },
  44854. [
  44855. {
  44856. name: "Normal",
  44857. height: math.unit(5 + 11/12, "feet"),
  44858. default: true
  44859. },
  44860. ]
  44861. ))
  44862. characterMakers.push(() => makeCharacter(
  44863. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44864. {
  44865. front: {
  44866. height: math.unit(1.7, "feet"),
  44867. weight: math.unit(50, "lb"),
  44868. name: "Front",
  44869. image: {
  44870. source: "./media/characters/dechroma/front.svg",
  44871. extra: 1095/859,
  44872. bottom: 64/1159
  44873. }
  44874. },
  44875. },
  44876. [
  44877. {
  44878. name: "Normal",
  44879. height: math.unit(1.7, "feet"),
  44880. default: true
  44881. },
  44882. ]
  44883. ))
  44884. characterMakers.push(() => makeCharacter(
  44885. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44886. {
  44887. side: {
  44888. height: math.unit(30, "feet"),
  44889. name: "Side",
  44890. image: {
  44891. source: "./media/characters/veluren-thanazel/side.svg",
  44892. extra: 1611/633,
  44893. bottom: 118/1729
  44894. }
  44895. },
  44896. front: {
  44897. height: math.unit(30, "feet"),
  44898. name: "Front",
  44899. image: {
  44900. source: "./media/characters/veluren-thanazel/front.svg",
  44901. extra: 1486/636,
  44902. bottom: 238/1724
  44903. }
  44904. },
  44905. head: {
  44906. height: math.unit(21.4, "feet"),
  44907. name: "Head",
  44908. image: {
  44909. source: "./media/characters/veluren-thanazel/head.svg"
  44910. }
  44911. },
  44912. genitals: {
  44913. height: math.unit(19.4, "feet"),
  44914. name: "Genitals",
  44915. image: {
  44916. source: "./media/characters/veluren-thanazel/genitals.svg"
  44917. }
  44918. },
  44919. },
  44920. [
  44921. {
  44922. name: "Social",
  44923. height: math.unit(6, "feet")
  44924. },
  44925. {
  44926. name: "Play",
  44927. height: math.unit(12, "feet")
  44928. },
  44929. {
  44930. name: "True",
  44931. height: math.unit(30, "feet"),
  44932. default: true
  44933. },
  44934. ]
  44935. ))
  44936. characterMakers.push(() => makeCharacter(
  44937. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44938. {
  44939. front: {
  44940. height: math.unit(7 + 6/12, "feet"),
  44941. weight: math.unit(500, "kg"),
  44942. name: "Front",
  44943. image: {
  44944. source: "./media/characters/arcturas/front.svg",
  44945. extra: 1700/1500,
  44946. bottom: 145/1845
  44947. }
  44948. },
  44949. },
  44950. [
  44951. {
  44952. name: "Normal",
  44953. height: math.unit(7 + 6/12, "feet"),
  44954. default: true
  44955. },
  44956. ]
  44957. ))
  44958. characterMakers.push(() => makeCharacter(
  44959. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44960. {
  44961. side: {
  44962. height: math.unit(6, "feet"),
  44963. weight: math.unit(2, "tons"),
  44964. name: "Side",
  44965. image: {
  44966. source: "./media/characters/vitaen/side.svg",
  44967. extra: 1157/617,
  44968. bottom: 122/1279
  44969. }
  44970. },
  44971. },
  44972. [
  44973. {
  44974. name: "Normal",
  44975. height: math.unit(6, "feet"),
  44976. default: true
  44977. },
  44978. ]
  44979. ))
  44980. characterMakers.push(() => makeCharacter(
  44981. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44982. {
  44983. front: {
  44984. height: math.unit(19, "feet"),
  44985. name: "Front",
  44986. image: {
  44987. source: "./media/characters/fia-dreamweaver/front.svg",
  44988. extra: 1630/1504,
  44989. bottom: 25/1655
  44990. }
  44991. },
  44992. },
  44993. [
  44994. {
  44995. name: "Normal",
  44996. height: math.unit(19, "feet"),
  44997. default: true
  44998. },
  44999. ]
  45000. ))
  45001. characterMakers.push(() => makeCharacter(
  45002. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45003. {
  45004. front: {
  45005. height: math.unit(5 + 4/12, "feet"),
  45006. name: "Front",
  45007. image: {
  45008. source: "./media/characters/artan/front.svg",
  45009. extra: 1618/1535,
  45010. bottom: 46/1664
  45011. }
  45012. },
  45013. back: {
  45014. height: math.unit(5 + 4/12, "feet"),
  45015. name: "Back",
  45016. image: {
  45017. source: "./media/characters/artan/back.svg",
  45018. extra: 1618/1543,
  45019. bottom: 31/1649
  45020. }
  45021. },
  45022. },
  45023. [
  45024. {
  45025. name: "Normal",
  45026. height: math.unit(5 + 4/12, "feet"),
  45027. default: true
  45028. },
  45029. ]
  45030. ))
  45031. characterMakers.push(() => makeCharacter(
  45032. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45033. {
  45034. side: {
  45035. height: math.unit(182, "cm"),
  45036. weight: math.unit(1000, "lb"),
  45037. name: "Side",
  45038. image: {
  45039. source: "./media/characters/silver-dragon/side.svg",
  45040. extra: 710/287,
  45041. bottom: 88/798
  45042. }
  45043. },
  45044. },
  45045. [
  45046. {
  45047. name: "Normal",
  45048. height: math.unit(182, "cm"),
  45049. default: true
  45050. },
  45051. ]
  45052. ))
  45053. characterMakers.push(() => makeCharacter(
  45054. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45055. {
  45056. side: {
  45057. height: math.unit(6 + 6/12, "feet"),
  45058. weight: math.unit(1.5, "tons"),
  45059. name: "Side",
  45060. image: {
  45061. source: "./media/characters/zephyr/side.svg",
  45062. extra: 1433/586,
  45063. bottom: 109/1542
  45064. }
  45065. },
  45066. },
  45067. [
  45068. {
  45069. name: "Normal",
  45070. height: math.unit(6 + 6/12, "feet"),
  45071. default: true
  45072. },
  45073. ]
  45074. ))
  45075. characterMakers.push(() => makeCharacter(
  45076. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45077. {
  45078. side: {
  45079. height: math.unit(1, "feet"),
  45080. name: "Side",
  45081. image: {
  45082. source: "./media/characters/vixye/side.svg",
  45083. extra: 632/541,
  45084. bottom: 0/632
  45085. }
  45086. },
  45087. },
  45088. [
  45089. {
  45090. name: "Normal",
  45091. height: math.unit(1, "feet"),
  45092. default: true
  45093. },
  45094. {
  45095. name: "True",
  45096. height: math.unit(1e15, "multiverses")
  45097. },
  45098. ]
  45099. ))
  45100. characterMakers.push(() => makeCharacter(
  45101. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45102. {
  45103. front: {
  45104. height: math.unit(8 + 2/12, "feet"),
  45105. weight: math.unit(650, "lb"),
  45106. name: "Front",
  45107. image: {
  45108. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45109. extra: 1174/1137,
  45110. bottom: 82/1256
  45111. }
  45112. },
  45113. back: {
  45114. height: math.unit(8 + 2/12, "feet"),
  45115. weight: math.unit(650, "lb"),
  45116. name: "Back",
  45117. image: {
  45118. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45119. extra: 1204/1157,
  45120. bottom: 46/1250
  45121. }
  45122. },
  45123. },
  45124. [
  45125. {
  45126. name: "Wildform",
  45127. height: math.unit(8 + 2/12, "feet"),
  45128. default: true
  45129. },
  45130. ]
  45131. ))
  45132. characterMakers.push(() => makeCharacter(
  45133. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45134. {
  45135. front: {
  45136. height: math.unit(18, "feet"),
  45137. name: "Front",
  45138. image: {
  45139. source: "./media/characters/cyphin/front.svg",
  45140. extra: 970/886,
  45141. bottom: 42/1012
  45142. }
  45143. },
  45144. back: {
  45145. height: math.unit(18, "feet"),
  45146. name: "Back",
  45147. image: {
  45148. source: "./media/characters/cyphin/back.svg",
  45149. extra: 1009/894,
  45150. bottom: 24/1033
  45151. }
  45152. },
  45153. head: {
  45154. height: math.unit(5.05, "feet"),
  45155. name: "Head",
  45156. image: {
  45157. source: "./media/characters/cyphin/head.svg"
  45158. }
  45159. },
  45160. tailbud: {
  45161. height: math.unit(5, "feet"),
  45162. name: "Tailbud",
  45163. image: {
  45164. source: "./media/characters/cyphin/tailbud.svg"
  45165. }
  45166. },
  45167. },
  45168. [
  45169. ]
  45170. ))
  45171. characterMakers.push(() => makeCharacter(
  45172. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45173. {
  45174. side: {
  45175. height: math.unit(10, "feet"),
  45176. weight: math.unit(6, "tons"),
  45177. name: "Side",
  45178. image: {
  45179. source: "./media/characters/raijin/side.svg",
  45180. extra: 1529/613,
  45181. bottom: 337/1866
  45182. }
  45183. },
  45184. },
  45185. [
  45186. {
  45187. name: "Normal",
  45188. height: math.unit(10, "feet"),
  45189. default: true
  45190. },
  45191. ]
  45192. ))
  45193. characterMakers.push(() => makeCharacter(
  45194. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45195. {
  45196. side: {
  45197. height: math.unit(9, "feet"),
  45198. name: "Side",
  45199. image: {
  45200. source: "./media/characters/nilghais/side.svg",
  45201. extra: 1047/744,
  45202. bottom: 91/1138
  45203. }
  45204. },
  45205. head: {
  45206. height: math.unit(3.14, "feet"),
  45207. name: "Head",
  45208. image: {
  45209. source: "./media/characters/nilghais/head.svg"
  45210. }
  45211. },
  45212. mouth: {
  45213. height: math.unit(4.6, "feet"),
  45214. name: "Mouth",
  45215. image: {
  45216. source: "./media/characters/nilghais/mouth.svg"
  45217. }
  45218. },
  45219. wings: {
  45220. height: math.unit(24, "feet"),
  45221. name: "Wings",
  45222. image: {
  45223. source: "./media/characters/nilghais/wings.svg"
  45224. }
  45225. },
  45226. ass: {
  45227. height: math.unit(6.12, "feet"),
  45228. name: "Ass",
  45229. image: {
  45230. source: "./media/characters/nilghais/ass.svg"
  45231. }
  45232. },
  45233. },
  45234. [
  45235. {
  45236. name: "Normal",
  45237. height: math.unit(9, "feet"),
  45238. default: true
  45239. },
  45240. ]
  45241. ))
  45242. characterMakers.push(() => makeCharacter(
  45243. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45244. {
  45245. regular: {
  45246. height: math.unit(16 + 2/12, "feet"),
  45247. weight: math.unit(2300, "lb"),
  45248. name: "Regular",
  45249. image: {
  45250. source: "./media/characters/zolgar/regular.svg",
  45251. extra: 1246/1004,
  45252. bottom: 124/1370
  45253. }
  45254. },
  45255. boxers: {
  45256. height: math.unit(16 + 2/12, "feet"),
  45257. weight: math.unit(2300, "lb"),
  45258. name: "Boxers",
  45259. image: {
  45260. source: "./media/characters/zolgar/boxers.svg",
  45261. extra: 1246/1004,
  45262. bottom: 124/1370
  45263. }
  45264. },
  45265. armored: {
  45266. height: math.unit(16 + 2/12, "feet"),
  45267. weight: math.unit(2300, "lb"),
  45268. name: "Armored",
  45269. image: {
  45270. source: "./media/characters/zolgar/armored.svg",
  45271. extra: 1246/1004,
  45272. bottom: 124/1370
  45273. }
  45274. },
  45275. goth: {
  45276. height: math.unit(16 + 2/12, "feet"),
  45277. weight: math.unit(2300, "lb"),
  45278. name: "Goth",
  45279. image: {
  45280. source: "./media/characters/zolgar/goth.svg",
  45281. extra: 1246/1004,
  45282. bottom: 124/1370
  45283. }
  45284. },
  45285. },
  45286. [
  45287. {
  45288. name: "Shrunken Down",
  45289. height: math.unit(9 + 2/12, "feet")
  45290. },
  45291. {
  45292. name: "Normal",
  45293. height: math.unit(16 + 2/12, "feet"),
  45294. default: true
  45295. },
  45296. ]
  45297. ))
  45298. characterMakers.push(() => makeCharacter(
  45299. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45300. {
  45301. front: {
  45302. height: math.unit(6, "feet"),
  45303. weight: math.unit(168, "lb"),
  45304. name: "Front",
  45305. image: {
  45306. source: "./media/characters/luca/front.svg",
  45307. extra: 841/667,
  45308. bottom: 102/943
  45309. }
  45310. },
  45311. },
  45312. [
  45313. {
  45314. name: "Normal",
  45315. height: math.unit(6, "feet"),
  45316. default: true
  45317. },
  45318. ]
  45319. ))
  45320. characterMakers.push(() => makeCharacter(
  45321. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45322. {
  45323. side: {
  45324. height: math.unit(7 + 3/12, "feet"),
  45325. weight: math.unit(312, "lb"),
  45326. name: "Side",
  45327. image: {
  45328. source: "./media/characters/zezo/side.svg",
  45329. extra: 1192/1067,
  45330. bottom: 63/1255
  45331. }
  45332. },
  45333. },
  45334. [
  45335. {
  45336. name: "Normal",
  45337. height: math.unit(7 + 3/12, "feet"),
  45338. default: true
  45339. },
  45340. ]
  45341. ))
  45342. characterMakers.push(() => makeCharacter(
  45343. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45344. {
  45345. front: {
  45346. height: math.unit(5 + 5/12, "feet"),
  45347. weight: math.unit(170, "lb"),
  45348. name: "Front",
  45349. image: {
  45350. source: "./media/characters/mayso/front.svg",
  45351. extra: 1215/1108,
  45352. bottom: 16/1231
  45353. }
  45354. },
  45355. },
  45356. [
  45357. {
  45358. name: "Normal",
  45359. height: math.unit(5 + 5/12, "feet"),
  45360. default: true
  45361. },
  45362. ]
  45363. ))
  45364. characterMakers.push(() => makeCharacter(
  45365. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45366. {
  45367. front: {
  45368. height: math.unit(4 + 3/12, "feet"),
  45369. weight: math.unit(80, "lb"),
  45370. name: "Front",
  45371. image: {
  45372. source: "./media/characters/hess/front.svg",
  45373. extra: 1200/1123,
  45374. bottom: 16/1216
  45375. }
  45376. },
  45377. },
  45378. [
  45379. {
  45380. name: "Normal",
  45381. height: math.unit(4 + 3/12, "feet"),
  45382. default: true
  45383. },
  45384. ]
  45385. ))
  45386. characterMakers.push(() => makeCharacter(
  45387. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45388. {
  45389. front: {
  45390. height: math.unit(1.9, "meters"),
  45391. name: "Front",
  45392. image: {
  45393. source: "./media/characters/ashgar/front.svg",
  45394. extra: 1177/1146,
  45395. bottom: 99/1276
  45396. }
  45397. },
  45398. back: {
  45399. height: math.unit(1.9, "meters"),
  45400. name: "Back",
  45401. image: {
  45402. source: "./media/characters/ashgar/back.svg",
  45403. extra: 1201/1183,
  45404. bottom: 53/1254
  45405. }
  45406. },
  45407. feral: {
  45408. height: math.unit(1.4, "meters"),
  45409. name: "Feral",
  45410. image: {
  45411. source: "./media/characters/ashgar/feral.svg",
  45412. extra: 370/345,
  45413. bottom: 45/415
  45414. }
  45415. },
  45416. },
  45417. [
  45418. {
  45419. name: "Normal",
  45420. height: math.unit(1.9, "meters"),
  45421. default: true
  45422. },
  45423. ]
  45424. ))
  45425. characterMakers.push(() => makeCharacter(
  45426. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45427. {
  45428. regular: {
  45429. height: math.unit(6, "feet"),
  45430. weight: math.unit(220, "lb"),
  45431. name: "Regular",
  45432. image: {
  45433. source: "./media/characters/phillip/regular.svg",
  45434. extra: 1373/1277,
  45435. bottom: 75/1448
  45436. }
  45437. },
  45438. dressed: {
  45439. height: math.unit(6, "feet"),
  45440. weight: math.unit(220, "lb"),
  45441. name: "Dressed",
  45442. image: {
  45443. source: "./media/characters/phillip/dressed.svg",
  45444. extra: 1373/1277,
  45445. bottom: 75/1448
  45446. }
  45447. },
  45448. paw: {
  45449. height: math.unit(1.44, "feet"),
  45450. name: "Paw",
  45451. image: {
  45452. source: "./media/characters/phillip/paw.svg"
  45453. }
  45454. },
  45455. },
  45456. [
  45457. {
  45458. name: "Normal",
  45459. height: math.unit(6, "feet"),
  45460. default: true
  45461. },
  45462. ]
  45463. ))
  45464. characterMakers.push(() => makeCharacter(
  45465. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45466. {
  45467. side: {
  45468. height: math.unit(42, "feet"),
  45469. name: "Side",
  45470. image: {
  45471. source: "./media/characters/uvula/side.svg",
  45472. extra: 683/586,
  45473. bottom: 60/743
  45474. }
  45475. },
  45476. front: {
  45477. height: math.unit(42, "feet"),
  45478. name: "Front",
  45479. image: {
  45480. source: "./media/characters/uvula/front.svg",
  45481. extra: 705/613,
  45482. bottom: 54/759
  45483. }
  45484. },
  45485. maw: {
  45486. height: math.unit(23.5, "feet"),
  45487. name: "Maw",
  45488. image: {
  45489. source: "./media/characters/uvula/maw.svg"
  45490. }
  45491. },
  45492. },
  45493. [
  45494. {
  45495. name: "Original Size",
  45496. height: math.unit(14, "inches")
  45497. },
  45498. {
  45499. name: "Human Size",
  45500. height: math.unit(6, "feet")
  45501. },
  45502. {
  45503. name: "Big",
  45504. height: math.unit(42, "feet"),
  45505. default: true
  45506. },
  45507. {
  45508. name: "Bigger",
  45509. height: math.unit(100, "feet")
  45510. },
  45511. ]
  45512. ))
  45513. characterMakers.push(() => makeCharacter(
  45514. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45515. {
  45516. front: {
  45517. height: math.unit(5 + 11/12, "feet"),
  45518. name: "Front",
  45519. image: {
  45520. source: "./media/characters/lannah/front.svg",
  45521. extra: 1208/1113,
  45522. bottom: 97/1305
  45523. }
  45524. },
  45525. },
  45526. [
  45527. {
  45528. name: "Normal",
  45529. height: math.unit(5 + 11/12, "feet"),
  45530. default: true
  45531. },
  45532. ]
  45533. ))
  45534. characterMakers.push(() => makeCharacter(
  45535. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45536. {
  45537. front: {
  45538. height: math.unit(6 + 3/12, "feet"),
  45539. weight: math.unit(3.5, "tons"),
  45540. name: "Front",
  45541. image: {
  45542. source: "./media/characters/emberflame/front.svg",
  45543. extra: 1198/672,
  45544. bottom: 82/1280
  45545. }
  45546. },
  45547. side: {
  45548. height: math.unit(6 + 3/12, "feet"),
  45549. weight: math.unit(3.5, "tons"),
  45550. name: "Side",
  45551. image: {
  45552. source: "./media/characters/emberflame/side.svg",
  45553. extra: 938/527,
  45554. bottom: 56/994
  45555. }
  45556. },
  45557. },
  45558. [
  45559. {
  45560. name: "Normal",
  45561. height: math.unit(6 + 3/12, "feet"),
  45562. default: true
  45563. },
  45564. ]
  45565. ))
  45566. characterMakers.push(() => makeCharacter(
  45567. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45568. {
  45569. side: {
  45570. height: math.unit(17.5, "feet"),
  45571. weight: math.unit(35, "tons"),
  45572. name: "Side",
  45573. image: {
  45574. source: "./media/characters/sophie-ambrose/side.svg",
  45575. extra: 1573/1242,
  45576. bottom: 71/1644
  45577. }
  45578. },
  45579. maw: {
  45580. height: math.unit(7.4, "feet"),
  45581. name: "Maw",
  45582. image: {
  45583. source: "./media/characters/sophie-ambrose/maw.svg"
  45584. }
  45585. },
  45586. },
  45587. [
  45588. {
  45589. name: "Normal",
  45590. height: math.unit(17.5, "feet"),
  45591. default: true
  45592. },
  45593. ]
  45594. ))
  45595. characterMakers.push(() => makeCharacter(
  45596. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45597. {
  45598. front: {
  45599. height: math.unit(280, "feet"),
  45600. weight: math.unit(550, "tons"),
  45601. name: "Front",
  45602. image: {
  45603. source: "./media/characters/king-mugi/front.svg",
  45604. extra: 1102/947,
  45605. bottom: 104/1206
  45606. }
  45607. },
  45608. },
  45609. [
  45610. {
  45611. name: "King Mugi",
  45612. height: math.unit(280, "feet"),
  45613. default: true
  45614. },
  45615. ]
  45616. ))
  45617. characterMakers.push(() => makeCharacter(
  45618. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45619. {
  45620. female: {
  45621. height: math.unit(300, "meters"),
  45622. name: "Front",
  45623. image: {
  45624. source: "./media/characters/nova-fox/female.svg",
  45625. extra: 664/632,
  45626. bottom: 51/715
  45627. },
  45628. form: "female",
  45629. default: true
  45630. },
  45631. male: {
  45632. height: math.unit(300, "meters"),
  45633. name: "Front",
  45634. image: {
  45635. source: "./media/characters/nova-fox/male.svg",
  45636. extra: 663/631,
  45637. bottom: 30/693
  45638. },
  45639. form: "male",
  45640. default: true
  45641. },
  45642. },
  45643. [
  45644. {
  45645. name: "Macro",
  45646. height: math.unit(300, "meters"),
  45647. default: true,
  45648. allForms: true
  45649. },
  45650. ],
  45651. {
  45652. "female": {
  45653. name: "Female",
  45654. default: true
  45655. },
  45656. "male": {
  45657. name: "Male",
  45658. },
  45659. }
  45660. ))
  45661. characterMakers.push(() => makeCharacter(
  45662. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45663. {
  45664. front: {
  45665. height: math.unit(6 + 3/12, "feet"),
  45666. weight: math.unit(170, "lb"),
  45667. name: "Front",
  45668. image: {
  45669. source: "./media/characters/sam-bat/front.svg",
  45670. extra: 1601/1411,
  45671. bottom: 125/1726
  45672. }
  45673. },
  45674. back: {
  45675. height: math.unit(6 + 3/12, "feet"),
  45676. weight: math.unit(170, "lb"),
  45677. name: "Back",
  45678. image: {
  45679. source: "./media/characters/sam-bat/back.svg",
  45680. extra: 1577/1405,
  45681. bottom: 58/1635
  45682. }
  45683. },
  45684. },
  45685. [
  45686. {
  45687. name: "Normal",
  45688. height: math.unit(6 + 3/12, "feet"),
  45689. default: true
  45690. },
  45691. ]
  45692. ))
  45693. characterMakers.push(() => makeCharacter(
  45694. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45695. {
  45696. front: {
  45697. height: math.unit(59, "feet"),
  45698. weight: math.unit(40000, "lb"),
  45699. name: "Front",
  45700. image: {
  45701. source: "./media/characters/inari/front.svg",
  45702. extra: 1884/1350,
  45703. bottom: 95/1979
  45704. }
  45705. },
  45706. },
  45707. [
  45708. {
  45709. name: "Gigantamax",
  45710. height: math.unit(59, "feet"),
  45711. default: true
  45712. },
  45713. ]
  45714. ))
  45715. characterMakers.push(() => makeCharacter(
  45716. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45717. {
  45718. front: {
  45719. height: math.unit(5 + 8/12, "feet"),
  45720. name: "Front",
  45721. image: {
  45722. source: "./media/characters/elizabeth/front.svg",
  45723. extra: 1395/1298,
  45724. bottom: 54/1449
  45725. }
  45726. },
  45727. mouth: {
  45728. height: math.unit(1.97, "feet"),
  45729. name: "Mouth",
  45730. image: {
  45731. source: "./media/characters/elizabeth/mouth.svg"
  45732. }
  45733. },
  45734. foot: {
  45735. height: math.unit(1.17, "feet"),
  45736. name: "Foot",
  45737. image: {
  45738. source: "./media/characters/elizabeth/foot.svg"
  45739. }
  45740. },
  45741. },
  45742. [
  45743. {
  45744. name: "Normal",
  45745. height: math.unit(5 + 8/12, "feet"),
  45746. default: true
  45747. },
  45748. {
  45749. name: "Minimacro",
  45750. height: math.unit(18, "feet")
  45751. },
  45752. {
  45753. name: "Macro",
  45754. height: math.unit(180, "feet")
  45755. },
  45756. ]
  45757. ))
  45758. characterMakers.push(() => makeCharacter(
  45759. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45760. {
  45761. front: {
  45762. height: math.unit(5 + 2/12, "feet"),
  45763. name: "Front",
  45764. image: {
  45765. source: "./media/characters/october-gossamer/front.svg",
  45766. extra: 505/454,
  45767. bottom: 7/512
  45768. }
  45769. },
  45770. back: {
  45771. height: math.unit(5 + 2/12, "feet"),
  45772. name: "Back",
  45773. image: {
  45774. source: "./media/characters/october-gossamer/back.svg",
  45775. extra: 501/454,
  45776. bottom: 11/512
  45777. }
  45778. },
  45779. },
  45780. [
  45781. {
  45782. name: "Normal",
  45783. height: math.unit(5 + 2/12, "feet"),
  45784. default: true
  45785. },
  45786. ]
  45787. ))
  45788. characterMakers.push(() => makeCharacter(
  45789. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45790. {
  45791. front: {
  45792. height: math.unit(5, "feet"),
  45793. name: "Front",
  45794. image: {
  45795. source: "./media/characters/epiglottis/front.svg",
  45796. extra: 923/849,
  45797. bottom: 17/940
  45798. }
  45799. },
  45800. },
  45801. [
  45802. {
  45803. name: "Original Size",
  45804. height: math.unit(10, "inches")
  45805. },
  45806. {
  45807. name: "Human Size",
  45808. height: math.unit(5, "feet"),
  45809. default: true
  45810. },
  45811. {
  45812. name: "Big",
  45813. height: math.unit(25, "feet")
  45814. },
  45815. {
  45816. name: "Bigger",
  45817. height: math.unit(50, "feet")
  45818. },
  45819. {
  45820. name: "oh lawd",
  45821. height: math.unit(75, "feet")
  45822. },
  45823. ]
  45824. ))
  45825. characterMakers.push(() => makeCharacter(
  45826. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45827. {
  45828. front: {
  45829. height: math.unit(2 + 4/12, "feet"),
  45830. weight: math.unit(60, "lb"),
  45831. name: "Front",
  45832. image: {
  45833. source: "./media/characters/lerm/front.svg",
  45834. extra: 796/790,
  45835. bottom: 79/875
  45836. }
  45837. },
  45838. },
  45839. [
  45840. {
  45841. name: "Normal",
  45842. height: math.unit(2 + 4/12, "feet"),
  45843. default: true
  45844. },
  45845. ]
  45846. ))
  45847. characterMakers.push(() => makeCharacter(
  45848. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45849. {
  45850. front: {
  45851. height: math.unit(5.5, "feet"),
  45852. weight: math.unit(130, "lb"),
  45853. name: "Front",
  45854. image: {
  45855. source: "./media/characters/xena-nebadon/front.svg",
  45856. extra: 1828/1730,
  45857. bottom: 79/1907
  45858. }
  45859. },
  45860. },
  45861. [
  45862. {
  45863. name: "Tiny Puppy",
  45864. height: math.unit(3, "inches")
  45865. },
  45866. {
  45867. name: "Normal",
  45868. height: math.unit(5.5, "feet"),
  45869. default: true
  45870. },
  45871. {
  45872. name: "Lotta Lady",
  45873. height: math.unit(12, "feet")
  45874. },
  45875. {
  45876. name: "Pretty Big",
  45877. height: math.unit(100, "feet")
  45878. },
  45879. {
  45880. name: "Big",
  45881. height: math.unit(500, "feet")
  45882. },
  45883. {
  45884. name: "Skyscraper Toys",
  45885. height: math.unit(2500, "feet")
  45886. },
  45887. {
  45888. name: "Plane Catcher",
  45889. height: math.unit(8, "miles")
  45890. },
  45891. {
  45892. name: "Planet Toys",
  45893. height: math.unit(15, "earths")
  45894. },
  45895. {
  45896. name: "Stardust",
  45897. height: math.unit(0.25, "galaxies")
  45898. },
  45899. {
  45900. name: "Snacks",
  45901. height: math.unit(70, "universes")
  45902. },
  45903. ]
  45904. ))
  45905. characterMakers.push(() => makeCharacter(
  45906. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45907. {
  45908. front: {
  45909. height: math.unit(1.6, "meters"),
  45910. weight: math.unit(60, "kg"),
  45911. name: "Front",
  45912. image: {
  45913. source: "./media/characters/bounty/front.svg",
  45914. extra: 1426/1308,
  45915. bottom: 15/1441
  45916. }
  45917. },
  45918. back: {
  45919. height: math.unit(1.6, "meters"),
  45920. weight: math.unit(60, "kg"),
  45921. name: "Back",
  45922. image: {
  45923. source: "./media/characters/bounty/back.svg",
  45924. extra: 1417/1307,
  45925. bottom: 8/1425
  45926. }
  45927. },
  45928. },
  45929. [
  45930. {
  45931. name: "Normal",
  45932. height: math.unit(1.6, "meters"),
  45933. default: true
  45934. },
  45935. {
  45936. name: "Macro",
  45937. height: math.unit(300, "meters")
  45938. },
  45939. ]
  45940. ))
  45941. characterMakers.push(() => makeCharacter(
  45942. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45943. {
  45944. front: {
  45945. height: math.unit(2 + 8/12, "feet"),
  45946. weight: math.unit(15, "lb"),
  45947. name: "Front",
  45948. image: {
  45949. source: "./media/characters/mochi/front.svg",
  45950. extra: 1022/852,
  45951. bottom: 435/1457
  45952. }
  45953. },
  45954. back: {
  45955. height: math.unit(2 + 8/12, "feet"),
  45956. weight: math.unit(15, "lb"),
  45957. name: "Back",
  45958. image: {
  45959. source: "./media/characters/mochi/back.svg",
  45960. extra: 1335/1119,
  45961. bottom: 39/1374
  45962. }
  45963. },
  45964. bird: {
  45965. height: math.unit(2 + 8/12, "feet"),
  45966. weight: math.unit(15, "lb"),
  45967. name: "Bird",
  45968. image: {
  45969. source: "./media/characters/mochi/bird.svg",
  45970. extra: 1251/1113,
  45971. bottom: 178/1429
  45972. }
  45973. },
  45974. kaiju: {
  45975. height: math.unit(154, "feet"),
  45976. weight: math.unit(1e7, "lb"),
  45977. name: "Kaiju",
  45978. image: {
  45979. source: "./media/characters/mochi/kaiju.svg",
  45980. extra: 460/324,
  45981. bottom: 40/500
  45982. }
  45983. },
  45984. head: {
  45985. height: math.unit(1.21, "feet"),
  45986. name: "Head",
  45987. image: {
  45988. source: "./media/characters/mochi/head.svg"
  45989. }
  45990. },
  45991. alternateTail: {
  45992. height: math.unit(2 + 8/12, "feet"),
  45993. weight: math.unit(45, "lb"),
  45994. name: "Alternate Tail",
  45995. image: {
  45996. source: "./media/characters/mochi/alternate-tail.svg",
  45997. extra: 139/76,
  45998. bottom: 45/184
  45999. }
  46000. },
  46001. },
  46002. [
  46003. {
  46004. name: "Micro",
  46005. height: math.unit(2, "inches")
  46006. },
  46007. {
  46008. name: "Normal",
  46009. height: math.unit(2 + 8/12, "feet"),
  46010. default: true
  46011. },
  46012. {
  46013. name: "Macro",
  46014. height: math.unit(106, "feet")
  46015. },
  46016. ]
  46017. ))
  46018. characterMakers.push(() => makeCharacter(
  46019. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46020. {
  46021. front: {
  46022. height: math.unit(5.67, "feet"),
  46023. weight: math.unit(135, "lb"),
  46024. name: "Front",
  46025. image: {
  46026. source: "./media/characters/sarel/front.svg",
  46027. extra: 865/788,
  46028. bottom: 97/962
  46029. }
  46030. },
  46031. back: {
  46032. height: math.unit(5.67, "feet"),
  46033. weight: math.unit(135, "lb"),
  46034. name: "Back",
  46035. image: {
  46036. source: "./media/characters/sarel/back.svg",
  46037. extra: 857/777,
  46038. bottom: 32/889
  46039. }
  46040. },
  46041. chozoan: {
  46042. height: math.unit(5.67, "feet"),
  46043. weight: math.unit(135, "lb"),
  46044. name: "Chozoan",
  46045. image: {
  46046. source: "./media/characters/sarel/chozoan.svg",
  46047. extra: 865/788,
  46048. bottom: 97/962
  46049. }
  46050. },
  46051. current: {
  46052. height: math.unit(5.67, "feet"),
  46053. weight: math.unit(135, "lb"),
  46054. name: "Current",
  46055. image: {
  46056. source: "./media/characters/sarel/current.svg",
  46057. extra: 865/788,
  46058. bottom: 97/962
  46059. }
  46060. },
  46061. head: {
  46062. height: math.unit(1.77, "feet"),
  46063. name: "Head",
  46064. image: {
  46065. source: "./media/characters/sarel/head.svg"
  46066. }
  46067. },
  46068. claws: {
  46069. height: math.unit(1.8, "feet"),
  46070. name: "Claws",
  46071. image: {
  46072. source: "./media/characters/sarel/claws.svg"
  46073. }
  46074. },
  46075. clawsAlt: {
  46076. height: math.unit(1.8, "feet"),
  46077. name: "Claws-alt",
  46078. image: {
  46079. source: "./media/characters/sarel/claws-alt.svg"
  46080. }
  46081. },
  46082. },
  46083. [
  46084. {
  46085. name: "Normal",
  46086. height: math.unit(5.67, "feet"),
  46087. default: true
  46088. },
  46089. ]
  46090. ))
  46091. characterMakers.push(() => makeCharacter(
  46092. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46093. {
  46094. front: {
  46095. height: math.unit(5500, "feet"),
  46096. name: "Front",
  46097. image: {
  46098. source: "./media/characters/alyonia/front.svg",
  46099. extra: 1200/1135,
  46100. bottom: 29/1229
  46101. }
  46102. },
  46103. back: {
  46104. height: math.unit(5500, "feet"),
  46105. name: "Back",
  46106. image: {
  46107. source: "./media/characters/alyonia/back.svg",
  46108. extra: 1205/1138,
  46109. bottom: 10/1215
  46110. }
  46111. },
  46112. },
  46113. [
  46114. {
  46115. name: "Small",
  46116. height: math.unit(10, "feet")
  46117. },
  46118. {
  46119. name: "Macro",
  46120. height: math.unit(500, "feet")
  46121. },
  46122. {
  46123. name: "Mega Macro",
  46124. height: math.unit(5500, "feet"),
  46125. default: true
  46126. },
  46127. {
  46128. name: "Mega Macro+",
  46129. height: math.unit(500000, "feet")
  46130. },
  46131. {
  46132. name: "Giga Macro",
  46133. height: math.unit(3000, "miles")
  46134. },
  46135. {
  46136. name: "Tera Macro",
  46137. height: math.unit(2.8e6, "miles")
  46138. },
  46139. {
  46140. name: "Galactic",
  46141. height: math.unit(120000, "lightyears")
  46142. },
  46143. ]
  46144. ))
  46145. characterMakers.push(() => makeCharacter(
  46146. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46147. {
  46148. werewolf: {
  46149. height: math.unit(8, "feet"),
  46150. weight: math.unit(425, "lb"),
  46151. name: "Werewolf",
  46152. image: {
  46153. source: "./media/characters/autumn/werewolf.svg",
  46154. extra: 2154/2031,
  46155. bottom: 160/2314
  46156. }
  46157. },
  46158. human: {
  46159. height: math.unit(5 + 8/12, "feet"),
  46160. weight: math.unit(150, "lb"),
  46161. name: "Human",
  46162. image: {
  46163. source: "./media/characters/autumn/human.svg",
  46164. extra: 1200/1149,
  46165. bottom: 30/1230
  46166. }
  46167. },
  46168. },
  46169. [
  46170. {
  46171. name: "Normal",
  46172. height: math.unit(8, "feet"),
  46173. default: true
  46174. },
  46175. ]
  46176. ))
  46177. characterMakers.push(() => makeCharacter(
  46178. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46179. {
  46180. front: {
  46181. height: math.unit(8 + 5/12, "feet"),
  46182. weight: math.unit(825, "lb"),
  46183. name: "Front",
  46184. image: {
  46185. source: "./media/characters/cobalt-charizard/front.svg",
  46186. extra: 1268/1155,
  46187. bottom: 122/1390
  46188. }
  46189. },
  46190. side: {
  46191. height: math.unit(8 + 5/12, "feet"),
  46192. weight: math.unit(825, "lb"),
  46193. name: "Side",
  46194. image: {
  46195. source: "./media/characters/cobalt-charizard/side.svg",
  46196. extra: 1348/1257,
  46197. bottom: 58/1406
  46198. }
  46199. },
  46200. gMax: {
  46201. height: math.unit(134 + 11/12, "feet"),
  46202. name: "G-Max",
  46203. image: {
  46204. source: "./media/characters/cobalt-charizard/g-max.svg",
  46205. extra: 1835/1541,
  46206. bottom: 151/1986
  46207. }
  46208. },
  46209. },
  46210. [
  46211. {
  46212. name: "Normal",
  46213. height: math.unit(8 + 5/12, "feet"),
  46214. default: true
  46215. },
  46216. ]
  46217. ))
  46218. characterMakers.push(() => makeCharacter(
  46219. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46220. {
  46221. front: {
  46222. height: math.unit(6 + 3/12, "feet"),
  46223. weight: math.unit(210, "lb"),
  46224. name: "Front",
  46225. image: {
  46226. source: "./media/characters/stella/front.svg",
  46227. extra: 3549/3335,
  46228. bottom: 51/3600
  46229. }
  46230. },
  46231. },
  46232. [
  46233. {
  46234. name: "Normal",
  46235. height: math.unit(6 + 3/12, "feet"),
  46236. default: true
  46237. },
  46238. ]
  46239. ))
  46240. characterMakers.push(() => makeCharacter(
  46241. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46242. {
  46243. front: {
  46244. height: math.unit(5, "feet"),
  46245. weight: math.unit(90, "lb"),
  46246. name: "Front",
  46247. image: {
  46248. source: "./media/characters/riley-bishop/front.svg",
  46249. extra: 1450/1428,
  46250. bottom: 152/1602
  46251. }
  46252. },
  46253. },
  46254. [
  46255. {
  46256. name: "Normal",
  46257. height: math.unit(5, "feet"),
  46258. default: true
  46259. },
  46260. ]
  46261. ))
  46262. characterMakers.push(() => makeCharacter(
  46263. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46264. {
  46265. side: {
  46266. height: math.unit(8 + 2/12, "feet"),
  46267. weight: math.unit(500, "kg"),
  46268. name: "Side",
  46269. image: {
  46270. source: "./media/characters/theo-arcanine/side.svg",
  46271. extra: 1342/1074,
  46272. bottom: 111/1453
  46273. }
  46274. },
  46275. },
  46276. [
  46277. {
  46278. name: "Normal",
  46279. height: math.unit(8 + 2/12, "feet"),
  46280. default: true
  46281. },
  46282. ]
  46283. ))
  46284. characterMakers.push(() => makeCharacter(
  46285. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46286. {
  46287. front: {
  46288. height: math.unit(4, "feet"),
  46289. name: "Front",
  46290. image: {
  46291. source: "./media/characters/kali/front.svg",
  46292. extra: 1074/867,
  46293. bottom: 34/1108
  46294. }
  46295. },
  46296. back: {
  46297. height: math.unit(4, "feet"),
  46298. name: "Back",
  46299. image: {
  46300. source: "./media/characters/kali/back.svg",
  46301. extra: 1068/863,
  46302. bottom: 26/1094
  46303. }
  46304. },
  46305. frontAlt: {
  46306. height: math.unit(4, "feet"),
  46307. name: "Front (Alt)",
  46308. image: {
  46309. source: "./media/characters/kali/front-alt.svg",
  46310. extra: 1921/1357,
  46311. bottom: 70/1991
  46312. }
  46313. },
  46314. },
  46315. [
  46316. {
  46317. name: "Normal",
  46318. height: math.unit(4, "feet"),
  46319. default: true
  46320. },
  46321. {
  46322. name: "Big'vali",
  46323. height: math.unit(11, "feet")
  46324. },
  46325. {
  46326. name: "Macro",
  46327. height: math.unit(32, "meters")
  46328. },
  46329. {
  46330. name: "Macro+",
  46331. height: math.unit(150, "meters")
  46332. },
  46333. {
  46334. name: "Megamacro",
  46335. height: math.unit(7500, "meters")
  46336. },
  46337. {
  46338. name: "Megamacro+",
  46339. height: math.unit(80, "kilometers")
  46340. },
  46341. ]
  46342. ))
  46343. characterMakers.push(() => makeCharacter(
  46344. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46345. {
  46346. side: {
  46347. height: math.unit(5 + 11/12, "feet"),
  46348. weight: math.unit(236, "lb"),
  46349. name: "Side",
  46350. image: {
  46351. source: "./media/characters/gapp/side.svg",
  46352. extra: 775/340,
  46353. bottom: 58/833
  46354. }
  46355. },
  46356. mouth: {
  46357. height: math.unit(2.98, "feet"),
  46358. name: "Mouth",
  46359. image: {
  46360. source: "./media/characters/gapp/mouth.svg"
  46361. }
  46362. },
  46363. },
  46364. [
  46365. {
  46366. name: "Normal",
  46367. height: math.unit(5 + 1/12, "feet"),
  46368. default: true
  46369. },
  46370. ]
  46371. ))
  46372. characterMakers.push(() => makeCharacter(
  46373. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46374. {
  46375. front: {
  46376. height: math.unit(6, "feet"),
  46377. name: "Front",
  46378. image: {
  46379. source: "./media/characters/persephone/front.svg",
  46380. extra: 1895/1717,
  46381. bottom: 96/1991
  46382. }
  46383. },
  46384. back: {
  46385. height: math.unit(6, "feet"),
  46386. name: "Back",
  46387. image: {
  46388. source: "./media/characters/persephone/back.svg",
  46389. extra: 1868/1679,
  46390. bottom: 26/1894
  46391. }
  46392. },
  46393. casual: {
  46394. height: math.unit(6, "feet"),
  46395. name: "Casual",
  46396. image: {
  46397. source: "./media/characters/persephone/casual.svg",
  46398. extra: 1713/1541,
  46399. bottom: 76/1789
  46400. }
  46401. },
  46402. gaming: {
  46403. height: math.unit(3.55, "feet"),
  46404. name: "Gaming",
  46405. image: {
  46406. source: "./media/characters/persephone/gaming.svg",
  46407. extra: 1242/1038,
  46408. bottom: 66/1308
  46409. }
  46410. },
  46411. head: {
  46412. height: math.unit(2.15, "feet"),
  46413. name: "😐",
  46414. image: {
  46415. source: "./media/characters/persephone/head.svg"
  46416. }
  46417. },
  46418. talking: {
  46419. height: math.unit(2.5, "feet"),
  46420. name: "💬",
  46421. image: {
  46422. source: "./media/characters/persephone/talking.svg"
  46423. }
  46424. },
  46425. hmm: {
  46426. height: math.unit(2.28, "feet"),
  46427. name: "🤨",
  46428. image: {
  46429. source: "./media/characters/persephone/hmm.svg"
  46430. }
  46431. },
  46432. },
  46433. [
  46434. {
  46435. name: "Human Size",
  46436. height: math.unit(6, "feet")
  46437. },
  46438. {
  46439. name: "Big Steppy",
  46440. height: math.unit(600, "meters"),
  46441. default: true
  46442. },
  46443. {
  46444. name: "Galaxy Brain",
  46445. height: math.unit(1, "zettameter")
  46446. },
  46447. ]
  46448. ))
  46449. characterMakers.push(() => makeCharacter(
  46450. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46451. {
  46452. front: {
  46453. height: math.unit(1.85, "meters"),
  46454. name: "Front",
  46455. image: {
  46456. source: "./media/characters/riley-foxthing/front.svg",
  46457. extra: 1495/1354,
  46458. bottom: 122/1617
  46459. }
  46460. },
  46461. frontAlt: {
  46462. height: math.unit(1.85, "meters"),
  46463. name: "Front (Alt)",
  46464. image: {
  46465. source: "./media/characters/riley-foxthing/front-alt.svg",
  46466. extra: 1572/1389,
  46467. bottom: 116/1688
  46468. }
  46469. },
  46470. },
  46471. [
  46472. {
  46473. name: "Normal Sized",
  46474. height: math.unit(1.85, "meters"),
  46475. default: true
  46476. },
  46477. {
  46478. name: "Quite Sizable",
  46479. height: math.unit(5, "meters")
  46480. },
  46481. {
  46482. name: "Rather Large",
  46483. height: math.unit(20, "meters")
  46484. },
  46485. {
  46486. name: "Macro",
  46487. height: math.unit(450, "meters")
  46488. },
  46489. {
  46490. name: "Giga",
  46491. height: math.unit(5, "km")
  46492. },
  46493. ]
  46494. ))
  46495. characterMakers.push(() => makeCharacter(
  46496. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46497. {
  46498. front: {
  46499. height: math.unit(6, "feet"),
  46500. weight: math.unit(200, "lb"),
  46501. name: "Front",
  46502. image: {
  46503. source: "./media/characters/blizzard/front.svg",
  46504. extra: 1136/990,
  46505. bottom: 136/1272
  46506. }
  46507. },
  46508. back: {
  46509. height: math.unit(6, "feet"),
  46510. weight: math.unit(200, "lb"),
  46511. name: "Back",
  46512. image: {
  46513. source: "./media/characters/blizzard/back.svg",
  46514. extra: 1175/1034,
  46515. bottom: 97/1272
  46516. }
  46517. },
  46518. sitting: {
  46519. height: math.unit(3.725, "feet"),
  46520. weight: math.unit(200, "lb"),
  46521. name: "Sitting",
  46522. image: {
  46523. source: "./media/characters/blizzard/sitting.svg",
  46524. extra: 581/485,
  46525. bottom: 90/671
  46526. }
  46527. },
  46528. frontWizard: {
  46529. height: math.unit(7.9, "feet"),
  46530. weight: math.unit(200, "lb"),
  46531. name: "Front (Wizard)",
  46532. image: {
  46533. source: "./media/characters/blizzard/front-wizard.svg"
  46534. }
  46535. },
  46536. backWizard: {
  46537. height: math.unit(7.9, "feet"),
  46538. weight: math.unit(200, "lb"),
  46539. name: "Back (Wizard)",
  46540. image: {
  46541. source: "./media/characters/blizzard/back-wizard.svg"
  46542. }
  46543. },
  46544. frontNsfw: {
  46545. height: math.unit(6, "feet"),
  46546. weight: math.unit(200, "lb"),
  46547. name: "Front (NSFW)",
  46548. image: {
  46549. source: "./media/characters/blizzard/front-nsfw.svg",
  46550. extra: 1136/990,
  46551. bottom: 136/1272
  46552. }
  46553. },
  46554. backNsfw: {
  46555. height: math.unit(6, "feet"),
  46556. weight: math.unit(200, "lb"),
  46557. name: "Back (NSFW)",
  46558. image: {
  46559. source: "./media/characters/blizzard/back-nsfw.svg",
  46560. extra: 1175/1034,
  46561. bottom: 97/1272
  46562. }
  46563. },
  46564. sittingNsfw: {
  46565. height: math.unit(3.725, "feet"),
  46566. weight: math.unit(200, "lb"),
  46567. name: "Sitting (NSFW)",
  46568. image: {
  46569. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46570. extra: 581/485,
  46571. bottom: 90/671
  46572. }
  46573. },
  46574. wizardFrontNsfw: {
  46575. height: math.unit(7.9, "feet"),
  46576. weight: math.unit(200, "lb"),
  46577. name: "Wizard (Front, NSFW)",
  46578. image: {
  46579. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46580. }
  46581. },
  46582. },
  46583. [
  46584. {
  46585. name: "Normal",
  46586. height: math.unit(6, "feet"),
  46587. default: true
  46588. },
  46589. ]
  46590. ))
  46591. characterMakers.push(() => makeCharacter(
  46592. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46593. {
  46594. front: {
  46595. height: math.unit(5 + 2/12, "feet"),
  46596. name: "Front",
  46597. image: {
  46598. source: "./media/characters/lumi/front.svg",
  46599. extra: 1328/1268,
  46600. bottom: 103/1431
  46601. }
  46602. },
  46603. back: {
  46604. height: math.unit(5 + 2/12, "feet"),
  46605. name: "Back",
  46606. image: {
  46607. source: "./media/characters/lumi/back.svg",
  46608. extra: 1381/1327,
  46609. bottom: 43/1424
  46610. }
  46611. },
  46612. },
  46613. [
  46614. {
  46615. name: "Normal",
  46616. height: math.unit(5 + 2/12, "feet"),
  46617. default: true
  46618. },
  46619. ]
  46620. ))
  46621. characterMakers.push(() => makeCharacter(
  46622. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46623. {
  46624. front: {
  46625. height: math.unit(5 + 9/12, "feet"),
  46626. name: "Front",
  46627. image: {
  46628. source: "./media/characters/aliya-cotton/front.svg",
  46629. extra: 577/564,
  46630. bottom: 29/606
  46631. }
  46632. },
  46633. },
  46634. [
  46635. {
  46636. name: "Normal",
  46637. height: math.unit(5 + 9/12, "feet"),
  46638. default: true
  46639. },
  46640. ]
  46641. ))
  46642. characterMakers.push(() => makeCharacter(
  46643. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46644. {
  46645. front: {
  46646. height: math.unit(2.7, "meters"),
  46647. weight: math.unit(25000, "lb"),
  46648. name: "Front",
  46649. image: {
  46650. source: "./media/characters/noah-luxray/front.svg",
  46651. extra: 1644/825,
  46652. bottom: 339/1983
  46653. }
  46654. },
  46655. side: {
  46656. height: math.unit(2.97, "meters"),
  46657. weight: math.unit(25000, "lb"),
  46658. name: "Side",
  46659. image: {
  46660. source: "./media/characters/noah-luxray/side.svg",
  46661. extra: 1319/650,
  46662. bottom: 163/1482
  46663. }
  46664. },
  46665. dick: {
  46666. height: math.unit(7.4, "feet"),
  46667. weight: math.unit(2500, "lb"),
  46668. name: "Dick",
  46669. image: {
  46670. source: "./media/characters/noah-luxray/dick.svg"
  46671. }
  46672. },
  46673. dickAlt: {
  46674. height: math.unit(10.83, "feet"),
  46675. weight: math.unit(2500, "lb"),
  46676. name: "Dick-alt",
  46677. image: {
  46678. source: "./media/characters/noah-luxray/dick-alt.svg"
  46679. }
  46680. },
  46681. },
  46682. [
  46683. {
  46684. name: "BIG",
  46685. height: math.unit(2.7, "meters"),
  46686. default: true
  46687. },
  46688. ]
  46689. ))
  46690. characterMakers.push(() => makeCharacter(
  46691. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46692. {
  46693. standing: {
  46694. height: math.unit(183, "cm"),
  46695. weight: math.unit(68, "kg"),
  46696. name: "Standing",
  46697. image: {
  46698. source: "./media/characters/arion/standing.svg",
  46699. extra: 1869/1807,
  46700. bottom: 93/1962
  46701. }
  46702. },
  46703. reclining: {
  46704. height: math.unit(70.5, "cm"),
  46705. weight: math.unit(68, "lb"),
  46706. name: "Reclining",
  46707. image: {
  46708. source: "./media/characters/arion/reclining.svg",
  46709. extra: 937/870,
  46710. bottom: 63/1000
  46711. }
  46712. },
  46713. },
  46714. [
  46715. {
  46716. name: "Colossus Size, Low",
  46717. height: math.unit(33, "meters"),
  46718. default: true
  46719. },
  46720. {
  46721. name: "Colossus Size, Mid",
  46722. height: math.unit(52, "meters")
  46723. },
  46724. {
  46725. name: "Colossus Size, High",
  46726. height: math.unit(60, "meters")
  46727. },
  46728. {
  46729. name: "Titan Size, Low",
  46730. height: math.unit(91, "meters"),
  46731. },
  46732. {
  46733. name: "Titan Size, Mid",
  46734. height: math.unit(122, "meters")
  46735. },
  46736. {
  46737. name: "Titan Size, High",
  46738. height: math.unit(162, "meters")
  46739. },
  46740. ]
  46741. ))
  46742. characterMakers.push(() => makeCharacter(
  46743. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46744. {
  46745. front: {
  46746. height: math.unit(53, "meters"),
  46747. name: "Front",
  46748. image: {
  46749. source: "./media/characters/stellar-marbey/front.svg",
  46750. extra: 1913/1805,
  46751. bottom: 92/2005
  46752. }
  46753. },
  46754. back: {
  46755. height: math.unit(53, "meters"),
  46756. name: "Back",
  46757. image: {
  46758. source: "./media/characters/stellar-marbey/back.svg",
  46759. extra: 1960/1851,
  46760. bottom: 28/1988
  46761. }
  46762. },
  46763. mouth: {
  46764. height: math.unit(3.5, "meters"),
  46765. name: "Mouth",
  46766. image: {
  46767. source: "./media/characters/stellar-marbey/mouth.svg"
  46768. }
  46769. },
  46770. },
  46771. [
  46772. {
  46773. name: "Macro",
  46774. height: math.unit(53, "meters"),
  46775. default: true
  46776. },
  46777. ]
  46778. ))
  46779. characterMakers.push(() => makeCharacter(
  46780. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46781. {
  46782. front: {
  46783. height: math.unit(8 + 1/12, "feet"),
  46784. weight: math.unit(233, "lb"),
  46785. name: "Front",
  46786. image: {
  46787. source: "./media/characters/matsu/front.svg",
  46788. extra: 832/772,
  46789. bottom: 40/872
  46790. }
  46791. },
  46792. back: {
  46793. height: math.unit(8 + 1/12, "feet"),
  46794. weight: math.unit(233, "lb"),
  46795. name: "Back",
  46796. image: {
  46797. source: "./media/characters/matsu/back.svg",
  46798. extra: 839/780,
  46799. bottom: 47/886
  46800. }
  46801. },
  46802. },
  46803. [
  46804. {
  46805. name: "Normal",
  46806. height: math.unit(8 + 1/12, "feet"),
  46807. default: true
  46808. },
  46809. ]
  46810. ))
  46811. characterMakers.push(() => makeCharacter(
  46812. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46813. {
  46814. front: {
  46815. height: math.unit(4, "feet"),
  46816. weight: math.unit(148, "lb"),
  46817. name: "Front",
  46818. image: {
  46819. source: "./media/characters/thiz/front.svg",
  46820. extra: 1913/1748,
  46821. bottom: 62/1975
  46822. }
  46823. },
  46824. },
  46825. [
  46826. {
  46827. name: "Normal",
  46828. height: math.unit(4, "feet"),
  46829. default: true
  46830. },
  46831. ]
  46832. ))
  46833. characterMakers.push(() => makeCharacter(
  46834. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46835. {
  46836. front: {
  46837. height: math.unit(7 + 6/12, "feet"),
  46838. weight: math.unit(267, "lb"),
  46839. name: "Front",
  46840. image: {
  46841. source: "./media/characters/marcel/front.svg",
  46842. extra: 1221/1096,
  46843. bottom: 76/1297
  46844. }
  46845. },
  46846. },
  46847. [
  46848. {
  46849. name: "Normal",
  46850. height: math.unit(7 + 6/12, "feet"),
  46851. default: true
  46852. },
  46853. ]
  46854. ))
  46855. characterMakers.push(() => makeCharacter(
  46856. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46857. {
  46858. side: {
  46859. height: math.unit(42, "meters"),
  46860. name: "Side",
  46861. image: {
  46862. source: "./media/characters/flake/side.svg",
  46863. extra: 1525/1306,
  46864. bottom: 209/1734
  46865. }
  46866. },
  46867. },
  46868. [
  46869. {
  46870. name: "Normal",
  46871. height: math.unit(42, "meters"),
  46872. default: true
  46873. },
  46874. ]
  46875. ))
  46876. characterMakers.push(() => makeCharacter(
  46877. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46878. {
  46879. dressed: {
  46880. height: math.unit(6 + 4/12, "feet"),
  46881. weight: math.unit(520, "lb"),
  46882. name: "Dressed",
  46883. image: {
  46884. source: "./media/characters/someonne/dressed.svg",
  46885. extra: 1020/1010,
  46886. bottom: 178/1198
  46887. }
  46888. },
  46889. undressed: {
  46890. height: math.unit(6 + 4/12, "feet"),
  46891. weight: math.unit(520, "lb"),
  46892. name: "Undressed",
  46893. image: {
  46894. source: "./media/characters/someonne/undressed.svg",
  46895. extra: 1019/1014,
  46896. bottom: 169/1188
  46897. }
  46898. },
  46899. },
  46900. [
  46901. {
  46902. name: "Normal",
  46903. height: math.unit(6 + 4/12, "feet"),
  46904. default: true
  46905. },
  46906. ]
  46907. ))
  46908. characterMakers.push(() => makeCharacter(
  46909. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46910. {
  46911. front: {
  46912. height: math.unit(3, "feet"),
  46913. weight: math.unit(30, "lb"),
  46914. name: "Front",
  46915. image: {
  46916. source: "./media/characters/till/front.svg",
  46917. extra: 892/823,
  46918. bottom: 55/947
  46919. }
  46920. },
  46921. },
  46922. [
  46923. {
  46924. name: "Normal",
  46925. height: math.unit(3, "feet"),
  46926. default: true
  46927. },
  46928. ]
  46929. ))
  46930. characterMakers.push(() => makeCharacter(
  46931. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46932. {
  46933. front: {
  46934. height: math.unit(9 + 8/12, "feet"),
  46935. weight: math.unit(800, "lb"),
  46936. name: "Front",
  46937. image: {
  46938. source: "./media/characters/sydney-heki/front.svg",
  46939. extra: 1360/1300,
  46940. bottom: 22/1382
  46941. }
  46942. },
  46943. back: {
  46944. height: math.unit(9 + 8/12, "feet"),
  46945. weight: math.unit(800, "lb"),
  46946. name: "Back",
  46947. image: {
  46948. source: "./media/characters/sydney-heki/back.svg",
  46949. extra: 1356/1293,
  46950. bottom: 12/1368
  46951. }
  46952. },
  46953. frontDressed: {
  46954. height: math.unit(9 + 8/12, "feet"),
  46955. weight: math.unit(800, "lb"),
  46956. name: "Front-dressed",
  46957. image: {
  46958. source: "./media/characters/sydney-heki/front-dressed.svg",
  46959. extra: 1360/1300,
  46960. bottom: 22/1382
  46961. }
  46962. },
  46963. },
  46964. [
  46965. {
  46966. name: "Normal",
  46967. height: math.unit(9 + 8/12, "feet"),
  46968. default: true
  46969. },
  46970. {
  46971. name: "Macro",
  46972. height: math.unit(500, "feet")
  46973. },
  46974. {
  46975. name: "Megamacro",
  46976. height: math.unit(3.6, "miles")
  46977. },
  46978. ]
  46979. ))
  46980. characterMakers.push(() => makeCharacter(
  46981. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46982. {
  46983. front: {
  46984. height: math.unit(200, "cm"),
  46985. weight: math.unit(250, "lb"),
  46986. name: "Front",
  46987. image: {
  46988. source: "./media/characters/fowler-karlsson/front.svg",
  46989. extra: 897/845,
  46990. bottom: 123/1020
  46991. }
  46992. },
  46993. back: {
  46994. height: math.unit(200, "cm"),
  46995. weight: math.unit(250, "lb"),
  46996. name: "Back",
  46997. image: {
  46998. source: "./media/characters/fowler-karlsson/back.svg",
  46999. extra: 999/944,
  47000. bottom: 26/1025
  47001. }
  47002. },
  47003. dick: {
  47004. height: math.unit(1.92, "feet"),
  47005. weight: math.unit(150, "lb"),
  47006. name: "Dick",
  47007. image: {
  47008. source: "./media/characters/fowler-karlsson/dick.svg"
  47009. }
  47010. },
  47011. },
  47012. [
  47013. {
  47014. name: "Normal",
  47015. height: math.unit(200, "cm"),
  47016. default: true
  47017. },
  47018. {
  47019. name: "Smaller Macro",
  47020. height: math.unit(90, "m")
  47021. },
  47022. {
  47023. name: "Macro",
  47024. height: math.unit(150, "m")
  47025. },
  47026. {
  47027. name: "Bigger Macro",
  47028. height: math.unit(300, "m")
  47029. },
  47030. ]
  47031. ))
  47032. characterMakers.push(() => makeCharacter(
  47033. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47034. {
  47035. side: {
  47036. height: math.unit(8 + 2/12, "feet"),
  47037. weight: math.unit(1, "tonne"),
  47038. name: "Side",
  47039. image: {
  47040. source: "./media/characters/rylide/side.svg",
  47041. extra: 1318/1034,
  47042. bottom: 106/1424
  47043. }
  47044. },
  47045. sitting: {
  47046. height: math.unit(303, "cm"),
  47047. weight: math.unit(1, "tonne"),
  47048. name: "Sitting",
  47049. image: {
  47050. source: "./media/characters/rylide/sitting.svg",
  47051. extra: 1303/1103,
  47052. bottom: 36/1339
  47053. }
  47054. },
  47055. },
  47056. [
  47057. {
  47058. name: "Normal",
  47059. height: math.unit(8 + 2/12, "feet"),
  47060. default: true
  47061. },
  47062. ]
  47063. ))
  47064. characterMakers.push(() => makeCharacter(
  47065. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47066. {
  47067. front: {
  47068. height: math.unit(5 + 10/12, "feet"),
  47069. weight: math.unit(160, "lb"),
  47070. name: "Front",
  47071. image: {
  47072. source: "./media/characters/pudask/front.svg",
  47073. extra: 1616/1590,
  47074. bottom: 161/1777
  47075. }
  47076. },
  47077. },
  47078. [
  47079. {
  47080. name: "Ferret Height",
  47081. height: math.unit(2 + 5/12, "feet")
  47082. },
  47083. {
  47084. name: "Canon Height",
  47085. height: math.unit(5 + 10/12, "feet"),
  47086. default: true
  47087. },
  47088. ]
  47089. ))
  47090. characterMakers.push(() => makeCharacter(
  47091. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47092. {
  47093. front: {
  47094. height: math.unit(3 + 6/12, "feet"),
  47095. weight: math.unit(60, "lb"),
  47096. name: "Front",
  47097. image: {
  47098. source: "./media/characters/ramita/front.svg",
  47099. extra: 1402/1232,
  47100. bottom: 62/1464
  47101. }
  47102. },
  47103. dressed: {
  47104. height: math.unit(3 + 6/12, "feet"),
  47105. weight: math.unit(60, "lb"),
  47106. name: "Dressed",
  47107. image: {
  47108. source: "./media/characters/ramita/dressed.svg",
  47109. extra: 1534/1249,
  47110. bottom: 50/1584
  47111. }
  47112. },
  47113. },
  47114. [
  47115. {
  47116. name: "Normal",
  47117. height: math.unit(3 + 6/12, "feet"),
  47118. default: true
  47119. },
  47120. ]
  47121. ))
  47122. characterMakers.push(() => makeCharacter(
  47123. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47124. {
  47125. front: {
  47126. height: math.unit(8, "feet"),
  47127. name: "Front",
  47128. image: {
  47129. source: "./media/characters/ark/front.svg",
  47130. extra: 772/693,
  47131. bottom: 45/817
  47132. }
  47133. },
  47134. },
  47135. [
  47136. {
  47137. name: "Normal",
  47138. height: math.unit(8, "feet"),
  47139. default: true
  47140. },
  47141. ]
  47142. ))
  47143. characterMakers.push(() => makeCharacter(
  47144. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47145. {
  47146. front: {
  47147. height: math.unit(6, "feet"),
  47148. weight: math.unit(250, "lb"),
  47149. volume: math.unit(5/8, "gallons"),
  47150. name: "Front",
  47151. image: {
  47152. source: "./media/characters/ludwig-horn/front.svg",
  47153. extra: 1782/1635,
  47154. bottom: 96/1878
  47155. }
  47156. },
  47157. back: {
  47158. height: math.unit(6, "feet"),
  47159. weight: math.unit(250, "lb"),
  47160. volume: math.unit(5/8, "gallons"),
  47161. name: "Back",
  47162. image: {
  47163. source: "./media/characters/ludwig-horn/back.svg",
  47164. extra: 1874/1729,
  47165. bottom: 27/1901
  47166. }
  47167. },
  47168. dick: {
  47169. height: math.unit(1.05, "feet"),
  47170. weight: math.unit(15, "lb"),
  47171. volume: math.unit(5/8, "gallons"),
  47172. name: "Dick",
  47173. image: {
  47174. source: "./media/characters/ludwig-horn/dick.svg"
  47175. }
  47176. },
  47177. },
  47178. [
  47179. {
  47180. name: "Small",
  47181. height: math.unit(6, "feet")
  47182. },
  47183. {
  47184. name: "Typical",
  47185. height: math.unit(12, "feet"),
  47186. default: true
  47187. },
  47188. {
  47189. name: "Building",
  47190. height: math.unit(80, "feet")
  47191. },
  47192. {
  47193. name: "Town",
  47194. height: math.unit(800, "feet")
  47195. },
  47196. {
  47197. name: "Kingdom",
  47198. height: math.unit(80000, "feet")
  47199. },
  47200. {
  47201. name: "Planet",
  47202. height: math.unit(8000000, "feet")
  47203. },
  47204. {
  47205. name: "Universe",
  47206. height: math.unit(8000000000, "feet")
  47207. },
  47208. {
  47209. name: "Transcended",
  47210. height: math.unit(8e27, "feet")
  47211. },
  47212. ]
  47213. ))
  47214. characterMakers.push(() => makeCharacter(
  47215. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47216. {
  47217. front: {
  47218. height: math.unit(5, "feet"),
  47219. weight: math.unit(50, "kg"),
  47220. name: "Front",
  47221. image: {
  47222. source: "./media/characters/biot-avery/front.svg",
  47223. extra: 1295/1232,
  47224. bottom: 86/1381
  47225. }
  47226. },
  47227. },
  47228. [
  47229. {
  47230. name: "Normal",
  47231. height: math.unit(5, "feet"),
  47232. default: true
  47233. },
  47234. ]
  47235. ))
  47236. characterMakers.push(() => makeCharacter(
  47237. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47238. {
  47239. front: {
  47240. height: math.unit(6, "feet"),
  47241. name: "Front",
  47242. image: {
  47243. source: "./media/characters/kitsune-kiro/front.svg",
  47244. extra: 1270/1158,
  47245. bottom: 42/1312
  47246. }
  47247. },
  47248. frontAlt: {
  47249. height: math.unit(6, "feet"),
  47250. name: "Front-alt",
  47251. image: {
  47252. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47253. extra: 1130/1081,
  47254. bottom: 36/1166
  47255. }
  47256. },
  47257. },
  47258. [
  47259. {
  47260. name: "Smol",
  47261. height: math.unit(3, "feet")
  47262. },
  47263. {
  47264. name: "Normal",
  47265. height: math.unit(6, "feet"),
  47266. default: true
  47267. },
  47268. ]
  47269. ))
  47270. characterMakers.push(() => makeCharacter(
  47271. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47272. {
  47273. front: {
  47274. height: math.unit(6, "feet"),
  47275. weight: math.unit(125, "lb"),
  47276. name: "Front",
  47277. image: {
  47278. source: "./media/characters/jack-thatcher/front.svg",
  47279. extra: 1474/1370,
  47280. bottom: 26/1500
  47281. }
  47282. },
  47283. back: {
  47284. height: math.unit(6, "feet"),
  47285. weight: math.unit(125, "lb"),
  47286. name: "Back",
  47287. image: {
  47288. source: "./media/characters/jack-thatcher/back.svg",
  47289. extra: 1489/1384,
  47290. bottom: 18/1507
  47291. }
  47292. },
  47293. },
  47294. [
  47295. {
  47296. name: "Normal",
  47297. height: math.unit(6, "feet"),
  47298. default: true
  47299. },
  47300. {
  47301. name: "Macro",
  47302. height: math.unit(75, "feet")
  47303. },
  47304. {
  47305. name: "Macro-er",
  47306. height: math.unit(250, "feet")
  47307. },
  47308. ]
  47309. ))
  47310. characterMakers.push(() => makeCharacter(
  47311. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47312. {
  47313. front: {
  47314. height: math.unit(7, "feet"),
  47315. weight: math.unit(110, "kg"),
  47316. name: "Front",
  47317. image: {
  47318. source: "./media/characters/max-hyper/front.svg",
  47319. extra: 1969/1881,
  47320. bottom: 49/2018
  47321. }
  47322. },
  47323. },
  47324. [
  47325. {
  47326. name: "Normal",
  47327. height: math.unit(7, "feet"),
  47328. default: true
  47329. },
  47330. ]
  47331. ))
  47332. characterMakers.push(() => makeCharacter(
  47333. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47334. {
  47335. front: {
  47336. height: math.unit(5 + 5/12, "feet"),
  47337. weight: math.unit(160, "lb"),
  47338. name: "Front",
  47339. image: {
  47340. source: "./media/characters/spook/front.svg",
  47341. extra: 794/791,
  47342. bottom: 54/848
  47343. }
  47344. },
  47345. back: {
  47346. height: math.unit(5 + 5/12, "feet"),
  47347. weight: math.unit(160, "lb"),
  47348. name: "Back",
  47349. image: {
  47350. source: "./media/characters/spook/back.svg",
  47351. extra: 812/798,
  47352. bottom: 32/844
  47353. }
  47354. },
  47355. },
  47356. [
  47357. {
  47358. name: "Normal",
  47359. height: math.unit(5 + 5/12, "feet"),
  47360. default: true
  47361. },
  47362. ]
  47363. ))
  47364. characterMakers.push(() => makeCharacter(
  47365. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47366. {
  47367. front: {
  47368. height: math.unit(18, "feet"),
  47369. name: "Front",
  47370. image: {
  47371. source: "./media/characters/xeaduulix/front.svg",
  47372. extra: 1380/1166,
  47373. bottom: 110/1490
  47374. }
  47375. },
  47376. back: {
  47377. height: math.unit(18, "feet"),
  47378. name: "Back",
  47379. image: {
  47380. source: "./media/characters/xeaduulix/back.svg",
  47381. extra: 1592/1170,
  47382. bottom: 128/1720
  47383. }
  47384. },
  47385. frontNsfw: {
  47386. height: math.unit(18, "feet"),
  47387. name: "Front (NSFW)",
  47388. image: {
  47389. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47390. extra: 1380/1166,
  47391. bottom: 110/1490
  47392. }
  47393. },
  47394. backNsfw: {
  47395. height: math.unit(18, "feet"),
  47396. name: "Back (NSFW)",
  47397. image: {
  47398. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47399. extra: 1592/1170,
  47400. bottom: 128/1720
  47401. }
  47402. },
  47403. },
  47404. [
  47405. {
  47406. name: "Normal",
  47407. height: math.unit(18, "feet"),
  47408. default: true
  47409. },
  47410. ]
  47411. ))
  47412. characterMakers.push(() => makeCharacter(
  47413. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47414. {
  47415. spreadWings: {
  47416. height: math.unit(20, "feet"),
  47417. name: "Spread Wings",
  47418. image: {
  47419. source: "./media/characters/fledge/spread-wings.svg",
  47420. extra: 693/635,
  47421. bottom: 26/719
  47422. }
  47423. },
  47424. front: {
  47425. height: math.unit(20, "feet"),
  47426. name: "Front",
  47427. image: {
  47428. source: "./media/characters/fledge/front.svg",
  47429. extra: 684/637,
  47430. bottom: 18/702
  47431. }
  47432. },
  47433. frontAlt: {
  47434. height: math.unit(20, "feet"),
  47435. name: "Front (Alt)",
  47436. image: {
  47437. source: "./media/characters/fledge/front-alt.svg",
  47438. extra: 708/664,
  47439. bottom: 13/721
  47440. }
  47441. },
  47442. back: {
  47443. height: math.unit(20, "feet"),
  47444. name: "Back",
  47445. image: {
  47446. source: "./media/characters/fledge/back.svg",
  47447. extra: 718/634,
  47448. bottom: 22/740
  47449. }
  47450. },
  47451. head: {
  47452. height: math.unit(5.55, "feet"),
  47453. name: "Head",
  47454. image: {
  47455. source: "./media/characters/fledge/head.svg"
  47456. }
  47457. },
  47458. headAlt: {
  47459. height: math.unit(5.1, "feet"),
  47460. name: "Head (Alt)",
  47461. image: {
  47462. source: "./media/characters/fledge/head-alt.svg"
  47463. }
  47464. },
  47465. },
  47466. [
  47467. {
  47468. name: "Small",
  47469. height: math.unit(6 + 2/12, "feet")
  47470. },
  47471. {
  47472. name: "Big",
  47473. height: math.unit(20, "feet"),
  47474. default: true
  47475. },
  47476. {
  47477. name: "Giant",
  47478. height: math.unit(100, "feet")
  47479. },
  47480. {
  47481. name: "Macro",
  47482. height: math.unit(200, "feet")
  47483. },
  47484. ]
  47485. ))
  47486. characterMakers.push(() => makeCharacter(
  47487. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47488. {
  47489. front: {
  47490. height: math.unit(1, "meter"),
  47491. name: "Front",
  47492. image: {
  47493. source: "./media/characters/atlas-morenai/front.svg",
  47494. extra: 1275/1043,
  47495. bottom: 19/1294
  47496. }
  47497. },
  47498. back: {
  47499. height: math.unit(1, "meter"),
  47500. name: "Back",
  47501. image: {
  47502. source: "./media/characters/atlas-morenai/back.svg",
  47503. extra: 1141/1001,
  47504. bottom: 25/1166
  47505. }
  47506. },
  47507. },
  47508. [
  47509. {
  47510. name: "Normal",
  47511. height: math.unit(1, "meter"),
  47512. default: true
  47513. },
  47514. {
  47515. name: "Magic-Infused",
  47516. height: math.unit(5, "meters")
  47517. },
  47518. ]
  47519. ))
  47520. characterMakers.push(() => makeCharacter(
  47521. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47522. {
  47523. front: {
  47524. height: math.unit(5, "meters"),
  47525. name: "Front",
  47526. image: {
  47527. source: "./media/characters/cintia/front.svg",
  47528. extra: 1312/1228,
  47529. bottom: 38/1350
  47530. }
  47531. },
  47532. back: {
  47533. height: math.unit(5, "meters"),
  47534. name: "Back",
  47535. image: {
  47536. source: "./media/characters/cintia/back.svg",
  47537. extra: 1260/1166,
  47538. bottom: 98/1358
  47539. }
  47540. },
  47541. frontDick: {
  47542. height: math.unit(5, "meters"),
  47543. name: "Front (Dick)",
  47544. image: {
  47545. source: "./media/characters/cintia/front-dick.svg",
  47546. extra: 1312/1228,
  47547. bottom: 38/1350
  47548. }
  47549. },
  47550. backDick: {
  47551. height: math.unit(5, "meters"),
  47552. name: "Back (Dick)",
  47553. image: {
  47554. source: "./media/characters/cintia/back-dick.svg",
  47555. extra: 1260/1166,
  47556. bottom: 98/1358
  47557. }
  47558. },
  47559. bust: {
  47560. height: math.unit(1.97, "meters"),
  47561. name: "Bust",
  47562. image: {
  47563. source: "./media/characters/cintia/bust.svg",
  47564. extra: 617/565,
  47565. bottom: 0/617
  47566. }
  47567. },
  47568. },
  47569. [
  47570. {
  47571. name: "Normal",
  47572. height: math.unit(5, "meters"),
  47573. default: true
  47574. },
  47575. ]
  47576. ))
  47577. characterMakers.push(() => makeCharacter(
  47578. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47579. {
  47580. side: {
  47581. height: math.unit(100, "feet"),
  47582. name: "Side",
  47583. image: {
  47584. source: "./media/characters/denora/side.svg",
  47585. extra: 875/803,
  47586. bottom: 9/884
  47587. }
  47588. },
  47589. },
  47590. [
  47591. {
  47592. name: "Standard",
  47593. height: math.unit(100, "feet"),
  47594. default: true
  47595. },
  47596. {
  47597. name: "Grand",
  47598. height: math.unit(1000, "feet")
  47599. },
  47600. {
  47601. name: "Conquering",
  47602. height: math.unit(10000, "feet")
  47603. },
  47604. ]
  47605. ))
  47606. characterMakers.push(() => makeCharacter(
  47607. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47608. {
  47609. dressed: {
  47610. height: math.unit(8 + 5/12, "feet"),
  47611. weight: math.unit(700, "lb"),
  47612. name: "Dressed",
  47613. image: {
  47614. source: "./media/characters/kiva/dressed.svg",
  47615. extra: 1102/1055,
  47616. bottom: 60/1162
  47617. }
  47618. },
  47619. nude: {
  47620. height: math.unit(8 + 5/12, "feet"),
  47621. weight: math.unit(700, "lb"),
  47622. name: "Nude",
  47623. image: {
  47624. source: "./media/characters/kiva/nude.svg",
  47625. extra: 1102/1055,
  47626. bottom: 60/1162
  47627. }
  47628. },
  47629. },
  47630. [
  47631. {
  47632. name: "Base Height",
  47633. height: math.unit(8 + 5/12, "feet"),
  47634. default: true
  47635. },
  47636. {
  47637. name: "Macro",
  47638. height: math.unit(100, "feet")
  47639. },
  47640. {
  47641. name: "Max",
  47642. height: math.unit(3280, "feet")
  47643. },
  47644. ]
  47645. ))
  47646. characterMakers.push(() => makeCharacter(
  47647. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47648. {
  47649. front: {
  47650. height: math.unit(6 + 8/12, "feet"),
  47651. weight: math.unit(250, "lb"),
  47652. name: "Front",
  47653. image: {
  47654. source: "./media/characters/ztragon/front.svg",
  47655. extra: 1825/1684,
  47656. bottom: 98/1923
  47657. }
  47658. },
  47659. },
  47660. [
  47661. {
  47662. name: "Normal",
  47663. height: math.unit(6 + 8/12, "feet"),
  47664. default: true
  47665. },
  47666. {
  47667. name: "Macro",
  47668. height: math.unit(80, "feet")
  47669. },
  47670. ]
  47671. ))
  47672. characterMakers.push(() => makeCharacter(
  47673. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47674. {
  47675. front: {
  47676. height: math.unit(10.4, "feet"),
  47677. weight: math.unit(2, "tons"),
  47678. name: "Front",
  47679. image: {
  47680. source: "./media/characters/yesenia/front.svg",
  47681. extra: 1479/1474,
  47682. bottom: 233/1712
  47683. }
  47684. },
  47685. },
  47686. [
  47687. {
  47688. name: "Normal",
  47689. height: math.unit(10.4, "feet"),
  47690. default: true
  47691. },
  47692. ]
  47693. ))
  47694. characterMakers.push(() => makeCharacter(
  47695. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47696. {
  47697. normal: {
  47698. height: math.unit(6 + 1/12, "feet"),
  47699. weight: math.unit(180, "lb"),
  47700. name: "Normal",
  47701. image: {
  47702. source: "./media/characters/leanne-lycheborne/normal.svg",
  47703. extra: 1748/1660,
  47704. bottom: 98/1846
  47705. }
  47706. },
  47707. were: {
  47708. height: math.unit(12, "feet"),
  47709. weight: math.unit(1600, "lb"),
  47710. name: "Were",
  47711. image: {
  47712. source: "./media/characters/leanne-lycheborne/were.svg",
  47713. extra: 1485/1432,
  47714. bottom: 66/1551
  47715. }
  47716. },
  47717. },
  47718. [
  47719. {
  47720. name: "Normal",
  47721. height: math.unit(6 + 1/12, "feet"),
  47722. default: true
  47723. },
  47724. ]
  47725. ))
  47726. characterMakers.push(() => makeCharacter(
  47727. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47728. {
  47729. side: {
  47730. height: math.unit(13, "feet"),
  47731. name: "Side",
  47732. image: {
  47733. source: "./media/characters/kira-tyler/side.svg",
  47734. extra: 693/393,
  47735. bottom: 58/751
  47736. }
  47737. },
  47738. },
  47739. [
  47740. {
  47741. name: "Normal",
  47742. height: math.unit(13, "feet"),
  47743. default: true
  47744. },
  47745. ]
  47746. ))
  47747. characterMakers.push(() => makeCharacter(
  47748. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47749. {
  47750. front: {
  47751. height: math.unit(10.3, "feet"),
  47752. weight: math.unit(150, "lb"),
  47753. name: "Front",
  47754. image: {
  47755. source: "./media/characters/blaze/front.svg",
  47756. extra: 1378/1286,
  47757. bottom: 172/1550
  47758. }
  47759. },
  47760. },
  47761. [
  47762. {
  47763. name: "Normal",
  47764. height: math.unit(10.3, "feet"),
  47765. default: true
  47766. },
  47767. ]
  47768. ))
  47769. characterMakers.push(() => makeCharacter(
  47770. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47771. {
  47772. side: {
  47773. height: math.unit(2, "meters"),
  47774. weight: math.unit(400, "kg"),
  47775. name: "Side",
  47776. image: {
  47777. source: "./media/characters/anu/side.svg",
  47778. extra: 506/394,
  47779. bottom: 18/524
  47780. }
  47781. },
  47782. },
  47783. [
  47784. {
  47785. name: "Humanoid",
  47786. height: math.unit(2, "meters")
  47787. },
  47788. {
  47789. name: "Normal",
  47790. height: math.unit(5, "meters"),
  47791. default: true
  47792. },
  47793. ]
  47794. ))
  47795. characterMakers.push(() => makeCharacter(
  47796. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47797. {
  47798. front: {
  47799. height: math.unit(5 + 5/12, "feet"),
  47800. weight: math.unit(170, "lb"),
  47801. name: "Front",
  47802. image: {
  47803. source: "./media/characters/synx-the-lynx/front.svg",
  47804. extra: 1893/1745,
  47805. bottom: 17/1910
  47806. }
  47807. },
  47808. side: {
  47809. height: math.unit(5 + 5/12, "feet"),
  47810. weight: math.unit(170, "lb"),
  47811. name: "Side",
  47812. image: {
  47813. source: "./media/characters/synx-the-lynx/side.svg",
  47814. extra: 1884/1740,
  47815. bottom: 39/1923
  47816. }
  47817. },
  47818. back: {
  47819. height: math.unit(5 + 5/12, "feet"),
  47820. weight: math.unit(170, "lb"),
  47821. name: "Back",
  47822. image: {
  47823. source: "./media/characters/synx-the-lynx/back.svg",
  47824. extra: 1903/1755,
  47825. bottom: 14/1917
  47826. }
  47827. },
  47828. },
  47829. [
  47830. {
  47831. name: "Normal",
  47832. height: math.unit(5 + 5/12, "feet"),
  47833. default: true
  47834. },
  47835. ]
  47836. ))
  47837. characterMakers.push(() => makeCharacter(
  47838. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47839. {
  47840. back: {
  47841. height: math.unit(15, "feet"),
  47842. name: "Back",
  47843. image: {
  47844. source: "./media/characters/nadezda-fex/back.svg",
  47845. extra: 1695/1481,
  47846. bottom: 25/1720
  47847. }
  47848. },
  47849. },
  47850. [
  47851. {
  47852. name: "Normal",
  47853. height: math.unit(15, "feet"),
  47854. default: true
  47855. },
  47856. {
  47857. name: "Macro",
  47858. height: math.unit(2.5, "miles")
  47859. },
  47860. {
  47861. name: "Goddess",
  47862. height: math.unit(2, "multiverses")
  47863. },
  47864. ]
  47865. ))
  47866. characterMakers.push(() => makeCharacter(
  47867. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47868. {
  47869. front: {
  47870. height: math.unit(216, "cm"),
  47871. name: "Front",
  47872. image: {
  47873. source: "./media/characters/lev/front.svg",
  47874. extra: 1728/1670,
  47875. bottom: 82/1810
  47876. }
  47877. },
  47878. back: {
  47879. height: math.unit(216, "cm"),
  47880. name: "Back",
  47881. image: {
  47882. source: "./media/characters/lev/back.svg",
  47883. extra: 1738/1675,
  47884. bottom: 24/1762
  47885. }
  47886. },
  47887. dressed: {
  47888. height: math.unit(216, "cm"),
  47889. name: "Dressed",
  47890. image: {
  47891. source: "./media/characters/lev/dressed.svg",
  47892. extra: 1397/1351,
  47893. bottom: 73/1470
  47894. }
  47895. },
  47896. head: {
  47897. height: math.unit(0.51, "meter"),
  47898. name: "Head",
  47899. image: {
  47900. source: "./media/characters/lev/head.svg"
  47901. }
  47902. },
  47903. },
  47904. [
  47905. {
  47906. name: "Normal",
  47907. height: math.unit(216, "cm"),
  47908. default: true
  47909. },
  47910. {
  47911. name: "Relatively Macro",
  47912. height: math.unit(80, "meters")
  47913. },
  47914. {
  47915. name: "Megamacro",
  47916. height: math.unit(21600, "meters")
  47917. },
  47918. {
  47919. name: "Megamacro+",
  47920. height: math.unit(64800, "meters")
  47921. },
  47922. ]
  47923. ))
  47924. characterMakers.push(() => makeCharacter(
  47925. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47926. {
  47927. front: {
  47928. height: math.unit(2, "meters"),
  47929. weight: math.unit(80, "kg"),
  47930. name: "Front",
  47931. image: {
  47932. source: "./media/characters/moka/front.svg",
  47933. extra: 1337/1255,
  47934. bottom: 58/1395
  47935. }
  47936. },
  47937. },
  47938. [
  47939. {
  47940. name: "Micro",
  47941. height: math.unit(15, "cm")
  47942. },
  47943. {
  47944. name: "Normal",
  47945. height: math.unit(2, "meters"),
  47946. default: true
  47947. },
  47948. {
  47949. name: "Macro",
  47950. height: math.unit(20, "meters"),
  47951. },
  47952. ]
  47953. ))
  47954. characterMakers.push(() => makeCharacter(
  47955. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47956. {
  47957. front: {
  47958. height: math.unit(9, "feet"),
  47959. weight: math.unit(240, "lb"),
  47960. name: "Front",
  47961. image: {
  47962. source: "./media/characters/kuzco/front.svg",
  47963. extra: 1593/1487,
  47964. bottom: 32/1625
  47965. }
  47966. },
  47967. side: {
  47968. height: math.unit(9, "feet"),
  47969. weight: math.unit(240, "lb"),
  47970. name: "Side",
  47971. image: {
  47972. source: "./media/characters/kuzco/side.svg",
  47973. extra: 1575/1485,
  47974. bottom: 30/1605
  47975. }
  47976. },
  47977. back: {
  47978. height: math.unit(9, "feet"),
  47979. weight: math.unit(240, "lb"),
  47980. name: "Back",
  47981. image: {
  47982. source: "./media/characters/kuzco/back.svg",
  47983. extra: 1603/1514,
  47984. bottom: 14/1617
  47985. }
  47986. },
  47987. },
  47988. [
  47989. {
  47990. name: "Normal",
  47991. height: math.unit(9, "feet"),
  47992. default: true
  47993. },
  47994. ]
  47995. ))
  47996. characterMakers.push(() => makeCharacter(
  47997. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47998. {
  47999. side: {
  48000. height: math.unit(2, "meters"),
  48001. weight: math.unit(300, "kg"),
  48002. name: "Side",
  48003. image: {
  48004. source: "./media/characters/ceruleus/side.svg",
  48005. extra: 1068/974,
  48006. bottom: 126/1194
  48007. }
  48008. },
  48009. maw: {
  48010. height: math.unit(0.8125, "meter"),
  48011. name: "Maw",
  48012. image: {
  48013. source: "./media/characters/ceruleus/maw.svg"
  48014. }
  48015. },
  48016. },
  48017. [
  48018. {
  48019. name: "Normal",
  48020. height: math.unit(16, "meters"),
  48021. default: true
  48022. },
  48023. ]
  48024. ))
  48025. characterMakers.push(() => makeCharacter(
  48026. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48027. {
  48028. front: {
  48029. height: math.unit(9, "feet"),
  48030. weight: math.unit(500, "kg"),
  48031. name: "Front",
  48032. image: {
  48033. source: "./media/characters/acouya/front.svg",
  48034. extra: 1660/1473,
  48035. bottom: 28/1688
  48036. }
  48037. },
  48038. },
  48039. [
  48040. {
  48041. name: "Normal",
  48042. height: math.unit(9, "feet"),
  48043. default: true
  48044. },
  48045. ]
  48046. ))
  48047. characterMakers.push(() => makeCharacter(
  48048. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48049. {
  48050. front: {
  48051. height: math.unit(5 + 6/12, "feet"),
  48052. weight: math.unit(195, "lb"),
  48053. name: "Front",
  48054. image: {
  48055. source: "./media/characters/vant/front.svg",
  48056. extra: 1396/1320,
  48057. bottom: 20/1416
  48058. }
  48059. },
  48060. back: {
  48061. height: math.unit(5 + 6/12, "feet"),
  48062. weight: math.unit(195, "lb"),
  48063. name: "Back",
  48064. image: {
  48065. source: "./media/characters/vant/back.svg",
  48066. extra: 1396/1320,
  48067. bottom: 20/1416
  48068. }
  48069. },
  48070. maw: {
  48071. height: math.unit(0.75, "feet"),
  48072. name: "Maw",
  48073. image: {
  48074. source: "./media/characters/vant/maw.svg"
  48075. }
  48076. },
  48077. paw: {
  48078. height: math.unit(1.07, "feet"),
  48079. name: "Paw",
  48080. image: {
  48081. source: "./media/characters/vant/paw.svg"
  48082. }
  48083. },
  48084. },
  48085. [
  48086. {
  48087. name: "Micro",
  48088. height: math.unit(0.25, "inches")
  48089. },
  48090. {
  48091. name: "Normal",
  48092. height: math.unit(5 + 6/12, "feet"),
  48093. default: true
  48094. },
  48095. {
  48096. name: "Macro",
  48097. height: math.unit(75, "feet")
  48098. },
  48099. ]
  48100. ))
  48101. characterMakers.push(() => makeCharacter(
  48102. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48103. {
  48104. front: {
  48105. height: math.unit(30, "meters"),
  48106. weight: math.unit(363, "tons"),
  48107. name: "Front",
  48108. image: {
  48109. source: "./media/characters/ahra/front.svg",
  48110. extra: 1914/1814,
  48111. bottom: 46/1960
  48112. }
  48113. },
  48114. },
  48115. [
  48116. {
  48117. name: "Macro",
  48118. height: math.unit(30, "meters"),
  48119. default: true
  48120. },
  48121. ]
  48122. ))
  48123. characterMakers.push(() => makeCharacter(
  48124. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48125. {
  48126. undressed: {
  48127. height: math.unit(2, "m"),
  48128. weight: math.unit(250, "kg"),
  48129. name: "Undressed",
  48130. image: {
  48131. source: "./media/characters/coriander/undressed.svg",
  48132. extra: 1757/1606,
  48133. bottom: 107/1864
  48134. }
  48135. },
  48136. dressed: {
  48137. height: math.unit(2, "m"),
  48138. weight: math.unit(250, "kg"),
  48139. name: "Dressed",
  48140. image: {
  48141. source: "./media/characters/coriander/dressed.svg",
  48142. extra: 1757/1606,
  48143. bottom: 107/1864
  48144. }
  48145. },
  48146. },
  48147. [
  48148. {
  48149. name: "Normal",
  48150. height: math.unit(4, "meters"),
  48151. default: true
  48152. },
  48153. {
  48154. name: "XL",
  48155. height: math.unit(6, "meters")
  48156. },
  48157. {
  48158. name: "XXL",
  48159. height: math.unit(8, "meters")
  48160. },
  48161. ]
  48162. ))
  48163. characterMakers.push(() => makeCharacter(
  48164. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48165. {
  48166. front: {
  48167. height: math.unit(6, "feet"),
  48168. name: "Front",
  48169. image: {
  48170. source: "./media/characters/syrinx/front.svg",
  48171. extra: 1557/1259,
  48172. bottom: 171/1728
  48173. }
  48174. },
  48175. },
  48176. [
  48177. {
  48178. name: "Normal",
  48179. height: math.unit(6 + 3/12, "feet"),
  48180. default: true
  48181. },
  48182. ]
  48183. ))
  48184. characterMakers.push(() => makeCharacter(
  48185. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48186. {
  48187. front: {
  48188. height: math.unit(11 + 6/12, "feet"),
  48189. weight: math.unit(1.5, "tons"),
  48190. name: "Front",
  48191. image: {
  48192. source: "./media/characters/bor/front.svg",
  48193. extra: 1189/1109,
  48194. bottom: 170/1359
  48195. }
  48196. },
  48197. },
  48198. [
  48199. {
  48200. name: "Normal",
  48201. height: math.unit(11 + 6/12, "feet"),
  48202. default: true
  48203. },
  48204. {
  48205. name: "Macro",
  48206. height: math.unit(32 + 9/12, "feet")
  48207. },
  48208. ]
  48209. ))
  48210. characterMakers.push(() => makeCharacter(
  48211. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48212. {
  48213. anthro: {
  48214. height: math.unit(9, "feet"),
  48215. weight: math.unit(2076, "lb"),
  48216. name: "Anthro",
  48217. image: {
  48218. source: "./media/characters/abacus/anthro.svg",
  48219. extra: 1540/1494,
  48220. bottom: 233/1773
  48221. }
  48222. },
  48223. pigeon: {
  48224. height: math.unit(1, "feet"),
  48225. name: "Pigeon",
  48226. image: {
  48227. source: "./media/characters/abacus/pigeon.svg",
  48228. extra: 528/525,
  48229. bottom: 46/574
  48230. }
  48231. },
  48232. },
  48233. [
  48234. {
  48235. name: "Normal",
  48236. height: math.unit(9, "feet"),
  48237. default: true
  48238. },
  48239. ]
  48240. ))
  48241. characterMakers.push(() => makeCharacter(
  48242. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48243. {
  48244. side: {
  48245. height: math.unit(6, "feet"),
  48246. name: "Side",
  48247. image: {
  48248. source: "./media/characters/delkhan/side.svg",
  48249. extra: 1884/1786,
  48250. bottom: 308/2192
  48251. }
  48252. },
  48253. head: {
  48254. height: math.unit(3.38, "feet"),
  48255. name: "Head",
  48256. image: {
  48257. source: "./media/characters/delkhan/head.svg"
  48258. }
  48259. },
  48260. },
  48261. [
  48262. {
  48263. name: "Normal",
  48264. height: math.unit(72, "feet"),
  48265. default: true
  48266. },
  48267. {
  48268. name: "Giant",
  48269. height: math.unit(172, "feet")
  48270. },
  48271. ]
  48272. ))
  48273. characterMakers.push(() => makeCharacter(
  48274. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48275. {
  48276. standing: {
  48277. height: math.unit(6, "feet"),
  48278. name: "Standing",
  48279. image: {
  48280. source: "./media/characters/euchidat/standing.svg",
  48281. extra: 1612/1553,
  48282. bottom: 116/1728
  48283. }
  48284. },
  48285. leaning: {
  48286. height: math.unit(6, "feet"),
  48287. name: "Leaning",
  48288. image: {
  48289. source: "./media/characters/euchidat/leaning.svg",
  48290. extra: 1719/1674,
  48291. bottom: 27/1746
  48292. }
  48293. },
  48294. },
  48295. [
  48296. {
  48297. name: "Normal",
  48298. height: math.unit(175, "feet"),
  48299. default: true
  48300. },
  48301. {
  48302. name: "Megamacro",
  48303. height: math.unit(190, "miles")
  48304. },
  48305. {
  48306. name: "Gigamacro",
  48307. height: math.unit(190000, "miles")
  48308. },
  48309. ]
  48310. ))
  48311. characterMakers.push(() => makeCharacter(
  48312. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48313. {
  48314. front: {
  48315. height: math.unit(6, "feet"),
  48316. weight: math.unit(150, "lb"),
  48317. name: "Front",
  48318. image: {
  48319. source: "./media/characters/rebecca-stack/front.svg",
  48320. extra: 1256/1201,
  48321. bottom: 18/1274
  48322. }
  48323. },
  48324. },
  48325. [
  48326. {
  48327. name: "Normal",
  48328. height: math.unit(5 + 8/12, "feet"),
  48329. default: true
  48330. },
  48331. {
  48332. name: "Demolitionist",
  48333. height: math.unit(200, "feet")
  48334. },
  48335. {
  48336. name: "Out of Control",
  48337. height: math.unit(2, "miles")
  48338. },
  48339. {
  48340. name: "Giga",
  48341. height: math.unit(7200, "miles")
  48342. },
  48343. ]
  48344. ))
  48345. characterMakers.push(() => makeCharacter(
  48346. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48347. {
  48348. front: {
  48349. height: math.unit(6, "feet"),
  48350. weight: math.unit(150, "lb"),
  48351. name: "Front",
  48352. image: {
  48353. source: "./media/characters/jenny-cartwright/front.svg",
  48354. extra: 1384/1376,
  48355. bottom: 58/1442
  48356. }
  48357. },
  48358. },
  48359. [
  48360. {
  48361. name: "Normal",
  48362. height: math.unit(6 + 7/12, "feet"),
  48363. default: true
  48364. },
  48365. {
  48366. name: "Librarian",
  48367. height: math.unit(55, "feet")
  48368. },
  48369. {
  48370. name: "Sightseer",
  48371. height: math.unit(50, "miles")
  48372. },
  48373. {
  48374. name: "Giga",
  48375. height: math.unit(30000, "miles")
  48376. },
  48377. ]
  48378. ))
  48379. characterMakers.push(() => makeCharacter(
  48380. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48381. {
  48382. nude: {
  48383. height: math.unit(8, "feet"),
  48384. weight: math.unit(225, "lb"),
  48385. name: "Nude",
  48386. image: {
  48387. source: "./media/characters/marvy/nude.svg",
  48388. extra: 1900/1683,
  48389. bottom: 89/1989
  48390. }
  48391. },
  48392. dressed: {
  48393. height: math.unit(8, "feet"),
  48394. weight: math.unit(225, "lb"),
  48395. name: "Dressed",
  48396. image: {
  48397. source: "./media/characters/marvy/dressed.svg",
  48398. extra: 1900/1683,
  48399. bottom: 89/1989
  48400. }
  48401. },
  48402. head: {
  48403. height: math.unit(2.85, "feet"),
  48404. name: "Head",
  48405. image: {
  48406. source: "./media/characters/marvy/head.svg"
  48407. }
  48408. },
  48409. },
  48410. [
  48411. {
  48412. name: "Normal",
  48413. height: math.unit(8, "feet"),
  48414. default: true
  48415. },
  48416. ]
  48417. ))
  48418. characterMakers.push(() => makeCharacter(
  48419. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48420. {
  48421. front: {
  48422. height: math.unit(8, "feet"),
  48423. weight: math.unit(250, "lb"),
  48424. name: "Front",
  48425. image: {
  48426. source: "./media/characters/leah/front.svg",
  48427. extra: 1257/1149,
  48428. bottom: 109/1366
  48429. }
  48430. },
  48431. },
  48432. [
  48433. {
  48434. name: "Normal",
  48435. height: math.unit(8, "feet"),
  48436. default: true
  48437. },
  48438. {
  48439. name: "Minimacro",
  48440. height: math.unit(40, "feet")
  48441. },
  48442. {
  48443. name: "Macro",
  48444. height: math.unit(124, "feet")
  48445. },
  48446. {
  48447. name: "Megamacro",
  48448. height: math.unit(850, "feet")
  48449. },
  48450. ]
  48451. ))
  48452. characterMakers.push(() => makeCharacter(
  48453. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48454. {
  48455. side: {
  48456. height: math.unit(13 + 6/12, "feet"),
  48457. weight: math.unit(3200, "lb"),
  48458. name: "Side",
  48459. image: {
  48460. source: "./media/characters/alvir/side.svg",
  48461. extra: 896/589,
  48462. bottom: 26/922
  48463. }
  48464. },
  48465. },
  48466. [
  48467. {
  48468. name: "Normal",
  48469. height: math.unit(13 + 6/12, "feet"),
  48470. default: true
  48471. },
  48472. ]
  48473. ))
  48474. characterMakers.push(() => makeCharacter(
  48475. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48476. {
  48477. front: {
  48478. height: math.unit(5 + 4/12, "feet"),
  48479. weight: math.unit(236, "lb"),
  48480. name: "Front",
  48481. image: {
  48482. source: "./media/characters/zaina-khalil/front.svg",
  48483. extra: 1533/1485,
  48484. bottom: 94/1627
  48485. }
  48486. },
  48487. side: {
  48488. height: math.unit(5 + 4/12, "feet"),
  48489. weight: math.unit(236, "lb"),
  48490. name: "Side",
  48491. image: {
  48492. source: "./media/characters/zaina-khalil/side.svg",
  48493. extra: 1537/1498,
  48494. bottom: 66/1603
  48495. }
  48496. },
  48497. back: {
  48498. height: math.unit(5 + 4/12, "feet"),
  48499. weight: math.unit(236, "lb"),
  48500. name: "Back",
  48501. image: {
  48502. source: "./media/characters/zaina-khalil/back.svg",
  48503. extra: 1546/1494,
  48504. bottom: 89/1635
  48505. }
  48506. },
  48507. },
  48508. [
  48509. {
  48510. name: "Normal",
  48511. height: math.unit(5 + 4/12, "feet"),
  48512. default: true
  48513. },
  48514. ]
  48515. ))
  48516. characterMakers.push(() => makeCharacter(
  48517. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48518. {
  48519. side: {
  48520. height: math.unit(12, "feet"),
  48521. weight: math.unit(4000, "lb"),
  48522. name: "Side",
  48523. image: {
  48524. source: "./media/characters/terry/side.svg",
  48525. extra: 1518/1439,
  48526. bottom: 149/1667
  48527. }
  48528. },
  48529. },
  48530. [
  48531. {
  48532. name: "Normal",
  48533. height: math.unit(12, "feet"),
  48534. default: true
  48535. },
  48536. ]
  48537. ))
  48538. characterMakers.push(() => makeCharacter(
  48539. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48540. {
  48541. front: {
  48542. height: math.unit(12, "feet"),
  48543. weight: math.unit(1500, "lb"),
  48544. name: "Front",
  48545. image: {
  48546. source: "./media/characters/kahea/front.svg",
  48547. extra: 1722/1617,
  48548. bottom: 179/1901
  48549. }
  48550. },
  48551. },
  48552. [
  48553. {
  48554. name: "Normal",
  48555. height: math.unit(12, "feet"),
  48556. default: true
  48557. },
  48558. ]
  48559. ))
  48560. characterMakers.push(() => makeCharacter(
  48561. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48562. {
  48563. demonFront: {
  48564. height: math.unit(36, "feet"),
  48565. name: "Front",
  48566. image: {
  48567. source: "./media/characters/alex-xuria/demon-front.svg",
  48568. extra: 1705/1673,
  48569. bottom: 198/1903
  48570. },
  48571. form: "demon",
  48572. default: true
  48573. },
  48574. demonBack: {
  48575. height: math.unit(36, "feet"),
  48576. name: "Back",
  48577. image: {
  48578. source: "./media/characters/alex-xuria/demon-back.svg",
  48579. extra: 1725/1693,
  48580. bottom: 70/1795
  48581. },
  48582. form: "demon"
  48583. },
  48584. demonHead: {
  48585. height: math.unit(2.14, "meters"),
  48586. name: "Head",
  48587. image: {
  48588. source: "./media/characters/alex-xuria/demon-head.svg"
  48589. },
  48590. form: "demon"
  48591. },
  48592. demonHand: {
  48593. height: math.unit(1.61, "meters"),
  48594. name: "Hand",
  48595. image: {
  48596. source: "./media/characters/alex-xuria/demon-hand.svg"
  48597. },
  48598. form: "demon"
  48599. },
  48600. demonPaw: {
  48601. height: math.unit(1.35, "meters"),
  48602. name: "Paw",
  48603. image: {
  48604. source: "./media/characters/alex-xuria/demon-paw.svg"
  48605. },
  48606. form: "demon"
  48607. },
  48608. demonFoot: {
  48609. height: math.unit(2.2, "meters"),
  48610. name: "Foot",
  48611. image: {
  48612. source: "./media/characters/alex-xuria/demon-foot.svg"
  48613. },
  48614. form: "demon"
  48615. },
  48616. demonCock: {
  48617. height: math.unit(1.74, "meters"),
  48618. name: "Cock",
  48619. image: {
  48620. source: "./media/characters/alex-xuria/demon-cock.svg"
  48621. },
  48622. form: "demon"
  48623. },
  48624. demonTailClosed: {
  48625. height: math.unit(1.47, "meters"),
  48626. name: "Tail (Closed)",
  48627. image: {
  48628. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48629. },
  48630. form: "demon"
  48631. },
  48632. demonTailOpen: {
  48633. height: math.unit(2.85, "meters"),
  48634. name: "Tail (Open)",
  48635. image: {
  48636. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48637. },
  48638. form: "demon"
  48639. },
  48640. incubusFront: {
  48641. height: math.unit(12, "feet"),
  48642. name: "Front",
  48643. image: {
  48644. source: "./media/characters/alex-xuria/incubus-front.svg",
  48645. extra: 1754/1677,
  48646. bottom: 125/1879
  48647. },
  48648. form: "incubus",
  48649. default: true
  48650. },
  48651. incubusBack: {
  48652. height: math.unit(12, "feet"),
  48653. name: "Back",
  48654. image: {
  48655. source: "./media/characters/alex-xuria/incubus-back.svg",
  48656. extra: 1702/1647,
  48657. bottom: 30/1732
  48658. },
  48659. form: "incubus"
  48660. },
  48661. incubusHead: {
  48662. height: math.unit(3.45, "feet"),
  48663. name: "Head",
  48664. image: {
  48665. source: "./media/characters/alex-xuria/incubus-head.svg"
  48666. },
  48667. form: "incubus"
  48668. },
  48669. rabbitFront: {
  48670. height: math.unit(6, "feet"),
  48671. name: "Front",
  48672. image: {
  48673. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48674. extra: 1369/1349,
  48675. bottom: 45/1414
  48676. },
  48677. form: "rabbit",
  48678. default: true
  48679. },
  48680. rabbitSide: {
  48681. height: math.unit(6, "feet"),
  48682. name: "Side",
  48683. image: {
  48684. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48685. extra: 1370/1356,
  48686. bottom: 37/1407
  48687. },
  48688. form: "rabbit"
  48689. },
  48690. rabbitBack: {
  48691. height: math.unit(6, "feet"),
  48692. name: "Back",
  48693. image: {
  48694. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48695. extra: 1375/1358,
  48696. bottom: 43/1418
  48697. },
  48698. form: "rabbit"
  48699. },
  48700. },
  48701. [
  48702. {
  48703. name: "Normal",
  48704. height: math.unit(6, "feet"),
  48705. default: true,
  48706. form: "rabbit"
  48707. },
  48708. {
  48709. name: "Incubus",
  48710. height: math.unit(12, "feet"),
  48711. default: true,
  48712. form: "incubus"
  48713. },
  48714. {
  48715. name: "Demon",
  48716. height: math.unit(36, "feet"),
  48717. default: true,
  48718. form: "demon"
  48719. }
  48720. ],
  48721. {
  48722. "demon": {
  48723. name: "Demon",
  48724. default: true
  48725. },
  48726. "incubus": {
  48727. name: "Incubus",
  48728. },
  48729. "rabbit": {
  48730. name: "Rabbit"
  48731. }
  48732. }
  48733. ))
  48734. characterMakers.push(() => makeCharacter(
  48735. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48736. {
  48737. front: {
  48738. height: math.unit(7 + 5/12, "feet"),
  48739. weight: math.unit(510, "lb"),
  48740. name: "Front",
  48741. image: {
  48742. source: "./media/characters/syrup/front.svg",
  48743. extra: 932/916,
  48744. bottom: 26/958
  48745. }
  48746. },
  48747. },
  48748. [
  48749. {
  48750. name: "Normal",
  48751. height: math.unit(7 + 5/12, "feet"),
  48752. default: true
  48753. },
  48754. {
  48755. name: "Big",
  48756. height: math.unit(50, "feet")
  48757. },
  48758. {
  48759. name: "Macro",
  48760. height: math.unit(300, "feet")
  48761. },
  48762. {
  48763. name: "Megamacro",
  48764. height: math.unit(1, "mile")
  48765. },
  48766. ]
  48767. ))
  48768. characterMakers.push(() => makeCharacter(
  48769. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48770. {
  48771. front: {
  48772. height: math.unit(6 + 9/12, "feet"),
  48773. name: "Front",
  48774. image: {
  48775. source: "./media/characters/zeimne/front.svg",
  48776. extra: 1969/1806,
  48777. bottom: 53/2022
  48778. }
  48779. },
  48780. },
  48781. [
  48782. {
  48783. name: "Normal",
  48784. height: math.unit(6 + 9/12, "feet"),
  48785. default: true
  48786. },
  48787. {
  48788. name: "Giant",
  48789. height: math.unit(550, "feet")
  48790. },
  48791. {
  48792. name: "Mega",
  48793. height: math.unit(3, "miles")
  48794. },
  48795. {
  48796. name: "Giga",
  48797. height: math.unit(250, "miles")
  48798. },
  48799. {
  48800. name: "Tera",
  48801. height: math.unit(1, "AU")
  48802. },
  48803. ]
  48804. ))
  48805. characterMakers.push(() => makeCharacter(
  48806. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48807. {
  48808. front: {
  48809. height: math.unit(5 + 2/12, "feet"),
  48810. name: "Front",
  48811. image: {
  48812. source: "./media/characters/grar/front.svg",
  48813. extra: 1331/1119,
  48814. bottom: 60/1391
  48815. }
  48816. },
  48817. back: {
  48818. height: math.unit(5 + 2/12, "feet"),
  48819. name: "Back",
  48820. image: {
  48821. source: "./media/characters/grar/back.svg",
  48822. extra: 1385/1169,
  48823. bottom: 23/1408
  48824. }
  48825. },
  48826. },
  48827. [
  48828. {
  48829. name: "Normal",
  48830. height: math.unit(5 + 2/12, "feet"),
  48831. default: true
  48832. },
  48833. ]
  48834. ))
  48835. characterMakers.push(() => makeCharacter(
  48836. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48837. {
  48838. front: {
  48839. height: math.unit(13 + 7/12, "feet"),
  48840. weight: math.unit(2200, "lb"),
  48841. name: "Front",
  48842. image: {
  48843. source: "./media/characters/endraya/front.svg",
  48844. extra: 1289/1215,
  48845. bottom: 50/1339
  48846. }
  48847. },
  48848. nude: {
  48849. height: math.unit(13 + 7/12, "feet"),
  48850. weight: math.unit(2200, "lb"),
  48851. name: "Nude",
  48852. image: {
  48853. source: "./media/characters/endraya/nude.svg",
  48854. extra: 1247/1171,
  48855. bottom: 40/1287
  48856. }
  48857. },
  48858. head: {
  48859. height: math.unit(2.6, "feet"),
  48860. name: "Head",
  48861. image: {
  48862. source: "./media/characters/endraya/head.svg"
  48863. }
  48864. },
  48865. slit: {
  48866. height: math.unit(3.4, "feet"),
  48867. name: "Slit",
  48868. image: {
  48869. source: "./media/characters/endraya/slit.svg"
  48870. }
  48871. },
  48872. },
  48873. [
  48874. {
  48875. name: "Normal",
  48876. height: math.unit(13 + 7/12, "feet"),
  48877. default: true
  48878. },
  48879. {
  48880. name: "Macro",
  48881. height: math.unit(200, "feet")
  48882. },
  48883. ]
  48884. ))
  48885. characterMakers.push(() => makeCharacter(
  48886. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48887. {
  48888. front: {
  48889. height: math.unit(1.81, "meters"),
  48890. weight: math.unit(69, "kg"),
  48891. name: "Front",
  48892. image: {
  48893. source: "./media/characters/rodryana/front.svg",
  48894. extra: 2002/1921,
  48895. bottom: 53/2055
  48896. }
  48897. },
  48898. back: {
  48899. height: math.unit(1.81, "meters"),
  48900. weight: math.unit(69, "kg"),
  48901. name: "Back",
  48902. image: {
  48903. source: "./media/characters/rodryana/back.svg",
  48904. extra: 1993/1926,
  48905. bottom: 48/2041
  48906. }
  48907. },
  48908. maw: {
  48909. height: math.unit(0.19769417475, "meters"),
  48910. name: "Maw",
  48911. image: {
  48912. source: "./media/characters/rodryana/maw.svg"
  48913. }
  48914. },
  48915. slit: {
  48916. height: math.unit(0.31631067961, "meters"),
  48917. name: "Slit",
  48918. image: {
  48919. source: "./media/characters/rodryana/slit.svg"
  48920. }
  48921. },
  48922. },
  48923. [
  48924. {
  48925. name: "Normal",
  48926. height: math.unit(1.81, "meters")
  48927. },
  48928. {
  48929. name: "Mini Macro",
  48930. height: math.unit(181, "meters")
  48931. },
  48932. {
  48933. name: "Macro",
  48934. height: math.unit(452, "meters"),
  48935. default: true
  48936. },
  48937. {
  48938. name: "Mega Macro",
  48939. height: math.unit(1.375, "km")
  48940. },
  48941. {
  48942. name: "Giga Macro",
  48943. height: math.unit(13.575, "km")
  48944. },
  48945. ]
  48946. ))
  48947. characterMakers.push(() => makeCharacter(
  48948. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48949. {
  48950. front: {
  48951. height: math.unit(6, "feet"),
  48952. weight: math.unit(1000, "lb"),
  48953. name: "Front",
  48954. image: {
  48955. source: "./media/characters/asaya/front.svg",
  48956. extra: 1460/1200,
  48957. bottom: 71/1531
  48958. }
  48959. },
  48960. },
  48961. [
  48962. {
  48963. name: "Normal",
  48964. height: math.unit(8, "km"),
  48965. default: true
  48966. },
  48967. ]
  48968. ))
  48969. characterMakers.push(() => makeCharacter(
  48970. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48971. {
  48972. front: {
  48973. height: math.unit(3.5, "meters"),
  48974. name: "Front",
  48975. image: {
  48976. source: "./media/characters/sarzu-and-israz/front.svg",
  48977. extra: 1570/1558,
  48978. bottom: 150/1720
  48979. },
  48980. },
  48981. back: {
  48982. height: math.unit(3.5, "meters"),
  48983. name: "Back",
  48984. image: {
  48985. source: "./media/characters/sarzu-and-israz/back.svg",
  48986. extra: 1523/1509,
  48987. bottom: 132/1655
  48988. },
  48989. },
  48990. frontFemale: {
  48991. height: math.unit(3.5, "meters"),
  48992. name: "Front (Female)",
  48993. image: {
  48994. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48995. extra: 1570/1558,
  48996. bottom: 150/1720
  48997. },
  48998. },
  48999. frontHerm: {
  49000. height: math.unit(3.5, "meters"),
  49001. name: "Front (Herm)",
  49002. image: {
  49003. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49004. extra: 1570/1558,
  49005. bottom: 150/1720
  49006. },
  49007. },
  49008. },
  49009. [
  49010. {
  49011. name: "Normal",
  49012. height: math.unit(3.5, "meters"),
  49013. default: true,
  49014. },
  49015. {
  49016. name: "Macro",
  49017. height: math.unit(65.5, "meters"),
  49018. },
  49019. ],
  49020. ))
  49021. characterMakers.push(() => makeCharacter(
  49022. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49023. {
  49024. front: {
  49025. height: math.unit(6, "feet"),
  49026. weight: math.unit(250, "lb"),
  49027. name: "Front",
  49028. image: {
  49029. source: "./media/characters/zenimma/front.svg",
  49030. extra: 1346/1320,
  49031. bottom: 58/1404
  49032. }
  49033. },
  49034. back: {
  49035. height: math.unit(6, "feet"),
  49036. weight: math.unit(250, "lb"),
  49037. name: "Back",
  49038. image: {
  49039. source: "./media/characters/zenimma/back.svg",
  49040. extra: 1324/1308,
  49041. bottom: 44/1368
  49042. }
  49043. },
  49044. dick: {
  49045. height: math.unit(1.44, "feet"),
  49046. name: "Dick",
  49047. image: {
  49048. source: "./media/characters/zenimma/dick.svg"
  49049. }
  49050. },
  49051. },
  49052. [
  49053. {
  49054. name: "Canon Height",
  49055. height: math.unit(66, "miles"),
  49056. default: true
  49057. },
  49058. ]
  49059. ))
  49060. characterMakers.push(() => makeCharacter(
  49061. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49062. {
  49063. nude: {
  49064. height: math.unit(6, "feet"),
  49065. weight: math.unit(150, "lb"),
  49066. name: "Nude",
  49067. image: {
  49068. source: "./media/characters/shavon/nude.svg",
  49069. extra: 1242/1096,
  49070. bottom: 98/1340
  49071. }
  49072. },
  49073. dressed: {
  49074. height: math.unit(6, "feet"),
  49075. weight: math.unit(150, "lb"),
  49076. name: "Dressed",
  49077. image: {
  49078. source: "./media/characters/shavon/dressed.svg",
  49079. extra: 1242/1096,
  49080. bottom: 98/1340
  49081. }
  49082. },
  49083. },
  49084. [
  49085. {
  49086. name: "Macro",
  49087. height: math.unit(255, "feet"),
  49088. default: true
  49089. },
  49090. ]
  49091. ))
  49092. characterMakers.push(() => makeCharacter(
  49093. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49094. {
  49095. front: {
  49096. height: math.unit(6, "feet"),
  49097. name: "Front",
  49098. image: {
  49099. source: "./media/characters/steph/front.svg",
  49100. extra: 1430/1330,
  49101. bottom: 54/1484
  49102. }
  49103. },
  49104. },
  49105. [
  49106. {
  49107. name: "Normal",
  49108. height: math.unit(6, "feet"),
  49109. default: true
  49110. },
  49111. ]
  49112. ))
  49113. characterMakers.push(() => makeCharacter(
  49114. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49115. {
  49116. front: {
  49117. height: math.unit(9, "feet"),
  49118. weight: math.unit(400, "lb"),
  49119. name: "Front",
  49120. image: {
  49121. source: "./media/characters/kil'aman/front.svg",
  49122. extra: 1210/1159,
  49123. bottom: 109/1319
  49124. }
  49125. },
  49126. head: {
  49127. height: math.unit(2.14, "feet"),
  49128. name: "Head",
  49129. image: {
  49130. source: "./media/characters/kil'aman/head.svg"
  49131. }
  49132. },
  49133. maw: {
  49134. height: math.unit(1.21, "feet"),
  49135. name: "Maw",
  49136. image: {
  49137. source: "./media/characters/kil'aman/maw.svg"
  49138. }
  49139. },
  49140. foot: {
  49141. height: math.unit(1.7, "feet"),
  49142. name: "Foot",
  49143. image: {
  49144. source: "./media/characters/kil'aman/foot.svg"
  49145. }
  49146. },
  49147. dick: {
  49148. height: math.unit(2.1, "feet"),
  49149. name: "Dick",
  49150. image: {
  49151. source: "./media/characters/kil'aman/dick.svg"
  49152. }
  49153. },
  49154. },
  49155. [
  49156. {
  49157. name: "Normal",
  49158. height: math.unit(9, "feet")
  49159. },
  49160. {
  49161. name: "Canon Height",
  49162. height: math.unit(10, "miles"),
  49163. default: true
  49164. },
  49165. {
  49166. name: "Maximum",
  49167. height: math.unit(6e9, "miles")
  49168. },
  49169. ]
  49170. ))
  49171. characterMakers.push(() => makeCharacter(
  49172. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49173. {
  49174. front: {
  49175. height: math.unit(90, "feet"),
  49176. weight: math.unit(675000, "lb"),
  49177. name: "Front",
  49178. image: {
  49179. source: "./media/characters/qadan/front.svg",
  49180. extra: 1012/1004,
  49181. bottom: 78/1090
  49182. }
  49183. },
  49184. back: {
  49185. height: math.unit(90, "feet"),
  49186. weight: math.unit(675000, "lb"),
  49187. name: "Back",
  49188. image: {
  49189. source: "./media/characters/qadan/back.svg",
  49190. extra: 1042/1031,
  49191. bottom: 55/1097
  49192. }
  49193. },
  49194. armored: {
  49195. height: math.unit(90, "feet"),
  49196. weight: math.unit(675000, "lb"),
  49197. name: "Armored",
  49198. image: {
  49199. source: "./media/characters/qadan/armored.svg",
  49200. extra: 1047/1037,
  49201. bottom: 48/1095
  49202. }
  49203. },
  49204. },
  49205. [
  49206. {
  49207. name: "Normal",
  49208. height: math.unit(90, "feet"),
  49209. default: true
  49210. },
  49211. ]
  49212. ))
  49213. characterMakers.push(() => makeCharacter(
  49214. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49215. {
  49216. front: {
  49217. height: math.unit(6, "feet"),
  49218. weight: math.unit(225, "lb"),
  49219. name: "Front",
  49220. image: {
  49221. source: "./media/characters/brooke/front.svg",
  49222. extra: 1050/1010,
  49223. bottom: 66/1116
  49224. }
  49225. },
  49226. back: {
  49227. height: math.unit(6, "feet"),
  49228. weight: math.unit(225, "lb"),
  49229. name: "Back",
  49230. image: {
  49231. source: "./media/characters/brooke/back.svg",
  49232. extra: 1053/1013,
  49233. bottom: 41/1094
  49234. }
  49235. },
  49236. dressed: {
  49237. height: math.unit(6, "feet"),
  49238. weight: math.unit(225, "lb"),
  49239. name: "Dressed",
  49240. image: {
  49241. source: "./media/characters/brooke/dressed.svg",
  49242. extra: 1050/1010,
  49243. bottom: 66/1116
  49244. }
  49245. },
  49246. },
  49247. [
  49248. {
  49249. name: "Canon Height",
  49250. height: math.unit(500, "miles"),
  49251. default: true
  49252. },
  49253. ]
  49254. ))
  49255. characterMakers.push(() => makeCharacter(
  49256. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49257. {
  49258. front: {
  49259. height: math.unit(6 + 2/12, "feet"),
  49260. weight: math.unit(210, "lb"),
  49261. name: "Front",
  49262. image: {
  49263. source: "./media/characters/wubs/front.svg",
  49264. extra: 1345/1325,
  49265. bottom: 70/1415
  49266. }
  49267. },
  49268. back: {
  49269. height: math.unit(6 + 2/12, "feet"),
  49270. weight: math.unit(210, "lb"),
  49271. name: "Back",
  49272. image: {
  49273. source: "./media/characters/wubs/back.svg",
  49274. extra: 1296/1275,
  49275. bottom: 58/1354
  49276. }
  49277. },
  49278. },
  49279. [
  49280. {
  49281. name: "Normal",
  49282. height: math.unit(6 + 2/12, "feet"),
  49283. default: true
  49284. },
  49285. {
  49286. name: "Macro",
  49287. height: math.unit(1000, "feet")
  49288. },
  49289. {
  49290. name: "Megamacro",
  49291. height: math.unit(1, "mile")
  49292. },
  49293. ]
  49294. ))
  49295. characterMakers.push(() => makeCharacter(
  49296. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49297. {
  49298. front: {
  49299. height: math.unit(4, "feet"),
  49300. weight: math.unit(120, "lb"),
  49301. name: "Front",
  49302. image: {
  49303. source: "./media/characters/blue/front.svg",
  49304. extra: 1636/1525,
  49305. bottom: 43/1679
  49306. }
  49307. },
  49308. back: {
  49309. height: math.unit(4, "feet"),
  49310. weight: math.unit(120, "lb"),
  49311. name: "Back",
  49312. image: {
  49313. source: "./media/characters/blue/back.svg",
  49314. extra: 1660/1560,
  49315. bottom: 57/1717
  49316. }
  49317. },
  49318. paws: {
  49319. height: math.unit(0.826, "feet"),
  49320. name: "Paws",
  49321. image: {
  49322. source: "./media/characters/blue/paws.svg"
  49323. }
  49324. },
  49325. },
  49326. [
  49327. {
  49328. name: "Micro",
  49329. height: math.unit(3, "inches")
  49330. },
  49331. {
  49332. name: "Normal",
  49333. height: math.unit(4, "feet"),
  49334. default: true
  49335. },
  49336. {
  49337. name: "Femenine Form",
  49338. height: math.unit(14, "feet")
  49339. },
  49340. {
  49341. name: "Werebat Form",
  49342. height: math.unit(18, "feet")
  49343. },
  49344. ]
  49345. ))
  49346. characterMakers.push(() => makeCharacter(
  49347. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49348. {
  49349. female: {
  49350. height: math.unit(7 + 4/12, "feet"),
  49351. weight: math.unit(243, "lb"),
  49352. name: "Female",
  49353. image: {
  49354. source: "./media/characters/kaya/female.svg",
  49355. extra: 975/898,
  49356. bottom: 34/1009
  49357. }
  49358. },
  49359. herm: {
  49360. height: math.unit(7 + 4/12, "feet"),
  49361. weight: math.unit(243, "lb"),
  49362. name: "Herm",
  49363. image: {
  49364. source: "./media/characters/kaya/herm.svg",
  49365. extra: 975/898,
  49366. bottom: 34/1009
  49367. }
  49368. },
  49369. },
  49370. [
  49371. {
  49372. name: "Normal",
  49373. height: math.unit(7 + 4/12, "feet"),
  49374. default: true
  49375. },
  49376. ]
  49377. ))
  49378. characterMakers.push(() => makeCharacter(
  49379. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49380. {
  49381. female: {
  49382. height: math.unit(9 + 4/12, "feet"),
  49383. weight: math.unit(398, "lb"),
  49384. name: "Female",
  49385. image: {
  49386. source: "./media/characters/kassandra/female.svg",
  49387. extra: 908/839,
  49388. bottom: 61/969
  49389. }
  49390. },
  49391. intersex: {
  49392. height: math.unit(9 + 4/12, "feet"),
  49393. weight: math.unit(398, "lb"),
  49394. name: "Intersex",
  49395. image: {
  49396. source: "./media/characters/kassandra/intersex.svg",
  49397. extra: 908/839,
  49398. bottom: 61/969
  49399. }
  49400. },
  49401. },
  49402. [
  49403. {
  49404. name: "Normal",
  49405. height: math.unit(9 + 4/12, "feet"),
  49406. default: true
  49407. },
  49408. ]
  49409. ))
  49410. characterMakers.push(() => makeCharacter(
  49411. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49412. {
  49413. front: {
  49414. height: math.unit(3, "meters"),
  49415. name: "Front",
  49416. image: {
  49417. source: "./media/characters/amy/front.svg",
  49418. extra: 1380/1343,
  49419. bottom: 70/1450
  49420. }
  49421. },
  49422. back: {
  49423. height: math.unit(3, "meters"),
  49424. name: "Back",
  49425. image: {
  49426. source: "./media/characters/amy/back.svg",
  49427. extra: 1380/1347,
  49428. bottom: 66/1446
  49429. }
  49430. },
  49431. },
  49432. [
  49433. {
  49434. name: "Normal",
  49435. height: math.unit(3, "meters"),
  49436. default: true
  49437. },
  49438. ]
  49439. ))
  49440. characterMakers.push(() => makeCharacter(
  49441. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49442. {
  49443. side: {
  49444. height: math.unit(47, "cm"),
  49445. weight: math.unit(10.8, "kg"),
  49446. name: "Side",
  49447. image: {
  49448. source: "./media/characters/alphaschakal/side.svg",
  49449. extra: 1058/568,
  49450. bottom: 62/1120
  49451. }
  49452. },
  49453. back: {
  49454. height: math.unit(78, "cm"),
  49455. weight: math.unit(10.8, "kg"),
  49456. name: "Back",
  49457. image: {
  49458. source: "./media/characters/alphaschakal/back.svg",
  49459. extra: 1102/942,
  49460. bottom: 185/1287
  49461. }
  49462. },
  49463. head: {
  49464. height: math.unit(28, "cm"),
  49465. name: "Head",
  49466. image: {
  49467. source: "./media/characters/alphaschakal/head.svg",
  49468. extra: 696/508,
  49469. bottom: 0/696
  49470. }
  49471. },
  49472. paw: {
  49473. height: math.unit(16, "cm"),
  49474. name: "Paw",
  49475. image: {
  49476. source: "./media/characters/alphaschakal/paw.svg"
  49477. }
  49478. },
  49479. },
  49480. [
  49481. {
  49482. name: "Normal",
  49483. height: math.unit(47, "cm"),
  49484. default: true
  49485. },
  49486. {
  49487. name: "Macro",
  49488. height: math.unit(340, "cm")
  49489. },
  49490. ]
  49491. ))
  49492. characterMakers.push(() => makeCharacter(
  49493. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49494. {
  49495. front: {
  49496. height: math.unit(36, "earths"),
  49497. name: "Front",
  49498. image: {
  49499. source: "./media/characters/ecobyss/front.svg",
  49500. extra: 1282/1215,
  49501. bottom: 11/1293
  49502. }
  49503. },
  49504. back: {
  49505. height: math.unit(36, "earths"),
  49506. name: "Back",
  49507. image: {
  49508. source: "./media/characters/ecobyss/back.svg",
  49509. extra: 1291/1222,
  49510. bottom: 8/1299
  49511. }
  49512. },
  49513. },
  49514. [
  49515. {
  49516. name: "Normal",
  49517. height: math.unit(36, "earths"),
  49518. default: true
  49519. },
  49520. ]
  49521. ))
  49522. characterMakers.push(() => makeCharacter(
  49523. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49524. {
  49525. front: {
  49526. height: math.unit(12, "feet"),
  49527. name: "Front",
  49528. image: {
  49529. source: "./media/characters/vasuk/front.svg",
  49530. extra: 1326/1207,
  49531. bottom: 64/1390
  49532. }
  49533. },
  49534. },
  49535. [
  49536. {
  49537. name: "Normal",
  49538. height: math.unit(12, "feet"),
  49539. default: true
  49540. },
  49541. ]
  49542. ))
  49543. characterMakers.push(() => makeCharacter(
  49544. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49545. {
  49546. side: {
  49547. height: math.unit(100, "feet"),
  49548. name: "Side",
  49549. image: {
  49550. source: "./media/characters/linneaus/side.svg",
  49551. extra: 987/807,
  49552. bottom: 47/1034
  49553. }
  49554. },
  49555. },
  49556. [
  49557. {
  49558. name: "Macro",
  49559. height: math.unit(100, "feet"),
  49560. default: true
  49561. },
  49562. ]
  49563. ))
  49564. characterMakers.push(() => makeCharacter(
  49565. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49566. {
  49567. front: {
  49568. height: math.unit(8, "feet"),
  49569. weight: math.unit(1200, "lb"),
  49570. name: "Front",
  49571. image: {
  49572. source: "./media/characters/nyterious-daligdig/front.svg",
  49573. extra: 1284/1094,
  49574. bottom: 84/1368
  49575. }
  49576. },
  49577. back: {
  49578. height: math.unit(8, "feet"),
  49579. weight: math.unit(1200, "lb"),
  49580. name: "Back",
  49581. image: {
  49582. source: "./media/characters/nyterious-daligdig/back.svg",
  49583. extra: 1301/1121,
  49584. bottom: 129/1430
  49585. }
  49586. },
  49587. mouth: {
  49588. height: math.unit(1.464, "feet"),
  49589. name: "Mouth",
  49590. image: {
  49591. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49592. }
  49593. },
  49594. },
  49595. [
  49596. {
  49597. name: "Small",
  49598. height: math.unit(8, "feet"),
  49599. default: true
  49600. },
  49601. {
  49602. name: "Normal",
  49603. height: math.unit(15, "feet")
  49604. },
  49605. {
  49606. name: "Macro",
  49607. height: math.unit(90, "feet")
  49608. },
  49609. ]
  49610. ))
  49611. characterMakers.push(() => makeCharacter(
  49612. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49613. {
  49614. front: {
  49615. height: math.unit(7 + 4/12, "feet"),
  49616. weight: math.unit(252, "lb"),
  49617. name: "Front",
  49618. image: {
  49619. source: "./media/characters/bandel/front.svg",
  49620. extra: 1946/1775,
  49621. bottom: 26/1972
  49622. }
  49623. },
  49624. back: {
  49625. height: math.unit(7 + 4/12, "feet"),
  49626. weight: math.unit(252, "lb"),
  49627. name: "Back",
  49628. image: {
  49629. source: "./media/characters/bandel/back.svg",
  49630. extra: 1940/1770,
  49631. bottom: 25/1965
  49632. }
  49633. },
  49634. maw: {
  49635. height: math.unit(2.15, "feet"),
  49636. name: "Maw",
  49637. image: {
  49638. source: "./media/characters/bandel/maw.svg"
  49639. }
  49640. },
  49641. stomach: {
  49642. height: math.unit(1.95, "feet"),
  49643. name: "Stomach",
  49644. image: {
  49645. source: "./media/characters/bandel/stomach.svg"
  49646. }
  49647. },
  49648. },
  49649. [
  49650. {
  49651. name: "Normal",
  49652. height: math.unit(7 + 4/12, "feet"),
  49653. default: true
  49654. },
  49655. ]
  49656. ))
  49657. characterMakers.push(() => makeCharacter(
  49658. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49659. {
  49660. front: {
  49661. height: math.unit(10 + 5/12, "feet"),
  49662. weight: math.unit(773.5, "kg"),
  49663. name: "Front",
  49664. image: {
  49665. source: "./media/characters/zed/front.svg",
  49666. extra: 987/941,
  49667. bottom: 52/1039
  49668. }
  49669. },
  49670. },
  49671. [
  49672. {
  49673. name: "Short",
  49674. height: math.unit(5 + 4/12, "feet")
  49675. },
  49676. {
  49677. name: "Average",
  49678. height: math.unit(10 + 5/12, "feet"),
  49679. default: true
  49680. },
  49681. {
  49682. name: "Mini-Macro",
  49683. height: math.unit(24 + 9/12, "feet")
  49684. },
  49685. {
  49686. name: "Macro",
  49687. height: math.unit(249, "feet")
  49688. },
  49689. {
  49690. name: "Mega-Macro",
  49691. height: math.unit(12490, "feet")
  49692. },
  49693. {
  49694. name: "Giga-Macro",
  49695. height: math.unit(24.9, "miles")
  49696. },
  49697. {
  49698. name: "Tera-Macro",
  49699. height: math.unit(24900, "miles")
  49700. },
  49701. {
  49702. name: "Cosmic Scale",
  49703. height: math.unit(38.9, "lightyears")
  49704. },
  49705. {
  49706. name: "Universal Scale",
  49707. height: math.unit(138e12, "lightyears")
  49708. },
  49709. ]
  49710. ))
  49711. characterMakers.push(() => makeCharacter(
  49712. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49713. {
  49714. front: {
  49715. height: math.unit(1561, "inches"),
  49716. name: "Front",
  49717. image: {
  49718. source: "./media/characters/ivan/front.svg",
  49719. extra: 1126/1071,
  49720. bottom: 26/1152
  49721. }
  49722. },
  49723. back: {
  49724. height: math.unit(1561, "inches"),
  49725. name: "Back",
  49726. image: {
  49727. source: "./media/characters/ivan/back.svg",
  49728. extra: 1134/1079,
  49729. bottom: 30/1164
  49730. }
  49731. },
  49732. },
  49733. [
  49734. {
  49735. name: "Normal",
  49736. height: math.unit(1561, "inches"),
  49737. default: true
  49738. },
  49739. ]
  49740. ))
  49741. characterMakers.push(() => makeCharacter(
  49742. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49743. {
  49744. front: {
  49745. height: math.unit(5 + 7/12, "feet"),
  49746. weight: math.unit(150, "lb"),
  49747. name: "Front",
  49748. image: {
  49749. source: "./media/characters/robin-arctic-hare/front.svg",
  49750. extra: 1148/974,
  49751. bottom: 20/1168
  49752. }
  49753. },
  49754. },
  49755. [
  49756. {
  49757. name: "Normal",
  49758. height: math.unit(5 + 7/12, "feet"),
  49759. default: true
  49760. },
  49761. ]
  49762. ))
  49763. characterMakers.push(() => makeCharacter(
  49764. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49765. {
  49766. side: {
  49767. height: math.unit(5, "feet"),
  49768. name: "Side",
  49769. image: {
  49770. source: "./media/characters/birch/side.svg",
  49771. extra: 985/796,
  49772. bottom: 111/1096
  49773. }
  49774. },
  49775. },
  49776. [
  49777. {
  49778. name: "Normal",
  49779. height: math.unit(5, "feet"),
  49780. default: true
  49781. },
  49782. ]
  49783. ))
  49784. characterMakers.push(() => makeCharacter(
  49785. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49786. {
  49787. front: {
  49788. height: math.unit(4, "feet"),
  49789. name: "Front",
  49790. image: {
  49791. source: "./media/characters/rasp/front.svg",
  49792. extra: 561/478,
  49793. bottom: 74/635
  49794. }
  49795. },
  49796. },
  49797. [
  49798. {
  49799. name: "Normal",
  49800. height: math.unit(4, "feet"),
  49801. default: true
  49802. },
  49803. ]
  49804. ))
  49805. characterMakers.push(() => makeCharacter(
  49806. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49807. {
  49808. front: {
  49809. height: math.unit(4 + 6/12, "feet"),
  49810. name: "Front",
  49811. image: {
  49812. source: "./media/characters/agatha/front.svg",
  49813. extra: 947/933,
  49814. bottom: 42/989
  49815. }
  49816. },
  49817. back: {
  49818. height: math.unit(4 + 6/12, "feet"),
  49819. name: "Back",
  49820. image: {
  49821. source: "./media/characters/agatha/back.svg",
  49822. extra: 935/922,
  49823. bottom: 48/983
  49824. }
  49825. },
  49826. },
  49827. [
  49828. {
  49829. name: "Normal",
  49830. height: math.unit(4 + 6 /12, "feet"),
  49831. default: true
  49832. },
  49833. {
  49834. name: "Max Size",
  49835. height: math.unit(500, "feet")
  49836. },
  49837. ]
  49838. ))
  49839. characterMakers.push(() => makeCharacter(
  49840. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49841. {
  49842. side: {
  49843. height: math.unit(30, "feet"),
  49844. name: "Side",
  49845. image: {
  49846. source: "./media/characters/roggy/side.svg",
  49847. extra: 909/643,
  49848. bottom: 63/972
  49849. }
  49850. },
  49851. lounging: {
  49852. height: math.unit(20, "feet"),
  49853. name: "Lounging",
  49854. image: {
  49855. source: "./media/characters/roggy/lounging.svg",
  49856. extra: 643/479,
  49857. bottom: 145/788
  49858. }
  49859. },
  49860. handpaw: {
  49861. height: math.unit(13.1, "feet"),
  49862. name: "Handpaw",
  49863. image: {
  49864. source: "./media/characters/roggy/handpaw.svg"
  49865. }
  49866. },
  49867. footpaw: {
  49868. height: math.unit(15.8, "feet"),
  49869. name: "Footpaw",
  49870. image: {
  49871. source: "./media/characters/roggy/footpaw.svg"
  49872. }
  49873. },
  49874. },
  49875. [
  49876. {
  49877. name: "Menacing",
  49878. height: math.unit(30, "feet"),
  49879. default: true
  49880. },
  49881. ]
  49882. ))
  49883. characterMakers.push(() => makeCharacter(
  49884. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49885. {
  49886. front: {
  49887. height: math.unit(5 + 7/12, "feet"),
  49888. weight: math.unit(135, "lb"),
  49889. name: "Front",
  49890. image: {
  49891. source: "./media/characters/naomi/front.svg",
  49892. extra: 1209/1154,
  49893. bottom: 129/1338
  49894. }
  49895. },
  49896. back: {
  49897. height: math.unit(5 + 7/12, "feet"),
  49898. weight: math.unit(135, "lb"),
  49899. name: "Back",
  49900. image: {
  49901. source: "./media/characters/naomi/back.svg",
  49902. extra: 1252/1190,
  49903. bottom: 23/1275
  49904. }
  49905. },
  49906. },
  49907. [
  49908. {
  49909. name: "Normal",
  49910. height: math.unit(5 + 7 /12, "feet"),
  49911. default: true
  49912. },
  49913. ]
  49914. ))
  49915. characterMakers.push(() => makeCharacter(
  49916. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49917. {
  49918. side: {
  49919. height: math.unit(35, "meters"),
  49920. name: "Side",
  49921. image: {
  49922. source: "./media/characters/kimpi/side.svg",
  49923. extra: 419/382,
  49924. bottom: 63/482
  49925. }
  49926. },
  49927. hand: {
  49928. height: math.unit(8.96, "meters"),
  49929. name: "Hand",
  49930. image: {
  49931. source: "./media/characters/kimpi/hand.svg"
  49932. }
  49933. },
  49934. },
  49935. [
  49936. {
  49937. name: "Normal",
  49938. height: math.unit(35, "meters"),
  49939. default: true
  49940. },
  49941. ]
  49942. ))
  49943. characterMakers.push(() => makeCharacter(
  49944. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49945. {
  49946. front: {
  49947. height: math.unit(4 + 4/12, "feet"),
  49948. name: "Front",
  49949. image: {
  49950. source: "./media/characters/pepper-purrloin/front.svg",
  49951. extra: 1141/1024,
  49952. bottom: 21/1162
  49953. }
  49954. },
  49955. },
  49956. [
  49957. {
  49958. name: "Normal",
  49959. height: math.unit(4 + 4/12, "feet"),
  49960. default: true
  49961. },
  49962. ]
  49963. ))
  49964. characterMakers.push(() => makeCharacter(
  49965. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49966. {
  49967. front: {
  49968. height: math.unit(6 + 2/12, "feet"),
  49969. name: "Front",
  49970. image: {
  49971. source: "./media/characters/raphael/front.svg",
  49972. extra: 1101/962,
  49973. bottom: 59/1160
  49974. }
  49975. },
  49976. },
  49977. [
  49978. {
  49979. name: "Normal",
  49980. height: math.unit(6 + 2/12, "feet"),
  49981. default: true
  49982. },
  49983. ]
  49984. ))
  49985. characterMakers.push(() => makeCharacter(
  49986. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49987. {
  49988. front: {
  49989. height: math.unit(6, "feet"),
  49990. weight: math.unit(150, "lb"),
  49991. name: "Front",
  49992. image: {
  49993. source: "./media/characters/victor-williams/front.svg",
  49994. extra: 1894/1825,
  49995. bottom: 67/1961
  49996. }
  49997. },
  49998. },
  49999. [
  50000. {
  50001. name: "Normal",
  50002. height: math.unit(6, "feet"),
  50003. default: true
  50004. },
  50005. ]
  50006. ))
  50007. characterMakers.push(() => makeCharacter(
  50008. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50009. {
  50010. front: {
  50011. height: math.unit(5 + 8/12, "feet"),
  50012. weight: math.unit(150, "lb"),
  50013. name: "Front",
  50014. image: {
  50015. source: "./media/characters/rachel/front.svg",
  50016. extra: 1902/1787,
  50017. bottom: 46/1948
  50018. }
  50019. },
  50020. },
  50021. [
  50022. {
  50023. name: "Base Height",
  50024. height: math.unit(5 + 8/12, "feet"),
  50025. default: true
  50026. },
  50027. {
  50028. name: "Macro",
  50029. height: math.unit(200, "feet")
  50030. },
  50031. {
  50032. name: "Mega Macro",
  50033. height: math.unit(1, "mile")
  50034. },
  50035. {
  50036. name: "Giga Macro",
  50037. height: math.unit(1500, "miles")
  50038. },
  50039. {
  50040. name: "Tera Macro",
  50041. height: math.unit(8000, "miles")
  50042. },
  50043. {
  50044. name: "Tera Macro+",
  50045. height: math.unit(2e5, "miles")
  50046. },
  50047. ]
  50048. ))
  50049. characterMakers.push(() => makeCharacter(
  50050. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50051. {
  50052. front: {
  50053. height: math.unit(6.5, "feet"),
  50054. name: "Front",
  50055. image: {
  50056. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50057. extra: 860/819,
  50058. bottom: 307/1167
  50059. }
  50060. },
  50061. back: {
  50062. height: math.unit(6.5, "feet"),
  50063. name: "Back",
  50064. image: {
  50065. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50066. extra: 880/837,
  50067. bottom: 395/1275
  50068. }
  50069. },
  50070. sleeping: {
  50071. height: math.unit(2.79, "feet"),
  50072. name: "Sleeping",
  50073. image: {
  50074. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50075. extra: 465/383,
  50076. bottom: 263/728
  50077. }
  50078. },
  50079. maw: {
  50080. height: math.unit(2.52, "feet"),
  50081. name: "Maw",
  50082. image: {
  50083. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50084. }
  50085. },
  50086. },
  50087. [
  50088. {
  50089. name: "Normal",
  50090. height: math.unit(6.5, "feet"),
  50091. default: true
  50092. },
  50093. ]
  50094. ))
  50095. characterMakers.push(() => makeCharacter(
  50096. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50097. {
  50098. front: {
  50099. height: math.unit(5, "feet"),
  50100. name: "Front",
  50101. image: {
  50102. source: "./media/characters/nova-nerium/front.svg",
  50103. extra: 1548/1392,
  50104. bottom: 374/1922
  50105. }
  50106. },
  50107. back: {
  50108. height: math.unit(5, "feet"),
  50109. name: "Back",
  50110. image: {
  50111. source: "./media/characters/nova-nerium/back.svg",
  50112. extra: 1658/1468,
  50113. bottom: 257/1915
  50114. }
  50115. },
  50116. },
  50117. [
  50118. {
  50119. name: "Normal",
  50120. height: math.unit(5, "feet"),
  50121. default: true
  50122. },
  50123. ]
  50124. ))
  50125. characterMakers.push(() => makeCharacter(
  50126. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50127. {
  50128. front: {
  50129. height: math.unit(5 + 4/12, "feet"),
  50130. name: "Front",
  50131. image: {
  50132. source: "./media/characters/ashe-pyriph/front.svg",
  50133. extra: 1935/1747,
  50134. bottom: 60/1995
  50135. }
  50136. },
  50137. },
  50138. [
  50139. {
  50140. name: "Normal",
  50141. height: math.unit(5 + 4/12, "feet"),
  50142. default: true
  50143. },
  50144. ]
  50145. ))
  50146. characterMakers.push(() => makeCharacter(
  50147. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50148. {
  50149. front: {
  50150. height: math.unit(8.7, "feet"),
  50151. name: "Front",
  50152. image: {
  50153. source: "./media/characters/flicker-wisp/front.svg",
  50154. extra: 1835/1613,
  50155. bottom: 449/2284
  50156. }
  50157. },
  50158. side: {
  50159. height: math.unit(8.7, "feet"),
  50160. name: "Side",
  50161. image: {
  50162. source: "./media/characters/flicker-wisp/side.svg",
  50163. extra: 1841/1642,
  50164. bottom: 336/2177
  50165. },
  50166. default: true
  50167. },
  50168. maw: {
  50169. height: math.unit(3.35, "feet"),
  50170. name: "Maw",
  50171. image: {
  50172. source: "./media/characters/flicker-wisp/maw.svg",
  50173. extra: 2338/1506,
  50174. bottom: 0/2338
  50175. }
  50176. },
  50177. ovipositor: {
  50178. height: math.unit(4.95, "feet"),
  50179. name: "Ovipositor",
  50180. image: {
  50181. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50182. }
  50183. },
  50184. egg: {
  50185. height: math.unit(0.385, "feet"),
  50186. weight: math.unit(2, "lb"),
  50187. name: "Egg",
  50188. image: {
  50189. source: "./media/characters/flicker-wisp/egg.svg"
  50190. }
  50191. },
  50192. },
  50193. [
  50194. {
  50195. name: "Normal",
  50196. height: math.unit(8.7, "feet"),
  50197. default: true
  50198. },
  50199. ]
  50200. ))
  50201. characterMakers.push(() => makeCharacter(
  50202. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50203. {
  50204. side: {
  50205. height: math.unit(11, "feet"),
  50206. name: "Side",
  50207. image: {
  50208. source: "./media/characters/faefnul/side.svg",
  50209. extra: 1100/1007,
  50210. bottom: 0/1100
  50211. }
  50212. },
  50213. },
  50214. [
  50215. {
  50216. name: "Normal",
  50217. height: math.unit(11, "feet"),
  50218. default: true
  50219. },
  50220. ]
  50221. ))
  50222. characterMakers.push(() => makeCharacter(
  50223. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50224. {
  50225. front: {
  50226. height: math.unit(6 + 2/12, "feet"),
  50227. name: "Front",
  50228. image: {
  50229. source: "./media/characters/shady/front.svg",
  50230. extra: 502/461,
  50231. bottom: 9/511
  50232. }
  50233. },
  50234. kneeling: {
  50235. height: math.unit(4.6, "feet"),
  50236. name: "Kneeling",
  50237. image: {
  50238. source: "./media/characters/shady/kneeling.svg",
  50239. extra: 1328/1219,
  50240. bottom: 117/1445
  50241. }
  50242. },
  50243. maw: {
  50244. height: math.unit(2, "feet"),
  50245. name: "Maw",
  50246. image: {
  50247. source: "./media/characters/shady/maw.svg"
  50248. }
  50249. },
  50250. },
  50251. [
  50252. {
  50253. name: "Nano",
  50254. height: math.unit(1, "mm")
  50255. },
  50256. {
  50257. name: "Micro",
  50258. height: math.unit(12, "mm")
  50259. },
  50260. {
  50261. name: "Tiny",
  50262. height: math.unit(3, "inches")
  50263. },
  50264. {
  50265. name: "Normal",
  50266. height: math.unit(6 + 2/12, "feet"),
  50267. default: true
  50268. },
  50269. {
  50270. name: "Big",
  50271. height: math.unit(15, "feet")
  50272. },
  50273. {
  50274. name: "Macro",
  50275. height: math.unit(150, "feet")
  50276. },
  50277. {
  50278. name: "Titanic",
  50279. height: math.unit(500, "feet")
  50280. },
  50281. ]
  50282. ))
  50283. characterMakers.push(() => makeCharacter(
  50284. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50285. {
  50286. front: {
  50287. height: math.unit(12, "feet"),
  50288. name: "Front",
  50289. image: {
  50290. source: "./media/characters/fenrir/front.svg",
  50291. extra: 968/875,
  50292. bottom: 22/990
  50293. }
  50294. },
  50295. },
  50296. [
  50297. {
  50298. name: "Big",
  50299. height: math.unit(12, "feet"),
  50300. default: true
  50301. },
  50302. ]
  50303. ))
  50304. characterMakers.push(() => makeCharacter(
  50305. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50306. {
  50307. front: {
  50308. height: math.unit(5 + 4/12, "feet"),
  50309. name: "Front",
  50310. image: {
  50311. source: "./media/characters/makar/front.svg",
  50312. extra: 1181/1112,
  50313. bottom: 78/1259
  50314. }
  50315. },
  50316. },
  50317. [
  50318. {
  50319. name: "Normal",
  50320. height: math.unit(5 + 4/12, "feet"),
  50321. default: true
  50322. },
  50323. ]
  50324. ))
  50325. characterMakers.push(() => makeCharacter(
  50326. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50327. {
  50328. front: {
  50329. height: math.unit(5 + 7/12, "feet"),
  50330. name: "Front",
  50331. image: {
  50332. source: "./media/characters/callow/front.svg",
  50333. extra: 1482/1304,
  50334. bottom: 23/1505
  50335. }
  50336. },
  50337. back: {
  50338. height: math.unit(5 + 7/12, "feet"),
  50339. name: "Back",
  50340. image: {
  50341. source: "./media/characters/callow/back.svg",
  50342. extra: 1484/1296,
  50343. bottom: 25/1509
  50344. }
  50345. },
  50346. },
  50347. [
  50348. {
  50349. name: "Micro",
  50350. height: math.unit(3, "inches"),
  50351. default: true
  50352. },
  50353. {
  50354. name: "Normal",
  50355. height: math.unit(5 + 7/12, "feet")
  50356. },
  50357. ]
  50358. ))
  50359. characterMakers.push(() => makeCharacter(
  50360. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50361. {
  50362. front: {
  50363. height: math.unit(6 + 2/12, "feet"),
  50364. name: "Front",
  50365. image: {
  50366. source: "./media/characters/natel/front.svg",
  50367. extra: 1833/1692,
  50368. bottom: 166/1999
  50369. }
  50370. },
  50371. },
  50372. [
  50373. {
  50374. name: "Normal",
  50375. height: math.unit(6 + 2/12, "feet"),
  50376. default: true
  50377. },
  50378. ]
  50379. ))
  50380. characterMakers.push(() => makeCharacter(
  50381. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50382. {
  50383. front: {
  50384. height: math.unit(1.75, "meters"),
  50385. name: "Front",
  50386. image: {
  50387. source: "./media/characters/misu/front.svg",
  50388. extra: 1690/1558,
  50389. bottom: 234/1924
  50390. }
  50391. },
  50392. back: {
  50393. height: math.unit(1.75, "meters"),
  50394. name: "Back",
  50395. image: {
  50396. source: "./media/characters/misu/back.svg",
  50397. extra: 1762/1618,
  50398. bottom: 146/1908
  50399. }
  50400. },
  50401. frontNude: {
  50402. height: math.unit(1.75, "meters"),
  50403. name: "Front (Nude)",
  50404. image: {
  50405. source: "./media/characters/misu/front-nude.svg",
  50406. extra: 1690/1558,
  50407. bottom: 234/1924
  50408. }
  50409. },
  50410. backNude: {
  50411. height: math.unit(1.75, "meters"),
  50412. name: "Back (Nude)",
  50413. image: {
  50414. source: "./media/characters/misu/back-nude.svg",
  50415. extra: 1762/1618,
  50416. bottom: 146/1908
  50417. }
  50418. },
  50419. frontErect: {
  50420. height: math.unit(1.75, "meters"),
  50421. name: "Front (Erect)",
  50422. image: {
  50423. source: "./media/characters/misu/front-erect.svg",
  50424. extra: 1690/1558,
  50425. bottom: 234/1924
  50426. }
  50427. },
  50428. maw: {
  50429. height: math.unit(0.47, "meters"),
  50430. name: "Maw",
  50431. image: {
  50432. source: "./media/characters/misu/maw.svg"
  50433. }
  50434. },
  50435. head: {
  50436. height: math.unit(0.35, "meters"),
  50437. name: "Head",
  50438. image: {
  50439. source: "./media/characters/misu/head.svg"
  50440. }
  50441. },
  50442. rear: {
  50443. height: math.unit(0.47, "meters"),
  50444. name: "Rear",
  50445. image: {
  50446. source: "./media/characters/misu/rear.svg"
  50447. }
  50448. },
  50449. },
  50450. [
  50451. {
  50452. name: "Normal",
  50453. height: math.unit(1.75, "meters")
  50454. },
  50455. {
  50456. name: "Not good for the people",
  50457. height: math.unit(42, "meters")
  50458. },
  50459. {
  50460. name: "Not good for the neighborhood",
  50461. height: math.unit(135, "meters")
  50462. },
  50463. {
  50464. name: "Bit bigger problem",
  50465. height: math.unit(380, "meters"),
  50466. default: true
  50467. },
  50468. {
  50469. name: "Not good for the city",
  50470. height: math.unit(1.5, "km")
  50471. },
  50472. {
  50473. name: "Not good for the county",
  50474. height: math.unit(5.5, "km")
  50475. },
  50476. {
  50477. name: "Not good for the state",
  50478. height: math.unit(25, "km")
  50479. },
  50480. {
  50481. name: "Not good for the country",
  50482. height: math.unit(125, "km")
  50483. },
  50484. {
  50485. name: "Not good for the continent",
  50486. height: math.unit(2100, "km")
  50487. },
  50488. {
  50489. name: "Not good for the planet",
  50490. height: math.unit(35000, "km")
  50491. },
  50492. {
  50493. name: "Just no",
  50494. height: math.unit(8.5e18, "km")
  50495. },
  50496. ]
  50497. ))
  50498. characterMakers.push(() => makeCharacter(
  50499. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50500. {
  50501. front: {
  50502. height: math.unit(6.5, "feet"),
  50503. name: "Front",
  50504. image: {
  50505. source: "./media/characters/poppy/front.svg",
  50506. extra: 1878/1812,
  50507. bottom: 43/1921
  50508. }
  50509. },
  50510. feet: {
  50511. height: math.unit(1.06, "feet"),
  50512. name: "Feet",
  50513. image: {
  50514. source: "./media/characters/poppy/feet.svg",
  50515. extra: 1083/1083,
  50516. bottom: 87/1170
  50517. }
  50518. },
  50519. },
  50520. [
  50521. {
  50522. name: "Human",
  50523. height: math.unit(6.5, "feet")
  50524. },
  50525. {
  50526. name: "Default",
  50527. height: math.unit(300, "feet"),
  50528. default: true
  50529. },
  50530. {
  50531. name: "Huge",
  50532. height: math.unit(850, "feet")
  50533. },
  50534. {
  50535. name: "Mega",
  50536. height: math.unit(8000, "feet")
  50537. },
  50538. {
  50539. name: "Giga",
  50540. height: math.unit(300, "miles")
  50541. },
  50542. ]
  50543. ))
  50544. characterMakers.push(() => makeCharacter(
  50545. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50546. {
  50547. bipedal: {
  50548. height: math.unit(7, "feet"),
  50549. name: "Bipedal",
  50550. image: {
  50551. source: "./media/characters/zener/bipedal.svg",
  50552. extra: 874/805,
  50553. bottom: 109/983
  50554. }
  50555. },
  50556. quadrupedal: {
  50557. height: math.unit(4.64, "feet"),
  50558. name: "Quadrupedal",
  50559. image: {
  50560. source: "./media/characters/zener/quadrupedal.svg",
  50561. extra: 638/507,
  50562. bottom: 190/828
  50563. }
  50564. },
  50565. cock: {
  50566. height: math.unit(18, "inches"),
  50567. name: "Cock",
  50568. image: {
  50569. source: "./media/characters/zener/cock.svg"
  50570. }
  50571. },
  50572. },
  50573. [
  50574. {
  50575. name: "Normal",
  50576. height: math.unit(7, "feet"),
  50577. default: true
  50578. },
  50579. ]
  50580. ))
  50581. characterMakers.push(() => makeCharacter(
  50582. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50583. {
  50584. nude: {
  50585. height: math.unit(5 + 6/12, "feet"),
  50586. name: "Nude",
  50587. image: {
  50588. source: "./media/characters/charlie-dog/nude.svg",
  50589. extra: 768/734,
  50590. bottom: 26/794
  50591. }
  50592. },
  50593. dressed: {
  50594. height: math.unit(5 + 6/12, "feet"),
  50595. name: "Dressed",
  50596. image: {
  50597. source: "./media/characters/charlie-dog/dressed.svg",
  50598. extra: 768/734,
  50599. bottom: 26/794
  50600. }
  50601. },
  50602. },
  50603. [
  50604. {
  50605. name: "Normal",
  50606. height: math.unit(5 + 6/12, "feet"),
  50607. default: true
  50608. },
  50609. ]
  50610. ))
  50611. characterMakers.push(() => makeCharacter(
  50612. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50613. {
  50614. front: {
  50615. height: math.unit(6 + 4/12, "feet"),
  50616. name: "Front",
  50617. image: {
  50618. source: "./media/characters/ir'istrasz/front.svg",
  50619. extra: 1014/977,
  50620. bottom: 65/1079
  50621. }
  50622. },
  50623. back: {
  50624. height: math.unit(6 + 4/12, "feet"),
  50625. name: "Back",
  50626. image: {
  50627. source: "./media/characters/ir'istrasz/back.svg",
  50628. extra: 1024/992,
  50629. bottom: 34/1058
  50630. }
  50631. },
  50632. },
  50633. [
  50634. {
  50635. name: "Normal",
  50636. height: math.unit(6 + 4/12, "feet"),
  50637. default: true
  50638. },
  50639. ]
  50640. ))
  50641. characterMakers.push(() => makeCharacter(
  50642. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50643. {
  50644. front: {
  50645. height: math.unit(5 + 8/12, "feet"),
  50646. name: "Front",
  50647. image: {
  50648. source: "./media/characters/dee-ditto/front.svg",
  50649. extra: 1874/1785,
  50650. bottom: 68/1942
  50651. }
  50652. },
  50653. back: {
  50654. height: math.unit(5 + 8/12, "feet"),
  50655. name: "Back",
  50656. image: {
  50657. source: "./media/characters/dee-ditto/back.svg",
  50658. extra: 1870/1783,
  50659. bottom: 77/1947
  50660. }
  50661. },
  50662. },
  50663. [
  50664. {
  50665. name: "Normal",
  50666. height: math.unit(5 + 8/12, "feet"),
  50667. default: true
  50668. },
  50669. ]
  50670. ))
  50671. characterMakers.push(() => makeCharacter(
  50672. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50673. {
  50674. front: {
  50675. height: math.unit(7 + 6/12, "feet"),
  50676. name: "Front",
  50677. image: {
  50678. source: "./media/characters/fey/front.svg",
  50679. extra: 995/979,
  50680. bottom: 30/1025
  50681. }
  50682. },
  50683. back: {
  50684. height: math.unit(7 + 6/12, "feet"),
  50685. name: "Back",
  50686. image: {
  50687. source: "./media/characters/fey/back.svg",
  50688. extra: 1079/1008,
  50689. bottom: 5/1084
  50690. }
  50691. },
  50692. dressed: {
  50693. height: math.unit(7 + 6/12, "feet"),
  50694. name: "Dressed",
  50695. image: {
  50696. source: "./media/characters/fey/dressed.svg",
  50697. extra: 995/979,
  50698. bottom: 30/1025
  50699. }
  50700. },
  50701. },
  50702. [
  50703. {
  50704. name: "Normal",
  50705. height: math.unit(7 + 6/12, "feet"),
  50706. default: true
  50707. },
  50708. ]
  50709. ))
  50710. characterMakers.push(() => makeCharacter(
  50711. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50712. {
  50713. standing: {
  50714. height: math.unit(17, "feet"),
  50715. name: "Standing",
  50716. image: {
  50717. source: "./media/characters/aster/standing.svg",
  50718. extra: 1798/1598,
  50719. bottom: 117/1915
  50720. }
  50721. },
  50722. },
  50723. [
  50724. {
  50725. name: "Normal",
  50726. height: math.unit(17, "feet"),
  50727. default: true
  50728. },
  50729. {
  50730. name: "Homewrecker",
  50731. height: math.unit(95, "feet")
  50732. },
  50733. {
  50734. name: "Planet Devourer",
  50735. height: math.unit(1008000, "miles")
  50736. },
  50737. ]
  50738. ))
  50739. characterMakers.push(() => makeCharacter(
  50740. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50741. {
  50742. front: {
  50743. height: math.unit(6 + 5/12, "feet"),
  50744. weight: math.unit(265, "lb"),
  50745. name: "Front",
  50746. image: {
  50747. source: "./media/characters/devon-childs/front.svg",
  50748. extra: 1795/1721,
  50749. bottom: 41/1836
  50750. }
  50751. },
  50752. side: {
  50753. height: math.unit(6 + 5/12, "feet"),
  50754. weight: math.unit(265, "lb"),
  50755. name: "Side",
  50756. image: {
  50757. source: "./media/characters/devon-childs/side.svg",
  50758. extra: 1812/1738,
  50759. bottom: 30/1842
  50760. }
  50761. },
  50762. back: {
  50763. height: math.unit(6 + 5/12, "feet"),
  50764. weight: math.unit(265, "lb"),
  50765. name: "Back",
  50766. image: {
  50767. source: "./media/characters/devon-childs/back.svg",
  50768. extra: 1808/1735,
  50769. bottom: 23/1831
  50770. }
  50771. },
  50772. hand: {
  50773. height: math.unit(1.464, "feet"),
  50774. name: "Hand",
  50775. image: {
  50776. source: "./media/characters/devon-childs/hand.svg"
  50777. }
  50778. },
  50779. foot: {
  50780. height: math.unit(1.6, "feet"),
  50781. name: "Foot",
  50782. image: {
  50783. source: "./media/characters/devon-childs/foot.svg"
  50784. }
  50785. },
  50786. },
  50787. [
  50788. {
  50789. name: "Micro",
  50790. height: math.unit(7, "cm")
  50791. },
  50792. {
  50793. name: "Normal",
  50794. height: math.unit(6 + 5/12, "feet"),
  50795. default: true
  50796. },
  50797. {
  50798. name: "Macro",
  50799. height: math.unit(154, "feet")
  50800. },
  50801. ]
  50802. ))
  50803. characterMakers.push(() => makeCharacter(
  50804. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50805. {
  50806. front: {
  50807. height: math.unit(6, "feet"),
  50808. weight: math.unit(180, "lb"),
  50809. name: "Front",
  50810. image: {
  50811. source: "./media/characters/lydemox-vir/front.svg",
  50812. extra: 1632/1435,
  50813. bottom: 58/1690
  50814. }
  50815. },
  50816. frontSFW: {
  50817. height: math.unit(6, "feet"),
  50818. weight: math.unit(180, "lb"),
  50819. name: "Front (SFW)",
  50820. image: {
  50821. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50822. extra: 1632/1435,
  50823. bottom: 58/1690
  50824. }
  50825. },
  50826. back: {
  50827. height: math.unit(6, "feet"),
  50828. weight: math.unit(180, "lb"),
  50829. name: "Back",
  50830. image: {
  50831. source: "./media/characters/lydemox-vir/back.svg",
  50832. extra: 1593/1408,
  50833. bottom: 31/1624
  50834. }
  50835. },
  50836. paw: {
  50837. height: math.unit(1.85, "feet"),
  50838. name: "Paw",
  50839. image: {
  50840. source: "./media/characters/lydemox-vir/paw.svg"
  50841. }
  50842. },
  50843. dick: {
  50844. height: math.unit(1.8, "feet"),
  50845. name: "Dick",
  50846. image: {
  50847. source: "./media/characters/lydemox-vir/dick.svg"
  50848. }
  50849. },
  50850. },
  50851. [
  50852. {
  50853. name: "Macro",
  50854. height: math.unit(100, "feet"),
  50855. default: true
  50856. },
  50857. {
  50858. name: "Teramacro",
  50859. height: math.unit(1, "earth")
  50860. },
  50861. {
  50862. name: "Planetary",
  50863. height: math.unit(20, "earths")
  50864. },
  50865. ]
  50866. ))
  50867. characterMakers.push(() => makeCharacter(
  50868. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50869. {
  50870. front: {
  50871. height: math.unit(15 + 8/12, "feet"),
  50872. weight: math.unit(1237, "kg"),
  50873. name: "Front",
  50874. image: {
  50875. source: "./media/characters/mia/front.svg",
  50876. extra: 1573/1446,
  50877. bottom: 58/1631
  50878. }
  50879. },
  50880. },
  50881. [
  50882. {
  50883. name: "Small",
  50884. height: math.unit(9 + 5/12, "feet")
  50885. },
  50886. {
  50887. name: "Normal",
  50888. height: math.unit(15 + 8/12, "feet"),
  50889. default: true
  50890. },
  50891. ]
  50892. ))
  50893. characterMakers.push(() => makeCharacter(
  50894. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50895. {
  50896. front: {
  50897. height: math.unit(10 + 6/12, "feet"),
  50898. weight: math.unit(1.3, "tons"),
  50899. name: "Front",
  50900. image: {
  50901. source: "./media/characters/mr-graves/front.svg",
  50902. extra: 1779/1695,
  50903. bottom: 198/1977
  50904. }
  50905. },
  50906. },
  50907. [
  50908. {
  50909. name: "Normal",
  50910. height: math.unit(10 + 6 /12, "feet"),
  50911. default: true
  50912. },
  50913. ]
  50914. ))
  50915. characterMakers.push(() => makeCharacter(
  50916. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50917. {
  50918. dressedFront: {
  50919. height: math.unit(5 + 8/12, "feet"),
  50920. weight: math.unit(125, "lb"),
  50921. name: "Dressed (Front)",
  50922. image: {
  50923. source: "./media/characters/jess/dressed-front.svg",
  50924. extra: 1176/1152,
  50925. bottom: 42/1218
  50926. }
  50927. },
  50928. dressedSide: {
  50929. height: math.unit(5 + 8/12, "feet"),
  50930. weight: math.unit(125, "lb"),
  50931. name: "Dressed (Side)",
  50932. image: {
  50933. source: "./media/characters/jess/dressed-side.svg",
  50934. extra: 1204/1190,
  50935. bottom: 6/1210
  50936. }
  50937. },
  50938. nudeFront: {
  50939. height: math.unit(5 + 8/12, "feet"),
  50940. weight: math.unit(125, "lb"),
  50941. name: "Nude (Front)",
  50942. image: {
  50943. source: "./media/characters/jess/nude-front.svg",
  50944. extra: 1176/1152,
  50945. bottom: 42/1218
  50946. }
  50947. },
  50948. nudeSide: {
  50949. height: math.unit(5 + 8/12, "feet"),
  50950. weight: math.unit(125, "lb"),
  50951. name: "Nude (Side)",
  50952. image: {
  50953. source: "./media/characters/jess/nude-side.svg",
  50954. extra: 1204/1190,
  50955. bottom: 6/1210
  50956. }
  50957. },
  50958. organsFront: {
  50959. height: math.unit(2.83799342105, "feet"),
  50960. name: "Organs (Front)",
  50961. image: {
  50962. source: "./media/characters/jess/organs-front.svg"
  50963. }
  50964. },
  50965. organsSide: {
  50966. height: math.unit(2.64225290474, "feet"),
  50967. name: "Organs (Side)",
  50968. image: {
  50969. source: "./media/characters/jess/organs-side.svg"
  50970. }
  50971. },
  50972. digestiveTractFront: {
  50973. height: math.unit(2.8106580871, "feet"),
  50974. name: "Digestive Tract (Front)",
  50975. image: {
  50976. source: "./media/characters/jess/digestive-tract-front.svg"
  50977. }
  50978. },
  50979. digestiveTractSide: {
  50980. height: math.unit(2.54365045014, "feet"),
  50981. name: "Digestive Tract (Side)",
  50982. image: {
  50983. source: "./media/characters/jess/digestive-tract-side.svg"
  50984. }
  50985. },
  50986. respiratorySystemFront: {
  50987. height: math.unit(1.11196233456, "feet"),
  50988. name: "Respiratory System (Front)",
  50989. image: {
  50990. source: "./media/characters/jess/respiratory-system-front.svg"
  50991. }
  50992. },
  50993. respiratorySystemSide: {
  50994. height: math.unit(0.89327966297, "feet"),
  50995. name: "Respiratory System (Side)",
  50996. image: {
  50997. source: "./media/characters/jess/respiratory-system-side.svg"
  50998. }
  50999. },
  51000. urinaryTractFront: {
  51001. height: math.unit(1.16126356186, "feet"),
  51002. name: "Urinary Tract (Front)",
  51003. image: {
  51004. source: "./media/characters/jess/urinary-tract-front.svg"
  51005. }
  51006. },
  51007. urinaryTractSide: {
  51008. height: math.unit(1.20910039627, "feet"),
  51009. name: "Urinary Tract (Side)",
  51010. image: {
  51011. source: "./media/characters/jess/urinary-tract-side.svg"
  51012. }
  51013. },
  51014. reproductiveOrgansFront: {
  51015. height: math.unit(0.48422591566, "feet"),
  51016. name: "Reproductive Organs (Front)",
  51017. image: {
  51018. source: "./media/characters/jess/reproductive-organs-front.svg"
  51019. }
  51020. },
  51021. reproductiveOrgansSide: {
  51022. height: math.unit(0.61553314481, "feet"),
  51023. name: "Reproductive Organs (Side)",
  51024. image: {
  51025. source: "./media/characters/jess/reproductive-organs-side.svg"
  51026. }
  51027. },
  51028. breastsFront: {
  51029. height: math.unit(0.47690395121, "feet"),
  51030. name: "Breasts (Front)",
  51031. image: {
  51032. source: "./media/characters/jess/breasts-front.svg"
  51033. }
  51034. },
  51035. breastsSide: {
  51036. height: math.unit(0.30556998307, "feet"),
  51037. name: "Breasts (Side)",
  51038. image: {
  51039. source: "./media/characters/jess/breasts-side.svg"
  51040. }
  51041. },
  51042. heartFront: {
  51043. height: math.unit(0.53011022622, "feet"),
  51044. name: "Heart (Front)",
  51045. image: {
  51046. source: "./media/characters/jess/heart-front.svg"
  51047. }
  51048. },
  51049. heartSide: {
  51050. height: math.unit(0.51790695213, "feet"),
  51051. name: "Heart (Side)",
  51052. image: {
  51053. source: "./media/characters/jess/heart-side.svg"
  51054. }
  51055. },
  51056. earsAndNoseFront: {
  51057. height: math.unit(0.29385483995, "feet"),
  51058. name: "Ears and Nose (Front)",
  51059. image: {
  51060. source: "./media/characters/jess/ears-and-nose-front.svg"
  51061. }
  51062. },
  51063. earsAndNoseSide: {
  51064. height: math.unit(0.18109658741, "feet"),
  51065. name: "Ears and Nose (Side)",
  51066. image: {
  51067. source: "./media/characters/jess/ears-and-nose-side.svg"
  51068. }
  51069. },
  51070. },
  51071. [
  51072. {
  51073. name: "Normal",
  51074. height: math.unit(5 + 8/12, "feet"),
  51075. default: true
  51076. },
  51077. ]
  51078. ))
  51079. characterMakers.push(() => makeCharacter(
  51080. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51081. {
  51082. front: {
  51083. height: math.unit(6, "feet"),
  51084. weight: math.unit(6.64467e-7, "grams"),
  51085. name: "Front",
  51086. image: {
  51087. source: "./media/characters/wimpering/front.svg",
  51088. extra: 597/587,
  51089. bottom: 34/631
  51090. }
  51091. },
  51092. },
  51093. [
  51094. {
  51095. name: "Micro",
  51096. height: math.unit(0.4, "mm"),
  51097. default: true
  51098. },
  51099. ]
  51100. ))
  51101. characterMakers.push(() => makeCharacter(
  51102. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51103. {
  51104. front: {
  51105. height: math.unit(5 + 2/12, "feet"),
  51106. weight: math.unit(110, "lb"),
  51107. name: "Front",
  51108. image: {
  51109. source: "./media/characters/keltre/front.svg",
  51110. extra: 1099/1057,
  51111. bottom: 22/1121
  51112. }
  51113. },
  51114. back: {
  51115. height: math.unit(5 + 2/12, "feet"),
  51116. weight: math.unit(110, "lb"),
  51117. name: "Back",
  51118. image: {
  51119. source: "./media/characters/keltre/back.svg",
  51120. extra: 1095/1053,
  51121. bottom: 17/1112
  51122. }
  51123. },
  51124. dressed: {
  51125. height: math.unit(5 + 2/12, "feet"),
  51126. weight: math.unit(110, "lb"),
  51127. name: "Dressed",
  51128. image: {
  51129. source: "./media/characters/keltre/dressed.svg",
  51130. extra: 1099/1057,
  51131. bottom: 22/1121
  51132. }
  51133. },
  51134. winter: {
  51135. height: math.unit(5 + 2/12, "feet"),
  51136. weight: math.unit(110, "lb"),
  51137. name: "Winter",
  51138. image: {
  51139. source: "./media/characters/keltre/winter.svg",
  51140. extra: 1099/1057,
  51141. bottom: 22/1121
  51142. }
  51143. },
  51144. head: {
  51145. height: math.unit(1.61 * 0.86, "feet"),
  51146. name: "Head",
  51147. image: {
  51148. source: "./media/characters/keltre/head.svg",
  51149. extra: 534/421,
  51150. bottom: 0/534
  51151. }
  51152. },
  51153. hand: {
  51154. height: math.unit(1.3 * 0.86, "feet"),
  51155. name: "Hand",
  51156. image: {
  51157. source: "./media/characters/keltre/hand.svg"
  51158. }
  51159. },
  51160. foot: {
  51161. height: math.unit(1.8 * 0.86, "feet"),
  51162. name: "Foot",
  51163. image: {
  51164. source: "./media/characters/keltre/foot.svg"
  51165. }
  51166. },
  51167. },
  51168. [
  51169. {
  51170. name: "Fine",
  51171. height: math.unit(1, "inch")
  51172. },
  51173. {
  51174. name: "Dimnutive",
  51175. height: math.unit(4, "inches")
  51176. },
  51177. {
  51178. name: "Tiny",
  51179. height: math.unit(1, "foot")
  51180. },
  51181. {
  51182. name: "Small",
  51183. height: math.unit(3, "feet")
  51184. },
  51185. {
  51186. name: "Normal",
  51187. height: math.unit(5 + 2/12, "feet"),
  51188. default: true
  51189. },
  51190. ]
  51191. ))
  51192. characterMakers.push(() => makeCharacter(
  51193. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51194. {
  51195. front: {
  51196. height: math.unit(6 + 2/12, "feet"),
  51197. name: "Front",
  51198. image: {
  51199. source: "./media/characters/nox/front.svg",
  51200. extra: 1917/1830,
  51201. bottom: 74/1991
  51202. }
  51203. },
  51204. back: {
  51205. height: math.unit(6 + 2/12, "feet"),
  51206. name: "Back",
  51207. image: {
  51208. source: "./media/characters/nox/back.svg",
  51209. extra: 1896/1815,
  51210. bottom: 21/1917
  51211. }
  51212. },
  51213. head: {
  51214. height: math.unit(1.1, "feet"),
  51215. name: "Head",
  51216. image: {
  51217. source: "./media/characters/nox/head.svg",
  51218. extra: 874/704,
  51219. bottom: 0/874
  51220. }
  51221. },
  51222. tattoo: {
  51223. height: math.unit(0.729, "feet"),
  51224. name: "Tattoo",
  51225. image: {
  51226. source: "./media/characters/nox/tattoo.svg"
  51227. }
  51228. },
  51229. },
  51230. [
  51231. {
  51232. name: "Normal",
  51233. height: math.unit(6 + 2/12, "feet")
  51234. },
  51235. {
  51236. name: "Gigamacro",
  51237. height: math.unit(2, "earths"),
  51238. default: true
  51239. },
  51240. {
  51241. name: "Cosmic",
  51242. height: math.unit(867, "yottameters")
  51243. },
  51244. ]
  51245. ))
  51246. characterMakers.push(() => makeCharacter(
  51247. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51248. {
  51249. front: {
  51250. height: math.unit(6, "feet"),
  51251. weight: math.unit(150, "lb"),
  51252. name: "Front",
  51253. image: {
  51254. source: "./media/characters/caspian/front.svg",
  51255. extra: 1443/1359,
  51256. bottom: 0/1443
  51257. }
  51258. },
  51259. back: {
  51260. height: math.unit(6, "feet"),
  51261. weight: math.unit(150, "lb"),
  51262. name: "Back",
  51263. image: {
  51264. source: "./media/characters/caspian/back.svg",
  51265. extra: 1379/1309,
  51266. bottom: 0/1379
  51267. }
  51268. },
  51269. head: {
  51270. height: math.unit(0.9, "feet"),
  51271. name: "Head",
  51272. image: {
  51273. source: "./media/characters/caspian/head.svg",
  51274. extra: 692/492,
  51275. bottom: 0/692
  51276. }
  51277. },
  51278. headAlt: {
  51279. height: math.unit(0.95, "feet"),
  51280. name: "Head (Alt)",
  51281. image: {
  51282. source: "./media/characters/caspian/head-alt.svg",
  51283. extra: 668/508,
  51284. bottom: 0/668
  51285. }
  51286. },
  51287. hand: {
  51288. height: math.unit(0.8, "feet"),
  51289. name: "Hand",
  51290. image: {
  51291. source: "./media/characters/caspian/hand.svg"
  51292. }
  51293. },
  51294. paw: {
  51295. height: math.unit(0.95, "feet"),
  51296. name: "Paw",
  51297. image: {
  51298. source: "./media/characters/caspian/paw.svg"
  51299. }
  51300. },
  51301. },
  51302. [
  51303. {
  51304. name: "Normal",
  51305. height: math.unit(162, "feet"),
  51306. default: true
  51307. },
  51308. ]
  51309. ))
  51310. characterMakers.push(() => makeCharacter(
  51311. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51312. {
  51313. front: {
  51314. height: math.unit(6, "feet"),
  51315. name: "Front",
  51316. image: {
  51317. source: "./media/characters/myra-aisling/front.svg",
  51318. extra: 1268/1166,
  51319. bottom: 73/1341
  51320. }
  51321. },
  51322. back: {
  51323. height: math.unit(6, "feet"),
  51324. name: "Back",
  51325. image: {
  51326. source: "./media/characters/myra-aisling/back.svg",
  51327. extra: 1249/1149,
  51328. bottom: 79/1328
  51329. }
  51330. },
  51331. dressed: {
  51332. height: math.unit(6, "feet"),
  51333. name: "Dressed",
  51334. image: {
  51335. source: "./media/characters/myra-aisling/dressed.svg",
  51336. extra: 1290/1189,
  51337. bottom: 47/1337
  51338. }
  51339. },
  51340. hand: {
  51341. height: math.unit(1.1, "feet"),
  51342. name: "Hand",
  51343. image: {
  51344. source: "./media/characters/myra-aisling/hand.svg"
  51345. }
  51346. },
  51347. paw: {
  51348. height: math.unit(1.23, "feet"),
  51349. name: "Paw",
  51350. image: {
  51351. source: "./media/characters/myra-aisling/paw.svg"
  51352. }
  51353. },
  51354. },
  51355. [
  51356. {
  51357. name: "Normal",
  51358. height: math.unit(160, "feet"),
  51359. default: true
  51360. },
  51361. ]
  51362. ))
  51363. characterMakers.push(() => makeCharacter(
  51364. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51365. {
  51366. front: {
  51367. height: math.unit(6, "feet"),
  51368. name: "Front",
  51369. image: {
  51370. source: "./media/characters/tenley-sidero/front.svg",
  51371. extra: 1365/1276,
  51372. bottom: 47/1412
  51373. }
  51374. },
  51375. back: {
  51376. height: math.unit(6, "feet"),
  51377. name: "Back",
  51378. image: {
  51379. source: "./media/characters/tenley-sidero/back.svg",
  51380. extra: 1383/1283,
  51381. bottom: 35/1418
  51382. }
  51383. },
  51384. dressed: {
  51385. height: math.unit(6, "feet"),
  51386. name: "Dressed",
  51387. image: {
  51388. source: "./media/characters/tenley-sidero/dressed.svg",
  51389. extra: 1364/1275,
  51390. bottom: 42/1406
  51391. }
  51392. },
  51393. head: {
  51394. height: math.unit(1.47, "feet"),
  51395. name: "Head",
  51396. image: {
  51397. source: "./media/characters/tenley-sidero/head.svg",
  51398. extra: 610/490,
  51399. bottom: 0/610
  51400. }
  51401. },
  51402. },
  51403. [
  51404. {
  51405. name: "Normal",
  51406. height: math.unit(154, "feet"),
  51407. default: true
  51408. },
  51409. ]
  51410. ))
  51411. characterMakers.push(() => makeCharacter(
  51412. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51413. {
  51414. front: {
  51415. height: math.unit(5, "inches"),
  51416. name: "Front",
  51417. image: {
  51418. source: "./media/characters/mallory/front.svg",
  51419. extra: 1919/1678,
  51420. bottom: 29/1948
  51421. }
  51422. },
  51423. hand: {
  51424. height: math.unit(0.73, "inches"),
  51425. name: "Hand",
  51426. image: {
  51427. source: "./media/characters/mallory/hand.svg"
  51428. }
  51429. },
  51430. paw: {
  51431. height: math.unit(0.68, "inches"),
  51432. name: "Paw",
  51433. image: {
  51434. source: "./media/characters/mallory/paw.svg"
  51435. }
  51436. },
  51437. },
  51438. [
  51439. {
  51440. name: "Small",
  51441. height: math.unit(5, "inches"),
  51442. default: true
  51443. },
  51444. ]
  51445. ))
  51446. characterMakers.push(() => makeCharacter(
  51447. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51448. {
  51449. naked: {
  51450. height: math.unit(6, "feet"),
  51451. name: "Naked",
  51452. image: {
  51453. source: "./media/characters/mab/naked.svg",
  51454. extra: 1855/1757,
  51455. bottom: 208/2063
  51456. }
  51457. },
  51458. outside: {
  51459. height: math.unit(6, "feet"),
  51460. name: "Outside",
  51461. image: {
  51462. source: "./media/characters/mab/outside.svg",
  51463. extra: 1855/1757,
  51464. bottom: 208/2063
  51465. }
  51466. },
  51467. party: {
  51468. height: math.unit(6, "feet"),
  51469. name: "Party",
  51470. image: {
  51471. source: "./media/characters/mab/party.svg",
  51472. extra: 1855/1757,
  51473. bottom: 208/2063
  51474. }
  51475. },
  51476. },
  51477. [
  51478. {
  51479. name: "Normal",
  51480. height: math.unit(165, "feet"),
  51481. default: true
  51482. },
  51483. ]
  51484. ))
  51485. characterMakers.push(() => makeCharacter(
  51486. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51487. {
  51488. feral: {
  51489. height: math.unit(12, "feet"),
  51490. weight: math.unit(20000, "lb"),
  51491. name: "Side",
  51492. image: {
  51493. source: "./media/characters/winter/feral.svg",
  51494. extra: 1286/943,
  51495. bottom: 112/1398
  51496. },
  51497. form: "feral",
  51498. default: true
  51499. },
  51500. feralNsfw: {
  51501. height: math.unit(12, "feet"),
  51502. weight: math.unit(20000, "lb"),
  51503. name: "Side (NSFW)",
  51504. image: {
  51505. source: "./media/characters/winter/feral-nsfw.svg",
  51506. extra: 1286/943,
  51507. bottom: 112/1398
  51508. },
  51509. form: "feral"
  51510. },
  51511. dick: {
  51512. height: math.unit(3.79, "feet"),
  51513. name: "Dick",
  51514. image: {
  51515. source: "./media/characters/winter/dick.svg"
  51516. },
  51517. form: "feral"
  51518. },
  51519. anthro: {
  51520. height: math.unit(12, "feet"),
  51521. weight: math.unit(10, "tons"),
  51522. name: "Anthro",
  51523. image: {
  51524. source: "./media/characters/winter/anthro.svg",
  51525. extra: 1701/1553,
  51526. bottom: 64/1765
  51527. },
  51528. form: "anthro",
  51529. default: true
  51530. },
  51531. },
  51532. [
  51533. {
  51534. name: "Big",
  51535. height: math.unit(12, "feet"),
  51536. default: true,
  51537. form: "feral"
  51538. },
  51539. {
  51540. name: "Big",
  51541. height: math.unit(12, "feet"),
  51542. default: true,
  51543. form: "anthro"
  51544. },
  51545. ],
  51546. {
  51547. "feral": {
  51548. name: "Feral",
  51549. default: true
  51550. },
  51551. "anthro": {
  51552. name: "Anthro"
  51553. }
  51554. }
  51555. ))
  51556. characterMakers.push(() => makeCharacter(
  51557. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51558. {
  51559. front: {
  51560. height: math.unit(4.1, "inches"),
  51561. name: "Front",
  51562. image: {
  51563. source: "./media/characters/alto/front.svg",
  51564. extra: 736/627,
  51565. bottom: 90/826
  51566. }
  51567. },
  51568. },
  51569. [
  51570. {
  51571. name: "Normal",
  51572. height: math.unit(4.1, "inches"),
  51573. default: true
  51574. },
  51575. ]
  51576. ))
  51577. characterMakers.push(() => makeCharacter(
  51578. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51579. {
  51580. sitting: {
  51581. height: math.unit(3, "feet"),
  51582. name: "Sitting",
  51583. image: {
  51584. source: "./media/characters/ratstrid-v/sitting.svg",
  51585. extra: 355/310,
  51586. bottom: 136/491
  51587. }
  51588. },
  51589. },
  51590. [
  51591. {
  51592. name: "Normal",
  51593. height: math.unit(3, "feet"),
  51594. default: true
  51595. },
  51596. ]
  51597. ))
  51598. characterMakers.push(() => makeCharacter(
  51599. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51600. {
  51601. back: {
  51602. height: math.unit(6, "feet"),
  51603. weight: math.unit(450, "lb"),
  51604. name: "Back",
  51605. image: {
  51606. source: "./media/characters/siz/back.svg",
  51607. extra: 1449/1274,
  51608. bottom: 13/1462
  51609. }
  51610. },
  51611. },
  51612. [
  51613. {
  51614. name: "Smallest",
  51615. height: math.unit(18 + 3/12, "feet")
  51616. },
  51617. {
  51618. name: "Modest",
  51619. height: math.unit(56 + 8/12, "feet"),
  51620. default: true
  51621. },
  51622. {
  51623. name: "Largest",
  51624. height: math.unit(3590, "feet")
  51625. },
  51626. ]
  51627. ))
  51628. characterMakers.push(() => makeCharacter(
  51629. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51630. {
  51631. front: {
  51632. height: math.unit(5 + 9/12, "feet"),
  51633. weight: math.unit(150, "lb"),
  51634. name: "Front",
  51635. image: {
  51636. source: "./media/characters/ven/front.svg",
  51637. extra: 1372/1320,
  51638. bottom: 73/1445
  51639. }
  51640. },
  51641. side: {
  51642. height: math.unit(5 + 9/12, "feet"),
  51643. weight: math.unit(1150, "lb"),
  51644. name: "Side",
  51645. image: {
  51646. source: "./media/characters/ven/side.svg",
  51647. extra: 1119/1070,
  51648. bottom: 42/1161
  51649. },
  51650. default: true
  51651. },
  51652. },
  51653. [
  51654. {
  51655. name: "Normal",
  51656. height: math.unit(5 + 9/12, "feet"),
  51657. default: true
  51658. },
  51659. ]
  51660. ))
  51661. characterMakers.push(() => makeCharacter(
  51662. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51663. {
  51664. front: {
  51665. height: math.unit(12, "feet"),
  51666. weight: math.unit(1000, "kg"),
  51667. name: "Front",
  51668. image: {
  51669. source: "./media/characters/maple/front.svg",
  51670. extra: 1193/1081,
  51671. bottom: 22/1215
  51672. }
  51673. },
  51674. },
  51675. [
  51676. {
  51677. name: "Compressed",
  51678. height: math.unit(7, "feet")
  51679. },
  51680. {
  51681. name: "Normal",
  51682. height: math.unit(12, "feet"),
  51683. default: true
  51684. },
  51685. ]
  51686. ))
  51687. characterMakers.push(() => makeCharacter(
  51688. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51689. {
  51690. front: {
  51691. height: math.unit(9, "feet"),
  51692. weight: math.unit(1500, "lb"),
  51693. name: "Front",
  51694. image: {
  51695. source: "./media/characters/nora/front.svg",
  51696. extra: 1348/1286,
  51697. bottom: 218/1566
  51698. }
  51699. },
  51700. erect: {
  51701. height: math.unit(9, "feet"),
  51702. weight: math.unit(11500, "lb"),
  51703. name: "Erect",
  51704. image: {
  51705. source: "./media/characters/nora/erect.svg",
  51706. extra: 1488/1433,
  51707. bottom: 133/1621
  51708. }
  51709. },
  51710. },
  51711. [
  51712. {
  51713. name: "Normal",
  51714. height: math.unit(9, "feet"),
  51715. default: true
  51716. },
  51717. ]
  51718. ))
  51719. characterMakers.push(() => makeCharacter(
  51720. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51721. {
  51722. front: {
  51723. height: math.unit(25, "feet"),
  51724. weight: math.unit(27500, "lb"),
  51725. name: "Front",
  51726. image: {
  51727. source: "./media/characters/north-caudin/front.svg",
  51728. extra: 1184/1082,
  51729. bottom: 23/1207
  51730. }
  51731. },
  51732. },
  51733. [
  51734. {
  51735. name: "Compressed",
  51736. height: math.unit(10, "feet")
  51737. },
  51738. {
  51739. name: "Normal",
  51740. height: math.unit(25, "feet"),
  51741. default: true
  51742. },
  51743. ]
  51744. ))
  51745. characterMakers.push(() => makeCharacter(
  51746. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51747. {
  51748. front: {
  51749. height: math.unit(9, "feet"),
  51750. weight: math.unit(1250, "lb"),
  51751. name: "Front",
  51752. image: {
  51753. source: "./media/characters/merrian/front.svg",
  51754. extra: 2393/2304,
  51755. bottom: 40/2433
  51756. }
  51757. },
  51758. },
  51759. [
  51760. {
  51761. name: "Normal",
  51762. height: math.unit(9, "feet"),
  51763. default: true
  51764. },
  51765. ]
  51766. ))
  51767. characterMakers.push(() => makeCharacter(
  51768. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51769. {
  51770. front: {
  51771. height: math.unit(9, "feet"),
  51772. weight: math.unit(1000, "lb"),
  51773. name: "Front",
  51774. image: {
  51775. source: "./media/characters/hazel/front.svg",
  51776. extra: 2351/2298,
  51777. bottom: 38/2389
  51778. }
  51779. },
  51780. },
  51781. [
  51782. {
  51783. name: "Normal",
  51784. height: math.unit(9, "feet"),
  51785. default: true
  51786. },
  51787. ]
  51788. ))
  51789. characterMakers.push(() => makeCharacter(
  51790. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51791. {
  51792. front: {
  51793. height: math.unit(13, "feet"),
  51794. weight: math.unit(3200, "lb"),
  51795. name: "Front",
  51796. image: {
  51797. source: "./media/characters/emma/front.svg",
  51798. extra: 2263/2029,
  51799. bottom: 68/2331
  51800. }
  51801. },
  51802. },
  51803. [
  51804. {
  51805. name: "Normal",
  51806. height: math.unit(13, "feet"),
  51807. default: true
  51808. },
  51809. ]
  51810. ))
  51811. characterMakers.push(() => makeCharacter(
  51812. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51813. {
  51814. front: {
  51815. height: math.unit(11 + 9/12, "feet"),
  51816. weight: math.unit(2500, "lb"),
  51817. name: "Front",
  51818. image: {
  51819. source: "./media/characters/ilumina/front.svg",
  51820. extra: 2248/2209,
  51821. bottom: 164/2412
  51822. }
  51823. },
  51824. },
  51825. [
  51826. {
  51827. name: "Normal",
  51828. height: math.unit(11 + 9/12, "feet"),
  51829. default: true
  51830. },
  51831. ]
  51832. ))
  51833. characterMakers.push(() => makeCharacter(
  51834. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51835. {
  51836. front: {
  51837. height: math.unit(8 + 10/12, "feet"),
  51838. weight: math.unit(1350, "lb"),
  51839. name: "Front",
  51840. image: {
  51841. source: "./media/characters/moonshine/front.svg",
  51842. extra: 2395/2288,
  51843. bottom: 40/2435
  51844. }
  51845. },
  51846. },
  51847. [
  51848. {
  51849. name: "Normal",
  51850. height: math.unit(8 + 10/12, "feet"),
  51851. default: true
  51852. },
  51853. ]
  51854. ))
  51855. characterMakers.push(() => makeCharacter(
  51856. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51857. {
  51858. front: {
  51859. height: math.unit(14, "feet"),
  51860. weight: math.unit(3400, "lb"),
  51861. name: "Front",
  51862. image: {
  51863. source: "./media/characters/aletia/front.svg",
  51864. extra: 1185/1052,
  51865. bottom: 21/1206
  51866. }
  51867. },
  51868. },
  51869. [
  51870. {
  51871. name: "Compressed",
  51872. height: math.unit(8, "feet")
  51873. },
  51874. {
  51875. name: "Normal",
  51876. height: math.unit(14, "feet"),
  51877. default: true
  51878. },
  51879. ]
  51880. ))
  51881. characterMakers.push(() => makeCharacter(
  51882. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51883. {
  51884. front: {
  51885. height: math.unit(17, "feet"),
  51886. weight: math.unit(6500, "lb"),
  51887. name: "Front",
  51888. image: {
  51889. source: "./media/characters/deidra/front.svg",
  51890. extra: 1201/1081,
  51891. bottom: 16/1217
  51892. }
  51893. },
  51894. },
  51895. [
  51896. {
  51897. name: "Compressed",
  51898. height: math.unit(9 + 6/12, "feet")
  51899. },
  51900. {
  51901. name: "Normal",
  51902. height: math.unit(17, "feet"),
  51903. default: true
  51904. },
  51905. ]
  51906. ))
  51907. characterMakers.push(() => makeCharacter(
  51908. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51909. {
  51910. front: {
  51911. height: math.unit(7 + 4/12, "feet"),
  51912. weight: math.unit(280, "lb"),
  51913. name: "Front",
  51914. image: {
  51915. source: "./media/characters/freki-yrmori/front.svg",
  51916. extra: 1286/1182,
  51917. bottom: 29/1315
  51918. }
  51919. },
  51920. maw: {
  51921. height: math.unit(0.9, "feet"),
  51922. name: "Maw",
  51923. image: {
  51924. source: "./media/characters/freki-yrmori/maw.svg"
  51925. }
  51926. },
  51927. },
  51928. [
  51929. {
  51930. name: "Normal",
  51931. height: math.unit(7 + 4/12, "feet"),
  51932. default: true
  51933. },
  51934. {
  51935. name: "Macro",
  51936. height: math.unit(38.5, "meters")
  51937. },
  51938. ]
  51939. ))
  51940. characterMakers.push(() => makeCharacter(
  51941. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51942. {
  51943. side: {
  51944. height: math.unit(47.2, "meters"),
  51945. weight: math.unit(10000, "tons"),
  51946. name: "Side",
  51947. image: {
  51948. source: "./media/characters/aetherios/side.svg",
  51949. extra: 2363/642,
  51950. bottom: 221/2584
  51951. }
  51952. },
  51953. top: {
  51954. height: math.unit(240, "meters"),
  51955. weight: math.unit(10000, "tons"),
  51956. name: "Top",
  51957. image: {
  51958. source: "./media/characters/aetherios/top.svg"
  51959. }
  51960. },
  51961. bottom: {
  51962. height: math.unit(240, "meters"),
  51963. weight: math.unit(10000, "tons"),
  51964. name: "Bottom",
  51965. image: {
  51966. source: "./media/characters/aetherios/bottom.svg"
  51967. }
  51968. },
  51969. head: {
  51970. height: math.unit(38.6, "meters"),
  51971. name: "Head",
  51972. image: {
  51973. source: "./media/characters/aetherios/head.svg",
  51974. extra: 1335/1112,
  51975. bottom: 0/1335
  51976. }
  51977. },
  51978. front: {
  51979. height: math.unit(29, "meters"),
  51980. name: "Front",
  51981. image: {
  51982. source: "./media/characters/aetherios/front.svg",
  51983. extra: 1266/953,
  51984. bottom: 158/1424
  51985. }
  51986. },
  51987. maw: {
  51988. height: math.unit(16.37, "meters"),
  51989. name: "Maw",
  51990. image: {
  51991. source: "./media/characters/aetherios/maw.svg",
  51992. extra: 748/637,
  51993. bottom: 0/748
  51994. },
  51995. extraAttributes: {
  51996. preyCapacity: {
  51997. name: "Capacity",
  51998. power: 3,
  51999. type: "volume",
  52000. base: math.unit(1000, "people")
  52001. },
  52002. tongueSize: {
  52003. name: "Tongue Size",
  52004. power: 2,
  52005. type: "area",
  52006. base: math.unit(21, "m^2")
  52007. }
  52008. }
  52009. },
  52010. forepaw: {
  52011. height: math.unit(18, "meters"),
  52012. name: "Forepaw",
  52013. image: {
  52014. source: "./media/characters/aetherios/forepaw.svg"
  52015. }
  52016. },
  52017. hindpaw: {
  52018. height: math.unit(23, "meters"),
  52019. name: "Hindpaw",
  52020. image: {
  52021. source: "./media/characters/aetherios/hindpaw.svg"
  52022. }
  52023. },
  52024. genitals: {
  52025. height: math.unit(42, "meters"),
  52026. name: "Genitals",
  52027. image: {
  52028. source: "./media/characters/aetherios/genitals.svg"
  52029. }
  52030. },
  52031. },
  52032. [
  52033. {
  52034. name: "Normal",
  52035. height: math.unit(47.2, "meters"),
  52036. default: true
  52037. },
  52038. {
  52039. name: "Macro",
  52040. height: math.unit(160, "meters")
  52041. },
  52042. {
  52043. name: "Mega",
  52044. height: math.unit(1.87, "km")
  52045. },
  52046. {
  52047. name: "Giga",
  52048. height: math.unit(40000, "km")
  52049. },
  52050. {
  52051. name: "Stellar",
  52052. height: math.unit(158000000, "km")
  52053. },
  52054. {
  52055. name: "Cosmic",
  52056. height: math.unit(9.46e12, "km")
  52057. },
  52058. ]
  52059. ))
  52060. characterMakers.push(() => makeCharacter(
  52061. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52062. {
  52063. front: {
  52064. height: math.unit(5 + 4/12, "feet"),
  52065. weight: math.unit(80, "lb"),
  52066. name: "Front",
  52067. image: {
  52068. source: "./media/characters/mizu-gieeg/front.svg",
  52069. extra: 850/709,
  52070. bottom: 52/902
  52071. }
  52072. },
  52073. back: {
  52074. height: math.unit(5 + 4/12, "feet"),
  52075. weight: math.unit(80, "lb"),
  52076. name: "Back",
  52077. image: {
  52078. source: "./media/characters/mizu-gieeg/back.svg",
  52079. extra: 882/745,
  52080. bottom: 25/907
  52081. }
  52082. },
  52083. },
  52084. [
  52085. {
  52086. name: "Normal",
  52087. height: math.unit(5 + 4/12, "feet"),
  52088. default: true
  52089. },
  52090. ]
  52091. ))
  52092. characterMakers.push(() => makeCharacter(
  52093. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52094. {
  52095. front: {
  52096. height: math.unit(6, "feet"),
  52097. name: "Front",
  52098. image: {
  52099. source: "./media/characters/roselle-st-papier/front.svg",
  52100. extra: 1430/1280,
  52101. bottom: 37/1467
  52102. }
  52103. },
  52104. back: {
  52105. height: math.unit(6, "feet"),
  52106. name: "Back",
  52107. image: {
  52108. source: "./media/characters/roselle-st-papier/back.svg",
  52109. extra: 1491/1296,
  52110. bottom: 23/1514
  52111. }
  52112. },
  52113. ear: {
  52114. height: math.unit(1.26, "feet"),
  52115. name: "Ear",
  52116. image: {
  52117. source: "./media/characters/roselle-st-papier/ear.svg"
  52118. }
  52119. },
  52120. },
  52121. [
  52122. {
  52123. name: "Normal",
  52124. height: math.unit(150, "feet"),
  52125. default: true
  52126. },
  52127. ]
  52128. ))
  52129. characterMakers.push(() => makeCharacter(
  52130. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52131. {
  52132. front: {
  52133. height: math.unit(1, "inches"),
  52134. name: "Front",
  52135. image: {
  52136. source: "./media/characters/valargent/front.svg",
  52137. extra: 1825/1694,
  52138. bottom: 62/1887
  52139. }
  52140. },
  52141. back: {
  52142. height: math.unit(1, "inches"),
  52143. name: "Back",
  52144. image: {
  52145. source: "./media/characters/valargent/back.svg",
  52146. extra: 1775/1682,
  52147. bottom: 88/1863
  52148. }
  52149. },
  52150. },
  52151. [
  52152. {
  52153. name: "Micro",
  52154. height: math.unit(1, "inch"),
  52155. default: true
  52156. },
  52157. ]
  52158. ))
  52159. characterMakers.push(() => makeCharacter(
  52160. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52161. {
  52162. front: {
  52163. height: math.unit(3.4, "meters"),
  52164. name: "Front",
  52165. image: {
  52166. source: "./media/characters/zarina/front.svg",
  52167. extra: 1733/1425,
  52168. bottom: 93/1826
  52169. }
  52170. },
  52171. squatting: {
  52172. height: math.unit(2.14, "meters"),
  52173. name: "Squatting",
  52174. image: {
  52175. source: "./media/characters/zarina/squatting.svg",
  52176. extra: 1073/788,
  52177. bottom: 63/1136
  52178. }
  52179. },
  52180. back: {
  52181. height: math.unit(2.14, "meters"),
  52182. name: "Back",
  52183. image: {
  52184. source: "./media/characters/zarina/back.svg",
  52185. extra: 1128/885,
  52186. bottom: 0/1128
  52187. }
  52188. },
  52189. },
  52190. [
  52191. {
  52192. name: "Normal",
  52193. height: math.unit(3.4, "meters"),
  52194. default: true
  52195. },
  52196. {
  52197. name: "Big",
  52198. height: math.unit(5, "meters")
  52199. },
  52200. {
  52201. name: "Macro",
  52202. height: math.unit(110, "meters")
  52203. },
  52204. ]
  52205. ))
  52206. characterMakers.push(() => makeCharacter(
  52207. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52208. {
  52209. front: {
  52210. height: math.unit(7, "feet"),
  52211. name: "Front",
  52212. image: {
  52213. source: "./media/characters/ventus-astro-fox/front.svg",
  52214. extra: 1792/1623,
  52215. bottom: 28/1820
  52216. }
  52217. },
  52218. back: {
  52219. height: math.unit(7, "feet"),
  52220. name: "Back",
  52221. image: {
  52222. source: "./media/characters/ventus-astro-fox/back.svg",
  52223. extra: 1789/1620,
  52224. bottom: 31/1820
  52225. }
  52226. },
  52227. outfit: {
  52228. height: math.unit(7, "feet"),
  52229. name: "Outfit",
  52230. image: {
  52231. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52232. extra: 1054/925,
  52233. bottom: 15/1069
  52234. }
  52235. },
  52236. head: {
  52237. height: math.unit(1.12, "feet"),
  52238. name: "Head",
  52239. image: {
  52240. source: "./media/characters/ventus-astro-fox/head.svg",
  52241. extra: 866/504,
  52242. bottom: 0/866
  52243. }
  52244. },
  52245. hand: {
  52246. height: math.unit(1, "feet"),
  52247. name: "Hand",
  52248. image: {
  52249. source: "./media/characters/ventus-astro-fox/hand.svg"
  52250. }
  52251. },
  52252. paw: {
  52253. height: math.unit(1.5, "feet"),
  52254. name: "Paw",
  52255. image: {
  52256. source: "./media/characters/ventus-astro-fox/paw.svg"
  52257. }
  52258. },
  52259. },
  52260. [
  52261. {
  52262. name: "Normal",
  52263. height: math.unit(7, "feet"),
  52264. default: true
  52265. },
  52266. {
  52267. name: "Macro",
  52268. height: math.unit(200, "feet")
  52269. },
  52270. {
  52271. name: "Cosmic",
  52272. height: math.unit(3, "universes")
  52273. },
  52274. ]
  52275. ))
  52276. characterMakers.push(() => makeCharacter(
  52277. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52278. {
  52279. front: {
  52280. height: math.unit(3, "meters"),
  52281. weight: math.unit(7000, "lb"),
  52282. name: "Front",
  52283. image: {
  52284. source: "./media/characters/core-t/front.svg",
  52285. extra: 5729/4941,
  52286. bottom: 1129/6858
  52287. }
  52288. },
  52289. },
  52290. [
  52291. {
  52292. name: "Big",
  52293. height: math.unit(3, "meters"),
  52294. default: true
  52295. },
  52296. ]
  52297. ))
  52298. characterMakers.push(() => makeCharacter(
  52299. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52300. {
  52301. normal: {
  52302. height: math.unit(6 + 6/12, "feet"),
  52303. weight: math.unit(275, "lb"),
  52304. name: "Front",
  52305. image: {
  52306. source: "./media/characters/cadbunny/normal.svg",
  52307. extra: 1129/947,
  52308. bottom: 93/1222
  52309. },
  52310. default: true,
  52311. form: "normal"
  52312. },
  52313. gigantamax: {
  52314. height: math.unit(26, "feet"),
  52315. weight: math.unit(16000, "lb"),
  52316. name: "Front",
  52317. image: {
  52318. source: "./media/characters/cadbunny/gigantamax.svg",
  52319. extra: 1133/944,
  52320. bottom: 90/1223
  52321. },
  52322. default: true,
  52323. form: "gigantamax"
  52324. },
  52325. },
  52326. [
  52327. {
  52328. name: "Normal",
  52329. height: math.unit(6 + 6/12, "feet"),
  52330. default: true,
  52331. form: "normal"
  52332. },
  52333. {
  52334. name: "Small",
  52335. height: math.unit(26, "feet"),
  52336. default: true,
  52337. form: "gigantamax"
  52338. },
  52339. {
  52340. name: "Large",
  52341. height: math.unit(78, "feet"),
  52342. form: "gigantamax"
  52343. },
  52344. ],
  52345. {
  52346. "normal": {
  52347. name: "Normal",
  52348. default: true
  52349. },
  52350. "gigantamax": {
  52351. name: "Gigantamax"
  52352. }
  52353. }
  52354. ))
  52355. characterMakers.push(() => makeCharacter(
  52356. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52357. {
  52358. anthroFront: {
  52359. height: math.unit(8, "feet"),
  52360. weight: math.unit(300, "lb"),
  52361. name: "Front",
  52362. image: {
  52363. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52364. extra: 1272/1176,
  52365. bottom: 53/1325
  52366. },
  52367. form: "anthro",
  52368. default: true
  52369. },
  52370. feralSide: {
  52371. height: math.unit(4, "feet"),
  52372. weight: math.unit(250, "lb"),
  52373. name: "Side",
  52374. image: {
  52375. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52376. extra: 731/621,
  52377. bottom: 0/731
  52378. },
  52379. form: "feral",
  52380. default: true
  52381. },
  52382. },
  52383. [
  52384. {
  52385. name: "Regular",
  52386. height: math.unit(8, "feet"),
  52387. form: "anthro"
  52388. },
  52389. {
  52390. name: "Macro",
  52391. height: math.unit(250, "feet"),
  52392. form: "anthro",
  52393. default: true
  52394. },
  52395. {
  52396. name: "Regular",
  52397. height: math.unit(4, "feet"),
  52398. form: "feral"
  52399. },
  52400. {
  52401. name: "Macro",
  52402. height: math.unit(125, "feet"),
  52403. form: "feral",
  52404. default: true
  52405. },
  52406. ],
  52407. {
  52408. "anthro": {
  52409. name: "Anthro",
  52410. default: true
  52411. },
  52412. "feral": {
  52413. name: "Feral",
  52414. },
  52415. }
  52416. ))
  52417. characterMakers.push(() => makeCharacter(
  52418. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52419. {
  52420. front: {
  52421. height: math.unit(11 + 10/12, "feet"),
  52422. weight: math.unit(1587, "kg"),
  52423. name: "Front",
  52424. image: {
  52425. source: "./media/characters/maple-javira-dragon/front.svg",
  52426. extra: 1136/744,
  52427. bottom: 73/1209
  52428. }
  52429. },
  52430. side: {
  52431. height: math.unit(11 + 10/12, "feet"),
  52432. weight: math.unit(1587, "kg"),
  52433. name: "Side",
  52434. image: {
  52435. source: "./media/characters/maple-javira-dragon/side.svg",
  52436. extra: 712/505,
  52437. bottom: 17/729
  52438. }
  52439. },
  52440. head: {
  52441. height: math.unit(8.05, "feet"),
  52442. name: "Head",
  52443. image: {
  52444. source: "./media/characters/maple-javira-dragon/head.svg",
  52445. extra: 1420/1344,
  52446. bottom: 0/1420
  52447. }
  52448. },
  52449. },
  52450. [
  52451. {
  52452. name: "Normal",
  52453. height: math.unit(11 + 10/12, "feet"),
  52454. default: true
  52455. },
  52456. ]
  52457. ))
  52458. characterMakers.push(() => makeCharacter(
  52459. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52460. {
  52461. front: {
  52462. height: math.unit(117, "cm"),
  52463. weight: math.unit(50, "kg"),
  52464. name: "Front",
  52465. image: {
  52466. source: "./media/characters/sonia-wyverntail/front.svg",
  52467. extra: 708/592,
  52468. bottom: 25/733
  52469. }
  52470. },
  52471. },
  52472. [
  52473. {
  52474. name: "Normal",
  52475. height: math.unit(117, "cm"),
  52476. default: true
  52477. },
  52478. ]
  52479. ))
  52480. characterMakers.push(() => makeCharacter(
  52481. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52482. {
  52483. front: {
  52484. height: math.unit(6 + 5/12, "feet"),
  52485. name: "Front",
  52486. image: {
  52487. source: "./media/characters/micah/front.svg",
  52488. extra: 1758/1546,
  52489. bottom: 214/1972
  52490. }
  52491. },
  52492. },
  52493. [
  52494. {
  52495. name: "Normal",
  52496. height: math.unit(6 + 5/12, "feet"),
  52497. default: true
  52498. },
  52499. ]
  52500. ))
  52501. characterMakers.push(() => makeCharacter(
  52502. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52503. {
  52504. front: {
  52505. height: math.unit(1.75, "meters"),
  52506. weight: math.unit(100, "kg"),
  52507. name: "Front",
  52508. image: {
  52509. source: "./media/characters/zarya/front.svg",
  52510. extra: 741/735,
  52511. bottom: 44/785
  52512. },
  52513. extraAttributes: {
  52514. "tailLength": {
  52515. name: "Tail Length",
  52516. power: 1,
  52517. type: "length",
  52518. base: math.unit(180, "cm")
  52519. },
  52520. "pawLength": {
  52521. name: "Paw Length",
  52522. power: 1,
  52523. type: "length",
  52524. base: math.unit(31, "cm")
  52525. },
  52526. }
  52527. },
  52528. side: {
  52529. height: math.unit(1.75, "meters"),
  52530. weight: math.unit(100, "kg"),
  52531. name: "Side",
  52532. image: {
  52533. source: "./media/characters/zarya/side.svg",
  52534. extra: 776/770,
  52535. bottom: 17/793
  52536. },
  52537. extraAttributes: {
  52538. "tailLength": {
  52539. name: "Tail Length",
  52540. power: 1,
  52541. type: "length",
  52542. base: math.unit(180, "cm")
  52543. },
  52544. "pawLength": {
  52545. name: "Paw Length",
  52546. power: 1,
  52547. type: "length",
  52548. base: math.unit(31, "cm")
  52549. },
  52550. }
  52551. },
  52552. back: {
  52553. height: math.unit(1.75, "meters"),
  52554. weight: math.unit(100, "kg"),
  52555. name: "Back",
  52556. image: {
  52557. source: "./media/characters/zarya/back.svg",
  52558. extra: 741/735,
  52559. bottom: 44/785
  52560. },
  52561. extraAttributes: {
  52562. "tailLength": {
  52563. name: "Tail Length",
  52564. power: 1,
  52565. type: "length",
  52566. base: math.unit(180, "cm")
  52567. },
  52568. "pawLength": {
  52569. name: "Paw Length",
  52570. power: 1,
  52571. type: "length",
  52572. base: math.unit(31, "cm")
  52573. },
  52574. }
  52575. },
  52576. frontNoTail: {
  52577. height: math.unit(1.75, "meters"),
  52578. weight: math.unit(100, "kg"),
  52579. name: "Front (No Tail)",
  52580. image: {
  52581. source: "./media/characters/zarya/front-no-tail.svg",
  52582. extra: 741/735,
  52583. bottom: 44/785
  52584. },
  52585. extraAttributes: {
  52586. "tailLength": {
  52587. name: "Tail Length",
  52588. power: 1,
  52589. type: "length",
  52590. base: math.unit(180, "cm")
  52591. },
  52592. "pawLength": {
  52593. name: "Paw Length",
  52594. power: 1,
  52595. type: "length",
  52596. base: math.unit(31, "cm")
  52597. },
  52598. }
  52599. },
  52600. dressed: {
  52601. height: math.unit(1.75, "meters"),
  52602. weight: math.unit(100, "kg"),
  52603. name: "Dressed",
  52604. image: {
  52605. source: "./media/characters/zarya/dressed.svg",
  52606. extra: 683/672,
  52607. bottom: 79/762
  52608. },
  52609. extraAttributes: {
  52610. "tailLength": {
  52611. name: "Tail Length",
  52612. power: 1,
  52613. type: "length",
  52614. base: math.unit(180, "cm")
  52615. },
  52616. "pawLength": {
  52617. name: "Paw Length",
  52618. power: 1,
  52619. type: "length",
  52620. base: math.unit(31, "cm")
  52621. },
  52622. }
  52623. },
  52624. },
  52625. [
  52626. {
  52627. name: "Micro",
  52628. height: math.unit(5, "cm")
  52629. },
  52630. {
  52631. name: "Normal",
  52632. height: math.unit(1.75, "meters"),
  52633. default: true
  52634. },
  52635. {
  52636. name: "Macro",
  52637. height: math.unit(122, "meters")
  52638. },
  52639. ]
  52640. ))
  52641. characterMakers.push(() => makeCharacter(
  52642. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52643. {
  52644. front: {
  52645. height: math.unit(7.5, "feet"),
  52646. name: "Front",
  52647. image: {
  52648. source: "./media/characters/sven-hatisson/front.svg",
  52649. extra: 917/857,
  52650. bottom: 42/959
  52651. }
  52652. },
  52653. back: {
  52654. height: math.unit(7.5, "feet"),
  52655. name: "Back",
  52656. image: {
  52657. source: "./media/characters/sven-hatisson/back.svg",
  52658. extra: 903/856,
  52659. bottom: 15/918
  52660. }
  52661. },
  52662. },
  52663. [
  52664. {
  52665. name: "Base Height",
  52666. height: math.unit(7.5, "feet")
  52667. },
  52668. {
  52669. name: "Usual Height",
  52670. height: math.unit(13.5, "feet"),
  52671. default: true
  52672. },
  52673. {
  52674. name: "Smaller Macro",
  52675. height: math.unit(85, "feet")
  52676. },
  52677. {
  52678. name: "Moderate Macro",
  52679. height: math.unit(320, "feet")
  52680. },
  52681. {
  52682. name: "Large Macro",
  52683. height: math.unit(1000, "feet")
  52684. },
  52685. {
  52686. name: "Largest Size",
  52687. height: math.unit(2, "miles")
  52688. },
  52689. ]
  52690. ))
  52691. characterMakers.push(() => makeCharacter(
  52692. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52693. {
  52694. side: {
  52695. height: math.unit(1.8, "meters"),
  52696. weight: math.unit(275, "kg"),
  52697. name: "Side",
  52698. image: {
  52699. source: "./media/characters/terra/side.svg",
  52700. extra: 1273/1147,
  52701. bottom: 0/1273
  52702. }
  52703. },
  52704. },
  52705. [
  52706. {
  52707. name: "Normal",
  52708. height: math.unit(16.2, "meters"),
  52709. default: true
  52710. },
  52711. ]
  52712. ))
  52713. characterMakers.push(() => makeCharacter(
  52714. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52715. {
  52716. borzoiFront: {
  52717. height: math.unit(6 + 9/12, "feet"),
  52718. name: "Front",
  52719. image: {
  52720. source: "./media/characters/rae/borzoi-front.svg",
  52721. extra: 1161/1098,
  52722. bottom: 31/1192
  52723. },
  52724. form: "borzoi",
  52725. default: true
  52726. },
  52727. werewolfFront: {
  52728. height: math.unit(8 + 7/12, "feet"),
  52729. name: "Front",
  52730. image: {
  52731. source: "./media/characters/rae/werewolf-front.svg",
  52732. extra: 1411/1334,
  52733. bottom: 127/1538
  52734. },
  52735. form: "werewolf",
  52736. default: true
  52737. },
  52738. },
  52739. [
  52740. {
  52741. name: "Normal",
  52742. height: math.unit(6 + 9/12, "feet"),
  52743. default: true,
  52744. form: "borzoi"
  52745. },
  52746. {
  52747. name: "Normal",
  52748. height: math.unit(8 + 7/12, "feet"),
  52749. default: true,
  52750. form: "werewolf"
  52751. },
  52752. ],
  52753. {
  52754. "borzoi": {
  52755. name: "Borzoi",
  52756. default: true
  52757. },
  52758. "werewolf": {
  52759. name: "Werewolf",
  52760. },
  52761. }
  52762. ))
  52763. characterMakers.push(() => makeCharacter(
  52764. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52765. {
  52766. front: {
  52767. height: math.unit(8 + 7/12, "feet"),
  52768. weight: math.unit(482, "lb"),
  52769. name: "Front",
  52770. image: {
  52771. source: "./media/characters/kit/front.svg",
  52772. extra: 1247/1103,
  52773. bottom: 41/1288
  52774. }
  52775. },
  52776. back: {
  52777. height: math.unit(8 + 7/12, "feet"),
  52778. weight: math.unit(482, "lb"),
  52779. name: "Back",
  52780. image: {
  52781. source: "./media/characters/kit/back.svg",
  52782. extra: 1252/1123,
  52783. bottom: 21/1273
  52784. }
  52785. },
  52786. paw: {
  52787. height: math.unit(1.46, "feet"),
  52788. name: "Paw",
  52789. image: {
  52790. source: "./media/characters/kit/paw.svg"
  52791. }
  52792. },
  52793. },
  52794. [
  52795. {
  52796. name: "Normal",
  52797. height: math.unit(2.61, "meters"),
  52798. default: true
  52799. },
  52800. {
  52801. name: "\"Tall\"",
  52802. height: math.unit(8.21, "meters")
  52803. },
  52804. {
  52805. name: "Tall",
  52806. height: math.unit(19.6, "meters")
  52807. },
  52808. {
  52809. name: "Very Tall",
  52810. height: math.unit(57.91, "meters")
  52811. },
  52812. {
  52813. name: "Semi-Macro",
  52814. height: math.unit(138.64, "meters")
  52815. },
  52816. {
  52817. name: "Macro",
  52818. height: math.unit(831.99, "meters")
  52819. },
  52820. {
  52821. name: "EX-Macro",
  52822. height: math.unit(96451121, "meters")
  52823. },
  52824. {
  52825. name: "S1-Omnipotent",
  52826. height: math.unit(4.42074e+9, "meters")
  52827. },
  52828. {
  52829. name: "S2-Omnipotent",
  52830. height: math.unit(9.42074e+17, "meters")
  52831. },
  52832. {
  52833. name: "Omnipotent",
  52834. height: math.unit(4.23112e+24, "meters")
  52835. },
  52836. {
  52837. name: "Hypergod",
  52838. height: math.unit(5.05176e+27, "meters")
  52839. },
  52840. {
  52841. name: "Hypergod-EX",
  52842. height: math.unit(9.45532e+49, "meters")
  52843. },
  52844. {
  52845. name: "Hypergod-SP",
  52846. height: math.unit(9.45532e+195, "meters")
  52847. },
  52848. ]
  52849. ))
  52850. characterMakers.push(() => makeCharacter(
  52851. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52852. {
  52853. side: {
  52854. height: math.unit(0.6, "meters"),
  52855. weight: math.unit(24, "kg"),
  52856. name: "Side",
  52857. image: {
  52858. source: "./media/characters/celeste/side.svg",
  52859. extra: 810/517,
  52860. bottom: 53/863
  52861. }
  52862. },
  52863. },
  52864. [
  52865. {
  52866. name: "Velociraptor",
  52867. height: math.unit(0.6, "meters"),
  52868. default: true
  52869. },
  52870. {
  52871. name: "Utahraptor",
  52872. height: math.unit(1.8, "meters")
  52873. },
  52874. {
  52875. name: "Gallimimus",
  52876. height: math.unit(4.0, "meters")
  52877. },
  52878. {
  52879. name: "Large",
  52880. height: math.unit(20, "meters")
  52881. },
  52882. {
  52883. name: "Planetary",
  52884. height: math.unit(50, "megameters")
  52885. },
  52886. {
  52887. name: "Stellar",
  52888. height: math.unit(1.5, "gigameters")
  52889. },
  52890. {
  52891. name: "Galactic",
  52892. height: math.unit(100, "exameters")
  52893. },
  52894. ]
  52895. ))
  52896. characterMakers.push(() => makeCharacter(
  52897. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52898. {
  52899. front: {
  52900. height: math.unit(6, "feet"),
  52901. weight: math.unit(210, "lb"),
  52902. name: "Front",
  52903. image: {
  52904. source: "./media/characters/glacia/front.svg",
  52905. extra: 958/901,
  52906. bottom: 45/1003
  52907. }
  52908. },
  52909. },
  52910. [
  52911. {
  52912. name: "Macro",
  52913. height: math.unit(1000, "meters"),
  52914. default: true
  52915. },
  52916. ]
  52917. ))
  52918. characterMakers.push(() => makeCharacter(
  52919. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52920. {
  52921. front: {
  52922. height: math.unit(4, "meters"),
  52923. name: "Front",
  52924. image: {
  52925. source: "./media/characters/giri/front.svg",
  52926. extra: 966/894,
  52927. bottom: 21/987
  52928. }
  52929. },
  52930. },
  52931. [
  52932. {
  52933. name: "Normal",
  52934. height: math.unit(4, "meters"),
  52935. default: true
  52936. },
  52937. ]
  52938. ))
  52939. characterMakers.push(() => makeCharacter(
  52940. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52941. {
  52942. back: {
  52943. height: math.unit(4, "feet"),
  52944. weight: math.unit(37, "lb"),
  52945. name: "Back",
  52946. image: {
  52947. source: "./media/characters/tin/back.svg",
  52948. extra: 845/780,
  52949. bottom: 28/873
  52950. }
  52951. },
  52952. },
  52953. [
  52954. {
  52955. name: "Normal",
  52956. height: math.unit(4, "feet"),
  52957. default: true
  52958. },
  52959. ]
  52960. ))
  52961. characterMakers.push(() => makeCharacter(
  52962. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52963. {
  52964. front: {
  52965. height: math.unit(25, "feet"),
  52966. name: "Front",
  52967. image: {
  52968. source: "./media/characters/cadenza-vivace/front.svg",
  52969. extra: 1842/1578,
  52970. bottom: 30/1872
  52971. }
  52972. },
  52973. },
  52974. [
  52975. {
  52976. name: "Macro",
  52977. height: math.unit(25, "feet"),
  52978. default: true
  52979. },
  52980. ]
  52981. ))
  52982. characterMakers.push(() => makeCharacter(
  52983. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52984. {
  52985. front: {
  52986. height: math.unit(10, "feet"),
  52987. weight: math.unit(625, "kg"),
  52988. name: "Front",
  52989. image: {
  52990. source: "./media/characters/zain/front.svg",
  52991. extra: 1682/1498,
  52992. bottom: 223/1905
  52993. }
  52994. },
  52995. back: {
  52996. height: math.unit(10, "feet"),
  52997. weight: math.unit(625, "kg"),
  52998. name: "Back",
  52999. image: {
  53000. source: "./media/characters/zain/back.svg",
  53001. extra: 1814/1657,
  53002. bottom: 152/1966
  53003. }
  53004. },
  53005. head: {
  53006. height: math.unit(10, "feet"),
  53007. weight: math.unit(625, "kg"),
  53008. name: "Head",
  53009. image: {
  53010. source: "./media/characters/zain/head.svg",
  53011. extra: 1059/762,
  53012. bottom: 0/1059
  53013. }
  53014. },
  53015. },
  53016. [
  53017. {
  53018. name: "Normal",
  53019. height: math.unit(10, "feet"),
  53020. default: true
  53021. },
  53022. ]
  53023. ))
  53024. characterMakers.push(() => makeCharacter(
  53025. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53026. {
  53027. front: {
  53028. height: math.unit(6 + 5/12, "feet"),
  53029. weight: math.unit(750, "lb"),
  53030. name: "Front",
  53031. image: {
  53032. source: "./media/characters/ruchex/front.svg",
  53033. extra: 877/820,
  53034. bottom: 17/894
  53035. },
  53036. extraAttributes: {
  53037. "width": {
  53038. name: "Width",
  53039. power: 1,
  53040. type: "length",
  53041. base: math.unit(4.757, "feet")
  53042. },
  53043. }
  53044. },
  53045. },
  53046. [
  53047. {
  53048. name: "Normal",
  53049. height: math.unit(6 + 5/12, "feet"),
  53050. default: true
  53051. },
  53052. ]
  53053. ))
  53054. characterMakers.push(() => makeCharacter(
  53055. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53056. {
  53057. dressedFront: {
  53058. height: math.unit(191, "cm"),
  53059. weight: math.unit(80, "kg"),
  53060. name: "Front",
  53061. image: {
  53062. source: "./media/characters/buster/dressed-front.svg",
  53063. extra: 1022/973,
  53064. bottom: 69/1091
  53065. }
  53066. },
  53067. dressedBack: {
  53068. height: math.unit(191, "cm"),
  53069. weight: math.unit(80, "kg"),
  53070. name: "Back",
  53071. image: {
  53072. source: "./media/characters/buster/dressed-back.svg",
  53073. extra: 1018/970,
  53074. bottom: 55/1073
  53075. }
  53076. },
  53077. nudeFront: {
  53078. height: math.unit(191, "cm"),
  53079. weight: math.unit(80, "kg"),
  53080. name: "Front (Nude)",
  53081. image: {
  53082. source: "./media/characters/buster/nude-front.svg",
  53083. extra: 1022/973,
  53084. bottom: 69/1091
  53085. }
  53086. },
  53087. nudeBack: {
  53088. height: math.unit(191, "cm"),
  53089. weight: math.unit(80, "kg"),
  53090. name: "Back (Nude)",
  53091. image: {
  53092. source: "./media/characters/buster/nude-back.svg",
  53093. extra: 1018/970,
  53094. bottom: 55/1073
  53095. }
  53096. },
  53097. dick: {
  53098. height: math.unit(2.59, "feet"),
  53099. name: "Dick",
  53100. image: {
  53101. source: "./media/characters/buster/dick.svg"
  53102. }
  53103. },
  53104. ass: {
  53105. height: math.unit(1.2, "feet"),
  53106. name: "Ass",
  53107. image: {
  53108. source: "./media/characters/buster/ass.svg"
  53109. }
  53110. },
  53111. },
  53112. [
  53113. {
  53114. name: "Normal",
  53115. height: math.unit(191, "cm"),
  53116. default: true
  53117. },
  53118. ]
  53119. ))
  53120. characterMakers.push(() => makeCharacter(
  53121. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53122. {
  53123. side: {
  53124. height: math.unit(8.1, "feet"),
  53125. weight: math.unit(3500, "lb"),
  53126. name: "Side",
  53127. image: {
  53128. source: "./media/characters/sonya/side.svg",
  53129. extra: 1730/1317,
  53130. bottom: 86/1816
  53131. }
  53132. },
  53133. },
  53134. [
  53135. {
  53136. name: "Normal",
  53137. height: math.unit(8.1, "feet"),
  53138. default: true
  53139. },
  53140. ]
  53141. ))
  53142. characterMakers.push(() => makeCharacter(
  53143. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53144. {
  53145. front: {
  53146. height: math.unit(6, "feet"),
  53147. weight: math.unit(150, "lb"),
  53148. name: "Front",
  53149. image: {
  53150. source: "./media/characters/cadence-andrysiak/front.svg",
  53151. extra: 1164/1121,
  53152. bottom: 60/1224
  53153. }
  53154. },
  53155. back: {
  53156. height: math.unit(6, "feet"),
  53157. weight: math.unit(150, "lb"),
  53158. name: "Back",
  53159. image: {
  53160. source: "./media/characters/cadence-andrysiak/back.svg",
  53161. extra: 1200/1165,
  53162. bottom: 9/1209
  53163. }
  53164. },
  53165. dressed: {
  53166. height: math.unit(6, "feet"),
  53167. weight: math.unit(150, "lb"),
  53168. name: "Dressed",
  53169. image: {
  53170. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53171. extra: 1164/1121,
  53172. bottom: 60/1224
  53173. }
  53174. },
  53175. },
  53176. [
  53177. {
  53178. name: "Micro",
  53179. height: math.unit(1, "mm")
  53180. },
  53181. {
  53182. name: "Normal",
  53183. height: math.unit(6, "feet"),
  53184. default: true
  53185. },
  53186. ]
  53187. ))
  53188. characterMakers.push(() => makeCharacter(
  53189. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53190. {
  53191. front: {
  53192. height: math.unit(60, "inches"),
  53193. weight: math.unit(16, "lb"),
  53194. preyCapacity: math.unit(80, "liters"),
  53195. name: "Front",
  53196. image: {
  53197. source: "./media/characters/penny-lynx/front.svg",
  53198. extra: 1959/1769,
  53199. bottom: 49/2008
  53200. }
  53201. },
  53202. },
  53203. [
  53204. {
  53205. name: "Nokia",
  53206. height: math.unit(2, "inches")
  53207. },
  53208. {
  53209. name: "Desktop",
  53210. height: math.unit(24, "inches")
  53211. },
  53212. {
  53213. name: "TV",
  53214. height: math.unit(60, "inches")
  53215. },
  53216. {
  53217. name: "Jumbotron",
  53218. height: math.unit(12, "feet")
  53219. },
  53220. {
  53221. name: "Billboard",
  53222. height: math.unit(48, "feet"),
  53223. default: true
  53224. },
  53225. {
  53226. name: "IMAX",
  53227. height: math.unit(96, "feet")
  53228. },
  53229. {
  53230. name: "SINGULARITY",
  53231. height: math.unit(864938, "miles")
  53232. },
  53233. ]
  53234. ))
  53235. characterMakers.push(() => makeCharacter(
  53236. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53237. {
  53238. front: {
  53239. height: math.unit(5 + 4/12, "feet"),
  53240. weight: math.unit(230, "lb"),
  53241. name: "Front",
  53242. image: {
  53243. source: "./media/characters/sukebe/front.svg",
  53244. extra: 2130/2038,
  53245. bottom: 90/2220
  53246. }
  53247. },
  53248. back: {
  53249. height: math.unit(3.48, "feet"),
  53250. weight: math.unit(230, "lb"),
  53251. name: "Back",
  53252. image: {
  53253. source: "./media/characters/sukebe/back.svg",
  53254. extra: 1670/1604,
  53255. bottom: 0/1670
  53256. }
  53257. },
  53258. },
  53259. [
  53260. {
  53261. name: "Normal",
  53262. height: math.unit(5 + 4/12, "feet"),
  53263. default: true
  53264. },
  53265. ]
  53266. ))
  53267. characterMakers.push(() => makeCharacter(
  53268. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53269. {
  53270. front: {
  53271. height: math.unit(6, "feet"),
  53272. name: "Front",
  53273. image: {
  53274. source: "./media/characters/nylla/front.svg",
  53275. extra: 1868/1699,
  53276. bottom: 97/1965
  53277. }
  53278. },
  53279. back: {
  53280. height: math.unit(6, "feet"),
  53281. name: "Back",
  53282. image: {
  53283. source: "./media/characters/nylla/back.svg",
  53284. extra: 1889/1712,
  53285. bottom: 93/1982
  53286. }
  53287. },
  53288. frontNsfw: {
  53289. height: math.unit(6, "feet"),
  53290. name: "Front (NSFW)",
  53291. image: {
  53292. source: "./media/characters/nylla/front-nsfw.svg",
  53293. extra: 1868/1699,
  53294. bottom: 97/1965
  53295. },
  53296. extraAttributes: {
  53297. "dickLength": {
  53298. name: "Dick Length",
  53299. power: 1,
  53300. type: "length",
  53301. base: math.unit(1.4, "feet")
  53302. },
  53303. "cumVolume": {
  53304. name: "Cum Volume",
  53305. power: 3,
  53306. type: "volume",
  53307. base: math.unit(100, "mL")
  53308. },
  53309. }
  53310. },
  53311. backNsfw: {
  53312. height: math.unit(6, "feet"),
  53313. name: "Back (NSFW)",
  53314. image: {
  53315. source: "./media/characters/nylla/back-nsfw.svg",
  53316. extra: 1889/1712,
  53317. bottom: 93/1982
  53318. }
  53319. },
  53320. maw: {
  53321. height: math.unit(2.10, "feet"),
  53322. name: "Maw",
  53323. image: {
  53324. source: "./media/characters/nylla/maw.svg"
  53325. }
  53326. },
  53327. paws: {
  53328. height: math.unit(2.06, "feet"),
  53329. name: "Paws",
  53330. image: {
  53331. source: "./media/characters/nylla/paws.svg"
  53332. }
  53333. },
  53334. muzzle: {
  53335. height: math.unit(0.61, "feet"),
  53336. name: "Muzzle",
  53337. image: {
  53338. source: "./media/characters/nylla/muzzle.svg"
  53339. }
  53340. },
  53341. sheath: {
  53342. height: math.unit(1.305, "feet"),
  53343. name: "Sheath",
  53344. image: {
  53345. source: "./media/characters/nylla/sheath.svg"
  53346. }
  53347. },
  53348. },
  53349. [
  53350. {
  53351. name: "Micro",
  53352. height: math.unit(7.5, "inches")
  53353. },
  53354. {
  53355. name: "Normal",
  53356. height: math.unit(7, "feet"),
  53357. default: true
  53358. },
  53359. {
  53360. name: "Macro",
  53361. height: math.unit(60, "feet")
  53362. },
  53363. {
  53364. name: "Mega",
  53365. height: math.unit(200, "feet")
  53366. },
  53367. ]
  53368. ))
  53369. characterMakers.push(() => makeCharacter(
  53370. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53371. {
  53372. front: {
  53373. height: math.unit(10, "feet"),
  53374. weight: math.unit(2300, "lb"),
  53375. name: "Front",
  53376. image: {
  53377. source: "./media/characters/hunt3r/front.svg",
  53378. extra: 1909/1742,
  53379. bottom: 46/1955
  53380. }
  53381. },
  53382. },
  53383. [
  53384. {
  53385. name: "Normal",
  53386. height: math.unit(10, "feet"),
  53387. default: true
  53388. },
  53389. ]
  53390. ))
  53391. characterMakers.push(() => makeCharacter(
  53392. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53393. {
  53394. dressed: {
  53395. height: math.unit(11, "feet"),
  53396. weight: math.unit(18500, "lb"),
  53397. preyCapacity: math.unit(9, "people"),
  53398. name: "Dressed",
  53399. image: {
  53400. source: "./media/characters/cylphis/dressed.svg",
  53401. extra: 1028/1003,
  53402. bottom: 75/1103
  53403. },
  53404. },
  53405. undressed: {
  53406. height: math.unit(11, "feet"),
  53407. weight: math.unit(18500, "lb"),
  53408. preyCapacity: math.unit(9, "people"),
  53409. name: "Undressed",
  53410. image: {
  53411. source: "./media/characters/cylphis/undressed.svg",
  53412. extra: 1028/1003,
  53413. bottom: 75/1103
  53414. }
  53415. },
  53416. full: {
  53417. height: math.unit(11, "feet"),
  53418. weight: math.unit(18500 + 150*9, "lb"),
  53419. preyCapacity: math.unit(9, "people"),
  53420. name: "Full",
  53421. image: {
  53422. source: "./media/characters/cylphis/full.svg",
  53423. extra: 1028/1003,
  53424. bottom: 75/1103
  53425. }
  53426. },
  53427. },
  53428. [
  53429. {
  53430. name: "Small",
  53431. height: math.unit(8, "feet")
  53432. },
  53433. {
  53434. name: "Normal",
  53435. height: math.unit(11, "feet"),
  53436. default: true
  53437. },
  53438. ]
  53439. ))
  53440. characterMakers.push(() => makeCharacter(
  53441. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53442. {
  53443. front: {
  53444. height: math.unit(2 + 7/12, "feet"),
  53445. name: "Front",
  53446. image: {
  53447. source: "./media/characters/orishan/front.svg",
  53448. extra: 1058/1023,
  53449. bottom: 23/1081
  53450. }
  53451. },
  53452. back: {
  53453. height: math.unit(2 + 7/12, "feet"),
  53454. name: "Back",
  53455. image: {
  53456. source: "./media/characters/orishan/back.svg",
  53457. extra: 1058/1023,
  53458. bottom: 23/1081
  53459. }
  53460. },
  53461. },
  53462. [
  53463. {
  53464. name: "Micro",
  53465. height: math.unit(2, "cm")
  53466. },
  53467. {
  53468. name: "Normal",
  53469. height: math.unit(2 + 7/12, "feet"),
  53470. default: true
  53471. },
  53472. ]
  53473. ))
  53474. characterMakers.push(() => makeCharacter(
  53475. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53476. {
  53477. front: {
  53478. height: math.unit(3, "meters"),
  53479. weight: math.unit(508, "kg"),
  53480. name: "Front",
  53481. image: {
  53482. source: "./media/characters/seranis/front.svg",
  53483. extra: 1478/1454,
  53484. bottom: 41/1519
  53485. }
  53486. },
  53487. },
  53488. [
  53489. {
  53490. name: "Normal",
  53491. height: math.unit(3, "meters"),
  53492. default: true
  53493. },
  53494. {
  53495. name: "Macro",
  53496. height: math.unit(108, "meters")
  53497. },
  53498. {
  53499. name: "Megamacro",
  53500. height: math.unit(1250, "meters")
  53501. },
  53502. ]
  53503. ))
  53504. characterMakers.push(() => makeCharacter(
  53505. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53506. {
  53507. undressed: {
  53508. height: math.unit(5 + 3/12, "feet"),
  53509. name: "Undressed",
  53510. image: {
  53511. source: "./media/characters/ankou/undressed.svg",
  53512. extra: 1301/1213,
  53513. bottom: 87/1388
  53514. }
  53515. },
  53516. dressed: {
  53517. height: math.unit(5 + 3/12, "feet"),
  53518. name: "Dressed",
  53519. image: {
  53520. source: "./media/characters/ankou/dressed.svg",
  53521. extra: 1301/1213,
  53522. bottom: 87/1388
  53523. }
  53524. },
  53525. head: {
  53526. height: math.unit(1.61, "feet"),
  53527. name: "Head",
  53528. image: {
  53529. source: "./media/characters/ankou/head.svg"
  53530. }
  53531. },
  53532. },
  53533. [
  53534. {
  53535. name: "Normal",
  53536. height: math.unit(5 + 3/12, "feet"),
  53537. default: true
  53538. },
  53539. ]
  53540. ))
  53541. characterMakers.push(() => makeCharacter(
  53542. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53543. {
  53544. side: {
  53545. height: math.unit(6 + 3/12, "feet"),
  53546. weight: math.unit(200, "kg"),
  53547. name: "Side",
  53548. image: {
  53549. source: "./media/characters/juniper-skunktaur/side.svg",
  53550. extra: 1574/1229,
  53551. bottom: 38/1612
  53552. }
  53553. },
  53554. front: {
  53555. height: math.unit(6 + 3/12, "feet"),
  53556. weight: math.unit(200, "kg"),
  53557. name: "Front",
  53558. image: {
  53559. source: "./media/characters/juniper-skunktaur/front.svg",
  53560. extra: 1337/1278,
  53561. bottom: 22/1359
  53562. }
  53563. },
  53564. back: {
  53565. height: math.unit(6 + 3/12, "feet"),
  53566. weight: math.unit(200, "kg"),
  53567. name: "Back",
  53568. image: {
  53569. source: "./media/characters/juniper-skunktaur/back.svg",
  53570. extra: 1618/1273,
  53571. bottom: 13/1631
  53572. }
  53573. },
  53574. top: {
  53575. height: math.unit(2.62, "feet"),
  53576. weight: math.unit(200, "kg"),
  53577. name: "Top",
  53578. image: {
  53579. source: "./media/characters/juniper-skunktaur/top.svg"
  53580. }
  53581. },
  53582. },
  53583. [
  53584. {
  53585. name: "Normal",
  53586. height: math.unit(6 + 3/12, "feet"),
  53587. default: true
  53588. },
  53589. ]
  53590. ))
  53591. characterMakers.push(() => makeCharacter(
  53592. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53593. {
  53594. front: {
  53595. height: math.unit(20.5, "feet"),
  53596. name: "Front",
  53597. image: {
  53598. source: "./media/characters/rei/front.svg",
  53599. extra: 1349/1195,
  53600. bottom: 31/1380
  53601. }
  53602. },
  53603. back: {
  53604. height: math.unit(20.5, "feet"),
  53605. name: "Back",
  53606. image: {
  53607. source: "./media/characters/rei/back.svg",
  53608. extra: 1358/1204,
  53609. bottom: 22/1380
  53610. }
  53611. },
  53612. pawsDigi: {
  53613. height: math.unit(3.45, "feet"),
  53614. name: "Paws (Digi)",
  53615. image: {
  53616. source: "./media/characters/rei/paws-digi.svg"
  53617. }
  53618. },
  53619. pawsPlanti: {
  53620. height: math.unit(3.45, "feet"),
  53621. name: "Paws (Planti)",
  53622. image: {
  53623. source: "./media/characters/rei/paws-planti.svg"
  53624. }
  53625. },
  53626. },
  53627. [
  53628. {
  53629. name: "Normal",
  53630. height: math.unit(20.5, "feet"),
  53631. default: true
  53632. },
  53633. ]
  53634. ))
  53635. characterMakers.push(() => makeCharacter(
  53636. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53637. {
  53638. front: {
  53639. height: math.unit(5 + 11/12, "feet"),
  53640. name: "Front",
  53641. image: {
  53642. source: "./media/characters/carina/front.svg",
  53643. extra: 1720/1449,
  53644. bottom: 14/1734
  53645. }
  53646. },
  53647. back: {
  53648. height: math.unit(5 + 11/12, "feet"),
  53649. name: "Back",
  53650. image: {
  53651. source: "./media/characters/carina/back.svg",
  53652. extra: 1493/1445,
  53653. bottom: 17/1510
  53654. }
  53655. },
  53656. paw: {
  53657. height: math.unit(0.92, "feet"),
  53658. name: "Paw",
  53659. image: {
  53660. source: "./media/characters/carina/paw.svg"
  53661. }
  53662. },
  53663. },
  53664. [
  53665. {
  53666. name: "Normal",
  53667. height: math.unit(5 + 11/12, "feet"),
  53668. default: true
  53669. },
  53670. ]
  53671. ))
  53672. characterMakers.push(() => makeCharacter(
  53673. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53674. {
  53675. normal_front: {
  53676. height: math.unit(4.88, "meters"),
  53677. name: "Front",
  53678. image: {
  53679. source: "./media/characters/maya/normal-front.svg",
  53680. extra: 1222/1145,
  53681. bottom: 57/1279
  53682. },
  53683. form: "normal",
  53684. default: true
  53685. },
  53686. monstrous_front: {
  53687. height: math.unit(10, "meters"),
  53688. name: "Front",
  53689. image: {
  53690. source: "./media/characters/maya/monstrous-front.svg",
  53691. extra: 1523/1109,
  53692. bottom: 113/1636
  53693. },
  53694. form: "monstrous",
  53695. extraAttributes: {
  53696. "swallowSize": {
  53697. name: "Tailmaw Bite Size",
  53698. power: 3,
  53699. type: "volume",
  53700. base: math.unit(43000, "liters")
  53701. },
  53702. }
  53703. },
  53704. taur_front: {
  53705. height: math.unit(10, "meters"),
  53706. name: "Front",
  53707. image: {
  53708. source: "./media/characters/maya/taur-front.svg",
  53709. extra: 743/506,
  53710. bottom: 101/844
  53711. },
  53712. form: "taur",
  53713. },
  53714. },
  53715. [
  53716. {
  53717. name: "Normal",
  53718. height: math.unit(4.88, "meters"),
  53719. default: true,
  53720. form: "normal"
  53721. },
  53722. {
  53723. name: "Macro",
  53724. height: math.unit(38.1, "meters"),
  53725. form: "normal"
  53726. },
  53727. {
  53728. name: "Macro+",
  53729. height: math.unit(152.4, "meters"),
  53730. form: "normal"
  53731. },
  53732. {
  53733. name: "Macro++",
  53734. height: math.unit(16.09, "km"),
  53735. form: "normal"
  53736. },
  53737. {
  53738. name: "Mega-macro",
  53739. height: math.unit(700, "megameters"),
  53740. form: "normal"
  53741. },
  53742. {
  53743. name: "Satiated",
  53744. height: math.unit(10, "meters"),
  53745. default: true,
  53746. form: "monstrous"
  53747. },
  53748. {
  53749. name: "Hungry",
  53750. height: math.unit(75, "meters"),
  53751. form: "monstrous"
  53752. },
  53753. {
  53754. name: "Ravenous",
  53755. height: math.unit(500, "meters"),
  53756. form: "monstrous"
  53757. },
  53758. {
  53759. name: "\"Normal\"",
  53760. height: math.unit(10, "meters"),
  53761. form: "taur"
  53762. },
  53763. {
  53764. name: "Macro",
  53765. height: math.unit(50, "meters"),
  53766. form: "taur"
  53767. },
  53768. ],
  53769. {
  53770. "normal": {
  53771. name: "Normal",
  53772. default: true
  53773. },
  53774. "monstrous": {
  53775. name: "Monstrous",
  53776. },
  53777. "taur": {
  53778. name: "Taur",
  53779. },
  53780. }
  53781. ))
  53782. characterMakers.push(() => makeCharacter(
  53783. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53784. {
  53785. front: {
  53786. height: math.unit(6 + 2/12, "feet"),
  53787. weight: math.unit(500, "lb"),
  53788. preyCapacity: math.unit(4, "people"),
  53789. name: "Front",
  53790. image: {
  53791. source: "./media/characters/yepir/front.svg"
  53792. }
  53793. },
  53794. side: {
  53795. height: math.unit(6 + 2/12, "feet"),
  53796. weight: math.unit(500, "lb"),
  53797. preyCapacity: math.unit(4, "people"),
  53798. name: "Side",
  53799. image: {
  53800. source: "./media/characters/yepir/side.svg"
  53801. }
  53802. },
  53803. paw: {
  53804. height: math.unit(1.05, "feet"),
  53805. name: "Paw",
  53806. image: {
  53807. source: "./media/characters/yepir/paw.svg"
  53808. }
  53809. },
  53810. },
  53811. [
  53812. {
  53813. name: "Normal",
  53814. height: math.unit(6 + 2/12, "feet"),
  53815. default: true
  53816. },
  53817. ]
  53818. ))
  53819. characterMakers.push(() => makeCharacter(
  53820. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53821. {
  53822. front: {
  53823. height: math.unit(5 + 4/12, "feet"),
  53824. name: "Front",
  53825. image: {
  53826. source: "./media/characters/russec/front.svg",
  53827. extra: 1926/1626,
  53828. bottom: 72/1998
  53829. }
  53830. },
  53831. back: {
  53832. height: math.unit(5 + 4/12, "feet"),
  53833. name: "Back",
  53834. image: {
  53835. source: "./media/characters/russec/back.svg",
  53836. extra: 1910/1591,
  53837. bottom: 48/1958
  53838. }
  53839. },
  53840. },
  53841. [
  53842. {
  53843. name: "Small",
  53844. height: math.unit(5 + 4/12, "feet")
  53845. },
  53846. {
  53847. name: "Normal",
  53848. height: math.unit(72, "feet"),
  53849. default: true
  53850. },
  53851. ]
  53852. ))
  53853. characterMakers.push(() => makeCharacter(
  53854. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53855. {
  53856. side: {
  53857. height: math.unit(12, "feet"),
  53858. name: "Side",
  53859. image: {
  53860. source: "./media/characters/cianus/side.svg",
  53861. extra: 808/526,
  53862. bottom: 61/869
  53863. }
  53864. },
  53865. },
  53866. [
  53867. {
  53868. name: "Normal",
  53869. height: math.unit(12, "feet"),
  53870. default: true
  53871. },
  53872. ]
  53873. ))
  53874. characterMakers.push(() => makeCharacter(
  53875. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53876. {
  53877. front: {
  53878. height: math.unit(9 + 6/12, "feet"),
  53879. weight: math.unit(300, "lb"),
  53880. name: "Front",
  53881. image: {
  53882. source: "./media/characters/ahab/front.svg",
  53883. extra: 1897/1868,
  53884. bottom: 121/2018
  53885. }
  53886. },
  53887. frontNsfw: {
  53888. height: math.unit(9 + 6/12, "feet"),
  53889. weight: math.unit(300, "lb"),
  53890. name: "Front-nsfw",
  53891. image: {
  53892. source: "./media/characters/ahab/front-nsfw.svg",
  53893. extra: 1897/1868,
  53894. bottom: 121/2018
  53895. }
  53896. },
  53897. },
  53898. [
  53899. {
  53900. name: "Normal",
  53901. height: math.unit(9 + 6/12, "feet")
  53902. },
  53903. {
  53904. name: "Macro",
  53905. height: math.unit(657, "feet"),
  53906. default: true
  53907. },
  53908. ]
  53909. ))
  53910. characterMakers.push(() => makeCharacter(
  53911. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53912. {
  53913. front: {
  53914. height: math.unit(2.69, "meters"),
  53915. weight: math.unit(132, "kg"),
  53916. name: "Front",
  53917. image: {
  53918. source: "./media/characters/aarkus/front.svg",
  53919. extra: 1400/1231,
  53920. bottom: 34/1434
  53921. }
  53922. },
  53923. back: {
  53924. height: math.unit(2.69, "meters"),
  53925. weight: math.unit(132, "kg"),
  53926. name: "Back",
  53927. image: {
  53928. source: "./media/characters/aarkus/back.svg",
  53929. extra: 1381/1218,
  53930. bottom: 30/1411
  53931. }
  53932. },
  53933. frontNsfw: {
  53934. height: math.unit(2.69, "meters"),
  53935. weight: math.unit(132, "kg"),
  53936. name: "Front (NSFW)",
  53937. image: {
  53938. source: "./media/characters/aarkus/front-nsfw.svg",
  53939. extra: 1400/1231,
  53940. bottom: 34/1434
  53941. }
  53942. },
  53943. foot: {
  53944. height: math.unit(1.45, "feet"),
  53945. name: "Foot",
  53946. image: {
  53947. source: "./media/characters/aarkus/foot.svg"
  53948. }
  53949. },
  53950. head: {
  53951. height: math.unit(2.85, "feet"),
  53952. name: "Head",
  53953. image: {
  53954. source: "./media/characters/aarkus/head.svg"
  53955. }
  53956. },
  53957. headAlt: {
  53958. height: math.unit(3.07, "feet"),
  53959. name: "Head (Alt)",
  53960. image: {
  53961. source: "./media/characters/aarkus/head-alt.svg"
  53962. }
  53963. },
  53964. mouth: {
  53965. height: math.unit(1.25, "feet"),
  53966. name: "Mouth",
  53967. image: {
  53968. source: "./media/characters/aarkus/mouth.svg"
  53969. }
  53970. },
  53971. dick: {
  53972. height: math.unit(1.77, "feet"),
  53973. name: "Dick",
  53974. image: {
  53975. source: "./media/characters/aarkus/dick.svg"
  53976. }
  53977. },
  53978. },
  53979. [
  53980. {
  53981. name: "Normal",
  53982. height: math.unit(2.69, "meters"),
  53983. default: true
  53984. },
  53985. {
  53986. name: "Macro",
  53987. height: math.unit(269, "meters")
  53988. },
  53989. {
  53990. name: "Macro+",
  53991. height: math.unit(672.5, "meters")
  53992. },
  53993. {
  53994. name: "Megamacro",
  53995. height: math.unit(2.017, "km")
  53996. },
  53997. ]
  53998. ))
  53999. characterMakers.push(() => makeCharacter(
  54000. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54001. {
  54002. front: {
  54003. height: math.unit(23.47, "cm"),
  54004. weight: math.unit(600, "grams"),
  54005. name: "Front",
  54006. image: {
  54007. source: "./media/characters/diode/front.svg",
  54008. extra: 1778/1396,
  54009. bottom: 95/1873
  54010. }
  54011. },
  54012. side: {
  54013. height: math.unit(23.47, "cm"),
  54014. weight: math.unit(600, "grams"),
  54015. name: "Side",
  54016. image: {
  54017. source: "./media/characters/diode/side.svg",
  54018. extra: 1831/1404,
  54019. bottom: 86/1917
  54020. }
  54021. },
  54022. wings: {
  54023. height: math.unit(0.683, "feet"),
  54024. name: "Wings",
  54025. image: {
  54026. source: "./media/characters/diode/wings.svg"
  54027. }
  54028. },
  54029. },
  54030. [
  54031. {
  54032. name: "Normal",
  54033. height: math.unit(23.47, "cm"),
  54034. default: true
  54035. },
  54036. ]
  54037. ))
  54038. characterMakers.push(() => makeCharacter(
  54039. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54040. {
  54041. front: {
  54042. height: math.unit(6 + 3/12, "feet"),
  54043. weight: math.unit(250, "lb"),
  54044. name: "Front",
  54045. image: {
  54046. source: "./media/characters/reika/front.svg",
  54047. extra: 1120/1078,
  54048. bottom: 86/1206
  54049. }
  54050. },
  54051. },
  54052. [
  54053. {
  54054. name: "Normal",
  54055. height: math.unit(6 + 3/12, "feet"),
  54056. default: true
  54057. },
  54058. ]
  54059. ))
  54060. characterMakers.push(() => makeCharacter(
  54061. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54062. {
  54063. front: {
  54064. height: math.unit(16 + 8/12, "feet"),
  54065. weight: math.unit(9000, "lb"),
  54066. name: "Front",
  54067. image: {
  54068. source: "./media/characters/lokuto-takama/front.svg",
  54069. extra: 1774/1632,
  54070. bottom: 147/1921
  54071. },
  54072. extraAttributes: {
  54073. "bustWidth": {
  54074. name: "Bust Width",
  54075. power: 1,
  54076. type: "length",
  54077. base: math.unit(2.4, "meters")
  54078. },
  54079. "breastWeight": {
  54080. name: "Breast Weight",
  54081. power: 3,
  54082. type: "mass",
  54083. base: math.unit(1000, "kg")
  54084. },
  54085. }
  54086. },
  54087. },
  54088. [
  54089. {
  54090. name: "Normal",
  54091. height: math.unit(16 + 8/12, "feet"),
  54092. default: true
  54093. },
  54094. ]
  54095. ))
  54096. characterMakers.push(() => makeCharacter(
  54097. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54098. {
  54099. front: {
  54100. height: math.unit(10, "cm"),
  54101. weight: math.unit(850, "grams"),
  54102. name: "Front",
  54103. image: {
  54104. source: "./media/characters/owak-bone/front.svg",
  54105. extra: 1965/1801,
  54106. bottom: 31/1996
  54107. }
  54108. },
  54109. },
  54110. [
  54111. {
  54112. name: "Normal",
  54113. height: math.unit(10, "cm"),
  54114. default: true
  54115. },
  54116. ]
  54117. ))
  54118. characterMakers.push(() => makeCharacter(
  54119. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54120. {
  54121. front: {
  54122. height: math.unit(2 + 6/12, "feet"),
  54123. weight: math.unit(9, "lb"),
  54124. name: "Front",
  54125. image: {
  54126. source: "./media/characters/muffin/front.svg",
  54127. extra: 1220/1195,
  54128. bottom: 84/1304
  54129. }
  54130. },
  54131. },
  54132. [
  54133. {
  54134. name: "Normal",
  54135. height: math.unit(2 + 6/12, "feet"),
  54136. default: true
  54137. },
  54138. ]
  54139. ))
  54140. characterMakers.push(() => makeCharacter(
  54141. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54142. {
  54143. front: {
  54144. height: math.unit(7, "feet"),
  54145. name: "Front",
  54146. image: {
  54147. source: "./media/characters/chimera/front.svg",
  54148. extra: 1752/1614,
  54149. bottom: 68/1820
  54150. }
  54151. },
  54152. },
  54153. [
  54154. {
  54155. name: "Normal",
  54156. height: math.unit(7, "feet")
  54157. },
  54158. {
  54159. name: "Gigamacro",
  54160. height: math.unit(2.9, "gigameters"),
  54161. default: true
  54162. },
  54163. {
  54164. name: "Universal",
  54165. height: math.unit(1.56e26, "yottameters")
  54166. },
  54167. ]
  54168. ))
  54169. characterMakers.push(() => makeCharacter(
  54170. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54171. {
  54172. front: {
  54173. height: math.unit(3, "feet"),
  54174. weight: math.unit(20, "lb"),
  54175. name: "Front",
  54176. image: {
  54177. source: "./media/characters/kit-fennec-fox/front.svg",
  54178. extra: 1027/932,
  54179. bottom: 16/1043
  54180. }
  54181. },
  54182. back: {
  54183. height: math.unit(3, "feet"),
  54184. weight: math.unit(20, "lb"),
  54185. name: "Back",
  54186. image: {
  54187. source: "./media/characters/kit-fennec-fox/back.svg",
  54188. extra: 1027/932,
  54189. bottom: 16/1043
  54190. }
  54191. },
  54192. },
  54193. [
  54194. {
  54195. name: "Normal",
  54196. height: math.unit(3, "feet"),
  54197. default: true
  54198. },
  54199. ]
  54200. ))
  54201. characterMakers.push(() => makeCharacter(
  54202. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54203. {
  54204. front: {
  54205. height: math.unit(167, "cm"),
  54206. name: "Front",
  54207. image: {
  54208. source: "./media/characters/blue-otter/front.svg",
  54209. extra: 1951/1920,
  54210. bottom: 31/1982
  54211. }
  54212. },
  54213. },
  54214. [
  54215. {
  54216. name: "Otter-Sized",
  54217. height: math.unit(100, "cm")
  54218. },
  54219. {
  54220. name: "Normal",
  54221. height: math.unit(167, "cm"),
  54222. default: true
  54223. },
  54224. ]
  54225. ))
  54226. characterMakers.push(() => makeCharacter(
  54227. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54228. {
  54229. front: {
  54230. height: math.unit(4 + 4/12, "feet"),
  54231. name: "Front",
  54232. image: {
  54233. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54234. extra: 1072/1067,
  54235. bottom: 117/1189
  54236. }
  54237. },
  54238. back: {
  54239. height: math.unit(4 + 4/12, "feet"),
  54240. name: "Back",
  54241. image: {
  54242. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54243. extra: 1135/1129,
  54244. bottom: 57/1192
  54245. }
  54246. },
  54247. head: {
  54248. height: math.unit(1.77, "feet"),
  54249. name: "Head",
  54250. image: {
  54251. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54252. }
  54253. },
  54254. },
  54255. [
  54256. {
  54257. name: "Normal",
  54258. height: math.unit(4 + 4/12, "feet"),
  54259. default: true
  54260. },
  54261. ]
  54262. ))
  54263. characterMakers.push(() => makeCharacter(
  54264. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54265. {
  54266. front: {
  54267. height: math.unit(2, "inches"),
  54268. name: "Front",
  54269. image: {
  54270. source: "./media/characters/carley-hartford/front.svg",
  54271. extra: 1035/988,
  54272. bottom: 23/1058
  54273. }
  54274. },
  54275. back: {
  54276. height: math.unit(2, "inches"),
  54277. name: "Back",
  54278. image: {
  54279. source: "./media/characters/carley-hartford/back.svg",
  54280. extra: 1035/988,
  54281. bottom: 23/1058
  54282. }
  54283. },
  54284. dressed: {
  54285. height: math.unit(2, "inches"),
  54286. name: "Dressed",
  54287. image: {
  54288. source: "./media/characters/carley-hartford/dressed.svg",
  54289. extra: 651/620,
  54290. bottom: 0/651
  54291. }
  54292. },
  54293. },
  54294. [
  54295. {
  54296. name: "Micro",
  54297. height: math.unit(2, "inches"),
  54298. default: true
  54299. },
  54300. {
  54301. name: "Macro",
  54302. height: math.unit(6 + 3/12, "feet")
  54303. },
  54304. ]
  54305. ))
  54306. characterMakers.push(() => makeCharacter(
  54307. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54308. {
  54309. front: {
  54310. height: math.unit(2 + 3/12, "feet"),
  54311. weight: math.unit(15 + 7/16, "lb"),
  54312. name: "Front",
  54313. image: {
  54314. source: "./media/characters/duke/front.svg",
  54315. extra: 910/815,
  54316. bottom: 30/940
  54317. }
  54318. },
  54319. },
  54320. [
  54321. {
  54322. name: "Normal",
  54323. height: math.unit(2 + 3/12, "feet"),
  54324. default: true
  54325. },
  54326. ]
  54327. ))
  54328. characterMakers.push(() => makeCharacter(
  54329. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54330. {
  54331. front: {
  54332. height: math.unit(5 + 4/12, "feet"),
  54333. weight: math.unit(156, "lb"),
  54334. name: "Front",
  54335. image: {
  54336. source: "./media/characters/dein/front.svg",
  54337. extra: 855/815,
  54338. bottom: 48/903
  54339. }
  54340. },
  54341. side: {
  54342. height: math.unit(5 + 4/12, "feet"),
  54343. weight: math.unit(156, "lb"),
  54344. name: "side",
  54345. image: {
  54346. source: "./media/characters/dein/side.svg",
  54347. extra: 846/803,
  54348. bottom: 25/871
  54349. }
  54350. },
  54351. maw: {
  54352. height: math.unit(1.45, "feet"),
  54353. name: "Maw",
  54354. image: {
  54355. source: "./media/characters/dein/maw.svg"
  54356. }
  54357. },
  54358. },
  54359. [
  54360. {
  54361. name: "Ferret Sized",
  54362. height: math.unit(2 + 5/12, "feet")
  54363. },
  54364. {
  54365. name: "Normal",
  54366. height: math.unit(5 + 4/12, "feet"),
  54367. default: true
  54368. },
  54369. ]
  54370. ))
  54371. characterMakers.push(() => makeCharacter(
  54372. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54373. {
  54374. front: {
  54375. height: math.unit(84 + 8/12, "feet"),
  54376. weight: math.unit(942180, "lb"),
  54377. name: "Front",
  54378. image: {
  54379. source: "./media/characters/daurine-arima/front.svg",
  54380. extra: 1989/1782,
  54381. bottom: 37/2026
  54382. }
  54383. },
  54384. side: {
  54385. height: math.unit(84 + 8/12, "feet"),
  54386. weight: math.unit(942180, "lb"),
  54387. name: "Side",
  54388. image: {
  54389. source: "./media/characters/daurine-arima/side.svg",
  54390. extra: 1997/1790,
  54391. bottom: 21/2018
  54392. }
  54393. },
  54394. back: {
  54395. height: math.unit(84 + 8/12, "feet"),
  54396. weight: math.unit(942180, "lb"),
  54397. name: "Back",
  54398. image: {
  54399. source: "./media/characters/daurine-arima/back.svg",
  54400. extra: 1992/1800,
  54401. bottom: 12/2004
  54402. }
  54403. },
  54404. head: {
  54405. height: math.unit(15.5, "feet"),
  54406. name: "Head",
  54407. image: {
  54408. source: "./media/characters/daurine-arima/head.svg"
  54409. }
  54410. },
  54411. headAlt: {
  54412. height: math.unit(19.19, "feet"),
  54413. name: "Head (Alt)",
  54414. image: {
  54415. source: "./media/characters/daurine-arima/head-alt.svg"
  54416. }
  54417. },
  54418. },
  54419. [
  54420. {
  54421. name: "Minimum height",
  54422. height: math.unit(8 + 10/12, "feet")
  54423. },
  54424. {
  54425. name: "Comfort height",
  54426. height: math.unit(19 + 6 /12, "feet")
  54427. },
  54428. {
  54429. name: "\"Normal\" height",
  54430. height: math.unit(28 + 10/12, "feet")
  54431. },
  54432. {
  54433. name: "Base height",
  54434. height: math.unit(84 + 8/12, "feet"),
  54435. default: true
  54436. },
  54437. {
  54438. name: "Mini-macro",
  54439. height: math.unit(2360, "feet")
  54440. },
  54441. {
  54442. name: "Macro",
  54443. height: math.unit(10, "miles")
  54444. },
  54445. {
  54446. name: "Goddess",
  54447. height: math.unit(9.99e40, "yottameters")
  54448. },
  54449. ]
  54450. ))
  54451. characterMakers.push(() => makeCharacter(
  54452. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54453. {
  54454. front: {
  54455. height: math.unit(2.3, "meters"),
  54456. name: "Front",
  54457. image: {
  54458. source: "./media/characters/cilenomon/front.svg",
  54459. extra: 1963/1778,
  54460. bottom: 54/2017
  54461. }
  54462. },
  54463. },
  54464. [
  54465. {
  54466. name: "Normal",
  54467. height: math.unit(2.3, "meters"),
  54468. default: true
  54469. },
  54470. {
  54471. name: "Big",
  54472. height: math.unit(5, "meters")
  54473. },
  54474. {
  54475. name: "Macro",
  54476. height: math.unit(30, "meters")
  54477. },
  54478. {
  54479. name: "True",
  54480. height: math.unit(1, "universe")
  54481. },
  54482. ]
  54483. ))
  54484. characterMakers.push(() => makeCharacter(
  54485. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54486. {
  54487. front: {
  54488. height: math.unit(5, "feet"),
  54489. name: "Front",
  54490. image: {
  54491. source: "./media/characters/sen-mink/front.svg",
  54492. extra: 1727/1675,
  54493. bottom: 35/1762
  54494. }
  54495. },
  54496. },
  54497. [
  54498. {
  54499. name: "Normal",
  54500. height: math.unit(5, "feet"),
  54501. default: true
  54502. },
  54503. ]
  54504. ))
  54505. characterMakers.push(() => makeCharacter(
  54506. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54507. {
  54508. front: {
  54509. height: math.unit(5.42999, "feet"),
  54510. weight: math.unit(100, "lb"),
  54511. name: "Front",
  54512. image: {
  54513. source: "./media/characters/ophois/front.svg",
  54514. extra: 1429/1286,
  54515. bottom: 60/1489
  54516. }
  54517. },
  54518. },
  54519. [
  54520. {
  54521. name: "Normal",
  54522. height: math.unit(5.42999, "feet"),
  54523. default: true
  54524. },
  54525. ]
  54526. ))
  54527. characterMakers.push(() => makeCharacter(
  54528. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54529. {
  54530. front: {
  54531. height: math.unit(2, "meters"),
  54532. name: "Front",
  54533. image: {
  54534. source: "./media/characters/riley/front.svg",
  54535. extra: 1779/1754,
  54536. bottom: 139/1918
  54537. }
  54538. },
  54539. },
  54540. [
  54541. {
  54542. name: "Normal",
  54543. height: math.unit(2, "meters"),
  54544. default: true
  54545. },
  54546. ]
  54547. ))
  54548. characterMakers.push(() => makeCharacter(
  54549. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54550. {
  54551. front: {
  54552. height: math.unit(6 + 2/12, "feet"),
  54553. weight: math.unit(195, "lb"),
  54554. preyCapacity: math.unit(6, "people"),
  54555. name: "Front",
  54556. image: {
  54557. source: "./media/characters/shuken-flash/front.svg",
  54558. extra: 1905/1739,
  54559. bottom: 65/1970
  54560. }
  54561. },
  54562. back: {
  54563. height: math.unit(6 + 2/12, "feet"),
  54564. weight: math.unit(195, "lb"),
  54565. preyCapacity: math.unit(6, "people"),
  54566. name: "Back",
  54567. image: {
  54568. source: "./media/characters/shuken-flash/back.svg",
  54569. extra: 1912/1751,
  54570. bottom: 13/1925
  54571. }
  54572. },
  54573. },
  54574. [
  54575. {
  54576. name: "Normal",
  54577. height: math.unit(6 + 2/12, "feet"),
  54578. default: true
  54579. },
  54580. ]
  54581. ))
  54582. characterMakers.push(() => makeCharacter(
  54583. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54584. {
  54585. front: {
  54586. height: math.unit(5 + 9/12, "feet"),
  54587. weight: math.unit(150, "lb"),
  54588. name: "Front",
  54589. image: {
  54590. source: "./media/characters/plat/front.svg",
  54591. extra: 1816/1703,
  54592. bottom: 43/1859
  54593. }
  54594. },
  54595. side: {
  54596. height: math.unit(5 + 9/12, "feet"),
  54597. weight: math.unit(300, "lb"),
  54598. name: "Side",
  54599. image: {
  54600. source: "./media/characters/plat/side.svg",
  54601. extra: 1824/1699,
  54602. bottom: 18/1842
  54603. }
  54604. },
  54605. },
  54606. [
  54607. {
  54608. name: "Normal",
  54609. height: math.unit(5 + 9/12, "feet"),
  54610. default: true
  54611. },
  54612. ]
  54613. ))
  54614. characterMakers.push(() => makeCharacter(
  54615. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54616. {
  54617. front: {
  54618. height: math.unit(9, "feet"),
  54619. weight: math.unit(1800, "lb"),
  54620. name: "Front",
  54621. image: {
  54622. source: "./media/characters/elaine/front.svg",
  54623. extra: 1833/1354,
  54624. bottom: 25/1858
  54625. }
  54626. },
  54627. back: {
  54628. height: math.unit(8.8, "feet"),
  54629. weight: math.unit(1800, "lb"),
  54630. name: "Back",
  54631. image: {
  54632. source: "./media/characters/elaine/back.svg",
  54633. extra: 1641/1233,
  54634. bottom: 53/1694
  54635. }
  54636. },
  54637. },
  54638. [
  54639. {
  54640. name: "Normal",
  54641. height: math.unit(9, "feet"),
  54642. default: true
  54643. },
  54644. ]
  54645. ))
  54646. characterMakers.push(() => makeCharacter(
  54647. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54648. {
  54649. front: {
  54650. height: math.unit(17 + 9/12, "feet"),
  54651. weight: math.unit(8000, "lb"),
  54652. name: "Front",
  54653. image: {
  54654. source: "./media/characters/vera-raven/front.svg",
  54655. extra: 1457/1412,
  54656. bottom: 121/1578
  54657. }
  54658. },
  54659. side: {
  54660. height: math.unit(17 + 9/12, "feet"),
  54661. weight: math.unit(8000, "lb"),
  54662. name: "Side",
  54663. image: {
  54664. source: "./media/characters/vera-raven/side.svg",
  54665. extra: 1510/1464,
  54666. bottom: 54/1564
  54667. }
  54668. },
  54669. },
  54670. [
  54671. {
  54672. name: "Normal",
  54673. height: math.unit(17 + 9/12, "feet"),
  54674. default: true
  54675. },
  54676. ]
  54677. ))
  54678. characterMakers.push(() => makeCharacter(
  54679. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54680. {
  54681. dressed: {
  54682. height: math.unit(6 + 9/12, "feet"),
  54683. name: "Dressed",
  54684. image: {
  54685. source: "./media/characters/nakisha/dressed.svg",
  54686. extra: 1909/1757,
  54687. bottom: 48/1957
  54688. }
  54689. },
  54690. nude: {
  54691. height: math.unit(6 + 9/12, "feet"),
  54692. name: "Nude",
  54693. image: {
  54694. source: "./media/characters/nakisha/nude.svg",
  54695. extra: 1917/1765,
  54696. bottom: 34/1951
  54697. }
  54698. },
  54699. },
  54700. [
  54701. {
  54702. name: "Normal",
  54703. height: math.unit(6 + 9/12, "feet"),
  54704. default: true
  54705. },
  54706. ]
  54707. ))
  54708. characterMakers.push(() => makeCharacter(
  54709. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54710. {
  54711. front: {
  54712. height: math.unit(87, "meters"),
  54713. name: "Front",
  54714. image: {
  54715. source: "./media/characters/serafin/front.svg",
  54716. extra: 1919/1776,
  54717. bottom: 65/1984
  54718. }
  54719. },
  54720. },
  54721. [
  54722. {
  54723. name: "Normal",
  54724. height: math.unit(87, "meters"),
  54725. default: true
  54726. },
  54727. ]
  54728. ))
  54729. characterMakers.push(() => makeCharacter(
  54730. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54731. {
  54732. front: {
  54733. height: math.unit(6, "feet"),
  54734. weight: math.unit(200, "lb"),
  54735. name: "Front",
  54736. image: {
  54737. source: "./media/characters/poptart/front.svg",
  54738. extra: 615/583,
  54739. bottom: 23/638
  54740. }
  54741. },
  54742. back: {
  54743. height: math.unit(6, "feet"),
  54744. weight: math.unit(200, "lb"),
  54745. name: "Back",
  54746. image: {
  54747. source: "./media/characters/poptart/back.svg",
  54748. extra: 617/584,
  54749. bottom: 22/639
  54750. }
  54751. },
  54752. frontNsfw: {
  54753. height: math.unit(6, "feet"),
  54754. weight: math.unit(200, "lb"),
  54755. name: "Front (NSFW)",
  54756. image: {
  54757. source: "./media/characters/poptart/front-nsfw.svg",
  54758. extra: 615/583,
  54759. bottom: 23/638
  54760. }
  54761. },
  54762. backNsfw: {
  54763. height: math.unit(6, "feet"),
  54764. weight: math.unit(200, "lb"),
  54765. name: "Back (NSFW)",
  54766. image: {
  54767. source: "./media/characters/poptart/back-nsfw.svg",
  54768. extra: 617/584,
  54769. bottom: 22/639
  54770. }
  54771. },
  54772. hand: {
  54773. height: math.unit(1.14, "feet"),
  54774. name: "Hand",
  54775. image: {
  54776. source: "./media/characters/poptart/hand.svg"
  54777. }
  54778. },
  54779. foot: {
  54780. height: math.unit(1.5, "feet"),
  54781. name: "Foot",
  54782. image: {
  54783. source: "./media/characters/poptart/foot.svg"
  54784. }
  54785. },
  54786. },
  54787. [
  54788. {
  54789. name: "Normal",
  54790. height: math.unit(6, "feet"),
  54791. default: true
  54792. },
  54793. {
  54794. name: "Grande",
  54795. height: math.unit(350, "feet")
  54796. },
  54797. {
  54798. name: "Massif",
  54799. height: math.unit(967, "feet")
  54800. },
  54801. ]
  54802. ))
  54803. characterMakers.push(() => makeCharacter(
  54804. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54805. {
  54806. hyenaSide: {
  54807. height: math.unit(120, "cm"),
  54808. weight: math.unit(120, "lb"),
  54809. name: "Side",
  54810. image: {
  54811. source: "./media/characters/trance/hyena-side.svg",
  54812. extra: 998/904,
  54813. bottom: 76/1074
  54814. }
  54815. },
  54816. },
  54817. [
  54818. {
  54819. name: "Normal",
  54820. height: math.unit(120, "cm"),
  54821. default: true
  54822. },
  54823. {
  54824. name: "Dire",
  54825. height: math.unit(230, "cm")
  54826. },
  54827. {
  54828. name: "Macro",
  54829. height: math.unit(37, "feet")
  54830. },
  54831. ]
  54832. ))
  54833. characterMakers.push(() => makeCharacter(
  54834. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54835. {
  54836. front: {
  54837. height: math.unit(6 + 3/12, "feet"),
  54838. name: "Front",
  54839. image: {
  54840. source: "./media/characters/michael-berretta/front.svg",
  54841. extra: 515/494,
  54842. bottom: 20/535
  54843. }
  54844. },
  54845. back: {
  54846. height: math.unit(6 + 3/12, "feet"),
  54847. name: "Back",
  54848. image: {
  54849. source: "./media/characters/michael-berretta/back.svg",
  54850. extra: 520/497,
  54851. bottom: 21/541
  54852. }
  54853. },
  54854. frontNsfw: {
  54855. height: math.unit(6 + 3/12, "feet"),
  54856. name: "Front (NSFW)",
  54857. image: {
  54858. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54859. extra: 515/494,
  54860. bottom: 20/535
  54861. }
  54862. },
  54863. dick: {
  54864. height: math.unit(1, "feet"),
  54865. name: "Dick",
  54866. image: {
  54867. source: "./media/characters/michael-berretta/dick.svg"
  54868. }
  54869. },
  54870. },
  54871. [
  54872. {
  54873. name: "Normal",
  54874. height: math.unit(6 + 3/12, "feet"),
  54875. default: true
  54876. },
  54877. {
  54878. name: "Big",
  54879. height: math.unit(12, "feet")
  54880. },
  54881. {
  54882. name: "Macro",
  54883. height: math.unit(187.5, "feet")
  54884. },
  54885. ]
  54886. ))
  54887. characterMakers.push(() => makeCharacter(
  54888. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54889. {
  54890. front: {
  54891. height: math.unit(9 + 9/12, "feet"),
  54892. weight: math.unit(1244, "lb"),
  54893. name: "Front",
  54894. image: {
  54895. source: "./media/characters/stella-edgecomb/front.svg",
  54896. extra: 1835/1706,
  54897. bottom: 49/1884
  54898. }
  54899. },
  54900. pen: {
  54901. height: math.unit(0.95, "feet"),
  54902. name: "Pen",
  54903. image: {
  54904. source: "./media/characters/stella-edgecomb/pen.svg"
  54905. }
  54906. },
  54907. },
  54908. [
  54909. {
  54910. name: "Cozy Bear",
  54911. height: math.unit(0.5, "inches")
  54912. },
  54913. {
  54914. name: "Normal",
  54915. height: math.unit(9 + 9/12, "feet"),
  54916. default: true
  54917. },
  54918. {
  54919. name: "Giga Bear",
  54920. height: math.unit(1, "mile")
  54921. },
  54922. {
  54923. name: "Great Bear",
  54924. height: math.unit(53, "miles")
  54925. },
  54926. {
  54927. name: "Goddess Bear",
  54928. height: math.unit(40000, "miles")
  54929. },
  54930. {
  54931. name: "Sun Bear",
  54932. height: math.unit(900000, "miles")
  54933. },
  54934. ]
  54935. ))
  54936. characterMakers.push(() => makeCharacter(
  54937. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54938. {
  54939. anthroFront: {
  54940. height: math.unit(556, "cm"),
  54941. weight: math.unit(2650, "kg"),
  54942. preyCapacity: math.unit(3, "people"),
  54943. name: "Front",
  54944. image: {
  54945. source: "./media/characters/ash´iika/front.svg",
  54946. extra: 710/673,
  54947. bottom: 15/725
  54948. },
  54949. form: "anthro",
  54950. default: true
  54951. },
  54952. anthroSide: {
  54953. height: math.unit(556, "cm"),
  54954. weight: math.unit(2650, "kg"),
  54955. preyCapacity: math.unit(3, "people"),
  54956. name: "Side",
  54957. image: {
  54958. source: "./media/characters/ash´iika/side.svg",
  54959. extra: 696/676,
  54960. bottom: 13/709
  54961. },
  54962. form: "anthro"
  54963. },
  54964. anthroDressed: {
  54965. height: math.unit(556, "cm"),
  54966. weight: math.unit(2650, "kg"),
  54967. preyCapacity: math.unit(3, "people"),
  54968. name: "Dressed",
  54969. image: {
  54970. source: "./media/characters/ash´iika/dressed.svg",
  54971. extra: 710/673,
  54972. bottom: 15/725
  54973. },
  54974. form: "anthro"
  54975. },
  54976. anthroHead: {
  54977. height: math.unit(3.5, "feet"),
  54978. name: "Head",
  54979. image: {
  54980. source: "./media/characters/ash´iika/head.svg",
  54981. extra: 348/291,
  54982. bottom: 45/393
  54983. },
  54984. form: "anthro"
  54985. },
  54986. feralSide: {
  54987. height: math.unit(870, "cm"),
  54988. weight: math.unit(17500, "kg"),
  54989. preyCapacity: math.unit(15, "people"),
  54990. name: "Side",
  54991. image: {
  54992. source: "./media/characters/ash´iika/feral.svg",
  54993. extra: 595/199,
  54994. bottom: 7/602
  54995. },
  54996. form: "feral",
  54997. default: true,
  54998. },
  54999. },
  55000. [
  55001. {
  55002. name: "Normal",
  55003. height: math.unit(556, "cm"),
  55004. default: true,
  55005. form: "anthro"
  55006. },
  55007. {
  55008. name: "Macro",
  55009. height: math.unit(88, "meters"),
  55010. form: "anthro"
  55011. },
  55012. {
  55013. name: "Normal",
  55014. height: math.unit(870, "cm"),
  55015. default: true,
  55016. form: "feral"
  55017. },
  55018. {
  55019. name: "Large",
  55020. height: math.unit(25, "meters"),
  55021. form: "feral"
  55022. },
  55023. ],
  55024. {
  55025. "anthro": {
  55026. name: "Anthro",
  55027. default: true
  55028. },
  55029. "feral": {
  55030. name: "Feral",
  55031. },
  55032. }
  55033. ))
  55034. characterMakers.push(() => makeCharacter(
  55035. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55036. {
  55037. front: {
  55038. height: math.unit(10, "feet"),
  55039. weight: math.unit(800, "lb"),
  55040. name: "Front",
  55041. image: {
  55042. source: "./media/characters/yen/front.svg",
  55043. extra: 443/411,
  55044. bottom: 6/449
  55045. }
  55046. },
  55047. sleeping: {
  55048. height: math.unit(10, "feet"),
  55049. weight: math.unit(800, "lb"),
  55050. name: "Sleeping",
  55051. image: {
  55052. source: "./media/characters/yen/sleeping.svg",
  55053. extra: 470/422,
  55054. bottom: 0/470
  55055. }
  55056. },
  55057. head: {
  55058. height: math.unit(2.2, "feet"),
  55059. name: "Head",
  55060. image: {
  55061. source: "./media/characters/yen/head.svg"
  55062. }
  55063. },
  55064. headAlt: {
  55065. height: math.unit(2.1, "feet"),
  55066. name: "Head (Alt)",
  55067. image: {
  55068. source: "./media/characters/yen/head-alt.svg"
  55069. }
  55070. },
  55071. },
  55072. [
  55073. {
  55074. name: "Normal",
  55075. height: math.unit(10, "feet"),
  55076. default: true
  55077. },
  55078. ]
  55079. ))
  55080. characterMakers.push(() => makeCharacter(
  55081. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55082. {
  55083. front: {
  55084. height: math.unit(12, "feet"),
  55085. name: "Front",
  55086. image: {
  55087. source: "./media/characters/citra/front.svg",
  55088. extra: 1950/1710,
  55089. bottom: 47/1997
  55090. }
  55091. },
  55092. },
  55093. [
  55094. {
  55095. name: "Normal",
  55096. height: math.unit(12, "feet"),
  55097. default: true
  55098. },
  55099. ]
  55100. ))
  55101. characterMakers.push(() => makeCharacter(
  55102. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55103. {
  55104. side: {
  55105. height: math.unit(7 + 10/12, "feet"),
  55106. name: "Side",
  55107. image: {
  55108. source: "./media/characters/sholstim/side.svg",
  55109. extra: 786/682,
  55110. bottom: 40/826
  55111. }
  55112. },
  55113. },
  55114. [
  55115. {
  55116. name: "Normal",
  55117. height: math.unit(7 + 10/12, "feet"),
  55118. default: true
  55119. },
  55120. ]
  55121. ))
  55122. characterMakers.push(() => makeCharacter(
  55123. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55124. {
  55125. front: {
  55126. height: math.unit(3.10, "meters"),
  55127. name: "Front",
  55128. image: {
  55129. source: "./media/characters/aggyn/front.svg",
  55130. extra: 1188/963,
  55131. bottom: 24/1212
  55132. }
  55133. },
  55134. },
  55135. [
  55136. {
  55137. name: "Normal",
  55138. height: math.unit(3.10, "meters"),
  55139. default: true
  55140. },
  55141. ]
  55142. ))
  55143. characterMakers.push(() => makeCharacter(
  55144. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55145. {
  55146. front: {
  55147. height: math.unit(7 + 5/12, "feet"),
  55148. weight: math.unit(687, "lb"),
  55149. name: "Front",
  55150. image: {
  55151. source: "./media/characters/alsandair-hergenroether/front.svg",
  55152. extra: 1251/1186,
  55153. bottom: 75/1326
  55154. }
  55155. },
  55156. back: {
  55157. height: math.unit(7 + 5/12, "feet"),
  55158. weight: math.unit(687, "lb"),
  55159. name: "Back",
  55160. image: {
  55161. source: "./media/characters/alsandair-hergenroether/back.svg",
  55162. extra: 1290/1229,
  55163. bottom: 17/1307
  55164. }
  55165. },
  55166. },
  55167. [
  55168. {
  55169. name: "Max Compression",
  55170. height: math.unit(7 + 5/12, "feet"),
  55171. default: true
  55172. },
  55173. {
  55174. name: "\"Normal\"",
  55175. height: math.unit(2, "universes")
  55176. },
  55177. ]
  55178. ))
  55179. characterMakers.push(() => makeCharacter(
  55180. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55181. {
  55182. front: {
  55183. height: math.unit(4 + 1/12, "feet"),
  55184. weight: math.unit(92, "lb"),
  55185. name: "Front",
  55186. image: {
  55187. source: "./media/characters/ie/front.svg",
  55188. extra: 1585/1352,
  55189. bottom: 91/1676
  55190. }
  55191. },
  55192. },
  55193. [
  55194. {
  55195. name: "Normal",
  55196. height: math.unit(4 + 1/12, "feet"),
  55197. default: true
  55198. },
  55199. ]
  55200. ))
  55201. characterMakers.push(() => makeCharacter(
  55202. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55203. {
  55204. anthro: {
  55205. height: math.unit(6, "feet"),
  55206. weight: math.unit(150, "lb"),
  55207. name: "Front",
  55208. image: {
  55209. source: "./media/characters/willow/anthro.svg",
  55210. extra: 1073/986,
  55211. bottom: 34/1107
  55212. },
  55213. form: "anthro",
  55214. default: true
  55215. },
  55216. taur: {
  55217. height: math.unit(6, "feet"),
  55218. weight: math.unit(150, "lb"),
  55219. name: "Side",
  55220. image: {
  55221. source: "./media/characters/willow/taur.svg",
  55222. extra: 647/512,
  55223. bottom: 136/783
  55224. },
  55225. form: "taur",
  55226. default: true
  55227. },
  55228. },
  55229. [
  55230. {
  55231. name: "Humanoid",
  55232. height: math.unit(2.7, "meters"),
  55233. form: "anthro"
  55234. },
  55235. {
  55236. name: "Normal",
  55237. height: math.unit(9, "meters"),
  55238. form: "anthro",
  55239. default: true
  55240. },
  55241. {
  55242. name: "Humanoid",
  55243. height: math.unit(2.1, "meters"),
  55244. form: "taur"
  55245. },
  55246. {
  55247. name: "Normal",
  55248. height: math.unit(7, "meters"),
  55249. form: "taur",
  55250. default: true
  55251. },
  55252. ],
  55253. {
  55254. "anthro": {
  55255. name: "Anthro",
  55256. default: true
  55257. },
  55258. "taur": {
  55259. name: "Taur",
  55260. },
  55261. }
  55262. ))
  55263. characterMakers.push(() => makeCharacter(
  55264. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55265. {
  55266. front: {
  55267. height: math.unit(2 + 5/12, "feet"),
  55268. name: "Front",
  55269. image: {
  55270. source: "./media/characters/kyan/front.svg",
  55271. extra: 460/334,
  55272. bottom: 23/483
  55273. },
  55274. extraAttributes: {
  55275. "toeLength": {
  55276. name: "Toe Length",
  55277. power: 1,
  55278. type: "length",
  55279. base: math.unit(7, "cm")
  55280. },
  55281. "toeclawLength": {
  55282. name: "Toeclaw Length",
  55283. power: 1,
  55284. type: "length",
  55285. base: math.unit(4.7, "cm")
  55286. },
  55287. "earHeight": {
  55288. name: "Ear Height",
  55289. power: 1,
  55290. type: "length",
  55291. base: math.unit(14.1, "cm")
  55292. },
  55293. }
  55294. },
  55295. paws: {
  55296. height: math.unit(0.45, "feet"),
  55297. name: "Paws",
  55298. image: {
  55299. source: "./media/characters/kyan/paws.svg",
  55300. extra: 581/581,
  55301. bottom: 114/695
  55302. }
  55303. },
  55304. },
  55305. [
  55306. {
  55307. name: "Normal",
  55308. height: math.unit(2 + 5/12, "feet"),
  55309. default: true
  55310. },
  55311. ]
  55312. ))
  55313. characterMakers.push(() => makeCharacter(
  55314. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55315. {
  55316. front: {
  55317. height: math.unit(2 + 2/3, "feet"),
  55318. name: "Front",
  55319. image: {
  55320. source: "./media/characters/xazzon/front.svg",
  55321. extra: 1109/984,
  55322. bottom: 42/1151
  55323. }
  55324. },
  55325. back: {
  55326. height: math.unit(2 + 2/3, "feet"),
  55327. name: "Back",
  55328. image: {
  55329. source: "./media/characters/xazzon/back.svg",
  55330. extra: 1095/971,
  55331. bottom: 23/1118
  55332. }
  55333. },
  55334. },
  55335. [
  55336. {
  55337. name: "Normal",
  55338. height: math.unit(2 + 2/3, "feet"),
  55339. default: true
  55340. },
  55341. ]
  55342. ))
  55343. characterMakers.push(() => makeCharacter(
  55344. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55345. {
  55346. front: {
  55347. height: math.unit(8, "feet"),
  55348. weight: math.unit(300, "lb"),
  55349. name: "Front",
  55350. image: {
  55351. source: "./media/characters/khyla-shadowsong/front.svg",
  55352. extra: 861/798,
  55353. bottom: 32/893
  55354. }
  55355. },
  55356. side: {
  55357. height: math.unit(8, "feet"),
  55358. weight: math.unit(300, "lb"),
  55359. name: "Side",
  55360. image: {
  55361. source: "./media/characters/khyla-shadowsong/side.svg",
  55362. extra: 790/750,
  55363. bottom: 87/877
  55364. }
  55365. },
  55366. back: {
  55367. height: math.unit(8, "feet"),
  55368. weight: math.unit(300, "lb"),
  55369. name: "Back",
  55370. image: {
  55371. source: "./media/characters/khyla-shadowsong/back.svg",
  55372. extra: 855/808,
  55373. bottom: 14/869
  55374. }
  55375. },
  55376. head: {
  55377. height: math.unit(2.7, "feet"),
  55378. name: "Head",
  55379. image: {
  55380. source: "./media/characters/khyla-shadowsong/head.svg"
  55381. }
  55382. },
  55383. },
  55384. [
  55385. {
  55386. name: "Micro",
  55387. height: math.unit(6, "inches")
  55388. },
  55389. {
  55390. name: "Normal",
  55391. height: math.unit(8, "feet"),
  55392. default: true
  55393. },
  55394. ]
  55395. ))
  55396. characterMakers.push(() => makeCharacter(
  55397. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55398. {
  55399. hyperFront: {
  55400. height: math.unit(9 + 4/12, "feet"),
  55401. weight: math.unit(2000, "lb"),
  55402. name: "Front",
  55403. image: {
  55404. source: "./media/characters/tiden/hyper-front.svg",
  55405. extra: 400/382,
  55406. bottom: 6/406
  55407. },
  55408. form: "hyper",
  55409. },
  55410. regularFront: {
  55411. height: math.unit(7 + 10/12, "feet"),
  55412. weight: math.unit(470, "lb"),
  55413. name: "Front",
  55414. image: {
  55415. source: "./media/characters/tiden/regular-front.svg",
  55416. extra: 468/442,
  55417. bottom: 6/474
  55418. },
  55419. form: "regular",
  55420. },
  55421. },
  55422. [
  55423. {
  55424. name: "Normal",
  55425. height: math.unit(9 + 4/12, "feet"),
  55426. default: true,
  55427. form: "hyper"
  55428. },
  55429. {
  55430. name: "Normal",
  55431. height: math.unit(7 + 10/12, "feet"),
  55432. default: true,
  55433. form: "regular"
  55434. },
  55435. ],
  55436. {
  55437. "hyper": {
  55438. name: "Hyper",
  55439. default: true
  55440. },
  55441. "regular": {
  55442. name: "Regular",
  55443. },
  55444. }
  55445. ))
  55446. characterMakers.push(() => makeCharacter(
  55447. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55448. {
  55449. side: {
  55450. height: math.unit(6, "feet"),
  55451. weight: math.unit(150, "lb"),
  55452. name: "Side",
  55453. image: {
  55454. source: "./media/characters/jason-crowe/side.svg",
  55455. extra: 1771/766,
  55456. bottom: 219/1990
  55457. }
  55458. },
  55459. },
  55460. [
  55461. {
  55462. name: "Pocket Gryphon",
  55463. height: math.unit(6, "cm")
  55464. },
  55465. {
  55466. name: "Raven",
  55467. height: math.unit(60, "cm")
  55468. },
  55469. {
  55470. name: "Normal",
  55471. height: math.unit(1, "meter"),
  55472. default: true
  55473. },
  55474. ]
  55475. ))
  55476. characterMakers.push(() => makeCharacter(
  55477. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55478. {
  55479. front: {
  55480. height: math.unit(9 + 6/12, "feet"),
  55481. weight: math.unit(1100, "lb"),
  55482. name: "Front",
  55483. image: {
  55484. source: "./media/characters/django/front.svg",
  55485. extra: 1231/1136,
  55486. bottom: 34/1265
  55487. }
  55488. },
  55489. side: {
  55490. height: math.unit(9 + 6/12, "feet"),
  55491. weight: math.unit(1100, "lb"),
  55492. name: "Side",
  55493. image: {
  55494. source: "./media/characters/django/side.svg",
  55495. extra: 1267/1174,
  55496. bottom: 9/1276
  55497. }
  55498. },
  55499. },
  55500. [
  55501. {
  55502. name: "Normal",
  55503. height: math.unit(9 + 6/12, "feet"),
  55504. default: true
  55505. },
  55506. {
  55507. name: "Macro 1",
  55508. height: math.unit(50, "feet")
  55509. },
  55510. {
  55511. name: "Macro 2",
  55512. height: math.unit(500, "feet")
  55513. },
  55514. {
  55515. name: "Mega Macro",
  55516. height: math.unit(5300, "feet")
  55517. },
  55518. ]
  55519. ))
  55520. characterMakers.push(() => makeCharacter(
  55521. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55522. {
  55523. frontSfw: {
  55524. height: math.unit(120, "cm"),
  55525. weight: math.unit(15, "kg"),
  55526. name: "Front (SFW)",
  55527. image: {
  55528. source: "./media/characters/eri/front-sfw.svg",
  55529. extra: 1014/939,
  55530. bottom: 37/1051
  55531. },
  55532. form: "moth",
  55533. },
  55534. frontNsfw: {
  55535. height: math.unit(120, "cm"),
  55536. weight: math.unit(15, "kg"),
  55537. name: "Front (NSFW)",
  55538. image: {
  55539. source: "./media/characters/eri/front-nsfw.svg",
  55540. extra: 1014/939,
  55541. bottom: 37/1051
  55542. },
  55543. form: "moth",
  55544. default: true
  55545. },
  55546. egg: {
  55547. height: math.unit(10, "cm"),
  55548. name: "Egg",
  55549. image: {
  55550. source: "./media/characters/eri/egg.svg"
  55551. },
  55552. form: "egg",
  55553. default: true
  55554. },
  55555. },
  55556. [
  55557. {
  55558. name: "Normal",
  55559. height: math.unit(120, "cm"),
  55560. default: true,
  55561. form: "moth"
  55562. },
  55563. {
  55564. name: "Normal",
  55565. height: math.unit(10, "cm"),
  55566. default: true,
  55567. form: "egg"
  55568. },
  55569. ],
  55570. {
  55571. "moth": {
  55572. name: "Moth",
  55573. default: true
  55574. },
  55575. "egg": {
  55576. name: "Egg",
  55577. },
  55578. }
  55579. ))
  55580. characterMakers.push(() => makeCharacter(
  55581. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55582. {
  55583. front: {
  55584. height: math.unit(200, "feet"),
  55585. name: "Front",
  55586. image: {
  55587. source: "./media/characters/bishop-dowser/front.svg",
  55588. extra: 933/868,
  55589. bottom: 106/1039
  55590. }
  55591. },
  55592. },
  55593. [
  55594. {
  55595. name: "Giant",
  55596. height: math.unit(200, "feet"),
  55597. default: true
  55598. },
  55599. ]
  55600. ))
  55601. characterMakers.push(() => makeCharacter(
  55602. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55603. {
  55604. front: {
  55605. height: math.unit(2, "meters"),
  55606. preyCapacity: math.unit(3, "people"),
  55607. name: "Front",
  55608. image: {
  55609. source: "./media/characters/fryra/front.svg",
  55610. extra: 1025/948,
  55611. bottom: 30/1055
  55612. },
  55613. extraAttributes: {
  55614. "breastVolume": {
  55615. name: "Breast Volume",
  55616. power: 3,
  55617. type: "volume",
  55618. base: math.unit(8, "liters")
  55619. },
  55620. }
  55621. },
  55622. back: {
  55623. height: math.unit(2, "meters"),
  55624. preyCapacity: math.unit(3, "people"),
  55625. name: "Back",
  55626. image: {
  55627. source: "./media/characters/fryra/back.svg",
  55628. extra: 993/938,
  55629. bottom: 38/1031
  55630. },
  55631. extraAttributes: {
  55632. "breastVolume": {
  55633. name: "Breast Volume",
  55634. power: 3,
  55635. type: "volume",
  55636. base: math.unit(8, "liters")
  55637. },
  55638. }
  55639. },
  55640. head: {
  55641. height: math.unit(1.33, "feet"),
  55642. name: "Head",
  55643. image: {
  55644. source: "./media/characters/fryra/head.svg"
  55645. }
  55646. },
  55647. maw: {
  55648. height: math.unit(0.56, "feet"),
  55649. name: "Maw",
  55650. image: {
  55651. source: "./media/characters/fryra/maw.svg"
  55652. }
  55653. },
  55654. },
  55655. [
  55656. {
  55657. name: "Micro",
  55658. height: math.unit(5, "cm")
  55659. },
  55660. {
  55661. name: "Normal",
  55662. height: math.unit(2, "meters"),
  55663. default: true
  55664. },
  55665. {
  55666. name: "Small Macro",
  55667. height: math.unit(8, "meters")
  55668. },
  55669. {
  55670. name: "Macro",
  55671. height: math.unit(50, "meters")
  55672. },
  55673. {
  55674. name: "Megamacro",
  55675. height: math.unit(1, "km")
  55676. },
  55677. {
  55678. name: "Planetary",
  55679. height: math.unit(300000, "km")
  55680. },
  55681. {
  55682. name: "Universal",
  55683. height: math.unit(250, "lightyears")
  55684. },
  55685. {
  55686. name: "Fabric of Reality",
  55687. height: math.unit(1000, "multiverses")
  55688. },
  55689. ]
  55690. ))
  55691. characterMakers.push(() => makeCharacter(
  55692. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55693. {
  55694. frontDressed: {
  55695. height: math.unit(6 + 2/12, "feet"),
  55696. name: "Front (Dressed)",
  55697. image: {
  55698. source: "./media/characters/fiera/front-dressed.svg",
  55699. extra: 1883/1793,
  55700. bottom: 70/1953
  55701. }
  55702. },
  55703. backDressed: {
  55704. height: math.unit(6 + 2/12, "feet"),
  55705. name: "Back (Dressed)",
  55706. image: {
  55707. source: "./media/characters/fiera/back-dressed.svg",
  55708. extra: 1847/1780,
  55709. bottom: 70/1917
  55710. }
  55711. },
  55712. frontNude: {
  55713. height: math.unit(6 + 2/12, "feet"),
  55714. name: "Front (Nude)",
  55715. image: {
  55716. source: "./media/characters/fiera/front-nude.svg",
  55717. extra: 1875/1785,
  55718. bottom: 66/1941
  55719. }
  55720. },
  55721. backNude: {
  55722. height: math.unit(6 + 2/12, "feet"),
  55723. name: "Back (Nude)",
  55724. image: {
  55725. source: "./media/characters/fiera/back-nude.svg",
  55726. extra: 1855/1788,
  55727. bottom: 44/1899
  55728. }
  55729. },
  55730. maw: {
  55731. height: math.unit(1.3, "feet"),
  55732. name: "Maw",
  55733. image: {
  55734. source: "./media/characters/fiera/maw.svg"
  55735. }
  55736. },
  55737. paw: {
  55738. height: math.unit(1, "feet"),
  55739. name: "Paw",
  55740. image: {
  55741. source: "./media/characters/fiera/paw.svg"
  55742. }
  55743. },
  55744. shoe: {
  55745. height: math.unit(1.05, "feet"),
  55746. name: "Shoe",
  55747. image: {
  55748. source: "./media/characters/fiera/shoe.svg"
  55749. }
  55750. },
  55751. },
  55752. [
  55753. {
  55754. name: "Normal",
  55755. height: math.unit(6 + 2/12, "feet"),
  55756. default: true
  55757. },
  55758. {
  55759. name: "Size Difference",
  55760. height: math.unit(13, "feet")
  55761. },
  55762. {
  55763. name: "Macro",
  55764. height: math.unit(60, "feet")
  55765. },
  55766. {
  55767. name: "Mega Macro",
  55768. height: math.unit(200, "feet")
  55769. },
  55770. ]
  55771. ))
  55772. characterMakers.push(() => makeCharacter(
  55773. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55774. {
  55775. back: {
  55776. height: math.unit(6, "feet"),
  55777. name: "Back",
  55778. image: {
  55779. source: "./media/characters/flare/back.svg",
  55780. extra: 1883/1765,
  55781. bottom: 32/1915
  55782. }
  55783. },
  55784. },
  55785. [
  55786. {
  55787. name: "Normal",
  55788. height: math.unit(6 + 2/12, "feet"),
  55789. default: true
  55790. },
  55791. {
  55792. name: "Size Difference",
  55793. height: math.unit(13, "feet")
  55794. },
  55795. {
  55796. name: "Macro",
  55797. height: math.unit(60, "feet")
  55798. },
  55799. {
  55800. name: "Macro 2",
  55801. height: math.unit(100, "feet")
  55802. },
  55803. {
  55804. name: "Mega Macro",
  55805. height: math.unit(200, "feet")
  55806. },
  55807. ]
  55808. ))
  55809. characterMakers.push(() => makeCharacter(
  55810. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55811. {
  55812. front: {
  55813. height: math.unit(2.2, "m"),
  55814. weight: math.unit(300, "kg"),
  55815. name: "Front",
  55816. image: {
  55817. source: "./media/characters/hanna/front.svg",
  55818. extra: 1696/1502,
  55819. bottom: 206/1902
  55820. }
  55821. },
  55822. },
  55823. [
  55824. {
  55825. name: "Humanoid",
  55826. height: math.unit(2.2, "meters")
  55827. },
  55828. {
  55829. name: "Normal",
  55830. height: math.unit(4.8, "meters"),
  55831. default: true
  55832. },
  55833. ]
  55834. ))
  55835. characterMakers.push(() => makeCharacter(
  55836. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55837. {
  55838. front: {
  55839. height: math.unit(2.8, "meters"),
  55840. name: "Front",
  55841. image: {
  55842. source: "./media/characters/argo/front.svg",
  55843. extra: 731/518,
  55844. bottom: 84/815
  55845. }
  55846. },
  55847. },
  55848. [
  55849. {
  55850. name: "Normal",
  55851. height: math.unit(3, "meters"),
  55852. default: true
  55853. },
  55854. ]
  55855. ))
  55856. characterMakers.push(() => makeCharacter(
  55857. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55858. {
  55859. side: {
  55860. height: math.unit(3.8, "meters"),
  55861. name: "Side",
  55862. image: {
  55863. source: "./media/characters/sybil/side.svg",
  55864. extra: 382/361,
  55865. bottom: 25/407
  55866. }
  55867. },
  55868. },
  55869. [
  55870. {
  55871. name: "Normal",
  55872. height: math.unit(3.8, "meters"),
  55873. default: true
  55874. },
  55875. ]
  55876. ))
  55877. characterMakers.push(() => makeCharacter(
  55878. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55879. {
  55880. side: {
  55881. height: math.unit(6, "meters"),
  55882. name: "Side",
  55883. image: {
  55884. source: "./media/characters/plum/side.svg",
  55885. extra: 858/755,
  55886. bottom: 45/903
  55887. },
  55888. form: "taur",
  55889. default: true
  55890. },
  55891. back: {
  55892. height: math.unit(6.3, "meters"),
  55893. name: "Back",
  55894. image: {
  55895. source: "./media/characters/plum/back.svg",
  55896. extra: 887/813,
  55897. bottom: 32/919
  55898. },
  55899. form: "taur",
  55900. },
  55901. feral: {
  55902. height: math.unit(5.5, "meter"),
  55903. name: "Front",
  55904. image: {
  55905. source: "./media/characters/plum/feral.svg",
  55906. extra: 568/403,
  55907. bottom: 51/619
  55908. },
  55909. form: "feral",
  55910. default: true
  55911. },
  55912. head: {
  55913. height: math.unit(1.46, "meter"),
  55914. name: "Head",
  55915. image: {
  55916. source: "./media/characters/plum/head.svg"
  55917. },
  55918. form: "taur"
  55919. },
  55920. tailTop: {
  55921. height: math.unit(5.6, "meter"),
  55922. name: "Tail (Top)",
  55923. image: {
  55924. source: "./media/characters/plum/tail-top.svg"
  55925. },
  55926. form: "taur",
  55927. },
  55928. tailBottom: {
  55929. height: math.unit(5.6, "meter"),
  55930. name: "Tail (Bottom)",
  55931. image: {
  55932. source: "./media/characters/plum/tail-bottom.svg"
  55933. },
  55934. form: "taur",
  55935. },
  55936. feralHead: {
  55937. height: math.unit(2.56549521, "meter"),
  55938. name: "Head",
  55939. image: {
  55940. source: "./media/characters/plum/head.svg"
  55941. },
  55942. form: "feral"
  55943. },
  55944. feralTailTop: {
  55945. height: math.unit(5.44728435, "meter"),
  55946. name: "Tail (Top)",
  55947. image: {
  55948. source: "./media/characters/plum/tail-top.svg"
  55949. },
  55950. form: "feral",
  55951. },
  55952. feralTailBottom: {
  55953. height: math.unit(5.44728435, "meter"),
  55954. name: "Tail (Bottom)",
  55955. image: {
  55956. source: "./media/characters/plum/tail-bottom.svg"
  55957. },
  55958. form: "feral",
  55959. },
  55960. },
  55961. [
  55962. {
  55963. name: "Normal",
  55964. height: math.unit(6, "meters"),
  55965. default: true,
  55966. form: "taur"
  55967. },
  55968. {
  55969. name: "Normal",
  55970. height: math.unit(5.5, "meters"),
  55971. default: true,
  55972. form: "feral"
  55973. },
  55974. ],
  55975. {
  55976. "taur": {
  55977. name: "Taur",
  55978. default: true
  55979. },
  55980. "feral": {
  55981. name: "Feral",
  55982. },
  55983. }
  55984. ))
  55985. characterMakers.push(() => makeCharacter(
  55986. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55987. {
  55988. front: {
  55989. height: math.unit(6, "feet"),
  55990. weight: math.unit(115, "lb"),
  55991. name: "Front",
  55992. image: {
  55993. source: "./media/characters/celeste-kitsune/front.svg",
  55994. extra: 393/366,
  55995. bottom: 7/400
  55996. }
  55997. },
  55998. side: {
  55999. height: math.unit(6, "feet"),
  56000. weight: math.unit(115, "lb"),
  56001. name: "Side",
  56002. image: {
  56003. source: "./media/characters/celeste-kitsune/side.svg",
  56004. extra: 818/765,
  56005. bottom: 40/858
  56006. }
  56007. },
  56008. },
  56009. [
  56010. {
  56011. name: "Megamacro",
  56012. height: math.unit(1500, "miles"),
  56013. default: true
  56014. },
  56015. ]
  56016. ))
  56017. characterMakers.push(() => makeCharacter(
  56018. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56019. {
  56020. front: {
  56021. height: math.unit(8, "meters"),
  56022. name: "Front",
  56023. image: {
  56024. source: "./media/characters/io/front.svg",
  56025. extra: 865/722,
  56026. bottom: 58/923
  56027. }
  56028. },
  56029. back: {
  56030. height: math.unit(8, "meters"),
  56031. name: "Back",
  56032. image: {
  56033. source: "./media/characters/io/back.svg",
  56034. extra: 920/776,
  56035. bottom: 42/962
  56036. }
  56037. },
  56038. head: {
  56039. height: math.unit(5.09, "meters"),
  56040. name: "Head",
  56041. image: {
  56042. source: "./media/characters/io/head.svg"
  56043. }
  56044. },
  56045. hand: {
  56046. height: math.unit(1.6, "meters"),
  56047. name: "Hand",
  56048. image: {
  56049. source: "./media/characters/io/hand.svg"
  56050. }
  56051. },
  56052. foot: {
  56053. height: math.unit(2.4, "meters"),
  56054. name: "Foot",
  56055. image: {
  56056. source: "./media/characters/io/foot.svg"
  56057. }
  56058. },
  56059. },
  56060. [
  56061. {
  56062. name: "Normal",
  56063. height: math.unit(8, "meters"),
  56064. default: true
  56065. },
  56066. ]
  56067. ))
  56068. characterMakers.push(() => makeCharacter(
  56069. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56070. {
  56071. side: {
  56072. height: math.unit(6 + 3/12, "feet"),
  56073. weight: math.unit(225, "lb"),
  56074. name: "Side",
  56075. image: {
  56076. source: "./media/characters/silas/side.svg",
  56077. extra: 703/653,
  56078. bottom: 23/726
  56079. },
  56080. extraAttributes: {
  56081. "pawLength": {
  56082. name: "Paw Length",
  56083. power: 1,
  56084. type: "length",
  56085. base: math.unit(12, "inches")
  56086. },
  56087. "pawWidth": {
  56088. name: "Paw Width",
  56089. power: 1,
  56090. type: "length",
  56091. base: math.unit(4.5, "inches")
  56092. },
  56093. "pawArea": {
  56094. name: "Paw Area",
  56095. power: 2,
  56096. type: "area",
  56097. base: math.unit(12 * 4.5, "inches^2")
  56098. },
  56099. }
  56100. },
  56101. },
  56102. [
  56103. {
  56104. name: "Normal",
  56105. height: math.unit(6 + 3/12, "feet"),
  56106. default: true
  56107. },
  56108. ]
  56109. ))
  56110. characterMakers.push(() => makeCharacter(
  56111. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56112. {
  56113. back: {
  56114. height: math.unit(1.6, "meters"),
  56115. weight: math.unit(150, "lb"),
  56116. name: "Back",
  56117. image: {
  56118. source: "./media/characters/zari/back.svg",
  56119. extra: 424/411,
  56120. bottom: 32/456
  56121. },
  56122. extraAttributes: {
  56123. "bladderCapacity": {
  56124. name: "Bladder Size",
  56125. power: 3,
  56126. type: "volume",
  56127. base: math.unit(500, "mL")
  56128. },
  56129. "bladderFlow": {
  56130. name: "Flow Rate",
  56131. power: 3,
  56132. type: "volume",
  56133. base: math.unit(25, "mL")
  56134. },
  56135. }
  56136. },
  56137. },
  56138. [
  56139. {
  56140. name: "Normal",
  56141. height: math.unit(1.6, "meters"),
  56142. default: true
  56143. },
  56144. ]
  56145. ))
  56146. characterMakers.push(() => makeCharacter(
  56147. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56148. {
  56149. front: {
  56150. height: math.unit(25, "feet"),
  56151. weight: math.unit(5, "tons"),
  56152. name: "Front",
  56153. image: {
  56154. source: "./media/characters/charlie-human/front.svg",
  56155. extra: 1870/1740,
  56156. bottom: 102/1972
  56157. },
  56158. extraAttributes: {
  56159. "dickLength": {
  56160. name: "Dick Length",
  56161. power: 1,
  56162. type: "length",
  56163. base: math.unit(9, "feet")
  56164. },
  56165. }
  56166. },
  56167. back: {
  56168. height: math.unit(25, "feet"),
  56169. weight: math.unit(5, "tons"),
  56170. name: "Back",
  56171. image: {
  56172. source: "./media/characters/charlie-human/back.svg",
  56173. extra: 1858/1733,
  56174. bottom: 105/1963
  56175. },
  56176. extraAttributes: {
  56177. "dickLength": {
  56178. name: "Dick Length",
  56179. power: 1,
  56180. type: "length",
  56181. base: math.unit(9, "feet")
  56182. },
  56183. }
  56184. },
  56185. },
  56186. [
  56187. {
  56188. name: "\"Normal\"",
  56189. height: math.unit(6 + 4/12, "feet")
  56190. },
  56191. {
  56192. name: "Big",
  56193. height: math.unit(25, "feet"),
  56194. default: true
  56195. },
  56196. ]
  56197. ))
  56198. characterMakers.push(() => makeCharacter(
  56199. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56200. {
  56201. front: {
  56202. height: math.unit(6 + 4/12, "feet"),
  56203. weight: math.unit(320, "lb"),
  56204. name: "Front",
  56205. image: {
  56206. source: "./media/characters/ookitsu/front.svg",
  56207. extra: 1160/976,
  56208. bottom: 38/1198
  56209. }
  56210. },
  56211. frontNsfw: {
  56212. height: math.unit(6 + 4/12, "feet"),
  56213. weight: math.unit(320, "lb"),
  56214. name: "Front (NSFW)",
  56215. image: {
  56216. source: "./media/characters/ookitsu/front-nsfw.svg",
  56217. extra: 1160/976,
  56218. bottom: 38/1198
  56219. }
  56220. },
  56221. back: {
  56222. height: math.unit(6 + 4/12, "feet"),
  56223. weight: math.unit(320, "lb"),
  56224. name: "Back",
  56225. image: {
  56226. source: "./media/characters/ookitsu/back.svg",
  56227. extra: 1030/975,
  56228. bottom: 70/1100
  56229. }
  56230. },
  56231. head: {
  56232. height: math.unit(1.79, "feet"),
  56233. name: "Head",
  56234. image: {
  56235. source: "./media/characters/ookitsu/head.svg"
  56236. }
  56237. },
  56238. hand: {
  56239. height: math.unit(0.92, "feet"),
  56240. name: "Hand",
  56241. image: {
  56242. source: "./media/characters/ookitsu/hand.svg"
  56243. }
  56244. },
  56245. tails: {
  56246. height: math.unit(3.3, "feet"),
  56247. name: "Tails",
  56248. image: {
  56249. source: "./media/characters/ookitsu/tails.svg"
  56250. }
  56251. },
  56252. dick: {
  56253. height: math.unit(1.10833, "feet"),
  56254. name: "Dick",
  56255. image: {
  56256. source: "./media/characters/ookitsu/dick.svg"
  56257. }
  56258. },
  56259. },
  56260. [
  56261. {
  56262. name: "Normal",
  56263. height: math.unit(6 + 4/12, "feet"),
  56264. default: true
  56265. },
  56266. {
  56267. name: "Macro",
  56268. height: math.unit(30, "feet")
  56269. },
  56270. ]
  56271. ))
  56272. characterMakers.push(() => makeCharacter(
  56273. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56274. {
  56275. anthroFront: {
  56276. height: math.unit(6, "feet"),
  56277. weight: math.unit(250, "lb"),
  56278. name: "Front",
  56279. image: {
  56280. source: "./media/characters/jhusky/anthro-front.svg",
  56281. extra: 474/439,
  56282. bottom: 7/481
  56283. },
  56284. form: "anthro",
  56285. default: true
  56286. },
  56287. taurSideSfw: {
  56288. height: math.unit(6 + 4/12, "feet"),
  56289. weight: math.unit(500, "lb"),
  56290. name: "Side (SFW)",
  56291. image: {
  56292. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56293. extra: 1741/1629,
  56294. bottom: 196/1937
  56295. },
  56296. form: "taur",
  56297. default: true
  56298. },
  56299. taurSideNsfw: {
  56300. height: math.unit(6 + 4/12, "feet"),
  56301. weight: math.unit(500, "lb"),
  56302. name: "Taur (NSFW)",
  56303. image: {
  56304. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56305. extra: 1741/1629,
  56306. bottom: 196/1937
  56307. },
  56308. form: "taur",
  56309. },
  56310. },
  56311. [
  56312. {
  56313. name: "Huge",
  56314. height: math.unit(500, "feet"),
  56315. form: "anthro"
  56316. },
  56317. {
  56318. name: "Macro",
  56319. height: math.unit(1000, "feet"),
  56320. default: true,
  56321. form: "anthro"
  56322. },
  56323. {
  56324. name: "Megamacro",
  56325. height: math.unit(10000, "feet"),
  56326. form: "anthro"
  56327. },
  56328. {
  56329. name: "Huge",
  56330. height: math.unit(528, "feet"),
  56331. form: "taur"
  56332. },
  56333. {
  56334. name: "Macro",
  56335. height: math.unit(1056, "feet"),
  56336. default: true,
  56337. form: "taur"
  56338. },
  56339. {
  56340. name: "Megamacro",
  56341. height: math.unit(10556, "feet"),
  56342. form: "taur"
  56343. },
  56344. ],
  56345. {
  56346. "anthro": {
  56347. name: "Anthro",
  56348. default: true
  56349. },
  56350. "taur": {
  56351. name: "Taur",
  56352. },
  56353. }
  56354. ))
  56355. characterMakers.push(() => makeCharacter(
  56356. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56357. {
  56358. front: {
  56359. height: math.unit(8, "feet"),
  56360. weight: math.unit(500, "lb"),
  56361. name: "Front",
  56362. image: {
  56363. source: "./media/characters/armail/front.svg",
  56364. extra: 1753/1669,
  56365. bottom: 155/1908
  56366. }
  56367. },
  56368. back: {
  56369. height: math.unit(8, "feet"),
  56370. weight: math.unit(500, "lb"),
  56371. name: "Back",
  56372. image: {
  56373. source: "./media/characters/armail/back.svg",
  56374. extra: 1872/1803,
  56375. bottom: 63/1935
  56376. }
  56377. },
  56378. },
  56379. [
  56380. {
  56381. name: "Micro",
  56382. height: math.unit(0.25, "feet")
  56383. },
  56384. {
  56385. name: "Normal",
  56386. height: math.unit(8, "feet"),
  56387. default: true
  56388. },
  56389. {
  56390. name: "Mini-macro",
  56391. height: math.unit(30, "feet")
  56392. },
  56393. {
  56394. name: "Macro",
  56395. height: math.unit(400, "feet")
  56396. },
  56397. {
  56398. name: "Mega-macro",
  56399. height: math.unit(6000, "feet")
  56400. },
  56401. ]
  56402. ))
  56403. characterMakers.push(() => makeCharacter(
  56404. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56405. {
  56406. front: {
  56407. height: math.unit(6 + 7/12, "feet"),
  56408. weight: math.unit(210, "lb"),
  56409. name: "Front",
  56410. image: {
  56411. source: "./media/characters/wilfred-t-buxton/front.svg",
  56412. extra: 1068/882,
  56413. bottom: 28/1096
  56414. }
  56415. },
  56416. },
  56417. [
  56418. {
  56419. name: "Normal",
  56420. height: math.unit(6 + 7/12, "feet"),
  56421. default: true
  56422. },
  56423. ]
  56424. ))
  56425. characterMakers.push(() => makeCharacter(
  56426. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56427. {
  56428. front: {
  56429. height: math.unit(5 + 2/12, "feet"),
  56430. weight: math.unit(120, "lb"),
  56431. name: "Front",
  56432. image: {
  56433. source: "./media/characters/leighton-marrow/front.svg",
  56434. extra: 441/409,
  56435. bottom: 37/478
  56436. }
  56437. },
  56438. },
  56439. [
  56440. {
  56441. name: "Normal",
  56442. height: math.unit(5 + 2/12, "feet"),
  56443. default: true
  56444. },
  56445. ]
  56446. ))
  56447. characterMakers.push(() => makeCharacter(
  56448. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56449. {
  56450. front: {
  56451. height: math.unit(4, "meters"),
  56452. weight: math.unit(1200, "kg"),
  56453. name: "Front",
  56454. image: {
  56455. source: "./media/characters/licos/front.svg",
  56456. extra: 1727/1604,
  56457. bottom: 101/1828
  56458. },
  56459. form: "anthro",
  56460. default: true
  56461. },
  56462. taur_side: {
  56463. height: math.unit(20, "meters"),
  56464. weight: math.unit(1100000, "kg"),
  56465. name: "Side",
  56466. image: {
  56467. source: "./media/characters/licos/taur.svg",
  56468. extra: 1158/1091,
  56469. bottom: 80/1238
  56470. },
  56471. form: "taur",
  56472. default: true
  56473. },
  56474. },
  56475. [
  56476. {
  56477. name: "Normal",
  56478. height: math.unit(4, "meters"),
  56479. default: true,
  56480. form: "anthro"
  56481. },
  56482. {
  56483. name: "Normal",
  56484. height: math.unit(20, "meters"),
  56485. default: true,
  56486. form: "taur"
  56487. },
  56488. ],
  56489. {
  56490. "anthro": {
  56491. name: "Anthro",
  56492. default: true
  56493. },
  56494. "taur": {
  56495. name: "Taur",
  56496. },
  56497. }
  56498. ))
  56499. characterMakers.push(() => makeCharacter(
  56500. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56501. {
  56502. front: {
  56503. height: math.unit(10 + 3/12, "feet"),
  56504. name: "Front",
  56505. image: {
  56506. source: "./media/characters/theo-monkey/front.svg",
  56507. extra: 1735/1658,
  56508. bottom: 73/1808
  56509. }
  56510. },
  56511. back: {
  56512. height: math.unit(10 + 3/12, "feet"),
  56513. name: "Back",
  56514. image: {
  56515. source: "./media/characters/theo-monkey/back.svg",
  56516. extra: 1742/1664,
  56517. bottom: 33/1775
  56518. }
  56519. },
  56520. head: {
  56521. height: math.unit(2.29, "feet"),
  56522. name: "Head",
  56523. image: {
  56524. source: "./media/characters/theo-monkey/head.svg"
  56525. }
  56526. },
  56527. handPalm: {
  56528. height: math.unit(1.73, "feet"),
  56529. name: "Hand (Palm)",
  56530. image: {
  56531. source: "./media/characters/theo-monkey/hand-palm.svg"
  56532. }
  56533. },
  56534. handBack: {
  56535. height: math.unit(1.63, "feet"),
  56536. name: "Hand (Back)",
  56537. image: {
  56538. source: "./media/characters/theo-monkey/hand-back.svg"
  56539. }
  56540. },
  56541. footSole: {
  56542. height: math.unit(2.15, "feet"),
  56543. name: "Foot (Sole)",
  56544. image: {
  56545. source: "./media/characters/theo-monkey/foot-sole.svg"
  56546. }
  56547. },
  56548. footSide: {
  56549. height: math.unit(1.6, "feet"),
  56550. name: "Foot (Side)",
  56551. image: {
  56552. source: "./media/characters/theo-monkey/foot-side.svg"
  56553. }
  56554. },
  56555. },
  56556. [
  56557. {
  56558. name: "Normal",
  56559. height: math.unit(10 + 3/12, "feet"),
  56560. default: true
  56561. },
  56562. ]
  56563. ))
  56564. characterMakers.push(() => makeCharacter(
  56565. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56566. {
  56567. front: {
  56568. height: math.unit(11, "feet"),
  56569. weight: math.unit(3000, "lb"),
  56570. preyCapacity: math.unit(10, "people"),
  56571. name: "Front",
  56572. image: {
  56573. source: "./media/characters/brook/front.svg",
  56574. extra: 909/835,
  56575. bottom: 108/1017
  56576. }
  56577. },
  56578. back: {
  56579. height: math.unit(11, "feet"),
  56580. weight: math.unit(3000, "lb"),
  56581. preyCapacity: math.unit(10, "people"),
  56582. name: "Back",
  56583. image: {
  56584. source: "./media/characters/brook/back.svg",
  56585. extra: 976/916,
  56586. bottom: 34/1010
  56587. }
  56588. },
  56589. backAlt: {
  56590. height: math.unit(11, "feet"),
  56591. weight: math.unit(3000, "lb"),
  56592. preyCapacity: math.unit(10, "people"),
  56593. name: "Back (Alt)",
  56594. image: {
  56595. source: "./media/characters/brook/back-alt.svg",
  56596. extra: 1283/1213,
  56597. bottom: 35/1318
  56598. }
  56599. },
  56600. bust: {
  56601. height: math.unit(9.0859030837, "feet"),
  56602. weight: math.unit(3000, "lb"),
  56603. preyCapacity: math.unit(10, "people"),
  56604. name: "Bust",
  56605. image: {
  56606. source: "./media/characters/brook/bust.svg",
  56607. extra: 2043/1923,
  56608. bottom: 0/2043
  56609. }
  56610. },
  56611. },
  56612. [
  56613. {
  56614. name: "Small",
  56615. height: math.unit(11, "feet"),
  56616. default: true
  56617. },
  56618. {
  56619. name: "Towering",
  56620. height: math.unit(5, "km")
  56621. },
  56622. {
  56623. name: "Enormous",
  56624. height: math.unit(25, "earths")
  56625. },
  56626. ]
  56627. ))
  56628. characterMakers.push(() => makeCharacter(
  56629. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56630. {
  56631. front: {
  56632. height: math.unit(4, "feet"),
  56633. weight: math.unit(150, "lb"),
  56634. name: "Front",
  56635. image: {
  56636. source: "./media/characters/squishi/front.svg",
  56637. extra: 1428/1271,
  56638. bottom: 30/1458
  56639. },
  56640. extraAttributes: {
  56641. "pawSize": {
  56642. name: "Paw Size",
  56643. power: 1,
  56644. type: "length",
  56645. base: math.unit(14, "ShoeSizeMensUS"),
  56646. defaultUnit: "ShoeSizeMensUS"
  56647. },
  56648. }
  56649. },
  56650. side: {
  56651. height: math.unit(4, "feet"),
  56652. weight: math.unit(150, "lb"),
  56653. name: "Side",
  56654. image: {
  56655. source: "./media/characters/squishi/side.svg",
  56656. extra: 1428/1271,
  56657. bottom: 30/1458
  56658. },
  56659. extraAttributes: {
  56660. "pawSize": {
  56661. name: "Paw Size",
  56662. power: 1,
  56663. type: "length",
  56664. base: math.unit(14, "ShoeSizeMensUS"),
  56665. defaultUnit: "ShoeSizeMensUS"
  56666. },
  56667. }
  56668. },
  56669. back: {
  56670. height: math.unit(4, "feet"),
  56671. weight: math.unit(150, "lb"),
  56672. name: "Back",
  56673. image: {
  56674. source: "./media/characters/squishi/back.svg",
  56675. extra: 1428/1271,
  56676. bottom: 30/1458
  56677. },
  56678. extraAttributes: {
  56679. "pawSize": {
  56680. name: "Paw Size",
  56681. power: 1,
  56682. type: "length",
  56683. base: math.unit(14, "ShoeSizeMensUS"),
  56684. defaultUnit: "ShoeSizeMensUS"
  56685. },
  56686. }
  56687. },
  56688. },
  56689. [
  56690. {
  56691. name: "Normal",
  56692. height: math.unit(4, "feet"),
  56693. default: true
  56694. },
  56695. ]
  56696. ))
  56697. characterMakers.push(() => makeCharacter(
  56698. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56699. {
  56700. front: {
  56701. height: math.unit(7 + 8/12, "feet"),
  56702. weight: math.unit(333, "lb"),
  56703. name: "Front",
  56704. image: {
  56705. source: "./media/characters/vincent-vasroc/front.svg",
  56706. extra: 1962/1860,
  56707. bottom: 41/2003
  56708. }
  56709. },
  56710. back: {
  56711. height: math.unit(7 + 8/12, "feet"),
  56712. weight: math.unit(333, "lb"),
  56713. name: "Back",
  56714. image: {
  56715. source: "./media/characters/vincent-vasroc/back.svg",
  56716. extra: 1952/1815,
  56717. bottom: 33/1985
  56718. }
  56719. },
  56720. paw: {
  56721. height: math.unit(1.24, "feet"),
  56722. name: "Paw",
  56723. image: {
  56724. source: "./media/characters/vincent-vasroc/paw.svg"
  56725. }
  56726. },
  56727. ear: {
  56728. height: math.unit(0.75, "feet"),
  56729. name: "Ear",
  56730. image: {
  56731. source: "./media/characters/vincent-vasroc/ear.svg"
  56732. }
  56733. },
  56734. },
  56735. [
  56736. {
  56737. name: "Nano",
  56738. height: math.unit(92, "micrometers")
  56739. },
  56740. {
  56741. name: "Normal",
  56742. height: math.unit(7 + 8/12, "feet"),
  56743. default: true
  56744. },
  56745. ]
  56746. ))
  56747. characterMakers.push(() => makeCharacter(
  56748. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56749. {
  56750. frontNsfw: {
  56751. height: math.unit(40, "feet"),
  56752. weight: math.unit(58, "tons"),
  56753. name: "Front (NSFW)",
  56754. image: {
  56755. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56756. extra: 1265/965,
  56757. bottom: 155/1420
  56758. }
  56759. },
  56760. frontSfw: {
  56761. height: math.unit(40, "feet"),
  56762. weight: math.unit(58, "tons"),
  56763. name: "Front (SFW)",
  56764. image: {
  56765. source: "./media/characters/ru-kahn/front-sfw.svg",
  56766. extra: 1265/965,
  56767. bottom: 80/1345
  56768. }
  56769. },
  56770. },
  56771. [
  56772. {
  56773. name: "Small",
  56774. height: math.unit(4, "feet")
  56775. },
  56776. {
  56777. name: "Normal",
  56778. height: math.unit(40, "feet"),
  56779. default: true
  56780. },
  56781. {
  56782. name: "Macro",
  56783. height: math.unit(400, "feet")
  56784. },
  56785. ]
  56786. ))
  56787. characterMakers.push(() => makeCharacter(
  56788. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56789. {
  56790. frontNude: {
  56791. height: math.unit(6 + 5/12, "feet"),
  56792. name: "Front (Nude)",
  56793. image: {
  56794. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56795. extra: 1369/1366,
  56796. bottom: 68/1437
  56797. }
  56798. },
  56799. frontDressed: {
  56800. height: math.unit(6 + 5/12, "feet"),
  56801. name: "Front (Dressed)",
  56802. image: {
  56803. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56804. extra: 1369/1366,
  56805. bottom: 68/1437
  56806. }
  56807. },
  56808. },
  56809. [
  56810. {
  56811. name: "Normal",
  56812. height: math.unit(6 + 5/12, "feet"),
  56813. default: true
  56814. },
  56815. {
  56816. name: "Maximum",
  56817. height: math.unit(1930, "feet")
  56818. },
  56819. ]
  56820. ))
  56821. characterMakers.push(() => makeCharacter(
  56822. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56823. {
  56824. front: {
  56825. height: math.unit(5 + 6/12, "feet"),
  56826. name: "Front",
  56827. image: {
  56828. source: "./media/characters/kaja/front.svg",
  56829. extra: 1874/1514,
  56830. bottom: 117/1991
  56831. }
  56832. },
  56833. },
  56834. [
  56835. {
  56836. name: "Normal",
  56837. height: math.unit(5 + 6/12, "feet"),
  56838. default: true
  56839. },
  56840. ]
  56841. ))
  56842. characterMakers.push(() => makeCharacter(
  56843. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56844. {
  56845. front: {
  56846. height: math.unit(5 + 9/12, "feet"),
  56847. weight: math.unit(200, "lb"),
  56848. name: "Front",
  56849. image: {
  56850. source: "./media/characters/mark-smith/front.svg",
  56851. extra: 1004/943,
  56852. bottom: 58/1062
  56853. }
  56854. },
  56855. back: {
  56856. height: math.unit(5 + 9/12, "feet"),
  56857. weight: math.unit(200, "lb"),
  56858. name: "Back",
  56859. image: {
  56860. source: "./media/characters/mark-smith/back.svg",
  56861. extra: 1023/953,
  56862. bottom: 24/1047
  56863. }
  56864. },
  56865. head: {
  56866. height: math.unit(1.82, "feet"),
  56867. name: "Head",
  56868. image: {
  56869. source: "./media/characters/mark-smith/head.svg"
  56870. }
  56871. },
  56872. hand: {
  56873. height: math.unit(1.4, "feet"),
  56874. name: "Hand",
  56875. image: {
  56876. source: "./media/characters/mark-smith/hand.svg"
  56877. }
  56878. },
  56879. paw: {
  56880. height: math.unit(1.69, "feet"),
  56881. name: "Paw",
  56882. image: {
  56883. source: "./media/characters/mark-smith/paw.svg"
  56884. }
  56885. },
  56886. },
  56887. [
  56888. {
  56889. name: "Micro",
  56890. height: math.unit(0.25, "inches")
  56891. },
  56892. {
  56893. name: "Normal",
  56894. height: math.unit(5 + 9/12, "feet"),
  56895. default: true
  56896. },
  56897. {
  56898. name: "Macro",
  56899. height: math.unit(500, "feet")
  56900. },
  56901. ]
  56902. ))
  56903. characterMakers.push(() => makeCharacter(
  56904. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56905. {
  56906. frontNude: {
  56907. height: math.unit(6, "feet"),
  56908. name: "Front (Nude)",
  56909. image: {
  56910. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56911. extra: 1384/1321,
  56912. bottom: 57/1441
  56913. }
  56914. },
  56915. frontDressed: {
  56916. height: math.unit(6, "feet"),
  56917. name: "Front (Dressed)",
  56918. image: {
  56919. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56920. extra: 1384/1321,
  56921. bottom: 57/1441
  56922. }
  56923. },
  56924. },
  56925. [
  56926. {
  56927. name: "Normal",
  56928. height: math.unit(6, "feet"),
  56929. default: true
  56930. },
  56931. {
  56932. name: "Maximum",
  56933. height: math.unit(1776, "feet")
  56934. },
  56935. ]
  56936. ))
  56937. characterMakers.push(() => makeCharacter(
  56938. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56939. {
  56940. front: {
  56941. height: math.unit(2 + 4/12, "feet"),
  56942. weight: math.unit(350, "lb"),
  56943. name: "Front",
  56944. image: {
  56945. source: "./media/characters/devos/front.svg",
  56946. extra: 958/852,
  56947. bottom: 143/1101
  56948. }
  56949. },
  56950. },
  56951. [
  56952. {
  56953. name: "Base",
  56954. height: math.unit(2 + 4/12, "feet"),
  56955. default: true
  56956. },
  56957. ]
  56958. ))
  56959. characterMakers.push(() => makeCharacter(
  56960. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56961. {
  56962. front: {
  56963. height: math.unit(9 + 2/12, "feet"),
  56964. name: "Front",
  56965. image: {
  56966. source: "./media/characters/hiveheart/front.svg",
  56967. extra: 394/364,
  56968. bottom: 65/459
  56969. }
  56970. },
  56971. back: {
  56972. height: math.unit(9 + 2/12, "feet"),
  56973. name: "Back",
  56974. image: {
  56975. source: "./media/characters/hiveheart/back.svg",
  56976. extra: 374/357,
  56977. bottom: 63/437
  56978. }
  56979. },
  56980. },
  56981. [
  56982. {
  56983. name: "Base",
  56984. height: math.unit(9 + 2/12, "feet"),
  56985. default: true
  56986. },
  56987. ]
  56988. ))
  56989. characterMakers.push(() => makeCharacter(
  56990. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56991. {
  56992. front: {
  56993. height: math.unit(2.5, "inches"),
  56994. weight: math.unit(0.6, "oz"),
  56995. name: "Front",
  56996. image: {
  56997. source: "./media/characters/bryn/front.svg",
  56998. extra: 1484/1119,
  56999. bottom: 66/1550
  57000. }
  57001. },
  57002. back: {
  57003. height: math.unit(2.5, "inches"),
  57004. weight: math.unit(0.6, "oz"),
  57005. name: "Back",
  57006. image: {
  57007. source: "./media/characters/bryn/back.svg",
  57008. extra: 1472/1170,
  57009. bottom: 32/1504
  57010. }
  57011. },
  57012. wings: {
  57013. height: math.unit(2.5, "inches"),
  57014. weight: math.unit(0.6, "oz"),
  57015. name: "Wings",
  57016. image: {
  57017. source: "./media/characters/bryn/wings.svg",
  57018. extra: 567/448,
  57019. bottom: 10/577
  57020. }
  57021. },
  57022. dressed: {
  57023. height: math.unit(2.5, "inches"),
  57024. weight: math.unit(0.6, "oz"),
  57025. name: "Dressed",
  57026. image: {
  57027. source: "./media/characters/bryn/dressed.svg",
  57028. extra: 719/589,
  57029. bottom: 54/773
  57030. }
  57031. },
  57032. head: {
  57033. height: math.unit(1.75, "inches"),
  57034. name: "Head",
  57035. image: {
  57036. source: "./media/characters/bryn/head.svg"
  57037. }
  57038. },
  57039. foot: {
  57040. height: math.unit(0.4, "inches"),
  57041. name: "Foot",
  57042. image: {
  57043. source: "./media/characters/bryn/foot.svg"
  57044. }
  57045. },
  57046. },
  57047. [
  57048. {
  57049. name: "Normal",
  57050. height: math.unit(2.5, "inches"),
  57051. default: true
  57052. },
  57053. ]
  57054. ))
  57055. characterMakers.push(() => makeCharacter(
  57056. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57057. {
  57058. side: {
  57059. height: math.unit(7, "feet"),
  57060. weight: math.unit(657, "kg"),
  57061. name: "Side",
  57062. image: {
  57063. source: "./media/characters/delta/side.svg",
  57064. extra: 781/212,
  57065. bottom: 7/788
  57066. },
  57067. extraAttributes: {
  57068. "wingspan": {
  57069. name: "Wingspan",
  57070. power: 1,
  57071. type: "length",
  57072. base: math.unit(48, "feet")
  57073. },
  57074. "length": {
  57075. name: "Length",
  57076. power: 1,
  57077. type: "length",
  57078. base: math.unit(21, "feet")
  57079. },
  57080. "pawSize": {
  57081. name: "Paw Size",
  57082. power: 2,
  57083. type: "area",
  57084. base: math.unit(1.5*1.4, "feet^2")
  57085. },
  57086. }
  57087. },
  57088. },
  57089. [
  57090. {
  57091. name: "Normal",
  57092. height: math.unit(6, "feet"),
  57093. default: true
  57094. },
  57095. ]
  57096. ))
  57097. characterMakers.push(() => makeCharacter(
  57098. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57099. {
  57100. front: {
  57101. height: math.unit(6, "feet"),
  57102. name: "Front",
  57103. image: {
  57104. source: "./media/characters/pyrow/front.svg",
  57105. extra: 513/486,
  57106. bottom: 14/527
  57107. }
  57108. },
  57109. frontWing: {
  57110. height: math.unit(6, "feet"),
  57111. name: "Front (Wing)",
  57112. image: {
  57113. source: "./media/characters/pyrow/front-wing.svg",
  57114. extra: 539/383,
  57115. bottom: 20/559
  57116. }
  57117. },
  57118. back: {
  57119. height: math.unit(6, "feet"),
  57120. name: "Back",
  57121. image: {
  57122. source: "./media/characters/pyrow/back.svg",
  57123. extra: 500/473,
  57124. bottom: 9/509
  57125. }
  57126. },
  57127. },
  57128. [
  57129. {
  57130. name: "Normal",
  57131. height: math.unit(6, "feet"),
  57132. default: true
  57133. },
  57134. ]
  57135. ))
  57136. characterMakers.push(() => makeCharacter(
  57137. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57138. {
  57139. front: {
  57140. height: math.unit(5, "meters"),
  57141. weight: math.unit(3, "tonnes"),
  57142. name: "Front",
  57143. image: {
  57144. source: "./media/characters/velikan/front.svg",
  57145. extra: 867/744,
  57146. bottom: 71/938
  57147. },
  57148. extraAttributes: {
  57149. "shoeSize": {
  57150. name: "Shoe Size",
  57151. power: 1,
  57152. type: "length",
  57153. base: math.unit(135, "ShoeSizeUK"),
  57154. defaultUnit: "ShoeSizeUK"
  57155. },
  57156. }
  57157. },
  57158. },
  57159. [
  57160. {
  57161. name: "Normal",
  57162. height: math.unit(5, "meters"),
  57163. default: true
  57164. },
  57165. {
  57166. name: "Macro",
  57167. height: math.unit(1, "km")
  57168. },
  57169. {
  57170. name: "Mega Macro",
  57171. height: math.unit(100, "km")
  57172. },
  57173. {
  57174. name: "Giga Macro",
  57175. height: math.unit(2, "megameters")
  57176. },
  57177. {
  57178. name: "Planetary",
  57179. height: math.unit(22, "megameters")
  57180. },
  57181. {
  57182. name: "Solar",
  57183. height: math.unit(8, "gigameters")
  57184. },
  57185. {
  57186. name: "Cosmic",
  57187. height: math.unit(10, "zettameters")
  57188. },
  57189. {
  57190. name: "Omni",
  57191. height: math.unit(9e260, "multiverses")
  57192. },
  57193. ]
  57194. ))
  57195. characterMakers.push(() => makeCharacter(
  57196. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57197. {
  57198. front: {
  57199. height: math.unit(4 + 3/12, "feet"),
  57200. weight: math.unit(90, "lb"),
  57201. name: "Front",
  57202. image: {
  57203. source: "./media/characters/sabiki/front.svg",
  57204. extra: 1662/1423,
  57205. bottom: 65/1727
  57206. }
  57207. },
  57208. },
  57209. [
  57210. {
  57211. name: "Normal",
  57212. height: math.unit(4 + 3/12, "feet"),
  57213. default: true
  57214. },
  57215. ]
  57216. ))
  57217. characterMakers.push(() => makeCharacter(
  57218. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57219. {
  57220. frontSfw: {
  57221. height: math.unit(2, "mm"),
  57222. name: "Front (SFW)",
  57223. image: {
  57224. source: "./media/characters/carmel/front-sfw.svg",
  57225. extra: 1131/1006,
  57226. bottom: 66/1197
  57227. }
  57228. },
  57229. frontNsfw: {
  57230. height: math.unit(2, "mm"),
  57231. name: "Front (NSFW)",
  57232. image: {
  57233. source: "./media/characters/carmel/front-nsfw.svg",
  57234. extra: 1131/1006,
  57235. bottom: 66/1197
  57236. }
  57237. },
  57238. foot: {
  57239. height: math.unit(0.3, "mm"),
  57240. name: "Foot",
  57241. image: {
  57242. source: "./media/characters/carmel/foot.svg"
  57243. }
  57244. },
  57245. tongue: {
  57246. height: math.unit(0.71, "mm"),
  57247. name: "Tongue",
  57248. image: {
  57249. source: "./media/characters/carmel/tongue.svg"
  57250. }
  57251. },
  57252. dick: {
  57253. height: math.unit(0.085, "mm"),
  57254. name: "Dick",
  57255. image: {
  57256. source: "./media/characters/carmel/dick.svg"
  57257. }
  57258. },
  57259. },
  57260. [
  57261. {
  57262. name: "Micro",
  57263. height: math.unit(2, "mm"),
  57264. default: true
  57265. },
  57266. {
  57267. name: "Normal",
  57268. height: math.unit(4 + 8/12, "feet")
  57269. },
  57270. {
  57271. name: "Mega Macro",
  57272. height: math.unit(250, "feet")
  57273. },
  57274. {
  57275. name: "BIGGER",
  57276. height: math.unit(1000, "feet")
  57277. },
  57278. {
  57279. name: "BIGGEST",
  57280. height: math.unit(2, "miles")
  57281. },
  57282. ]
  57283. ))
  57284. characterMakers.push(() => makeCharacter(
  57285. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57286. {
  57287. front: {
  57288. height: math.unit(6.5, "feet"),
  57289. weight: math.unit(198, "lb"),
  57290. name: "Front",
  57291. image: {
  57292. source: "./media/characters/tamani/anthro.svg",
  57293. extra: 930/890,
  57294. bottom: 34/964
  57295. },
  57296. form: "anthro",
  57297. default: true
  57298. },
  57299. side: {
  57300. height: math.unit(6, "feet"),
  57301. weight: math.unit(198*2, "lb"),
  57302. name: "Side",
  57303. image: {
  57304. source: "./media/characters/tamani/feral.svg",
  57305. extra: 559/519,
  57306. bottom: 43/602
  57307. },
  57308. form: "feral"
  57309. },
  57310. },
  57311. [
  57312. {
  57313. name: "Normal",
  57314. height: math.unit(6.5, "feet"),
  57315. default: true,
  57316. form: "anthro"
  57317. },
  57318. {
  57319. name: "Normal",
  57320. height: math.unit(6, "feet"),
  57321. default: true,
  57322. form: "feral"
  57323. },
  57324. ],
  57325. {
  57326. "anthro": {
  57327. name: "Anthro",
  57328. default: true
  57329. },
  57330. "feral": {
  57331. name: "Feral",
  57332. },
  57333. }
  57334. ))
  57335. characterMakers.push(() => makeCharacter(
  57336. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57337. {
  57338. front: {
  57339. height: math.unit(4 + 1/12, "feet"),
  57340. weight: math.unit(114, "lb"),
  57341. name: "Front",
  57342. image: {
  57343. source: "./media/characters/dex/front.svg",
  57344. extra: 787/680,
  57345. bottom: 18/805
  57346. }
  57347. },
  57348. side: {
  57349. height: math.unit(4 + 1/12, "feet"),
  57350. weight: math.unit(114, "lb"),
  57351. name: "Side",
  57352. image: {
  57353. source: "./media/characters/dex/side.svg",
  57354. extra: 785/680,
  57355. bottom: 12/797
  57356. }
  57357. },
  57358. back: {
  57359. height: math.unit(4 + 1/12, "feet"),
  57360. weight: math.unit(114, "lb"),
  57361. name: "Back",
  57362. image: {
  57363. source: "./media/characters/dex/back.svg",
  57364. extra: 785/681,
  57365. bottom: 17/802
  57366. }
  57367. },
  57368. loungewear: {
  57369. height: math.unit(4 + 1/12, "feet"),
  57370. weight: math.unit(114, "lb"),
  57371. name: "Loungewear",
  57372. image: {
  57373. source: "./media/characters/dex/loungewear.svg",
  57374. extra: 787/680,
  57375. bottom: 18/805
  57376. }
  57377. },
  57378. workout: {
  57379. height: math.unit(4 + 1/12, "feet"),
  57380. weight: math.unit(114, "lb"),
  57381. name: "Workout",
  57382. image: {
  57383. source: "./media/characters/dex/workout.svg",
  57384. extra: 787/680,
  57385. bottom: 18/805
  57386. }
  57387. },
  57388. schoolUniform: {
  57389. height: math.unit(4 + 1/12, "feet"),
  57390. weight: math.unit(114, "lb"),
  57391. name: "School-uniform",
  57392. image: {
  57393. source: "./media/characters/dex/school-uniform.svg",
  57394. extra: 787/680,
  57395. bottom: 18/805
  57396. }
  57397. },
  57398. maw: {
  57399. height: math.unit(0.55, "feet"),
  57400. name: "Maw",
  57401. image: {
  57402. source: "./media/characters/dex/maw.svg"
  57403. }
  57404. },
  57405. paw: {
  57406. height: math.unit(0.87, "feet"),
  57407. name: "Paw",
  57408. image: {
  57409. source: "./media/characters/dex/paw.svg"
  57410. }
  57411. },
  57412. bust: {
  57413. height: math.unit(1.67, "feet"),
  57414. name: "Bust",
  57415. image: {
  57416. source: "./media/characters/dex/bust.svg"
  57417. }
  57418. },
  57419. },
  57420. [
  57421. {
  57422. name: "Normal",
  57423. height: math.unit(4 + 1/12, "feet"),
  57424. default: true
  57425. },
  57426. ]
  57427. ))
  57428. characterMakers.push(() => makeCharacter(
  57429. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57430. {
  57431. front: {
  57432. height: math.unit(4 + 3/12, "feet"),
  57433. weight: math.unit(60, "lb"),
  57434. name: "Front",
  57435. image: {
  57436. source: "./media/characters/silke/front.svg",
  57437. extra: 1334/1122,
  57438. bottom: 21/1355
  57439. }
  57440. },
  57441. back: {
  57442. height: math.unit(4 + 3/12, "feet"),
  57443. weight: math.unit(60, "lb"),
  57444. name: "Back",
  57445. image: {
  57446. source: "./media/characters/silke/back.svg",
  57447. extra: 1328/1092,
  57448. bottom: 16/1344
  57449. }
  57450. },
  57451. dressed: {
  57452. height: math.unit(4 + 3/12, "feet"),
  57453. weight: math.unit(60, "lb"),
  57454. name: "Dressed",
  57455. image: {
  57456. source: "./media/characters/silke/dressed.svg",
  57457. extra: 1334/1122,
  57458. bottom: 43/1377
  57459. }
  57460. },
  57461. },
  57462. [
  57463. {
  57464. name: "Normal",
  57465. height: math.unit(4 + 3/12, "feet"),
  57466. default: true
  57467. },
  57468. ]
  57469. ))
  57470. characterMakers.push(() => makeCharacter(
  57471. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57472. {
  57473. front: {
  57474. height: math.unit(1.58, "meters"),
  57475. weight: math.unit(47, "kg"),
  57476. name: "Front",
  57477. image: {
  57478. source: "./media/characters/wireshark/front.svg",
  57479. extra: 883/838,
  57480. bottom: 66/949
  57481. }
  57482. },
  57483. },
  57484. [
  57485. {
  57486. name: "Normal",
  57487. height: math.unit(1.58, "meters"),
  57488. default: true
  57489. },
  57490. ]
  57491. ))
  57492. characterMakers.push(() => makeCharacter(
  57493. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57494. {
  57495. front: {
  57496. height: math.unit(6, "meters"),
  57497. weight: math.unit(15000, "kg"),
  57498. name: "Front",
  57499. image: {
  57500. source: "./media/characters/gallagher/front.svg",
  57501. extra: 532/493,
  57502. bottom: 0/532
  57503. }
  57504. },
  57505. },
  57506. [
  57507. {
  57508. name: "Normal",
  57509. height: math.unit(6, "meters"),
  57510. default: true
  57511. },
  57512. ]
  57513. ))
  57514. characterMakers.push(() => makeCharacter(
  57515. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57516. {
  57517. front: {
  57518. height: math.unit(2.4, "meters"),
  57519. weight: math.unit(270, "kg"),
  57520. name: "Front",
  57521. image: {
  57522. source: "./media/characters/alice/front.svg",
  57523. extra: 950/900,
  57524. bottom: 36/986
  57525. }
  57526. },
  57527. side: {
  57528. height: math.unit(2.4, "meters"),
  57529. weight: math.unit(270, "kg"),
  57530. name: "Side",
  57531. image: {
  57532. source: "./media/characters/alice/side.svg",
  57533. extra: 921/876,
  57534. bottom: 19/940
  57535. }
  57536. },
  57537. dressed: {
  57538. height: math.unit(2.4, "meters"),
  57539. weight: math.unit(270, "kg"),
  57540. name: "Dressed",
  57541. image: {
  57542. source: "./media/characters/alice/dressed.svg",
  57543. extra: 905/850,
  57544. bottom: 81/986
  57545. }
  57546. },
  57547. fishnet: {
  57548. height: math.unit(2.4, "meters"),
  57549. weight: math.unit(270, "kg"),
  57550. name: "Fishnet",
  57551. image: {
  57552. source: "./media/characters/alice/fishnet.svg",
  57553. extra: 905/850,
  57554. bottom: 81/986
  57555. }
  57556. },
  57557. },
  57558. [
  57559. {
  57560. name: "Normal",
  57561. height: math.unit(2.4, "meters"),
  57562. default: true
  57563. },
  57564. ]
  57565. ))
  57566. characterMakers.push(() => makeCharacter(
  57567. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57568. {
  57569. front: {
  57570. height: math.unit(175.25, "feet"),
  57571. name: "Front",
  57572. image: {
  57573. source: "./media/characters/fio/front.svg",
  57574. extra: 1883/1591,
  57575. bottom: 34/1917
  57576. }
  57577. },
  57578. },
  57579. [
  57580. {
  57581. name: "Normal",
  57582. height: math.unit(175.25, "cm"),
  57583. default: true
  57584. },
  57585. ]
  57586. ))
  57587. characterMakers.push(() => makeCharacter(
  57588. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57589. {
  57590. side: {
  57591. height: math.unit(6, "meters"),
  57592. weight: math.unit(3400, "kg"),
  57593. preyCapacity: math.unit(1700, "liters"),
  57594. name: "Side",
  57595. image: {
  57596. source: "./media/characters/hass/side.svg",
  57597. extra: 1058/997,
  57598. bottom: 177/1235
  57599. }
  57600. },
  57601. feeding: {
  57602. height: math.unit(6*0.63, "meters"),
  57603. weight: math.unit(3400, "kg"),
  57604. preyCapacity: math.unit(1700, "liters"),
  57605. name: "Feeding",
  57606. image: {
  57607. source: "./media/characters/hass/feeding.svg",
  57608. extra: 689/579,
  57609. bottom: 146/835
  57610. }
  57611. },
  57612. guts: {
  57613. height: math.unit(6, "meters"),
  57614. weight: math.unit(3400, "kg"),
  57615. name: "Guts",
  57616. image: {
  57617. source: "./media/characters/hass/guts.svg",
  57618. extra: 1223/1198,
  57619. bottom: 182/1405
  57620. }
  57621. },
  57622. dickFront: {
  57623. height: math.unit(1.4, "meters"),
  57624. name: "Dick (Front)",
  57625. image: {
  57626. source: "./media/characters/hass/dick-front.svg"
  57627. }
  57628. },
  57629. dickSide: {
  57630. height: math.unit(1.3, "meters"),
  57631. name: "Dick (Side)",
  57632. image: {
  57633. source: "./media/characters/hass/dick-side.svg"
  57634. }
  57635. },
  57636. dickBack: {
  57637. height: math.unit(1.4, "meters"),
  57638. name: "Dick (Back)",
  57639. image: {
  57640. source: "./media/characters/hass/dick-back.svg"
  57641. }
  57642. },
  57643. },
  57644. [
  57645. {
  57646. name: "Normal",
  57647. height: math.unit(6, "meters"),
  57648. default: true
  57649. },
  57650. ]
  57651. ))
  57652. characterMakers.push(() => makeCharacter(
  57653. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57654. {
  57655. front: {
  57656. height: math.unit(4, "feet"),
  57657. weight: math.unit(60, "lb"),
  57658. name: "Front",
  57659. image: {
  57660. source: "./media/characters/hickory-finnegan/front.svg",
  57661. extra: 444/411,
  57662. bottom: 10/454
  57663. }
  57664. },
  57665. side: {
  57666. height: math.unit(4, "feet"),
  57667. weight: math.unit(60, "lb"),
  57668. name: "Side",
  57669. image: {
  57670. source: "./media/characters/hickory-finnegan/side.svg",
  57671. extra: 444/411,
  57672. bottom: 10/454
  57673. }
  57674. },
  57675. back: {
  57676. height: math.unit(4, "feet"),
  57677. weight: math.unit(60, "lb"),
  57678. name: "Back",
  57679. image: {
  57680. source: "./media/characters/hickory-finnegan/back.svg",
  57681. extra: 444/411,
  57682. bottom: 10/454
  57683. }
  57684. },
  57685. },
  57686. [
  57687. {
  57688. name: "Normal",
  57689. height: math.unit(4, "feet"),
  57690. default: true
  57691. },
  57692. ]
  57693. ))
  57694. characterMakers.push(() => makeCharacter(
  57695. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57696. {
  57697. snivy_front: {
  57698. height: math.unit(2, "feet"),
  57699. weight: math.unit(17.9, "lb"),
  57700. name: "Front",
  57701. image: {
  57702. source: "./media/characters/robin-phox/snivy-front.svg",
  57703. extra: 569/504,
  57704. bottom: 33/602
  57705. },
  57706. form: "snivy",
  57707. default: true
  57708. },
  57709. snivy_frontNsfw: {
  57710. height: math.unit(2, "feet"),
  57711. weight: math.unit(17.9, "lb"),
  57712. name: "Front (NSFW)",
  57713. image: {
  57714. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57715. extra: 569/504,
  57716. bottom: 33/602
  57717. },
  57718. form: "snivy",
  57719. },
  57720. snivy_back: {
  57721. height: math.unit(2, "feet"),
  57722. weight: math.unit(17.9, "lb"),
  57723. name: "Back",
  57724. image: {
  57725. source: "./media/characters/robin-phox/snivy-back.svg",
  57726. extra: 577/508,
  57727. bottom: 21/598
  57728. },
  57729. form: "snivy",
  57730. },
  57731. snivy_foot: {
  57732. height: math.unit(0.68, "feet"),
  57733. name: "Foot",
  57734. image: {
  57735. source: "./media/characters/robin-phox/snivy-foot.svg"
  57736. },
  57737. form: "snivy",
  57738. },
  57739. snivy_sole: {
  57740. height: math.unit(0.68, "feet"),
  57741. name: "Sole",
  57742. image: {
  57743. source: "./media/characters/robin-phox/snivy-sole.svg"
  57744. },
  57745. form: "snivy",
  57746. },
  57747. yoshi_front: {
  57748. height: math.unit(6, "feet"),
  57749. weight: math.unit(150, "lb"),
  57750. name: "Front",
  57751. image: {
  57752. source: "./media/characters/robin-phox/yoshi-front.svg",
  57753. extra: 890/792,
  57754. bottom: 29/919
  57755. },
  57756. form: "yoshi",
  57757. default: true
  57758. },
  57759. yoshi_frontNsfw: {
  57760. height: math.unit(6, "feet"),
  57761. weight: math.unit(150, "lb"),
  57762. name: "Front (NSFW)",
  57763. image: {
  57764. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57765. extra: 890/792,
  57766. bottom: 29/919
  57767. },
  57768. form: "yoshi",
  57769. },
  57770. yoshi_back: {
  57771. height: math.unit(6, "feet"),
  57772. weight: math.unit(150, "lb"),
  57773. name: "Back",
  57774. image: {
  57775. source: "./media/characters/robin-phox/yoshi-back.svg",
  57776. extra: 890/792,
  57777. bottom: 29/919
  57778. },
  57779. form: "yoshi",
  57780. },
  57781. yoshi_foot: {
  57782. height: math.unit(1.5, "feet"),
  57783. name: "Foot",
  57784. image: {
  57785. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57786. },
  57787. form: "yoshi",
  57788. },
  57789. delphox_front: {
  57790. height: math.unit(4 + 11/12, "feet"),
  57791. weight: math.unit(86, "lb"),
  57792. name: "Front",
  57793. image: {
  57794. source: "./media/characters/robin-phox/delphox-front.svg",
  57795. extra: 1266/1069,
  57796. bottom: 32/1298
  57797. },
  57798. form: "delphox",
  57799. default: true
  57800. },
  57801. delphox_frontNsfw: {
  57802. height: math.unit(4 + 11/12, "feet"),
  57803. weight: math.unit(86, "lb"),
  57804. name: "Front (NSFW)",
  57805. image: {
  57806. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57807. extra: 1266/1069,
  57808. bottom: 32/1298
  57809. },
  57810. form: "delphox",
  57811. },
  57812. delphox_back: {
  57813. height: math.unit(4 + 11/12, "feet"),
  57814. weight: math.unit(86, "lb"),
  57815. name: "Back",
  57816. image: {
  57817. source: "./media/characters/robin-phox/delphox-back.svg",
  57818. extra: 1269/1083,
  57819. bottom: 15/1284
  57820. },
  57821. form: "delphox",
  57822. },
  57823. mienshao_front: {
  57824. height: math.unit(4 + 7/12, "feet"),
  57825. weight: math.unit(78.3, "lb"),
  57826. name: "Front",
  57827. image: {
  57828. source: "./media/characters/robin-phox/mienshao-front.svg",
  57829. extra: 1052/970,
  57830. bottom: 108/1160
  57831. },
  57832. form: "mienshao",
  57833. default: true
  57834. },
  57835. mienshao_frontNsfw: {
  57836. height: math.unit(4 + 7/12, "feet"),
  57837. weight: math.unit(78.3, "lb"),
  57838. name: "Front (NSFW)",
  57839. image: {
  57840. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57841. extra: 1052/970,
  57842. bottom: 108/1160
  57843. },
  57844. form: "mienshao",
  57845. },
  57846. mienshao_back: {
  57847. height: math.unit(4 + 7/12, "feet"),
  57848. weight: math.unit(78.3, "lb"),
  57849. name: "Back",
  57850. image: {
  57851. source: "./media/characters/robin-phox/mienshao-back.svg",
  57852. extra: 1102/982,
  57853. bottom: 32/1134
  57854. },
  57855. form: "mienshao",
  57856. },
  57857. inteleon_front: {
  57858. height: math.unit(6 + 3/12, "feet"),
  57859. weight: math.unit(99.6, "lb"),
  57860. name: "Front",
  57861. image: {
  57862. source: "./media/characters/robin-phox/inteleon-front.svg",
  57863. extra: 910/799,
  57864. bottom: 76/986
  57865. },
  57866. form: "inteleon",
  57867. default: true
  57868. },
  57869. inteleon_frontNsfw: {
  57870. height: math.unit(6 + 3/12, "feet"),
  57871. weight: math.unit(99.6, "lb"),
  57872. name: "Front (NSFW)",
  57873. image: {
  57874. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57875. extra: 910/799,
  57876. bottom: 76/986
  57877. },
  57878. form: "inteleon",
  57879. },
  57880. inteleon_back: {
  57881. height: math.unit(6 + 3/12, "feet"),
  57882. weight: math.unit(99.6, "lb"),
  57883. name: "Back",
  57884. image: {
  57885. source: "./media/characters/robin-phox/inteleon-back.svg",
  57886. extra: 907/796,
  57887. bottom: 25/932
  57888. },
  57889. form: "inteleon",
  57890. },
  57891. reshiram_front: {
  57892. height: math.unit(10 + 6/12, "feet"),
  57893. weight: math.unit(727.5, "lb"),
  57894. name: "Front",
  57895. image: {
  57896. source: "./media/characters/robin-phox/reshiram-front.svg",
  57897. extra: 1198/940,
  57898. bottom: 123/1321
  57899. },
  57900. form: "reshiram",
  57901. },
  57902. reshiram_frontNsfw: {
  57903. height: math.unit(10 + 6/12, "feet"),
  57904. weight: math.unit(727.5, "lb"),
  57905. name: "Front-nsfw",
  57906. image: {
  57907. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57908. extra: 1198/940,
  57909. bottom: 123/1321
  57910. },
  57911. form: "reshiram",
  57912. },
  57913. reshiram_back: {
  57914. height: math.unit(10 + 6/12, "feet"),
  57915. weight: math.unit(727.5, "lb"),
  57916. name: "Back",
  57917. image: {
  57918. source: "./media/characters/robin-phox/reshiram-back.svg",
  57919. extra: 1024/904,
  57920. bottom: 85/1109
  57921. },
  57922. form: "reshiram",
  57923. },
  57924. samurott_front: {
  57925. height: math.unit(8, "feet"),
  57926. weight: math.unit(208.6, "lb"),
  57927. name: "Front",
  57928. image: {
  57929. source: "./media/characters/robin-phox/samurott-front.svg",
  57930. extra: 1048/984,
  57931. bottom: 100/1148
  57932. },
  57933. form: "samurott",
  57934. },
  57935. samurott_frontNsfw: {
  57936. height: math.unit(8, "feet"),
  57937. weight: math.unit(208.6, "lb"),
  57938. name: "Front-nsfw",
  57939. image: {
  57940. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57941. extra: 1048/984,
  57942. bottom: 100/1148
  57943. },
  57944. form: "samurott",
  57945. },
  57946. samurott_back: {
  57947. height: math.unit(8, "feet"),
  57948. weight: math.unit(208.6, "lb"),
  57949. name: "Back",
  57950. image: {
  57951. source: "./media/characters/robin-phox/samurott-back.svg",
  57952. extra: 1110/1042,
  57953. bottom: 12/1122
  57954. },
  57955. form: "samurott",
  57956. },
  57957. samurott_feral: {
  57958. height: math.unit(4 + 11/12, "feet"),
  57959. weight: math.unit(208.6, "lb"),
  57960. name: "Feral",
  57961. image: {
  57962. source: "./media/characters/robin-phox/samurott-feral.svg",
  57963. extra: 766/681,
  57964. bottom: 108/874
  57965. },
  57966. form: "samurott",
  57967. },
  57968. },
  57969. [
  57970. {
  57971. name: "Normal",
  57972. height: math.unit(2, "feet"),
  57973. default: true,
  57974. form: "snivy"
  57975. },
  57976. {
  57977. name: "Normal",
  57978. height: math.unit(6, "feet"),
  57979. default: true,
  57980. form: "yoshi"
  57981. },
  57982. {
  57983. name: "Normal",
  57984. height: math.unit(4 + 11/12, "feet"),
  57985. default: true,
  57986. form: "delphox"
  57987. },
  57988. {
  57989. name: "Normal",
  57990. height: math.unit(4 + 7/12, "feet"),
  57991. default: true,
  57992. form: "mienshao"
  57993. },
  57994. {
  57995. name: "Normal",
  57996. height: math.unit(6 + 3/12, "feet"),
  57997. default: true,
  57998. form: "inteleon"
  57999. },
  58000. {
  58001. name: "Normal",
  58002. height: math.unit(10 + 6/12, "feet"),
  58003. default: true,
  58004. form: "reshiram"
  58005. },
  58006. {
  58007. name: "Normal",
  58008. height: math.unit(8, "feet"),
  58009. default: true,
  58010. form: "samurott"
  58011. },
  58012. {
  58013. name: "Macro",
  58014. height: math.unit(500, "feet"),
  58015. allForms: true
  58016. },
  58017. {
  58018. name: "Mega Macro",
  58019. height: math.unit(10, "earths"),
  58020. allForms: true
  58021. },
  58022. {
  58023. name: "Giga Macro",
  58024. height: math.unit(1, "galaxy"),
  58025. allForms: true
  58026. },
  58027. {
  58028. name: "Godly Macro",
  58029. height: math.unit(1e10, "multiverses"),
  58030. allForms: true
  58031. },
  58032. ],
  58033. {
  58034. "snivy": {
  58035. name: "Snivy",
  58036. default: true
  58037. },
  58038. "yoshi": {
  58039. name: "Yoshi",
  58040. },
  58041. "delphox": {
  58042. name: "Delphox",
  58043. },
  58044. "mienshao": {
  58045. name: "Mienshao",
  58046. },
  58047. "inteleon": {
  58048. name: "Inteleon",
  58049. },
  58050. "reshiram": {
  58051. name: "Reshiram",
  58052. },
  58053. "samurott": {
  58054. name: "Samurott",
  58055. },
  58056. }
  58057. ))
  58058. characterMakers.push(() => makeCharacter(
  58059. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58060. {
  58061. front: {
  58062. height: math.unit(4, "feet"),
  58063. name: "Front",
  58064. image: {
  58065. source: "./media/characters/ash-leung/front.svg",
  58066. extra: 1916/1792,
  58067. bottom: 50/1966
  58068. }
  58069. },
  58070. },
  58071. [
  58072. {
  58073. name: "Atomic",
  58074. height: math.unit(1, "angstrom")
  58075. },
  58076. {
  58077. name: "Microscopic",
  58078. height: math.unit(4000, "angstroms")
  58079. },
  58080. {
  58081. name: "Speck",
  58082. height: math.unit(1, "mm")
  58083. },
  58084. {
  58085. name: "Small",
  58086. height: math.unit(1, "inch")
  58087. },
  58088. {
  58089. name: "Normal",
  58090. height: math.unit(4, "feet"),
  58091. default: true
  58092. },
  58093. ]
  58094. ))
  58095. characterMakers.push(() => makeCharacter(
  58096. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58097. {
  58098. frontDressed: {
  58099. height: math.unit(2.08, "meters"),
  58100. weight: math.unit(175, "lb"),
  58101. name: "Front (Dressed)",
  58102. image: {
  58103. source: "./media/characters/carie/front-dressed.svg",
  58104. extra: 456/417,
  58105. bottom: 7/463
  58106. }
  58107. },
  58108. backDressed: {
  58109. height: math.unit(2.08, "meters"),
  58110. weight: math.unit(175, "lb"),
  58111. name: "Back (Dressed)",
  58112. image: {
  58113. source: "./media/characters/carie/back-dressed.svg",
  58114. extra: 455/414,
  58115. bottom: 11/466
  58116. }
  58117. },
  58118. front: {
  58119. height: math.unit(2, "meters"),
  58120. weight: math.unit(175, "lb"),
  58121. name: "Front",
  58122. image: {
  58123. source: "./media/characters/carie/front.svg",
  58124. extra: 438/399,
  58125. bottom: 12/450
  58126. }
  58127. },
  58128. back: {
  58129. height: math.unit(2, "meters"),
  58130. weight: math.unit(175, "lb"),
  58131. name: "Back",
  58132. image: {
  58133. source: "./media/characters/carie/back.svg",
  58134. extra: 438/397,
  58135. bottom: 7/445
  58136. }
  58137. },
  58138. },
  58139. [
  58140. {
  58141. name: "Normal",
  58142. height: math.unit(2.08, "meters"),
  58143. default: true
  58144. },
  58145. {
  58146. name: "Macro",
  58147. height: math.unit(2.08e3, "meters")
  58148. },
  58149. {
  58150. name: "Mega Macro",
  58151. height: math.unit(2.08e6, "meters")
  58152. },
  58153. {
  58154. name: "Giga Macro",
  58155. height: math.unit(2.08e9, "meters")
  58156. },
  58157. {
  58158. name: "Tera Macro",
  58159. height: math.unit(2.08e12, "meters")
  58160. },
  58161. {
  58162. name: "Peta Macro",
  58163. height: math.unit(2.08e15, "meters")
  58164. },
  58165. {
  58166. name: "Exa Macro",
  58167. height: math.unit(2.08e18, "meters")
  58168. },
  58169. {
  58170. name: "Zetta Macro",
  58171. height: math.unit(2.08e21, "meters")
  58172. },
  58173. {
  58174. name: "Yotta Macro",
  58175. height: math.unit(2.08e24, "meters")
  58176. },
  58177. ]
  58178. ))
  58179. characterMakers.push(() => makeCharacter(
  58180. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58181. {
  58182. front: {
  58183. height: math.unit(5 + 2/12, "feet"),
  58184. weight: math.unit(120, "lb"),
  58185. name: "Front",
  58186. image: {
  58187. source: "./media/characters/sai-bree/front.svg",
  58188. extra: 1843/1702,
  58189. bottom: 91/1934
  58190. }
  58191. },
  58192. back: {
  58193. height: math.unit(5 + 2/12, "feet"),
  58194. weight: math.unit(120, "lb"),
  58195. name: "Back",
  58196. image: {
  58197. source: "./media/characters/sai-bree/back.svg",
  58198. extra: 1809/1637,
  58199. bottom: 56/1865
  58200. }
  58201. },
  58202. },
  58203. [
  58204. {
  58205. name: "Normal",
  58206. height: math.unit(5 + 2/12, "feet"),
  58207. default: true
  58208. },
  58209. {
  58210. name: "Macro",
  58211. height: math.unit(500, "feet")
  58212. },
  58213. ]
  58214. ))
  58215. characterMakers.push(() => makeCharacter(
  58216. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58217. {
  58218. side: {
  58219. height: math.unit(0.77, "meters"),
  58220. weight: math.unit(120, "lb"),
  58221. name: "Side",
  58222. image: {
  58223. source: "./media/characters/davwyn/side.svg",
  58224. extra: 1557/1225,
  58225. bottom: 131/1688
  58226. }
  58227. },
  58228. front: {
  58229. height: math.unit(0.835410, "meters"),
  58230. weight: math.unit(120, "lb"),
  58231. name: "Front",
  58232. image: {
  58233. source: "./media/characters/davwyn/front.svg",
  58234. extra: 870/843,
  58235. bottom: 175/1045
  58236. }
  58237. },
  58238. },
  58239. [
  58240. {
  58241. name: "Minidrake",
  58242. height: math.unit(0.77/4, "meters")
  58243. },
  58244. {
  58245. name: "Normal",
  58246. height: math.unit(0.77, "meters"),
  58247. default: true
  58248. },
  58249. ]
  58250. ))
  58251. characterMakers.push(() => makeCharacter(
  58252. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58253. {
  58254. front: {
  58255. height: math.unit(10 + 3/12, "feet"),
  58256. weight: math.unit(2857, "lb"),
  58257. name: "Front",
  58258. image: {
  58259. source: "./media/characters/balans/front.svg",
  58260. extra: 427/402,
  58261. bottom: 26/453
  58262. }
  58263. },
  58264. side: {
  58265. height: math.unit(10 + 3/12, "feet"),
  58266. weight: math.unit(2857, "lb"),
  58267. name: "Side",
  58268. image: {
  58269. source: "./media/characters/balans/side.svg",
  58270. extra: 397/371,
  58271. bottom: 17/414
  58272. }
  58273. },
  58274. back: {
  58275. height: math.unit(10 + 3/12, "feet"),
  58276. weight: math.unit(2857, "lb"),
  58277. name: "Back",
  58278. image: {
  58279. source: "./media/characters/balans/back.svg",
  58280. extra: 408/381,
  58281. bottom: 14/422
  58282. }
  58283. },
  58284. hand: {
  58285. height: math.unit(1.15, "feet"),
  58286. name: "Hand",
  58287. image: {
  58288. source: "./media/characters/balans/hand.svg"
  58289. }
  58290. },
  58291. footRest: {
  58292. height: math.unit(3.1, "feet"),
  58293. name: "Foot (Rest)",
  58294. image: {
  58295. source: "./media/characters/balans/foot-rest.svg"
  58296. }
  58297. },
  58298. footActive: {
  58299. height: math.unit(3.5, "feet"),
  58300. name: "Foot (Active)",
  58301. image: {
  58302. source: "./media/characters/balans/foot-active.svg"
  58303. }
  58304. },
  58305. },
  58306. [
  58307. {
  58308. name: "Normal",
  58309. height: math.unit(10 + 3/12, "feet"),
  58310. default: true
  58311. },
  58312. ]
  58313. ))
  58314. characterMakers.push(() => makeCharacter(
  58315. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58316. {
  58317. side: {
  58318. height: math.unit(9, "meters"),
  58319. weight: math.unit(114, "tonnes"),
  58320. name: "Side",
  58321. image: {
  58322. source: "./media/characters/eldkveikir/side.svg",
  58323. extra: 1927/338,
  58324. bottom: 42/1969
  58325. }
  58326. },
  58327. sitting: {
  58328. height: math.unit(13.4, "meters"),
  58329. weight: math.unit(114, "tonnes"),
  58330. name: "Sitting",
  58331. image: {
  58332. source: "./media/characters/eldkveikir/sitting.svg",
  58333. extra: 1108/963,
  58334. bottom: 610/1718
  58335. }
  58336. },
  58337. maw: {
  58338. height: math.unit(8.36, "meters"),
  58339. name: "Maw",
  58340. image: {
  58341. source: "./media/characters/eldkveikir/maw.svg"
  58342. }
  58343. },
  58344. hand: {
  58345. height: math.unit(4.84, "meters"),
  58346. name: "Hand",
  58347. image: {
  58348. source: "./media/characters/eldkveikir/hand.svg"
  58349. }
  58350. },
  58351. foot: {
  58352. height: math.unit(6.9, "meters"),
  58353. name: "Foot",
  58354. image: {
  58355. source: "./media/characters/eldkveikir/foot.svg"
  58356. }
  58357. },
  58358. genitals: {
  58359. height: math.unit(9.6, "meters"),
  58360. name: "Genitals",
  58361. image: {
  58362. source: "./media/characters/eldkveikir/genitals.svg"
  58363. }
  58364. },
  58365. },
  58366. [
  58367. {
  58368. name: "Normal",
  58369. height: math.unit(9, "meters"),
  58370. default: true
  58371. },
  58372. ]
  58373. ))
  58374. characterMakers.push(() => makeCharacter(
  58375. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58376. {
  58377. front: {
  58378. height: math.unit(14, "feet"),
  58379. weight: math.unit(4100, "lb"),
  58380. name: "Front",
  58381. image: {
  58382. source: "./media/characters/arrow/front.svg",
  58383. extra: 330/318,
  58384. bottom: 56/386
  58385. }
  58386. },
  58387. },
  58388. [
  58389. {
  58390. name: "Normal",
  58391. height: math.unit(14, "feet"),
  58392. default: true
  58393. },
  58394. {
  58395. name: "Minimacro",
  58396. height: math.unit(63, "feet")
  58397. },
  58398. {
  58399. name: "Macro",
  58400. height: math.unit(630, "feet")
  58401. },
  58402. {
  58403. name: "Megamacro",
  58404. height: math.unit(12600, "feet")
  58405. },
  58406. {
  58407. name: "Gigamacro",
  58408. height: math.unit(18000, "miles")
  58409. },
  58410. ]
  58411. ))
  58412. characterMakers.push(() => makeCharacter(
  58413. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58414. {
  58415. front: {
  58416. height: math.unit(10, "feet"),
  58417. weight: math.unit(2.4, "tons"),
  58418. name: "Front",
  58419. image: {
  58420. source: "./media/characters/3yk-k0-unit/front.svg",
  58421. extra: 573/561,
  58422. bottom: 33/606
  58423. }
  58424. },
  58425. back: {
  58426. height: math.unit(10, "feet"),
  58427. weight: math.unit(2.4, "tons"),
  58428. name: "Back",
  58429. image: {
  58430. source: "./media/characters/3yk-k0-unit/back.svg",
  58431. extra: 614/573,
  58432. bottom: 32/646
  58433. }
  58434. },
  58435. maw: {
  58436. height: math.unit(2.15, "feet"),
  58437. name: "Maw",
  58438. image: {
  58439. source: "./media/characters/3yk-k0-unit/maw.svg"
  58440. }
  58441. },
  58442. },
  58443. [
  58444. {
  58445. name: "Normal",
  58446. height: math.unit(10, "feet"),
  58447. default: true
  58448. },
  58449. ]
  58450. ))
  58451. characterMakers.push(() => makeCharacter(
  58452. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58453. {
  58454. front: {
  58455. height: math.unit(8 + 8/12, "feet"),
  58456. name: "Front",
  58457. image: {
  58458. source: "./media/characters/nemo/front.svg",
  58459. extra: 1308/1217,
  58460. bottom: 57/1365
  58461. }
  58462. },
  58463. },
  58464. [
  58465. {
  58466. name: "Normal",
  58467. height: math.unit(8 + 8/12, "feet"),
  58468. default: true
  58469. },
  58470. ]
  58471. ))
  58472. characterMakers.push(() => makeCharacter(
  58473. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58474. {
  58475. front: {
  58476. height: math.unit(8, "feet"),
  58477. weight: math.unit(760, "lb"),
  58478. name: "Front",
  58479. image: {
  58480. source: "./media/characters/rexx/front.svg",
  58481. extra: 786/750,
  58482. bottom: 17/803
  58483. },
  58484. extraAttributes: {
  58485. "pawLength": {
  58486. name: "Paw Length",
  58487. power: 1,
  58488. type: "length",
  58489. base: math.unit(27, "inches")
  58490. },
  58491. }
  58492. },
  58493. },
  58494. [
  58495. {
  58496. name: "Micro",
  58497. height: math.unit(2, "inches")
  58498. },
  58499. {
  58500. name: "Normal",
  58501. height: math.unit(8, "feet"),
  58502. default: true
  58503. },
  58504. {
  58505. name: "Macro",
  58506. height: math.unit(150, "feet")
  58507. },
  58508. ]
  58509. ))
  58510. characterMakers.push(() => makeCharacter(
  58511. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58512. {
  58513. front: {
  58514. height: math.unit(18, "feet"),
  58515. weight: math.unit(1975, "lb"),
  58516. name: "Front",
  58517. image: {
  58518. source: "./media/characters/draco/front.svg",
  58519. extra: 1325/1241,
  58520. bottom: 83/1408
  58521. }
  58522. },
  58523. back: {
  58524. height: math.unit(18, "feet"),
  58525. weight: math.unit(1975, "lb"),
  58526. name: "Back",
  58527. image: {
  58528. source: "./media/characters/draco/back.svg",
  58529. extra: 1332/1250,
  58530. bottom: 43/1375
  58531. }
  58532. },
  58533. dick: {
  58534. height: math.unit(7.5, "feet"),
  58535. name: "Dick",
  58536. image: {
  58537. source: "./media/characters/draco/dick.svg"
  58538. }
  58539. },
  58540. },
  58541. [
  58542. {
  58543. name: "Normal",
  58544. height: math.unit(18, "feet"),
  58545. default: true
  58546. },
  58547. ]
  58548. ))
  58549. characterMakers.push(() => makeCharacter(
  58550. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58551. {
  58552. front: {
  58553. height: math.unit(3.2, "meters"),
  58554. name: "Front",
  58555. image: {
  58556. source: "./media/characters/harriett/front.svg",
  58557. extra: 1966/1915,
  58558. bottom: 9/1975
  58559. }
  58560. },
  58561. },
  58562. [
  58563. {
  58564. name: "Normal",
  58565. height: math.unit(3.2, "meters"),
  58566. default: true
  58567. },
  58568. ]
  58569. ))
  58570. characterMakers.push(() => makeCharacter(
  58571. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58572. {
  58573. standing: {
  58574. height: math.unit(180, "cm"),
  58575. weight: math.unit(185, "lb"),
  58576. name: "Standing",
  58577. image: {
  58578. source: "./media/characters/serpentus/standing.svg",
  58579. extra: 882/878,
  58580. bottom: 16/898
  58581. }
  58582. },
  58583. sitting: {
  58584. height: math.unit(0.8, "meter"),
  58585. weight: math.unit(155, "lb"),
  58586. name: "Sitting",
  58587. image: {
  58588. source: "./media/characters/serpentus/sitting.svg",
  58589. extra: 293/290,
  58590. bottom: 140/433
  58591. }
  58592. },
  58593. },
  58594. [
  58595. {
  58596. name: "Normal",
  58597. height: math.unit(1.8, "meter"),
  58598. default: true
  58599. },
  58600. ]
  58601. ))
  58602. characterMakers.push(() => makeCharacter(
  58603. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58604. {
  58605. front: {
  58606. height: math.unit(5.7174385736, "feet"),
  58607. name: "Front",
  58608. image: {
  58609. source: "./media/characters/nova-polecat/front.svg",
  58610. extra: 1317/1216,
  58611. bottom: 92/1409
  58612. }
  58613. },
  58614. },
  58615. [
  58616. {
  58617. name: "Normal",
  58618. height: math.unit(5.7174385736, "feet"),
  58619. default: true
  58620. },
  58621. ]
  58622. ))
  58623. characterMakers.push(() => makeCharacter(
  58624. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58625. {
  58626. front: {
  58627. height: math.unit(5 + 4/12, "feet"),
  58628. weight: math.unit(250, "lb"),
  58629. name: "Front",
  58630. image: {
  58631. source: "./media/characters/mook/front.svg",
  58632. extra: 1088/1037,
  58633. bottom: 132/1220
  58634. }
  58635. },
  58636. back: {
  58637. height: math.unit(5 + 1/12, "feet"),
  58638. weight: math.unit(250, "lb"),
  58639. name: "Back",
  58640. image: {
  58641. source: "./media/characters/mook/back.svg",
  58642. extra: 1184/905,
  58643. bottom: 96/1280
  58644. }
  58645. },
  58646. head: {
  58647. height: math.unit(1.85, "feet"),
  58648. name: "Head",
  58649. image: {
  58650. source: "./media/characters/mook/head.svg"
  58651. }
  58652. },
  58653. hand: {
  58654. height: math.unit(1.9, "feet"),
  58655. name: "Hand",
  58656. image: {
  58657. source: "./media/characters/mook/hand.svg"
  58658. }
  58659. },
  58660. palm: {
  58661. height: math.unit(1.84, "feet"),
  58662. name: "Palm",
  58663. image: {
  58664. source: "./media/characters/mook/palm.svg"
  58665. }
  58666. },
  58667. foot: {
  58668. height: math.unit(1.44, "feet"),
  58669. name: "Foot",
  58670. image: {
  58671. source: "./media/characters/mook/foot.svg"
  58672. }
  58673. },
  58674. sole: {
  58675. height: math.unit(1.44, "feet"),
  58676. name: "Sole",
  58677. image: {
  58678. source: "./media/characters/mook/sole.svg"
  58679. }
  58680. },
  58681. },
  58682. [
  58683. {
  58684. name: "Normal",
  58685. height: math.unit(5 + 4/12, "feet"),
  58686. default: true
  58687. },
  58688. {
  58689. name: "Big",
  58690. height: math.unit(12, "feet")
  58691. },
  58692. ]
  58693. ))
  58694. characterMakers.push(() => makeCharacter(
  58695. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58696. {
  58697. front: {
  58698. height: math.unit(6 + 10/12, "feet"),
  58699. weight: math.unit(233, "lb"),
  58700. name: "Front",
  58701. image: {
  58702. source: "./media/characters/kayla/front.svg",
  58703. extra: 1850/1775,
  58704. bottom: 65/1915
  58705. }
  58706. },
  58707. },
  58708. [
  58709. {
  58710. name: "Normal",
  58711. height: math.unit(6 + 10/12, "feet"),
  58712. default: true
  58713. },
  58714. {
  58715. name: "Amazonian",
  58716. height: math.unit(12 + 5/12, "feet")
  58717. },
  58718. {
  58719. name: "Mini Giantess",
  58720. height: math.unit(26, "feet")
  58721. },
  58722. {
  58723. name: "Giantess",
  58724. height: math.unit(200, "feet")
  58725. },
  58726. {
  58727. name: "Mega Giantess",
  58728. height: math.unit(2500, "feet")
  58729. },
  58730. {
  58731. name: "City Sized",
  58732. height: math.unit(50, "miles")
  58733. },
  58734. {
  58735. name: "Country Sized",
  58736. height: math.unit(500, "miles")
  58737. },
  58738. {
  58739. name: "Continent Sized",
  58740. height: math.unit(2500, "miles")
  58741. },
  58742. {
  58743. name: "Planet Sized",
  58744. height: math.unit(10000, "miles")
  58745. },
  58746. {
  58747. name: "Star Sized",
  58748. height: math.unit(5e6, "miles")
  58749. },
  58750. {
  58751. name: "Solar System Sized",
  58752. height: math.unit(125, "AU")
  58753. },
  58754. {
  58755. name: "Galaxy Sized",
  58756. height: math.unit(300e3, "lightyears")
  58757. },
  58758. {
  58759. name: "Universe Sized",
  58760. height: math.unit(200e9, "lightyears")
  58761. },
  58762. {
  58763. name: "Multiverse Sized",
  58764. height: math.unit(20, "exauniverses")
  58765. },
  58766. {
  58767. name: "Mother of Existence",
  58768. height: math.unit(1e6, "yottauniverses")
  58769. },
  58770. ]
  58771. ))
  58772. characterMakers.push(() => makeCharacter(
  58773. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58774. {
  58775. side: {
  58776. height: math.unit(9.5, "meters"),
  58777. name: "Side",
  58778. image: {
  58779. source: "./media/characters/kulve-ragnarok/side.svg",
  58780. extra: 364/326,
  58781. bottom: 50/414
  58782. }
  58783. },
  58784. },
  58785. [
  58786. {
  58787. name: "Normal",
  58788. height: math.unit(9.5, "meters"),
  58789. default: true
  58790. },
  58791. ]
  58792. ))
  58793. characterMakers.push(() => makeCharacter(
  58794. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58795. {
  58796. front: {
  58797. height: math.unit(8 + 9/12, "feet"),
  58798. name: "Front",
  58799. image: {
  58800. source: "./media/characters/atlas-goat/front.svg",
  58801. extra: 1462/1323,
  58802. bottom: 12/1474
  58803. }
  58804. },
  58805. },
  58806. [
  58807. {
  58808. name: "Normal",
  58809. height: math.unit(8 + 9/12, "feet"),
  58810. default: true
  58811. },
  58812. {
  58813. name: "Skyline",
  58814. height: math.unit(845, "feet")
  58815. },
  58816. {
  58817. name: "Orbital",
  58818. height: math.unit(93000, "miles")
  58819. },
  58820. {
  58821. name: "Constellation",
  58822. height: math.unit(27000, "lightyears")
  58823. },
  58824. ]
  58825. ))
  58826. characterMakers.push(() => makeCharacter(
  58827. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58828. {
  58829. side: {
  58830. height: math.unit(1.8, "meters"),
  58831. weight: math.unit(120, "kg"),
  58832. name: "Side",
  58833. image: {
  58834. source: "./media/characters/xie-ling/side.svg",
  58835. extra: 646/574,
  58836. bottom: 44/690
  58837. }
  58838. },
  58839. },
  58840. [
  58841. {
  58842. name: "Tiny",
  58843. height: math.unit(1.80, "meters")
  58844. },
  58845. {
  58846. name: "Small",
  58847. height: math.unit(6, "meters")
  58848. },
  58849. {
  58850. name: "Medium",
  58851. height: math.unit(15, "meters")
  58852. },
  58853. {
  58854. name: "Normal",
  58855. height: math.unit(30, "meters"),
  58856. default: true
  58857. },
  58858. {
  58859. name: "Above Normal",
  58860. height: math.unit(60, "meters")
  58861. },
  58862. {
  58863. name: "Big",
  58864. height: math.unit(220, "meters")
  58865. },
  58866. {
  58867. name: "Giant",
  58868. height: math.unit(2.2, "km")
  58869. },
  58870. {
  58871. name: "Macro",
  58872. height: math.unit(25, "km")
  58873. },
  58874. {
  58875. name: "Mega Macro",
  58876. height: math.unit(350, "km")
  58877. },
  58878. {
  58879. name: "Mega Macro+",
  58880. height: math.unit(5000, "km")
  58881. },
  58882. {
  58883. name: "Goddess",
  58884. height: math.unit(3, "multiverses")
  58885. },
  58886. ]
  58887. ))
  58888. characterMakers.push(() => makeCharacter(
  58889. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58890. {
  58891. frontSfw: {
  58892. height: math.unit(5 + 11/12, "feet"),
  58893. weight: math.unit(210, "lb"),
  58894. name: "Front",
  58895. image: {
  58896. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58897. extra: 1928/1821,
  58898. bottom: 45/1973
  58899. }
  58900. },
  58901. backSfw: {
  58902. height: math.unit(5 + 11/12, "feet"),
  58903. weight: math.unit(210, "lb"),
  58904. name: "Back",
  58905. image: {
  58906. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58907. extra: 1920/1813,
  58908. bottom: 34/1954
  58909. }
  58910. },
  58911. frontNsfw: {
  58912. height: math.unit(5 + 11/12, "feet"),
  58913. weight: math.unit(210, "lb"),
  58914. name: "Front (NSFW)",
  58915. image: {
  58916. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58917. extra: 1928/1821,
  58918. bottom: 45/1973
  58919. }
  58920. },
  58921. backNsfw: {
  58922. height: math.unit(5 + 11/12, "feet"),
  58923. weight: math.unit(210, "lb"),
  58924. name: "Back (NSFW)",
  58925. image: {
  58926. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58927. extra: 1920/1813,
  58928. bottom: 34/1954
  58929. }
  58930. },
  58931. },
  58932. [
  58933. {
  58934. name: "Normal",
  58935. height: math.unit(5 + 11/12, "feet"),
  58936. default: true
  58937. },
  58938. {
  58939. name: "Goddess",
  58940. height: math.unit(20 + 3/12, "feet")
  58941. },
  58942. {
  58943. name: "Breaker of Man",
  58944. height: math.unit(329 + 9/12, "feet")
  58945. },
  58946. {
  58947. name: "Solar Justice",
  58948. height: math.unit(0.6, "solarradii")
  58949. },
  58950. {
  58951. name: "She Who Judges",
  58952. height: math.unit(1, "universe")
  58953. },
  58954. ]
  58955. ))
  58956. characterMakers.push(() => makeCharacter(
  58957. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58958. {
  58959. casual_front: {
  58960. height: math.unit(6 + 1/12, "feet"),
  58961. weight: math.unit(190, "lb"),
  58962. preyCapacity: math.unit(1, "people"),
  58963. name: "Front",
  58964. image: {
  58965. source: "./media/characters/managarmr/casual-front.svg",
  58966. extra: 411/381,
  58967. bottom: 15/426
  58968. },
  58969. extraAttributes: {
  58970. "pawSize": {
  58971. name: "Paw Size",
  58972. power: 1,
  58973. type: "length",
  58974. base: math.unit(0.2, "meters")
  58975. },
  58976. },
  58977. form: "casual",
  58978. },
  58979. casual_back: {
  58980. height: math.unit(6 + 1/12, "feet"),
  58981. weight: math.unit(190, "lb"),
  58982. preyCapacity: math.unit(1, "people"),
  58983. name: "Back",
  58984. image: {
  58985. source: "./media/characters/managarmr/casual-back.svg",
  58986. extra: 413/383,
  58987. bottom: 13/426
  58988. },
  58989. extraAttributes: {
  58990. "pawSize": {
  58991. name: "Paw Size",
  58992. power: 1,
  58993. type: "length",
  58994. base: math.unit(0.2, "meters")
  58995. },
  58996. },
  58997. form: "casual",
  58998. },
  58999. base_front: {
  59000. height: math.unit(7, "feet"),
  59001. weight: math.unit(210, "lb"),
  59002. preyCapacity: math.unit(2, "people"),
  59003. name: "Front",
  59004. image: {
  59005. source: "./media/characters/managarmr/base-front.svg",
  59006. extra: 580/485,
  59007. bottom: 32/612
  59008. },
  59009. extraAttributes: {
  59010. "wingspan": {
  59011. name: "Wingspan",
  59012. power: 1,
  59013. type: "length",
  59014. base: math.unit(4, "meters")
  59015. },
  59016. "pawSize": {
  59017. name: "Paw Size",
  59018. power: 1,
  59019. type: "length",
  59020. base: math.unit(0.2, "meters")
  59021. },
  59022. },
  59023. form: "base",
  59024. },
  59025. "true-divine_front": {
  59026. height: math.unit(40, "feet"),
  59027. weight: math.unit(39000, "lb"),
  59028. preyCapacity: math.unit(375, "people"),
  59029. name: "Front",
  59030. image: {
  59031. source: "./media/characters/managarmr/true-divine-front.svg",
  59032. extra: 725/573,
  59033. bottom: 120/845
  59034. },
  59035. extraAttributes: {
  59036. "wingspan": {
  59037. name: "Wingspan",
  59038. power: 1,
  59039. type: "length",
  59040. base: math.unit(20, "meters")
  59041. },
  59042. "pawSize": {
  59043. name: "Paw Size",
  59044. power: 1,
  59045. type: "length",
  59046. base: math.unit(1.5, "meters")
  59047. },
  59048. },
  59049. form: "true-divine",
  59050. },
  59051. },
  59052. [
  59053. {
  59054. name: "Normal",
  59055. height: math.unit(6 + 1/12, "feet"),
  59056. form: "casual",
  59057. default: true
  59058. },
  59059. {
  59060. name: "Normal",
  59061. height: math.unit(7, "feet"),
  59062. form: "base",
  59063. default: true
  59064. },
  59065. ],
  59066. {
  59067. "casual": {
  59068. name: "Casual",
  59069. default: true
  59070. },
  59071. "base": {
  59072. name: "Base",
  59073. },
  59074. "true-divine": {
  59075. name: "True Divine",
  59076. },
  59077. }
  59078. ))
  59079. characterMakers.push(() => makeCharacter(
  59080. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59081. {
  59082. front: {
  59083. height: math.unit(1.8, "meters"),
  59084. weight: math.unit(110, "kg"),
  59085. name: "Front",
  59086. image: {
  59087. source: "./media/characters/mystra/front.svg",
  59088. extra: 529/442,
  59089. bottom: 31/560
  59090. }
  59091. },
  59092. frontLewd: {
  59093. height: math.unit(1.8, "meters"),
  59094. weight: math.unit(110, "kg"),
  59095. name: "Front (Lewd)",
  59096. image: {
  59097. source: "./media/characters/mystra/front-lewd.svg",
  59098. extra: 529/442,
  59099. bottom: 31/560
  59100. }
  59101. },
  59102. head: {
  59103. height: math.unit(1.63, "feet"),
  59104. name: "Head",
  59105. image: {
  59106. source: "./media/characters/mystra/head.svg"
  59107. }
  59108. },
  59109. paw: {
  59110. height: math.unit(1.9, "feet"),
  59111. name: "Paw",
  59112. image: {
  59113. source: "./media/characters/mystra/paw.svg"
  59114. }
  59115. },
  59116. },
  59117. [
  59118. {
  59119. name: "Incognito",
  59120. height: math.unit(2.3, "meters")
  59121. },
  59122. {
  59123. name: "Small Macro",
  59124. height: math.unit(300, "meters")
  59125. },
  59126. {
  59127. name: "Small Mega",
  59128. height: math.unit(2, "km")
  59129. },
  59130. {
  59131. name: "Mega",
  59132. height: math.unit(30, "km")
  59133. },
  59134. {
  59135. name: "Small Giga",
  59136. height: math.unit(100, "km")
  59137. },
  59138. {
  59139. name: "Giga",
  59140. height: math.unit(1000, "km"),
  59141. default: true
  59142. },
  59143. {
  59144. name: "Continental",
  59145. height: math.unit(5000, "km")
  59146. },
  59147. {
  59148. name: "Terra",
  59149. height: math.unit(20000, "km")
  59150. },
  59151. {
  59152. name: "Solar",
  59153. height: math.unit(2e6, "km")
  59154. },
  59155. {
  59156. name: "Galactic",
  59157. height: math.unit(528502, "lightyears")
  59158. },
  59159. {
  59160. name: "Universal",
  59161. height: math.unit(20, "universes")
  59162. },
  59163. ]
  59164. ))
  59165. characterMakers.push(() => makeCharacter(
  59166. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59167. {
  59168. front: {
  59169. height: math.unit(2, "meters"),
  59170. weight: math.unit(140, "kg"),
  59171. name: "Front",
  59172. image: {
  59173. source: "./media/characters/caleb/front.svg",
  59174. extra: 873/817,
  59175. bottom: 47/920
  59176. }
  59177. },
  59178. back: {
  59179. height: math.unit(2, "meters"),
  59180. weight: math.unit(140, "kg"),
  59181. name: "Back",
  59182. image: {
  59183. source: "./media/characters/caleb/back.svg",
  59184. extra: 877/828,
  59185. bottom: 24/901
  59186. }
  59187. },
  59188. snakeTail: {
  59189. height: math.unit(1.44, "feet"),
  59190. name: "Snake Tail",
  59191. image: {
  59192. source: "./media/characters/caleb/snake-tail.svg"
  59193. }
  59194. },
  59195. dick: {
  59196. height: math.unit(2.6, "feet"),
  59197. name: "Dick",
  59198. image: {
  59199. source: "./media/characters/caleb/dick.svg"
  59200. }
  59201. },
  59202. },
  59203. [
  59204. {
  59205. name: "Incognito",
  59206. height: math.unit(3, "meters")
  59207. },
  59208. {
  59209. name: "Home Size",
  59210. height: math.unit(200, "meters"),
  59211. default: true
  59212. },
  59213. {
  59214. name: "Macro",
  59215. height: math.unit(500, "meters")
  59216. },
  59217. {
  59218. name: "Big Macro",
  59219. height: math.unit(5, "km")
  59220. },
  59221. {
  59222. name: "Giga",
  59223. height: math.unit(250, "km")
  59224. },
  59225. {
  59226. name: "Giga+",
  59227. height: math.unit(5000, "km")
  59228. },
  59229. {
  59230. name: "Small Terra",
  59231. height: math.unit(35e3, "km")
  59232. },
  59233. {
  59234. name: "Terra",
  59235. height: math.unit(2e6, "km")
  59236. },
  59237. {
  59238. name: "Terra+",
  59239. height: math.unit(1.5e6, "km")
  59240. },
  59241. ]
  59242. ))
  59243. characterMakers.push(() => makeCharacter(
  59244. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59245. {
  59246. front: {
  59247. height: math.unit(2, "meters"),
  59248. weight: math.unit(120, "kg"),
  59249. name: "Front",
  59250. image: {
  59251. source: "./media/characters/gilirian/front.svg",
  59252. extra: 805/737,
  59253. bottom: 13/818
  59254. }
  59255. },
  59256. side: {
  59257. height: math.unit(2, "meters"),
  59258. weight: math.unit(120, "kg"),
  59259. name: "Side",
  59260. image: {
  59261. source: "./media/characters/gilirian/side.svg",
  59262. extra: 810/746,
  59263. bottom: 6/816
  59264. }
  59265. },
  59266. back: {
  59267. height: math.unit(2, "meters"),
  59268. weight: math.unit(120, "kg"),
  59269. name: "Back",
  59270. image: {
  59271. source: "./media/characters/gilirian/back.svg",
  59272. extra: 815/745,
  59273. bottom: 15/830
  59274. }
  59275. },
  59276. frontNsfw: {
  59277. height: math.unit(2, "meters"),
  59278. weight: math.unit(120, "kg"),
  59279. name: "Front (NSFW)",
  59280. image: {
  59281. source: "./media/characters/gilirian/front-nsfw.svg",
  59282. extra: 805/737,
  59283. bottom: 13/818
  59284. }
  59285. },
  59286. sideNsfw: {
  59287. height: math.unit(2, "meters"),
  59288. weight: math.unit(120, "kg"),
  59289. name: "Side (NSFW)",
  59290. image: {
  59291. source: "./media/characters/gilirian/side-nsfw.svg",
  59292. extra: 810/746,
  59293. bottom: 6/816
  59294. }
  59295. },
  59296. },
  59297. [
  59298. {
  59299. name: "Incognito",
  59300. height: math.unit(2, "meters"),
  59301. default: true
  59302. },
  59303. {
  59304. name: "Macro",
  59305. height: math.unit(250, "meters")
  59306. },
  59307. {
  59308. name: "Big Macro",
  59309. height: math.unit(1500, "meters")
  59310. },
  59311. {
  59312. name: "Mega",
  59313. height: math.unit(40, "km")
  59314. },
  59315. {
  59316. name: "Giga",
  59317. height: math.unit(300, "km")
  59318. },
  59319. {
  59320. name: "Extra Giga",
  59321. height: math.unit(5000, "km")
  59322. },
  59323. {
  59324. name: "Small Terra",
  59325. height: math.unit(10e3, "km")
  59326. },
  59327. {
  59328. name: "Terra",
  59329. height: math.unit(3e5, "km")
  59330. },
  59331. {
  59332. name: "Galactic",
  59333. height: math.unit(369950, "lightyears")
  59334. },
  59335. ]
  59336. ))
  59337. characterMakers.push(() => makeCharacter(
  59338. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59339. {
  59340. front: {
  59341. height: math.unit(2.5, "meters"),
  59342. weight: math.unit(230, "lb"),
  59343. name: "Front",
  59344. image: {
  59345. source: "./media/characters/tarken/front.svg",
  59346. extra: 764/720,
  59347. bottom: 49/813
  59348. }
  59349. },
  59350. back: {
  59351. height: math.unit(2.5, "meters"),
  59352. weight: math.unit(230, "lb"),
  59353. name: "Back",
  59354. image: {
  59355. source: "./media/characters/tarken/back.svg",
  59356. extra: 756/720,
  59357. bottom: 35/791
  59358. }
  59359. },
  59360. frontNsfw: {
  59361. height: math.unit(2.5, "meters"),
  59362. weight: math.unit(230, "lb"),
  59363. name: "Front (NSFW)",
  59364. image: {
  59365. source: "./media/characters/tarken/front-nsfw.svg",
  59366. extra: 764/720,
  59367. bottom: 49/813
  59368. }
  59369. },
  59370. backNsfw: {
  59371. height: math.unit(2.5, "meters"),
  59372. weight: math.unit(230, "lb"),
  59373. name: "Back (NSFW)",
  59374. image: {
  59375. source: "./media/characters/tarken/back-nsfw.svg",
  59376. extra: 756/720,
  59377. bottom: 35/791
  59378. }
  59379. },
  59380. head: {
  59381. height: math.unit(2.22, "feet"),
  59382. name: "Head",
  59383. image: {
  59384. source: "./media/characters/tarken/head.svg"
  59385. }
  59386. },
  59387. tail: {
  59388. height: math.unit(5.25, "feet"),
  59389. name: "Tail",
  59390. image: {
  59391. source: "./media/characters/tarken/tail.svg"
  59392. }
  59393. },
  59394. dick: {
  59395. height: math.unit(1.95, "feet"),
  59396. name: "Dick",
  59397. image: {
  59398. source: "./media/characters/tarken/dick.svg"
  59399. }
  59400. },
  59401. hand: {
  59402. height: math.unit(1.78, "feet"),
  59403. name: "Hand",
  59404. image: {
  59405. source: "./media/characters/tarken/hand.svg"
  59406. }
  59407. },
  59408. beam: {
  59409. height: math.unit(1.5, "feet"),
  59410. name: "Beam",
  59411. image: {
  59412. source: "./media/characters/tarken/beam.svg"
  59413. }
  59414. },
  59415. },
  59416. [
  59417. {
  59418. name: "Original Size",
  59419. height: math.unit(2.5, "meters")
  59420. },
  59421. {
  59422. name: "Macro",
  59423. height: math.unit(150, "meters"),
  59424. default: true
  59425. },
  59426. {
  59427. name: "Macro+",
  59428. height: math.unit(300, "meters")
  59429. },
  59430. {
  59431. name: "Mega",
  59432. height: math.unit(2, "km")
  59433. },
  59434. {
  59435. name: "Mega+",
  59436. height: math.unit(35, "km")
  59437. },
  59438.  {
  59439. name: "Mega++",
  59440. height: math.unit(60, "km")
  59441. },
  59442. {
  59443. name: "Giga",
  59444. height: math.unit(200, "km")
  59445. },
  59446. {
  59447. name: "Giga+",
  59448. height: math.unit(2500, "km")
  59449. },
  59450. {
  59451. name: "Giga++",
  59452. height: math.unit(6600, "km")
  59453. },
  59454. {
  59455. name: "Terra",
  59456. height: math.unit(20000, "km")
  59457. },
  59458. {
  59459. name: "Terra+",
  59460. height: math.unit(300000, "km")
  59461. },
  59462. ]
  59463. ))
  59464. characterMakers.push(() => makeCharacter(
  59465. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59466. {
  59467. magpie_dressed: {
  59468. height: math.unit(1.7, "meters"),
  59469. weight: math.unit(70, "kg"),
  59470. name: "Dressed",
  59471. image: {
  59472. source: "./media/characters/otreus/magpie-dressed.svg",
  59473. extra: 691/672,
  59474. bottom: 116/807
  59475. },
  59476. form: "magpie",
  59477. default: true
  59478. },
  59479. magpie_nude: {
  59480. height: math.unit(1.7, "meters"),
  59481. weight: math.unit(70, "kg"),
  59482. name: "Nude",
  59483. image: {
  59484. source: "./media/characters/otreus/magpie-nude.svg",
  59485. extra: 691/672,
  59486. bottom: 116/807
  59487. },
  59488. form: "magpie",
  59489. },
  59490. magpie_dressedLewd: {
  59491. height: math.unit(1.7, "meters"),
  59492. weight: math.unit(70, "kg"),
  59493. name: "Dressed (Lewd)",
  59494. image: {
  59495. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59496. extra: 691/672,
  59497. bottom: 116/807
  59498. },
  59499. form: "magpie",
  59500. },
  59501. magpie_nudeLewd: {
  59502. height: math.unit(1.7, "meters"),
  59503. weight: math.unit(70, "kg"),
  59504. name: "Nude (Lewd)",
  59505. image: {
  59506. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59507. extra: 691/672,
  59508. bottom: 116/807
  59509. },
  59510. form: "magpie",
  59511. },
  59512. magpie_leftFoot: {
  59513. height: math.unit(1.58, "feet"),
  59514. name: "Left Foot",
  59515. image: {
  59516. source: "./media/characters/otreus/magpie-left-foot.svg"
  59517. },
  59518. form: "magpie",
  59519. },
  59520. magpie_rightFoot: {
  59521. height: math.unit(1.58, "feet"),
  59522. name: "Right Foot",
  59523. image: {
  59524. source: "./media/characters/otreus/magpie-right-foot.svg"
  59525. },
  59526. form: "magpie",
  59527. },
  59528. magpie_wingspan: {
  59529. height: math.unit(2, "meters"),
  59530. weight: math.unit(70, "kg"),
  59531. name: "Wingspan",
  59532. image: {
  59533. source: "./media/characters/otreus/magpie-wingspan.svg"
  59534. },
  59535. extraAttributes: {
  59536. "wingspan": {
  59537. name: "Wingspan",
  59538. power: 1,
  59539. type: "length",
  59540. base: math.unit(3.35, "meters")
  59541. },
  59542. },
  59543. form: "magpie",
  59544. },
  59545. hippogriff_dressed: {
  59546. height: math.unit(1.7, "meters"),
  59547. weight: math.unit(70, "kg"),
  59548. name: "Dressed",
  59549. image: {
  59550. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59551. extra: 710/689,
  59552. bottom: 67/777
  59553. },
  59554. form: "hippogriff",
  59555. default: true
  59556. },
  59557. hippogriff_nude: {
  59558. height: math.unit(1.7, "meters"),
  59559. weight: math.unit(70, "kg"),
  59560. name: "Nude",
  59561. image: {
  59562. source: "./media/characters/otreus/hippogriff-nude.svg",
  59563. extra: 710/689,
  59564. bottom: 67/777
  59565. },
  59566. form: "hippogriff",
  59567. },
  59568. hippogriff_dressedLewd: {
  59569. height: math.unit(1.7, "meters"),
  59570. weight: math.unit(70, "kg"),
  59571. name: "Dressed (Lewd)",
  59572. image: {
  59573. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59574. extra: 710/689,
  59575. bottom: 67/777
  59576. },
  59577. form: "hippogriff",
  59578. },
  59579. hippogriff_nudeLewd: {
  59580. height: math.unit(1.7, "meters"),
  59581. weight: math.unit(70, "kg"),
  59582. name: "Nude (Lewd)",
  59583. image: {
  59584. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59585. extra: 710/689,
  59586. bottom: 67/777
  59587. },
  59588. form: "hippogriff",
  59589. },
  59590. },
  59591. [
  59592. {
  59593. name: "Original Size",
  59594. height: math.unit(1.7, "meters"),
  59595. allForms: true
  59596. },
  59597. {
  59598. name: "Incognito Size",
  59599. height: math.unit(2, "meters"),
  59600. allForms: true
  59601. },
  59602. {
  59603. name: "Mega",
  59604. height: math.unit(2, "km"),
  59605. allForms: true
  59606. },
  59607. {
  59608. name: "Mega+",
  59609. height: math.unit(40, "km"),
  59610. allForms: true
  59611. },
  59612. {
  59613. name: "Giga",
  59614. height: math.unit(250, "km"),
  59615. allForms: true
  59616. },
  59617. {
  59618. name: "Giga+",
  59619. height: math.unit(3000, "km"),
  59620. allForms: true
  59621. },
  59622. {
  59623. name: "Terra",
  59624. height: math.unit(20000, "km"),
  59625. allForms: true
  59626. },
  59627. {
  59628. name: "Solar (Home Size)",
  59629. height: math.unit(3e6, "km"),
  59630. allForms: true,
  59631. default: true
  59632. },
  59633. ],
  59634. {
  59635. "magpie": {
  59636. name: "Magpie",
  59637. default: true
  59638. },
  59639. "hippogriff": {
  59640. name: "Hippogriff",
  59641. },
  59642. }
  59643. ))
  59644. characterMakers.push(() => makeCharacter(
  59645. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59646. {
  59647. frontDressed: {
  59648. height: math.unit(1.8, "meters"),
  59649. weight: math.unit(90, "kg"),
  59650. name: "Front (Dressed)",
  59651. image: {
  59652. source: "./media/characters/thalia/front-dressed.svg",
  59653. extra: 478/402,
  59654. bottom: 55/533
  59655. }
  59656. },
  59657. backDressed: {
  59658. height: math.unit(1.8, "meters"),
  59659. weight: math.unit(90, "kg"),
  59660. name: "Back (Dressed)",
  59661. image: {
  59662. source: "./media/characters/thalia/back-dressed.svg",
  59663. extra: 500/424,
  59664. bottom: 15/515
  59665. }
  59666. },
  59667. frontNude: {
  59668. height: math.unit(1.8, "meters"),
  59669. weight: math.unit(90, "kg"),
  59670. name: "Front (Nude)",
  59671. image: {
  59672. source: "./media/characters/thalia/front-nude.svg",
  59673. extra: 478/402,
  59674. bottom: 55/533
  59675. }
  59676. },
  59677. backNude: {
  59678. height: math.unit(1.8, "meters"),
  59679. weight: math.unit(90, "kg"),
  59680. name: "Back (Nude)",
  59681. image: {
  59682. source: "./media/characters/thalia/back-nude.svg",
  59683. extra: 500/424,
  59684. bottom: 15/515
  59685. }
  59686. },
  59687. },
  59688. [
  59689. {
  59690. name: "Incognito",
  59691. height: math.unit(3, "meters")
  59692. },
  59693. {
  59694. name: "Macro",
  59695. height: math.unit(500, "meters")
  59696. },
  59697. {
  59698. name: "Mega",
  59699. height: math.unit(5, "km")
  59700. },
  59701. {
  59702. name: "Mega+",
  59703. height: math.unit(30, "km")
  59704. },
  59705. {
  59706. name: "Giga",
  59707. height: math.unit(350, "km")
  59708. },
  59709. {
  59710. name: "Giga+",
  59711. height: math.unit(4000, "km")
  59712. },
  59713. {
  59714. name: "Terra",
  59715. height: math.unit(35000, "km")
  59716. },
  59717. {
  59718. name: "Original Size",
  59719. height: math.unit(130000, "km")
  59720. },
  59721. {
  59722. name: "Solar (Home Size)",
  59723. height: math.unit(4e6, "km"),
  59724. default: true
  59725. },
  59726. ]
  59727. ))
  59728. characterMakers.push(() => makeCharacter(
  59729. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59730. {
  59731. front: {
  59732. height: math.unit(1.8, "meters"),
  59733. weight: math.unit(95, "kg"),
  59734. name: "Front",
  59735. image: {
  59736. source: "./media/characters/shango/front.svg",
  59737. extra: 1925/1774,
  59738. bottom: 67/1992
  59739. }
  59740. },
  59741. back: {
  59742. height: math.unit(1.8, "meters"),
  59743. weight: math.unit(95, "kg"),
  59744. name: "Back",
  59745. image: {
  59746. source: "./media/characters/shango/back.svg",
  59747. extra: 1915/1766,
  59748. bottom: 52/1967
  59749. }
  59750. },
  59751. frontLewd: {
  59752. height: math.unit(1.8, "meters"),
  59753. weight: math.unit(95, "kg"),
  59754. name: "Front (Lewd)",
  59755. image: {
  59756. source: "./media/characters/shango/front-lewd.svg",
  59757. extra: 1925/1774,
  59758. bottom: 67/1992
  59759. }
  59760. },
  59761. backLewd: {
  59762. height: math.unit(1.8, "meters"),
  59763. weight: math.unit(95, "kg"),
  59764. name: "Back (Lewd)",
  59765. image: {
  59766. source: "./media/characters/shango/back-lewd.svg",
  59767. extra: 1915/1766,
  59768. bottom: 52/1967
  59769. }
  59770. },
  59771. maw: {
  59772. height: math.unit(1.64, "feet"),
  59773. name: "Maw",
  59774. image: {
  59775. source: "./media/characters/shango/maw.svg"
  59776. }
  59777. },
  59778. dick: {
  59779. height: math.unit(2.14, "feet"),
  59780. name: "Dick",
  59781. image: {
  59782. source: "./media/characters/shango/dick.svg"
  59783. }
  59784. },
  59785. },
  59786. [
  59787. {
  59788. name: "Incognito",
  59789. height: math.unit(1.8, "meters")
  59790. },
  59791. {
  59792. name: "Home Size",
  59793. height: math.unit(60, "meters"),
  59794. default: true
  59795. },
  59796. {
  59797. name: "Macro",
  59798. height: math.unit(450, "meters")
  59799. },
  59800. {
  59801. name: "Mega",
  59802. height: math.unit(6, "km")
  59803. },
  59804. {
  59805. name: "Mega+",
  59806. height: math.unit(35, "km")
  59807. },
  59808. {
  59809. name: "Giga",
  59810. height: math.unit(500, "km")
  59811. },
  59812. {
  59813. name: "Giga+",
  59814. height: math.unit(5000, "km")
  59815. },
  59816. {
  59817. name: "Terra",
  59818. height: math.unit(60000, "km")
  59819. },
  59820. {
  59821. name: "Terra+",
  59822. height: math.unit(400000, "km")
  59823. },
  59824. ]
  59825. ))
  59826. characterMakers.push(() => makeCharacter(
  59827. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59828. {
  59829. front: {
  59830. height: math.unit(2, "meters"),
  59831. weight: math.unit(95, "kg"),
  59832. name: "Front",
  59833. image: {
  59834. source: "./media/characters/osiris-gryphon/front.svg",
  59835. extra: 1508/1313,
  59836. bottom: 87/1595
  59837. }
  59838. },
  59839. back: {
  59840. height: math.unit(2, "meters"),
  59841. weight: math.unit(95, "kg"),
  59842. name: "Back",
  59843. image: {
  59844. source: "./media/characters/osiris-gryphon/back.svg",
  59845. extra: 1436/1309,
  59846. bottom: 64/1500
  59847. }
  59848. },
  59849. frontLewd: {
  59850. height: math.unit(2, "meters"),
  59851. weight: math.unit(95, "kg"),
  59852. name: "Front-lewd",
  59853. image: {
  59854. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59855. extra: 1508/1313,
  59856. bottom: 87/1595
  59857. }
  59858. },
  59859. wing: {
  59860. height: math.unit(6.3333, "feet"),
  59861. name: "Wing",
  59862. image: {
  59863. source: "./media/characters/osiris-gryphon/wing.svg"
  59864. }
  59865. },
  59866. },
  59867. [
  59868. {
  59869. name: "Incognito",
  59870. height: math.unit(2, "meters")
  59871. },
  59872. {
  59873. name: "Home Size",
  59874. height: math.unit(30, "meters"),
  59875. default: true
  59876. },
  59877. {
  59878. name: "Macro",
  59879. height: math.unit(100, "meters")
  59880. },
  59881. {
  59882. name: "Macro+",
  59883. height: math.unit(350, "meters")
  59884. },
  59885. {
  59886. name: "Mega",
  59887. height: math.unit(40, "km")
  59888. },
  59889. {
  59890. name: "Giga",
  59891. height: math.unit(300, "km")
  59892. },
  59893. {
  59894. name: "Giga+",
  59895. height: math.unit(2000, "km")
  59896. },
  59897. {
  59898. name: "Terra",
  59899. height: math.unit(30000, "km")
  59900. },
  59901. ]
  59902. ))
  59903. characterMakers.push(() => makeCharacter(
  59904. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59905. {
  59906. front: {
  59907. height: math.unit(2.5, "meters"),
  59908. weight: math.unit(200, "kg"),
  59909. name: "Front",
  59910. image: {
  59911. source: "./media/characters/atlas-dragon/front.svg",
  59912. extra: 745/462,
  59913. bottom: 36/781
  59914. }
  59915. },
  59916. back: {
  59917. height: math.unit(2.5, "meters"),
  59918. weight: math.unit(200, "kg"),
  59919. name: "Back",
  59920. image: {
  59921. source: "./media/characters/atlas-dragon/back.svg",
  59922. extra: 848/822,
  59923. bottom: 57/905
  59924. }
  59925. },
  59926. frontLewd: {
  59927. height: math.unit(2.5, "meters"),
  59928. weight: math.unit(200, "kg"),
  59929. name: "Front (Lewd)",
  59930. image: {
  59931. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59932. extra: 745/462,
  59933. bottom: 36/781
  59934. }
  59935. },
  59936. backLewd: {
  59937. height: math.unit(2.5, "meters"),
  59938. weight: math.unit(200, "kg"),
  59939. name: "Back (Lewd)",
  59940. image: {
  59941. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59942. extra: 848/822,
  59943. bottom: 57/905
  59944. }
  59945. },
  59946. },
  59947. [
  59948. {
  59949. name: "Incognito",
  59950. height: math.unit(2.5, "meters")
  59951. },
  59952. {
  59953. name: "Small Macro",
  59954. height: math.unit(50, "meters")
  59955. },
  59956. {
  59957. name: "Macro",
  59958. height: math.unit(350, "meters")
  59959. },
  59960. {
  59961. name: "Mega",
  59962. height: math.unit(5.5, "kilometers")
  59963. },
  59964. {
  59965. name: "Mega+",
  59966. height: math.unit(50, "km")
  59967. },
  59968. {
  59969. name: "Giga",
  59970. height: math.unit(350, "km")
  59971. },
  59972. {
  59973. name: "Giga+",
  59974. height: math.unit(2000, "km")
  59975. },
  59976. {
  59977. name: "Giga++",
  59978. height: math.unit(6500, "km")
  59979. },
  59980. {
  59981. name: "Terra",
  59982. height: math.unit(30000, "km")
  59983. },
  59984. {
  59985. name: "Terra+",
  59986. height: math.unit(250000, "km")
  59987. },
  59988. {
  59989. name: "True Size",
  59990. height: math.unit(100, "multiverses"),
  59991. default: true
  59992. },
  59993. ]
  59994. ))
  59995. characterMakers.push(() => makeCharacter(
  59996. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59997. {
  59998. front: {
  59999. height: math.unit(1.8, "m"),
  60000. weight: math.unit(120, "kg"),
  60001. name: "Front",
  60002. image: {
  60003. source: "./media/characters/chey/front.svg",
  60004. extra: 1359/1270,
  60005. bottom: 18/1377
  60006. }
  60007. },
  60008. arm: {
  60009. height: math.unit(2.05, "feet"),
  60010. name: "Arm",
  60011. image: {
  60012. source: "./media/characters/chey/arm.svg"
  60013. }
  60014. },
  60015. head: {
  60016. height: math.unit(1.89, "feet"),
  60017. name: "Head",
  60018. image: {
  60019. source: "./media/characters/chey/head.svg"
  60020. }
  60021. },
  60022. },
  60023. [
  60024. {
  60025. name: "Original Size",
  60026. height: math.unit(5, "cm")
  60027. },
  60028. {
  60029. name: "Incognito Size",
  60030. height: math.unit(2.4, "m")
  60031. },
  60032. {
  60033. name: "Home Size",
  60034. height: math.unit(200, "meters"),
  60035. default: true
  60036. },
  60037. {
  60038. name: "Mega",
  60039. height: math.unit(2, "km")
  60040. },
  60041. {
  60042. name: "Giga (Preferred Size)",
  60043. height: math.unit(2000, "km")
  60044. },
  60045. {
  60046. name: "Giga+",
  60047. height: math.unit(6000, "km")
  60048. },
  60049. {
  60050. name: "Terra",
  60051. height: math.unit(17000, "km")
  60052. },
  60053. {
  60054. name: "Terra+",
  60055. height: math.unit(75000, "km")
  60056. },
  60057. {
  60058. name: "Terra++",
  60059. height: math.unit(225000, "km")
  60060. },
  60061. ]
  60062. ))
  60063. characterMakers.push(() => makeCharacter(
  60064. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60065. {
  60066. side: {
  60067. height: math.unit(7.8, "meters"),
  60068. name: "Side",
  60069. image: {
  60070. source: "./media/characters/ragnarok/side.svg",
  60071. extra: 725/621,
  60072. bottom: 72/797
  60073. }
  60074. },
  60075. },
  60076. [
  60077. {
  60078. name: "Normal",
  60079. height: math.unit(7.8, "meters"),
  60080. default: true
  60081. },
  60082. ]
  60083. ))
  60084. characterMakers.push(() => makeCharacter(
  60085. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60086. {
  60087. hyena_front: {
  60088. height: math.unit(2.1, "meters"),
  60089. weight: math.unit(110, "kg"),
  60090. name: "Front",
  60091. image: {
  60092. source: "./media/characters/nima/hyena-front.svg",
  60093. extra: 1904/1796,
  60094. bottom: 67/1971
  60095. },
  60096. form: "hyena",
  60097. },
  60098. hyena_back: {
  60099. height: math.unit(2.1, "meters"),
  60100. weight: math.unit(110, "kg"),
  60101. name: "Back",
  60102. image: {
  60103. source: "./media/characters/nima/hyena-back.svg",
  60104. extra: 1964/1884,
  60105. bottom: 35/1999
  60106. },
  60107. form: "hyena",
  60108. },
  60109. shark_front: {
  60110. height: math.unit(1.95, "meters"),
  60111. weight: math.unit(110, "kg"),
  60112. name: "Front",
  60113. image: {
  60114. source: "./media/characters/nima/shark-front.svg",
  60115. extra: 2238/2013,
  60116. bottom: 0/223
  60117. },
  60118. form: "shark",
  60119. },
  60120. paw: {
  60121. height: math.unit(1, "feet"),
  60122. name: "Paw",
  60123. image: {
  60124. source: "./media/characters/nima/paw.svg"
  60125. }
  60126. },
  60127. circlet: {
  60128. height: math.unit(0.3, "feet"),
  60129. name: "Circlet",
  60130. image: {
  60131. source: "./media/characters/nima/circlet.svg"
  60132. }
  60133. },
  60134. necklace: {
  60135. height: math.unit(1.2, "feet"),
  60136. name: "Necklace",
  60137. image: {
  60138. source: "./media/characters/nima/necklace.svg"
  60139. }
  60140. },
  60141. bracelet: {
  60142. height: math.unit(0.51, "feet"),
  60143. name: "Bracelet",
  60144. image: {
  60145. source: "./media/characters/nima/bracelet.svg"
  60146. }
  60147. },
  60148. armband: {
  60149. height: math.unit(1.3, "feet"),
  60150. name: "Armband",
  60151. image: {
  60152. source: "./media/characters/nima/armband.svg"
  60153. }
  60154. },
  60155. },
  60156. [
  60157. {
  60158. name: "Incognito",
  60159. height: math.unit(2.1, "meters"),
  60160. allForms: true
  60161. },
  60162. {
  60163. name: "Small Macro",
  60164. height: math.unit(50, "meters"),
  60165. allForms: true
  60166. },
  60167. {
  60168. name: "Macro",
  60169. height: math.unit(200, "meters"),
  60170. allForms: true
  60171. },
  60172. {
  60173. name: "Mega",
  60174. height: math.unit(2.5, "km"),
  60175. allForms: true
  60176. },
  60177. {
  60178. name: "Mega+",
  60179. height: math.unit(30, "km"),
  60180. allForms: true
  60181. },
  60182. {
  60183. name: "Giga (Home Size)",
  60184. height: math.unit(400, "km"),
  60185. allForms: true,
  60186. default: true
  60187. },
  60188. {
  60189. name: "Giga+",
  60190. height: math.unit(2500, "km"),
  60191. allForms: true
  60192. },
  60193. {
  60194. name: "Giga++",
  60195. height: math.unit(8000, "km"),
  60196. allForms: true
  60197. },
  60198. {
  60199. name: "Terra",
  60200. height: math.unit(20000, "km"),
  60201. allForms: true
  60202. },
  60203. {
  60204. name: "Terra+",
  60205. height: math.unit(70000, "km"),
  60206. allForms: true
  60207. },
  60208. {
  60209. name: "Terra++",
  60210. height: math.unit(600000, "km"),
  60211. allForms: true
  60212. },
  60213. {
  60214. name: "Galactic",
  60215. height: math.unit(40, "galaxies"),
  60216. allForms: true
  60217. },
  60218. {
  60219. name: "Universal",
  60220. height: math.unit(40, "universes"),
  60221. allForms: true
  60222. },
  60223. ],
  60224. {
  60225. "hyena": {
  60226. name: "Hyena",
  60227. default: true
  60228. },
  60229. "shark": {
  60230. name: "Shark",
  60231. },
  60232. }
  60233. ))
  60234. characterMakers.push(() => makeCharacter(
  60235. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60236. {
  60237. anthro_front: {
  60238. height: math.unit(1.5, "meters"),
  60239. name: "Front",
  60240. image: {
  60241. source: "./media/characters/adelaide/anthro-front.svg",
  60242. extra: 860/783,
  60243. bottom: 60/920
  60244. },
  60245. form: "anthro",
  60246. default: true
  60247. },
  60248. hand: {
  60249. height: math.unit(0.65, "feet"),
  60250. name: "Hand",
  60251. image: {
  60252. source: "./media/characters/adelaide/hand.svg"
  60253. },
  60254. form: "anthro"
  60255. },
  60256. foot: {
  60257. height: math.unit(1.38 * 259 / 314, "feet"),
  60258. name: "Foot",
  60259. image: {
  60260. source: "./media/characters/adelaide/foot.svg",
  60261. extra: 259/259,
  60262. bottom: 55/314
  60263. },
  60264. form: "anthro"
  60265. },
  60266. feather: {
  60267. height: math.unit(0.85, "feet"),
  60268. name: "Feather",
  60269. image: {
  60270. source: "./media/characters/adelaide/feather.svg"
  60271. },
  60272. form: "anthro"
  60273. },
  60274. feral_side: {
  60275. height: math.unit(1, "meters"),
  60276. name: "Side",
  60277. image: {
  60278. source: "./media/characters/adelaide/feral-side.svg",
  60279. extra: 550/467,
  60280. bottom: 37/587
  60281. },
  60282. form: "feral",
  60283. default: true
  60284. },
  60285. feral_hand: {
  60286. height: math.unit(0.58, "feet"),
  60287. name: "Hand",
  60288. image: {
  60289. source: "./media/characters/adelaide/hand.svg"
  60290. },
  60291. form: "feral"
  60292. },
  60293. feral_foot: {
  60294. height: math.unit(1.2 * 259 / 314, "feet"),
  60295. name: "Foot",
  60296. image: {
  60297. source: "./media/characters/adelaide/foot.svg",
  60298. extra: 259/259,
  60299. bottom: 55/314
  60300. },
  60301. form: "feral"
  60302. },
  60303. feral_feather: {
  60304. height: math.unit(0.63, "feet"),
  60305. name: "Feather",
  60306. image: {
  60307. source: "./media/characters/adelaide/feather.svg"
  60308. },
  60309. form: "feral"
  60310. },
  60311. },
  60312. [
  60313. {
  60314. name: "Normal",
  60315. height: math.unit(1.5, "meters"),
  60316. form: "anthro",
  60317. default: true
  60318. },
  60319. {
  60320. name: "Normal",
  60321. height: math.unit(1, "meters"),
  60322. form: "feral",
  60323. default: true
  60324. },
  60325. ],
  60326. {
  60327. "anthro": {
  60328. name: "Anthro",
  60329. default: true
  60330. },
  60331. "feral": {
  60332. name: "Feral",
  60333. },
  60334. }
  60335. ))
  60336. characterMakers.push(() => makeCharacter(
  60337. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60338. {
  60339. front: {
  60340. height: math.unit(2.5, "meters"),
  60341. name: "Front",
  60342. image: {
  60343. source: "./media/characters/goa/front.svg",
  60344. extra: 1109/1013,
  60345. bottom: 150/1259
  60346. }
  60347. },
  60348. },
  60349. [
  60350. {
  60351. name: "Normal",
  60352. height: math.unit(2.5, "meters"),
  60353. default: true
  60354. },
  60355. ]
  60356. ))
  60357. characterMakers.push(() => makeCharacter(
  60358. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60359. {
  60360. front: {
  60361. height: math.unit(2, "meters"),
  60362. weight: math.unit(100, "kg"),
  60363. name: "Front",
  60364. image: {
  60365. source: "./media/characters/kiki-weavile/front.svg",
  60366. extra: 357/332,
  60367. bottom: 60/417
  60368. }
  60369. },
  60370. },
  60371. [
  60372. {
  60373. name: "Normal",
  60374. height: math.unit(2, "meters"),
  60375. default: true
  60376. },
  60377. ]
  60378. ))
  60379. characterMakers.push(() => makeCharacter(
  60380. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60381. {
  60382. side: {
  60383. height: math.unit(1.6, "meters"),
  60384. name: "Side",
  60385. image: {
  60386. source: "./media/characters/liza/side.svg",
  60387. extra: 943/915,
  60388. bottom: 72/1015
  60389. }
  60390. },
  60391. },
  60392. [
  60393. {
  60394. name: "Normal",
  60395. height: math.unit(1.6, "meters"),
  60396. default: true
  60397. },
  60398. ]
  60399. ))
  60400. characterMakers.push(() => makeCharacter(
  60401. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60402. {
  60403. side: {
  60404. height: math.unit(2.5, "meters"),
  60405. preyCapacity: math.unit(1, "people"),
  60406. name: "Side",
  60407. image: {
  60408. source: "./media/characters/persephone-sweetbreath/side.svg",
  60409. extra: 796/700,
  60410. bottom: 44/840
  60411. }
  60412. },
  60413. sideVore: {
  60414. height: math.unit(2.5, "meters"),
  60415. preyCapacity: math.unit(1, "people"),
  60416. name: "Side (Full)",
  60417. image: {
  60418. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60419. extra: 796/700,
  60420. bottom: 44/840
  60421. }
  60422. },
  60423. },
  60424. [
  60425. {
  60426. name: "Normal",
  60427. height: math.unit(2.5, "meters"),
  60428. default: true
  60429. },
  60430. ]
  60431. ))
  60432. characterMakers.push(() => makeCharacter(
  60433. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60434. {
  60435. front: {
  60436. height: math.unit(32, "meters"),
  60437. name: "Front",
  60438. image: {
  60439. source: "./media/characters/pierce/front.svg",
  60440. extra: 1695/1475,
  60441. bottom: 185/1880
  60442. }
  60443. },
  60444. side: {
  60445. height: math.unit(32, "meters"),
  60446. name: "Side",
  60447. image: {
  60448. source: "./media/characters/pierce/side.svg",
  60449. extra: 974/859,
  60450. bottom: 43/1017
  60451. }
  60452. },
  60453. frontWingless: {
  60454. height: math.unit(32, "meters"),
  60455. name: "Front (Wingless)",
  60456. image: {
  60457. source: "./media/characters/pierce/front-wingless.svg",
  60458. extra: 1695/1475,
  60459. bottom: 185/1880
  60460. }
  60461. },
  60462. sideWingless: {
  60463. height: math.unit(32, "meters"),
  60464. name: "Side (Wingless)",
  60465. image: {
  60466. source: "./media/characters/pierce/side-wingless.svg",
  60467. extra: 974/859,
  60468. bottom: 43/1017
  60469. }
  60470. },
  60471. maw: {
  60472. height: math.unit(19.3, "meters"),
  60473. name: "Maw",
  60474. image: {
  60475. source: "./media/characters/pierce/maw.svg"
  60476. }
  60477. },
  60478. },
  60479. [
  60480. {
  60481. name: "Small",
  60482. height: math.unit(8.5, "meters")
  60483. },
  60484. {
  60485. name: "Normal",
  60486. height: math.unit(32, "meters"),
  60487. default: true
  60488. },
  60489. ]
  60490. ))
  60491. characterMakers.push(() => makeCharacter(
  60492. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60493. {
  60494. front: {
  60495. height: math.unit(2.3, "meters"),
  60496. weight: math.unit(165, "kg"),
  60497. name: "Front",
  60498. image: {
  60499. source: "./media/characters/shira/front.svg",
  60500. extra: 924/919,
  60501. bottom: 17/941
  60502. },
  60503. form: "cobra",
  60504. default: true
  60505. },
  60506. back: {
  60507. height: math.unit(2.3, "meters"),
  60508. weight: math.unit(165, "kg"),
  60509. name: "Back",
  60510. image: {
  60511. source: "./media/characters/shira/back.svg",
  60512. extra: 928/922,
  60513. bottom: 18/946
  60514. },
  60515. form: "cobra"
  60516. },
  60517. frontLewd: {
  60518. height: math.unit(2.3, "meters"),
  60519. weight: math.unit(165, "kg"),
  60520. name: "Front (Lewd)",
  60521. image: {
  60522. source: "./media/characters/shira/front-lewd.svg",
  60523. extra: 924/919,
  60524. bottom: 17/941
  60525. },
  60526. form: "cobra"
  60527. },
  60528. backLewd: {
  60529. height: math.unit(2.3, "meters"),
  60530. weight: math.unit(165, "kg"),
  60531. name: "Back (Lewd)",
  60532. image: {
  60533. source: "./media/characters/shira/back-lewd.svg",
  60534. extra: 928/922,
  60535. bottom: 18/946
  60536. },
  60537. form: "cobra"
  60538. },
  60539. maw: {
  60540. height: math.unit(1.14, "feet"),
  60541. name: "Maw",
  60542. image: {
  60543. source: "./media/characters/shira/maw.svg"
  60544. },
  60545. form: "cobra"
  60546. },
  60547. magma_front: {
  60548. height: math.unit(2.3, "meters"),
  60549. weight: math.unit(165, "kg"),
  60550. name: "Front",
  60551. image: {
  60552. source: "./media/characters/shira/magma-front.svg",
  60553. extra: 1870/1693,
  60554. bottom: 24/1894
  60555. },
  60556. form: "magma",
  60557. },
  60558. magma_back: {
  60559. height: math.unit(2.3, "meters"),
  60560. weight: math.unit(165, "kg"),
  60561. name: "Back",
  60562. image: {
  60563. source: "./media/characters/shira/magma-back.svg",
  60564. extra: 1918/1756,
  60565. bottom: 46/1964
  60566. },
  60567. form: "magma",
  60568. },
  60569. },
  60570. [
  60571. {
  60572. name: "Incognito",
  60573. height: math.unit(2.3, "meters"),
  60574. allForms: true
  60575. },
  60576. {
  60577. name: "Home Size",
  60578. height: math.unit(150, "meters"),
  60579. default: true,
  60580. allForms: true
  60581. },
  60582. {
  60583. name: "Macro",
  60584. height: math.unit(2, "km"),
  60585. allForms: true
  60586. },
  60587. {
  60588. name: "Mega",
  60589. height: math.unit(30, "km"),
  60590. allForms: true
  60591. },
  60592. {
  60593. name: "Giga",
  60594. height: math.unit(450, "km"),
  60595. allForms: true
  60596. },
  60597. {
  60598. name: "Giga+",
  60599. height: math.unit(3000, "km"),
  60600. allForms: true
  60601. },
  60602. {
  60603. name: "Giga++",
  60604. height: math.unit(6000, "km"),
  60605. allForms: true
  60606. },
  60607. {
  60608. name: "Terra",
  60609. height: math.unit(80000, "km"),
  60610. allForms: true
  60611. },
  60612. {
  60613. name: "Terra+",
  60614. height: math.unit(350000, "km"),
  60615. allForms: true
  60616. },
  60617. {
  60618. name: "Solar",
  60619. height: math.unit(1e6, "km"),
  60620. allForms: true
  60621. },
  60622. ],
  60623. {
  60624. "cobra": {
  60625. name: "Cobra",
  60626. default: true
  60627. },
  60628. "magma": {
  60629. name: "Magma Dragon",
  60630. },
  60631. }
  60632. ))
  60633. characterMakers.push(() => makeCharacter(
  60634. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60635. {
  60636. front: {
  60637. height: math.unit(2, "meters"),
  60638. weight: math.unit(160, "kg"),
  60639. name: "Front",
  60640. image: {
  60641. source: "./media/characters/daxerios/front.svg",
  60642. extra: 1334/1277,
  60643. bottom: 45/1379
  60644. }
  60645. },
  60646. frontLewd: {
  60647. height: math.unit(2, "meters"),
  60648. weight: math.unit(160, "kg"),
  60649. name: "Front (Lewd)",
  60650. image: {
  60651. source: "./media/characters/daxerios/front-lewd.svg",
  60652. extra: 1334/1277,
  60653. bottom: 45/1379
  60654. }
  60655. },
  60656. dick: {
  60657. height: math.unit(2.35, "feet"),
  60658. name: "Dick",
  60659. image: {
  60660. source: "./media/characters/daxerios/dick.svg"
  60661. }
  60662. },
  60663. },
  60664. [
  60665. {
  60666. name: "\"Small\"",
  60667. height: math.unit(5, "meters")
  60668. },
  60669. {
  60670. name: "Original Size",
  60671. height: math.unit(500, "meters"),
  60672. default: true
  60673. },
  60674. {
  60675. name: "Mega",
  60676. height: math.unit(2, "km")
  60677. },
  60678. {
  60679. name: "Mega+",
  60680. height: math.unit(35, "km")
  60681. },
  60682. {
  60683. name: "Giga",
  60684. height: math.unit(250, "km")
  60685. },
  60686. {
  60687. name: "Giga+",
  60688. height: math.unit(3000, "km")
  60689. },
  60690. {
  60691. name: "Terra",
  60692. height: math.unit(25000, "km")
  60693. },
  60694. {
  60695. name: "Terra+",
  60696. height: math.unit(300000, "km")
  60697. },
  60698. {
  60699. name: "Solar",
  60700. height: math.unit(1e6, "km")
  60701. },
  60702. ]
  60703. ))
  60704. characterMakers.push(() => makeCharacter(
  60705. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60706. {
  60707. front: {
  60708. height: math.unit(8 + 4/12, "feet"),
  60709. weight: math.unit(464, "lb"),
  60710. name: "Front",
  60711. image: {
  60712. source: "./media/characters/caveat/front.svg",
  60713. extra: 1861/1678,
  60714. bottom: 40/1901
  60715. }
  60716. },
  60717. },
  60718. [
  60719. {
  60720. name: "Normal",
  60721. height: math.unit(8 + 4/12, "feet"),
  60722. default: true
  60723. },
  60724. ]
  60725. ))
  60726. characterMakers.push(() => makeCharacter(
  60727. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60728. {
  60729. front: {
  60730. height: math.unit(12, "feet"),
  60731. weight: math.unit(1800, "lb"),
  60732. name: "Front",
  60733. image: {
  60734. source: "./media/characters/centbair/front.svg",
  60735. extra: 781/663,
  60736. bottom: 25/806
  60737. }
  60738. },
  60739. frontNsfw: {
  60740. height: math.unit(12, "feet"),
  60741. weight: math.unit(1800, "lb"),
  60742. name: "Front (NSFW)",
  60743. image: {
  60744. source: "./media/characters/centbair/front-nsfw.svg",
  60745. extra: 781/663,
  60746. bottom: 25/806
  60747. }
  60748. },
  60749. back: {
  60750. height: math.unit(12, "feet"),
  60751. weight: math.unit(1800, "lb"),
  60752. name: "Back",
  60753. image: {
  60754. source: "./media/characters/centbair/back.svg",
  60755. extra: 808/761,
  60756. bottom: 19/827
  60757. }
  60758. },
  60759. dick: {
  60760. height: math.unit(6.5, "feet"),
  60761. name: "Dick",
  60762. image: {
  60763. source: "./media/characters/centbair/dick.svg"
  60764. }
  60765. },
  60766. slit: {
  60767. height: math.unit(3.25, "feet"),
  60768. name: "Slit",
  60769. image: {
  60770. source: "./media/characters/centbair/slit.svg"
  60771. }
  60772. },
  60773. },
  60774. [
  60775. {
  60776. name: "Normal",
  60777. height: math.unit(12, "feet"),
  60778. default: true
  60779. },
  60780. ]
  60781. ))
  60782. characterMakers.push(() => makeCharacter(
  60783. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60784. {
  60785. front: {
  60786. height: math.unit(5 + 7/12, "feet"),
  60787. name: "Front",
  60788. image: {
  60789. source: "./media/characters/andy/front.svg",
  60790. extra: 634/588,
  60791. bottom: 36/670
  60792. },
  60793. extraAttributes: {
  60794. "pawLength": {
  60795. name: "Paw Length",
  60796. power: 1,
  60797. type: "length",
  60798. base: math.unit(1, "feet")
  60799. },
  60800. }
  60801. },
  60802. side: {
  60803. height: math.unit(5 + 7/12, "feet"),
  60804. name: "Side",
  60805. image: {
  60806. source: "./media/characters/andy/side.svg",
  60807. extra: 641/596,
  60808. bottom: 34/675
  60809. },
  60810. extraAttributes: {
  60811. "pawLength": {
  60812. name: "Paw Length",
  60813. power: 1,
  60814. type: "length",
  60815. base: math.unit(1, "feet")
  60816. },
  60817. }
  60818. },
  60819. back: {
  60820. height: math.unit(5 + 7/12, "feet"),
  60821. name: "Back",
  60822. image: {
  60823. source: "./media/characters/andy/back.svg",
  60824. extra: 618/583,
  60825. bottom: 39/657
  60826. },
  60827. extraAttributes: {
  60828. "pawLength": {
  60829. name: "Paw Length",
  60830. power: 1,
  60831. type: "length",
  60832. base: math.unit(1, "feet")
  60833. },
  60834. }
  60835. },
  60836. paw: {
  60837. height: math.unit(1.13, "feet"),
  60838. name: "Paw",
  60839. image: {
  60840. source: "./media/characters/andy/paw.svg"
  60841. }
  60842. },
  60843. },
  60844. [
  60845. {
  60846. name: "Micro",
  60847. height: math.unit(4, "inches")
  60848. },
  60849. {
  60850. name: "Normal",
  60851. height: math.unit(5 + 7/12, "feet"),
  60852. default: true
  60853. },
  60854. {
  60855. name: "Macro",
  60856. height: math.unit(390.42, "feet")
  60857. },
  60858. ]
  60859. ))
  60860. characterMakers.push(() => makeCharacter(
  60861. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60862. {
  60863. front: {
  60864. height: math.unit(7, "feet"),
  60865. weight: math.unit(250, "lb"),
  60866. name: "Front",
  60867. image: {
  60868. source: "./media/characters/vix-titan/front.svg",
  60869. extra: 460/428,
  60870. bottom: 15/475
  60871. },
  60872. extraAttributes: {
  60873. "pawWidth": {
  60874. name: "Paw Width",
  60875. power: 1,
  60876. type: "length",
  60877. base: math.unit(0.75, "feet")
  60878. },
  60879. }
  60880. },
  60881. },
  60882. [
  60883. {
  60884. name: "Normal",
  60885. height: math.unit(7, "feet"),
  60886. default: true
  60887. },
  60888. {
  60889. name: "Giant",
  60890. height: math.unit(1500, "feet")
  60891. },
  60892. {
  60893. name: "Mega",
  60894. height: math.unit(10, "miles")
  60895. },
  60896. {
  60897. name: "Giga",
  60898. height: math.unit(150, "miles")
  60899. },
  60900. {
  60901. name: "Tera",
  60902. height: math.unit(144000, "miles")
  60903. },
  60904. ]
  60905. ))
  60906. characterMakers.push(() => makeCharacter(
  60907. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60908. {
  60909. front: {
  60910. height: math.unit(6 + 2/12, "feet"),
  60911. name: "Front",
  60912. image: {
  60913. source: "./media/characters/reiku/front.svg",
  60914. extra: 1910/1757,
  60915. bottom: 103/2013
  60916. },
  60917. extraAttributes: {
  60918. "thighThickness": {
  60919. name: "Thigh Thickness",
  60920. power: 1,
  60921. type: "length",
  60922. base: math.unit(1.12, "feet")
  60923. },
  60924. "assThickness": {
  60925. name: "Ass Thickness",
  60926. power: 1,
  60927. type: "length",
  60928. base: math.unit(1.12*2, "feet")
  60929. },
  60930. }
  60931. },
  60932. side: {
  60933. height: math.unit(6 + 2/12, "feet"),
  60934. name: "Side",
  60935. image: {
  60936. source: "./media/characters/reiku/side.svg",
  60937. extra: 1846/1748,
  60938. bottom: 99/1945
  60939. },
  60940. extraAttributes: {
  60941. "thighThickness": {
  60942. name: "Thigh Thickness",
  60943. power: 1,
  60944. type: "length",
  60945. base: math.unit(1.12, "feet")
  60946. },
  60947. "assThickness": {
  60948. name: "Ass Thickness",
  60949. power: 1,
  60950. type: "length",
  60951. base: math.unit(1.12*2, "feet")
  60952. },
  60953. }
  60954. },
  60955. back: {
  60956. height: math.unit(6 + 2/12, "feet"),
  60957. name: "Back",
  60958. image: {
  60959. source: "./media/characters/reiku/back.svg",
  60960. extra: 1941/1786,
  60961. bottom: 34/1975
  60962. },
  60963. extraAttributes: {
  60964. "thighThickness": {
  60965. name: "Thigh Thickness",
  60966. power: 1,
  60967. type: "length",
  60968. base: math.unit(1.12, "feet")
  60969. },
  60970. "assThickness": {
  60971. name: "Ass Thickness",
  60972. power: 1,
  60973. type: "length",
  60974. base: math.unit(1.12*2, "feet")
  60975. },
  60976. }
  60977. },
  60978. head: {
  60979. height: math.unit(1.8, "feet"),
  60980. name: "Head",
  60981. image: {
  60982. source: "./media/characters/reiku/head.svg"
  60983. }
  60984. },
  60985. tailTop: {
  60986. height: math.unit(8.4, "feet"),
  60987. name: "Tail (Top)",
  60988. image: {
  60989. source: "./media/characters/reiku/tail-top.svg"
  60990. }
  60991. },
  60992. tailBottom: {
  60993. height: math.unit(8.4, "feet"),
  60994. name: "Tail (Bottom)",
  60995. image: {
  60996. source: "./media/characters/reiku/tail-bottom.svg"
  60997. }
  60998. },
  60999. foot: {
  61000. height: math.unit(2.6, "feet"),
  61001. name: "Foot",
  61002. image: {
  61003. source: "./media/characters/reiku/foot.svg"
  61004. }
  61005. },
  61006. footCurled: {
  61007. height: math.unit(2.3, "feet"),
  61008. name: "Foot (Curled)",
  61009. image: {
  61010. source: "./media/characters/reiku/foot-curled.svg"
  61011. }
  61012. },
  61013. footSide: {
  61014. height: math.unit(1.26, "feet"),
  61015. name: "Foot (Side)",
  61016. image: {
  61017. source: "./media/characters/reiku/foot-side.svg"
  61018. }
  61019. },
  61020. },
  61021. [
  61022. {
  61023. name: "Normal",
  61024. height: math.unit(6 + 2/12, "feet"),
  61025. default: true
  61026. },
  61027. ]
  61028. ))
  61029. characterMakers.push(() => makeCharacter(
  61030. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61031. {
  61032. front: {
  61033. height: math.unit(7, "feet"),
  61034. weight: math.unit(500, "kg"),
  61035. name: "Front",
  61036. image: {
  61037. source: "./media/characters/cialda/front.svg",
  61038. extra: 912/745,
  61039. bottom: 55/967
  61040. }
  61041. },
  61042. },
  61043. [
  61044. {
  61045. name: "Normal",
  61046. height: math.unit(7, "feet"),
  61047. default: true
  61048. },
  61049. ]
  61050. ))
  61051. characterMakers.push(() => makeCharacter(
  61052. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61053. {
  61054. side: {
  61055. height: math.unit(6, "feet"),
  61056. weight: math.unit(600, "lb"),
  61057. preyCapacity: math.unit(25, "liters"),
  61058. name: "Side",
  61059. image: {
  61060. source: "./media/characters/darkkin/side.svg",
  61061. extra: 1597/1447,
  61062. bottom: 101/1698
  61063. }
  61064. },
  61065. },
  61066. [
  61067. {
  61068. name: "Canon Height",
  61069. height: math.unit(568, "feet"),
  61070. default: true
  61071. },
  61072. ]
  61073. ))
  61074. characterMakers.push(() => makeCharacter(
  61075. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61076. {
  61077. front: {
  61078. height: math.unit(6, "feet"),
  61079. weight: math.unit(1500, "lb"),
  61080. preyCapacity: math.unit(3, "people"),
  61081. name: "Front",
  61082. image: {
  61083. source: "./media/characters/livnia/front.svg",
  61084. extra: 934/932,
  61085. bottom: 83/1017
  61086. }
  61087. },
  61088. back: {
  61089. height: math.unit(6, "feet"),
  61090. weight: math.unit(1500, "lb"),
  61091. preyCapacity: math.unit(3, "people"),
  61092. name: "Back",
  61093. image: {
  61094. source: "./media/characters/livnia/back.svg",
  61095. extra: 916/915,
  61096. bottom: 58/974
  61097. }
  61098. },
  61099. head: {
  61100. height: math.unit(1.53, "feet"),
  61101. name: "Head",
  61102. image: {
  61103. source: "./media/characters/livnia/head.svg"
  61104. }
  61105. },
  61106. maw: {
  61107. height: math.unit(0.78, "feet"),
  61108. name: "Maw",
  61109. image: {
  61110. source: "./media/characters/livnia/maw.svg"
  61111. }
  61112. },
  61113. genitals: {
  61114. height: math.unit(0.35, "feet"),
  61115. name: "Genitals",
  61116. image: {
  61117. source: "./media/characters/livnia/genitals.svg"
  61118. }
  61119. },
  61120. },
  61121. [
  61122. {
  61123. name: "Normal",
  61124. height: math.unit(1000, "feet"),
  61125. default: true
  61126. },
  61127. ]
  61128. ))
  61129. characterMakers.push(() => makeCharacter(
  61130. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61131. {
  61132. front: {
  61133. height: math.unit(4, "feet"),
  61134. weight: math.unit(73, "lb"),
  61135. name: "Front",
  61136. image: {
  61137. source: "./media/characters/hayaku/front.svg",
  61138. extra: 1011/888,
  61139. bottom: 33/1044
  61140. }
  61141. },
  61142. back: {
  61143. height: math.unit(4, "feet"),
  61144. weight: math.unit(73, "lb"),
  61145. name: "Back",
  61146. image: {
  61147. source: "./media/characters/hayaku/back.svg",
  61148. extra: 1040/930,
  61149. bottom: 20/1060
  61150. }
  61151. },
  61152. },
  61153. [
  61154. {
  61155. name: "Normal",
  61156. height: math.unit(4, "feet"),
  61157. default: true
  61158. },
  61159. ]
  61160. ))
  61161. characterMakers.push(() => makeCharacter(
  61162. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61163. {
  61164. front: {
  61165. height: math.unit(6 + 7/12, "feet"),
  61166. weight: math.unit(300, "lb"),
  61167. name: "Front",
  61168. image: {
  61169. source: "./media/characters/athena-bryzant/front.svg",
  61170. extra: 870/835,
  61171. bottom: 33/903
  61172. }
  61173. },
  61174. back: {
  61175. height: math.unit(6 + 7/12, "feet"),
  61176. weight: math.unit(300, "lb"),
  61177. name: "Back",
  61178. image: {
  61179. source: "./media/characters/athena-bryzant/back.svg",
  61180. extra: 858/823,
  61181. bottom: 30/888
  61182. }
  61183. },
  61184. head: {
  61185. height: math.unit(2.38, "feet"),
  61186. name: "Head",
  61187. image: {
  61188. source: "./media/characters/athena-bryzant/head.svg"
  61189. }
  61190. },
  61191. wings: {
  61192. height: math.unit(2.85, "feet"),
  61193. name: "Wings",
  61194. image: {
  61195. source: "./media/characters/athena-bryzant/wings.svg"
  61196. }
  61197. },
  61198. },
  61199. [
  61200. {
  61201. name: "Normal",
  61202. height: math.unit(6 + 7/12, "feet"),
  61203. default: true
  61204. },
  61205. {
  61206. name: "Big",
  61207. height: math.unit(8, "feet")
  61208. },
  61209. {
  61210. name: "Very Big",
  61211. height: math.unit(11, "feet")
  61212. },
  61213. ]
  61214. ))
  61215. characterMakers.push(() => makeCharacter(
  61216. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61217. {
  61218. side: {
  61219. height: math.unit(3, "meters"),
  61220. weight: math.unit(7500, "kg"),
  61221. preyCapacity: math.unit(1e12, "people"),
  61222. name: "Side",
  61223. image: {
  61224. source: "./media/characters/zel-kesh/side.svg",
  61225. extra: 910/407,
  61226. bottom: 147/1057
  61227. }
  61228. },
  61229. },
  61230. [
  61231. {
  61232. name: "Normal",
  61233. height: math.unit(3, "meters"),
  61234. default: true
  61235. },
  61236. ]
  61237. ))
  61238. characterMakers.push(() => makeCharacter(
  61239. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61240. {
  61241. front: {
  61242. height: math.unit(2, "meters"),
  61243. weight: math.unit(95, "kg"),
  61244. name: "Front",
  61245. image: {
  61246. source: "./media/characters/kane-fox/front.svg",
  61247. extra: 945/888,
  61248. bottom: 27/972
  61249. }
  61250. },
  61251. back: {
  61252. height: math.unit(2, "meters"),
  61253. weight: math.unit(95, "kg"),
  61254. name: "Back",
  61255. image: {
  61256. source: "./media/characters/kane-fox/back.svg",
  61257. extra: 959/914,
  61258. bottom: 15/974
  61259. }
  61260. },
  61261. frontLewd: {
  61262. height: math.unit(2, "meters"),
  61263. weight: math.unit(95, "kg"),
  61264. name: "Front (Lewd)",
  61265. image: {
  61266. source: "./media/characters/kane-fox/front-lewd.svg",
  61267. extra: 945/888,
  61268. bottom: 27/972
  61269. }
  61270. },
  61271. },
  61272. [
  61273. {
  61274. name: "Home Size",
  61275. height: math.unit(2, "meters"),
  61276. default: true
  61277. },
  61278. {
  61279. name: "Macro",
  61280. height: math.unit(200, "meters")
  61281. },
  61282. {
  61283. name: "Small Mega",
  61284. height: math.unit(3, "km")
  61285. },
  61286. {
  61287. name: "Mega",
  61288. height: math.unit(50, "km")
  61289. },
  61290. {
  61291. name: "Giga",
  61292. height: math.unit(200, "km")
  61293. },
  61294. {
  61295. name: "Giga+",
  61296. height: math.unit(2500, "km")
  61297. },
  61298. {
  61299. name: "Terra",
  61300. height: math.unit(70000, "km")
  61301. },
  61302. {
  61303. name: "Terra+",
  61304. height: math.unit(150000, "km")
  61305. },
  61306. {
  61307. name: "Terra++",
  61308. height: math.unit(400000, "km")
  61309. },
  61310. ]
  61311. ))
  61312. characterMakers.push(() => makeCharacter(
  61313. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61314. {
  61315. otter_front: {
  61316. height: math.unit(1.8, "meters"),
  61317. weight: math.unit(90, "kg"),
  61318. name: "Front",
  61319. image: {
  61320. source: "./media/characters/ayranus/otter-front.svg",
  61321. extra: 468/452,
  61322. bottom: 43/511
  61323. },
  61324. form: "otter",
  61325. },
  61326. otter_frontLewd: {
  61327. height: math.unit(1.8, "meters"),
  61328. weight: math.unit(90, "kg"),
  61329. name: "Front (Lewd)",
  61330. image: {
  61331. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61332. extra: 468/452,
  61333. bottom: 43/511
  61334. },
  61335. form: "otter",
  61336. },
  61337. lionbat_front: {
  61338. height: math.unit(1.8, "meters"),
  61339. weight: math.unit(90, "kg"),
  61340. name: "Front (Lewd)",
  61341. image: {
  61342. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61343. extra: 797/740,
  61344. bottom: 78/875
  61345. },
  61346. form: "lionbat",
  61347. },
  61348. paw: {
  61349. height: math.unit(1.5, "feet"),
  61350. name: "Paw",
  61351. image: {
  61352. source: "./media/characters/ayranus/paw.svg"
  61353. },
  61354. },
  61355. },
  61356. [
  61357. {
  61358. name: "Incognito",
  61359. height: math.unit(1.8, "meters"),
  61360. allForms: true
  61361. },
  61362. {
  61363. name: "Macro",
  61364. height: math.unit(60, "meters"),
  61365. allForms: true
  61366. },
  61367. {
  61368. name: "Macro+",
  61369. height: math.unit(200, "meters"),
  61370. allForms: true
  61371. },
  61372. {
  61373. name: "Mega",
  61374. height: math.unit(35, "km"),
  61375. allForms: true
  61376. },
  61377. {
  61378. name: "Giga",
  61379. height: math.unit(220, "km"),
  61380. allForms: true
  61381. },
  61382. {
  61383. name: "Giga+",
  61384. height: math.unit(1500, "km"),
  61385. allForms: true
  61386. },
  61387. {
  61388. name: "Terra",
  61389. height: math.unit(13000, "km"),
  61390. allForms: true
  61391. },
  61392. {
  61393. name: "Terra+",
  61394. height: math.unit(500000, "km"),
  61395. allForms: true
  61396. },
  61397. {
  61398. name: "Galactic",
  61399. height: math.unit(486080, "parsecs"),
  61400. default: true,
  61401. allForms: true
  61402. },
  61403. ],
  61404. {
  61405. "otter": {
  61406. name: "Otter",
  61407. default: true
  61408. },
  61409. "lionbat": {
  61410. name: "Lionbat",
  61411. },
  61412. }
  61413. ))
  61414. characterMakers.push(() => makeCharacter(
  61415. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61416. {
  61417. front: {
  61418. height: math.unit(7 + 4/12, "feet"),
  61419. weight: math.unit(400, "lb"),
  61420. name: "Front",
  61421. image: {
  61422. source: "./media/characters/proxy/front.svg",
  61423. extra: 1605/1542,
  61424. bottom: 55/1660
  61425. }
  61426. },
  61427. side: {
  61428. height: math.unit(7 + 4/12, "feet"),
  61429. weight: math.unit(400, "lb"),
  61430. name: "Side",
  61431. image: {
  61432. source: "./media/characters/proxy/side.svg",
  61433. extra: 794/759,
  61434. bottom: 6/800
  61435. }
  61436. },
  61437. hand: {
  61438. height: math.unit(1.54, "feet"),
  61439. name: "Hand",
  61440. image: {
  61441. source: "./media/characters/proxy/hand.svg"
  61442. }
  61443. },
  61444. paw: {
  61445. height: math.unit(1.53, "feet"),
  61446. name: "Paw",
  61447. image: {
  61448. source: "./media/characters/proxy/paw.svg"
  61449. }
  61450. },
  61451. maw: {
  61452. height: math.unit(1.9, "feet"),
  61453. name: "Maw",
  61454. image: {
  61455. source: "./media/characters/proxy/maw.svg"
  61456. }
  61457. },
  61458. },
  61459. [
  61460. {
  61461. name: "Normal",
  61462. height: math.unit(7 + 4/12, "feet"),
  61463. default: true
  61464. },
  61465. ]
  61466. ))
  61467. characterMakers.push(() => makeCharacter(
  61468. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61469. {
  61470. front: {
  61471. height: math.unit(4, "meters"),
  61472. name: "Front",
  61473. image: {
  61474. source: "./media/characters/crocozilla/front.svg",
  61475. extra: 1790/1742,
  61476. bottom: 78/1868
  61477. }
  61478. },
  61479. },
  61480. [
  61481. {
  61482. name: "Normal",
  61483. height: math.unit(4, "meters"),
  61484. default: true
  61485. },
  61486. ]
  61487. ))
  61488. characterMakers.push(() => makeCharacter(
  61489. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61490. {
  61491. front: {
  61492. height: math.unit(1.8, "meters"),
  61493. weight: math.unit(120, "kg"),
  61494. name: "Front",
  61495. image: {
  61496. source: "./media/characters/kurz/front.svg",
  61497. extra: 1960/1824,
  61498. bottom: 41/2001
  61499. }
  61500. },
  61501. back: {
  61502. height: math.unit(1.8, "meters"),
  61503. weight: math.unit(120, "kg"),
  61504. name: "Back",
  61505. image: {
  61506. source: "./media/characters/kurz/back.svg",
  61507. extra: 1906/1787,
  61508. bottom: 60/1966
  61509. }
  61510. },
  61511. frontLewd: {
  61512. height: math.unit(1.8, "meters"),
  61513. weight: math.unit(120, "kg"),
  61514. name: "Front (Lewd)",
  61515. image: {
  61516. source: "./media/characters/kurz/front-lewd.svg",
  61517. extra: 1960/1824,
  61518. bottom: 41/2001
  61519. }
  61520. },
  61521. maw: {
  61522. height: math.unit(0.69, "meters"),
  61523. name: "Maw",
  61524. image: {
  61525. source: "./media/characters/kurz/maw.svg"
  61526. }
  61527. },
  61528. },
  61529. [
  61530. {
  61531. name: "Original Size",
  61532. height: math.unit(1.8, "meters")
  61533. },
  61534. {
  61535. name: "Incognito Size",
  61536. height: math.unit(2.4, "meters"),
  61537. default: true
  61538. },
  61539. {
  61540. name: "Macro",
  61541. height: math.unit(30, "meters")
  61542. },
  61543. {
  61544. name: "Macro+",
  61545. height: math.unit(250, "meters")
  61546. },
  61547. {
  61548. name: "Mega",
  61549. height: math.unit(2, "km")
  61550. },
  61551. {
  61552. name: "Mega+",
  61553. height: math.unit(35, "km")
  61554. },
  61555. {
  61556. name: "Mega++",
  61557. height: math.unit(75, "km")
  61558. },
  61559. {
  61560. name: "Giga",
  61561. height: math.unit(250, "km")
  61562. },
  61563. {
  61564. name: "Terra",
  61565. height: math.unit(15000, "km")
  61566. },
  61567. {
  61568. name: "Terra+",
  61569. height: math.unit(2250000, "km")
  61570. },
  61571. ]
  61572. ))
  61573. characterMakers.push(() => makeCharacter(
  61574. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61575. {
  61576. front: {
  61577. height: math.unit(16 + 3/12, "feet"),
  61578. weight: math.unit(3575, "lb"),
  61579. name: "Front",
  61580. image: {
  61581. source: "./media/characters/nikita/front.svg",
  61582. extra: 1064/955,
  61583. bottom: 47/1111
  61584. }
  61585. },
  61586. },
  61587. [
  61588. {
  61589. name: "Normal",
  61590. height: math.unit(16 + 3/12, "feet"),
  61591. default: true
  61592. },
  61593. {
  61594. name: "Big",
  61595. height: math.unit(21, "feet")
  61596. },
  61597. {
  61598. name: "Biggest",
  61599. height: math.unit(50, "feet")
  61600. },
  61601. ]
  61602. ))
  61603. characterMakers.push(() => makeCharacter(
  61604. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61605. {
  61606. front: {
  61607. height: math.unit(1.92, "m"),
  61608. weight: math.unit(76, "kg"),
  61609. name: "Front",
  61610. image: {
  61611. source: "./media/characters/kyara/front.svg",
  61612. extra: 1550/1438,
  61613. bottom: 139/1689
  61614. }
  61615. },
  61616. back: {
  61617. height: math.unit(1.92, "m"),
  61618. weight: math.unit(76, "kg"),
  61619. name: "Back",
  61620. image: {
  61621. source: "./media/characters/kyara/back.svg",
  61622. extra: 1523/1427,
  61623. bottom: 83/1606
  61624. }
  61625. },
  61626. head: {
  61627. height: math.unit(1.22, "feet"),
  61628. name: "Head",
  61629. image: {
  61630. source: "./media/characters/kyara/head.svg"
  61631. }
  61632. },
  61633. maw: {
  61634. height: math.unit(0.73, "feet"),
  61635. name: "Maw",
  61636. image: {
  61637. source: "./media/characters/kyara/maw.svg"
  61638. }
  61639. },
  61640. paws: {
  61641. height: math.unit(0.95, "feet"),
  61642. name: "Paws",
  61643. image: {
  61644. source: "./media/characters/kyara/paws.svg"
  61645. }
  61646. },
  61647. },
  61648. [
  61649. {
  61650. name: "Normal",
  61651. height: math.unit(1.92, "meters"),
  61652. default: true
  61653. },
  61654. {
  61655. name: "Mini Macro",
  61656. height: math.unit(192, "meters")
  61657. },
  61658. {
  61659. name: "Macro",
  61660. height: math.unit(480, "meters")
  61661. },
  61662. {
  61663. name: "Mega Macro",
  61664. height: math.unit(1440, "meters")
  61665. },
  61666. ]
  61667. ))
  61668. characterMakers.push(() => makeCharacter(
  61669. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61670. {
  61671. front: {
  61672. height: math.unit(6, "feet"),
  61673. weight: math.unit(160, "lbs"),
  61674. preyCapacity: math.unit(0.05, "people"),
  61675. name: "Front",
  61676. image: {
  61677. source: "./media/characters/layla-amari/front.svg",
  61678. extra: 1922/1723,
  61679. bottom: 90/2012
  61680. }
  61681. },
  61682. back: {
  61683. height: math.unit(6, "feet"),
  61684. weight: math.unit(160, "lbs"),
  61685. preyCapacity: math.unit(0.05, "people"),
  61686. name: "Back",
  61687. image: {
  61688. source: "./media/characters/layla-amari/back.svg",
  61689. extra: 1917/1718,
  61690. bottom: 50/1967
  61691. }
  61692. },
  61693. frontDressed: {
  61694. height: math.unit(6, "feet"),
  61695. weight: math.unit(160, "lbs"),
  61696. preyCapacity: math.unit(0.05, "people"),
  61697. name: "Front (Dressed)",
  61698. image: {
  61699. source: "./media/characters/layla-amari/front-dressed.svg",
  61700. extra: 1922/1723,
  61701. bottom: 90/2012
  61702. }
  61703. },
  61704. face: {
  61705. height: math.unit(0.93, "feet"),
  61706. name: "Face",
  61707. image: {
  61708. source: "./media/characters/layla-amari/face.svg"
  61709. }
  61710. },
  61711. hand: {
  61712. height: math.unit(0.66 , "feet"),
  61713. name: "Hand",
  61714. image: {
  61715. source: "./media/characters/layla-amari/hand.svg"
  61716. }
  61717. },
  61718. foot: {
  61719. height: math.unit(1, "feet"),
  61720. name: "Foot",
  61721. image: {
  61722. source: "./media/characters/layla-amari/foot.svg"
  61723. }
  61724. },
  61725. necklace: {
  61726. height: math.unit(0.32, "feet"),
  61727. name: "Necklace",
  61728. image: {
  61729. source: "./media/characters/layla-amari/necklace.svg"
  61730. }
  61731. },
  61732. nipple: {
  61733. height: math.unit(0.2, "feet"),
  61734. name: "Nipple",
  61735. image: {
  61736. source: "./media/characters/layla-amari/nipple.svg"
  61737. }
  61738. },
  61739. slit: {
  61740. height: math.unit(0.26, "feet"),
  61741. name: "Slit",
  61742. image: {
  61743. source: "./media/characters/layla-amari/slit.svg"
  61744. }
  61745. },
  61746. },
  61747. [
  61748. {
  61749. name: "Natural",
  61750. height: math.unit(825, "feet"),
  61751. default: true
  61752. },
  61753. {
  61754. name: "Enhanced",
  61755. height: math.unit(8250, "feet")
  61756. },
  61757. {
  61758. name: "Apparent Size",
  61759. height: math.unit(9.04363e+8, "meters")
  61760. },
  61761. ]
  61762. ))
  61763. characterMakers.push(() => makeCharacter(
  61764. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61765. {
  61766. front: {
  61767. height: math.unit(1.3, "meters"),
  61768. name: "Front",
  61769. image: {
  61770. source: "./media/characters/percy/front.svg",
  61771. extra: 1444/1289,
  61772. bottom: 54/1498
  61773. }
  61774. },
  61775. },
  61776. [
  61777. {
  61778. name: "Normal",
  61779. height: math.unit(1.3, "meters"),
  61780. default: true
  61781. },
  61782. ]
  61783. ))
  61784. characterMakers.push(() => makeCharacter(
  61785. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61786. {
  61787. side: {
  61788. height: math.unit(10, "meters"),
  61789. name: "Side",
  61790. image: {
  61791. source: "./media/characters/grev/side.svg",
  61792. extra: 653/266,
  61793. bottom: 77/730
  61794. }
  61795. },
  61796. head: {
  61797. height: math.unit(16.2, "m"),
  61798. name: "Head",
  61799. image: {
  61800. source: "./media/characters/grev/head.svg"
  61801. }
  61802. },
  61803. dick: {
  61804. height: math.unit(2.8135932034, "m"),
  61805. name: "Dick",
  61806. image: {
  61807. source: "./media/characters/grev/dick.svg"
  61808. }
  61809. },
  61810. },
  61811. [
  61812. {
  61813. name: "Friend-Sized",
  61814. height: math.unit(80, "cm")
  61815. },
  61816. {
  61817. name: "Normal",
  61818. height: math.unit(10, "meters"),
  61819. default: true
  61820. },
  61821. {
  61822. name: "Macro",
  61823. height: math.unit(200, "meters")
  61824. },
  61825. ]
  61826. ))
  61827. characterMakers.push(() => makeCharacter(
  61828. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61829. {
  61830. front: {
  61831. height: math.unit(19.75, "feet"),
  61832. weight: math.unit(20000, "lb"),
  61833. name: "Front",
  61834. image: {
  61835. source: "./media/characters/azuuca/front.svg",
  61836. extra: 1593/1511,
  61837. bottom: 55/1648
  61838. }
  61839. },
  61840. },
  61841. [
  61842. {
  61843. name: "Normal",
  61844. height: math.unit(19.75, "feet"),
  61845. default: true
  61846. },
  61847. ]
  61848. ))
  61849. characterMakers.push(() => makeCharacter(
  61850. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61851. {
  61852. front: {
  61853. height: math.unit(15, "feet"),
  61854. weight: math.unit(1500, "lb"),
  61855. name: "Front",
  61856. image: {
  61857. source: "./media/characters/valuria/front.svg",
  61858. extra: 1588/1486,
  61859. bottom: 31/1619
  61860. }
  61861. },
  61862. },
  61863. [
  61864. {
  61865. name: "Normal",
  61866. height: math.unit(15, "feet"),
  61867. default: true
  61868. },
  61869. {
  61870. name: "Small",
  61871. height: math.unit(500, "feet")
  61872. },
  61873. {
  61874. name: "Macro",
  61875. height: math.unit(4000, "feet")
  61876. },
  61877. {
  61878. name: "Mega Macro",
  61879. height: math.unit(2000, "miles")
  61880. },
  61881. {
  61882. name: "Giga Macro",
  61883. height: math.unit(3e6, "miles")
  61884. },
  61885. ]
  61886. ))
  61887. characterMakers.push(() => makeCharacter(
  61888. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61889. {
  61890. front: {
  61891. height: math.unit(3500, "solarradii"),
  61892. name: "Front",
  61893. image: {
  61894. source: "./media/characters/terigaia/front.svg",
  61895. extra: 1531/1451,
  61896. bottom: 98/1629
  61897. }
  61898. },
  61899. },
  61900. [
  61901. {
  61902. name: "Normal",
  61903. height: math.unit(3500, "solarradii"),
  61904. default: true
  61905. },
  61906. ]
  61907. ))
  61908. characterMakers.push(() => makeCharacter(
  61909. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61910. {
  61911. front: {
  61912. height: math.unit(9.34, "feet"),
  61913. weight: math.unit(600, "lb"),
  61914. name: "Front",
  61915. image: {
  61916. source: "./media/characters/blair-blaziken/front.svg",
  61917. extra: 1557/1462,
  61918. bottom: 55/1612
  61919. }
  61920. },
  61921. },
  61922. [
  61923. {
  61924. name: "Normal",
  61925. height: math.unit(9.34, "feet"),
  61926. default: true
  61927. },
  61928. ]
  61929. ))
  61930. characterMakers.push(() => makeCharacter(
  61931. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61932. {
  61933. pistrogre_front: {
  61934. height: math.unit(10, "feet"),
  61935. weight: math.unit(10, "tons"),
  61936. name: "Front",
  61937. image: {
  61938. source: "./media/characters/braxia/pistrogre-front.svg",
  61939. extra: 1531/1334,
  61940. bottom: 114/1645
  61941. },
  61942. form: "pistrogre",
  61943. default: true
  61944. },
  61945. human_front: {
  61946. height: math.unit(10, "feet"),
  61947. weight: math.unit(10, "tons"),
  61948. name: "Front",
  61949. image: {
  61950. source: "./media/characters/braxia/human-front.svg",
  61951. extra: 1574/1501,
  61952. bottom: 37/1611
  61953. },
  61954. form: "human",
  61955. default: true
  61956. },
  61957. },
  61958. [
  61959. {
  61960. name: "Normal",
  61961. height: math.unit(10, "feet"),
  61962. default: true,
  61963. allForms: true
  61964. },
  61965. {
  61966. name: "Macro",
  61967. height: math.unit(1000, "feet"),
  61968. allForms: true
  61969. },
  61970. {
  61971. name: "Mega Macro",
  61972. height: math.unit(100, "miles"),
  61973. allForms: true
  61974. },
  61975. {
  61976. name: "Cosmic",
  61977. height: math.unit(1000000, "lightyears"),
  61978. allForms: true
  61979. },
  61980. {
  61981. name: "ϐѮԆԬӁꭍϞԢ",
  61982. height: math.unit(1000, "multiverses"),
  61983. allForms: true
  61984. },
  61985. ],
  61986. {
  61987. "pistrogre": {
  61988. name: "Pistrogre",
  61989. default: true
  61990. },
  61991. "human": {
  61992. name: "Human",
  61993. },
  61994. }
  61995. ))
  61996. characterMakers.push(() => makeCharacter(
  61997. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61998. {
  61999. front: {
  62000. height: math.unit(6 + 1/12, "feet"),
  62001. weight: math.unit(280, "lb"),
  62002. name: "Front",
  62003. image: {
  62004. source: "./media/characters/kiriga-yato/front.svg",
  62005. extra: 445/394,
  62006. bottom: 11/456
  62007. }
  62008. },
  62009. },
  62010. [
  62011. {
  62012. name: "Descended",
  62013. height: math.unit(3, "feet")
  62014. },
  62015. {
  62016. name: "Average",
  62017. height: math.unit(6 + 1/12, "feet"),
  62018. default: true
  62019. },
  62020. {
  62021. name: "Ascended",
  62022. height: math.unit(9 + 2/12, "feet")
  62023. },
  62024. ]
  62025. ))
  62026. characterMakers.push(() => makeCharacter(
  62027. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62028. {
  62029. front: {
  62030. height: math.unit(6, "feet"),
  62031. weight: math.unit(150, "lb"),
  62032. name: "Front",
  62033. image: {
  62034. source: "./media/characters/kylie/front.svg",
  62035. extra: 1114/1046,
  62036. bottom: 65/1179
  62037. },
  62038. extraAttributes: {
  62039. "hoofSize": {
  62040. name: "Hoof Size",
  62041. power: 2,
  62042. type: "area",
  62043. base: math.unit(0.034, "m^2")
  62044. },
  62045. "footSize": {
  62046. name: "Foot Size",
  62047. power: 2,
  62048. type: "area",
  62049. base: math.unit(0.75, "m^2")
  62050. },
  62051. }
  62052. },
  62053. side: {
  62054. height: math.unit(6, "feet"),
  62055. weight: math.unit(150, "lb"),
  62056. name: "Side",
  62057. image: {
  62058. source: "./media/characters/kylie/side.svg",
  62059. extra: 1178/1110,
  62060. bottom: 21/1199
  62061. },
  62062. extraAttributes: {
  62063. "hoofSize": {
  62064. name: "Hoof Size",
  62065. power: 2,
  62066. type: "area",
  62067. base: math.unit(0.034, "m^2")
  62068. },
  62069. "footSize": {
  62070. name: "Foot Size",
  62071. power: 2,
  62072. type: "area",
  62073. base: math.unit(0.75, "m^2")
  62074. },
  62075. }
  62076. },
  62077. back: {
  62078. height: math.unit(6, "feet"),
  62079. weight: math.unit(150, "lb"),
  62080. name: "Back",
  62081. image: {
  62082. source: "./media/characters/kylie/back.svg",
  62083. extra: 1115/1047,
  62084. bottom: 66/1181
  62085. },
  62086. extraAttributes: {
  62087. "hoofSize": {
  62088. name: "Hoof Size",
  62089. power: 2,
  62090. type: "area",
  62091. base: math.unit(0.034, "m^2")
  62092. },
  62093. "footSize": {
  62094. name: "Foot Size",
  62095. power: 2,
  62096. type: "area",
  62097. base: math.unit(0.75, "m^2")
  62098. },
  62099. }
  62100. },
  62101. head: {
  62102. height: math.unit(1.85, "feet"),
  62103. name: "Head",
  62104. image: {
  62105. source: "./media/characters/kylie/head.svg"
  62106. }
  62107. },
  62108. },
  62109. [
  62110. {
  62111. name: "Normal",
  62112. height: math.unit(90, "meters"),
  62113. default: true
  62114. },
  62115. ]
  62116. ))
  62117. characterMakers.push(() => makeCharacter(
  62118. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62119. {
  62120. front: {
  62121. height: math.unit(245, "feet"),
  62122. weight: math.unit(400000, "lb"),
  62123. name: "Front",
  62124. image: {
  62125. source: "./media/characters/sabado/front.svg",
  62126. extra: 1309/1164,
  62127. bottom: 29/1338
  62128. }
  62129. },
  62130. },
  62131. [
  62132. {
  62133. name: "Normal",
  62134. height: math.unit(245, "feet"),
  62135. default: true
  62136. },
  62137. ]
  62138. ))
  62139. characterMakers.push(() => makeCharacter(
  62140. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62141. {
  62142. shark_front: {
  62143. height: math.unit(2, "meters"),
  62144. weight: math.unit(200, "kg"),
  62145. name: "Front",
  62146. image: {
  62147. source: "./media/characters/zechal/shark-front.svg",
  62148. extra: 969/925,
  62149. bottom: 74/1043
  62150. },
  62151. form: "shark",
  62152. },
  62153. shark_back: {
  62154. height: math.unit(2, "meters"),
  62155. weight: math.unit(200, "kg"),
  62156. name: "Back",
  62157. image: {
  62158. source: "./media/characters/zechal/shark-back.svg",
  62159. extra: 994/949,
  62160. bottom: 176/1170
  62161. },
  62162. form: "shark",
  62163. },
  62164. shark_frontLewd: {
  62165. height: math.unit(2, "meters"),
  62166. weight: math.unit(200, "kg"),
  62167. name: "Front (Lewd)",
  62168. image: {
  62169. source: "./media/characters/zechal/shark-front-lewd.svg",
  62170. extra: 969/925,
  62171. bottom: 74/1043
  62172. },
  62173. form: "shark",
  62174. },
  62175. shark_side: {
  62176. height: math.unit(1.56, "meters"),
  62177. weight: math.unit(200, "kg"),
  62178. name: "Side",
  62179. image: {
  62180. source: "./media/characters/zechal/shark-side.svg"
  62181. },
  62182. form: "shark",
  62183. },
  62184. dragon_front: {
  62185. height: math.unit(2, "meters"),
  62186. weight: math.unit(200, "kg"),
  62187. name: "Front",
  62188. image: {
  62189. source: "./media/characters/zechal/dragon-front.svg",
  62190. extra: 1041/925,
  62191. bottom: 74/1115
  62192. },
  62193. form: "dragon",
  62194. },
  62195. dragon_back: {
  62196. height: math.unit(2, "meters"),
  62197. weight: math.unit(200, "kg"),
  62198. name: "Back",
  62199. image: {
  62200. source: "./media/characters/zechal/dragon-back.svg",
  62201. extra: 1061/949,
  62202. bottom: 176/1237
  62203. },
  62204. form: "dragon",
  62205. },
  62206. dragon_frontLewd: {
  62207. height: math.unit(2, "meters"),
  62208. weight: math.unit(200, "kg"),
  62209. name: "Front (Lewd)",
  62210. image: {
  62211. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62212. extra: 1041/925,
  62213. bottom: 74/1115
  62214. },
  62215. form: "dragon",
  62216. },
  62217. dragon_side: {
  62218. height: math.unit(1.56, "meters"),
  62219. weight: math.unit(200, "kg"),
  62220. name: "Side",
  62221. image: {
  62222. source: "./media/characters/zechal/dragon-side.svg"
  62223. },
  62224. form: "dragon",
  62225. },
  62226. foot: {
  62227. height: math.unit(0.5, "meters"),
  62228. name: "Foot",
  62229. image: {
  62230. source: "./media/characters/zechal/foot.svg"
  62231. }
  62232. },
  62233. sheathFront: {
  62234. height: math.unit(0.45, "meters"),
  62235. name: "Sheath (Front)",
  62236. image: {
  62237. source: "./media/characters/zechal/sheath-front.svg"
  62238. }
  62239. },
  62240. sheathSide: {
  62241. height: math.unit(0.45, "meters"),
  62242. name: "Sheath (Side)",
  62243. image: {
  62244. source: "./media/characters/zechal/sheath-side.svg"
  62245. }
  62246. },
  62247. },
  62248. [
  62249. {
  62250. name: "Incognito",
  62251. height: math.unit(2, "meters"),
  62252. allForms: true
  62253. },
  62254. {
  62255. name: "Small Rampage",
  62256. height: math.unit(25, "meters"),
  62257. allForms: true
  62258. },
  62259. {
  62260. name: "Home Size",
  62261. height: math.unit(250, "meters"),
  62262. allForms: true,
  62263. default: true
  62264. },
  62265. {
  62266. name: "Macro+",
  62267. height: math.unit(700, "meters"),
  62268. allForms: true
  62269. },
  62270. {
  62271. name: "Small Mega",
  62272. height: math.unit(3, "km"),
  62273. allForms: true
  62274. },
  62275. {
  62276. name: "Mega",
  62277. height: math.unit(15, "km"),
  62278. allForms: true
  62279. },
  62280. {
  62281. name: "Giga",
  62282. height: math.unit(300, "km"),
  62283. allForms: true
  62284. },
  62285. {
  62286. name: "Giga+",
  62287. height: math.unit(1750, "km"),
  62288. allForms: true
  62289. },
  62290. {
  62291. name: "Continental",
  62292. height: math.unit(5000, "km"),
  62293. allForms: true
  62294. },
  62295. {
  62296. name: "Terra",
  62297. height: math.unit(20000, "km"),
  62298. allForms: true
  62299. },
  62300. {
  62301. name: "Terra+",
  62302. height: math.unit(300000, "km"),
  62303. allForms: true
  62304. },
  62305. {
  62306. name: "Solar",
  62307. height: math.unit(40000000, "km"),
  62308. allForms: true
  62309. },
  62310. {
  62311. name: "Galactic",
  62312. height: math.unit(810133, "parsecs"),
  62313. allForms: true
  62314. },
  62315. {
  62316. name: "Universal",
  62317. height: math.unit(25, "universes"),
  62318. allForms: true
  62319. },
  62320. ],
  62321. {
  62322. "shark": {
  62323. name: "Shark",
  62324. default: true
  62325. },
  62326. "dragon": {
  62327. name: "Dragon",
  62328. },
  62329. }
  62330. ))
  62331. characterMakers.push(() => makeCharacter(
  62332. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62333. {
  62334. front: {
  62335. height: math.unit(2.2, "meters"),
  62336. weight: math.unit(150, "kg"),
  62337. name: "Front",
  62338. image: {
  62339. source: "./media/characters/sergis/front.svg",
  62340. extra: 1314/1312,
  62341. bottom: 112/1426
  62342. }
  62343. },
  62344. back: {
  62345. height: math.unit(2.2, "meters"),
  62346. weight: math.unit(150, "kg"),
  62347. name: "Back",
  62348. image: {
  62349. source: "./media/characters/sergis/back.svg",
  62350. extra: 1335/1333,
  62351. bottom: 19/1354
  62352. }
  62353. },
  62354. frontLewd: {
  62355. height: math.unit(2.2, "meters"),
  62356. weight: math.unit(150, "kg"),
  62357. name: "Front (Lewd)",
  62358. image: {
  62359. source: "./media/characters/sergis/front-lewd.svg",
  62360. extra: 1314/1312,
  62361. bottom: 112/1426
  62362. }
  62363. },
  62364. frontDressed: {
  62365. height: math.unit(2.2, "meters"),
  62366. weight: math.unit(150, "kg"),
  62367. name: "Front (Dressed)",
  62368. image: {
  62369. source: "./media/characters/sergis/front-dressed.svg",
  62370. extra: 1330/1328,
  62371. bottom: 95/1425
  62372. }
  62373. },
  62374. frontDressedLewd: {
  62375. height: math.unit(2.2, "meters"),
  62376. weight: math.unit(150, "kg"),
  62377. name: "Front (Dressed, Lewd)",
  62378. image: {
  62379. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62380. extra: 1330/1328,
  62381. bottom: 95/1425
  62382. }
  62383. },
  62384. maw: {
  62385. height: math.unit(0.48, "meters"),
  62386. name: "Maw",
  62387. image: {
  62388. source: "./media/characters/sergis/maw.svg"
  62389. }
  62390. },
  62391. sheath: {
  62392. height: math.unit(0.38, "meters"),
  62393. name: "Sheath",
  62394. image: {
  62395. source: "./media/characters/sergis/sheath.svg"
  62396. }
  62397. },
  62398. },
  62399. [
  62400. {
  62401. name: "Incognito Size",
  62402. height: math.unit(2.2, "meters")
  62403. },
  62404. {
  62405. name: "Small Macro",
  62406. height: math.unit(40, "meters")
  62407. },
  62408. {
  62409. name: "Macro",
  62410. height: math.unit(150, "meters")
  62411. },
  62412. {
  62413. name: "Macro+",
  62414. height: math.unit(300, "meters")
  62415. },
  62416. {
  62417. name: "Mega",
  62418. height: math.unit(2.5, "km")
  62419. },
  62420. {
  62421. name: "Mega+",
  62422. height: math.unit(30, "km")
  62423. },
  62424. {
  62425. name: "Home Size",
  62426. height: math.unit(300, "km"),
  62427. default: true
  62428. },
  62429. {
  62430. name: "Giga+",
  62431. height: math.unit(1000, "km")
  62432. },
  62433. {
  62434. name: "Giga++",
  62435. height: math.unit(6000, "km")
  62436. },
  62437. {
  62438. name: "Terra",
  62439. height: math.unit(70000, "km")
  62440. },
  62441. {
  62442. name: "Terra+",
  62443. height: math.unit(200000, "km")
  62444. },
  62445. {
  62446. name: "Galactic",
  62447. height: math.unit(634200, "lightyears")
  62448. },
  62449. ]
  62450. ))
  62451. characterMakers.push(() => makeCharacter(
  62452. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62453. {
  62454. standard: {
  62455. height: math.unit(1 + 5/12, "feet"),
  62456. name: "Standard",
  62457. image: {
  62458. source: "./media/characters/spade/standard.svg",
  62459. extra: 1794/1703,
  62460. bottom: 115/1909
  62461. }
  62462. },
  62463. disguised: {
  62464. height: math.unit(1 + 5/12, "feet"),
  62465. name: "Disguised",
  62466. image: {
  62467. source: "./media/characters/spade/disguised.svg",
  62468. extra: 1794/1700,
  62469. bottom: 98/1892
  62470. }
  62471. },
  62472. },
  62473. [
  62474. {
  62475. name: "Normal",
  62476. height: math.unit(1 + 5/12, "feet"),
  62477. default: true
  62478. },
  62479. ]
  62480. ))
  62481. characterMakers.push(() => makeCharacter(
  62482. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62483. {
  62484. frontNsfw: {
  62485. height: math.unit(5, "meters"),
  62486. weight: math.unit(2000, "kg"),
  62487. preyCapacity: math.unit(5, "people"),
  62488. name: "Front (NSFW)",
  62489. image: {
  62490. source: "./media/characters/zeanlain/front-nsfw.svg",
  62491. extra: 1087/938,
  62492. bottom: 93/1180
  62493. },
  62494. extraAttributes: {
  62495. "wingspan": {
  62496. name: "Wingspan",
  62497. power: 1,
  62498. type: "length",
  62499. base: math.unit(10, "meters")
  62500. },
  62501. "footSize": {
  62502. name: "Foot Size",
  62503. power: 1,
  62504. type: "length",
  62505. base: math.unit(0.68, "meters")
  62506. },
  62507. "cockLength": {
  62508. name: "Cock Length",
  62509. power: 1,
  62510. type: "length",
  62511. base: math.unit(1.69, "meters")
  62512. },
  62513. "ballVolume": {
  62514. name: "Ball Volume",
  62515. power: 3,
  62516. type: "volume",
  62517. base: math.unit(0.028, "m^3")
  62518. },
  62519. }
  62520. },
  62521. front: {
  62522. height: math.unit(5, "meters"),
  62523. weight: math.unit(2000, "kg"),
  62524. preyCapacity: math.unit(3, "people"),
  62525. name: "Front",
  62526. image: {
  62527. source: "./media/characters/zeanlain/front.svg",
  62528. extra: 1087/938,
  62529. bottom: 93/1180
  62530. },
  62531. extraAttributes: {
  62532. "wingspan": {
  62533. name: "Wingspan",
  62534. power: 1,
  62535. type: "length",
  62536. base: math.unit(10, "meters")
  62537. },
  62538. "footSize": {
  62539. name: "Foot Size",
  62540. power: 1,
  62541. type: "length",
  62542. base: math.unit(0.68, "meters")
  62543. },
  62544. }
  62545. },
  62546. },
  62547. [
  62548. {
  62549. name: "Normal",
  62550. height: math.unit(5, "meters"),
  62551. default: true
  62552. },
  62553. ]
  62554. ))
  62555. characterMakers.push(() => makeCharacter(
  62556. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62557. {
  62558. front: {
  62559. height: math.unit(10, "meters"),
  62560. weight: math.unit(250000, "kg"),
  62561. name: "Front",
  62562. image: {
  62563. source: "./media/characters/airamis/front.svg",
  62564. extra: 865/835,
  62565. bottom: 13/878
  62566. }
  62567. },
  62568. },
  62569. [
  62570. {
  62571. name: "Normal",
  62572. height: math.unit(10, "meters"),
  62573. default: true
  62574. },
  62575. ]
  62576. ))
  62577. characterMakers.push(() => makeCharacter(
  62578. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62579. {
  62580. front: {
  62581. height: math.unit(3 + 3/12, "feet"),
  62582. weight: math.unit(75, "lb"),
  62583. name: "Front",
  62584. image: {
  62585. source: "./media/characters/corra-tourmaline/front.svg",
  62586. extra: 1037/864,
  62587. bottom: 39/1076
  62588. }
  62589. },
  62590. back: {
  62591. height: math.unit(3 + 3/12, "feet"),
  62592. weight: math.unit(75, "lb"),
  62593. name: "Back",
  62594. image: {
  62595. source: "./media/characters/corra-tourmaline/back.svg",
  62596. extra: 1022/849,
  62597. bottom: 26/1048
  62598. }
  62599. },
  62600. dressed: {
  62601. height: math.unit(3 + 3/12, "feet"),
  62602. weight: math.unit(75, "lb"),
  62603. name: "Dressed",
  62604. image: {
  62605. source: "./media/characters/corra-tourmaline/dressed.svg",
  62606. extra: 1037/864,
  62607. bottom: 39/1076
  62608. }
  62609. },
  62610. beans: {
  62611. height: math.unit(0.37, "feet"),
  62612. name: "Beans",
  62613. image: {
  62614. source: "./media/characters/corra-tourmaline/beans.svg"
  62615. }
  62616. },
  62617. },
  62618. [
  62619. {
  62620. name: "Normal",
  62621. height: math.unit(3 + 3/12, "feet"),
  62622. default: true
  62623. },
  62624. {
  62625. name: "Macro",
  62626. height: math.unit(32, "feet")
  62627. },
  62628. ]
  62629. ))
  62630. characterMakers.push(() => makeCharacter(
  62631. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62632. {
  62633. front: {
  62634. height: math.unit(6 + 2/12, "feet"),
  62635. weight: math.unit(203, "lb"),
  62636. name: "Front",
  62637. image: {
  62638. source: "./media/characters/maki-kawa/front.svg",
  62639. extra: 950/890,
  62640. bottom: 62/1012
  62641. }
  62642. },
  62643. back: {
  62644. height: math.unit(6 + 2/12, "feet"),
  62645. weight: math.unit(203, "lb"),
  62646. name: "Back",
  62647. image: {
  62648. source: "./media/characters/maki-kawa/back.svg",
  62649. extra: 953/878,
  62650. bottom: 49/1002
  62651. }
  62652. },
  62653. frontBarista: {
  62654. height: math.unit(6 + 2/12, "feet"),
  62655. weight: math.unit(203, "lb"),
  62656. name: "Front (Barista)",
  62657. image: {
  62658. source: "./media/characters/maki-kawa/front-barista.svg",
  62659. extra: 943/883,
  62660. bottom: 69/1012
  62661. }
  62662. },
  62663. backBarista: {
  62664. height: math.unit(6 + 2/12, "feet"),
  62665. weight: math.unit(203, "lb"),
  62666. name: "Back (Barista)",
  62667. image: {
  62668. source: "./media/characters/maki-kawa/back-barista.svg",
  62669. extra: 953/878,
  62670. bottom: 49/1002
  62671. }
  62672. },
  62673. frontWrestler: {
  62674. height: math.unit(6 + 2/12, "feet"),
  62675. weight: math.unit(203, "lb"),
  62676. name: "Front (Wrestler)",
  62677. image: {
  62678. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62679. extra: 950/890,
  62680. bottom: 62/1012
  62681. }
  62682. },
  62683. backWrestler: {
  62684. height: math.unit(6 + 2/12, "feet"),
  62685. weight: math.unit(203, "lb"),
  62686. name: "Back (Wrestler)",
  62687. image: {
  62688. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62689. extra: 953/878,
  62690. bottom: 49/1002
  62691. }
  62692. },
  62693. headFront: {
  62694. height: math.unit(1.64, "feet"),
  62695. name: "Head (Front)",
  62696. image: {
  62697. source: "./media/characters/maki-kawa/head-front.svg"
  62698. }
  62699. },
  62700. headSide: {
  62701. height: math.unit(1.59, "feet"),
  62702. name: "Head (Side)",
  62703. image: {
  62704. source: "./media/characters/maki-kawa/head-side.svg"
  62705. }
  62706. },
  62707. paw: {
  62708. height: math.unit(0.9, "feet"),
  62709. name: "Paw",
  62710. image: {
  62711. source: "./media/characters/maki-kawa/paw.svg"
  62712. }
  62713. },
  62714. },
  62715. [
  62716. {
  62717. name: "Normal",
  62718. height: math.unit(6 + 2/12, "feet"),
  62719. default: true
  62720. },
  62721. {
  62722. name: "Macro",
  62723. height: math.unit(617, "feet")
  62724. },
  62725. ]
  62726. ))
  62727. characterMakers.push(() => makeCharacter(
  62728. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62729. {
  62730. front: {
  62731. height: math.unit(10, "feet"),
  62732. weight: math.unit(1500, "lb"),
  62733. name: "Front",
  62734. image: {
  62735. source: "./media/characters/lennox/front.svg",
  62736. extra: 1623/1496,
  62737. bottom: 18/1641
  62738. }
  62739. },
  62740. back: {
  62741. height: math.unit(10, "feet"),
  62742. weight: math.unit(1500, "lb"),
  62743. name: "Back",
  62744. image: {
  62745. source: "./media/characters/lennox/back.svg",
  62746. extra: 1641/1481,
  62747. bottom: 13/1654
  62748. }
  62749. },
  62750. maw: {
  62751. height: math.unit(2.94, "feet"),
  62752. name: "Maw",
  62753. image: {
  62754. source: "./media/characters/lennox/maw.svg"
  62755. }
  62756. },
  62757. },
  62758. [
  62759. {
  62760. name: "Micro",
  62761. height: math.unit(1, "inch")
  62762. },
  62763. {
  62764. name: "Normal",
  62765. height: math.unit(10, "feet"),
  62766. default: true
  62767. },
  62768. {
  62769. name: "Macro",
  62770. height: math.unit(200, "feet")
  62771. },
  62772. ]
  62773. ))
  62774. characterMakers.push(() => makeCharacter(
  62775. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62776. {
  62777. frontDressed: {
  62778. height: math.unit(15 + 7/12, "feet"),
  62779. weight: math.unit(5000, "lb"),
  62780. name: "Front (Dressed)",
  62781. image: {
  62782. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62783. extra: 1136/1023,
  62784. bottom: 51/1187
  62785. }
  62786. },
  62787. backDressed: {
  62788. height: math.unit(15 + 7/12, "feet"),
  62789. weight: math.unit(5000, "lb"),
  62790. name: "Back (Dressed)",
  62791. image: {
  62792. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62793. extra: 2359/2143,
  62794. bottom: 103/2462
  62795. }
  62796. },
  62797. front: {
  62798. height: math.unit(15 + 7/12, "feet"),
  62799. weight: math.unit(5000, "lb"),
  62800. name: "Front",
  62801. image: {
  62802. source: "./media/characters/vyse-iron-thunder/front.svg",
  62803. extra: 1136/1023,
  62804. bottom: 51/1187
  62805. }
  62806. },
  62807. hand: {
  62808. height: math.unit(2.36, "feet"),
  62809. name: "Hand",
  62810. image: {
  62811. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62812. }
  62813. },
  62814. foot: {
  62815. height: math.unit(1.72, "feet"),
  62816. name: "Foot",
  62817. image: {
  62818. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62819. }
  62820. },
  62821. mouth: {
  62822. height: math.unit(2, "feet"),
  62823. name: "Mouth",
  62824. image: {
  62825. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62826. }
  62827. },
  62828. eye: {
  62829. height: math.unit(0.58, "feet"),
  62830. name: "Eye",
  62831. image: {
  62832. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62833. }
  62834. },
  62835. },
  62836. [
  62837. {
  62838. name: "Normal",
  62839. height: math.unit(15 + 7/12, "feet"),
  62840. default: true
  62841. },
  62842. {
  62843. name: "Macro",
  62844. height: math.unit(157, "feet")
  62845. },
  62846. {
  62847. name: "Macro+",
  62848. height: math.unit(1570, "feet")
  62849. },
  62850. {
  62851. name: "Macro++",
  62852. height: math.unit(15700, "feet")
  62853. },
  62854. {
  62855. name: "Macro+++",
  62856. height: math.unit(157000, "feet")
  62857. },
  62858. {
  62859. name: "Macro++++",
  62860. height: math.unit(1570000, "feet")
  62861. },
  62862. ]
  62863. ))
  62864. characterMakers.push(() => makeCharacter(
  62865. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62866. {
  62867. side: {
  62868. height: math.unit(6, "feet"),
  62869. weight: math.unit(115, "lb"),
  62870. name: "Side",
  62871. image: {
  62872. source: "./media/characters/moonbeam/side.svg",
  62873. extra: 839/485,
  62874. bottom: 60/899
  62875. }
  62876. },
  62877. },
  62878. [
  62879. {
  62880. name: "Normal",
  62881. height: math.unit(6, "feet"),
  62882. default: true
  62883. },
  62884. ]
  62885. ))
  62886. characterMakers.push(() => makeCharacter(
  62887. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62888. {
  62889. front: {
  62890. height: math.unit(3500, "miles"),
  62891. weight: math.unit(1659, "petatonnes"),
  62892. name: "Front",
  62893. image: {
  62894. source: "./media/characters/baltica/front.svg",
  62895. extra: 429/428,
  62896. bottom: 41/470
  62897. }
  62898. },
  62899. back: {
  62900. height: math.unit(3500, "miles"),
  62901. weight: math.unit(1659, "petatonnes"),
  62902. name: "Back",
  62903. image: {
  62904. source: "./media/characters/baltica/back.svg",
  62905. extra: 452/451,
  62906. bottom: 8/460
  62907. }
  62908. },
  62909. },
  62910. [
  62911. {
  62912. name: "Gigamacro",
  62913. height: math.unit(3500, "miles"),
  62914. default: true
  62915. },
  62916. ]
  62917. ))
  62918. characterMakers.push(() => makeCharacter(
  62919. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62920. {
  62921. front: {
  62922. height: math.unit(6 + 10/12, "feet"),
  62923. weight: math.unit(200, "lb"),
  62924. name: "Front",
  62925. image: {
  62926. source: "./media/characters/shadow-wolf/front.svg",
  62927. extra: 1931/1760,
  62928. bottom: 88/2019
  62929. }
  62930. },
  62931. },
  62932. [
  62933. {
  62934. name: "Normal",
  62935. height: math.unit(6 + 10/12, "feet"),
  62936. default: true
  62937. },
  62938. ]
  62939. ))
  62940. characterMakers.push(() => makeCharacter(
  62941. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62942. {
  62943. front: {
  62944. height: math.unit(5 + 10/12, "feet"),
  62945. name: "Front",
  62946. image: {
  62947. source: "./media/characters/quincy-praying-mantis/front.svg",
  62948. extra: 1055/891,
  62949. bottom: 92/1147
  62950. }
  62951. },
  62952. soles: {
  62953. height: math.unit(0.85, "feet"),
  62954. name: "Soles",
  62955. image: {
  62956. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62957. extra: 429/324,
  62958. bottom: 89/518
  62959. },
  62960. extraAttributes: {
  62961. "shoeSize": {
  62962. name: "Shoe Size",
  62963. power: 1,
  62964. type: "length",
  62965. base: math.unit(23, "ShoeSizeMensUS"),
  62966. defaultUnit: "ShoeSizeMensUS"
  62967. },
  62968. }
  62969. },
  62970. foot: {
  62971. height: math.unit(0.72, "feet"),
  62972. name: "Foot",
  62973. image: {
  62974. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62975. extra: 349/349,
  62976. bottom: 76/425
  62977. }
  62978. },
  62979. },
  62980. [
  62981. {
  62982. name: "Normal",
  62983. height: math.unit(5 + 10/12, "feet"),
  62984. default: true
  62985. },
  62986. ]
  62987. ))
  62988. characterMakers.push(() => makeCharacter(
  62989. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62990. {
  62991. front: {
  62992. height: math.unit(6, "feet"),
  62993. name: "Front",
  62994. image: {
  62995. source: "./media/characters/christopher-redwood/front.svg",
  62996. extra: 1402/1341,
  62997. bottom: 23/1425
  62998. }
  62999. },
  63000. back: {
  63001. height: math.unit(6, "feet"),
  63002. name: "Back",
  63003. image: {
  63004. source: "./media/characters/christopher-redwood/back.svg",
  63005. extra: 1406/1345,
  63006. bottom: 36/1442
  63007. }
  63008. },
  63009. head: {
  63010. height: math.unit(1.685, "feet"),
  63011. name: "Head",
  63012. image: {
  63013. source: "./media/characters/christopher-redwood/head.svg"
  63014. }
  63015. },
  63016. },
  63017. [
  63018. {
  63019. name: "Normal",
  63020. height: math.unit(6, "feet"),
  63021. default: true
  63022. },
  63023. ]
  63024. ))
  63025. characterMakers.push(() => makeCharacter(
  63026. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63027. {
  63028. front: {
  63029. height: math.unit(1.9, "meters"),
  63030. weight: math.unit(140, "lb"),
  63031. name: "Front",
  63032. image: {
  63033. source: "./media/characters/kara-fox/front.svg",
  63034. extra: 766/711,
  63035. bottom: 41/807
  63036. }
  63037. },
  63038. back: {
  63039. height: math.unit(1.9, "meters"),
  63040. weight: math.unit(140, "lb"),
  63041. name: "Back",
  63042. image: {
  63043. source: "./media/characters/kara-fox/back.svg",
  63044. extra: 766/596,
  63045. bottom: 29/795
  63046. }
  63047. },
  63048. maw: {
  63049. height: math.unit(0.78, "feet"),
  63050. name: "Maw",
  63051. image: {
  63052. source: "./media/characters/kara-fox/maw.svg"
  63053. }
  63054. },
  63055. pawpads: {
  63056. height: math.unit(0.96, "feet"),
  63057. name: "Pawpads",
  63058. image: {
  63059. source: "./media/characters/kara-fox/pawpads.svg"
  63060. }
  63061. },
  63062. },
  63063. [
  63064. {
  63065. name: "Normal",
  63066. height: math.unit(1.9, "meters"),
  63067. default: true
  63068. },
  63069. {
  63070. name: "Giantess",
  63071. height: math.unit(80, "meters")
  63072. },
  63073. ]
  63074. ))
  63075. characterMakers.push(() => makeCharacter(
  63076. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63077. {
  63078. front: {
  63079. height: math.unit(12, "feet"),
  63080. name: "Front",
  63081. image: {
  63082. source: "./media/characters/naomi-espeon/front.svg",
  63083. extra: 892/797,
  63084. bottom: 5/897
  63085. }
  63086. },
  63087. back: {
  63088. height: math.unit(12, "feet"),
  63089. name: "Back",
  63090. image: {
  63091. source: "./media/characters/naomi-espeon/back.svg",
  63092. extra: 890/785,
  63093. bottom: 12/902
  63094. }
  63095. },
  63096. },
  63097. [
  63098. {
  63099. name: "Normal",
  63100. height: math.unit(12, "feet"),
  63101. default: true
  63102. },
  63103. ]
  63104. ))
  63105. characterMakers.push(() => makeCharacter(
  63106. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63107. {
  63108. anthro_front: {
  63109. height: math.unit(8, "feet"),
  63110. weight: math.unit(625, "lb"),
  63111. name: "Front",
  63112. image: {
  63113. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63114. extra: 638/574,
  63115. bottom: 73/711
  63116. },
  63117. form: "anthro",
  63118. default: true
  63119. },
  63120. anthro_back: {
  63121. height: math.unit(8, "feet"),
  63122. weight: math.unit(625, "lb"),
  63123. name: "Back",
  63124. image: {
  63125. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63126. extra: 674/614,
  63127. bottom: 7/681
  63128. },
  63129. form: "anthro",
  63130. },
  63131. taur_side: {
  63132. height: math.unit(16, "feet"),
  63133. weight: math.unit(4.5, "tons"),
  63134. name: "Side",
  63135. image: {
  63136. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63137. extra: 704/646,
  63138. bottom: 132/836
  63139. },
  63140. form: "taur",
  63141. default: true
  63142. },
  63143. },
  63144. [
  63145. {
  63146. name: "Normal",
  63147. height: math.unit(8, "feet"),
  63148. default: true,
  63149. form: "anthro"
  63150. },
  63151. {
  63152. name: "Normal",
  63153. height: math.unit(16, "feet"),
  63154. default: true,
  63155. form: "taur"
  63156. },
  63157. ],
  63158. {
  63159. "anthro": {
  63160. name: "Anthro",
  63161. default: true
  63162. },
  63163. "taur": {
  63164. name: "Taur",
  63165. },
  63166. }
  63167. ))
  63168. characterMakers.push(() => makeCharacter(
  63169. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63170. {
  63171. front: {
  63172. height: math.unit(190, "cm"),
  63173. weight: math.unit(110, "kg"),
  63174. name: "Front",
  63175. image: {
  63176. source: "./media/characters/amelie/front.svg",
  63177. extra: 530/442,
  63178. bottom: 35/565
  63179. }
  63180. },
  63181. },
  63182. [
  63183. {
  63184. name: "Normal",
  63185. height: math.unit(190, "cm"),
  63186. default: true
  63187. },
  63188. ]
  63189. ))
  63190. characterMakers.push(() => makeCharacter(
  63191. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63192. {
  63193. front: {
  63194. height: math.unit(21, "feet"),
  63195. weight: math.unit(30000, "lb"),
  63196. name: "Front",
  63197. image: {
  63198. source: "./media/characters/valence/front.svg",
  63199. extra: 1430/1306,
  63200. bottom: 51/1481
  63201. }
  63202. },
  63203. },
  63204. [
  63205. {
  63206. name: "Normal",
  63207. height: math.unit(21, "feet"),
  63208. default: true
  63209. },
  63210. ]
  63211. ))
  63212. characterMakers.push(() => makeCharacter(
  63213. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63214. {
  63215. front: {
  63216. height: math.unit(5 + 9/12, "feet"),
  63217. weight: math.unit(170, "lb"),
  63218. name: "Front",
  63219. image: {
  63220. source: "./media/characters/aurora-adkins/front.svg",
  63221. extra: 1141/1089,
  63222. bottom: 41/1182
  63223. }
  63224. },
  63225. },
  63226. [
  63227. {
  63228. name: "Tiny",
  63229. height: math.unit(7, "mm")
  63230. },
  63231. {
  63232. name: "Small",
  63233. height: math.unit(3.4, "inches")
  63234. },
  63235. {
  63236. name: "Normal",
  63237. height: math.unit(5 + 9/12, "feet"),
  63238. default: true
  63239. },
  63240. {
  63241. name: "Big",
  63242. height: math.unit(31, "feet")
  63243. },
  63244. {
  63245. name: "Giant",
  63246. height: math.unit(300, "feet")
  63247. },
  63248. ]
  63249. ))
  63250. characterMakers.push(() => makeCharacter(
  63251. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63252. {
  63253. front: {
  63254. height: math.unit(5 + 6/12, "feet"),
  63255. weight: math.unit(210, "lb"),
  63256. name: "Front",
  63257. image: {
  63258. source: "./media/characters/cyber/front.svg",
  63259. extra: 1968/1798,
  63260. bottom: 10/1978
  63261. },
  63262. extraAttributes: {
  63263. "shoeSize": {
  63264. name: "Shoe Size",
  63265. power: 1,
  63266. type: "length",
  63267. base: math.unit(30, "ShoeSizeMensUS")
  63268. },
  63269. }
  63270. },
  63271. },
  63272. [
  63273. {
  63274. name: "Normal",
  63275. height: math.unit(5 + 6/12, "feet"),
  63276. default: true
  63277. },
  63278. ]
  63279. ))
  63280. characterMakers.push(() => makeCharacter(
  63281. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63282. {
  63283. front: {
  63284. height: math.unit(6 + 6/12, "feet"),
  63285. weight: math.unit(140, "lb"),
  63286. name: "Front",
  63287. image: {
  63288. source: "./media/characters/sapphire-wairimea/front.svg",
  63289. extra: 475/458,
  63290. bottom: 14/489
  63291. }
  63292. },
  63293. },
  63294. [
  63295. {
  63296. name: "Normal",
  63297. height: math.unit(6 + 6/12, "feet")
  63298. },
  63299. {
  63300. name: "Macro",
  63301. height: math.unit(132, "feet"),
  63302. default: true
  63303. },
  63304. ]
  63305. ))
  63306. characterMakers.push(() => makeCharacter(
  63307. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63308. {
  63309. front: {
  63310. height: math.unit(1.6, "meters"),
  63311. weight: math.unit(100, "lb"),
  63312. name: "Front",
  63313. image: {
  63314. source: "./media/characters/cirkazi/front.svg",
  63315. extra: 489/477,
  63316. bottom: 0/489
  63317. }
  63318. },
  63319. },
  63320. [
  63321. {
  63322. name: "Normal",
  63323. height: math.unit(1.6, "meters")
  63324. },
  63325. {
  63326. name: "Macro",
  63327. height: math.unit(800, "feet"),
  63328. default: true
  63329. },
  63330. ]
  63331. ))
  63332. characterMakers.push(() => makeCharacter(
  63333. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63334. {
  63335. front: {
  63336. height: math.unit(5 + 10/12, "feet"),
  63337. weight: math.unit(145, "lb"),
  63338. name: "Front",
  63339. image: {
  63340. source: "./media/characters/corrin-cavelli/front.svg",
  63341. extra: 483/464,
  63342. bottom: 6/489
  63343. }
  63344. },
  63345. },
  63346. [
  63347. {
  63348. name: "Human",
  63349. height: math.unit(5 + 10/12, "feet")
  63350. },
  63351. {
  63352. name: "Giant",
  63353. height: math.unit(210, "feet"),
  63354. default: true
  63355. },
  63356. ]
  63357. ))
  63358. characterMakers.push(() => makeCharacter(
  63359. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63360. {
  63361. back: {
  63362. height: math.unit(5 + 6/12, "feet"),
  63363. weight: math.unit(115, "lb"),
  63364. name: "Back",
  63365. image: {
  63366. source: "./media/characters/lori-lopez/back.svg",
  63367. extra: 483/474,
  63368. bottom: 6/489
  63369. }
  63370. },
  63371. },
  63372. [
  63373. {
  63374. name: "Human",
  63375. height: math.unit(5 + 6/12, "feet")
  63376. },
  63377. {
  63378. name: "Macro",
  63379. height: math.unit(198, "feet"),
  63380. default: true
  63381. },
  63382. ]
  63383. ))
  63384. characterMakers.push(() => makeCharacter(
  63385. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63386. {
  63387. front: {
  63388. height: math.unit(6, "feet"),
  63389. weight: math.unit(220, "lb"),
  63390. name: "Front",
  63391. image: {
  63392. source: "./media/characters/sylvia-beauregard/front.svg",
  63393. extra: 483/479,
  63394. bottom: 6/489
  63395. }
  63396. },
  63397. },
  63398. [
  63399. {
  63400. name: "Macro",
  63401. height: math.unit(2071, "feet"),
  63402. default: true
  63403. },
  63404. ]
  63405. ))
  63406. characterMakers.push(() => makeCharacter(
  63407. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63408. {
  63409. back: {
  63410. height: math.unit(5 + 6/12, "feet"),
  63411. weight: math.unit(160, "lb"),
  63412. name: "Back",
  63413. image: {
  63414. source: "./media/characters/akiko-takahashi/back.svg",
  63415. extra: 459/454,
  63416. bottom: 27/486
  63417. }
  63418. },
  63419. },
  63420. [
  63421. {
  63422. name: "Human",
  63423. height: math.unit(5 + 6/12, "feet")
  63424. },
  63425. {
  63426. name: "Macro",
  63427. height: math.unit(198, "feet"),
  63428. default: true
  63429. },
  63430. {
  63431. name: "Megamacro",
  63432. height: math.unit(7128, "feet")
  63433. },
  63434. ]
  63435. ))
  63436. characterMakers.push(() => makeCharacter(
  63437. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63438. {
  63439. front: {
  63440. height: math.unit(6, "feet"),
  63441. weight: math.unit(140, "lb"),
  63442. name: "Front",
  63443. image: {
  63444. source: "./media/characters/velvet-garza/front.svg",
  63445. extra: 480/462,
  63446. bottom: 7/487
  63447. }
  63448. },
  63449. },
  63450. [
  63451. {
  63452. name: "Macro",
  63453. height: math.unit(37, "feet"),
  63454. default: true
  63455. },
  63456. ]
  63457. ))
  63458. characterMakers.push(() => makeCharacter(
  63459. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63460. {
  63461. front: {
  63462. height: math.unit(7 + 6/12, "feet"),
  63463. weight: math.unit(400, "lb"),
  63464. name: "Front",
  63465. image: {
  63466. source: "./media/characters/gaia/front.svg",
  63467. extra: 474/463,
  63468. bottom: 13/487
  63469. }
  63470. },
  63471. },
  63472. [
  63473. {
  63474. name: "MiniMacro",
  63475. height: math.unit(7 + 6/12, "feet")
  63476. },
  63477. {
  63478. name: "GigaMacro",
  63479. height: math.unit(14500, "feet"),
  63480. default: true
  63481. },
  63482. ]
  63483. ))
  63484. characterMakers.push(() => makeCharacter(
  63485. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63486. {
  63487. front: {
  63488. height: math.unit(6, "feet"),
  63489. weight: math.unit(150, "lb"),
  63490. name: "Front",
  63491. image: {
  63492. source: "./media/characters/tim/front.svg",
  63493. extra: 1878/1743,
  63494. bottom: 9/1887
  63495. }
  63496. },
  63497. frontDressed: {
  63498. height: math.unit(6, "feet"),
  63499. weight: math.unit(150, "lb"),
  63500. name: "Front (Dressed)",
  63501. image: {
  63502. source: "./media/characters/tim/front-dressed.svg",
  63503. extra: 1765/1485,
  63504. bottom: 48/1813
  63505. }
  63506. },
  63507. backDressed: {
  63508. height: math.unit(6, "feet"),
  63509. weight: math.unit(150, "lb"),
  63510. name: "Back (Dressed)",
  63511. image: {
  63512. source: "./media/characters/tim/back-dressed.svg",
  63513. extra: 1750/1465,
  63514. bottom: 25/1775
  63515. }
  63516. },
  63517. dick: {
  63518. height: math.unit(1.5, "feet"),
  63519. weight: math.unit(6, "lb"),
  63520. name: "Dick",
  63521. image: {
  63522. source: "./media/characters/tim/dick.svg"
  63523. }
  63524. },
  63525. hand: {
  63526. height: math.unit(0.522, "feet"),
  63527. name: "Hand",
  63528. image: {
  63529. source: "./media/characters/tim/hand.svg"
  63530. }
  63531. },
  63532. palm: {
  63533. height: math.unit(0.48, "feet"),
  63534. name: "Palm",
  63535. image: {
  63536. source: "./media/characters/tim/palm.svg"
  63537. }
  63538. },
  63539. paw: {
  63540. height: math.unit(0.9, "feet"),
  63541. name: "Paw",
  63542. image: {
  63543. source: "./media/characters/tim/paw.svg"
  63544. }
  63545. },
  63546. sole: {
  63547. height: math.unit(0.88, "feet"),
  63548. name: "Sole",
  63549. image: {
  63550. source: "./media/characters/tim/sole.svg"
  63551. }
  63552. },
  63553. },
  63554. [
  63555. {
  63556. name: "Macro",
  63557. height: math.unit(1000, "feet")
  63558. },
  63559. {
  63560. name: "Megamacro",
  63561. height: math.unit(10000, "feet"),
  63562. default: true
  63563. },
  63564. {
  63565. name: "Megamacro+",
  63566. height: math.unit(50000, "feet")
  63567. },
  63568. {
  63569. name: "Gigamacro",
  63570. height: math.unit(150000, "km")
  63571. },
  63572. ]
  63573. ))
  63574. characterMakers.push(() => makeCharacter(
  63575. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63576. {
  63577. front: {
  63578. height: math.unit(5 + 8/12, "feet"),
  63579. weight: math.unit(170, "lb"),
  63580. name: "Front",
  63581. image: {
  63582. source: "./media/characters/abel-delreoux/front.svg",
  63583. extra: 1615/1500,
  63584. bottom: 82/1697
  63585. }
  63586. },
  63587. back: {
  63588. height: math.unit(5 + 8/12, "feet"),
  63589. weight: math.unit(170, "lb"),
  63590. name: "Back",
  63591. image: {
  63592. source: "./media/characters/abel-delreoux/back.svg",
  63593. extra: 1644/1534,
  63594. bottom: 24/1668
  63595. }
  63596. },
  63597. casual: {
  63598. height: math.unit(5 + 8/12, "feet"),
  63599. weight: math.unit(170, "lb"),
  63600. name: "Casual",
  63601. image: {
  63602. source: "./media/characters/abel-delreoux/casual.svg",
  63603. extra: 1716/1598,
  63604. bottom: 29/1745
  63605. }
  63606. },
  63607. sleepy: {
  63608. height: math.unit(5 + 8/12, "feet"),
  63609. weight: math.unit(170, "lb"),
  63610. name: "Sleepy",
  63611. image: {
  63612. source: "./media/characters/abel-delreoux/sleepy.svg",
  63613. extra: 1649/1573,
  63614. bottom: 22/1671
  63615. }
  63616. },
  63617. fem: {
  63618. height: math.unit(5 + 8/12, "feet"),
  63619. weight: math.unit(170, "lb"),
  63620. name: "Fem",
  63621. image: {
  63622. source: "./media/characters/abel-delreoux/fem.svg",
  63623. extra: 1680/1564,
  63624. bottom: 17/1697
  63625. }
  63626. },
  63627. hand: {
  63628. height: math.unit(0.78, "feet"),
  63629. name: "Hand",
  63630. image: {
  63631. source: "./media/characters/abel-delreoux/hand.svg"
  63632. }
  63633. },
  63634. paw: {
  63635. height: math.unit(0.78, "feet"),
  63636. name: "Paw",
  63637. image: {
  63638. source: "./media/characters/abel-delreoux/paw.svg"
  63639. }
  63640. },
  63641. },
  63642. [
  63643. {
  63644. name: "Normal",
  63645. height: math.unit(5 + 8/12, "feet"),
  63646. default: true
  63647. },
  63648. ]
  63649. ))
  63650. characterMakers.push(() => makeCharacter(
  63651. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63652. {
  63653. front: {
  63654. height: math.unit(6, "feet"),
  63655. weight: math.unit(159, "lb"),
  63656. name: "Front",
  63657. image: {
  63658. source: "./media/characters/meus/front.svg",
  63659. extra: 938/843,
  63660. bottom: 37/975
  63661. }
  63662. },
  63663. back: {
  63664. height: math.unit(6, "feet"),
  63665. weight: math.unit(159, "lb"),
  63666. name: "Back",
  63667. image: {
  63668. source: "./media/characters/meus/back.svg",
  63669. extra: 967/873,
  63670. bottom: 12/979
  63671. }
  63672. },
  63673. },
  63674. [
  63675. {
  63676. name: "Micro",
  63677. height: math.unit(2, "inches")
  63678. },
  63679. {
  63680. name: "Mini",
  63681. height: math.unit(6, "inches")
  63682. },
  63683. {
  63684. name: "Normal",
  63685. height: math.unit(6, "feet"),
  63686. default: true
  63687. },
  63688. {
  63689. name: "Macro",
  63690. height: math.unit(84, "feet")
  63691. },
  63692. ]
  63693. ))
  63694. characterMakers.push(() => makeCharacter(
  63695. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63696. {
  63697. front: {
  63698. height: math.unit(60, "cm"),
  63699. weight: math.unit(18, "kg"),
  63700. name: "Front",
  63701. image: {
  63702. source: "./media/characters/yamato/front.svg",
  63703. extra: 733/688,
  63704. bottom: 29/762
  63705. }
  63706. },
  63707. },
  63708. [
  63709. {
  63710. name: "Micro",
  63711. height: math.unit(6, "cm")
  63712. },
  63713. {
  63714. name: "Normal",
  63715. height: math.unit(60, "cm"),
  63716. default: true
  63717. },
  63718. ]
  63719. ))
  63720. characterMakers.push(() => makeCharacter(
  63721. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63722. {
  63723. front: {
  63724. height: math.unit(9, "feet"),
  63725. weight: math.unit(518, "lb"),
  63726. name: "Front",
  63727. image: {
  63728. source: "./media/characters/barus/front.svg",
  63729. extra: 1877/1795,
  63730. bottom: 55/1932
  63731. }
  63732. },
  63733. },
  63734. [
  63735. {
  63736. name: "Base Height",
  63737. height: math.unit(9, "feet"),
  63738. default: true
  63739. },
  63740. {
  63741. name: "Large",
  63742. height: math.unit(18, "feet")
  63743. },
  63744. {
  63745. name: "Giant",
  63746. height: math.unit(100, "feet")
  63747. },
  63748. {
  63749. name: "Huge",
  63750. height: math.unit(500, "feet")
  63751. },
  63752. {
  63753. name: "Enormous",
  63754. height: math.unit(300, "meters")
  63755. },
  63756. {
  63757. name: "Deity Among Man",
  63758. height: math.unit(3000, "meters")
  63759. },
  63760. ]
  63761. ))
  63762. characterMakers.push(() => makeCharacter(
  63763. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63764. {
  63765. front: {
  63766. height: math.unit(1.7, "meters"),
  63767. name: "Front",
  63768. image: {
  63769. source: "./media/characters/yari/front.svg",
  63770. extra: 1210/1125,
  63771. bottom: 283/1493
  63772. }
  63773. },
  63774. back: {
  63775. height: math.unit(1.7, "meters"),
  63776. name: "Back",
  63777. image: {
  63778. source: "./media/characters/yari/back.svg",
  63779. extra: 1240/1195,
  63780. bottom: 180/1420
  63781. }
  63782. },
  63783. head: {
  63784. height: math.unit(1.26, "feet"),
  63785. name: "Head",
  63786. image: {
  63787. source: "./media/characters/yari/head.svg"
  63788. }
  63789. },
  63790. },
  63791. [
  63792. {
  63793. name: "Nano",
  63794. height: math.unit(0.5, "mm")
  63795. },
  63796. {
  63797. name: "Micro",
  63798. height: math.unit(3, "inches")
  63799. },
  63800. {
  63801. name: "Short",
  63802. height: math.unit(1.5, "meters")
  63803. },
  63804. {
  63805. name: "Norm",
  63806. height: math.unit(1.7, "meters"),
  63807. default: true
  63808. },
  63809. ]
  63810. ))
  63811. characterMakers.push(() => makeCharacter(
  63812. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63813. {
  63814. front: {
  63815. height: math.unit(5 + 2/12, "feet"),
  63816. weight: math.unit(110, "lb"),
  63817. name: "Front",
  63818. image: {
  63819. source: "./media/characters/salem/front.svg",
  63820. extra: 1895/1800,
  63821. bottom: 23/1918
  63822. }
  63823. },
  63824. back: {
  63825. height: math.unit(5 + 2/12, "feet"),
  63826. weight: math.unit(110, "lb"),
  63827. name: "Back",
  63828. image: {
  63829. source: "./media/characters/salem/back.svg",
  63830. extra: 1875/1802,
  63831. bottom: 20/1895
  63832. }
  63833. },
  63834. head: {
  63835. height: math.unit(1, "feet"),
  63836. name: "Head",
  63837. image: {
  63838. source: "./media/characters/salem/head.svg"
  63839. }
  63840. },
  63841. paw: {
  63842. height: math.unit(0.59, "feet"),
  63843. name: "Paw",
  63844. image: {
  63845. source: "./media/characters/salem/paw.svg"
  63846. }
  63847. },
  63848. beans: {
  63849. height: math.unit(0.66, "feet"),
  63850. name: "Beans",
  63851. image: {
  63852. source: "./media/characters/salem/beans.svg"
  63853. }
  63854. },
  63855. eye: {
  63856. height: math.unit(0.224, "feet"),
  63857. name: "Eye",
  63858. image: {
  63859. source: "./media/characters/salem/eye.svg"
  63860. }
  63861. },
  63862. semiferal: {
  63863. height: math.unit(2.3, "feet"),
  63864. name: "Semiferal",
  63865. image: {
  63866. source: "./media/characters/salem/semiferal.svg",
  63867. extra: 914/839,
  63868. bottom: 32/946
  63869. }
  63870. },
  63871. },
  63872. [
  63873. {
  63874. name: "Micro",
  63875. height: math.unit(4, "inches")
  63876. },
  63877. {
  63878. name: "Normal",
  63879. height: math.unit(5 + 2/12, "feet"),
  63880. default: true
  63881. },
  63882. {
  63883. name: "Macro",
  63884. height: math.unit(108, "feet")
  63885. },
  63886. {
  63887. name: "Macro+",
  63888. height: math.unit(1500, "feet")
  63889. },
  63890. ]
  63891. ))
  63892. characterMakers.push(() => makeCharacter(
  63893. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63894. {
  63895. front: {
  63896. height: math.unit(7 + 6/12, "feet"),
  63897. weight: math.unit(600, "kg"),
  63898. preyCapacity: math.unit(10, "people"),
  63899. name: "Front",
  63900. image: {
  63901. source: "./media/characters/kii/front.svg",
  63902. extra: 3296/3087,
  63903. bottom: 130/3426
  63904. }
  63905. },
  63906. },
  63907. [
  63908. {
  63909. name: "Normal",
  63910. height: math.unit(7 + 6/12, "feet"),
  63911. default: true
  63912. },
  63913. ]
  63914. ))
  63915. characterMakers.push(() => makeCharacter(
  63916. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63917. {
  63918. front: {
  63919. height: math.unit(2, "meters"),
  63920. weight: math.unit(200, "lb"),
  63921. name: "Front",
  63922. image: {
  63923. source: "./media/characters/taffy/front.svg",
  63924. extra: 1666/1618,
  63925. bottom: 157/1823
  63926. }
  63927. },
  63928. back: {
  63929. height: math.unit(2, "meters"),
  63930. weight: math.unit(200, "lb"),
  63931. name: "Back",
  63932. image: {
  63933. source: "./media/characters/taffy/back.svg",
  63934. extra: 1635/1583,
  63935. bottom: 153/1788
  63936. }
  63937. },
  63938. },
  63939. [
  63940. {
  63941. name: "Normal",
  63942. height: math.unit(2, "meters"),
  63943. default: true
  63944. },
  63945. ]
  63946. ))
  63947. characterMakers.push(() => makeCharacter(
  63948. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63949. {
  63950. front: {
  63951. height: math.unit(1.55, "meters"),
  63952. weight: math.unit(60, "kg"),
  63953. name: "Front",
  63954. image: {
  63955. source: "./media/characters/barley/front.svg",
  63956. extra: 1520/1340,
  63957. bottom: 47/1567
  63958. }
  63959. },
  63960. back: {
  63961. height: math.unit(1.55, "meters"),
  63962. weight: math.unit(60, "kg"),
  63963. name: "Back",
  63964. image: {
  63965. source: "./media/characters/barley/back.svg",
  63966. extra: 1543/1341,
  63967. bottom: 12/1555
  63968. }
  63969. },
  63970. feet: {
  63971. height: math.unit(2.18, "feet"),
  63972. name: "Feet",
  63973. image: {
  63974. source: "./media/characters/barley/feet.svg"
  63975. }
  63976. },
  63977. },
  63978. [
  63979. {
  63980. name: "Normal",
  63981. height: math.unit(1.55, "meters"),
  63982. default: true
  63983. },
  63984. ]
  63985. ))
  63986. characterMakers.push(() => makeCharacter(
  63987. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63988. {
  63989. dressed: {
  63990. height: math.unit(6, "feet"),
  63991. name: "Dressed",
  63992. image: {
  63993. source: "./media/characters/lydia-lopez/dressed.svg",
  63994. extra: 1319/1277,
  63995. bottom: 90/1409
  63996. }
  63997. },
  63998. nude: {
  63999. height: math.unit(6, "feet"),
  64000. name: "Nude",
  64001. image: {
  64002. source: "./media/characters/lydia-lopez/nude.svg",
  64003. extra: 1319/1277,
  64004. bottom: 90/1409
  64005. }
  64006. },
  64007. },
  64008. [
  64009. {
  64010. name: "Normal",
  64011. height: math.unit(6, "feet"),
  64012. default: true
  64013. },
  64014. {
  64015. name: "Maximum",
  64016. height: math.unit(2101, "feet")
  64017. },
  64018. ]
  64019. ))
  64020. characterMakers.push(() => makeCharacter(
  64021. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64022. {
  64023. front: {
  64024. height: math.unit(5 + 4/12, "feet"),
  64025. weight: math.unit(250, "lb"),
  64026. volume: math.unit(20, "gallons"),
  64027. name: "Front",
  64028. image: {
  64029. source: "./media/characters/kira-slime/front.svg",
  64030. extra: 442/403,
  64031. bottom: 18/460
  64032. }
  64033. },
  64034. frontNsfw: {
  64035. height: math.unit(5 + 4/12, "feet"),
  64036. weight: math.unit(250, "lb"),
  64037. volume: math.unit(20, "gallons"),
  64038. name: "Front (NSFW)",
  64039. image: {
  64040. source: "./media/characters/kira-slime/front-nsfw.svg",
  64041. extra: 442/403,
  64042. bottom: 18/460
  64043. }
  64044. },
  64045. },
  64046. [
  64047. {
  64048. name: "Droplet",
  64049. height: math.unit(0.0464452, "feet")
  64050. },
  64051. {
  64052. name: "Pint",
  64053. height: math.unit(0.9824, "feet")
  64054. },
  64055. {
  64056. name: "Bucket",
  64057. height: math.unit(2.83, "feet")
  64058. },
  64059. {
  64060. name: "Normal",
  64061. height: math.unit(5 + 4/12, "feet"),
  64062. default: true
  64063. },
  64064. {
  64065. name: "Tub",
  64066. height: math.unit(8.46614, "feet")
  64067. },
  64068. {
  64069. name: "Pool",
  64070. height: math.unit(31.1895, "feet")
  64071. },
  64072. {
  64073. name: "Pond",
  64074. height: math.unit(170.349, "feet")
  64075. },
  64076. {
  64077. name: "Lake",
  64078. height: math.unit(289334, "feet")
  64079. },
  64080. {
  64081. name: "Ocean",
  64082. height: math.unit(1.11940e+7, "feet")
  64083. },
  64084. ]
  64085. ))
  64086. characterMakers.push(() => makeCharacter(
  64087. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64088. {
  64089. front: {
  64090. height: math.unit(5 + 6/12, "feet"),
  64091. weight: math.unit(120, "lb"),
  64092. name: "Front",
  64093. image: {
  64094. source: "./media/characters/holiday/front.svg",
  64095. extra: 456/403,
  64096. bottom: 4/460
  64097. }
  64098. },
  64099. back: {
  64100. height: math.unit(5 + 6/12, "feet"),
  64101. weight: math.unit(120, "lb"),
  64102. name: "Back",
  64103. image: {
  64104. source: "./media/characters/holiday/back.svg",
  64105. extra: 450/404,
  64106. bottom: 12/462
  64107. }
  64108. },
  64109. head: {
  64110. height: math.unit(2.3, "feet"),
  64111. name: "Head",
  64112. image: {
  64113. source: "./media/characters/holiday/head.svg"
  64114. }
  64115. },
  64116. },
  64117. [
  64118. {
  64119. name: "Normal",
  64120. height: math.unit(5 + 6/12, "feet"),
  64121. default: true
  64122. },
  64123. {
  64124. name: "Macro",
  64125. height: math.unit(6574.25, "feet")
  64126. },
  64127. ]
  64128. ))
  64129. characterMakers.push(() => makeCharacter(
  64130. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64131. {
  64132. front: {
  64133. height: math.unit(6 + 2/12, "feet"),
  64134. weight: math.unit(200, "lb"),
  64135. name: "Front",
  64136. image: {
  64137. source: "./media/characters/camina/front.svg",
  64138. extra: 1048/985,
  64139. bottom: 30/1078
  64140. }
  64141. },
  64142. },
  64143. [
  64144. {
  64145. name: "Normal",
  64146. height: math.unit(6 + 2/12, "feet"),
  64147. default: true
  64148. },
  64149. ]
  64150. ))
  64151. characterMakers.push(() => makeCharacter(
  64152. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64153. {
  64154. front: {
  64155. height: math.unit(30, "cm"),
  64156. weight: math.unit(420, "grams"),
  64157. name: "Front",
  64158. image: {
  64159. source: "./media/characters/smuck/front.svg",
  64160. extra: 379/345,
  64161. bottom: 36/415
  64162. }
  64163. },
  64164. },
  64165. [
  64166. {
  64167. name: "Smuck-Sized",
  64168. height: math.unit(30, "cm"),
  64169. default: true
  64170. },
  64171. ]
  64172. ))
  64173. characterMakers.push(() => makeCharacter(
  64174. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64175. {
  64176. frontSfw: {
  64177. height: math.unit(10, "feet"),
  64178. weight: math.unit(1000, "kg"),
  64179. preyCapacity: math.unit(2, "people"),
  64180. name: "Front (SFW)",
  64181. image: {
  64182. source: "./media/characters/bylur/front-sfw.svg",
  64183. extra: 419/343,
  64184. bottom: 3/422
  64185. },
  64186. default: true
  64187. },
  64188. frontSheath: {
  64189. height: math.unit(10, "feet"),
  64190. weight: math.unit(1000, "kg"),
  64191. preyCapacity: math.unit(2, "people"),
  64192. name: "Front (Sheath)",
  64193. image: {
  64194. source: "./media/characters/bylur/front-sheath.svg",
  64195. extra: 419/343,
  64196. bottom: 3/422
  64197. }
  64198. },
  64199. frontErect: {
  64200. height: math.unit(10, "feet"),
  64201. weight: math.unit(1000, "kg"),
  64202. preyCapacity: math.unit(2, "people"),
  64203. name: "Front (Erect)",
  64204. image: {
  64205. source: "./media/characters/bylur/front-erect.svg",
  64206. extra: 419/343,
  64207. bottom: 3/422
  64208. }
  64209. },
  64210. back: {
  64211. height: math.unit(10, "feet"),
  64212. weight: math.unit(1000, "kg"),
  64213. preyCapacity: math.unit(2, "people"),
  64214. name: "Back",
  64215. image: {
  64216. source: "./media/characters/bylur/back.svg",
  64217. extra: 392/315,
  64218. bottom: 3/395
  64219. }
  64220. },
  64221. maw: {
  64222. height: math.unit(3.65, "feet"),
  64223. name: "Maw",
  64224. image: {
  64225. source: "./media/characters/bylur/maw.svg"
  64226. }
  64227. },
  64228. },
  64229. [
  64230. {
  64231. name: "Slightly Human Sized",
  64232. height: math.unit(10, "feet")
  64233. },
  64234. {
  64235. name: "Normal",
  64236. height: math.unit(35, "feet"),
  64237. default: true
  64238. },
  64239. {
  64240. name: "Macro",
  64241. height: math.unit(130, "feet")
  64242. },
  64243. ]
  64244. ))
  64245. characterMakers.push(() => makeCharacter(
  64246. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64247. {
  64248. frontNsfw: {
  64249. height: math.unit(6, "feet"),
  64250. weight: math.unit(250, "lb"),
  64251. preyCapacity: math.unit(0.05, "people"),
  64252. name: "Front (NSFW)",
  64253. image: {
  64254. source: "./media/characters/oarven/front-nsfw.svg",
  64255. extra: 1795/1783,
  64256. bottom: 142/1937
  64257. }
  64258. },
  64259. frontSfw: {
  64260. height: math.unit(6, "feet"),
  64261. weight: math.unit(250, "lb"),
  64262. preyCapacity: math.unit(0.05, "people"),
  64263. name: "Front (SFW)",
  64264. image: {
  64265. source: "./media/characters/oarven/front-sfw.svg",
  64266. extra: 1795/1783,
  64267. bottom: 142/1937
  64268. }
  64269. },
  64270. },
  64271. [
  64272. {
  64273. name: "Megamacro",
  64274. height: math.unit(5, "miles"),
  64275. default: true
  64276. },
  64277. {
  64278. name: "Maximum Height",
  64279. height: math.unit(5, "AUs")
  64280. },
  64281. ]
  64282. ))
  64283. characterMakers.push(() => makeCharacter(
  64284. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64285. {
  64286. side: {
  64287. height: math.unit(1065, "meters"),
  64288. weight: math.unit(1e12, "kg"),
  64289. volume: math.unit(3265000000, "m^3"),
  64290. name: "Side",
  64291. image: {
  64292. source: "./media/characters/solidarity/side.svg"
  64293. }
  64294. },
  64295. front: {
  64296. height: math.unit(1065, "meters"),
  64297. weight: math.unit(3265000000000, "kg"),
  64298. volume: math.unit(3265000000, "m^3"),
  64299. name: "Front",
  64300. image: {
  64301. source: "./media/characters/solidarity/front.svg"
  64302. }
  64303. },
  64304. top: {
  64305. height: math.unit(5823, "meters"),
  64306. weight: math.unit(3265000000000, "kg"),
  64307. volume: math.unit(3265000000, "m^3"),
  64308. name: "Top",
  64309. image: {
  64310. source: "./media/characters/solidarity/top.svg"
  64311. }
  64312. },
  64313. },
  64314. [
  64315. {
  64316. name: "Normal",
  64317. height: math.unit(1065, "meters"),
  64318. default: true
  64319. },
  64320. ]
  64321. ))
  64322. characterMakers.push(() => makeCharacter(
  64323. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64324. {
  64325. side: {
  64326. height: math.unit(18 + 4/12, "feet"),
  64327. weight: math.unit(13000, "kg"),
  64328. name: "Side",
  64329. image: {
  64330. source: "./media/characters/ani'szi/side.svg",
  64331. extra: 468/459,
  64332. bottom: 60/528
  64333. }
  64334. },
  64335. head: {
  64336. height: math.unit(4.8, "feet"),
  64337. name: "Head",
  64338. image: {
  64339. source: "./media/characters/ani'szi/head.svg"
  64340. }
  64341. },
  64342. jaws: {
  64343. height: math.unit(2.25, "feet"),
  64344. name: "Jaws",
  64345. image: {
  64346. source: "./media/characters/ani'szi/jaws.svg"
  64347. }
  64348. },
  64349. bust: {
  64350. height: math.unit(8.9, "feet"),
  64351. name: "Bust",
  64352. image: {
  64353. source: "./media/characters/ani'szi/bust.svg"
  64354. }
  64355. },
  64356. back: {
  64357. height: math.unit(13.53, "feet"),
  64358. name: "Back",
  64359. image: {
  64360. source: "./media/characters/ani'szi/back.svg"
  64361. }
  64362. },
  64363. eye: {
  64364. height: math.unit(0.44, "feet"),
  64365. name: "Eye",
  64366. image: {
  64367. source: "./media/characters/ani'szi/eye.svg"
  64368. }
  64369. },
  64370. },
  64371. [
  64372. {
  64373. name: "Normal",
  64374. height: math.unit(18 + 4/12, "feet"),
  64375. default: true
  64376. },
  64377. ]
  64378. ))
  64379. characterMakers.push(() => makeCharacter(
  64380. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64381. {
  64382. front: {
  64383. height: math.unit(7 + 6/12, "feet"),
  64384. weight: math.unit(300, "lb"),
  64385. name: "Front",
  64386. image: {
  64387. source: "./media/characters/rain/front.svg",
  64388. extra: 2955/2698,
  64389. bottom: 235/3190
  64390. }
  64391. },
  64392. dressed: {
  64393. height: math.unit(7 + 6/12, "feet"),
  64394. weight: math.unit(300, "lb"),
  64395. name: "Dressed",
  64396. image: {
  64397. source: "./media/characters/rain/dressed.svg",
  64398. extra: 2783/2572,
  64399. bottom: 430/3213
  64400. }
  64401. },
  64402. },
  64403. [
  64404. {
  64405. name: "Normal",
  64406. height: math.unit(7 + 6/12, "feet"),
  64407. default: true
  64408. },
  64409. {
  64410. name: "Macro",
  64411. height: math.unit(200, "feet")
  64412. },
  64413. {
  64414. name: "Macro+",
  64415. height: math.unit(500, "feet")
  64416. },
  64417. {
  64418. name: "Megamacro",
  64419. height: math.unit(5, "miles")
  64420. },
  64421. ]
  64422. ))
  64423. characterMakers.push(() => makeCharacter(
  64424. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64425. {
  64426. taur_side: {
  64427. height: math.unit(3, "meters"),
  64428. name: "Side",
  64429. image: {
  64430. source: "./media/characters/anise/taur-side.svg",
  64431. extra: 1833/926,
  64432. bottom: 134/1967
  64433. },
  64434. form: "taur",
  64435. default: true
  64436. },
  64437. feral_side: {
  64438. height: math.unit(3, "meters"),
  64439. name: "Side",
  64440. image: {
  64441. source: "./media/characters/anise/feral-side.svg",
  64442. extra: 681/349,
  64443. bottom: 26/707
  64444. },
  64445. form: "feral"
  64446. },
  64447. },
  64448. [
  64449. {
  64450. name: "Normal",
  64451. height: math.unit(3, "meters"),
  64452. default: true,
  64453. allForms: true
  64454. },
  64455. ],
  64456. {
  64457. "taur": {
  64458. name: "Taur",
  64459. default: true
  64460. },
  64461. "feral": {
  64462. name: "Feral",
  64463. },
  64464. }
  64465. ))
  64466. characterMakers.push(() => makeCharacter(
  64467. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64468. {
  64469. front: {
  64470. height: math.unit(1.9, "meters"),
  64471. weight: math.unit(75, "kg"),
  64472. name: "Front",
  64473. image: {
  64474. source: "./media/characters/sarina/front.svg",
  64475. extra: 1275/1200,
  64476. bottom: 49/1324
  64477. }
  64478. },
  64479. back: {
  64480. height: math.unit(1.9, "meters"),
  64481. weight: math.unit(75, "kg"),
  64482. name: "Back",
  64483. image: {
  64484. source: "./media/characters/sarina/back.svg",
  64485. extra: 1279/1209,
  64486. bottom: 14/1293
  64487. }
  64488. },
  64489. dressed: {
  64490. height: math.unit(1.9, "meters"),
  64491. weight: math.unit(75, "kg"),
  64492. name: "Dressed",
  64493. image: {
  64494. source: "./media/characters/sarina/dressed.svg",
  64495. extra: 1256/1187,
  64496. bottom: 56/1312
  64497. }
  64498. },
  64499. paw: {
  64500. height: math.unit(0.57, "feet"),
  64501. name: "Paw",
  64502. image: {
  64503. source: "./media/characters/sarina/paw.svg"
  64504. }
  64505. },
  64506. toering: {
  64507. height: math.unit(0.27, "feet"),
  64508. name: "Toering",
  64509. image: {
  64510. source: "./media/characters/sarina/toering.svg"
  64511. }
  64512. },
  64513. },
  64514. [
  64515. {
  64516. name: "Incognito",
  64517. height: math.unit(1.9, "meters")
  64518. },
  64519. {
  64520. name: "Home Size",
  64521. height: math.unit(160, "meters"),
  64522. default: true
  64523. },
  64524. {
  64525. name: "Mega",
  64526. height: math.unit(50, "km")
  64527. },
  64528. {
  64529. name: "Small Giga",
  64530. height: math.unit(250, "km")
  64531. },
  64532. {
  64533. name: "Giga (Preferred Size)",
  64534. height: math.unit(3000, "km")
  64535. },
  64536. {
  64537. name: "Terra",
  64538. height: math.unit(40000, "km")
  64539. },
  64540. {
  64541. name: "Terra+",
  64542. height: math.unit(400000, "km")
  64543. },
  64544. {
  64545. name: "Solar",
  64546. height: math.unit(35e6, "km")
  64547. },
  64548. {
  64549. name: "Galactic",
  64550. height: math.unit(648106, "parsecs")
  64551. },
  64552. {
  64553. name: "Universal",
  64554. height: math.unit(7, "universes")
  64555. },
  64556. {
  64557. name: "Universal+",
  64558. height: math.unit(30, "universes")
  64559. },
  64560. ]
  64561. ))
  64562. characterMakers.push(() => makeCharacter(
  64563. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64564. {
  64565. front: {
  64566. height: math.unit(5 + 6/12, "feet"),
  64567. name: "Front",
  64568. image: {
  64569. source: "./media/characters/sifray/front.svg",
  64570. extra: 722/691,
  64571. bottom: 64/786
  64572. }
  64573. },
  64574. },
  64575. [
  64576. {
  64577. name: "Normal",
  64578. height: math.unit(5 + 6/12, "feet"),
  64579. default: true
  64580. },
  64581. ]
  64582. ))
  64583. characterMakers.push(() => makeCharacter(
  64584. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64585. {
  64586. side: {
  64587. height: math.unit(2.64, "feet"),
  64588. weight: math.unit(100, "lb"),
  64589. preyCapacity: math.unit(3, "people"),
  64590. name: "Side",
  64591. image: {
  64592. source: "./media/characters/spots/side.svg",
  64593. extra: 1859/977,
  64594. bottom: 19/1878
  64595. },
  64596. extraAttributes: {
  64597. "preyPerMinute": {
  64598. name: "Prey Per Minute",
  64599. power: 3,
  64600. type: "volume",
  64601. base: math.unit(6, "people"),
  64602. defaultUnit: "people"
  64603. },
  64604. "preyPerDay": {
  64605. name: "Prey Per Day",
  64606. power: 3,
  64607. type: "volume",
  64608. base: math.unit(6 * 60 * 24, "people"),
  64609. defaultUnit: "people"
  64610. },
  64611. }
  64612. },
  64613. },
  64614. [
  64615. {
  64616. name: "Normal",
  64617. height: math.unit(2.64, "feet"),
  64618. default: true
  64619. },
  64620. ]
  64621. ))
  64622. characterMakers.push(() => makeCharacter(
  64623. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64624. {
  64625. front: {
  64626. height: math.unit(29 + 11/12, "feet"),
  64627. weight: math.unit(40, "tons"),
  64628. name: "Front",
  64629. image: {
  64630. source: "./media/characters/mona/front.svg",
  64631. extra: 1257/1116,
  64632. bottom: 34/1291
  64633. }
  64634. },
  64635. },
  64636. [
  64637. {
  64638. name: "Normal",
  64639. height: math.unit(29 + 11/12, "feet"),
  64640. default: true
  64641. },
  64642. ]
  64643. ))
  64644. characterMakers.push(() => makeCharacter(
  64645. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64646. {
  64647. front: {
  64648. height: math.unit(15, "feet"),
  64649. weight: math.unit(3000, "kg"),
  64650. preyCapacity: math.unit(5, "people"),
  64651. name: "Front",
  64652. image: {
  64653. source: "./media/characters/frostfire/front.svg",
  64654. extra: 675/558,
  64655. bottom: 73/748
  64656. }
  64657. },
  64658. side: {
  64659. height: math.unit(15, "feet"),
  64660. weight: math.unit(3000, "kg"),
  64661. preyCapacity: math.unit(5, "people"),
  64662. name: "Side",
  64663. image: {
  64664. source: "./media/characters/frostfire/side.svg",
  64665. extra: 687/585,
  64666. bottom: 50/737
  64667. }
  64668. },
  64669. back: {
  64670. height: math.unit(15, "feet"),
  64671. weight: math.unit(3000, "kg"),
  64672. preyCapacity: math.unit(5, "people"),
  64673. name: "Back",
  64674. image: {
  64675. source: "./media/characters/frostfire/back.svg",
  64676. extra: 707/607,
  64677. bottom: 16/723
  64678. }
  64679. },
  64680. head: {
  64681. height: math.unit(9.35, "feet"),
  64682. name: "Head",
  64683. image: {
  64684. source: "./media/characters/frostfire/head.svg"
  64685. }
  64686. },
  64687. maw: {
  64688. height: math.unit(3.32, "feet"),
  64689. name: "Maw",
  64690. image: {
  64691. source: "./media/characters/frostfire/maw.svg"
  64692. }
  64693. },
  64694. hand: {
  64695. height: math.unit(3.7, "feet"),
  64696. name: "Hand",
  64697. image: {
  64698. source: "./media/characters/frostfire/hand.svg"
  64699. }
  64700. },
  64701. paw: {
  64702. height: math.unit(5.8, "feet"),
  64703. name: "Paw",
  64704. image: {
  64705. source: "./media/characters/frostfire/paw.svg"
  64706. }
  64707. },
  64708. },
  64709. [
  64710. {
  64711. name: "Normal",
  64712. height: math.unit(15, "feet"),
  64713. default: true
  64714. },
  64715. ]
  64716. ))
  64717. characterMakers.push(() => makeCharacter(
  64718. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64719. {
  64720. front: {
  64721. height: math.unit(5 + 2/12, "feet"),
  64722. weight: math.unit(122, "lb"),
  64723. name: "Front",
  64724. image: {
  64725. source: "./media/characters/valeroo/front.svg",
  64726. extra: 1789/1534,
  64727. bottom: 66/1855
  64728. }
  64729. },
  64730. back: {
  64731. height: math.unit(5 + 2/12, "feet"),
  64732. weight: math.unit(122, "lb"),
  64733. name: "Back",
  64734. image: {
  64735. source: "./media/characters/valeroo/back.svg",
  64736. extra: 1848/1588,
  64737. bottom: 68/1916
  64738. }
  64739. },
  64740. head: {
  64741. height: math.unit(1.87, "feet"),
  64742. name: "Head",
  64743. image: {
  64744. source: "./media/characters/valeroo/head.svg"
  64745. }
  64746. },
  64747. hand: {
  64748. height: math.unit(0.82, "feet"),
  64749. name: "Hand",
  64750. image: {
  64751. source: "./media/characters/valeroo/hand.svg"
  64752. }
  64753. },
  64754. foot: {
  64755. height: math.unit(2.42, "feet"),
  64756. name: "Foot",
  64757. image: {
  64758. source: "./media/characters/valeroo/foot.svg"
  64759. }
  64760. },
  64761. },
  64762. [
  64763. {
  64764. name: "Normal",
  64765. height: math.unit(5 + 2/12, "feet"),
  64766. default: true
  64767. },
  64768. ]
  64769. ))
  64770. characterMakers.push(() => makeCharacter(
  64771. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  64772. {
  64773. front: {
  64774. height: math.unit(11 + 3/12, "feet"),
  64775. name: "Front",
  64776. image: {
  64777. source: "./media/characters/corrin/front.svg",
  64778. extra: 665/597,
  64779. bottom: 74/739
  64780. }
  64781. },
  64782. },
  64783. [
  64784. {
  64785. name: "Standard",
  64786. height: math.unit(11 + 3/12, "feet"),
  64787. default: true
  64788. },
  64789. {
  64790. name: "The Boss",
  64791. height: math.unit(110, "feet")
  64792. },
  64793. {
  64794. name: "Shipbreaker",
  64795. height: math.unit(38, "km")
  64796. },
  64797. ]
  64798. ))
  64799. characterMakers.push(() => makeCharacter(
  64800. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  64801. {
  64802. front: {
  64803. height: math.unit(10, "feet"),
  64804. weight: math.unit(1750, "lb"),
  64805. name: "Front",
  64806. image: {
  64807. source: "./media/characters/kiba-ulrich/front.svg",
  64808. extra: 1037/973,
  64809. bottom: 36/1073
  64810. }
  64811. },
  64812. },
  64813. [
  64814. {
  64815. name: "Normal",
  64816. height: math.unit(10, "feet"),
  64817. default: true
  64818. },
  64819. {
  64820. name: "Minimacro",
  64821. height: math.unit(20, "feet")
  64822. },
  64823. {
  64824. name: "Macro",
  64825. height: math.unit(200, "feet")
  64826. },
  64827. {
  64828. name: "Megamacro",
  64829. height: math.unit(22500, "feet")
  64830. },
  64831. {
  64832. name: "Gigamacro",
  64833. height: math.unit(2700, "miles")
  64834. },
  64835. {
  64836. name: "Teramacro",
  64837. height: math.unit(10000, "miles")
  64838. },
  64839. ]
  64840. ))
  64841. characterMakers.push(() => makeCharacter(
  64842. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  64843. {
  64844. gryphon_front: {
  64845. height: math.unit(220, "cm"),
  64846. weight: math.unit(160, "kg"),
  64847. name: "Front",
  64848. image: {
  64849. source: "./media/characters/ceanoth/gryphon-front.svg",
  64850. extra: 616/552,
  64851. bottom: 33/649
  64852. },
  64853. form: "gryphon",
  64854. default: true
  64855. },
  64856. },
  64857. [
  64858. {
  64859. name: "Normal",
  64860. height: math.unit(220, "cm"),
  64861. form: "gryphon",
  64862. default: true
  64863. },
  64864. ],
  64865. {
  64866. "gryphon": {
  64867. name: "Grpyhon",
  64868. default: true
  64869. },
  64870. }
  64871. ))
  64872. characterMakers.push(() => makeCharacter(
  64873. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  64874. {
  64875. dressed: {
  64876. height: math.unit(2.2 * 0.79, "meters"),
  64877. weight: math.unit(0.5, "tonnes"),
  64878. name: "Dressed",
  64879. image: {
  64880. source: "./media/characters/vanadiya-athelya/dressed.svg",
  64881. extra: 665/315,
  64882. bottom: 106/771
  64883. },
  64884. extraAttributes: {
  64885. "bodyLength": {
  64886. name: "Body Length",
  64887. power: 1,
  64888. type: "length",
  64889. base: math.unit(2.5, "meters")
  64890. },
  64891. "tailLength": {
  64892. name: "Tail Length",
  64893. power: 1,
  64894. type: "length",
  64895. base: math.unit(4.5, "meters")
  64896. },
  64897. "wingspan": {
  64898. name: "Wingspan",
  64899. power: 1,
  64900. type: "length",
  64901. base: math.unit(6, "meters")
  64902. },
  64903. "taurStomachCapacity": {
  64904. name: "Taur Stomach Capacity",
  64905. power: 3,
  64906. type: "volume",
  64907. base: math.unit(4, "people"),
  64908. defaultUnit: "people"
  64909. },
  64910. "anthroStomachCapacity": {
  64911. name: "Anthro Stomach Capacity",
  64912. power: 3,
  64913. type: "volume",
  64914. base: math.unit(1, "people"),
  64915. defaultUnit: "people"
  64916. },
  64917. }
  64918. },
  64919. nude: {
  64920. height: math.unit(2.2 * 0.79, "meters"),
  64921. weight: math.unit(0.5, "tonnes"),
  64922. name: "Nude",
  64923. image: {
  64924. source: "./media/characters/vanadiya-athelya/nude.svg",
  64925. extra: 665/315,
  64926. bottom: 106/771
  64927. },
  64928. extraAttributes: {
  64929. "bodyLength": {
  64930. name: "Body Length",
  64931. power: 1,
  64932. type: "length",
  64933. base: math.unit(2.5, "meters")
  64934. },
  64935. "tailLength": {
  64936. name: "Tail Length",
  64937. power: 1,
  64938. type: "length",
  64939. base: math.unit(4.5, "meters")
  64940. },
  64941. "wingspan": {
  64942. name: "Wingspan",
  64943. power: 1,
  64944. type: "length",
  64945. base: math.unit(6, "meters")
  64946. },
  64947. "taurStomachCapacity": {
  64948. name: "Taur Stomach Capacity",
  64949. power: 3,
  64950. type: "volume",
  64951. base: math.unit(4, "people"),
  64952. defaultUnit: "people"
  64953. },
  64954. "anthroStomachCapacity": {
  64955. name: "Anthro Stomach Capacity",
  64956. power: 3,
  64957. type: "volume",
  64958. base: math.unit(1, "people"),
  64959. defaultUnit: "people"
  64960. },
  64961. }
  64962. },
  64963. },
  64964. [
  64965. {
  64966. name: "Handheld",
  64967. height: math.unit(0.79 * 0.06, "meters")
  64968. },
  64969. {
  64970. name: "Mini",
  64971. height: math.unit(0.79 * 0.7, "meters")
  64972. },
  64973. {
  64974. name: "Short",
  64975. height: math.unit(0.79 * 1.4, "meters")
  64976. },
  64977. {
  64978. name: "Imposing",
  64979. height: math.unit(0.79 * 2.2, "meters"),
  64980. default: true
  64981. },
  64982. {
  64983. name: "Big",
  64984. height: math.unit(0.79 * 3.8, "meters")
  64985. },
  64986. {
  64987. name: "Giant",
  64988. height: math.unit(0.79 * 6.7, "meters")
  64989. },
  64990. {
  64991. name: "Airliner",
  64992. height: math.unit(0.79 * 64, "meters")
  64993. },
  64994. {
  64995. name: "Skyscraper",
  64996. height: math.unit(0.79 * 220, "meters")
  64997. },
  64998. {
  64999. name: "Mountain",
  65000. height: math.unit(0.79 * 3.6, "km")
  65001. },
  65002. {
  65003. name: "Spacescraper",
  65004. height: math.unit(0.79 * 70, "km")
  65005. },
  65006. {
  65007. name: "Continental",
  65008. height: math.unit(0.79 * 1290, "km")
  65009. },
  65010. {
  65011. name: "Moon",
  65012. height: math.unit(0.79 * 32200, "km")
  65013. },
  65014. {
  65015. name: "Planetary",
  65016. height: math.unit(0.79 * 145000, "km")
  65017. },
  65018. {
  65019. name: "Stellar",
  65020. height: math.unit(0.79 * 19e6, "km")
  65021. },
  65022. {
  65023. name: "Solar",
  65024. height: math.unit(0.79 * 40, "AU")
  65025. },
  65026. {
  65027. name: "Intersteller",
  65028. height: math.unit(0.79 * 3, "lightyears")
  65029. },
  65030. {
  65031. name: "Star Cluster",
  65032. height: math.unit(0.79 * 80, "lightyears")
  65033. },
  65034. {
  65035. name: "Ecumenical",
  65036. height: math.unit(0.79 * 2e3, "lightyears")
  65037. },
  65038. {
  65039. name: "Galactic",
  65040. height: math.unit(0.79 * 175000, "lightyears")
  65041. },
  65042. {
  65043. name: "Galaxy Cluster",
  65044. height: math.unit(0.79 * 25e6, "lightyears")
  65045. },
  65046. ]
  65047. ))
  65048. characterMakers.push(() => makeCharacter(
  65049. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65050. {
  65051. front: {
  65052. height: math.unit(6 + 2/12, "feet"),
  65053. weight: math.unit(160, "lb"),
  65054. name: "Front",
  65055. image: {
  65056. source: "./media/characters/yana-amelin/front.svg",
  65057. extra: 1413/1295,
  65058. bottom: 42/1455
  65059. }
  65060. },
  65061. back: {
  65062. height: math.unit(6 + 2/12, "feet"),
  65063. weight: math.unit(160, "lb"),
  65064. name: "Back",
  65065. image: {
  65066. source: "./media/characters/yana-amelin/back.svg",
  65067. extra: 1424/1310,
  65068. bottom: 24/1448
  65069. }
  65070. },
  65071. paws: {
  65072. height: math.unit(1.48, "feet"),
  65073. name: "Paws",
  65074. image: {
  65075. source: "./media/characters/yana-amelin/paws.svg",
  65076. extra: 304/304,
  65077. bottom: 49/353
  65078. }
  65079. },
  65080. },
  65081. [
  65082. {
  65083. name: "Micro",
  65084. height: math.unit(4, "inches")
  65085. },
  65086. {
  65087. name: "Normal",
  65088. height: math.unit(6 + 2/12, "feet"),
  65089. default: true
  65090. },
  65091. {
  65092. name: "Minimacro",
  65093. height: math.unit(20, "feet")
  65094. },
  65095. {
  65096. name: "Macro",
  65097. height: math.unit(70, "feet")
  65098. },
  65099. ]
  65100. ))
  65101. characterMakers.push(() => makeCharacter(
  65102. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65103. {
  65104. frontNsfw: {
  65105. height: math.unit(2.48, "meters"),
  65106. weight: math.unit(112, "kg"),
  65107. name: "Front (NSFW)",
  65108. image: {
  65109. source: "./media/characters/titania/front-nsfw.svg",
  65110. extra: 1302/1232,
  65111. bottom: 90/1392
  65112. }
  65113. },
  65114. backNsfw: {
  65115. height: math.unit(2.48, "meters"),
  65116. weight: math.unit(112, "kg"),
  65117. name: "Back (NSFW)",
  65118. image: {
  65119. source: "./media/characters/titania/back-nsfw.svg",
  65120. extra: 1355/1288,
  65121. bottom: 18/1373
  65122. }
  65123. },
  65124. frontSfw: {
  65125. height: math.unit(2.48, "meters"),
  65126. weight: math.unit(112, "kg"),
  65127. name: "Front (SFW)",
  65128. image: {
  65129. source: "./media/characters/titania/front-sfw.svg",
  65130. extra: 1302/1232,
  65131. bottom: 90/1392
  65132. }
  65133. },
  65134. backSfw: {
  65135. height: math.unit(2.48, "meters"),
  65136. weight: math.unit(112, "kg"),
  65137. name: "Back (SFW)",
  65138. image: {
  65139. source: "./media/characters/titania/back-sfw.svg",
  65140. extra: 1355/1288,
  65141. bottom: 18/1373
  65142. }
  65143. },
  65144. head: {
  65145. height: math.unit(2.06, "feet"),
  65146. name: "Head",
  65147. image: {
  65148. source: "./media/characters/titania/head.svg"
  65149. }
  65150. },
  65151. maw: {
  65152. height: math.unit(0.8, "feet"),
  65153. name: "Maw",
  65154. image: {
  65155. source: "./media/characters/titania/maw.svg"
  65156. }
  65157. },
  65158. foot: {
  65159. height: math.unit(1.65, "feet"),
  65160. name: "Foot",
  65161. image: {
  65162. source: "./media/characters/titania/foot.svg"
  65163. }
  65164. },
  65165. nethers: {
  65166. height: math.unit(1.7, "feet"),
  65167. name: "Nethers",
  65168. image: {
  65169. source: "./media/characters/titania/nethers.svg"
  65170. }
  65171. },
  65172. },
  65173. [
  65174. {
  65175. name: "Normal",
  65176. height: math.unit(2.48, "meters"),
  65177. default: true
  65178. },
  65179. {
  65180. name: "Mini Macro",
  65181. height: math.unit(248, "meters")
  65182. },
  65183. {
  65184. name: "Macro",
  65185. height: math.unit(620, "meters")
  65186. },
  65187. {
  65188. name: "Mega Macro",
  65189. height: math.unit(1860, "meters")
  65190. },
  65191. ]
  65192. ))
  65193. characterMakers.push(() => makeCharacter(
  65194. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65195. {
  65196. front: {
  65197. height: math.unit(5 + 9/12, "feet"),
  65198. weight: math.unit(1500, "lb"),
  65199. name: "Front",
  65200. image: {
  65201. source: "./media/characters/tony-gray/front.svg",
  65202. extra: 700/575,
  65203. bottom: 71/771
  65204. }
  65205. },
  65206. },
  65207. [
  65208. {
  65209. name: "Normal",
  65210. height: math.unit(5 + 9/12, "feet"),
  65211. default: true
  65212. },
  65213. ]
  65214. ))
  65215. characterMakers.push(() => makeCharacter(
  65216. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65217. {
  65218. side: {
  65219. height: math.unit(8 + 2/12, "feet"),
  65220. name: "Side",
  65221. image: {
  65222. source: "./media/characters/kelby/side.svg",
  65223. extra: 804/578,
  65224. bottom: 70/874
  65225. },
  65226. form: "regular",
  65227. default: true
  65228. },
  65229. lounging: {
  65230. height: math.unit(12.41, "feet"),
  65231. name: "Lounging",
  65232. image: {
  65233. source: "./media/characters/kelby/lounging.svg"
  65234. },
  65235. form: "regular"
  65236. },
  65237. maw: {
  65238. height: math.unit(5, "feet"),
  65239. name: "Maw",
  65240. image: {
  65241. source: "./media/characters/kelby/maw.svg"
  65242. },
  65243. form: "regular"
  65244. },
  65245. dick: {
  65246. height: math.unit(2.4, "feet"),
  65247. name: "Dick",
  65248. image: {
  65249. source: "./media/characters/kelby/dick.svg"
  65250. },
  65251. form: "regular"
  65252. },
  65253. slit: {
  65254. height: math.unit(1.2, "feet"),
  65255. name: "Slit",
  65256. image: {
  65257. source: "./media/characters/kelby/slit.svg"
  65258. },
  65259. form: "regular"
  65260. },
  65261. chibi: {
  65262. height: math.unit(5, "feet"),
  65263. name: "Chibi",
  65264. image: {
  65265. source: "./media/characters/kelby/chibi.svg",
  65266. extra: 245/200,
  65267. bottom: 43/288
  65268. },
  65269. form: "chibi",
  65270. default: true
  65271. },
  65272. },
  65273. [
  65274. {
  65275. name: "Normal",
  65276. height: math.unit(8 + 2/12, "feet"),
  65277. default: true,
  65278. form: "regular"
  65279. },
  65280. {
  65281. name: "Normal",
  65282. height: math.unit(5, "feet"),
  65283. default: true,
  65284. form: "chibi"
  65285. },
  65286. ],
  65287. {
  65288. "regular": {
  65289. name: "Regular",
  65290. default: true
  65291. },
  65292. "chibi": {
  65293. name: "Chibi",
  65294. },
  65295. }
  65296. ))
  65297. //characters
  65298. function makeCharacters() {
  65299. const results = [];
  65300. characterMakers.forEach(character => {
  65301. results.push(character());
  65302. });
  65303. return results;
  65304. }