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.
 
 
 

65668 lines
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "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. }
  2411. //species
  2412. function getSpeciesInfo(speciesList) {
  2413. let result = new Set();
  2414. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2415. result.add(entry)
  2416. });
  2417. return Array.from(result);
  2418. };
  2419. function getSpeciesInfoHelper(species) {
  2420. if (!speciesData[species]) {
  2421. console.warn(species + " doesn't exist");
  2422. return [];
  2423. }
  2424. if (speciesData[species].parents) {
  2425. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2426. } else {
  2427. return [species];
  2428. }
  2429. }
  2430. characterMakers.push(() => makeCharacter(
  2431. {
  2432. name: "Fen",
  2433. species: ["crux"],
  2434. description: {
  2435. title: "Bio",
  2436. text: "Very furry. Sheds on everything."
  2437. },
  2438. tags: [
  2439. "anthro",
  2440. "goo"
  2441. ]
  2442. },
  2443. {
  2444. front: {
  2445. height: math.unit(12, "feet"),
  2446. weight: math.unit(2400, "lb"),
  2447. preyCapacity: math.unit(1, "people"),
  2448. name: "Front",
  2449. image: {
  2450. source: "./media/characters/fen/front.svg",
  2451. extra: 1804/1562,
  2452. bottom: 205/2009
  2453. },
  2454. extraAttributes: {
  2455. pawSize: {
  2456. name: "Paw Size",
  2457. power: 2,
  2458. type: "area",
  2459. base: math.unit(0.35, "m^2")
  2460. }
  2461. }
  2462. },
  2463. diving: {
  2464. height: math.unit(4.9, "meters"),
  2465. weight: math.unit(2400, "lb"),
  2466. name: "Diving",
  2467. image: {
  2468. source: "./media/characters/fen/diving.svg"
  2469. }
  2470. },
  2471. sleeby: {
  2472. height: math.unit(3.45, "meters"),
  2473. weight: math.unit(2400, "lb"),
  2474. name: "Sleeby",
  2475. image: {
  2476. source: "./media/characters/fen/sleeby.svg"
  2477. }
  2478. },
  2479. goo: {
  2480. height: math.unit(12, "feet"),
  2481. weight: math.unit(3600, "lb"),
  2482. volume: math.unit(1000, "liters"),
  2483. preyCapacity: math.unit(6, "people"),
  2484. name: "Goo",
  2485. image: {
  2486. source: "./media/characters/fen/goo.svg",
  2487. extra: 1307/1071,
  2488. bottom: 134/1441
  2489. }
  2490. },
  2491. horror: {
  2492. height: math.unit(13.6, "feet"),
  2493. weight: math.unit(2400, "lb"),
  2494. preyCapacity: math.unit(1, "people"),
  2495. name: "Horror",
  2496. image: {
  2497. source: "./media/characters/fen/horror.svg",
  2498. extra: 893/797,
  2499. bottom: 0/893
  2500. }
  2501. },
  2502. gooNsfw: {
  2503. height: math.unit(12, "feet"),
  2504. weight: math.unit(3750, "lb"),
  2505. volume: math.unit(1000, "liters"),
  2506. preyCapacity: math.unit(6, "people"),
  2507. name: "Goo (NSFW)",
  2508. image: {
  2509. source: "./media/characters/fen/goo-nsfw.svg",
  2510. extra: 1875/1734,
  2511. bottom: 122/1997
  2512. }
  2513. },
  2514. maw: {
  2515. height: math.unit(5.03, "feet"),
  2516. name: "Maw",
  2517. image: {
  2518. source: "./media/characters/fen/maw.svg"
  2519. }
  2520. },
  2521. gooCeiling: {
  2522. height: math.unit(6.6, "feet"),
  2523. weight: math.unit(3000, "lb"),
  2524. volume: math.unit(1000, "liters"),
  2525. preyCapacity: math.unit(6, "people"),
  2526. name: "Maw (Goo)",
  2527. image: {
  2528. source: "./media/characters/fen/goo-maw.svg"
  2529. }
  2530. },
  2531. paw: {
  2532. height: math.unit(3.77, "feet"),
  2533. name: "Paw",
  2534. image: {
  2535. source: "./media/characters/fen/paw.svg"
  2536. },
  2537. extraAttributes: {
  2538. "toeSize": {
  2539. name: "Toe Size",
  2540. power: 2,
  2541. type: "area",
  2542. base: math.unit(0.02875, "m^2")
  2543. },
  2544. "pawSize": {
  2545. name: "Paw Size",
  2546. power: 2,
  2547. type: "area",
  2548. base: math.unit(0.378, "m^2")
  2549. },
  2550. }
  2551. },
  2552. tail: {
  2553. height: math.unit(12.1, "feet"),
  2554. name: "Tail",
  2555. image: {
  2556. source: "./media/characters/fen/tail.svg"
  2557. }
  2558. },
  2559. tailFull: {
  2560. height: math.unit(12.1, "feet"),
  2561. name: "Full Tail",
  2562. image: {
  2563. source: "./media/characters/fen/tail-full.svg"
  2564. }
  2565. },
  2566. back: {
  2567. height: math.unit(12, "feet"),
  2568. weight: math.unit(2400, "lb"),
  2569. name: "Back",
  2570. image: {
  2571. source: "./media/characters/fen/back.svg",
  2572. },
  2573. info: {
  2574. description: {
  2575. mode: "append",
  2576. text: "\n\nHe is not currently looking at you."
  2577. }
  2578. }
  2579. },
  2580. full: {
  2581. height: math.unit(1.85, "meter"),
  2582. weight: math.unit(3200, "lb"),
  2583. preyCapacity: math.unit(3, "people"),
  2584. name: "Full",
  2585. image: {
  2586. source: "./media/characters/fen/full.svg",
  2587. extra: 1133/859,
  2588. bottom: 145/1278
  2589. },
  2590. info: {
  2591. description: {
  2592. mode: "append",
  2593. text: "\n\nMunch."
  2594. }
  2595. }
  2596. },
  2597. gooLounging: {
  2598. height: math.unit(4.53, "feet"),
  2599. weight: math.unit(3000, "lb"),
  2600. preyCapacity: math.unit(6, "people"),
  2601. name: "Goo (Lounging)",
  2602. image: {
  2603. source: "./media/characters/fen/goo-lounging.svg",
  2604. bottom: 116 / 613
  2605. }
  2606. },
  2607. lounging: {
  2608. height: math.unit(10.52, "feet"),
  2609. weight: math.unit(2400, "lb"),
  2610. name: "Lounging",
  2611. image: {
  2612. source: "./media/characters/fen/lounging.svg"
  2613. }
  2614. },
  2615. },
  2616. [
  2617. {
  2618. name: "Small",
  2619. height: math.unit(2.2428, "meter")
  2620. },
  2621. {
  2622. name: "Normal",
  2623. height: math.unit(12, "feet"),
  2624. default: true,
  2625. },
  2626. {
  2627. name: "Big",
  2628. height: math.unit(20, "feet")
  2629. },
  2630. {
  2631. name: "Minimacro",
  2632. height: math.unit(40, "feet"),
  2633. info: {
  2634. description: {
  2635. mode: "append",
  2636. text: "\n\nTOO DAMN BIG"
  2637. }
  2638. }
  2639. },
  2640. {
  2641. name: "Macro",
  2642. height: math.unit(100, "feet"),
  2643. info: {
  2644. description: {
  2645. mode: "append",
  2646. text: "\n\nTOO DAMN BIG"
  2647. }
  2648. }
  2649. },
  2650. {
  2651. name: "Megamacro",
  2652. height: math.unit(2, "miles")
  2653. },
  2654. {
  2655. name: "Gigamacro",
  2656. height: math.unit(10, "earths")
  2657. },
  2658. ]
  2659. ))
  2660. characterMakers.push(() => makeCharacter(
  2661. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2662. {
  2663. front: {
  2664. height: math.unit(183, "cm"),
  2665. weight: math.unit(80, "kg"),
  2666. name: "Front",
  2667. image: {
  2668. source: "./media/characters/sofia-fluttertail/front.svg",
  2669. bottom: 0.01,
  2670. extra: 2154 / 2081
  2671. }
  2672. },
  2673. frontAlt: {
  2674. height: math.unit(183, "cm"),
  2675. weight: math.unit(80, "kg"),
  2676. name: "Front (alt)",
  2677. image: {
  2678. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2679. }
  2680. },
  2681. back: {
  2682. height: math.unit(183, "cm"),
  2683. weight: math.unit(80, "kg"),
  2684. name: "Back",
  2685. image: {
  2686. source: "./media/characters/sofia-fluttertail/back.svg"
  2687. }
  2688. },
  2689. kneeling: {
  2690. height: math.unit(125, "cm"),
  2691. weight: math.unit(80, "kg"),
  2692. name: "Kneeling",
  2693. image: {
  2694. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2695. extra: 1033 / 977,
  2696. bottom: 23.7 / 1057
  2697. }
  2698. },
  2699. maw: {
  2700. height: math.unit(183 / 5, "cm"),
  2701. name: "Maw",
  2702. image: {
  2703. source: "./media/characters/sofia-fluttertail/maw.svg"
  2704. }
  2705. },
  2706. mawcloseup: {
  2707. height: math.unit(183 / 5 * 0.41, "cm"),
  2708. name: "Maw (Closeup)",
  2709. image: {
  2710. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2711. }
  2712. },
  2713. paws: {
  2714. height: math.unit(1.17, "feet"),
  2715. name: "Paws",
  2716. image: {
  2717. source: "./media/characters/sofia-fluttertail/paws.svg",
  2718. extra: 851 / 851,
  2719. bottom: 17 / 868
  2720. }
  2721. },
  2722. },
  2723. [
  2724. {
  2725. name: "Normal",
  2726. height: math.unit(1.83, "meter")
  2727. },
  2728. {
  2729. name: "Size Thief",
  2730. height: math.unit(18, "feet")
  2731. },
  2732. {
  2733. name: "50 Foot Collie",
  2734. height: math.unit(50, "feet")
  2735. },
  2736. {
  2737. name: "Macro",
  2738. height: math.unit(96, "feet"),
  2739. default: true
  2740. },
  2741. {
  2742. name: "Megamerger",
  2743. height: math.unit(650, "feet")
  2744. },
  2745. ]
  2746. ))
  2747. characterMakers.push(() => makeCharacter(
  2748. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2749. {
  2750. front: {
  2751. height: math.unit(7, "feet"),
  2752. weight: math.unit(100, "kg"),
  2753. name: "Front",
  2754. image: {
  2755. source: "./media/characters/march/front.svg",
  2756. extra: 1992/1851,
  2757. bottom: 39/2031
  2758. }
  2759. },
  2760. foot: {
  2761. height: math.unit(0.9, "feet"),
  2762. name: "Foot",
  2763. image: {
  2764. source: "./media/characters/march/foot.svg"
  2765. }
  2766. },
  2767. },
  2768. [
  2769. {
  2770. name: "Normal",
  2771. height: math.unit(7.9, "feet")
  2772. },
  2773. {
  2774. name: "Macro",
  2775. height: math.unit(220, "meters")
  2776. },
  2777. {
  2778. name: "Megamacro",
  2779. height: math.unit(2.98, "km"),
  2780. default: true
  2781. },
  2782. {
  2783. name: "Gigamacro",
  2784. height: math.unit(15963, "km")
  2785. },
  2786. {
  2787. name: "Teramacro",
  2788. height: math.unit(2980000000, "km")
  2789. },
  2790. {
  2791. name: "Examacro",
  2792. height: math.unit(250, "parsecs")
  2793. },
  2794. ]
  2795. ))
  2796. characterMakers.push(() => makeCharacter(
  2797. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2798. {
  2799. front: {
  2800. height: math.unit(6, "feet"),
  2801. weight: math.unit(60, "kg"),
  2802. name: "Front",
  2803. image: {
  2804. source: "./media/characters/noir/front.svg",
  2805. extra: 1,
  2806. bottom: 0.032
  2807. }
  2808. },
  2809. },
  2810. [
  2811. {
  2812. name: "Normal",
  2813. height: math.unit(6.6, "feet")
  2814. },
  2815. {
  2816. name: "Macro",
  2817. height: math.unit(500, "feet")
  2818. },
  2819. {
  2820. name: "Megamacro",
  2821. height: math.unit(2.5, "km"),
  2822. default: true
  2823. },
  2824. {
  2825. name: "Gigamacro",
  2826. height: math.unit(22500, "km")
  2827. },
  2828. {
  2829. name: "Teramacro",
  2830. height: math.unit(2500000000, "km")
  2831. },
  2832. {
  2833. name: "Examacro",
  2834. height: math.unit(200, "parsecs")
  2835. },
  2836. ]
  2837. ))
  2838. characterMakers.push(() => makeCharacter(
  2839. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2840. {
  2841. front: {
  2842. height: math.unit(7, "feet"),
  2843. weight: math.unit(100, "kg"),
  2844. name: "Front",
  2845. image: {
  2846. source: "./media/characters/okuri/front.svg",
  2847. extra: 739/665,
  2848. bottom: 39/778
  2849. }
  2850. },
  2851. back: {
  2852. height: math.unit(7, "feet"),
  2853. weight: math.unit(100, "kg"),
  2854. name: "Back",
  2855. image: {
  2856. source: "./media/characters/okuri/back.svg",
  2857. extra: 734/653,
  2858. bottom: 13/747
  2859. }
  2860. },
  2861. sitting: {
  2862. height: math.unit(2.95, "feet"),
  2863. weight: math.unit(100, "kg"),
  2864. name: "Sitting",
  2865. image: {
  2866. source: "./media/characters/okuri/sitting.svg",
  2867. extra: 370/318,
  2868. bottom: 99/469
  2869. }
  2870. },
  2871. },
  2872. [
  2873. {
  2874. name: "Smallest",
  2875. height: math.unit(5 + 2/12, "feet")
  2876. },
  2877. {
  2878. name: "Smaller",
  2879. height: math.unit(300, "feet")
  2880. },
  2881. {
  2882. name: "Small",
  2883. height: math.unit(1000, "feet")
  2884. },
  2885. {
  2886. name: "Macro",
  2887. height: math.unit(1, "mile")
  2888. },
  2889. {
  2890. name: "Mega Macro (Small)",
  2891. height: math.unit(20, "km")
  2892. },
  2893. {
  2894. name: "Mega Macro (Large)",
  2895. height: math.unit(600, "km")
  2896. },
  2897. {
  2898. name: "Giga Macro",
  2899. height: math.unit(10000, "km")
  2900. },
  2901. {
  2902. name: "Normal",
  2903. height: math.unit(577560, "km"),
  2904. default: true
  2905. },
  2906. {
  2907. name: "Large",
  2908. height: math.unit(4, "galaxies")
  2909. },
  2910. {
  2911. name: "Largest",
  2912. height: math.unit(15, "multiverses")
  2913. },
  2914. ]
  2915. ))
  2916. characterMakers.push(() => makeCharacter(
  2917. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2918. {
  2919. front: {
  2920. height: math.unit(7, "feet"),
  2921. weight: math.unit(100, "kg"),
  2922. name: "Front",
  2923. image: {
  2924. source: "./media/characters/manny/front.svg",
  2925. extra: 1,
  2926. bottom: 0.06
  2927. }
  2928. },
  2929. back: {
  2930. height: math.unit(7, "feet"),
  2931. weight: math.unit(100, "kg"),
  2932. name: "Back",
  2933. image: {
  2934. source: "./media/characters/manny/back.svg",
  2935. extra: 1,
  2936. bottom: 0.014
  2937. }
  2938. },
  2939. },
  2940. [
  2941. {
  2942. name: "Normal",
  2943. height: math.unit(7, "feet"),
  2944. },
  2945. {
  2946. name: "Macro",
  2947. height: math.unit(78, "feet"),
  2948. default: true
  2949. },
  2950. {
  2951. name: "Macro+",
  2952. height: math.unit(300, "meters")
  2953. },
  2954. {
  2955. name: "Macro++",
  2956. height: math.unit(2400, "meters")
  2957. },
  2958. {
  2959. name: "Megamacro",
  2960. height: math.unit(5167, "meters")
  2961. },
  2962. {
  2963. name: "Gigamacro",
  2964. height: math.unit(41769, "miles")
  2965. },
  2966. ]
  2967. ))
  2968. characterMakers.push(() => makeCharacter(
  2969. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2970. {
  2971. front: {
  2972. height: math.unit(7, "feet"),
  2973. weight: math.unit(100, "kg"),
  2974. name: "Front",
  2975. image: {
  2976. source: "./media/characters/adake/front-1.svg"
  2977. }
  2978. },
  2979. frontAlt: {
  2980. height: math.unit(7, "feet"),
  2981. weight: math.unit(100, "kg"),
  2982. name: "Front (Alt)",
  2983. image: {
  2984. source: "./media/characters/adake/front-2.svg",
  2985. extra: 1,
  2986. bottom: 0.01
  2987. }
  2988. },
  2989. back: {
  2990. height: math.unit(7, "feet"),
  2991. weight: math.unit(100, "kg"),
  2992. name: "Back",
  2993. image: {
  2994. source: "./media/characters/adake/back.svg",
  2995. }
  2996. },
  2997. kneel: {
  2998. height: math.unit(5.385, "feet"),
  2999. weight: math.unit(100, "kg"),
  3000. name: "Kneeling",
  3001. image: {
  3002. source: "./media/characters/adake/kneel.svg",
  3003. bottom: 0.052
  3004. }
  3005. },
  3006. },
  3007. [
  3008. {
  3009. name: "Normal",
  3010. height: math.unit(7, "feet"),
  3011. },
  3012. {
  3013. name: "Macro",
  3014. height: math.unit(78, "feet"),
  3015. default: true
  3016. },
  3017. {
  3018. name: "Macro+",
  3019. height: math.unit(300, "meters")
  3020. },
  3021. {
  3022. name: "Macro++",
  3023. height: math.unit(2400, "meters")
  3024. },
  3025. {
  3026. name: "Megamacro",
  3027. height: math.unit(5167, "meters")
  3028. },
  3029. {
  3030. name: "Gigamacro",
  3031. height: math.unit(41769, "miles")
  3032. },
  3033. ]
  3034. ))
  3035. characterMakers.push(() => makeCharacter(
  3036. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3037. {
  3038. front: {
  3039. height: math.unit(1.65, "meters"),
  3040. weight: math.unit(50, "kg"),
  3041. name: "Front",
  3042. image: {
  3043. source: "./media/characters/elijah/front.svg",
  3044. extra: 858 / 830,
  3045. bottom: 95.5 / 953.8559
  3046. }
  3047. },
  3048. back: {
  3049. height: math.unit(1.65, "meters"),
  3050. weight: math.unit(50, "kg"),
  3051. name: "Back",
  3052. image: {
  3053. source: "./media/characters/elijah/back.svg",
  3054. extra: 895 / 850,
  3055. bottom: 5.3 / 897.956
  3056. }
  3057. },
  3058. frontNsfw: {
  3059. height: math.unit(1.65, "meters"),
  3060. weight: math.unit(50, "kg"),
  3061. name: "Front (NSFW)",
  3062. image: {
  3063. source: "./media/characters/elijah/front-nsfw.svg",
  3064. extra: 858 / 830,
  3065. bottom: 95.5 / 953.8559
  3066. }
  3067. },
  3068. backNsfw: {
  3069. height: math.unit(1.65, "meters"),
  3070. weight: math.unit(50, "kg"),
  3071. name: "Back (NSFW)",
  3072. image: {
  3073. source: "./media/characters/elijah/back-nsfw.svg",
  3074. extra: 895 / 850,
  3075. bottom: 5.3 / 897.956
  3076. }
  3077. },
  3078. dick: {
  3079. height: math.unit(1, "feet"),
  3080. name: "Dick",
  3081. image: {
  3082. source: "./media/characters/elijah/dick.svg"
  3083. }
  3084. },
  3085. beakOpen: {
  3086. height: math.unit(1.25, "feet"),
  3087. name: "Beak (Open)",
  3088. image: {
  3089. source: "./media/characters/elijah/beak-open.svg"
  3090. }
  3091. },
  3092. beakShut: {
  3093. height: math.unit(1.25, "feet"),
  3094. name: "Beak (Shut)",
  3095. image: {
  3096. source: "./media/characters/elijah/beak-shut.svg"
  3097. }
  3098. },
  3099. footFlexing: {
  3100. height: math.unit(1.61, "feet"),
  3101. name: "Foot (Flexing)",
  3102. image: {
  3103. source: "./media/characters/elijah/foot-flexing.svg"
  3104. }
  3105. },
  3106. footStepping: {
  3107. height: math.unit(1.44, "feet"),
  3108. name: "Foot (Stepping)",
  3109. image: {
  3110. source: "./media/characters/elijah/foot-stepping.svg"
  3111. }
  3112. },
  3113. plantigradeLeg: {
  3114. height: math.unit(2.34, "feet"),
  3115. name: "Plantigrade Leg",
  3116. image: {
  3117. source: "./media/characters/elijah/plantigrade-leg.svg"
  3118. }
  3119. },
  3120. plantigradeFootLeft: {
  3121. height: math.unit(0.9, "feet"),
  3122. name: "Plantigrade Foot (Left)",
  3123. image: {
  3124. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3125. }
  3126. },
  3127. plantigradeFootRight: {
  3128. height: math.unit(0.9, "feet"),
  3129. name: "Plantigrade Foot (Right)",
  3130. image: {
  3131. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3132. }
  3133. },
  3134. },
  3135. [
  3136. {
  3137. name: "Normal",
  3138. height: math.unit(1.65, "meters")
  3139. },
  3140. {
  3141. name: "Macro",
  3142. height: math.unit(55, "meters"),
  3143. default: true
  3144. },
  3145. {
  3146. name: "Macro+",
  3147. height: math.unit(105, "meters")
  3148. },
  3149. ]
  3150. ))
  3151. characterMakers.push(() => makeCharacter(
  3152. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3153. {
  3154. front: {
  3155. height: math.unit(7 + 2/12, "feet"),
  3156. weight: math.unit(320, "kg"),
  3157. preyCapacity: math.unit(0.276549935, "people"),
  3158. name: "Front",
  3159. image: {
  3160. source: "./media/characters/rai/front.svg",
  3161. extra: 1802/1696,
  3162. bottom: 68/1870
  3163. },
  3164. form: "anthro",
  3165. default: true
  3166. },
  3167. frontDressed: {
  3168. height: math.unit(7 + 2/12, "feet"),
  3169. weight: math.unit(320, "kg"),
  3170. preyCapacity: math.unit(0.276549935, "people"),
  3171. name: "Front (Dressed)",
  3172. image: {
  3173. source: "./media/characters/rai/front-dressed.svg",
  3174. extra: 1802/1696,
  3175. bottom: 68/1870
  3176. },
  3177. form: "anthro"
  3178. },
  3179. side: {
  3180. height: math.unit(7 + 2/12, "feet"),
  3181. weight: math.unit(320, "kg"),
  3182. preyCapacity: math.unit(0.276549935, "people"),
  3183. name: "Side",
  3184. image: {
  3185. source: "./media/characters/rai/side.svg",
  3186. extra: 1789/1710,
  3187. bottom: 115/1904
  3188. },
  3189. form: "anthro"
  3190. },
  3191. back: {
  3192. height: math.unit(7 + 2/12, "feet"),
  3193. weight: math.unit(320, "kg"),
  3194. preyCapacity: math.unit(0.276549935, "people"),
  3195. name: "Back",
  3196. image: {
  3197. source: "./media/characters/rai/back.svg",
  3198. extra: 1770/1707,
  3199. bottom: 28/1798
  3200. },
  3201. form: "anthro"
  3202. },
  3203. feral: {
  3204. height: math.unit(9.5, "feet"),
  3205. weight: math.unit(640, "kg"),
  3206. preyCapacity: math.unit(4, "people"),
  3207. name: "Feral",
  3208. image: {
  3209. source: "./media/characters/rai/feral.svg",
  3210. extra: 945/553,
  3211. bottom: 176/1121
  3212. },
  3213. form: "feral",
  3214. default: true
  3215. },
  3216. dragon: {
  3217. height: math.unit(23, "feet"),
  3218. weight: math.unit(50000, "lb"),
  3219. name: "Dragon",
  3220. image: {
  3221. source: "./media/characters/rai/dragon.svg",
  3222. extra: 2498 / 2030,
  3223. bottom: 85.2 / 2584
  3224. },
  3225. form: "dragon",
  3226. default: true
  3227. },
  3228. maw: {
  3229. height: math.unit(1.69, "feet"),
  3230. name: "Maw",
  3231. image: {
  3232. source: "./media/characters/rai/maw.svg"
  3233. },
  3234. form: "anthro"
  3235. },
  3236. },
  3237. [
  3238. {
  3239. name: "Normal",
  3240. height: math.unit(7 + 2/12, "feet"),
  3241. form: "anthro"
  3242. },
  3243. {
  3244. name: "Big",
  3245. height: math.unit(11, "feet"),
  3246. form: "anthro"
  3247. },
  3248. {
  3249. name: "Minimacro",
  3250. height: math.unit(77, "feet"),
  3251. form: "anthro"
  3252. },
  3253. {
  3254. name: "Macro",
  3255. height: math.unit(302, "feet"),
  3256. default: true,
  3257. form: "anthro"
  3258. },
  3259. {
  3260. name: "Normal",
  3261. height: math.unit(9.5, "feet"),
  3262. form: "feral",
  3263. default: true
  3264. },
  3265. {
  3266. name: "Normal",
  3267. height: math.unit(23, "feet"),
  3268. form: "dragon",
  3269. default: true
  3270. }
  3271. ],
  3272. {
  3273. "anthro": {
  3274. name: "Anthro",
  3275. default: true
  3276. },
  3277. "feral": {
  3278. name: "Feral",
  3279. },
  3280. "dragon": {
  3281. name: "Dragon",
  3282. },
  3283. }
  3284. ))
  3285. characterMakers.push(() => makeCharacter(
  3286. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3287. {
  3288. frontDressed: {
  3289. height: math.unit(216, "feet"),
  3290. weight: math.unit(7000000, "lb"),
  3291. preyCapacity: math.unit(1321, "people"),
  3292. name: "Front (Dressed)",
  3293. image: {
  3294. source: "./media/characters/jazzy/front-dressed.svg",
  3295. extra: 2738 / 2651,
  3296. bottom: 41.8 / 2786
  3297. }
  3298. },
  3299. backDressed: {
  3300. height: math.unit(216, "feet"),
  3301. weight: math.unit(7000000, "lb"),
  3302. preyCapacity: math.unit(1321, "people"),
  3303. name: "Back (Dressed)",
  3304. image: {
  3305. source: "./media/characters/jazzy/back-dressed.svg",
  3306. extra: 2775 / 2673,
  3307. bottom: 36.8 / 2817
  3308. }
  3309. },
  3310. front: {
  3311. height: math.unit(216, "feet"),
  3312. weight: math.unit(7000000, "lb"),
  3313. preyCapacity: math.unit(1321, "people"),
  3314. name: "Front",
  3315. image: {
  3316. source: "./media/characters/jazzy/front.svg",
  3317. extra: 2738 / 2651,
  3318. bottom: 41.8 / 2786
  3319. }
  3320. },
  3321. back: {
  3322. height: math.unit(216, "feet"),
  3323. weight: math.unit(7000000, "lb"),
  3324. preyCapacity: math.unit(1321, "people"),
  3325. name: "Back",
  3326. image: {
  3327. source: "./media/characters/jazzy/back.svg",
  3328. extra: 2775 / 2673,
  3329. bottom: 36.8 / 2817
  3330. }
  3331. },
  3332. maw: {
  3333. height: math.unit(20, "feet"),
  3334. name: "Maw",
  3335. image: {
  3336. source: "./media/characters/jazzy/maw.svg"
  3337. }
  3338. },
  3339. paws: {
  3340. height: math.unit(27.5, "feet"),
  3341. name: "Paws",
  3342. image: {
  3343. source: "./media/characters/jazzy/paws.svg"
  3344. }
  3345. },
  3346. eye: {
  3347. height: math.unit(4.4, "feet"),
  3348. name: "Eye",
  3349. image: {
  3350. source: "./media/characters/jazzy/eye.svg"
  3351. }
  3352. },
  3353. droneOffense: {
  3354. height: math.unit(9.5, "inches"),
  3355. name: "Drone (Offense)",
  3356. image: {
  3357. source: "./media/characters/jazzy/drone-offense.svg"
  3358. }
  3359. },
  3360. droneRecon: {
  3361. height: math.unit(9.5, "inches"),
  3362. name: "Drone (Recon)",
  3363. image: {
  3364. source: "./media/characters/jazzy/drone-recon.svg"
  3365. }
  3366. },
  3367. droneDefense: {
  3368. height: math.unit(9.5, "inches"),
  3369. name: "Drone (Defense)",
  3370. image: {
  3371. source: "./media/characters/jazzy/drone-defense.svg"
  3372. }
  3373. },
  3374. },
  3375. [
  3376. {
  3377. name: "Macro",
  3378. height: math.unit(216, "feet"),
  3379. default: true
  3380. },
  3381. ]
  3382. ))
  3383. characterMakers.push(() => makeCharacter(
  3384. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3385. {
  3386. front: {
  3387. height: math.unit(9 + 6/12, "feet"),
  3388. weight: math.unit(700, "lb"),
  3389. name: "Front",
  3390. image: {
  3391. source: "./media/characters/flamm/front.svg",
  3392. extra: 1736/1596,
  3393. bottom: 93/1829
  3394. }
  3395. },
  3396. buff: {
  3397. height: math.unit(9 + 6/12, "feet"),
  3398. weight: math.unit(950, "lb"),
  3399. name: "Buff",
  3400. image: {
  3401. source: "./media/characters/flamm/buff.svg",
  3402. extra: 3018/2874,
  3403. bottom: 221/3239
  3404. }
  3405. },
  3406. },
  3407. [
  3408. {
  3409. name: "Normal",
  3410. height: math.unit(9.5, "feet")
  3411. },
  3412. {
  3413. name: "Macro",
  3414. height: math.unit(200, "feet"),
  3415. default: true
  3416. },
  3417. ]
  3418. ))
  3419. characterMakers.push(() => makeCharacter(
  3420. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3421. {
  3422. front: {
  3423. height: math.unit(5 + 3/12, "feet"),
  3424. weight: math.unit(60, "kg"),
  3425. name: "Front",
  3426. image: {
  3427. source: "./media/characters/zephiro/front.svg",
  3428. extra: 1873/1761,
  3429. bottom: 147/2020
  3430. }
  3431. },
  3432. side: {
  3433. height: math.unit(5 + 3/12, "feet"),
  3434. weight: math.unit(60, "kg"),
  3435. name: "Side",
  3436. image: {
  3437. source: "./media/characters/zephiro/side.svg",
  3438. extra: 1929/1827,
  3439. bottom: 65/1994
  3440. }
  3441. },
  3442. back: {
  3443. height: math.unit(5 + 3/12, "feet"),
  3444. weight: math.unit(60, "kg"),
  3445. name: "Back",
  3446. image: {
  3447. source: "./media/characters/zephiro/back.svg",
  3448. extra: 1926/1816,
  3449. bottom: 41/1967
  3450. }
  3451. },
  3452. hand: {
  3453. height: math.unit(0.68, "feet"),
  3454. name: "Hand",
  3455. image: {
  3456. source: "./media/characters/zephiro/hand.svg"
  3457. }
  3458. },
  3459. paw: {
  3460. height: math.unit(1, "feet"),
  3461. name: "Paw",
  3462. image: {
  3463. source: "./media/characters/zephiro/paw.svg"
  3464. }
  3465. },
  3466. beans: {
  3467. height: math.unit(0.93, "feet"),
  3468. name: "Beans",
  3469. image: {
  3470. source: "./media/characters/zephiro/beans.svg"
  3471. }
  3472. },
  3473. },
  3474. [
  3475. {
  3476. name: "Micro",
  3477. height: math.unit(3, "inches")
  3478. },
  3479. {
  3480. name: "Normal",
  3481. height: math.unit(5 + 3 / 12, "feet"),
  3482. default: true
  3483. },
  3484. {
  3485. name: "Macro",
  3486. height: math.unit(118, "feet")
  3487. },
  3488. ]
  3489. ))
  3490. characterMakers.push(() => makeCharacter(
  3491. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3492. {
  3493. front: {
  3494. height: math.unit(5, "feet"),
  3495. weight: math.unit(90, "kg"),
  3496. preyCapacity: math.unit(14, "people"),
  3497. name: "Front",
  3498. image: {
  3499. source: "./media/characters/fory/front.svg",
  3500. extra: 2862 / 2674,
  3501. bottom: 180 / 3043.8
  3502. },
  3503. form: "weaselbun",
  3504. default: true,
  3505. extraAttributes: {
  3506. "pawSize": {
  3507. name: "Paw Size",
  3508. power: 2,
  3509. type: "area",
  3510. base: math.unit(0.1596, "m^2")
  3511. },
  3512. "pawLength": {
  3513. name: "Paw Length",
  3514. power: 1,
  3515. type: "length",
  3516. base: math.unit(0.7, "m")
  3517. }
  3518. }
  3519. },
  3520. back: {
  3521. height: math.unit(5, "feet"),
  3522. weight: math.unit(90, "kg"),
  3523. preyCapacity: math.unit(14, "people"),
  3524. name: "Back",
  3525. image: {
  3526. source: "./media/characters/fory/back.svg",
  3527. extra: 1790/1672,
  3528. bottom: 84/1874
  3529. },
  3530. form: "weaselbun",
  3531. extraAttributes: {
  3532. "pawSize": {
  3533. name: "Paw Size",
  3534. power: 2,
  3535. type: "area",
  3536. base: math.unit(0.1596, "m^2")
  3537. },
  3538. "pawLength": {
  3539. name: "Paw Length",
  3540. power: 1,
  3541. type: "length",
  3542. base: math.unit(0.7, "m")
  3543. }
  3544. }
  3545. },
  3546. paw: {
  3547. height: math.unit(2.14, "feet"),
  3548. name: "Paw",
  3549. image: {
  3550. source: "./media/characters/fory/paw.svg"
  3551. },
  3552. form: "weaselbun",
  3553. extraAttributes: {
  3554. "pawSize": {
  3555. name: "Paw Size",
  3556. power: 2,
  3557. type: "area",
  3558. base: math.unit(0.1596, "m^2")
  3559. },
  3560. "pawLength": {
  3561. name: "Paw Length",
  3562. power: 1,
  3563. type: "length",
  3564. base: math.unit(0.48, "m")
  3565. }
  3566. }
  3567. },
  3568. bunBack: {
  3569. height: math.unit(3, "feet"),
  3570. weight: math.unit(20, "kg"),
  3571. preyCapacity: math.unit(3, "people"),
  3572. name: "Back",
  3573. image: {
  3574. source: "./media/characters/fory/bun-back.svg",
  3575. extra: 1749/1564,
  3576. bottom: 246/1995
  3577. },
  3578. form: "bun",
  3579. default: true,
  3580. extraAttributes: {
  3581. "pawSize": {
  3582. name: "Paw Size",
  3583. power: 2,
  3584. type: "area",
  3585. base: math.unit(0.072, "m^2")
  3586. },
  3587. "pawLength": {
  3588. name: "Paw Length",
  3589. power: 1,
  3590. type: "length",
  3591. base: math.unit(0.45, "m")
  3592. }
  3593. }
  3594. },
  3595. },
  3596. [
  3597. {
  3598. name: "Normal",
  3599. height: math.unit(5, "feet"),
  3600. form: "weaselbun"
  3601. },
  3602. {
  3603. name: "Macro",
  3604. height: math.unit(50, "feet"),
  3605. default: true,
  3606. form: "weaselbun"
  3607. },
  3608. {
  3609. name: "Megamacro",
  3610. height: math.unit(10, "miles"),
  3611. form: "weaselbun"
  3612. },
  3613. {
  3614. name: "Gigamacro",
  3615. height: math.unit(5, "earths"),
  3616. form: "weaselbun"
  3617. },
  3618. {
  3619. name: "Normal",
  3620. height: math.unit(3, "feet"),
  3621. default: true,
  3622. form: "bun"
  3623. },
  3624. {
  3625. name: "Fun-Size",
  3626. height: math.unit(12, "feet"),
  3627. form: "bun"
  3628. },
  3629. {
  3630. name: "Macro",
  3631. height: math.unit(100, "feet"),
  3632. form: "bun"
  3633. },
  3634. {
  3635. name: "Planetary",
  3636. height: math.unit(3, "earths"),
  3637. form: "bun"
  3638. },
  3639. ],
  3640. {
  3641. "weaselbun": {
  3642. name: "Weaselbun",
  3643. default: true
  3644. },
  3645. "bun": {
  3646. name: "Bun",
  3647. },
  3648. }
  3649. ))
  3650. characterMakers.push(() => makeCharacter(
  3651. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3652. {
  3653. front: {
  3654. height: math.unit(7, "feet"),
  3655. weight: math.unit(90, "kg"),
  3656. name: "Front",
  3657. image: {
  3658. source: "./media/characters/kurrikage/front.svg",
  3659. extra: 1845/1733,
  3660. bottom: 119/1964
  3661. }
  3662. },
  3663. back: {
  3664. height: math.unit(7, "feet"),
  3665. weight: math.unit(90, "kg"),
  3666. name: "Back",
  3667. image: {
  3668. source: "./media/characters/kurrikage/back.svg",
  3669. extra: 1790/1677,
  3670. bottom: 61/1851
  3671. }
  3672. },
  3673. dressed: {
  3674. height: math.unit(7, "feet"),
  3675. weight: math.unit(90, "kg"),
  3676. name: "Dressed",
  3677. image: {
  3678. source: "./media/characters/kurrikage/dressed.svg",
  3679. extra: 1845/1733,
  3680. bottom: 119/1964
  3681. }
  3682. },
  3683. foot: {
  3684. height: math.unit(1.5, "feet"),
  3685. name: "Foot",
  3686. image: {
  3687. source: "./media/characters/kurrikage/foot.svg"
  3688. }
  3689. },
  3690. staff: {
  3691. height: math.unit(6.7, "feet"),
  3692. name: "Staff",
  3693. image: {
  3694. source: "./media/characters/kurrikage/staff.svg"
  3695. }
  3696. },
  3697. peek: {
  3698. height: math.unit(1.05, "feet"),
  3699. name: "Peeking",
  3700. image: {
  3701. source: "./media/characters/kurrikage/peek.svg",
  3702. bottom: 0.08
  3703. }
  3704. },
  3705. },
  3706. [
  3707. {
  3708. name: "Normal",
  3709. height: math.unit(12, "feet"),
  3710. default: true
  3711. },
  3712. {
  3713. name: "Big",
  3714. height: math.unit(20, "feet")
  3715. },
  3716. {
  3717. name: "Macro",
  3718. height: math.unit(500, "feet")
  3719. },
  3720. {
  3721. name: "Megamacro",
  3722. height: math.unit(20, "miles")
  3723. },
  3724. ]
  3725. ))
  3726. characterMakers.push(() => makeCharacter(
  3727. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3728. {
  3729. front: {
  3730. height: math.unit(6, "feet"),
  3731. weight: math.unit(75, "kg"),
  3732. name: "Front",
  3733. image: {
  3734. source: "./media/characters/shingo/front.svg",
  3735. extra: 1900/1825,
  3736. bottom: 82/1982
  3737. }
  3738. },
  3739. side: {
  3740. height: math.unit(6, "feet"),
  3741. weight: math.unit(75, "kg"),
  3742. name: "Side",
  3743. image: {
  3744. source: "./media/characters/shingo/side.svg",
  3745. extra: 1930/1865,
  3746. bottom: 16/1946
  3747. }
  3748. },
  3749. back: {
  3750. height: math.unit(6, "feet"),
  3751. weight: math.unit(75, "kg"),
  3752. name: "Back",
  3753. image: {
  3754. source: "./media/characters/shingo/back.svg",
  3755. extra: 1922/1852,
  3756. bottom: 16/1938
  3757. }
  3758. },
  3759. frontDressed: {
  3760. height: math.unit(6, "feet"),
  3761. weight: math.unit(150, "lb"),
  3762. name: "Front-dressed",
  3763. image: {
  3764. source: "./media/characters/shingo/front-dressed.svg",
  3765. extra: 1900/1825,
  3766. bottom: 82/1982
  3767. }
  3768. },
  3769. paw: {
  3770. height: math.unit(1.29, "feet"),
  3771. name: "Paw",
  3772. image: {
  3773. source: "./media/characters/shingo/paw.svg"
  3774. }
  3775. },
  3776. hand: {
  3777. height: math.unit(1.07, "feet"),
  3778. name: "Hand",
  3779. image: {
  3780. source: "./media/characters/shingo/hand.svg"
  3781. }
  3782. },
  3783. frontAlt: {
  3784. height: math.unit(6, "feet"),
  3785. weight: math.unit(75, "kg"),
  3786. name: "Front (Alt)",
  3787. image: {
  3788. source: "./media/characters/shingo/front-alt.svg",
  3789. extra: 3511 / 3338,
  3790. bottom: 0.005
  3791. }
  3792. },
  3793. frontAlt2: {
  3794. height: math.unit(6, "feet"),
  3795. weight: math.unit(75, "kg"),
  3796. name: "Front (Alt 2)",
  3797. image: {
  3798. source: "./media/characters/shingo/front-alt-2.svg",
  3799. extra: 706/681,
  3800. bottom: 11/717
  3801. }
  3802. },
  3803. pawAlt: {
  3804. height: math.unit(1, "feet"),
  3805. name: "Paw (Alt)",
  3806. image: {
  3807. source: "./media/characters/shingo/paw-alt.svg"
  3808. }
  3809. },
  3810. },
  3811. [
  3812. {
  3813. name: "Micro",
  3814. height: math.unit(4, "inches")
  3815. },
  3816. {
  3817. name: "Normal",
  3818. height: math.unit(6, "feet"),
  3819. default: true
  3820. },
  3821. {
  3822. name: "Macro",
  3823. height: math.unit(108, "feet")
  3824. },
  3825. {
  3826. name: "Macro+",
  3827. height: math.unit(1500, "feet")
  3828. },
  3829. ]
  3830. ))
  3831. characterMakers.push(() => makeCharacter(
  3832. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3833. {
  3834. side: {
  3835. height: math.unit(6, "feet"),
  3836. weight: math.unit(75, "kg"),
  3837. name: "Side",
  3838. image: {
  3839. source: "./media/characters/aigey/side.svg"
  3840. }
  3841. },
  3842. },
  3843. [
  3844. {
  3845. name: "Macro",
  3846. height: math.unit(200, "feet"),
  3847. default: true
  3848. },
  3849. {
  3850. name: "Megamacro",
  3851. height: math.unit(100, "miles")
  3852. },
  3853. ]
  3854. )
  3855. )
  3856. characterMakers.push(() => makeCharacter(
  3857. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3858. {
  3859. front: {
  3860. height: math.unit(13, "feet"),
  3861. weight: math.unit(1036.80, "kg"),
  3862. name: "Front",
  3863. image: {
  3864. source: "./media/characters/natasha/front.svg",
  3865. extra: 1301/1210,
  3866. bottom: 39/1340
  3867. }
  3868. },
  3869. back: {
  3870. height: math.unit(13, "feet"),
  3871. weight: math.unit(1036.80, "kg"),
  3872. name: "Back",
  3873. image: {
  3874. source: "./media/characters/natasha/back.svg",
  3875. extra: 1342/1252,
  3876. bottom: 20/1362
  3877. }
  3878. },
  3879. head: {
  3880. height: math.unit(3.48, "feet"),
  3881. name: "Head",
  3882. image: {
  3883. source: "./media/characters/natasha/head.svg"
  3884. }
  3885. },
  3886. jaws: {
  3887. height: math.unit(3.52, "feet"),
  3888. name: "Jaws",
  3889. image: {
  3890. source: "./media/characters/natasha/jaws.svg"
  3891. }
  3892. },
  3893. paws: {
  3894. height: math.unit(2.7, "feet"),
  3895. name: "Paws",
  3896. image: {
  3897. source: "./media/characters/natasha/paws.svg"
  3898. }
  3899. },
  3900. collar: {
  3901. height: math.unit(0.89, "feet"),
  3902. name: "Collar",
  3903. image: {
  3904. source: "./media/characters/natasha/collar.svg"
  3905. }
  3906. },
  3907. gauge: {
  3908. height: math.unit(0.36, "feet"),
  3909. name: "Gauge",
  3910. image: {
  3911. source: "./media/characters/natasha/gauge.svg"
  3912. }
  3913. },
  3914. },
  3915. [
  3916. {
  3917. name: "Shortstack",
  3918. height: math.unit(3, "feet")
  3919. },
  3920. {
  3921. name: "Normal",
  3922. height: math.unit(13, "feet"),
  3923. default: true
  3924. },
  3925. {
  3926. name: "Macro",
  3927. height: math.unit(100, "feet")
  3928. },
  3929. {
  3930. name: "Macro+",
  3931. height: math.unit(260, "feet")
  3932. },
  3933. {
  3934. name: "Macro++",
  3935. height: math.unit(1, "mile")
  3936. },
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3941. {
  3942. front: {
  3943. height: math.unit(6, "feet"),
  3944. weight: math.unit(75, "kg"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/malik/front.svg",
  3948. extra: 1750/1561,
  3949. bottom: 80/1830
  3950. },
  3951. extraAttributes: {
  3952. "toeSize": {
  3953. name: "Toe Size",
  3954. power: 2,
  3955. type: "area",
  3956. base: math.unit(0.0159, "m^2")
  3957. },
  3958. "pawSize": {
  3959. name: "Paw Size",
  3960. power: 2,
  3961. type: "area",
  3962. base: math.unit(0.09834, "m^2")
  3963. },
  3964. }
  3965. },
  3966. side: {
  3967. height: math.unit(6, "feet"),
  3968. weight: math.unit(75, "kg"),
  3969. name: "Side",
  3970. image: {
  3971. source: "./media/characters/malik/side.svg",
  3972. extra: 1802/1685,
  3973. bottom: 42/1844
  3974. },
  3975. extraAttributes: {
  3976. "toeSize": {
  3977. name: "Toe Size",
  3978. power: 2,
  3979. type: "area",
  3980. base: math.unit(0.0159, "m^2")
  3981. },
  3982. "pawSize": {
  3983. name: "Paw Size",
  3984. power: 2,
  3985. type: "area",
  3986. base: math.unit(0.09834, "m^2")
  3987. },
  3988. }
  3989. },
  3990. back: {
  3991. height: math.unit(6, "feet"),
  3992. weight: math.unit(75, "kg"),
  3993. name: "Back",
  3994. image: {
  3995. source: "./media/characters/malik/back.svg",
  3996. extra: 1803/1607,
  3997. bottom: 33/1836
  3998. },
  3999. extraAttributes: {
  4000. "toeSize": {
  4001. name: "Toe Size",
  4002. power: 2,
  4003. type: "area",
  4004. base: math.unit(0.0159, "m^2")
  4005. },
  4006. "pawSize": {
  4007. name: "Paw Size",
  4008. power: 2,
  4009. type: "area",
  4010. base: math.unit(0.09834, "m^2")
  4011. },
  4012. }
  4013. },
  4014. },
  4015. [
  4016. {
  4017. name: "Macro",
  4018. height: math.unit(156, "feet"),
  4019. default: true
  4020. },
  4021. {
  4022. name: "Macro+",
  4023. height: math.unit(1188, "feet")
  4024. },
  4025. ]
  4026. ))
  4027. characterMakers.push(() => makeCharacter(
  4028. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4029. {
  4030. front: {
  4031. height: math.unit(6, "feet"),
  4032. weight: math.unit(75, "kg"),
  4033. name: "Front",
  4034. image: {
  4035. source: "./media/characters/sefer/front.svg",
  4036. extra: 848 / 659,
  4037. bottom: 28.3 / 876.442
  4038. }
  4039. },
  4040. back: {
  4041. height: math.unit(6, "feet"),
  4042. weight: math.unit(75, "kg"),
  4043. name: "Back",
  4044. image: {
  4045. source: "./media/characters/sefer/back.svg",
  4046. extra: 864 / 695,
  4047. bottom: 10 / 871
  4048. }
  4049. },
  4050. frontDressed: {
  4051. height: math.unit(6, "feet"),
  4052. weight: math.unit(75, "kg"),
  4053. name: "Dressed",
  4054. image: {
  4055. source: "./media/characters/sefer/dressed.svg",
  4056. extra: 839 / 653,
  4057. bottom: 37.6 / 878
  4058. }
  4059. },
  4060. },
  4061. [
  4062. {
  4063. name: "Normal",
  4064. height: math.unit(6, "feet"),
  4065. default: true
  4066. },
  4067. {
  4068. name: "Big",
  4069. height: math.unit(8, "meters")
  4070. },
  4071. ]
  4072. ))
  4073. characterMakers.push(() => makeCharacter(
  4074. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4075. {
  4076. body: {
  4077. height: math.unit(2.2428, "meter"),
  4078. weight: math.unit(124.738, "kg"),
  4079. name: "Body",
  4080. image: {
  4081. extra: 1225 / 1050,
  4082. source: "./media/characters/north/front.svg"
  4083. }
  4084. }
  4085. },
  4086. [
  4087. {
  4088. name: "Micro",
  4089. height: math.unit(4, "inches")
  4090. },
  4091. {
  4092. name: "Macro",
  4093. height: math.unit(63, "meters")
  4094. },
  4095. {
  4096. name: "Megamacro",
  4097. height: math.unit(101, "miles"),
  4098. default: true
  4099. }
  4100. ]
  4101. ))
  4102. characterMakers.push(() => makeCharacter(
  4103. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4104. {
  4105. angled: {
  4106. height: math.unit(4, "meter"),
  4107. weight: math.unit(150, "kg"),
  4108. name: "Angled",
  4109. image: {
  4110. source: "./media/characters/talan/angled-sfw.svg",
  4111. bottom: 29 / 3734
  4112. }
  4113. },
  4114. angledNsfw: {
  4115. height: math.unit(4, "meter"),
  4116. weight: math.unit(150, "kg"),
  4117. name: "Angled (NSFW)",
  4118. image: {
  4119. source: "./media/characters/talan/angled-nsfw.svg",
  4120. bottom: 29 / 3734
  4121. }
  4122. },
  4123. frontNsfw: {
  4124. height: math.unit(4, "meter"),
  4125. weight: math.unit(150, "kg"),
  4126. name: "Front (NSFW)",
  4127. image: {
  4128. source: "./media/characters/talan/front-nsfw.svg",
  4129. bottom: 29 / 3734
  4130. }
  4131. },
  4132. sideNsfw: {
  4133. height: math.unit(4, "meter"),
  4134. weight: math.unit(150, "kg"),
  4135. name: "Side (NSFW)",
  4136. image: {
  4137. source: "./media/characters/talan/side-nsfw.svg",
  4138. bottom: 29 / 3734
  4139. }
  4140. },
  4141. back: {
  4142. height: math.unit(4, "meter"),
  4143. weight: math.unit(150, "kg"),
  4144. name: "Back",
  4145. image: {
  4146. source: "./media/characters/talan/back.svg"
  4147. }
  4148. },
  4149. dickBottom: {
  4150. height: math.unit(0.621, "meter"),
  4151. name: "Dick (Bottom)",
  4152. image: {
  4153. source: "./media/characters/talan/dick-bottom.svg"
  4154. }
  4155. },
  4156. dickTop: {
  4157. height: math.unit(0.621, "meter"),
  4158. name: "Dick (Top)",
  4159. image: {
  4160. source: "./media/characters/talan/dick-top.svg"
  4161. }
  4162. },
  4163. dickSide: {
  4164. height: math.unit(0.305, "meter"),
  4165. name: "Dick (Side)",
  4166. image: {
  4167. source: "./media/characters/talan/dick-side.svg"
  4168. }
  4169. },
  4170. dickFront: {
  4171. height: math.unit(0.305, "meter"),
  4172. name: "Dick (Front)",
  4173. image: {
  4174. source: "./media/characters/talan/dick-front.svg"
  4175. }
  4176. },
  4177. },
  4178. [
  4179. {
  4180. name: "Normal",
  4181. height: math.unit(4, "meters")
  4182. },
  4183. {
  4184. name: "Macro",
  4185. height: math.unit(100, "meters")
  4186. },
  4187. {
  4188. name: "Megamacro",
  4189. height: math.unit(2, "miles"),
  4190. default: true
  4191. },
  4192. {
  4193. name: "Gigamacro",
  4194. height: math.unit(5000, "miles")
  4195. },
  4196. {
  4197. name: "Teramacro",
  4198. height: math.unit(100, "parsecs")
  4199. }
  4200. ]
  4201. ))
  4202. characterMakers.push(() => makeCharacter(
  4203. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4204. {
  4205. front: {
  4206. height: math.unit(2, "meter"),
  4207. weight: math.unit(90, "kg"),
  4208. name: "Front",
  4209. image: {
  4210. source: "./media/characters/gael'rathus/front.svg"
  4211. }
  4212. },
  4213. frontAlt: {
  4214. height: math.unit(2, "meter"),
  4215. weight: math.unit(90, "kg"),
  4216. name: "Front (alt)",
  4217. image: {
  4218. source: "./media/characters/gael'rathus/front-alt.svg"
  4219. }
  4220. },
  4221. frontAlt2: {
  4222. height: math.unit(2, "meter"),
  4223. weight: math.unit(90, "kg"),
  4224. name: "Front (alt 2)",
  4225. image: {
  4226. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4227. }
  4228. }
  4229. },
  4230. [
  4231. {
  4232. name: "Normal",
  4233. height: math.unit(9, "feet"),
  4234. default: true
  4235. },
  4236. {
  4237. name: "Large",
  4238. height: math.unit(25, "feet")
  4239. },
  4240. {
  4241. name: "Macro",
  4242. height: math.unit(0.25, "miles")
  4243. },
  4244. {
  4245. name: "Megamacro",
  4246. height: math.unit(10, "miles")
  4247. }
  4248. ]
  4249. ))
  4250. characterMakers.push(() => makeCharacter(
  4251. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4252. {
  4253. side: {
  4254. height: math.unit(2, "meter"),
  4255. weight: math.unit(140, "kg"),
  4256. name: "Side",
  4257. image: {
  4258. source: "./media/characters/sosha/side.svg",
  4259. extra: 1170/1006,
  4260. bottom: 94/1264
  4261. }
  4262. },
  4263. maw: {
  4264. height: math.unit(2.87, "feet"),
  4265. name: "Maw",
  4266. image: {
  4267. source: "./media/characters/sosha/maw.svg",
  4268. extra: 966/865,
  4269. bottom: 0/966
  4270. }
  4271. },
  4272. cooch: {
  4273. height: math.unit(5.6, "feet"),
  4274. name: "Cooch",
  4275. image: {
  4276. source: "./media/characters/sosha/cooch.svg"
  4277. }
  4278. },
  4279. },
  4280. [
  4281. {
  4282. name: "Normal",
  4283. height: math.unit(12, "feet"),
  4284. default: true
  4285. }
  4286. ]
  4287. ))
  4288. characterMakers.push(() => makeCharacter(
  4289. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4290. {
  4291. side: {
  4292. height: math.unit(5 + 5 / 12, "feet"),
  4293. weight: math.unit(170, "kg"),
  4294. name: "Side",
  4295. image: {
  4296. source: "./media/characters/runnola/side.svg",
  4297. extra: 741 / 448,
  4298. bottom: 0.05
  4299. }
  4300. },
  4301. },
  4302. [
  4303. {
  4304. name: "Small",
  4305. height: math.unit(3, "feet")
  4306. },
  4307. {
  4308. name: "Normal",
  4309. height: math.unit(5 + 5 / 12, "feet"),
  4310. default: true
  4311. },
  4312. {
  4313. name: "Big",
  4314. height: math.unit(10, "feet")
  4315. },
  4316. ]
  4317. ))
  4318. characterMakers.push(() => makeCharacter(
  4319. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4320. {
  4321. front: {
  4322. height: math.unit(2, "meter"),
  4323. weight: math.unit(50, "kg"),
  4324. name: "Front",
  4325. image: {
  4326. source: "./media/characters/kurribird/front.svg",
  4327. bottom: 0.015
  4328. }
  4329. },
  4330. frontAlt: {
  4331. height: math.unit(1.5, "meter"),
  4332. weight: math.unit(50, "kg"),
  4333. name: "Front (Alt)",
  4334. image: {
  4335. source: "./media/characters/kurribird/front-alt.svg",
  4336. extra: 1.45
  4337. }
  4338. },
  4339. },
  4340. [
  4341. {
  4342. name: "Normal",
  4343. height: math.unit(7, "feet")
  4344. },
  4345. {
  4346. name: "Big",
  4347. height: math.unit(12, "feet"),
  4348. default: true
  4349. },
  4350. {
  4351. name: "Macro",
  4352. height: math.unit(1500, "feet")
  4353. },
  4354. {
  4355. name: "Megamacro",
  4356. height: math.unit(2, "miles")
  4357. }
  4358. ]
  4359. ))
  4360. characterMakers.push(() => makeCharacter(
  4361. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4362. {
  4363. front: {
  4364. height: math.unit(2, "meter"),
  4365. weight: math.unit(80, "kg"),
  4366. name: "Front",
  4367. image: {
  4368. source: "./media/characters/elbial/front.svg",
  4369. extra: 1643 / 1556,
  4370. bottom: 60.2 / 1696
  4371. }
  4372. },
  4373. side: {
  4374. height: math.unit(2, "meter"),
  4375. weight: math.unit(80, "kg"),
  4376. name: "Side",
  4377. image: {
  4378. source: "./media/characters/elbial/side.svg",
  4379. extra: 1601/1528,
  4380. bottom: 97/1698
  4381. }
  4382. },
  4383. back: {
  4384. height: math.unit(2, "meter"),
  4385. weight: math.unit(80, "kg"),
  4386. name: "Back",
  4387. image: {
  4388. source: "./media/characters/elbial/back.svg",
  4389. extra: 1653/1569,
  4390. bottom: 20/1673
  4391. }
  4392. },
  4393. frontDressed: {
  4394. height: math.unit(2, "meter"),
  4395. weight: math.unit(80, "kg"),
  4396. name: "Front (Dressed)",
  4397. image: {
  4398. source: "./media/characters/elbial/front-dressed.svg",
  4399. extra: 1638/1569,
  4400. bottom: 70/1708
  4401. }
  4402. },
  4403. genitals: {
  4404. height: math.unit(2 / 3.367, "meter"),
  4405. name: "Genitals",
  4406. image: {
  4407. source: "./media/characters/elbial/genitals.svg"
  4408. }
  4409. },
  4410. },
  4411. [
  4412. {
  4413. name: "Large",
  4414. height: math.unit(100, "feet")
  4415. },
  4416. {
  4417. name: "Macro",
  4418. height: math.unit(500, "feet"),
  4419. default: true
  4420. },
  4421. {
  4422. name: "Megamacro",
  4423. height: math.unit(10, "miles")
  4424. },
  4425. {
  4426. name: "Gigamacro",
  4427. height: math.unit(25000, "miles")
  4428. },
  4429. {
  4430. name: "Full-Size",
  4431. height: math.unit(8000000, "gigaparsecs")
  4432. }
  4433. ]
  4434. ))
  4435. characterMakers.push(() => makeCharacter(
  4436. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4437. {
  4438. front: {
  4439. height: math.unit(2, "meter"),
  4440. weight: math.unit(60, "kg"),
  4441. name: "Front",
  4442. image: {
  4443. source: "./media/characters/noah/front.svg",
  4444. extra: 1383/1313,
  4445. bottom: 104/1487
  4446. }
  4447. },
  4448. hand: {
  4449. height: math.unit(0.6, "feet"),
  4450. name: "Hand",
  4451. image: {
  4452. source: "./media/characters/noah/hand.svg"
  4453. }
  4454. },
  4455. talons: {
  4456. height: math.unit(1.385, "feet"),
  4457. name: "Talons",
  4458. image: {
  4459. source: "./media/characters/noah/talons.svg"
  4460. }
  4461. },
  4462. beak: {
  4463. height: math.unit(0.43, "feet"),
  4464. name: "Beak",
  4465. image: {
  4466. source: "./media/characters/noah/beak.svg"
  4467. }
  4468. },
  4469. collar: {
  4470. height: math.unit(0.88, "feet"),
  4471. name: "Collar",
  4472. image: {
  4473. source: "./media/characters/noah/collar.svg"
  4474. }
  4475. },
  4476. eyeNarrow: {
  4477. height: math.unit(0.18, "feet"),
  4478. name: "Eye (Narrow)",
  4479. image: {
  4480. source: "./media/characters/noah/eye-narrow.svg"
  4481. }
  4482. },
  4483. eyeNormal: {
  4484. height: math.unit(0.18, "feet"),
  4485. name: "Eye (Normal)",
  4486. image: {
  4487. source: "./media/characters/noah/eye-normal.svg"
  4488. }
  4489. },
  4490. eyeWide: {
  4491. height: math.unit(0.18, "feet"),
  4492. name: "Eye (Wide)",
  4493. image: {
  4494. source: "./media/characters/noah/eye-wide.svg"
  4495. }
  4496. },
  4497. ear: {
  4498. height: math.unit(0.64, "feet"),
  4499. name: "Ear",
  4500. image: {
  4501. source: "./media/characters/noah/ear.svg"
  4502. }
  4503. },
  4504. },
  4505. [
  4506. {
  4507. name: "Large",
  4508. height: math.unit(50, "feet")
  4509. },
  4510. {
  4511. name: "Macro",
  4512. height: math.unit(750, "feet"),
  4513. default: true
  4514. },
  4515. {
  4516. name: "Megamacro",
  4517. height: math.unit(50, "miles")
  4518. },
  4519. {
  4520. name: "Gigamacro",
  4521. height: math.unit(100000, "miles")
  4522. },
  4523. {
  4524. name: "Full-Size",
  4525. height: math.unit(3000000000, "miles")
  4526. }
  4527. ]
  4528. ))
  4529. characterMakers.push(() => makeCharacter(
  4530. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4531. {
  4532. front: {
  4533. height: math.unit(2, "meter"),
  4534. weight: math.unit(80, "kg"),
  4535. name: "Front",
  4536. image: {
  4537. source: "./media/characters/natalya/front.svg"
  4538. }
  4539. },
  4540. back: {
  4541. height: math.unit(2, "meter"),
  4542. weight: math.unit(80, "kg"),
  4543. name: "Back",
  4544. image: {
  4545. source: "./media/characters/natalya/back.svg"
  4546. }
  4547. }
  4548. },
  4549. [
  4550. {
  4551. name: "Normal",
  4552. height: math.unit(150, "feet"),
  4553. default: true
  4554. },
  4555. {
  4556. name: "Megamacro",
  4557. height: math.unit(5, "miles")
  4558. },
  4559. {
  4560. name: "Full-Size",
  4561. height: math.unit(600, "kiloparsecs")
  4562. }
  4563. ]
  4564. ))
  4565. characterMakers.push(() => makeCharacter(
  4566. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4567. {
  4568. front: {
  4569. height: math.unit(2, "meter"),
  4570. weight: math.unit(50, "kg"),
  4571. name: "Front",
  4572. image: {
  4573. source: "./media/characters/erestrebah/front.svg",
  4574. extra: 1262/1162,
  4575. bottom: 96/1358
  4576. }
  4577. },
  4578. back: {
  4579. height: math.unit(2, "meter"),
  4580. weight: math.unit(50, "kg"),
  4581. name: "Back",
  4582. image: {
  4583. source: "./media/characters/erestrebah/back.svg",
  4584. extra: 1257/1139,
  4585. bottom: 13/1270
  4586. }
  4587. },
  4588. wing: {
  4589. height: math.unit(2, "meter"),
  4590. weight: math.unit(50, "kg"),
  4591. name: "Wing",
  4592. image: {
  4593. source: "./media/characters/erestrebah/wing.svg",
  4594. extra: 1262/1162,
  4595. bottom: 96/1358
  4596. }
  4597. },
  4598. mouth: {
  4599. height: math.unit(0.39, "feet"),
  4600. name: "Mouth",
  4601. image: {
  4602. source: "./media/characters/erestrebah/mouth.svg"
  4603. }
  4604. }
  4605. },
  4606. [
  4607. {
  4608. name: "Normal",
  4609. height: math.unit(10, "feet")
  4610. },
  4611. {
  4612. name: "Large",
  4613. height: math.unit(50, "feet"),
  4614. default: true
  4615. },
  4616. {
  4617. name: "Macro",
  4618. height: math.unit(300, "feet")
  4619. },
  4620. {
  4621. name: "Macro+",
  4622. height: math.unit(750, "feet")
  4623. },
  4624. {
  4625. name: "Megamacro",
  4626. height: math.unit(3, "miles")
  4627. }
  4628. ]
  4629. ))
  4630. characterMakers.push(() => makeCharacter(
  4631. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4632. {
  4633. front: {
  4634. height: math.unit(2, "meter"),
  4635. weight: math.unit(80, "kg"),
  4636. name: "Front",
  4637. image: {
  4638. source: "./media/characters/jennifer/front.svg",
  4639. bottom: 0.11,
  4640. extra: 1.16
  4641. }
  4642. },
  4643. frontAlt: {
  4644. height: math.unit(2, "meter"),
  4645. weight: math.unit(80, "kg"),
  4646. name: "Front (Alt)",
  4647. image: {
  4648. source: "./media/characters/jennifer/front-alt.svg"
  4649. }
  4650. }
  4651. },
  4652. [
  4653. {
  4654. name: "Canon Height",
  4655. height: math.unit(120, "feet"),
  4656. default: true
  4657. },
  4658. {
  4659. name: "Macro+",
  4660. height: math.unit(300, "feet")
  4661. },
  4662. {
  4663. name: "Megamacro",
  4664. height: math.unit(20000, "feet")
  4665. }
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4670. {
  4671. front: {
  4672. height: math.unit(2, "meter"),
  4673. weight: math.unit(50, "kg"),
  4674. name: "Front",
  4675. image: {
  4676. source: "./media/characters/kalista/front.svg",
  4677. extra: 1314/1145,
  4678. bottom: 101/1415
  4679. }
  4680. },
  4681. back: {
  4682. height: math.unit(2, "meter"),
  4683. weight: math.unit(50, "kg"),
  4684. name: "Back",
  4685. image: {
  4686. source: "./media/characters/kalista/back.svg",
  4687. extra: 1366 / 1156,
  4688. bottom: 33.9 / 1362.78
  4689. }
  4690. }
  4691. },
  4692. [
  4693. {
  4694. name: "Uncomfortably Small",
  4695. height: math.unit(10, "feet")
  4696. },
  4697. {
  4698. name: "Small",
  4699. height: math.unit(30, "feet")
  4700. },
  4701. {
  4702. name: "Macro",
  4703. height: math.unit(100, "feet"),
  4704. default: true
  4705. },
  4706. {
  4707. name: "Macro+",
  4708. height: math.unit(2000, "feet")
  4709. },
  4710. {
  4711. name: "True Form",
  4712. height: math.unit(8924, "miles")
  4713. }
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4718. {
  4719. front: {
  4720. height: math.unit(2, "meter"),
  4721. weight: math.unit(120, "kg"),
  4722. name: "Front",
  4723. image: {
  4724. source: "./media/characters/ggv/front.svg"
  4725. }
  4726. },
  4727. side: {
  4728. height: math.unit(2, "meter"),
  4729. weight: math.unit(120, "kg"),
  4730. name: "Side",
  4731. image: {
  4732. source: "./media/characters/ggv/side.svg"
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Extremely Puny",
  4739. height: math.unit(9 + 5 / 12, "feet")
  4740. },
  4741. {
  4742. name: "Horribly Small",
  4743. height: math.unit(47.7, "miles"),
  4744. default: true
  4745. },
  4746. {
  4747. name: "Reasonably Sized",
  4748. height: math.unit(25000, "parsecs")
  4749. },
  4750. {
  4751. name: "Slightly Uncompressed",
  4752. height: math.unit(7.77e31, "parsecs")
  4753. },
  4754. {
  4755. name: "Omniversal",
  4756. height: math.unit(1e300, "meters")
  4757. },
  4758. ]
  4759. ))
  4760. characterMakers.push(() => makeCharacter(
  4761. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4762. {
  4763. front: {
  4764. height: math.unit(2, "meter"),
  4765. weight: math.unit(75, "lb"),
  4766. name: "Front",
  4767. image: {
  4768. source: "./media/characters/napalm/front.svg"
  4769. }
  4770. },
  4771. back: {
  4772. height: math.unit(2, "meter"),
  4773. weight: math.unit(75, "lb"),
  4774. name: "Back",
  4775. image: {
  4776. source: "./media/characters/napalm/back.svg"
  4777. }
  4778. }
  4779. },
  4780. [
  4781. {
  4782. name: "Standard",
  4783. height: math.unit(55, "feet"),
  4784. default: true
  4785. }
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4790. {
  4791. front: {
  4792. height: math.unit(7 + 5 / 6, "feet"),
  4793. weight: math.unit(325, "lb"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/asana/front.svg",
  4797. extra: 1133 / 1060,
  4798. bottom: 15.2 / 1148.6
  4799. }
  4800. },
  4801. back: {
  4802. height: math.unit(7 + 5 / 6, "feet"),
  4803. weight: math.unit(325, "lb"),
  4804. name: "Back",
  4805. image: {
  4806. source: "./media/characters/asana/back.svg",
  4807. extra: 1114 / 1043,
  4808. bottom: 5 / 1120
  4809. }
  4810. },
  4811. dressedDark: {
  4812. height: math.unit(7 + 5 / 6, "feet"),
  4813. weight: math.unit(325, "lb"),
  4814. name: "Dressed (Dark)",
  4815. image: {
  4816. source: "./media/characters/asana/dressed-dark.svg",
  4817. extra: 1133 / 1060,
  4818. bottom: 15.2 / 1148.6
  4819. }
  4820. },
  4821. dressedLight: {
  4822. height: math.unit(7 + 5 / 6, "feet"),
  4823. weight: math.unit(325, "lb"),
  4824. name: "Dressed (Light)",
  4825. image: {
  4826. source: "./media/characters/asana/dressed-light.svg",
  4827. extra: 1133 / 1060,
  4828. bottom: 15.2 / 1148.6
  4829. }
  4830. },
  4831. },
  4832. [
  4833. {
  4834. name: "Standard",
  4835. height: math.unit(7 + 5 / 6, "feet"),
  4836. default: true
  4837. },
  4838. {
  4839. name: "Large",
  4840. height: math.unit(10, "meters")
  4841. },
  4842. {
  4843. name: "Macro",
  4844. height: math.unit(2500, "meters")
  4845. },
  4846. {
  4847. name: "Megamacro",
  4848. height: math.unit(5e6, "meters")
  4849. },
  4850. {
  4851. name: "Examacro",
  4852. height: math.unit(5e12, "lightyears")
  4853. },
  4854. {
  4855. name: "Max Size",
  4856. height: math.unit(1e31, "lightyears")
  4857. }
  4858. ]
  4859. ))
  4860. characterMakers.push(() => makeCharacter(
  4861. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4862. {
  4863. front: {
  4864. height: math.unit(2, "meter"),
  4865. weight: math.unit(60, "kg"),
  4866. name: "Front",
  4867. image: {
  4868. source: "./media/characters/ebony/front.svg",
  4869. bottom: 0.03,
  4870. extra: 1045 / 810 + 0.03
  4871. }
  4872. },
  4873. side: {
  4874. height: math.unit(2, "meter"),
  4875. weight: math.unit(60, "kg"),
  4876. name: "Side",
  4877. image: {
  4878. source: "./media/characters/ebony/side.svg",
  4879. bottom: 0.03,
  4880. extra: 1045 / 810 + 0.03
  4881. }
  4882. },
  4883. back: {
  4884. height: math.unit(2, "meter"),
  4885. weight: math.unit(60, "kg"),
  4886. name: "Back",
  4887. image: {
  4888. source: "./media/characters/ebony/back.svg",
  4889. bottom: 0.01,
  4890. extra: 1045 / 810 + 0.01
  4891. }
  4892. },
  4893. },
  4894. [
  4895. // TODO check why I did this lol
  4896. {
  4897. name: "Standard",
  4898. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4899. default: true
  4900. },
  4901. {
  4902. name: "Macro",
  4903. height: math.unit(200, "feet")
  4904. },
  4905. {
  4906. name: "Gigamacro",
  4907. height: math.unit(13000, "km")
  4908. }
  4909. ]
  4910. ))
  4911. characterMakers.push(() => makeCharacter(
  4912. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4913. {
  4914. front: {
  4915. height: math.unit(6, "feet"),
  4916. weight: math.unit(175, "lb"),
  4917. name: "Front",
  4918. image: {
  4919. source: "./media/characters/mountain/front.svg",
  4920. extra: 972 / 955,
  4921. bottom: 64 / 1036.6
  4922. }
  4923. },
  4924. back: {
  4925. height: math.unit(6, "feet"),
  4926. weight: math.unit(175, "lb"),
  4927. name: "Back",
  4928. image: {
  4929. source: "./media/characters/mountain/back.svg",
  4930. extra: 970 / 950,
  4931. bottom: 28.25 / 999
  4932. }
  4933. },
  4934. },
  4935. [
  4936. {
  4937. name: "Large",
  4938. height: math.unit(20, "meters")
  4939. },
  4940. {
  4941. name: "Macro",
  4942. height: math.unit(300, "meters")
  4943. },
  4944. {
  4945. name: "Gigamacro",
  4946. height: math.unit(10000, "km"),
  4947. default: true
  4948. },
  4949. {
  4950. name: "Examacro",
  4951. height: math.unit(10e9, "lightyears")
  4952. }
  4953. ]
  4954. ))
  4955. characterMakers.push(() => makeCharacter(
  4956. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4957. {
  4958. front: {
  4959. height: math.unit(8, "feet"),
  4960. weight: math.unit(500, "lb"),
  4961. name: "Front",
  4962. image: {
  4963. source: "./media/characters/rick/front.svg"
  4964. }
  4965. }
  4966. },
  4967. [
  4968. {
  4969. name: "Normal",
  4970. height: math.unit(8, "feet"),
  4971. default: true
  4972. },
  4973. {
  4974. name: "Macro",
  4975. height: math.unit(5, "km")
  4976. }
  4977. ]
  4978. ))
  4979. characterMakers.push(() => makeCharacter(
  4980. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4981. {
  4982. front: {
  4983. height: math.unit(8, "feet"),
  4984. weight: math.unit(120, "lb"),
  4985. name: "Front",
  4986. image: {
  4987. source: "./media/characters/ona/front.svg"
  4988. }
  4989. },
  4990. frontAlt: {
  4991. height: math.unit(8, "feet"),
  4992. weight: math.unit(120, "lb"),
  4993. name: "Front (Alt)",
  4994. image: {
  4995. source: "./media/characters/ona/front-alt.svg"
  4996. }
  4997. },
  4998. back: {
  4999. height: math.unit(8, "feet"),
  5000. weight: math.unit(120, "lb"),
  5001. name: "Back",
  5002. image: {
  5003. source: "./media/characters/ona/back.svg"
  5004. }
  5005. },
  5006. foot: {
  5007. height: math.unit(1.1, "feet"),
  5008. name: "Foot",
  5009. image: {
  5010. source: "./media/characters/ona/foot.svg"
  5011. }
  5012. }
  5013. },
  5014. [
  5015. {
  5016. name: "Megamacro",
  5017. height: math.unit(70, "km"),
  5018. default: true
  5019. },
  5020. {
  5021. name: "Gigamacro",
  5022. height: math.unit(681818, "miles")
  5023. },
  5024. {
  5025. name: "Examacro",
  5026. height: math.unit(3800000, "lightyears")
  5027. },
  5028. ]
  5029. ))
  5030. characterMakers.push(() => makeCharacter(
  5031. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5032. {
  5033. front: {
  5034. height: math.unit(12, "feet"),
  5035. weight: math.unit(3000, "lb"),
  5036. name: "Front",
  5037. image: {
  5038. source: "./media/characters/mech/front.svg",
  5039. extra: 2900 / 2770,
  5040. bottom: 110 / 3010
  5041. }
  5042. },
  5043. back: {
  5044. height: math.unit(12, "feet"),
  5045. weight: math.unit(3000, "lb"),
  5046. name: "Back",
  5047. image: {
  5048. source: "./media/characters/mech/back.svg",
  5049. extra: 3011 / 2890,
  5050. bottom: 94 / 3105
  5051. }
  5052. },
  5053. maw: {
  5054. height: math.unit(3.07, "feet"),
  5055. name: "Maw",
  5056. image: {
  5057. source: "./media/characters/mech/maw.svg"
  5058. }
  5059. },
  5060. head: {
  5061. height: math.unit(3.07, "feet"),
  5062. name: "Head",
  5063. image: {
  5064. source: "./media/characters/mech/head.svg"
  5065. }
  5066. },
  5067. dick: {
  5068. height: math.unit(1.43, "feet"),
  5069. name: "Dick",
  5070. image: {
  5071. source: "./media/characters/mech/dick.svg"
  5072. }
  5073. },
  5074. },
  5075. [
  5076. {
  5077. name: "Normal",
  5078. height: math.unit(12, "feet")
  5079. },
  5080. {
  5081. name: "Macro",
  5082. height: math.unit(300, "feet"),
  5083. default: true
  5084. },
  5085. {
  5086. name: "Macro+",
  5087. height: math.unit(1500, "feet")
  5088. },
  5089. ]
  5090. ))
  5091. characterMakers.push(() => makeCharacter(
  5092. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5093. {
  5094. front: {
  5095. height: math.unit(1.3, "meter"),
  5096. weight: math.unit(30, "kg"),
  5097. name: "Front",
  5098. image: {
  5099. source: "./media/characters/gregory/front.svg",
  5100. }
  5101. }
  5102. },
  5103. [
  5104. {
  5105. name: "Normal",
  5106. height: math.unit(1.3, "meter"),
  5107. default: true
  5108. },
  5109. {
  5110. name: "Macro",
  5111. height: math.unit(20, "meter")
  5112. }
  5113. ]
  5114. ))
  5115. characterMakers.push(() => makeCharacter(
  5116. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5117. {
  5118. front: {
  5119. height: math.unit(2.8, "meter"),
  5120. weight: math.unit(200, "kg"),
  5121. name: "Front",
  5122. image: {
  5123. source: "./media/characters/elory/front.svg",
  5124. }
  5125. }
  5126. },
  5127. [
  5128. {
  5129. name: "Normal",
  5130. height: math.unit(2.8, "meter"),
  5131. default: true
  5132. },
  5133. {
  5134. name: "Macro",
  5135. height: math.unit(38, "meter")
  5136. }
  5137. ]
  5138. ))
  5139. characterMakers.push(() => makeCharacter(
  5140. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5141. {
  5142. front: {
  5143. height: math.unit(470, "feet"),
  5144. weight: math.unit(924, "tons"),
  5145. name: "Front",
  5146. image: {
  5147. source: "./media/characters/angelpatamon/front.svg",
  5148. }
  5149. }
  5150. },
  5151. [
  5152. {
  5153. name: "Normal",
  5154. height: math.unit(470, "feet"),
  5155. default: true
  5156. },
  5157. {
  5158. name: "Deity Size I",
  5159. height: math.unit(28651.2, "km")
  5160. },
  5161. {
  5162. name: "Deity Size II",
  5163. height: math.unit(171907.2, "km")
  5164. }
  5165. ]
  5166. ))
  5167. characterMakers.push(() => makeCharacter(
  5168. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5169. {
  5170. side: {
  5171. height: math.unit(7.2, "meter"),
  5172. weight: math.unit(8.2, "tons"),
  5173. name: "Side",
  5174. image: {
  5175. source: "./media/characters/cryae/side.svg",
  5176. extra: 3500 / 1500
  5177. }
  5178. }
  5179. },
  5180. [
  5181. {
  5182. name: "Normal",
  5183. height: math.unit(7.2, "meter"),
  5184. default: true
  5185. }
  5186. ]
  5187. ))
  5188. characterMakers.push(() => makeCharacter(
  5189. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5190. {
  5191. front: {
  5192. height: math.unit(6, "feet"),
  5193. weight: math.unit(175, "lb"),
  5194. name: "Front",
  5195. image: {
  5196. source: "./media/characters/xera/front.svg",
  5197. extra: 2377 / 1972,
  5198. bottom: 75.5 / 2452
  5199. }
  5200. },
  5201. side: {
  5202. height: math.unit(6, "feet"),
  5203. weight: math.unit(175, "lb"),
  5204. name: "Side",
  5205. image: {
  5206. source: "./media/characters/xera/side.svg",
  5207. extra: 2345 / 2019,
  5208. bottom: 39.7 / 2384
  5209. }
  5210. },
  5211. back: {
  5212. height: math.unit(6, "feet"),
  5213. weight: math.unit(175, "lb"),
  5214. name: "Back",
  5215. image: {
  5216. source: "./media/characters/xera/back.svg",
  5217. extra: 2095 / 1984,
  5218. bottom: 67 / 2166
  5219. }
  5220. },
  5221. },
  5222. [
  5223. {
  5224. name: "Small",
  5225. height: math.unit(10, "feet")
  5226. },
  5227. {
  5228. name: "Macro",
  5229. height: math.unit(500, "meters"),
  5230. default: true
  5231. },
  5232. {
  5233. name: "Macro+",
  5234. height: math.unit(10, "km")
  5235. },
  5236. {
  5237. name: "Gigamacro",
  5238. height: math.unit(25000, "km")
  5239. },
  5240. {
  5241. name: "Teramacro",
  5242. height: math.unit(3e6, "km")
  5243. }
  5244. ]
  5245. ))
  5246. characterMakers.push(() => makeCharacter(
  5247. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5248. {
  5249. front: {
  5250. height: math.unit(6, "feet"),
  5251. weight: math.unit(175, "lb"),
  5252. name: "Front",
  5253. image: {
  5254. source: "./media/characters/nebula/front.svg",
  5255. extra: 2566 / 2362,
  5256. bottom: 81 / 2644
  5257. }
  5258. }
  5259. },
  5260. [
  5261. {
  5262. name: "Small",
  5263. height: math.unit(4.5, "meters")
  5264. },
  5265. {
  5266. name: "Macro",
  5267. height: math.unit(1500, "meters"),
  5268. default: true
  5269. },
  5270. {
  5271. name: "Megamacro",
  5272. height: math.unit(150, "km")
  5273. },
  5274. {
  5275. name: "Gigamacro",
  5276. height: math.unit(27000, "km")
  5277. }
  5278. ]
  5279. ))
  5280. characterMakers.push(() => makeCharacter(
  5281. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5282. {
  5283. front: {
  5284. height: math.unit(6, "feet"),
  5285. weight: math.unit(225, "lb"),
  5286. name: "Front",
  5287. image: {
  5288. source: "./media/characters/abysgar/front.svg",
  5289. extra: 1739/1614,
  5290. bottom: 71/1810
  5291. }
  5292. },
  5293. frontNsfw: {
  5294. height: math.unit(6, "feet"),
  5295. weight: math.unit(225, "lb"),
  5296. name: "Front (NSFW)",
  5297. image: {
  5298. source: "./media/characters/abysgar/front-nsfw.svg",
  5299. extra: 1739/1614,
  5300. bottom: 71/1810
  5301. }
  5302. },
  5303. back: {
  5304. height: math.unit(4.6, "feet"),
  5305. weight: math.unit(225, "lb"),
  5306. name: "Back",
  5307. image: {
  5308. source: "./media/characters/abysgar/back.svg",
  5309. extra: 1384/1327,
  5310. bottom: 0/1384
  5311. }
  5312. },
  5313. head: {
  5314. height: math.unit(1.25, "feet"),
  5315. name: "Head",
  5316. image: {
  5317. source: "./media/characters/abysgar/head.svg",
  5318. extra: 669/569,
  5319. bottom: 0/669
  5320. }
  5321. },
  5322. },
  5323. [
  5324. {
  5325. name: "Small",
  5326. height: math.unit(4.5, "meters")
  5327. },
  5328. {
  5329. name: "Macro",
  5330. height: math.unit(1250, "meters"),
  5331. default: true
  5332. },
  5333. {
  5334. name: "Megamacro",
  5335. height: math.unit(125, "km")
  5336. },
  5337. {
  5338. name: "Gigamacro",
  5339. height: math.unit(26000, "km")
  5340. }
  5341. ]
  5342. ))
  5343. characterMakers.push(() => makeCharacter(
  5344. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5345. {
  5346. front: {
  5347. height: math.unit(6, "feet"),
  5348. weight: math.unit(180, "lb"),
  5349. name: "Front",
  5350. image: {
  5351. source: "./media/characters/yakuz/front.svg"
  5352. }
  5353. }
  5354. },
  5355. [
  5356. {
  5357. name: "Small",
  5358. height: math.unit(5, "meters")
  5359. },
  5360. {
  5361. name: "Macro",
  5362. height: math.unit(1500, "meters"),
  5363. default: true
  5364. },
  5365. {
  5366. name: "Megamacro",
  5367. height: math.unit(200, "km")
  5368. },
  5369. {
  5370. name: "Gigamacro",
  5371. height: math.unit(100000, "km")
  5372. }
  5373. ]
  5374. ))
  5375. characterMakers.push(() => makeCharacter(
  5376. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5377. {
  5378. front: {
  5379. height: math.unit(6, "feet"),
  5380. weight: math.unit(175, "lb"),
  5381. name: "Front",
  5382. image: {
  5383. source: "./media/characters/mirova/front.svg",
  5384. extra: 3334 / 3071,
  5385. bottom: 42 / 3375.6
  5386. }
  5387. }
  5388. },
  5389. [
  5390. {
  5391. name: "Small",
  5392. height: math.unit(5, "meters")
  5393. },
  5394. {
  5395. name: "Macro",
  5396. height: math.unit(900, "meters"),
  5397. default: true
  5398. },
  5399. {
  5400. name: "Megamacro",
  5401. height: math.unit(135, "km")
  5402. },
  5403. {
  5404. name: "Gigamacro",
  5405. height: math.unit(20000, "km")
  5406. }
  5407. ]
  5408. ))
  5409. characterMakers.push(() => makeCharacter(
  5410. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5411. {
  5412. side: {
  5413. height: math.unit(28.35, "feet"),
  5414. weight: math.unit(99.75, "tons"),
  5415. name: "Side",
  5416. image: {
  5417. source: "./media/characters/asana-mech/side.svg",
  5418. extra: 923 / 699,
  5419. bottom: 50 / 975
  5420. }
  5421. },
  5422. chaingun: {
  5423. height: math.unit(7, "feet"),
  5424. weight: math.unit(2400, "lb"),
  5425. name: "Chaingun",
  5426. image: {
  5427. source: "./media/characters/asana-mech/chaingun.svg"
  5428. }
  5429. },
  5430. laser: {
  5431. height: math.unit(7.12, "feet"),
  5432. weight: math.unit(2000, "lb"),
  5433. name: "Laser",
  5434. image: {
  5435. source: "./media/characters/asana-mech/laser.svg"
  5436. }
  5437. },
  5438. },
  5439. [
  5440. {
  5441. name: "Normal",
  5442. height: math.unit(28.35, "feet"),
  5443. default: true
  5444. },
  5445. {
  5446. name: "Macro",
  5447. height: math.unit(2500, "feet")
  5448. },
  5449. {
  5450. name: "Megamacro",
  5451. height: math.unit(25, "miles")
  5452. },
  5453. {
  5454. name: "Examacro",
  5455. height: math.unit(6e8, "lightyears")
  5456. },
  5457. ]
  5458. ))
  5459. characterMakers.push(() => makeCharacter(
  5460. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5461. {
  5462. front: {
  5463. height: math.unit(5, "meters"),
  5464. weight: math.unit(1000, "kg"),
  5465. name: "Front",
  5466. image: {
  5467. source: "./media/characters/asche/front.svg",
  5468. extra: 1258 / 1190,
  5469. bottom: 47 / 1305
  5470. }
  5471. },
  5472. frontUnderwear: {
  5473. height: math.unit(5, "meters"),
  5474. weight: math.unit(1000, "kg"),
  5475. name: "Front (Underwear)",
  5476. image: {
  5477. source: "./media/characters/asche/front-underwear.svg",
  5478. extra: 1258 / 1190,
  5479. bottom: 47 / 1305
  5480. }
  5481. },
  5482. frontDressed: {
  5483. height: math.unit(5, "meters"),
  5484. weight: math.unit(1000, "kg"),
  5485. name: "Front (Dressed)",
  5486. image: {
  5487. source: "./media/characters/asche/front-dressed.svg",
  5488. extra: 1258 / 1190,
  5489. bottom: 47 / 1305
  5490. }
  5491. },
  5492. frontArmor: {
  5493. height: math.unit(5, "meters"),
  5494. weight: math.unit(1000, "kg"),
  5495. name: "Front (Armored)",
  5496. image: {
  5497. source: "./media/characters/asche/front-armored.svg",
  5498. extra: 1374 / 1308,
  5499. bottom: 23 / 1397
  5500. }
  5501. },
  5502. mp724: {
  5503. height: math.unit(0.96, "meters"),
  5504. weight: math.unit(38, "kg"),
  5505. name: "H&K MP724",
  5506. image: {
  5507. source: "./media/characters/asche/h&k-mp724.svg"
  5508. }
  5509. },
  5510. side: {
  5511. height: math.unit(5, "meters"),
  5512. weight: math.unit(1000, "kg"),
  5513. name: "Side",
  5514. image: {
  5515. source: "./media/characters/asche/side.svg",
  5516. extra: 1717 / 1609,
  5517. bottom: 0.005
  5518. }
  5519. },
  5520. back: {
  5521. height: math.unit(5, "meters"),
  5522. weight: math.unit(1000, "kg"),
  5523. name: "Back",
  5524. image: {
  5525. source: "./media/characters/asche/back.svg",
  5526. extra: 1570 / 1501
  5527. }
  5528. },
  5529. },
  5530. [
  5531. {
  5532. name: "DEFCON 5",
  5533. height: math.unit(5, "meters")
  5534. },
  5535. {
  5536. name: "DEFCON 4",
  5537. height: math.unit(500, "meters"),
  5538. default: true
  5539. },
  5540. {
  5541. name: "DEFCON 3",
  5542. height: math.unit(5, "km")
  5543. },
  5544. {
  5545. name: "DEFCON 2",
  5546. height: math.unit(500, "km")
  5547. },
  5548. {
  5549. name: "DEFCON 1",
  5550. height: math.unit(500000, "km")
  5551. },
  5552. {
  5553. name: "DEFCON 0",
  5554. height: math.unit(3, "gigaparsecs")
  5555. },
  5556. ]
  5557. ))
  5558. characterMakers.push(() => makeCharacter(
  5559. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5560. {
  5561. front: {
  5562. height: math.unit(7, "feet"),
  5563. weight: math.unit(92.7, "kg"),
  5564. name: "Front",
  5565. image: {
  5566. source: "./media/characters/gale/front.svg",
  5567. extra: 977/919,
  5568. bottom: 105/1082
  5569. }
  5570. },
  5571. side: {
  5572. height: math.unit(6.7, "feet"),
  5573. weight: math.unit(92.7, "kg"),
  5574. name: "Side",
  5575. image: {
  5576. source: "./media/characters/gale/side.svg",
  5577. extra: 978/922,
  5578. bottom: 140/1118
  5579. }
  5580. },
  5581. back: {
  5582. height: math.unit(7, "feet"),
  5583. weight: math.unit(92.7, "kg"),
  5584. name: "Back",
  5585. image: {
  5586. source: "./media/characters/gale/back.svg",
  5587. extra: 966/920,
  5588. bottom: 61/1027
  5589. }
  5590. },
  5591. maw: {
  5592. height: math.unit(2.23, "feet"),
  5593. name: "Maw",
  5594. image: {
  5595. source: "./media/characters/gale/maw.svg"
  5596. }
  5597. },
  5598. foot: {
  5599. height: math.unit(2.1, "feet"),
  5600. name: "Foot",
  5601. image: {
  5602. source: "./media/characters/gale/foot.svg"
  5603. }
  5604. },
  5605. },
  5606. [
  5607. {
  5608. name: "Normal",
  5609. height: math.unit(7, "feet")
  5610. },
  5611. {
  5612. name: "Macro",
  5613. height: math.unit(150, "feet"),
  5614. default: true
  5615. },
  5616. {
  5617. name: "Macro+",
  5618. height: math.unit(300, "feet")
  5619. },
  5620. ]
  5621. ))
  5622. characterMakers.push(() => makeCharacter(
  5623. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5624. {
  5625. front: {
  5626. height: math.unit(5 + 10/12, "feet"),
  5627. weight: math.unit(67, "kg"),
  5628. name: "Front",
  5629. image: {
  5630. source: "./media/characters/draylen/front.svg",
  5631. extra: 832/777,
  5632. bottom: 85/917
  5633. }
  5634. }
  5635. },
  5636. [
  5637. {
  5638. name: "Normal",
  5639. height: math.unit(5 + 10/12, "feet")
  5640. },
  5641. {
  5642. name: "Macro",
  5643. height: math.unit(150, "feet"),
  5644. default: true
  5645. }
  5646. ]
  5647. ))
  5648. characterMakers.push(() => makeCharacter(
  5649. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5650. {
  5651. front: {
  5652. height: math.unit(7 + 9 / 12, "feet"),
  5653. weight: math.unit(379, "lbs"),
  5654. name: "Front",
  5655. image: {
  5656. source: "./media/characters/chez/front.svg"
  5657. }
  5658. },
  5659. side: {
  5660. height: math.unit(7 + 9 / 12, "feet"),
  5661. weight: math.unit(379, "lbs"),
  5662. name: "Side",
  5663. image: {
  5664. source: "./media/characters/chez/side.svg"
  5665. }
  5666. }
  5667. },
  5668. [
  5669. {
  5670. name: "Normal",
  5671. height: math.unit(7 + 9 / 12, "feet"),
  5672. default: true
  5673. },
  5674. {
  5675. name: "God King",
  5676. height: math.unit(9750000, "meters")
  5677. }
  5678. ]
  5679. ))
  5680. characterMakers.push(() => makeCharacter(
  5681. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5682. {
  5683. front: {
  5684. height: math.unit(6, "feet"),
  5685. weight: math.unit(275, "lbs"),
  5686. name: "Front",
  5687. image: {
  5688. source: "./media/characters/kaylum/front.svg",
  5689. bottom: 0.01,
  5690. extra: 1166 / 1031
  5691. }
  5692. },
  5693. frontWingless: {
  5694. height: math.unit(6, "feet"),
  5695. weight: math.unit(275, "lbs"),
  5696. name: "Front (Wingless)",
  5697. image: {
  5698. source: "./media/characters/kaylum/front-wingless.svg",
  5699. bottom: 0.01,
  5700. extra: 1117 / 1031
  5701. }
  5702. }
  5703. },
  5704. [
  5705. {
  5706. name: "Normal",
  5707. height: math.unit(3.05, "meters")
  5708. },
  5709. {
  5710. name: "Master",
  5711. height: math.unit(5.5, "meters")
  5712. },
  5713. {
  5714. name: "Rampage",
  5715. height: math.unit(19, "meters")
  5716. },
  5717. {
  5718. name: "Macro Lite",
  5719. height: math.unit(37, "meters")
  5720. },
  5721. {
  5722. name: "Hyper Predator",
  5723. height: math.unit(61, "meters")
  5724. },
  5725. {
  5726. name: "Macro",
  5727. height: math.unit(138, "meters"),
  5728. default: true
  5729. }
  5730. ]
  5731. ))
  5732. characterMakers.push(() => makeCharacter(
  5733. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5734. {
  5735. front: {
  5736. height: math.unit(5 + 5 / 12, "feet"),
  5737. weight: math.unit(120, "lbs"),
  5738. name: "Front",
  5739. image: {
  5740. source: "./media/characters/geta/front.svg",
  5741. extra: 1003/933,
  5742. bottom: 21/1024
  5743. }
  5744. },
  5745. paw: {
  5746. height: math.unit(0.35, "feet"),
  5747. name: "Paw",
  5748. image: {
  5749. source: "./media/characters/geta/paw.svg"
  5750. }
  5751. },
  5752. },
  5753. [
  5754. {
  5755. name: "Micro",
  5756. height: math.unit(3, "inches"),
  5757. default: true
  5758. },
  5759. {
  5760. name: "Normal",
  5761. height: math.unit(5 + 5 / 12, "feet")
  5762. }
  5763. ]
  5764. ))
  5765. characterMakers.push(() => makeCharacter(
  5766. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5767. {
  5768. front: {
  5769. height: math.unit(6, "feet"),
  5770. weight: math.unit(300, "lbs"),
  5771. name: "Front",
  5772. image: {
  5773. source: "./media/characters/tyrnn/front.svg"
  5774. }
  5775. }
  5776. },
  5777. [
  5778. {
  5779. name: "Main Height",
  5780. height: math.unit(355, "feet"),
  5781. default: true
  5782. },
  5783. {
  5784. name: "Fave. Height",
  5785. height: math.unit(2400, "feet")
  5786. }
  5787. ]
  5788. ))
  5789. characterMakers.push(() => makeCharacter(
  5790. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5791. {
  5792. front: {
  5793. height: math.unit(6, "feet"),
  5794. weight: math.unit(300, "lbs"),
  5795. name: "Front",
  5796. image: {
  5797. source: "./media/characters/appledectomy/front.svg"
  5798. }
  5799. }
  5800. },
  5801. [
  5802. {
  5803. name: "Macro",
  5804. height: math.unit(2500, "feet")
  5805. },
  5806. {
  5807. name: "Megamacro",
  5808. height: math.unit(50, "miles"),
  5809. default: true
  5810. },
  5811. {
  5812. name: "Gigamacro",
  5813. height: math.unit(5000, "miles")
  5814. },
  5815. {
  5816. name: "Teramacro",
  5817. height: math.unit(250000, "miles")
  5818. },
  5819. ]
  5820. ))
  5821. characterMakers.push(() => makeCharacter(
  5822. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5823. {
  5824. front: {
  5825. height: math.unit(6, "feet"),
  5826. weight: math.unit(200, "lbs"),
  5827. name: "Front",
  5828. image: {
  5829. source: "./media/characters/vulpes/front.svg",
  5830. extra: 573 / 543,
  5831. bottom: 0.033
  5832. }
  5833. },
  5834. side: {
  5835. height: math.unit(6, "feet"),
  5836. weight: math.unit(200, "lbs"),
  5837. name: "Side",
  5838. image: {
  5839. source: "./media/characters/vulpes/side.svg",
  5840. extra: 577 / 549,
  5841. bottom: 11 / 588
  5842. }
  5843. },
  5844. back: {
  5845. height: math.unit(6, "feet"),
  5846. weight: math.unit(200, "lbs"),
  5847. name: "Back",
  5848. image: {
  5849. source: "./media/characters/vulpes/back.svg",
  5850. extra: 573 / 549,
  5851. bottom: 20 / 593
  5852. }
  5853. },
  5854. feet: {
  5855. height: math.unit(1.276, "feet"),
  5856. name: "Feet",
  5857. image: {
  5858. source: "./media/characters/vulpes/feet.svg"
  5859. }
  5860. },
  5861. maw: {
  5862. height: math.unit(1.18, "feet"),
  5863. name: "Maw",
  5864. image: {
  5865. source: "./media/characters/vulpes/maw.svg"
  5866. }
  5867. },
  5868. },
  5869. [
  5870. {
  5871. name: "Micro",
  5872. height: math.unit(2, "inches")
  5873. },
  5874. {
  5875. name: "Normal",
  5876. height: math.unit(6.3, "feet")
  5877. },
  5878. {
  5879. name: "Macro",
  5880. height: math.unit(850, "feet")
  5881. },
  5882. {
  5883. name: "Megamacro",
  5884. height: math.unit(7500, "feet"),
  5885. default: true
  5886. },
  5887. {
  5888. name: "Gigamacro",
  5889. height: math.unit(570000, "miles")
  5890. }
  5891. ]
  5892. ))
  5893. characterMakers.push(() => makeCharacter(
  5894. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5895. {
  5896. front: {
  5897. height: math.unit(6, "feet"),
  5898. weight: math.unit(210, "lbs"),
  5899. name: "Front",
  5900. image: {
  5901. source: "./media/characters/rain-fallen/front.svg"
  5902. }
  5903. },
  5904. side: {
  5905. height: math.unit(6, "feet"),
  5906. weight: math.unit(210, "lbs"),
  5907. name: "Side",
  5908. image: {
  5909. source: "./media/characters/rain-fallen/side.svg"
  5910. }
  5911. },
  5912. back: {
  5913. height: math.unit(6, "feet"),
  5914. weight: math.unit(210, "lbs"),
  5915. name: "Back",
  5916. image: {
  5917. source: "./media/characters/rain-fallen/back.svg"
  5918. }
  5919. },
  5920. feral: {
  5921. height: math.unit(9, "feet"),
  5922. weight: math.unit(700, "lbs"),
  5923. name: "Feral",
  5924. image: {
  5925. source: "./media/characters/rain-fallen/feral.svg"
  5926. }
  5927. },
  5928. },
  5929. [
  5930. {
  5931. name: "Meddling with Mortals",
  5932. height: math.unit(8 + 8/12, "feet")
  5933. },
  5934. {
  5935. name: "Normal",
  5936. height: math.unit(5, "meter")
  5937. },
  5938. {
  5939. name: "Macro",
  5940. height: math.unit(150, "meter"),
  5941. default: true
  5942. },
  5943. {
  5944. name: "Megamacro",
  5945. height: math.unit(278e6, "meter")
  5946. },
  5947. {
  5948. name: "Gigamacro",
  5949. height: math.unit(2e9, "meter")
  5950. },
  5951. {
  5952. name: "Teramacro",
  5953. height: math.unit(8e12, "meter")
  5954. },
  5955. {
  5956. name: "Devourer",
  5957. height: math.unit(14, "zettameters")
  5958. },
  5959. {
  5960. name: "Scarlet King",
  5961. height: math.unit(18, "yottameters")
  5962. },
  5963. {
  5964. name: "Void",
  5965. height: math.unit(1e88, "yottameters")
  5966. }
  5967. ]
  5968. ))
  5969. characterMakers.push(() => makeCharacter(
  5970. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5971. {
  5972. standing: {
  5973. height: math.unit(6, "feet"),
  5974. weight: math.unit(180, "lbs"),
  5975. name: "Standing",
  5976. image: {
  5977. source: "./media/characters/zaakira/standing.svg",
  5978. extra: 1599/1504,
  5979. bottom: 39/1638
  5980. }
  5981. },
  5982. laying: {
  5983. height: math.unit(3.3, "feet"),
  5984. weight: math.unit(180, "lbs"),
  5985. name: "Laying",
  5986. image: {
  5987. source: "./media/characters/zaakira/laying.svg"
  5988. }
  5989. },
  5990. },
  5991. [
  5992. {
  5993. name: "Normal",
  5994. height: math.unit(12, "feet")
  5995. },
  5996. {
  5997. name: "Macro",
  5998. height: math.unit(279, "feet"),
  5999. default: true
  6000. }
  6001. ]
  6002. ))
  6003. characterMakers.push(() => makeCharacter(
  6004. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6005. {
  6006. femSfw: {
  6007. height: math.unit(8, "feet"),
  6008. weight: math.unit(350, "lb"),
  6009. name: "Fem",
  6010. image: {
  6011. source: "./media/characters/sigvald/fem-sfw.svg",
  6012. extra: 182 / 164,
  6013. bottom: 8.7 / 190.5
  6014. }
  6015. },
  6016. femNsfw: {
  6017. height: math.unit(8, "feet"),
  6018. weight: math.unit(350, "lb"),
  6019. name: "Fem (NSFW)",
  6020. image: {
  6021. source: "./media/characters/sigvald/fem-nsfw.svg",
  6022. extra: 182 / 164,
  6023. bottom: 8.7 / 190.5
  6024. }
  6025. },
  6026. maleNsfw: {
  6027. height: math.unit(8, "feet"),
  6028. weight: math.unit(350, "lb"),
  6029. name: "Male (NSFW)",
  6030. image: {
  6031. source: "./media/characters/sigvald/male-nsfw.svg",
  6032. extra: 182 / 164,
  6033. bottom: 8.7 / 190.5
  6034. }
  6035. },
  6036. hermNsfw: {
  6037. height: math.unit(8, "feet"),
  6038. weight: math.unit(350, "lb"),
  6039. name: "Herm (NSFW)",
  6040. image: {
  6041. source: "./media/characters/sigvald/herm-nsfw.svg",
  6042. extra: 182 / 164,
  6043. bottom: 8.7 / 190.5
  6044. }
  6045. },
  6046. dick: {
  6047. height: math.unit(2.36, "feet"),
  6048. name: "Dick",
  6049. image: {
  6050. source: "./media/characters/sigvald/dick.svg"
  6051. }
  6052. },
  6053. eye: {
  6054. height: math.unit(0.31, "feet"),
  6055. name: "Eye",
  6056. image: {
  6057. source: "./media/characters/sigvald/eye.svg"
  6058. }
  6059. },
  6060. mouth: {
  6061. height: math.unit(0.92, "feet"),
  6062. name: "Mouth",
  6063. image: {
  6064. source: "./media/characters/sigvald/mouth.svg"
  6065. }
  6066. },
  6067. paws: {
  6068. height: math.unit(2.2, "feet"),
  6069. name: "Paws",
  6070. image: {
  6071. source: "./media/characters/sigvald/paws.svg"
  6072. }
  6073. }
  6074. },
  6075. [
  6076. {
  6077. name: "Normal",
  6078. height: math.unit(8, "feet")
  6079. },
  6080. {
  6081. name: "Large",
  6082. height: math.unit(12, "feet")
  6083. },
  6084. {
  6085. name: "Larger",
  6086. height: math.unit(20, "feet")
  6087. },
  6088. {
  6089. name: "Macro",
  6090. height: math.unit(150, "feet")
  6091. },
  6092. {
  6093. name: "Macro+",
  6094. height: math.unit(200, "feet"),
  6095. default: true
  6096. },
  6097. ]
  6098. ))
  6099. characterMakers.push(() => makeCharacter(
  6100. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6101. {
  6102. side: {
  6103. height: math.unit(12, "feet"),
  6104. weight: math.unit(2000, "kg"),
  6105. name: "Side",
  6106. image: {
  6107. source: "./media/characters/scott/side.svg",
  6108. extra: 754 / 724,
  6109. bottom: 0.069
  6110. }
  6111. },
  6112. upright: {
  6113. height: math.unit(12, "feet"),
  6114. weight: math.unit(2000, "kg"),
  6115. name: "Upright",
  6116. image: {
  6117. source: "./media/characters/scott/upright.svg",
  6118. extra: 3881 / 3722,
  6119. bottom: 0.05
  6120. }
  6121. },
  6122. },
  6123. [
  6124. {
  6125. name: "Normal",
  6126. height: math.unit(12, "feet"),
  6127. default: true
  6128. },
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6133. {
  6134. side: {
  6135. height: math.unit(8, "meters"),
  6136. weight: math.unit(84755, "lbs"),
  6137. name: "Side",
  6138. image: {
  6139. source: "./media/characters/tobias/side.svg",
  6140. extra: 1474 / 1096,
  6141. bottom: 38.9 / 1513.1235
  6142. }
  6143. },
  6144. maw: {
  6145. height: math.unit(2.3, "meters"),
  6146. name: "Maw",
  6147. image: {
  6148. source: "./media/characters/tobias/maw.svg"
  6149. }
  6150. },
  6151. burp: {
  6152. height: math.unit(2.85, "meters"),
  6153. name: "Burp",
  6154. image: {
  6155. source: "./media/characters/tobias/burp.svg"
  6156. }
  6157. },
  6158. },
  6159. [
  6160. {
  6161. name: "Normal",
  6162. height: math.unit(8, "meters"),
  6163. default: true
  6164. },
  6165. ]
  6166. ))
  6167. characterMakers.push(() => makeCharacter(
  6168. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6169. {
  6170. front: {
  6171. height: math.unit(5.5, "feet"),
  6172. weight: math.unit(400, "lbs"),
  6173. name: "Front",
  6174. image: {
  6175. source: "./media/characters/kieran/front.svg",
  6176. extra: 2694 / 2364,
  6177. bottom: 217 / 2908
  6178. }
  6179. },
  6180. side: {
  6181. height: math.unit(5.5, "feet"),
  6182. weight: math.unit(400, "lbs"),
  6183. name: "Side",
  6184. image: {
  6185. source: "./media/characters/kieran/side.svg",
  6186. extra: 875 / 777,
  6187. bottom: 84.6 / 959
  6188. }
  6189. },
  6190. },
  6191. [
  6192. {
  6193. name: "Normal",
  6194. height: math.unit(5.5, "feet"),
  6195. default: true
  6196. },
  6197. ]
  6198. ))
  6199. characterMakers.push(() => makeCharacter(
  6200. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6201. {
  6202. side: {
  6203. height: math.unit(2, "meters"),
  6204. weight: math.unit(70, "kg"),
  6205. name: "Side",
  6206. image: {
  6207. source: "./media/characters/sanya/side.svg",
  6208. bottom: 0.02,
  6209. extra: 1.02
  6210. }
  6211. },
  6212. },
  6213. [
  6214. {
  6215. name: "Small",
  6216. height: math.unit(2, "meters")
  6217. },
  6218. {
  6219. name: "Normal",
  6220. height: math.unit(3, "meters")
  6221. },
  6222. {
  6223. name: "Macro",
  6224. height: math.unit(16, "meters"),
  6225. default: true
  6226. },
  6227. ]
  6228. ))
  6229. characterMakers.push(() => makeCharacter(
  6230. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6231. {
  6232. front: {
  6233. height: math.unit(2, "meters"),
  6234. weight: math.unit(120, "kg"),
  6235. name: "Front",
  6236. image: {
  6237. source: "./media/characters/miranda/front.svg",
  6238. extra: 195 / 185,
  6239. bottom: 10.9 / 206.5
  6240. }
  6241. },
  6242. back: {
  6243. height: math.unit(2, "meters"),
  6244. weight: math.unit(120, "kg"),
  6245. name: "Back",
  6246. image: {
  6247. source: "./media/characters/miranda/back.svg",
  6248. extra: 201 / 193,
  6249. bottom: 2.3 / 203.7
  6250. }
  6251. },
  6252. },
  6253. [
  6254. {
  6255. name: "Normal",
  6256. height: math.unit(10, "feet"),
  6257. default: true
  6258. }
  6259. ]
  6260. ))
  6261. characterMakers.push(() => makeCharacter(
  6262. { name: "James", species: ["deer"], tags: ["anthro"] },
  6263. {
  6264. side: {
  6265. height: math.unit(2, "meters"),
  6266. weight: math.unit(100, "kg"),
  6267. name: "Front",
  6268. image: {
  6269. source: "./media/characters/james/front.svg",
  6270. extra: 10 / 8.5
  6271. }
  6272. },
  6273. },
  6274. [
  6275. {
  6276. name: "Normal",
  6277. height: math.unit(8.5, "feet"),
  6278. default: true
  6279. }
  6280. ]
  6281. ))
  6282. characterMakers.push(() => makeCharacter(
  6283. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6284. {
  6285. side: {
  6286. height: math.unit(9.5, "feet"),
  6287. weight: math.unit(2500, "lbs"),
  6288. name: "Side",
  6289. image: {
  6290. source: "./media/characters/heather/side.svg"
  6291. }
  6292. },
  6293. },
  6294. [
  6295. {
  6296. name: "Normal",
  6297. height: math.unit(9.5, "feet"),
  6298. default: true
  6299. }
  6300. ]
  6301. ))
  6302. characterMakers.push(() => makeCharacter(
  6303. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6304. {
  6305. side: {
  6306. height: math.unit(6.5, "feet"),
  6307. weight: math.unit(400, "lbs"),
  6308. name: "Side",
  6309. image: {
  6310. source: "./media/characters/lukas/side.svg",
  6311. extra: 7.25 / 6.5
  6312. }
  6313. },
  6314. },
  6315. [
  6316. {
  6317. name: "Normal",
  6318. height: math.unit(6.5, "feet"),
  6319. default: true
  6320. }
  6321. ]
  6322. ))
  6323. characterMakers.push(() => makeCharacter(
  6324. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6325. {
  6326. side: {
  6327. height: math.unit(5, "feet"),
  6328. weight: math.unit(3000, "lbs"),
  6329. name: "Side",
  6330. image: {
  6331. source: "./media/characters/louise/side.svg"
  6332. }
  6333. },
  6334. },
  6335. [
  6336. {
  6337. name: "Normal",
  6338. height: math.unit(5, "feet"),
  6339. default: true
  6340. }
  6341. ]
  6342. ))
  6343. characterMakers.push(() => makeCharacter(
  6344. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6345. {
  6346. side: {
  6347. height: math.unit(6, "feet"),
  6348. weight: math.unit(150, "lbs"),
  6349. name: "Side",
  6350. image: {
  6351. source: "./media/characters/ramona/side.svg",
  6352. extra: 871/854,
  6353. bottom: 41/912
  6354. }
  6355. },
  6356. },
  6357. [
  6358. {
  6359. name: "Normal",
  6360. height: math.unit(6 + 4/12, "feet")
  6361. },
  6362. {
  6363. name: "Minimacro",
  6364. height: math.unit(5.3, "meters"),
  6365. default: true
  6366. },
  6367. {
  6368. name: "Macro",
  6369. height: math.unit(20, "stories")
  6370. },
  6371. {
  6372. name: "Macro+",
  6373. height: math.unit(50, "stories")
  6374. },
  6375. ]
  6376. ))
  6377. characterMakers.push(() => makeCharacter(
  6378. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6379. {
  6380. standing: {
  6381. height: math.unit(5.75, "feet"),
  6382. weight: math.unit(160, "lbs"),
  6383. name: "Standing",
  6384. image: {
  6385. source: "./media/characters/deerpuff/standing.svg",
  6386. extra: 682 / 624
  6387. }
  6388. },
  6389. sitting: {
  6390. height: math.unit(5.75 / 1.79, "feet"),
  6391. weight: math.unit(160, "lbs"),
  6392. name: "Sitting",
  6393. image: {
  6394. source: "./media/characters/deerpuff/sitting.svg",
  6395. bottom: 44 / 400,
  6396. extra: 1
  6397. }
  6398. },
  6399. taurLaying: {
  6400. height: math.unit(6, "feet"),
  6401. weight: math.unit(400, "lbs"),
  6402. name: "Taur (Laying)",
  6403. image: {
  6404. source: "./media/characters/deerpuff/taur-laying.svg"
  6405. }
  6406. },
  6407. },
  6408. [
  6409. {
  6410. name: "Puffball",
  6411. height: math.unit(6, "inches")
  6412. },
  6413. {
  6414. name: "Normalpuff",
  6415. height: math.unit(5.75, "feet")
  6416. },
  6417. {
  6418. name: "Macropuff",
  6419. height: math.unit(1500, "feet"),
  6420. default: true
  6421. },
  6422. {
  6423. name: "Megapuff",
  6424. height: math.unit(500, "miles")
  6425. },
  6426. {
  6427. name: "Gigapuff",
  6428. height: math.unit(250000, "miles")
  6429. },
  6430. {
  6431. name: "Omegapuff",
  6432. height: math.unit(1000, "lightyears")
  6433. },
  6434. ]
  6435. ))
  6436. characterMakers.push(() => makeCharacter(
  6437. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6438. {
  6439. stomping: {
  6440. height: math.unit(6, "feet"),
  6441. weight: math.unit(170, "lbs"),
  6442. name: "Stomping",
  6443. image: {
  6444. source: "./media/characters/vivian/stomping.svg"
  6445. }
  6446. },
  6447. sitting: {
  6448. height: math.unit(6 / 1.75, "feet"),
  6449. weight: math.unit(170, "lbs"),
  6450. name: "Sitting",
  6451. image: {
  6452. source: "./media/characters/vivian/sitting.svg",
  6453. bottom: 1 / 6.4,
  6454. extra: 1,
  6455. }
  6456. },
  6457. },
  6458. [
  6459. {
  6460. name: "Normal",
  6461. height: math.unit(7, "feet"),
  6462. default: true
  6463. },
  6464. {
  6465. name: "Macro",
  6466. height: math.unit(10, "stories")
  6467. },
  6468. {
  6469. name: "Macro+",
  6470. height: math.unit(30, "stories")
  6471. },
  6472. {
  6473. name: "Megamacro",
  6474. height: math.unit(10, "miles")
  6475. },
  6476. {
  6477. name: "Megamacro+",
  6478. height: math.unit(2750000, "meters")
  6479. },
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6484. {
  6485. front: {
  6486. height: math.unit(6, "feet"),
  6487. weight: math.unit(160, "lbs"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/prince/front.svg",
  6491. extra: 1938/1682,
  6492. bottom: 45/1983
  6493. }
  6494. },
  6495. back: {
  6496. height: math.unit(6, "feet"),
  6497. weight: math.unit(160, "lbs"),
  6498. name: "Back",
  6499. image: {
  6500. source: "./media/characters/prince/back.svg",
  6501. extra: 1955/1726,
  6502. bottom: 6/1961
  6503. }
  6504. },
  6505. },
  6506. [
  6507. {
  6508. name: "Normal",
  6509. height: math.unit(7.75, "feet"),
  6510. default: true
  6511. },
  6512. {
  6513. name: "Not cute",
  6514. height: math.unit(17, "feet")
  6515. },
  6516. {
  6517. name: "I said NOT",
  6518. height: math.unit(91, "feet")
  6519. },
  6520. {
  6521. name: "Please stop",
  6522. height: math.unit(560, "feet")
  6523. },
  6524. {
  6525. name: "What have you done",
  6526. height: math.unit(2200, "feet")
  6527. },
  6528. {
  6529. name: "Deer God",
  6530. height: math.unit(3.6, "miles")
  6531. },
  6532. ]
  6533. ))
  6534. characterMakers.push(() => makeCharacter(
  6535. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6536. {
  6537. standing: {
  6538. height: math.unit(6, "feet"),
  6539. weight: math.unit(300, "lbs"),
  6540. name: "Standing",
  6541. image: {
  6542. source: "./media/characters/psymon/standing.svg",
  6543. extra: 1888 / 1810,
  6544. bottom: 0.05
  6545. }
  6546. },
  6547. slithering: {
  6548. height: math.unit(6, "feet"),
  6549. weight: math.unit(300, "lbs"),
  6550. name: "Slithering",
  6551. image: {
  6552. source: "./media/characters/psymon/slithering.svg",
  6553. extra: 1330 / 1224
  6554. }
  6555. },
  6556. slitheringAlt: {
  6557. height: math.unit(6, "feet"),
  6558. weight: math.unit(300, "lbs"),
  6559. name: "Slithering (Alt)",
  6560. image: {
  6561. source: "./media/characters/psymon/slithering-alt.svg",
  6562. extra: 1330 / 1224
  6563. }
  6564. },
  6565. },
  6566. [
  6567. {
  6568. name: "Normal",
  6569. height: math.unit(11.25, "feet"),
  6570. default: true
  6571. },
  6572. {
  6573. name: "Large",
  6574. height: math.unit(27, "feet")
  6575. },
  6576. {
  6577. name: "Giant",
  6578. height: math.unit(87, "feet")
  6579. },
  6580. {
  6581. name: "Macro",
  6582. height: math.unit(365, "feet")
  6583. },
  6584. {
  6585. name: "Megamacro",
  6586. height: math.unit(3, "miles")
  6587. },
  6588. {
  6589. name: "World Serpent",
  6590. height: math.unit(8000, "miles")
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6596. {
  6597. front: {
  6598. height: math.unit(6, "feet"),
  6599. weight: math.unit(180, "lbs"),
  6600. name: "Front",
  6601. image: {
  6602. source: "./media/characters/daimos/front.svg",
  6603. extra: 4160 / 3897,
  6604. bottom: 0.021
  6605. }
  6606. }
  6607. },
  6608. [
  6609. {
  6610. name: "Normal",
  6611. height: math.unit(8, "feet"),
  6612. default: true
  6613. },
  6614. {
  6615. name: "Big Dog",
  6616. height: math.unit(22, "feet")
  6617. },
  6618. {
  6619. name: "Macro",
  6620. height: math.unit(127, "feet")
  6621. },
  6622. {
  6623. name: "Megamacro",
  6624. height: math.unit(3600, "feet")
  6625. },
  6626. ]
  6627. ))
  6628. characterMakers.push(() => makeCharacter(
  6629. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6630. {
  6631. side: {
  6632. height: math.unit(6, "feet"),
  6633. weight: math.unit(180, "lbs"),
  6634. name: "Side",
  6635. image: {
  6636. source: "./media/characters/blake/side.svg",
  6637. extra: 1212 / 1120,
  6638. bottom: 0.05
  6639. }
  6640. },
  6641. crouched: {
  6642. height: math.unit(6 * 0.57, "feet"),
  6643. weight: math.unit(180, "lbs"),
  6644. name: "Crouched",
  6645. image: {
  6646. source: "./media/characters/blake/crouched.svg",
  6647. extra: 840 / 587,
  6648. bottom: 0.04
  6649. }
  6650. },
  6651. bent: {
  6652. height: math.unit(6 * 0.75, "feet"),
  6653. weight: math.unit(180, "lbs"),
  6654. name: "Bent",
  6655. image: {
  6656. source: "./media/characters/blake/bent.svg",
  6657. extra: 592 / 544,
  6658. bottom: 0.035
  6659. }
  6660. },
  6661. },
  6662. [
  6663. {
  6664. name: "Normal",
  6665. height: math.unit(8 + 1 / 6, "feet"),
  6666. default: true
  6667. },
  6668. {
  6669. name: "Big Backside",
  6670. height: math.unit(37, "feet")
  6671. },
  6672. {
  6673. name: "Subway Shredder",
  6674. height: math.unit(72, "feet")
  6675. },
  6676. {
  6677. name: "City Carver",
  6678. height: math.unit(1675, "feet")
  6679. },
  6680. {
  6681. name: "Tectonic Tweaker",
  6682. height: math.unit(2300, "miles")
  6683. },
  6684. ]
  6685. ))
  6686. characterMakers.push(() => makeCharacter(
  6687. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6688. {
  6689. front: {
  6690. height: math.unit(6, "feet"),
  6691. weight: math.unit(180, "lbs"),
  6692. name: "Front",
  6693. image: {
  6694. source: "./media/characters/guisetto/front.svg",
  6695. extra: 856 / 817,
  6696. bottom: 0.06
  6697. }
  6698. },
  6699. airborne: {
  6700. height: math.unit(6, "feet"),
  6701. weight: math.unit(180, "lbs"),
  6702. name: "Airborne",
  6703. image: {
  6704. source: "./media/characters/guisetto/airborne.svg",
  6705. extra: 584 / 525
  6706. }
  6707. },
  6708. },
  6709. [
  6710. {
  6711. name: "Normal",
  6712. height: math.unit(10 + 11 / 12, "feet"),
  6713. default: true
  6714. },
  6715. {
  6716. name: "Large",
  6717. height: math.unit(35, "feet")
  6718. },
  6719. {
  6720. name: "Macro",
  6721. height: math.unit(475, "feet")
  6722. },
  6723. ]
  6724. ))
  6725. characterMakers.push(() => makeCharacter(
  6726. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6727. {
  6728. front: {
  6729. height: math.unit(6, "feet"),
  6730. weight: math.unit(180, "lbs"),
  6731. name: "Front",
  6732. image: {
  6733. source: "./media/characters/luxor/front.svg",
  6734. extra: 2940 / 2152
  6735. }
  6736. },
  6737. back: {
  6738. height: math.unit(6, "feet"),
  6739. weight: math.unit(180, "lbs"),
  6740. name: "Back",
  6741. image: {
  6742. source: "./media/characters/luxor/back.svg",
  6743. extra: 1083 / 960
  6744. }
  6745. },
  6746. },
  6747. [
  6748. {
  6749. name: "Normal",
  6750. height: math.unit(5 + 5 / 6, "feet"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Lamp",
  6755. height: math.unit(50, "feet")
  6756. },
  6757. {
  6758. name: "Lämp",
  6759. height: math.unit(300, "feet")
  6760. },
  6761. {
  6762. name: "The sun is a lamp",
  6763. height: math.unit(250000, "miles")
  6764. },
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6769. {
  6770. front: {
  6771. height: math.unit(6, "feet"),
  6772. weight: math.unit(50, "lbs"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/huoyan/front.svg"
  6776. }
  6777. },
  6778. side: {
  6779. height: math.unit(6, "feet"),
  6780. weight: math.unit(180, "lbs"),
  6781. name: "Side",
  6782. image: {
  6783. source: "./media/characters/huoyan/side.svg"
  6784. }
  6785. },
  6786. },
  6787. [
  6788. {
  6789. name: "Chef",
  6790. height: math.unit(9, "feet")
  6791. },
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(65, "feet"),
  6795. default: true
  6796. },
  6797. {
  6798. name: "Macro",
  6799. height: math.unit(780, "feet")
  6800. },
  6801. {
  6802. name: "Flaming Mountain",
  6803. height: math.unit(4.8, "miles")
  6804. },
  6805. {
  6806. name: "Celestial",
  6807. height: math.unit(765000, "miles")
  6808. },
  6809. ]
  6810. ))
  6811. characterMakers.push(() => makeCharacter(
  6812. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6813. {
  6814. front: {
  6815. height: math.unit(5 + 3 / 4, "feet"),
  6816. weight: math.unit(120, "lbs"),
  6817. name: "Front",
  6818. image: {
  6819. source: "./media/characters/tails/front.svg"
  6820. }
  6821. }
  6822. },
  6823. [
  6824. {
  6825. name: "Normal",
  6826. height: math.unit(5 + 3 / 4, "feet"),
  6827. default: true
  6828. }
  6829. ]
  6830. ))
  6831. characterMakers.push(() => makeCharacter(
  6832. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6833. {
  6834. front: {
  6835. height: math.unit(4, "feet"),
  6836. weight: math.unit(50, "lbs"),
  6837. name: "Front",
  6838. image: {
  6839. source: "./media/characters/rainy/front.svg"
  6840. }
  6841. }
  6842. },
  6843. [
  6844. {
  6845. name: "Macro",
  6846. height: math.unit(800, "feet"),
  6847. default: true
  6848. }
  6849. ]
  6850. ))
  6851. characterMakers.push(() => makeCharacter(
  6852. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6853. {
  6854. front: {
  6855. height: math.unit(6, "feet"),
  6856. weight: math.unit(150, "lbs"),
  6857. name: "Front",
  6858. image: {
  6859. source: "./media/characters/rainier/front.svg"
  6860. }
  6861. }
  6862. },
  6863. [
  6864. {
  6865. name: "Micro",
  6866. height: math.unit(2, "mm"),
  6867. default: true
  6868. }
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6873. {
  6874. front: {
  6875. height: math.unit(8 + 4/12, "feet"),
  6876. weight: math.unit(450, "kilograms"),
  6877. name: "Front",
  6878. image: {
  6879. source: "./media/characters/andy-renard/front.svg",
  6880. extra: 862/809,
  6881. bottom: 85/947
  6882. },
  6883. extraAttributes: {
  6884. "pawSize": {
  6885. name: "Paw Size",
  6886. power: 2,
  6887. type: "area",
  6888. base: math.unit(0.45*0.3, "meters^2")
  6889. },
  6890. "handSize": {
  6891. name: "Hand Size",
  6892. power: 2,
  6893. type: "area",
  6894. base: math.unit(0.4 * 0.3, "meters^2")
  6895. },
  6896. "cockSize": {
  6897. name: "Cock Length",
  6898. power: 1,
  6899. type: "length",
  6900. base: math.unit(0.75, "meters")
  6901. },
  6902. "ballDiameter": {
  6903. name: "Ball Diameter",
  6904. power: 1,
  6905. type: "length",
  6906. base: math.unit(0.3, "meters")
  6907. },
  6908. "ballVolume": {
  6909. name: "Ball Volume",
  6910. power: 3,
  6911. type: "volume",
  6912. base: math.unit(0.01413716694, "meters^3")
  6913. },
  6914. }
  6915. },
  6916. back: {
  6917. height: math.unit(8 + 4/12, "feet"),
  6918. weight: math.unit(450, "kilograms"),
  6919. name: "Back",
  6920. image: {
  6921. source: "./media/characters/andy-renard/back.svg",
  6922. extra: 1112/1033,
  6923. bottom: 64/1176
  6924. },
  6925. extraAttributes: {
  6926. "pawSize": {
  6927. name: "Paw Size",
  6928. power: 2,
  6929. type: "area",
  6930. base: math.unit(0.45*0.3, "meters^2")
  6931. },
  6932. "handSize": {
  6933. name: "Hand Size",
  6934. power: 2,
  6935. type: "area",
  6936. base: math.unit(0.4 * 0.3, "meters^2")
  6937. },
  6938. "cockSize": {
  6939. name: "Cock Length",
  6940. power: 1,
  6941. type: "length",
  6942. base: math.unit(0.75, "meters")
  6943. },
  6944. "ballDiameter": {
  6945. name: "Ball Diameter",
  6946. power: 1,
  6947. type: "length",
  6948. base: math.unit(0.3, "meters")
  6949. },
  6950. "ballVolume": {
  6951. name: "Ball Volume",
  6952. power: 3,
  6953. type: "volume",
  6954. base: math.unit(0.01413716694, "meters^3")
  6955. },
  6956. }
  6957. },
  6958. },
  6959. [
  6960. {
  6961. name: "Tall",
  6962. height: math.unit(6 + 8/12, "feet")
  6963. },
  6964. {
  6965. name: "Very Tall",
  6966. height: math.unit(8 + 4/12, "feet")
  6967. },
  6968. {
  6969. name: "Mini Macro",
  6970. height: math.unit(15, "feet"),
  6971. default: true
  6972. },
  6973. {
  6974. name: "Giant",
  6975. height: math.unit(50, "feet")
  6976. },
  6977. {
  6978. name: "Nice",
  6979. height: math.unit(69, "feet")
  6980. },
  6981. {
  6982. name: "Macro",
  6983. height: math.unit(100, "feet")
  6984. },
  6985. {
  6986. name: "Enormous",
  6987. height: math.unit(500, "feet")
  6988. },
  6989. {
  6990. name: "Gargantuan",
  6991. height: math.unit(1000, "feet")
  6992. },
  6993. {
  6994. name: "Mega",
  6995. height: math.unit(1, "mile")
  6996. },
  6997. {
  6998. name: "Giga",
  6999. height: math.unit(50, "miles")
  7000. },
  7001. {
  7002. name: "Tera",
  7003. height: math.unit(1000, "miles")
  7004. },
  7005. {
  7006. name: "Cosmic",
  7007. height: math.unit(1.5, "galaxies")
  7008. },
  7009. {
  7010. name: "God",
  7011. height: math.unit(1.5, "universes")
  7012. },
  7013. {
  7014. name: "Chief Execute God",
  7015. height: math.unit(1.5, "multiverses")
  7016. },
  7017. ]
  7018. ))
  7019. characterMakers.push(() => makeCharacter(
  7020. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7021. {
  7022. front: {
  7023. height: math.unit(6, "feet"),
  7024. weight: math.unit(210, "lbs"),
  7025. name: "Front",
  7026. image: {
  7027. source: "./media/characters/cimmaron/front-sfw.svg",
  7028. extra: 701 / 676,
  7029. bottom: 0.046
  7030. }
  7031. },
  7032. back: {
  7033. height: math.unit(6, "feet"),
  7034. weight: math.unit(210, "lbs"),
  7035. name: "Back",
  7036. image: {
  7037. source: "./media/characters/cimmaron/back-sfw.svg",
  7038. extra: 701 / 676,
  7039. bottom: 0.046
  7040. }
  7041. },
  7042. frontNsfw: {
  7043. height: math.unit(6, "feet"),
  7044. weight: math.unit(210, "lbs"),
  7045. name: "Front (NSFW)",
  7046. image: {
  7047. source: "./media/characters/cimmaron/front-nsfw.svg",
  7048. extra: 701 / 676,
  7049. bottom: 0.046
  7050. }
  7051. },
  7052. backNsfw: {
  7053. height: math.unit(6, "feet"),
  7054. weight: math.unit(210, "lbs"),
  7055. name: "Back (NSFW)",
  7056. image: {
  7057. source: "./media/characters/cimmaron/back-nsfw.svg",
  7058. extra: 701 / 676,
  7059. bottom: 0.046
  7060. }
  7061. },
  7062. dick: {
  7063. height: math.unit(1.714, "feet"),
  7064. name: "Dick",
  7065. image: {
  7066. source: "./media/characters/cimmaron/dick.svg"
  7067. }
  7068. },
  7069. },
  7070. [
  7071. {
  7072. name: "Normal",
  7073. height: math.unit(6, "feet"),
  7074. default: true
  7075. },
  7076. {
  7077. name: "Macro Mayor",
  7078. height: math.unit(350, "meters")
  7079. },
  7080. ]
  7081. ))
  7082. characterMakers.push(() => makeCharacter(
  7083. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7084. {
  7085. front: {
  7086. height: math.unit(6, "feet"),
  7087. weight: math.unit(200, "lbs"),
  7088. name: "Front",
  7089. image: {
  7090. source: "./media/characters/akari/front.svg",
  7091. extra: 962 / 901,
  7092. bottom: 0.04
  7093. }
  7094. }
  7095. },
  7096. [
  7097. {
  7098. name: "Micro",
  7099. height: math.unit(5, "inches"),
  7100. default: true
  7101. },
  7102. {
  7103. name: "Normal",
  7104. height: math.unit(7, "feet")
  7105. },
  7106. ]
  7107. ))
  7108. characterMakers.push(() => makeCharacter(
  7109. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7110. {
  7111. front: {
  7112. height: math.unit(6, "feet"),
  7113. weight: math.unit(140, "lbs"),
  7114. name: "Front",
  7115. image: {
  7116. source: "./media/characters/cynosura/front.svg",
  7117. extra: 437/410,
  7118. bottom: 9/446
  7119. }
  7120. },
  7121. back: {
  7122. height: math.unit(6, "feet"),
  7123. weight: math.unit(140, "lbs"),
  7124. name: "Back",
  7125. image: {
  7126. source: "./media/characters/cynosura/back.svg",
  7127. extra: 1304/1160,
  7128. bottom: 71/1375
  7129. }
  7130. },
  7131. },
  7132. [
  7133. {
  7134. name: "Micro",
  7135. height: math.unit(4, "inches")
  7136. },
  7137. {
  7138. name: "Normal",
  7139. height: math.unit(5.75, "feet"),
  7140. default: true
  7141. },
  7142. {
  7143. name: "Tall",
  7144. height: math.unit(10, "feet")
  7145. },
  7146. {
  7147. name: "Big",
  7148. height: math.unit(20, "feet")
  7149. },
  7150. {
  7151. name: "Macro",
  7152. height: math.unit(50, "feet")
  7153. },
  7154. ]
  7155. ))
  7156. characterMakers.push(() => makeCharacter(
  7157. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7158. {
  7159. front: {
  7160. height: math.unit(13 + 2/12, "feet"),
  7161. weight: math.unit(800, "kg"),
  7162. name: "Front",
  7163. image: {
  7164. source: "./media/characters/gin/front.svg",
  7165. extra: 1312/1191,
  7166. bottom: 45/1357
  7167. }
  7168. },
  7169. mouth: {
  7170. height: math.unit(2.39 * 1.8, "feet"),
  7171. name: "Mouth",
  7172. image: {
  7173. source: "./media/characters/gin/mouth.svg"
  7174. }
  7175. },
  7176. hand: {
  7177. height: math.unit(1.57 * 2.19, "feet"),
  7178. name: "Hand",
  7179. image: {
  7180. source: "./media/characters/gin/hand.svg"
  7181. }
  7182. },
  7183. foot: {
  7184. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7185. name: "Foot",
  7186. image: {
  7187. source: "./media/characters/gin/foot.svg"
  7188. }
  7189. },
  7190. sole: {
  7191. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7192. name: "Sole",
  7193. image: {
  7194. source: "./media/characters/gin/sole.svg"
  7195. }
  7196. },
  7197. },
  7198. [
  7199. {
  7200. name: "Very Small",
  7201. height: math.unit(13 + 2 / 12, "feet")
  7202. },
  7203. {
  7204. name: "Micro",
  7205. height: math.unit(600, "miles")
  7206. },
  7207. {
  7208. name: "Regular",
  7209. height: math.unit(20, "earths"),
  7210. default: true
  7211. },
  7212. {
  7213. name: "Macro",
  7214. height: math.unit(2.2, "solarradii")
  7215. },
  7216. {
  7217. name: "Teramacro",
  7218. height: math.unit(1.2, "galaxies")
  7219. },
  7220. {
  7221. name: "Omegamacro",
  7222. height: math.unit(200, "universes")
  7223. },
  7224. ]
  7225. ))
  7226. characterMakers.push(() => makeCharacter(
  7227. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7228. {
  7229. front: {
  7230. height: math.unit(6 + 1 / 6, "feet"),
  7231. weight: math.unit(178, "lbs"),
  7232. name: "Front",
  7233. image: {
  7234. source: "./media/characters/guy/front.svg"
  7235. }
  7236. }
  7237. },
  7238. [
  7239. {
  7240. name: "Normal",
  7241. height: math.unit(6 + 1 / 6, "feet"),
  7242. default: true
  7243. },
  7244. {
  7245. name: "Large",
  7246. height: math.unit(25 + 7 / 12, "feet")
  7247. },
  7248. {
  7249. name: "Macro",
  7250. height: math.unit(60 + 9 / 12, "feet")
  7251. },
  7252. {
  7253. name: "Macro+",
  7254. height: math.unit(246, "feet")
  7255. },
  7256. {
  7257. name: "Macro++",
  7258. height: math.unit(878, "feet")
  7259. }
  7260. ]
  7261. ))
  7262. characterMakers.push(() => makeCharacter(
  7263. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7264. {
  7265. front: {
  7266. height: math.unit(9, "feet"),
  7267. weight: math.unit(800, "lbs"),
  7268. name: "Front",
  7269. image: {
  7270. source: "./media/characters/tiberius/front.svg",
  7271. extra: 2295 / 2071
  7272. }
  7273. },
  7274. back: {
  7275. height: math.unit(9, "feet"),
  7276. weight: math.unit(800, "lbs"),
  7277. name: "Back",
  7278. image: {
  7279. source: "./media/characters/tiberius/back.svg",
  7280. extra: 2373 / 2160
  7281. }
  7282. },
  7283. },
  7284. [
  7285. {
  7286. name: "Normal",
  7287. height: math.unit(9, "feet"),
  7288. default: true
  7289. }
  7290. ]
  7291. ))
  7292. characterMakers.push(() => makeCharacter(
  7293. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7294. {
  7295. front: {
  7296. height: math.unit(6, "feet"),
  7297. weight: math.unit(600, "lbs"),
  7298. name: "Front",
  7299. image: {
  7300. source: "./media/characters/surgo/front.svg",
  7301. extra: 3591 / 2227
  7302. }
  7303. },
  7304. back: {
  7305. height: math.unit(6, "feet"),
  7306. weight: math.unit(600, "lbs"),
  7307. name: "Back",
  7308. image: {
  7309. source: "./media/characters/surgo/back.svg",
  7310. extra: 3557 / 2228
  7311. }
  7312. },
  7313. laying: {
  7314. height: math.unit(6 * 0.85, "feet"),
  7315. weight: math.unit(600, "lbs"),
  7316. name: "Laying",
  7317. image: {
  7318. source: "./media/characters/surgo/laying.svg"
  7319. }
  7320. },
  7321. },
  7322. [
  7323. {
  7324. name: "Normal",
  7325. height: math.unit(6, "feet"),
  7326. default: true
  7327. }
  7328. ]
  7329. ))
  7330. characterMakers.push(() => makeCharacter(
  7331. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7332. {
  7333. side: {
  7334. height: math.unit(6, "feet"),
  7335. weight: math.unit(150, "lbs"),
  7336. name: "Side",
  7337. image: {
  7338. source: "./media/characters/cibus/side.svg",
  7339. extra: 800 / 400
  7340. }
  7341. },
  7342. },
  7343. [
  7344. {
  7345. name: "Normal",
  7346. height: math.unit(6, "feet"),
  7347. default: true
  7348. }
  7349. ]
  7350. ))
  7351. characterMakers.push(() => makeCharacter(
  7352. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7353. {
  7354. front: {
  7355. height: math.unit(6, "feet"),
  7356. weight: math.unit(240, "lbs"),
  7357. name: "Front",
  7358. image: {
  7359. source: "./media/characters/nibbles/front.svg"
  7360. }
  7361. },
  7362. side: {
  7363. height: math.unit(6, "feet"),
  7364. weight: math.unit(240, "lbs"),
  7365. name: "Side",
  7366. image: {
  7367. source: "./media/characters/nibbles/side.svg"
  7368. }
  7369. },
  7370. },
  7371. [
  7372. {
  7373. name: "Normal",
  7374. height: math.unit(9, "feet"),
  7375. default: true
  7376. }
  7377. ]
  7378. ))
  7379. characterMakers.push(() => makeCharacter(
  7380. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7381. {
  7382. side: {
  7383. height: math.unit(5 + 1 / 6, "feet"),
  7384. weight: math.unit(130, "lbs"),
  7385. name: "Side",
  7386. image: {
  7387. source: "./media/characters/rikky/side.svg",
  7388. extra: 851 / 801
  7389. }
  7390. },
  7391. },
  7392. [
  7393. {
  7394. name: "Normal",
  7395. height: math.unit(5 + 1 / 6, "feet")
  7396. },
  7397. {
  7398. name: "Macro",
  7399. height: math.unit(152, "feet"),
  7400. default: true
  7401. },
  7402. {
  7403. name: "Megamacro",
  7404. height: math.unit(7, "miles")
  7405. }
  7406. ]
  7407. ))
  7408. characterMakers.push(() => makeCharacter(
  7409. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7410. {
  7411. side: {
  7412. height: math.unit(370, "cm"),
  7413. weight: math.unit(350, "lbs"),
  7414. name: "Side",
  7415. image: {
  7416. source: "./media/characters/malfressa/side.svg"
  7417. }
  7418. },
  7419. walking: {
  7420. height: math.unit(370, "cm"),
  7421. weight: math.unit(350, "lbs"),
  7422. name: "Walking",
  7423. image: {
  7424. source: "./media/characters/malfressa/walking.svg"
  7425. }
  7426. },
  7427. feral: {
  7428. height: math.unit(2500, "cm"),
  7429. weight: math.unit(100000, "lbs"),
  7430. name: "Feral",
  7431. image: {
  7432. source: "./media/characters/malfressa/feral.svg",
  7433. extra: 2108 / 837,
  7434. bottom: 0.02
  7435. }
  7436. },
  7437. },
  7438. [
  7439. {
  7440. name: "Normal",
  7441. height: math.unit(370, "cm")
  7442. },
  7443. {
  7444. name: "Macro",
  7445. height: math.unit(300, "meters"),
  7446. default: true
  7447. }
  7448. ]
  7449. ))
  7450. characterMakers.push(() => makeCharacter(
  7451. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7452. {
  7453. front: {
  7454. height: math.unit(6, "feet"),
  7455. weight: math.unit(60, "kg"),
  7456. name: "Front",
  7457. image: {
  7458. source: "./media/characters/jaro/front.svg",
  7459. extra: 845/817,
  7460. bottom: 45/890
  7461. }
  7462. },
  7463. back: {
  7464. height: math.unit(6, "feet"),
  7465. weight: math.unit(60, "kg"),
  7466. name: "Back",
  7467. image: {
  7468. source: "./media/characters/jaro/back.svg",
  7469. extra: 847/817,
  7470. bottom: 34/881
  7471. }
  7472. },
  7473. },
  7474. [
  7475. {
  7476. name: "Micro",
  7477. height: math.unit(7, "inches")
  7478. },
  7479. {
  7480. name: "Normal",
  7481. height: math.unit(5.5, "feet"),
  7482. default: true
  7483. },
  7484. {
  7485. name: "Minimacro",
  7486. height: math.unit(20, "feet")
  7487. },
  7488. {
  7489. name: "Macro",
  7490. height: math.unit(200, "meters")
  7491. }
  7492. ]
  7493. ))
  7494. characterMakers.push(() => makeCharacter(
  7495. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7496. {
  7497. front: {
  7498. height: math.unit(6, "feet"),
  7499. weight: math.unit(195, "lb"),
  7500. name: "Front",
  7501. image: {
  7502. source: "./media/characters/rogue/front.svg"
  7503. }
  7504. },
  7505. },
  7506. [
  7507. {
  7508. name: "Macro",
  7509. height: math.unit(90, "feet"),
  7510. default: true
  7511. },
  7512. ]
  7513. ))
  7514. characterMakers.push(() => makeCharacter(
  7515. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7516. {
  7517. standing: {
  7518. height: math.unit(5 + 8 / 12, "feet"),
  7519. weight: math.unit(140, "lb"),
  7520. name: "Standing",
  7521. image: {
  7522. source: "./media/characters/piper/standing.svg",
  7523. extra: 1440/1284,
  7524. bottom: 66/1506
  7525. }
  7526. },
  7527. running: {
  7528. height: math.unit(5 + 8 / 12, "feet"),
  7529. weight: math.unit(140, "lb"),
  7530. name: "Running",
  7531. image: {
  7532. source: "./media/characters/piper/running.svg",
  7533. extra: 3948/3655,
  7534. bottom: 0/3948
  7535. }
  7536. },
  7537. sole: {
  7538. height: math.unit(0.81, "feet"),
  7539. weight: math.unit(2, "kg"),
  7540. name: "Sole",
  7541. image: {
  7542. source: "./media/characters/piper/sole.svg"
  7543. }
  7544. },
  7545. nipple: {
  7546. height: math.unit(0.25, "feet"),
  7547. weight: math.unit(1.5, "lb"),
  7548. name: "Nipple",
  7549. image: {
  7550. source: "./media/characters/piper/nipple.svg"
  7551. }
  7552. },
  7553. head: {
  7554. height: math.unit(1.1, "feet"),
  7555. name: "Head",
  7556. image: {
  7557. source: "./media/characters/piper/head.svg"
  7558. }
  7559. },
  7560. },
  7561. [
  7562. {
  7563. name: "Micro",
  7564. height: math.unit(2, "inches")
  7565. },
  7566. {
  7567. name: "Normal",
  7568. height: math.unit(5 + 8 / 12, "feet")
  7569. },
  7570. {
  7571. name: "Macro",
  7572. height: math.unit(250, "feet"),
  7573. default: true
  7574. },
  7575. {
  7576. name: "Megamacro",
  7577. height: math.unit(7, "miles")
  7578. },
  7579. ]
  7580. ))
  7581. characterMakers.push(() => makeCharacter(
  7582. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7583. {
  7584. front: {
  7585. height: math.unit(6, "feet"),
  7586. weight: math.unit(220, "lb"),
  7587. name: "Front",
  7588. image: {
  7589. source: "./media/characters/gemini/front.svg"
  7590. }
  7591. },
  7592. back: {
  7593. height: math.unit(6, "feet"),
  7594. weight: math.unit(220, "lb"),
  7595. name: "Back",
  7596. image: {
  7597. source: "./media/characters/gemini/back.svg"
  7598. }
  7599. },
  7600. kneeling: {
  7601. height: math.unit(6 / 1.5, "feet"),
  7602. weight: math.unit(220, "lb"),
  7603. name: "Kneeling",
  7604. image: {
  7605. source: "./media/characters/gemini/kneeling.svg",
  7606. bottom: 0.02
  7607. }
  7608. },
  7609. },
  7610. [
  7611. {
  7612. name: "Macro",
  7613. height: math.unit(300, "meters"),
  7614. default: true
  7615. },
  7616. {
  7617. name: "Megamacro",
  7618. height: math.unit(6900, "meters")
  7619. },
  7620. ]
  7621. ))
  7622. characterMakers.push(() => makeCharacter(
  7623. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7624. {
  7625. anthro: {
  7626. height: math.unit(2.35, "meters"),
  7627. weight: math.unit(73, "kg"),
  7628. name: "Anthro",
  7629. image: {
  7630. source: "./media/characters/alicia/anthro.svg",
  7631. extra: 2571 / 2385,
  7632. bottom: 75 / 2648
  7633. }
  7634. },
  7635. paw: {
  7636. height: math.unit(1.32, "feet"),
  7637. name: "Paw",
  7638. image: {
  7639. source: "./media/characters/alicia/paw.svg"
  7640. }
  7641. },
  7642. feral: {
  7643. height: math.unit(1.69, "meters"),
  7644. weight: math.unit(73, "kg"),
  7645. name: "Feral",
  7646. image: {
  7647. source: "./media/characters/alicia/feral.svg",
  7648. extra: 2123 / 1715,
  7649. bottom: 222 / 2349
  7650. }
  7651. },
  7652. },
  7653. [
  7654. {
  7655. name: "Normal",
  7656. height: math.unit(2.35, "meters")
  7657. },
  7658. {
  7659. name: "Macro",
  7660. height: math.unit(60, "meters"),
  7661. default: true
  7662. },
  7663. {
  7664. name: "Megamacro",
  7665. height: math.unit(10000, "kilometers")
  7666. },
  7667. ]
  7668. ))
  7669. characterMakers.push(() => makeCharacter(
  7670. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7671. {
  7672. front: {
  7673. height: math.unit(7, "feet"),
  7674. weight: math.unit(250, "lbs"),
  7675. name: "Front",
  7676. image: {
  7677. source: "./media/characters/archy/front.svg"
  7678. }
  7679. }
  7680. },
  7681. [
  7682. {
  7683. name: "Micro",
  7684. height: math.unit(1, "inch")
  7685. },
  7686. {
  7687. name: "Shorty",
  7688. height: math.unit(5, "feet")
  7689. },
  7690. {
  7691. name: "Normal",
  7692. height: math.unit(7, "feet")
  7693. },
  7694. {
  7695. name: "Macro",
  7696. height: math.unit(600, "meters"),
  7697. default: true
  7698. },
  7699. {
  7700. name: "Megamacro",
  7701. height: math.unit(1, "mile")
  7702. },
  7703. ]
  7704. ))
  7705. characterMakers.push(() => makeCharacter(
  7706. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7707. {
  7708. front: {
  7709. height: math.unit(1.65, "meters"),
  7710. weight: math.unit(74, "kg"),
  7711. name: "Front",
  7712. image: {
  7713. source: "./media/characters/berri/front.svg",
  7714. extra: 857 / 837,
  7715. bottom: 18 / 877
  7716. }
  7717. },
  7718. bum: {
  7719. height: math.unit(1.46, "feet"),
  7720. name: "Bum",
  7721. image: {
  7722. source: "./media/characters/berri/bum.svg"
  7723. }
  7724. },
  7725. mouth: {
  7726. height: math.unit(0.44, "feet"),
  7727. name: "Mouth",
  7728. image: {
  7729. source: "./media/characters/berri/mouth.svg"
  7730. }
  7731. },
  7732. paw: {
  7733. height: math.unit(0.826, "feet"),
  7734. name: "Paw",
  7735. image: {
  7736. source: "./media/characters/berri/paw.svg"
  7737. }
  7738. },
  7739. },
  7740. [
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(1.65, "meters")
  7744. },
  7745. {
  7746. name: "Macro",
  7747. height: math.unit(60, "m"),
  7748. default: true
  7749. },
  7750. {
  7751. name: "Megamacro",
  7752. height: math.unit(9.213, "km")
  7753. },
  7754. {
  7755. name: "Planet Eater",
  7756. height: math.unit(489, "megameters")
  7757. },
  7758. {
  7759. name: "Teramacro",
  7760. height: math.unit(2471635000000, "meters")
  7761. },
  7762. {
  7763. name: "Examacro",
  7764. height: math.unit(8.0624e+26, "meters")
  7765. }
  7766. ]
  7767. ))
  7768. characterMakers.push(() => makeCharacter(
  7769. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7770. {
  7771. front: {
  7772. height: math.unit(1.72, "meters"),
  7773. weight: math.unit(68, "kg"),
  7774. name: "Front",
  7775. image: {
  7776. source: "./media/characters/lexi/front.svg"
  7777. }
  7778. }
  7779. },
  7780. [
  7781. {
  7782. name: "Very Smol",
  7783. height: math.unit(10, "mm")
  7784. },
  7785. {
  7786. name: "Micro",
  7787. height: math.unit(6.8, "cm"),
  7788. default: true
  7789. },
  7790. {
  7791. name: "Normal",
  7792. height: math.unit(1.72, "m")
  7793. }
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(1.69, "meters"),
  7801. weight: math.unit(68, "kg"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/martin/front.svg",
  7805. extra: 596 / 581
  7806. }
  7807. }
  7808. },
  7809. [
  7810. {
  7811. name: "Micro",
  7812. height: math.unit(6.85, "cm"),
  7813. default: true
  7814. },
  7815. {
  7816. name: "Normal",
  7817. height: math.unit(1.69, "m")
  7818. }
  7819. ]
  7820. ))
  7821. characterMakers.push(() => makeCharacter(
  7822. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7823. {
  7824. front: {
  7825. height: math.unit(1.69, "meters"),
  7826. weight: math.unit(68, "kg"),
  7827. name: "Front",
  7828. image: {
  7829. source: "./media/characters/juno/front.svg"
  7830. }
  7831. }
  7832. },
  7833. [
  7834. {
  7835. name: "Micro",
  7836. height: math.unit(7, "cm")
  7837. },
  7838. {
  7839. name: "Normal",
  7840. height: math.unit(1.89, "m")
  7841. },
  7842. {
  7843. name: "Macro",
  7844. height: math.unit(353, "meters"),
  7845. default: true
  7846. }
  7847. ]
  7848. ))
  7849. characterMakers.push(() => makeCharacter(
  7850. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7851. {
  7852. front: {
  7853. height: math.unit(1.93, "meters"),
  7854. weight: math.unit(83, "kg"),
  7855. name: "Front",
  7856. image: {
  7857. source: "./media/characters/samantha/front.svg"
  7858. }
  7859. },
  7860. frontClothed: {
  7861. height: math.unit(1.93, "meters"),
  7862. weight: math.unit(83, "kg"),
  7863. name: "Front (Clothed)",
  7864. image: {
  7865. source: "./media/characters/samantha/front-clothed.svg"
  7866. }
  7867. },
  7868. back: {
  7869. height: math.unit(1.93, "meters"),
  7870. weight: math.unit(83, "kg"),
  7871. name: "Back",
  7872. image: {
  7873. source: "./media/characters/samantha/back.svg"
  7874. }
  7875. },
  7876. },
  7877. [
  7878. {
  7879. name: "Normal",
  7880. height: math.unit(1.93, "m")
  7881. },
  7882. {
  7883. name: "Macro",
  7884. height: math.unit(74, "meters"),
  7885. default: true
  7886. },
  7887. {
  7888. name: "Macro+",
  7889. height: math.unit(223, "meters"),
  7890. },
  7891. {
  7892. name: "Megamacro",
  7893. height: math.unit(8381, "meters"),
  7894. },
  7895. {
  7896. name: "Megamacro+",
  7897. height: math.unit(12000, "kilometers")
  7898. },
  7899. ]
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7903. {
  7904. front: {
  7905. height: math.unit(1.92, "meters"),
  7906. weight: math.unit(80, "kg"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/dr-clay/front.svg"
  7910. }
  7911. },
  7912. frontClothed: {
  7913. height: math.unit(1.92, "meters"),
  7914. weight: math.unit(80, "kg"),
  7915. name: "Front (Clothed)",
  7916. image: {
  7917. source: "./media/characters/dr-clay/front-clothed.svg"
  7918. }
  7919. }
  7920. },
  7921. [
  7922. {
  7923. name: "Normal",
  7924. height: math.unit(1.92, "m")
  7925. },
  7926. {
  7927. name: "Macro",
  7928. height: math.unit(214, "meters"),
  7929. default: true
  7930. },
  7931. {
  7932. name: "Macro+",
  7933. height: math.unit(12.237, "meters"),
  7934. },
  7935. {
  7936. name: "Megamacro",
  7937. height: math.unit(557, "megameters"),
  7938. },
  7939. {
  7940. name: "Unimaginable",
  7941. height: math.unit(120e9, "lightyears")
  7942. },
  7943. ]
  7944. ))
  7945. characterMakers.push(() => makeCharacter(
  7946. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7947. {
  7948. front: {
  7949. height: math.unit(2, "meters"),
  7950. weight: math.unit(80, "kg"),
  7951. name: "Front",
  7952. image: {
  7953. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7954. }
  7955. }
  7956. },
  7957. [
  7958. {
  7959. name: "Teramacro",
  7960. height: math.unit(500000, "lightyears"),
  7961. default: true
  7962. },
  7963. ]
  7964. ))
  7965. characterMakers.push(() => makeCharacter(
  7966. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7967. {
  7968. crux: {
  7969. height: math.unit(2, "meters"),
  7970. weight: math.unit(150, "kg"),
  7971. name: "Crux",
  7972. image: {
  7973. source: "./media/characters/vemus/crux.svg",
  7974. extra: 1074/936,
  7975. bottom: 23/1097
  7976. }
  7977. },
  7978. skunkTanuki: {
  7979. height: math.unit(2, "meters"),
  7980. weight: math.unit(150, "kg"),
  7981. name: "Skunk-Tanuki",
  7982. image: {
  7983. source: "./media/characters/vemus/skunk-tanuki.svg",
  7984. extra: 926/893,
  7985. bottom: 20/946
  7986. }
  7987. },
  7988. },
  7989. [
  7990. {
  7991. name: "Normal",
  7992. height: math.unit(4, "meters"),
  7993. default: true
  7994. },
  7995. {
  7996. name: "Big",
  7997. height: math.unit(8, "meters")
  7998. },
  7999. {
  8000. name: "Macro",
  8001. height: math.unit(100, "meters")
  8002. },
  8003. {
  8004. name: "Macro+",
  8005. height: math.unit(1500, "meters")
  8006. },
  8007. {
  8008. name: "Stellar",
  8009. height: math.unit(14e8, "meters")
  8010. },
  8011. ]
  8012. ))
  8013. characterMakers.push(() => makeCharacter(
  8014. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8015. {
  8016. front: {
  8017. height: math.unit(2, "meters"),
  8018. weight: math.unit(70, "kg"),
  8019. name: "Front",
  8020. image: {
  8021. source: "./media/characters/beherit/front.svg",
  8022. extra: 1234/1109,
  8023. bottom: 55/1289
  8024. }
  8025. }
  8026. },
  8027. [
  8028. {
  8029. name: "Normal",
  8030. height: math.unit(6, "feet")
  8031. },
  8032. {
  8033. name: "Lorg",
  8034. height: math.unit(25, "feet"),
  8035. default: true
  8036. },
  8037. {
  8038. name: "Lorger",
  8039. height: math.unit(75, "feet")
  8040. },
  8041. {
  8042. name: "Macro",
  8043. height: math.unit(200, "meters")
  8044. },
  8045. ]
  8046. ))
  8047. characterMakers.push(() => makeCharacter(
  8048. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8049. {
  8050. front: {
  8051. height: math.unit(2, "meters"),
  8052. weight: math.unit(150, "kg"),
  8053. name: "Front",
  8054. image: {
  8055. source: "./media/characters/everett/front.svg",
  8056. extra: 1017/866,
  8057. bottom: 86/1103
  8058. }
  8059. },
  8060. paw: {
  8061. height: math.unit(2 / 3.6, "meters"),
  8062. name: "Paw",
  8063. image: {
  8064. source: "./media/characters/everett/paw.svg"
  8065. }
  8066. },
  8067. },
  8068. [
  8069. {
  8070. name: "Normal",
  8071. height: math.unit(15, "feet"),
  8072. default: true
  8073. },
  8074. {
  8075. name: "Lorg",
  8076. height: math.unit(70, "feet"),
  8077. default: true
  8078. },
  8079. {
  8080. name: "Lorger",
  8081. height: math.unit(250, "feet")
  8082. },
  8083. {
  8084. name: "Macro",
  8085. height: math.unit(500, "meters")
  8086. },
  8087. ]
  8088. ))
  8089. characterMakers.push(() => makeCharacter(
  8090. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8091. {
  8092. front: {
  8093. height: math.unit(2, "meters"),
  8094. weight: math.unit(86, "kg"),
  8095. name: "Front",
  8096. image: {
  8097. source: "./media/characters/rose/front.svg",
  8098. extra: 1785/1636,
  8099. bottom: 30/1815
  8100. },
  8101. form: "liom",
  8102. default: true
  8103. },
  8104. frontSporty: {
  8105. height: math.unit(2, "meters"),
  8106. weight: math.unit(86, "kg"),
  8107. name: "Front (Sporty)",
  8108. image: {
  8109. source: "./media/characters/rose/front-sporty.svg",
  8110. extra: 350/335,
  8111. bottom: 10/360
  8112. },
  8113. form: "liom"
  8114. },
  8115. frontAlt: {
  8116. height: math.unit(1.6, "meters"),
  8117. weight: math.unit(86, "kg"),
  8118. name: "Front (Alt)",
  8119. image: {
  8120. source: "./media/characters/rose/front-alt.svg",
  8121. extra: 299/283,
  8122. bottom: 3/302
  8123. },
  8124. form: "liom"
  8125. },
  8126. plush: {
  8127. height: math.unit(2, "meters"),
  8128. weight: math.unit(86/3, "kg"),
  8129. name: "Plush",
  8130. image: {
  8131. source: "./media/characters/rose/plush.svg",
  8132. extra: 361/337,
  8133. bottom: 11/372
  8134. },
  8135. form: "plush",
  8136. default: true
  8137. },
  8138. faeStanding: {
  8139. height: math.unit(10, "cm"),
  8140. weight: math.unit(10, "grams"),
  8141. name: "Standing",
  8142. image: {
  8143. source: "./media/characters/rose/fae-standing.svg",
  8144. extra: 1189/1060,
  8145. bottom: 27/1216
  8146. },
  8147. form: "fae",
  8148. default: true
  8149. },
  8150. faeSitting: {
  8151. height: math.unit(5, "cm"),
  8152. weight: math.unit(10, "grams"),
  8153. name: "Sitting",
  8154. image: {
  8155. source: "./media/characters/rose/fae-sitting.svg",
  8156. extra: 737/577,
  8157. bottom: 356/1093
  8158. },
  8159. form: "fae"
  8160. },
  8161. faePaw: {
  8162. height: math.unit(1.35, "cm"),
  8163. name: "Paw",
  8164. image: {
  8165. source: "./media/characters/rose/fae-paw.svg"
  8166. },
  8167. form: "fae"
  8168. },
  8169. },
  8170. [
  8171. {
  8172. name: "True Micro",
  8173. height: math.unit(9, "cm"),
  8174. form: "liom"
  8175. },
  8176. {
  8177. name: "Micro",
  8178. height: math.unit(16, "cm"),
  8179. form: "liom"
  8180. },
  8181. {
  8182. name: "Normal",
  8183. height: math.unit(1.85, "meters"),
  8184. default: true,
  8185. form: "liom"
  8186. },
  8187. {
  8188. name: "Mini-Macro",
  8189. height: math.unit(5, "meters"),
  8190. form: "liom"
  8191. },
  8192. {
  8193. name: "Macro",
  8194. height: math.unit(15, "meters"),
  8195. form: "liom"
  8196. },
  8197. {
  8198. name: "True Macro",
  8199. height: math.unit(40, "meters"),
  8200. form: "liom"
  8201. },
  8202. {
  8203. name: "City Scale",
  8204. height: math.unit(1, "km"),
  8205. form: "liom"
  8206. },
  8207. {
  8208. name: "Plushie",
  8209. height: math.unit(9, "cm"),
  8210. form: "plush",
  8211. default: true
  8212. },
  8213. {
  8214. name: "Fae",
  8215. height: math.unit(10, "cm"),
  8216. form: "fae",
  8217. default: true
  8218. },
  8219. ],
  8220. {
  8221. "liom": {
  8222. name: "Liom"
  8223. },
  8224. "plush": {
  8225. name: "Plush"
  8226. },
  8227. "fae": {
  8228. name: "Fae Fox",
  8229. default: true
  8230. }
  8231. }
  8232. ))
  8233. characterMakers.push(() => makeCharacter(
  8234. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8235. {
  8236. front: {
  8237. height: math.unit(2, "meters"),
  8238. weight: math.unit(350, "lbs"),
  8239. name: "Front",
  8240. image: {
  8241. source: "./media/characters/regal/front.svg"
  8242. }
  8243. },
  8244. back: {
  8245. height: math.unit(2, "meters"),
  8246. weight: math.unit(350, "lbs"),
  8247. name: "Back",
  8248. image: {
  8249. source: "./media/characters/regal/back.svg"
  8250. }
  8251. },
  8252. },
  8253. [
  8254. {
  8255. name: "Macro",
  8256. height: math.unit(350, "feet"),
  8257. default: true
  8258. }
  8259. ]
  8260. ))
  8261. characterMakers.push(() => makeCharacter(
  8262. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8263. {
  8264. standing: {
  8265. height: math.unit(4 + 11/12, "feet"),
  8266. weight: math.unit(100, "lb"),
  8267. name: "Standing",
  8268. image: {
  8269. source: "./media/characters/opal/standing.svg",
  8270. extra: 1588/1513,
  8271. bottom: 23/1611
  8272. }
  8273. },
  8274. sitting: {
  8275. height: math.unit(2.3, "feet"),
  8276. weight: math.unit(100, "lb"),
  8277. name: "Sitting",
  8278. image: {
  8279. source: "./media/characters/opal/sitting.svg",
  8280. extra: 1031/892,
  8281. bottom: 142/1173
  8282. }
  8283. },
  8284. hand: {
  8285. height: math.unit(0.59, "feet"),
  8286. name: "Hand",
  8287. image: {
  8288. source: "./media/characters/opal/hand.svg"
  8289. }
  8290. },
  8291. foot: {
  8292. height: math.unit(0.61, "feet"),
  8293. name: "Foot",
  8294. image: {
  8295. source: "./media/characters/opal/foot.svg"
  8296. }
  8297. },
  8298. },
  8299. [
  8300. {
  8301. name: "Small",
  8302. height: math.unit(4 + 11 / 12, "feet")
  8303. },
  8304. {
  8305. name: "Normal",
  8306. height: math.unit(20, "feet"),
  8307. default: true
  8308. },
  8309. {
  8310. name: "Macro",
  8311. height: math.unit(120, "feet")
  8312. },
  8313. {
  8314. name: "Megamacro",
  8315. height: math.unit(80, "miles")
  8316. },
  8317. {
  8318. name: "True Size",
  8319. height: math.unit(100000, "lightyears")
  8320. },
  8321. ]
  8322. ))
  8323. characterMakers.push(() => makeCharacter(
  8324. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8325. {
  8326. front: {
  8327. height: math.unit(6, "feet"),
  8328. weight: math.unit(200, "lbs"),
  8329. name: "Front",
  8330. image: {
  8331. source: "./media/characters/vector-wuff/front.svg"
  8332. }
  8333. }
  8334. },
  8335. [
  8336. {
  8337. name: "Normal",
  8338. height: math.unit(2.8, "meters")
  8339. },
  8340. {
  8341. name: "Macro",
  8342. height: math.unit(450, "meters"),
  8343. default: true
  8344. },
  8345. {
  8346. name: "Megamacro",
  8347. height: math.unit(15, "kilometers")
  8348. }
  8349. ]
  8350. ))
  8351. characterMakers.push(() => makeCharacter(
  8352. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8353. {
  8354. front: {
  8355. height: math.unit(6, "feet"),
  8356. weight: math.unit(256, "lbs"),
  8357. name: "Front",
  8358. image: {
  8359. source: "./media/characters/dannik/front.svg"
  8360. }
  8361. }
  8362. },
  8363. [
  8364. {
  8365. name: "Macro",
  8366. height: math.unit(69.57, "meters"),
  8367. default: true
  8368. },
  8369. ]
  8370. ))
  8371. characterMakers.push(() => makeCharacter(
  8372. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8373. {
  8374. front: {
  8375. height: math.unit(6, "feet"),
  8376. weight: math.unit(120, "lbs"),
  8377. name: "Front",
  8378. image: {
  8379. source: "./media/characters/azura-saharah/front.svg"
  8380. }
  8381. },
  8382. back: {
  8383. height: math.unit(6, "feet"),
  8384. weight: math.unit(120, "lbs"),
  8385. name: "Back",
  8386. image: {
  8387. source: "./media/characters/azura-saharah/back.svg"
  8388. }
  8389. },
  8390. },
  8391. [
  8392. {
  8393. name: "Macro",
  8394. height: math.unit(100, "feet"),
  8395. default: true
  8396. },
  8397. ]
  8398. ))
  8399. characterMakers.push(() => makeCharacter(
  8400. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8401. {
  8402. side: {
  8403. height: math.unit(5 + 4 / 12, "feet"),
  8404. weight: math.unit(163, "lbs"),
  8405. name: "Side",
  8406. image: {
  8407. source: "./media/characters/kennedy/side.svg"
  8408. }
  8409. }
  8410. },
  8411. [
  8412. {
  8413. name: "Standard Doggo",
  8414. height: math.unit(5 + 4 / 12, "feet")
  8415. },
  8416. {
  8417. name: "Big Doggo",
  8418. height: math.unit(25 + 3 / 12, "feet"),
  8419. default: true
  8420. },
  8421. ]
  8422. ))
  8423. characterMakers.push(() => makeCharacter(
  8424. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8425. {
  8426. front: {
  8427. height: math.unit(5 + 5/12, "feet"),
  8428. weight: math.unit(100, "lbs"),
  8429. name: "Front",
  8430. image: {
  8431. source: "./media/characters/odios-de-lunar/front.svg",
  8432. extra: 1468/1323,
  8433. bottom: 22/1490
  8434. }
  8435. }
  8436. },
  8437. [
  8438. {
  8439. name: "Micro",
  8440. height: math.unit(3, "inches")
  8441. },
  8442. {
  8443. name: "Normal",
  8444. height: math.unit(5.5, "feet"),
  8445. default: true
  8446. },
  8447. {
  8448. name: "Macro",
  8449. height: math.unit(100, "feet")
  8450. },
  8451. ]
  8452. ))
  8453. characterMakers.push(() => makeCharacter(
  8454. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8455. {
  8456. back: {
  8457. height: math.unit(6, "feet"),
  8458. weight: math.unit(220, "lbs"),
  8459. name: "Back",
  8460. image: {
  8461. source: "./media/characters/mandake/back.svg"
  8462. }
  8463. }
  8464. },
  8465. [
  8466. {
  8467. name: "Normal",
  8468. height: math.unit(7, "feet"),
  8469. default: true
  8470. },
  8471. {
  8472. name: "Macro",
  8473. height: math.unit(78, "feet")
  8474. },
  8475. {
  8476. name: "Macro+",
  8477. height: math.unit(300, "meters")
  8478. },
  8479. {
  8480. name: "Macro++",
  8481. height: math.unit(2400, "feet")
  8482. },
  8483. {
  8484. name: "Megamacro",
  8485. height: math.unit(5167, "meters")
  8486. },
  8487. {
  8488. name: "Gigamacro",
  8489. height: math.unit(41769, "miles")
  8490. },
  8491. ]
  8492. ))
  8493. characterMakers.push(() => makeCharacter(
  8494. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8495. {
  8496. front: {
  8497. height: math.unit(6, "feet"),
  8498. weight: math.unit(120, "lbs"),
  8499. name: "Front",
  8500. image: {
  8501. source: "./media/characters/yozey/front.svg"
  8502. }
  8503. },
  8504. frontAlt: {
  8505. height: math.unit(6, "feet"),
  8506. weight: math.unit(120, "lbs"),
  8507. name: "Front (Alt)",
  8508. image: {
  8509. source: "./media/characters/yozey/front-alt.svg"
  8510. }
  8511. },
  8512. side: {
  8513. height: math.unit(6, "feet"),
  8514. weight: math.unit(120, "lbs"),
  8515. name: "Side",
  8516. image: {
  8517. source: "./media/characters/yozey/side.svg"
  8518. }
  8519. },
  8520. },
  8521. [
  8522. {
  8523. name: "Micro",
  8524. height: math.unit(3, "inches"),
  8525. default: true
  8526. },
  8527. {
  8528. name: "Normal",
  8529. height: math.unit(6, "feet")
  8530. }
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8535. {
  8536. front: {
  8537. height: math.unit(6, "feet"),
  8538. weight: math.unit(103, "lbs"),
  8539. name: "Front",
  8540. image: {
  8541. source: "./media/characters/valeska-voss/front.svg"
  8542. }
  8543. }
  8544. },
  8545. [
  8546. {
  8547. name: "Mini-Sized Sub",
  8548. height: math.unit(3.1, "inches")
  8549. },
  8550. {
  8551. name: "Mid-Sized Sub",
  8552. height: math.unit(6.2, "inches")
  8553. },
  8554. {
  8555. name: "Full-Sized Sub",
  8556. height: math.unit(9.3, "inches")
  8557. },
  8558. {
  8559. name: "Normal",
  8560. height: math.unit(5 + 2 / 12, "foot"),
  8561. default: true
  8562. },
  8563. ]
  8564. ))
  8565. characterMakers.push(() => makeCharacter(
  8566. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8567. {
  8568. front: {
  8569. height: math.unit(6, "feet"),
  8570. weight: math.unit(160, "lbs"),
  8571. name: "Front",
  8572. image: {
  8573. source: "./media/characters/gene-zeta/front.svg",
  8574. extra: 3006 / 2826,
  8575. bottom: 182 / 3188
  8576. }
  8577. }
  8578. },
  8579. [
  8580. {
  8581. name: "Micro",
  8582. height: math.unit(6, "inches")
  8583. },
  8584. {
  8585. name: "Normal",
  8586. height: math.unit(5 + 11 / 12, "foot"),
  8587. default: true
  8588. },
  8589. {
  8590. name: "Macro",
  8591. height: math.unit(140, "feet")
  8592. },
  8593. {
  8594. name: "Supercharged",
  8595. height: math.unit(2500, "feet")
  8596. },
  8597. ]
  8598. ))
  8599. characterMakers.push(() => makeCharacter(
  8600. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8601. {
  8602. front: {
  8603. height: math.unit(6, "feet"),
  8604. weight: math.unit(350, "lbs"),
  8605. name: "Front",
  8606. image: {
  8607. source: "./media/characters/razinox/front.svg",
  8608. extra: 1686 / 1548,
  8609. bottom: 28.2 / 1868
  8610. }
  8611. },
  8612. back: {
  8613. height: math.unit(6, "feet"),
  8614. weight: math.unit(350, "lbs"),
  8615. name: "Back",
  8616. image: {
  8617. source: "./media/characters/razinox/back.svg",
  8618. extra: 1660 / 1590,
  8619. bottom: 15 / 1665
  8620. }
  8621. },
  8622. },
  8623. [
  8624. {
  8625. name: "Normal",
  8626. height: math.unit(10 + 8 / 12, "foot")
  8627. },
  8628. {
  8629. name: "Minimacro",
  8630. height: math.unit(15, "foot")
  8631. },
  8632. {
  8633. name: "Macro",
  8634. height: math.unit(60, "foot"),
  8635. default: true
  8636. },
  8637. {
  8638. name: "Megamacro",
  8639. height: math.unit(5, "miles")
  8640. },
  8641. {
  8642. name: "Gigamacro",
  8643. height: math.unit(6000, "miles")
  8644. },
  8645. ]
  8646. ))
  8647. characterMakers.push(() => makeCharacter(
  8648. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8649. {
  8650. front: {
  8651. height: math.unit(6, "feet"),
  8652. weight: math.unit(150, "lbs"),
  8653. name: "Front",
  8654. image: {
  8655. source: "./media/characters/cobalt/front.svg"
  8656. }
  8657. }
  8658. },
  8659. [
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(8 + 1 / 12, "foot")
  8663. },
  8664. {
  8665. name: "Macro",
  8666. height: math.unit(111, "foot"),
  8667. default: true
  8668. },
  8669. {
  8670. name: "Supracosmic",
  8671. height: math.unit(1e42, "feet")
  8672. },
  8673. ]
  8674. ))
  8675. characterMakers.push(() => makeCharacter(
  8676. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8677. {
  8678. front: {
  8679. height: math.unit(5, "inches"),
  8680. name: "Front",
  8681. image: {
  8682. source: "./media/characters/amanda/front.svg",
  8683. extra: 926/791,
  8684. bottom: 38/964
  8685. }
  8686. },
  8687. back: {
  8688. height: math.unit(5, "inches"),
  8689. name: "Back",
  8690. image: {
  8691. source: "./media/characters/amanda/back.svg",
  8692. extra: 909/805,
  8693. bottom: 43/952
  8694. }
  8695. },
  8696. },
  8697. [
  8698. {
  8699. name: "Micro",
  8700. height: math.unit(5, "inches"),
  8701. default: true
  8702. },
  8703. ]
  8704. ))
  8705. characterMakers.push(() => makeCharacter(
  8706. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8707. {
  8708. front: {
  8709. height: math.unit(2.75, "meters"),
  8710. weight: math.unit(1200, "lb"),
  8711. name: "Front",
  8712. image: {
  8713. source: "./media/characters/teal/front.svg",
  8714. extra: 2463 / 2320,
  8715. bottom: 166 / 2629
  8716. }
  8717. },
  8718. back: {
  8719. height: math.unit(2.75, "meters"),
  8720. weight: math.unit(1200, "lb"),
  8721. name: "Back",
  8722. image: {
  8723. source: "./media/characters/teal/back.svg",
  8724. extra: 2580 / 2489,
  8725. bottom: 151 / 2731
  8726. }
  8727. },
  8728. sitting: {
  8729. height: math.unit(1.9, "meters"),
  8730. weight: math.unit(1200, "lb"),
  8731. name: "Sitting",
  8732. image: {
  8733. source: "./media/characters/teal/sitting.svg",
  8734. extra: 623 / 590,
  8735. bottom: 121 / 744
  8736. }
  8737. },
  8738. standing: {
  8739. height: math.unit(2.75, "meters"),
  8740. weight: math.unit(1200, "lb"),
  8741. name: "Standing",
  8742. image: {
  8743. source: "./media/characters/teal/standing.svg",
  8744. extra: 923 / 893,
  8745. bottom: 60 / 983
  8746. }
  8747. },
  8748. stretching: {
  8749. height: math.unit(3.65, "meters"),
  8750. weight: math.unit(1200, "lb"),
  8751. name: "Stretching",
  8752. image: {
  8753. source: "./media/characters/teal/stretching.svg",
  8754. extra: 1276 / 1244,
  8755. bottom: 0 / 1276
  8756. }
  8757. },
  8758. legged: {
  8759. height: math.unit(1.3, "meters"),
  8760. weight: math.unit(100, "lb"),
  8761. name: "Legged",
  8762. image: {
  8763. source: "./media/characters/teal/legged.svg",
  8764. extra: 462 / 437,
  8765. bottom: 24 / 486
  8766. }
  8767. },
  8768. naga: {
  8769. height: math.unit(5.4, "meters"),
  8770. weight: math.unit(4000, "lb"),
  8771. name: "Naga",
  8772. image: {
  8773. source: "./media/characters/teal/naga.svg",
  8774. extra: 1902 / 1858,
  8775. bottom: 0 / 1902
  8776. }
  8777. },
  8778. hand: {
  8779. height: math.unit(0.52, "meters"),
  8780. name: "Hand",
  8781. image: {
  8782. source: "./media/characters/teal/hand.svg"
  8783. }
  8784. },
  8785. maw: {
  8786. height: math.unit(0.43, "meters"),
  8787. name: "Maw",
  8788. image: {
  8789. source: "./media/characters/teal/maw.svg"
  8790. }
  8791. },
  8792. slit: {
  8793. height: math.unit(0.25, "meters"),
  8794. name: "Slit",
  8795. image: {
  8796. source: "./media/characters/teal/slit.svg"
  8797. }
  8798. },
  8799. },
  8800. [
  8801. {
  8802. name: "Normal",
  8803. height: math.unit(2.75, "meters"),
  8804. default: true
  8805. },
  8806. {
  8807. name: "Macro",
  8808. height: math.unit(300, "feet")
  8809. },
  8810. {
  8811. name: "Macro+",
  8812. height: math.unit(2000, "feet")
  8813. },
  8814. ]
  8815. ))
  8816. characterMakers.push(() => makeCharacter(
  8817. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8818. {
  8819. frontCat: {
  8820. height: math.unit(6, "feet"),
  8821. weight: math.unit(180, "lbs"),
  8822. name: "Front (Cat)",
  8823. image: {
  8824. source: "./media/characters/ravin-amulet/front-cat.svg"
  8825. }
  8826. },
  8827. frontCatAlt: {
  8828. height: math.unit(6, "feet"),
  8829. weight: math.unit(180, "lbs"),
  8830. name: "Front (Alt, Cat)",
  8831. image: {
  8832. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8833. }
  8834. },
  8835. frontWerewolf: {
  8836. height: math.unit(6 * 1.2, "feet"),
  8837. weight: math.unit(225, "lbs"),
  8838. name: "Front (Werewolf)",
  8839. image: {
  8840. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8841. }
  8842. },
  8843. backWerewolf: {
  8844. height: math.unit(6 * 1.2, "feet"),
  8845. weight: math.unit(225, "lbs"),
  8846. name: "Back (Werewolf)",
  8847. image: {
  8848. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8849. }
  8850. },
  8851. },
  8852. [
  8853. {
  8854. name: "Nano",
  8855. height: math.unit(1, "micrometer")
  8856. },
  8857. {
  8858. name: "Micro",
  8859. height: math.unit(1, "inch")
  8860. },
  8861. {
  8862. name: "Normal",
  8863. height: math.unit(6, "feet"),
  8864. default: true
  8865. },
  8866. {
  8867. name: "Macro",
  8868. height: math.unit(60, "feet")
  8869. }
  8870. ]
  8871. ))
  8872. characterMakers.push(() => makeCharacter(
  8873. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8874. {
  8875. front: {
  8876. height: math.unit(6, "feet"),
  8877. weight: math.unit(165, "lbs"),
  8878. name: "Front",
  8879. image: {
  8880. source: "./media/characters/fluoresce/front.svg"
  8881. }
  8882. }
  8883. },
  8884. [
  8885. {
  8886. name: "Micro",
  8887. height: math.unit(6, "cm")
  8888. },
  8889. {
  8890. name: "Normal",
  8891. height: math.unit(5 + 7 / 12, "feet"),
  8892. default: true
  8893. },
  8894. {
  8895. name: "Macro",
  8896. height: math.unit(56, "feet")
  8897. },
  8898. {
  8899. name: "Megamacro",
  8900. height: math.unit(1.9, "miles")
  8901. },
  8902. ]
  8903. ))
  8904. characterMakers.push(() => makeCharacter(
  8905. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8906. {
  8907. front: {
  8908. height: math.unit(9 + 6 / 12, "feet"),
  8909. weight: math.unit(523, "lbs"),
  8910. name: "Side",
  8911. image: {
  8912. source: "./media/characters/aurora/side.svg",
  8913. extra: 474/393,
  8914. bottom: 5/479
  8915. }
  8916. }
  8917. },
  8918. [
  8919. {
  8920. name: "Normal",
  8921. height: math.unit(9 + 6 / 12, "feet")
  8922. },
  8923. {
  8924. name: "Macro",
  8925. height: math.unit(96, "feet"),
  8926. default: true
  8927. },
  8928. {
  8929. name: "Macro+",
  8930. height: math.unit(243, "feet")
  8931. },
  8932. ]
  8933. ))
  8934. characterMakers.push(() => makeCharacter(
  8935. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8936. {
  8937. front: {
  8938. height: math.unit(194, "cm"),
  8939. weight: math.unit(90, "kg"),
  8940. name: "Front",
  8941. image: {
  8942. source: "./media/characters/ranek/front.svg",
  8943. extra: 1862/1791,
  8944. bottom: 80/1942
  8945. }
  8946. },
  8947. back: {
  8948. height: math.unit(194, "cm"),
  8949. weight: math.unit(90, "kg"),
  8950. name: "Back",
  8951. image: {
  8952. source: "./media/characters/ranek/back.svg",
  8953. extra: 1853/1787,
  8954. bottom: 74/1927
  8955. }
  8956. },
  8957. feral: {
  8958. height: math.unit(30, "cm"),
  8959. weight: math.unit(1.6, "lbs"),
  8960. name: "Feral",
  8961. image: {
  8962. source: "./media/characters/ranek/feral.svg",
  8963. extra: 990/631,
  8964. bottom: 29/1019
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(194, "cm"),
  8972. default: true
  8973. },
  8974. {
  8975. name: "Macro",
  8976. height: math.unit(100, "meters")
  8977. },
  8978. ]
  8979. ))
  8980. characterMakers.push(() => makeCharacter(
  8981. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8982. {
  8983. front: {
  8984. height: math.unit(5 + 6 / 12, "feet"),
  8985. weight: math.unit(153, "lbs"),
  8986. name: "Front",
  8987. image: {
  8988. source: "./media/characters/andrew-cooper/front.svg"
  8989. }
  8990. },
  8991. },
  8992. [
  8993. {
  8994. name: "Nano",
  8995. height: math.unit(1, "mm")
  8996. },
  8997. {
  8998. name: "Micro",
  8999. height: math.unit(2, "inches")
  9000. },
  9001. {
  9002. name: "Normal",
  9003. height: math.unit(5 + 6 / 12, "feet"),
  9004. default: true
  9005. }
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9010. {
  9011. front: {
  9012. height: math.unit(6, "feet"),
  9013. weight: math.unit(180, "lbs"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/akane-sato/front.svg",
  9017. extra: 1219 / 1140
  9018. }
  9019. },
  9020. back: {
  9021. height: math.unit(6, "feet"),
  9022. weight: math.unit(180, "lbs"),
  9023. name: "Back",
  9024. image: {
  9025. source: "./media/characters/akane-sato/back.svg",
  9026. extra: 1219 / 1170
  9027. }
  9028. },
  9029. },
  9030. [
  9031. {
  9032. name: "Normal",
  9033. height: math.unit(2.5, "meters")
  9034. },
  9035. {
  9036. name: "Macro",
  9037. height: math.unit(250, "meters"),
  9038. default: true
  9039. },
  9040. {
  9041. name: "Megamacro",
  9042. height: math.unit(25, "km")
  9043. },
  9044. ]
  9045. ))
  9046. characterMakers.push(() => makeCharacter(
  9047. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9048. {
  9049. front: {
  9050. height: math.unit(6, "feet"),
  9051. weight: math.unit(65, "kg"),
  9052. name: "Front",
  9053. image: {
  9054. source: "./media/characters/rook/front.svg",
  9055. extra: 960 / 950
  9056. }
  9057. }
  9058. },
  9059. [
  9060. {
  9061. name: "Normal",
  9062. height: math.unit(8.8, "feet")
  9063. },
  9064. {
  9065. name: "Macro",
  9066. height: math.unit(88, "feet"),
  9067. default: true
  9068. },
  9069. {
  9070. name: "Megamacro",
  9071. height: math.unit(8, "miles")
  9072. },
  9073. ]
  9074. ))
  9075. characterMakers.push(() => makeCharacter(
  9076. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9077. {
  9078. front: {
  9079. height: math.unit(12 + 2 / 12, "feet"),
  9080. weight: math.unit(808, "lbs"),
  9081. name: "Front",
  9082. image: {
  9083. source: "./media/characters/prodigy/front.svg"
  9084. }
  9085. }
  9086. },
  9087. [
  9088. {
  9089. name: "Normal",
  9090. height: math.unit(12 + 2 / 12, "feet"),
  9091. default: true
  9092. },
  9093. {
  9094. name: "Macro",
  9095. height: math.unit(143, "feet")
  9096. },
  9097. {
  9098. name: "Macro+",
  9099. height: math.unit(400, "feet")
  9100. },
  9101. ]
  9102. ))
  9103. characterMakers.push(() => makeCharacter(
  9104. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9105. {
  9106. front: {
  9107. height: math.unit(6, "feet"),
  9108. weight: math.unit(225, "lbs"),
  9109. name: "Front",
  9110. image: {
  9111. source: "./media/characters/daniel/front.svg"
  9112. }
  9113. },
  9114. leaning: {
  9115. height: math.unit(6, "feet"),
  9116. weight: math.unit(225, "lbs"),
  9117. name: "Leaning",
  9118. image: {
  9119. source: "./media/characters/daniel/leaning.svg"
  9120. }
  9121. },
  9122. },
  9123. [
  9124. {
  9125. name: "Macro",
  9126. height: math.unit(1000, "feet"),
  9127. default: true
  9128. },
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9133. {
  9134. front: {
  9135. height: math.unit(6, "feet"),
  9136. weight: math.unit(88, "lbs"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/chiros/front.svg",
  9140. extra: 306 / 226
  9141. }
  9142. },
  9143. side: {
  9144. height: math.unit(6, "feet"),
  9145. weight: math.unit(88, "lbs"),
  9146. name: "Side",
  9147. image: {
  9148. source: "./media/characters/chiros/side.svg",
  9149. extra: 306 / 226
  9150. }
  9151. },
  9152. },
  9153. [
  9154. {
  9155. name: "Normal",
  9156. height: math.unit(6, "cm"),
  9157. default: true
  9158. },
  9159. ]
  9160. ))
  9161. characterMakers.push(() => makeCharacter(
  9162. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9163. {
  9164. front: {
  9165. height: math.unit(6, "feet"),
  9166. weight: math.unit(100, "lbs"),
  9167. name: "Front",
  9168. image: {
  9169. source: "./media/characters/selka/front.svg",
  9170. extra: 947 / 887
  9171. }
  9172. }
  9173. },
  9174. [
  9175. {
  9176. name: "Normal",
  9177. height: math.unit(5, "cm"),
  9178. default: true
  9179. },
  9180. ]
  9181. ))
  9182. characterMakers.push(() => makeCharacter(
  9183. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9184. {
  9185. front: {
  9186. height: math.unit(8 + 3 / 12, "feet"),
  9187. weight: math.unit(424, "lbs"),
  9188. name: "Front",
  9189. image: {
  9190. source: "./media/characters/verin/front.svg",
  9191. extra: 1845 / 1550
  9192. }
  9193. },
  9194. frontArmored: {
  9195. height: math.unit(8 + 3 / 12, "feet"),
  9196. weight: math.unit(424, "lbs"),
  9197. name: "Front (Armored)",
  9198. image: {
  9199. source: "./media/characters/verin/front-armor.svg",
  9200. extra: 1845 / 1550,
  9201. bottom: 0.01
  9202. }
  9203. },
  9204. back: {
  9205. height: math.unit(8 + 3 / 12, "feet"),
  9206. weight: math.unit(424, "lbs"),
  9207. name: "Back",
  9208. image: {
  9209. source: "./media/characters/verin/back.svg",
  9210. bottom: 0.1,
  9211. extra: 1
  9212. }
  9213. },
  9214. foot: {
  9215. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9216. name: "Foot",
  9217. image: {
  9218. source: "./media/characters/verin/foot.svg"
  9219. }
  9220. },
  9221. },
  9222. [
  9223. {
  9224. name: "Normal",
  9225. height: math.unit(8 + 3 / 12, "feet")
  9226. },
  9227. {
  9228. name: "Minimacro",
  9229. height: math.unit(21, "feet"),
  9230. default: true
  9231. },
  9232. {
  9233. name: "Macro",
  9234. height: math.unit(626, "feet")
  9235. },
  9236. ]
  9237. ))
  9238. characterMakers.push(() => makeCharacter(
  9239. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9240. {
  9241. front: {
  9242. height: math.unit(2.718, "meters"),
  9243. weight: math.unit(150, "lbs"),
  9244. name: "Front",
  9245. image: {
  9246. source: "./media/characters/sovrim-terraquian/front.svg",
  9247. extra: 1752/1689,
  9248. bottom: 36/1788
  9249. }
  9250. },
  9251. back: {
  9252. height: math.unit(2.718, "meters"),
  9253. weight: math.unit(150, "lbs"),
  9254. name: "Back",
  9255. image: {
  9256. source: "./media/characters/sovrim-terraquian/back.svg",
  9257. extra: 1698/1657,
  9258. bottom: 58/1756
  9259. }
  9260. },
  9261. tongue: {
  9262. height: math.unit(2.865, "feet"),
  9263. name: "Tongue",
  9264. image: {
  9265. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9266. }
  9267. },
  9268. hand: {
  9269. height: math.unit(1.61, "feet"),
  9270. name: "Hand",
  9271. image: {
  9272. source: "./media/characters/sovrim-terraquian/hand.svg"
  9273. }
  9274. },
  9275. foot: {
  9276. height: math.unit(1.05, "feet"),
  9277. name: "Foot",
  9278. image: {
  9279. source: "./media/characters/sovrim-terraquian/foot.svg"
  9280. }
  9281. },
  9282. footAlt: {
  9283. height: math.unit(0.88, "feet"),
  9284. name: "Foot (Alt)",
  9285. image: {
  9286. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9287. }
  9288. },
  9289. },
  9290. [
  9291. {
  9292. name: "Micro",
  9293. height: math.unit(2, "inches")
  9294. },
  9295. {
  9296. name: "Small",
  9297. height: math.unit(1, "meter")
  9298. },
  9299. {
  9300. name: "Normal",
  9301. height: math.unit(Math.E, "meters"),
  9302. default: true
  9303. },
  9304. {
  9305. name: "Macro",
  9306. height: math.unit(20, "meters")
  9307. },
  9308. {
  9309. name: "Macro+",
  9310. height: math.unit(400, "meters")
  9311. },
  9312. ]
  9313. ))
  9314. characterMakers.push(() => makeCharacter(
  9315. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9316. {
  9317. front: {
  9318. height: math.unit(7, "feet"),
  9319. weight: math.unit(489, "lbs"),
  9320. name: "Front",
  9321. image: {
  9322. source: "./media/characters/reece-silvermane/front.svg",
  9323. bottom: 0.02,
  9324. extra: 1
  9325. }
  9326. },
  9327. },
  9328. [
  9329. {
  9330. name: "Macro",
  9331. height: math.unit(1.5, "miles"),
  9332. default: true
  9333. },
  9334. ]
  9335. ))
  9336. characterMakers.push(() => makeCharacter(
  9337. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9338. {
  9339. front: {
  9340. height: math.unit(6, "feet"),
  9341. weight: math.unit(78, "kg"),
  9342. name: "Front",
  9343. image: {
  9344. source: "./media/characters/kane/front.svg",
  9345. extra: 978 / 899
  9346. }
  9347. },
  9348. back: {
  9349. height: math.unit(6, "feet"),
  9350. weight: math.unit(78, "kg"),
  9351. name: "Back",
  9352. image: {
  9353. source: "./media/characters/kane/back.svg",
  9354. extra: 1966/1800,
  9355. bottom: 0/1966
  9356. }
  9357. },
  9358. head: {
  9359. height: math.unit(1.4, "feet"),
  9360. name: "Head",
  9361. image: {
  9362. source: "./media/characters/kane/head.svg"
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(2.1, "m"),
  9370. },
  9371. {
  9372. name: "Macro",
  9373. height: math.unit(1, "km"),
  9374. default: true
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9380. {
  9381. front: {
  9382. height: math.unit(6, "feet"),
  9383. weight: math.unit(200, "kg"),
  9384. name: "Front",
  9385. image: {
  9386. source: "./media/characters/tegon/front.svg",
  9387. bottom: 0.01,
  9388. extra: 1
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Micro",
  9395. height: math.unit(1, "inch")
  9396. },
  9397. {
  9398. name: "Normal",
  9399. height: math.unit(6 + 3 / 12, "feet"),
  9400. default: true
  9401. },
  9402. {
  9403. name: "Macro",
  9404. height: math.unit(300, "feet")
  9405. },
  9406. {
  9407. name: "Megamacro",
  9408. height: math.unit(69, "miles")
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9414. {
  9415. side: {
  9416. height: math.unit(6, "feet"),
  9417. weight: math.unit(2304, "lbs"),
  9418. name: "Side",
  9419. image: {
  9420. source: "./media/characters/arcturax/side.svg",
  9421. extra: 790 / 376,
  9422. bottom: 0.01
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Micro",
  9429. height: math.unit(2, "inch")
  9430. },
  9431. {
  9432. name: "Normal",
  9433. height: math.unit(6, "feet")
  9434. },
  9435. {
  9436. name: "Macro",
  9437. height: math.unit(39, "feet"),
  9438. default: true
  9439. },
  9440. {
  9441. name: "Megamacro",
  9442. height: math.unit(7, "miles")
  9443. },
  9444. ]
  9445. ))
  9446. characterMakers.push(() => makeCharacter(
  9447. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9448. {
  9449. front: {
  9450. height: math.unit(6, "feet"),
  9451. weight: math.unit(50, "lbs"),
  9452. name: "Front",
  9453. image: {
  9454. source: "./media/characters/sentri/front.svg",
  9455. extra: 1750 / 1570,
  9456. bottom: 0.025
  9457. }
  9458. },
  9459. frontAlt: {
  9460. height: math.unit(6, "feet"),
  9461. weight: math.unit(50, "lbs"),
  9462. name: "Front (Alt)",
  9463. image: {
  9464. source: "./media/characters/sentri/front-alt.svg",
  9465. extra: 1750 / 1570,
  9466. bottom: 0.025
  9467. }
  9468. },
  9469. },
  9470. [
  9471. {
  9472. name: "Normal",
  9473. height: math.unit(15, "feet"),
  9474. default: true
  9475. },
  9476. {
  9477. name: "Macro",
  9478. height: math.unit(2500, "feet")
  9479. }
  9480. ]
  9481. ))
  9482. characterMakers.push(() => makeCharacter(
  9483. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9484. {
  9485. front: {
  9486. height: math.unit(5 + 8 / 12, "feet"),
  9487. weight: math.unit(130, "lbs"),
  9488. name: "Front",
  9489. image: {
  9490. source: "./media/characters/corvin/front.svg",
  9491. extra: 1803 / 1629
  9492. }
  9493. },
  9494. frontShirt: {
  9495. height: math.unit(5 + 8 / 12, "feet"),
  9496. weight: math.unit(130, "lbs"),
  9497. name: "Front (Shirt)",
  9498. image: {
  9499. source: "./media/characters/corvin/front-shirt.svg",
  9500. extra: 1803 / 1629
  9501. }
  9502. },
  9503. frontPoncho: {
  9504. height: math.unit(5 + 8 / 12, "feet"),
  9505. weight: math.unit(130, "lbs"),
  9506. name: "Front (Poncho)",
  9507. image: {
  9508. source: "./media/characters/corvin/front-poncho.svg",
  9509. extra: 1803 / 1629
  9510. }
  9511. },
  9512. side: {
  9513. height: math.unit(5 + 8 / 12, "feet"),
  9514. weight: math.unit(130, "lbs"),
  9515. name: "Side",
  9516. image: {
  9517. source: "./media/characters/corvin/side.svg",
  9518. extra: 1012 / 945
  9519. }
  9520. },
  9521. back: {
  9522. height: math.unit(5 + 8 / 12, "feet"),
  9523. weight: math.unit(130, "lbs"),
  9524. name: "Back",
  9525. image: {
  9526. source: "./media/characters/corvin/back.svg",
  9527. extra: 1803 / 1629
  9528. }
  9529. },
  9530. },
  9531. [
  9532. {
  9533. name: "Micro",
  9534. height: math.unit(3, "inches")
  9535. },
  9536. {
  9537. name: "Normal",
  9538. height: math.unit(5 + 8 / 12, "feet")
  9539. },
  9540. {
  9541. name: "Macro",
  9542. height: math.unit(300, "feet"),
  9543. default: true
  9544. },
  9545. {
  9546. name: "Megamacro",
  9547. height: math.unit(500, "miles")
  9548. }
  9549. ]
  9550. ))
  9551. characterMakers.push(() => makeCharacter(
  9552. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9553. {
  9554. front: {
  9555. height: math.unit(6, "feet"),
  9556. weight: math.unit(135, "lbs"),
  9557. name: "Front",
  9558. image: {
  9559. source: "./media/characters/q/front.svg",
  9560. extra: 854 / 752,
  9561. bottom: 0.005
  9562. }
  9563. },
  9564. back: {
  9565. height: math.unit(6, "feet"),
  9566. weight: math.unit(130, "lbs"),
  9567. name: "Back",
  9568. image: {
  9569. source: "./media/characters/q/back.svg",
  9570. extra: 854 / 752
  9571. }
  9572. },
  9573. },
  9574. [
  9575. {
  9576. name: "Macro",
  9577. height: math.unit(90, "feet"),
  9578. default: true
  9579. },
  9580. {
  9581. name: "Extra Macro",
  9582. height: math.unit(300, "feet"),
  9583. },
  9584. {
  9585. name: "BIG WALF",
  9586. height: math.unit(750, "feet"),
  9587. },
  9588. ]
  9589. ))
  9590. characterMakers.push(() => makeCharacter(
  9591. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9592. {
  9593. front: {
  9594. height: math.unit(3, "feet"),
  9595. weight: math.unit(28, "lbs"),
  9596. name: "Front",
  9597. image: {
  9598. source: "./media/characters/citrine/front.svg"
  9599. }
  9600. }
  9601. },
  9602. [
  9603. {
  9604. name: "Normal",
  9605. height: math.unit(3, "feet"),
  9606. default: true
  9607. }
  9608. ]
  9609. ))
  9610. characterMakers.push(() => makeCharacter(
  9611. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9612. {
  9613. front: {
  9614. height: math.unit(14, "feet"),
  9615. weight: math.unit(1450, "kg"),
  9616. preyCapacity: math.unit(15, "people"),
  9617. name: "Front",
  9618. image: {
  9619. source: "./media/characters/aura-starwind/front.svg",
  9620. extra: 1440/1327,
  9621. bottom: 11/1451
  9622. }
  9623. },
  9624. side: {
  9625. height: math.unit(14, "feet"),
  9626. weight: math.unit(1450, "kg"),
  9627. preyCapacity: math.unit(15, "people"),
  9628. name: "Side",
  9629. image: {
  9630. source: "./media/characters/aura-starwind/side.svg",
  9631. extra: 1654 / 1497
  9632. }
  9633. },
  9634. taur: {
  9635. height: math.unit(18, "feet"),
  9636. weight: math.unit(5500, "kg"),
  9637. preyCapacity: math.unit(50, "people"),
  9638. name: "Taur",
  9639. image: {
  9640. source: "./media/characters/aura-starwind/taur.svg",
  9641. extra: 1760 / 1650
  9642. }
  9643. },
  9644. feral: {
  9645. height: math.unit(46, "feet"),
  9646. weight: math.unit(25000, "kg"),
  9647. preyCapacity: math.unit(120, "people"),
  9648. name: "Feral",
  9649. image: {
  9650. source: "./media/characters/aura-starwind/feral.svg"
  9651. }
  9652. },
  9653. },
  9654. [
  9655. {
  9656. name: "Normal",
  9657. height: math.unit(14, "feet"),
  9658. default: true
  9659. },
  9660. {
  9661. name: "Macro",
  9662. height: math.unit(50, "meters")
  9663. },
  9664. {
  9665. name: "Megamacro",
  9666. height: math.unit(5000, "meters")
  9667. },
  9668. {
  9669. name: "Gigamacro",
  9670. height: math.unit(100000, "kilometers")
  9671. },
  9672. ]
  9673. ))
  9674. characterMakers.push(() => makeCharacter(
  9675. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9676. {
  9677. front: {
  9678. height: math.unit(2 + 7 / 12, "feet"),
  9679. weight: math.unit(32, "lbs"),
  9680. name: "Front",
  9681. image: {
  9682. source: "./media/characters/rivet/front.svg",
  9683. extra: 1716 / 1658,
  9684. bottom: 0.03
  9685. }
  9686. },
  9687. foot: {
  9688. height: math.unit(0.551, "feet"),
  9689. name: "Rivet's Foot",
  9690. image: {
  9691. source: "./media/characters/rivet/foot.svg"
  9692. },
  9693. rename: true
  9694. }
  9695. },
  9696. [
  9697. {
  9698. name: "Micro",
  9699. height: math.unit(1.5, "inches"),
  9700. },
  9701. {
  9702. name: "Normal",
  9703. height: math.unit(2 + 7 / 12, "feet"),
  9704. default: true
  9705. },
  9706. {
  9707. name: "Macro",
  9708. height: math.unit(85, "feet")
  9709. },
  9710. {
  9711. name: "Megamacro",
  9712. height: math.unit(2.2, "km")
  9713. }
  9714. ]
  9715. ))
  9716. characterMakers.push(() => makeCharacter(
  9717. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9718. {
  9719. front: {
  9720. height: math.unit(5 + 9 / 12, "feet"),
  9721. weight: math.unit(150, "lbs"),
  9722. name: "Front",
  9723. image: {
  9724. source: "./media/characters/coffee/front.svg",
  9725. extra: 946/880,
  9726. bottom: 66/1012
  9727. }
  9728. },
  9729. foot: {
  9730. height: math.unit(1.29, "feet"),
  9731. name: "Foot",
  9732. image: {
  9733. source: "./media/characters/coffee/foot.svg"
  9734. }
  9735. },
  9736. },
  9737. [
  9738. {
  9739. name: "Micro",
  9740. height: math.unit(2, "inches"),
  9741. },
  9742. {
  9743. name: "Normal",
  9744. height: math.unit(5 + 9 / 12, "feet"),
  9745. default: true
  9746. },
  9747. {
  9748. name: "Macro",
  9749. height: math.unit(800, "feet")
  9750. },
  9751. {
  9752. name: "Megamacro",
  9753. height: math.unit(25, "miles")
  9754. }
  9755. ]
  9756. ))
  9757. characterMakers.push(() => makeCharacter(
  9758. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9759. {
  9760. front: {
  9761. height: math.unit(6, "feet"),
  9762. weight: math.unit(200, "lbs"),
  9763. name: "Front",
  9764. image: {
  9765. source: "./media/characters/chari-gal/front.svg",
  9766. extra: 735/649,
  9767. bottom: 55/790
  9768. },
  9769. form: "normal",
  9770. default: true
  9771. },
  9772. back: {
  9773. height: math.unit(6, "feet"),
  9774. weight: math.unit(200, "lb"),
  9775. name: "Back",
  9776. image: {
  9777. source: "./media/characters/chari-gal/back.svg",
  9778. extra: 762/666,
  9779. bottom: 31/793
  9780. },
  9781. form: "normal"
  9782. },
  9783. mouth: {
  9784. height: math.unit(1.35, "feet"),
  9785. name: "Mouth",
  9786. image: {
  9787. source: "./media/characters/chari-gal/mouth.svg"
  9788. },
  9789. form: "normal"
  9790. },
  9791. gigantamax: {
  9792. height: math.unit(6 * 16, "feet"),
  9793. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9794. name: "Gigantamax",
  9795. image: {
  9796. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9797. extra: 1507/1149,
  9798. bottom: 254/1761
  9799. },
  9800. form: "gigantamax",
  9801. default: true
  9802. },
  9803. },
  9804. [
  9805. {
  9806. name: "Normal",
  9807. height: math.unit(5 + 7 / 12, "feet"),
  9808. form: "normal",
  9809. },
  9810. {
  9811. name: "Macro",
  9812. height: math.unit(200, "feet"),
  9813. default: true,
  9814. form: "normal"
  9815. },
  9816. {
  9817. name: "Normal",
  9818. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9819. form: "gigantamax",
  9820. },
  9821. {
  9822. name: "Macro",
  9823. height: math.unit(16 * 200, "feet"),
  9824. default: true,
  9825. form: "gigantamax"
  9826. },
  9827. ],
  9828. {
  9829. "normal": {
  9830. name: "Normal",
  9831. default: true
  9832. },
  9833. "gigantamax": {
  9834. name: "Gigantamax",
  9835. },
  9836. }
  9837. ))
  9838. characterMakers.push(() => makeCharacter(
  9839. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9840. {
  9841. front: {
  9842. height: math.unit(6, "feet"),
  9843. weight: math.unit(150, "lbs"),
  9844. name: "Front",
  9845. image: {
  9846. source: "./media/characters/nova/front.svg",
  9847. extra: 5000 / 4722,
  9848. bottom: 0.02
  9849. }
  9850. }
  9851. },
  9852. [
  9853. {
  9854. name: "Micro-",
  9855. height: math.unit(0.8, "inches")
  9856. },
  9857. {
  9858. name: "Micro",
  9859. height: math.unit(2, "inches"),
  9860. default: true
  9861. },
  9862. ]
  9863. ))
  9864. characterMakers.push(() => makeCharacter(
  9865. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9866. {
  9867. koboldFront: {
  9868. height: math.unit(3 + 1 / 12, "feet"),
  9869. weight: math.unit(21.7, "lbs"),
  9870. name: "Front",
  9871. image: {
  9872. source: "./media/characters/argent/kobold-front.svg",
  9873. extra: 1471 / 1331,
  9874. bottom: 100.8 / 1575.5
  9875. },
  9876. form: "kobold",
  9877. default: true
  9878. },
  9879. dragonFront: {
  9880. height: math.unit(75, "inches"),
  9881. name: "Front",
  9882. image: {
  9883. source: "./media/characters/argent/dragon-front.svg",
  9884. extra: 1389/1248,
  9885. bottom: 54/1443
  9886. },
  9887. form: "dragon",
  9888. },
  9889. dragonBack: {
  9890. height: math.unit(75, "inches"),
  9891. name: "Back",
  9892. image: {
  9893. source: "./media/characters/argent/dragon-back.svg",
  9894. extra: 1399/1271,
  9895. bottom: 23/1422
  9896. },
  9897. form: "dragon",
  9898. },
  9899. dragonDressed: {
  9900. height: math.unit(75, "inches"),
  9901. name: "Dressed",
  9902. image: {
  9903. source: "./media/characters/argent/dragon-dressed.svg",
  9904. extra: 1350/1215,
  9905. bottom: 26/1376
  9906. },
  9907. form: "dragon"
  9908. },
  9909. dragonHead: {
  9910. height: math.unit(23.5, "inches"),
  9911. name: "Head",
  9912. image: {
  9913. source: "./media/characters/argent/dragon-head.svg"
  9914. },
  9915. form: "dragon",
  9916. },
  9917. },
  9918. [
  9919. {
  9920. name: "Micro",
  9921. height: math.unit(2, "inches"),
  9922. form: "kobold",
  9923. },
  9924. {
  9925. name: "Normal",
  9926. height: math.unit(3 + 1 / 12, "feet"),
  9927. form: "kobold",
  9928. default: true
  9929. },
  9930. {
  9931. name: "Macro",
  9932. height: math.unit(120, "feet"),
  9933. form: "kobold",
  9934. },
  9935. {
  9936. name: "Speck",
  9937. height: math.unit(1, "mm"),
  9938. form: "dragon",
  9939. },
  9940. {
  9941. name: "Tiny",
  9942. height: math.unit(1, "cm"),
  9943. form: "dragon",
  9944. },
  9945. {
  9946. name: "Micro",
  9947. height: math.unit(5, "cm"),
  9948. form: "dragon",
  9949. },
  9950. {
  9951. name: "Normal",
  9952. height: math.unit(75, "inches"),
  9953. form: "dragon",
  9954. default: true
  9955. },
  9956. {
  9957. name: "Extra Tall",
  9958. height: math.unit(9, "feet"),
  9959. form: "dragon",
  9960. },
  9961. {
  9962. name: "Inconvenient",
  9963. height: math.unit(5, "meters"),
  9964. form: "dragon",
  9965. },
  9966. {
  9967. name: "Macro",
  9968. height: math.unit(70, "meters"),
  9969. form: "dragon",
  9970. },
  9971. {
  9972. name: "Macro+",
  9973. height: math.unit(250, "meters"),
  9974. form: "dragon",
  9975. },
  9976. {
  9977. name: "Megamacro",
  9978. height: math.unit(20, "km"),
  9979. form: "dragon",
  9980. },
  9981. {
  9982. name: "Mountainous",
  9983. height: math.unit(100, "km"),
  9984. form: "dragon",
  9985. },
  9986. {
  9987. name: "Continental",
  9988. height: math.unit(2, "megameters"),
  9989. form: "dragon",
  9990. },
  9991. {
  9992. name: "Too Big",
  9993. height: math.unit(900, "megameters"),
  9994. form: "dragon",
  9995. },
  9996. ],
  9997. {
  9998. "kobold": {
  9999. name: "Kobold",
  10000. default: true
  10001. },
  10002. "dragon": {
  10003. name: "Dragon",
  10004. },
  10005. }
  10006. ))
  10007. characterMakers.push(() => makeCharacter(
  10008. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10009. {
  10010. lamp: {
  10011. height: math.unit(7 * 1559 / 989, "feet"),
  10012. name: "Magic Lamp",
  10013. image: {
  10014. source: "./media/characters/mira-al-cul/lamp.svg",
  10015. extra: 1617 / 1559
  10016. }
  10017. },
  10018. front: {
  10019. height: math.unit(7, "feet"),
  10020. name: "Front",
  10021. image: {
  10022. source: "./media/characters/mira-al-cul/front.svg",
  10023. extra: 1044 / 990
  10024. }
  10025. },
  10026. },
  10027. [
  10028. {
  10029. name: "Heavily Restricted",
  10030. height: math.unit(7 * 1559 / 989, "feet")
  10031. },
  10032. {
  10033. name: "Freshly Freed",
  10034. height: math.unit(50 * 1559 / 989, "feet")
  10035. },
  10036. {
  10037. name: "World Encompassing",
  10038. height: math.unit(10000 * 1559 / 989, "miles")
  10039. },
  10040. {
  10041. name: "Galactic",
  10042. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10043. },
  10044. {
  10045. name: "Palmed Universe",
  10046. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10047. default: true
  10048. },
  10049. {
  10050. name: "Multiversal Matriarch",
  10051. height: math.unit(8.87e10, "yottameters")
  10052. },
  10053. {
  10054. name: "Void Mother",
  10055. height: math.unit(3.14e110, "yottaparsecs")
  10056. },
  10057. {
  10058. name: "Toying with Transcendence",
  10059. height: math.unit(1e307, "meters")
  10060. },
  10061. ]
  10062. ))
  10063. characterMakers.push(() => makeCharacter(
  10064. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10065. {
  10066. front: {
  10067. height: math.unit(17 + 1 / 12, "feet"),
  10068. weight: math.unit(476.2 * 5, "lbs"),
  10069. name: "Front",
  10070. image: {
  10071. source: "./media/characters/kuro-shi-uchū/front.svg",
  10072. extra: 2329 / 1835,
  10073. bottom: 0.02
  10074. }
  10075. },
  10076. },
  10077. [
  10078. {
  10079. name: "Micro",
  10080. height: math.unit(2, "inches")
  10081. },
  10082. {
  10083. name: "Normal",
  10084. height: math.unit(12, "meters")
  10085. },
  10086. {
  10087. name: "Planetary",
  10088. height: math.unit(0.00929, "AU"),
  10089. default: true
  10090. },
  10091. {
  10092. name: "Universal",
  10093. height: math.unit(20, "gigaparsecs")
  10094. },
  10095. ]
  10096. ))
  10097. characterMakers.push(() => makeCharacter(
  10098. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10099. {
  10100. front: {
  10101. height: math.unit(5 + 2 / 12, "feet"),
  10102. weight: math.unit(120, "lbs"),
  10103. name: "Front",
  10104. image: {
  10105. source: "./media/characters/katherine/front.svg",
  10106. extra: 2075 / 1969
  10107. }
  10108. },
  10109. dress: {
  10110. height: math.unit(5 + 2 / 12, "feet"),
  10111. weight: math.unit(120, "lbs"),
  10112. name: "Dress",
  10113. image: {
  10114. source: "./media/characters/katherine/dress.svg",
  10115. extra: 2258 / 2064
  10116. }
  10117. },
  10118. },
  10119. [
  10120. {
  10121. name: "Micro",
  10122. height: math.unit(1, "inches"),
  10123. default: true
  10124. },
  10125. {
  10126. name: "Normal",
  10127. height: math.unit(5 + 2 / 12, "feet")
  10128. },
  10129. {
  10130. name: "Macro",
  10131. height: math.unit(100, "meters")
  10132. },
  10133. {
  10134. name: "Megamacro",
  10135. height: math.unit(80, "miles")
  10136. },
  10137. ]
  10138. ))
  10139. characterMakers.push(() => makeCharacter(
  10140. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10141. {
  10142. front: {
  10143. height: math.unit(7 + 8 / 12, "feet"),
  10144. weight: math.unit(250, "lbs"),
  10145. name: "Front",
  10146. image: {
  10147. source: "./media/characters/yevis/front.svg",
  10148. extra: 1938 / 1755
  10149. }
  10150. }
  10151. },
  10152. [
  10153. {
  10154. name: "Mortal",
  10155. height: math.unit(7 + 8 / 12, "feet")
  10156. },
  10157. {
  10158. name: "Battle",
  10159. height: math.unit(25 + 11 / 12, "feet")
  10160. },
  10161. {
  10162. name: "Wrath",
  10163. height: math.unit(1654 + 11 / 12, "feet")
  10164. },
  10165. {
  10166. name: "Planet Destroyer",
  10167. height: math.unit(12000, "miles")
  10168. },
  10169. {
  10170. name: "Galaxy Conqueror",
  10171. height: math.unit(1.45, "zettameters"),
  10172. default: true
  10173. },
  10174. {
  10175. name: "Universal War",
  10176. height: math.unit(184, "gigaparsecs")
  10177. },
  10178. {
  10179. name: "Eternity War",
  10180. height: math.unit(1.98e55, "yottaparsecs")
  10181. },
  10182. ]
  10183. ))
  10184. characterMakers.push(() => makeCharacter(
  10185. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10186. {
  10187. front: {
  10188. height: math.unit(5 + 8 / 12, "feet"),
  10189. weight: math.unit(63, "kg"),
  10190. name: "Front",
  10191. image: {
  10192. source: "./media/characters/xavier/front.svg",
  10193. extra: 944 / 883
  10194. }
  10195. },
  10196. frontStretch: {
  10197. height: math.unit(5 + 8 / 12, "feet"),
  10198. weight: math.unit(63, "kg"),
  10199. name: "Stretching",
  10200. image: {
  10201. source: "./media/characters/xavier/front-stretch.svg",
  10202. extra: 962 / 820
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Normal",
  10209. height: math.unit(5 + 8 / 12, "feet")
  10210. },
  10211. {
  10212. name: "Macro",
  10213. height: math.unit(100, "meters"),
  10214. default: true
  10215. },
  10216. {
  10217. name: "McLargeHuge",
  10218. height: math.unit(10, "miles")
  10219. },
  10220. ]
  10221. ))
  10222. characterMakers.push(() => makeCharacter(
  10223. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10224. {
  10225. front: {
  10226. height: math.unit(5 + 5 / 12, "feet"),
  10227. weight: math.unit(150, "lb"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/joshii/front.svg",
  10231. extra: 765 / 653,
  10232. bottom: 51 / 816
  10233. }
  10234. },
  10235. foot: {
  10236. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10237. name: "Foot",
  10238. image: {
  10239. source: "./media/characters/joshii/foot.svg"
  10240. }
  10241. },
  10242. },
  10243. [
  10244. {
  10245. name: "Micro",
  10246. height: math.unit(2, "inches")
  10247. },
  10248. {
  10249. name: "Normal",
  10250. height: math.unit(5 + 5 / 12, "feet")
  10251. },
  10252. {
  10253. name: "Macro",
  10254. height: math.unit(785, "feet"),
  10255. default: true
  10256. },
  10257. {
  10258. name: "Megamacro",
  10259. height: math.unit(24.5, "miles")
  10260. },
  10261. ]
  10262. ))
  10263. characterMakers.push(() => makeCharacter(
  10264. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10265. {
  10266. front: {
  10267. height: math.unit(6, "feet"),
  10268. weight: math.unit(150, "lb"),
  10269. name: "Front",
  10270. image: {
  10271. source: "./media/characters/goddess-elizabeth/front.svg",
  10272. extra: 1800 / 1525,
  10273. bottom: 0.005
  10274. }
  10275. },
  10276. foot: {
  10277. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10278. name: "Foot",
  10279. image: {
  10280. source: "./media/characters/goddess-elizabeth/foot.svg"
  10281. }
  10282. },
  10283. mouth: {
  10284. height: math.unit(6, "feet"),
  10285. name: "Mouth",
  10286. image: {
  10287. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10288. }
  10289. },
  10290. },
  10291. [
  10292. {
  10293. name: "Micro",
  10294. height: math.unit(12, "feet")
  10295. },
  10296. {
  10297. name: "Normal",
  10298. height: math.unit(80, "miles"),
  10299. default: true
  10300. },
  10301. {
  10302. name: "Macro",
  10303. height: math.unit(15000, "parsecs")
  10304. },
  10305. ]
  10306. ))
  10307. characterMakers.push(() => makeCharacter(
  10308. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10309. {
  10310. front: {
  10311. height: math.unit(5 + 9 / 12, "feet"),
  10312. weight: math.unit(144, "lb"),
  10313. name: "Front",
  10314. image: {
  10315. source: "./media/characters/kara/front.svg"
  10316. }
  10317. },
  10318. feet: {
  10319. height: math.unit(6 / 6.765, "feet"),
  10320. name: "Kara's Feet",
  10321. rename: true,
  10322. image: {
  10323. source: "./media/characters/kara/feet.svg"
  10324. }
  10325. },
  10326. },
  10327. [
  10328. {
  10329. name: "Normal",
  10330. height: math.unit(5 + 9 / 12, "feet")
  10331. },
  10332. {
  10333. name: "Macro",
  10334. height: math.unit(174, "feet"),
  10335. default: true
  10336. },
  10337. ]
  10338. ))
  10339. characterMakers.push(() => makeCharacter(
  10340. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10341. {
  10342. front: {
  10343. height: math.unit(18, "feet"),
  10344. weight: math.unit(4050, "lb"),
  10345. name: "Front",
  10346. image: {
  10347. source: "./media/characters/tyrone/front.svg",
  10348. extra: 2405 / 2270,
  10349. bottom: 182 / 2587
  10350. }
  10351. },
  10352. },
  10353. [
  10354. {
  10355. name: "Normal",
  10356. height: math.unit(18, "feet"),
  10357. default: true
  10358. },
  10359. {
  10360. name: "Macro",
  10361. height: math.unit(300, "feet")
  10362. },
  10363. {
  10364. name: "Megamacro",
  10365. height: math.unit(15, "km")
  10366. },
  10367. {
  10368. name: "Gigamacro",
  10369. height: math.unit(500, "km")
  10370. },
  10371. {
  10372. name: "Teramacro",
  10373. height: math.unit(0.5, "gigameters")
  10374. },
  10375. {
  10376. name: "Omnimacro",
  10377. height: math.unit(1e252, "yottauniverse")
  10378. },
  10379. ]
  10380. ))
  10381. characterMakers.push(() => makeCharacter(
  10382. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10383. {
  10384. front: {
  10385. height: math.unit(7 + 8 / 12, "feet"),
  10386. weight: math.unit(120, "lb"),
  10387. name: "Front",
  10388. image: {
  10389. source: "./media/characters/danny/front.svg",
  10390. extra: 1490 / 1350
  10391. }
  10392. },
  10393. back: {
  10394. height: math.unit(7 + 8 / 12, "feet"),
  10395. weight: math.unit(120, "lb"),
  10396. name: "Back",
  10397. image: {
  10398. source: "./media/characters/danny/back.svg",
  10399. extra: 1490 / 1350
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(7 + 8 / 12, "feet"),
  10407. default: true
  10408. },
  10409. ]
  10410. ))
  10411. characterMakers.push(() => makeCharacter(
  10412. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10413. {
  10414. front: {
  10415. height: math.unit(3.5, "inches"),
  10416. weight: math.unit(19, "grams"),
  10417. name: "Front",
  10418. image: {
  10419. source: "./media/characters/mallow/front.svg",
  10420. extra: 471 / 431
  10421. }
  10422. },
  10423. back: {
  10424. height: math.unit(3.5, "inches"),
  10425. weight: math.unit(19, "grams"),
  10426. name: "Back",
  10427. image: {
  10428. source: "./media/characters/mallow/back.svg",
  10429. extra: 471 / 431
  10430. }
  10431. },
  10432. },
  10433. [
  10434. {
  10435. name: "Normal",
  10436. height: math.unit(3.5, "inches"),
  10437. default: true
  10438. },
  10439. ]
  10440. ))
  10441. characterMakers.push(() => makeCharacter(
  10442. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10443. {
  10444. front: {
  10445. height: math.unit(9, "feet"),
  10446. weight: math.unit(230, "kg"),
  10447. name: "Front",
  10448. image: {
  10449. source: "./media/characters/starry-aqua/front.svg"
  10450. }
  10451. },
  10452. back: {
  10453. height: math.unit(9, "feet"),
  10454. weight: math.unit(230, "kg"),
  10455. name: "Back",
  10456. image: {
  10457. source: "./media/characters/starry-aqua/back.svg"
  10458. }
  10459. },
  10460. hand: {
  10461. height: math.unit(9 * 0.1168, "feet"),
  10462. name: "Hand",
  10463. image: {
  10464. source: "./media/characters/starry-aqua/hand.svg"
  10465. }
  10466. },
  10467. foot: {
  10468. height: math.unit(9 * 0.18, "feet"),
  10469. name: "Foot",
  10470. image: {
  10471. source: "./media/characters/starry-aqua/foot.svg"
  10472. }
  10473. }
  10474. },
  10475. [
  10476. {
  10477. name: "Micro",
  10478. height: math.unit(3, "inches")
  10479. },
  10480. {
  10481. name: "Normal",
  10482. height: math.unit(9, "feet")
  10483. },
  10484. {
  10485. name: "Macro",
  10486. height: math.unit(300, "feet"),
  10487. default: true
  10488. },
  10489. {
  10490. name: "Megamacro",
  10491. height: math.unit(3200, "feet")
  10492. }
  10493. ]
  10494. ))
  10495. characterMakers.push(() => makeCharacter(
  10496. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10497. {
  10498. front: {
  10499. height: math.unit(15, "feet"),
  10500. weight: math.unit(5026, "lb"),
  10501. name: "Front",
  10502. image: {
  10503. source: "./media/characters/luka-towers/front.svg",
  10504. extra: 1269/1133,
  10505. bottom: 51/1320
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Normal",
  10512. height: math.unit(15, "feet"),
  10513. default: true
  10514. },
  10515. {
  10516. name: "Minimacro",
  10517. height: math.unit(25, "feet")
  10518. },
  10519. {
  10520. name: "Macro",
  10521. height: math.unit(320, "feet")
  10522. },
  10523. {
  10524. name: "Megamacro",
  10525. height: math.unit(35000, "feet")
  10526. },
  10527. {
  10528. name: "Gigamacro",
  10529. height: math.unit(4000, "miles")
  10530. },
  10531. {
  10532. name: "Teramacro",
  10533. height: math.unit(15000, "miles")
  10534. },
  10535. ]
  10536. ))
  10537. characterMakers.push(() => makeCharacter(
  10538. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10539. {
  10540. front: {
  10541. height: math.unit(6, "feet"),
  10542. weight: math.unit(150, "lb"),
  10543. name: "Front",
  10544. image: {
  10545. source: "./media/characters/natalie-nightring/front.svg",
  10546. extra: 1,
  10547. bottom: 0.06
  10548. }
  10549. },
  10550. },
  10551. [
  10552. {
  10553. name: "Uh Oh",
  10554. height: math.unit(0.1, "mm")
  10555. },
  10556. {
  10557. name: "Small",
  10558. height: math.unit(3, "inches")
  10559. },
  10560. {
  10561. name: "Human Scale",
  10562. height: math.unit(6, "feet")
  10563. },
  10564. {
  10565. name: "Librarian",
  10566. height: math.unit(50, "feet"),
  10567. default: true
  10568. },
  10569. {
  10570. name: "Immense",
  10571. height: math.unit(200, "miles")
  10572. },
  10573. ]
  10574. ))
  10575. characterMakers.push(() => makeCharacter(
  10576. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10577. {
  10578. front: {
  10579. height: math.unit(6, "feet"),
  10580. weight: math.unit(180, "lbs"),
  10581. name: "Front",
  10582. image: {
  10583. source: "./media/characters/danni-rosie/front.svg",
  10584. extra: 1260 / 1128,
  10585. bottom: 0.022
  10586. }
  10587. },
  10588. },
  10589. [
  10590. {
  10591. name: "Micro",
  10592. height: math.unit(2, "inches"),
  10593. default: true
  10594. },
  10595. ]
  10596. ))
  10597. characterMakers.push(() => makeCharacter(
  10598. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10599. {
  10600. front: {
  10601. height: math.unit(5 + 9 / 12, "feet"),
  10602. weight: math.unit(220, "lb"),
  10603. name: "Front",
  10604. image: {
  10605. source: "./media/characters/samantha-kruse/front.svg",
  10606. extra: (985 / 935),
  10607. bottom: 0.03
  10608. }
  10609. },
  10610. frontUndressed: {
  10611. height: math.unit(5 + 9 / 12, "feet"),
  10612. weight: math.unit(220, "lb"),
  10613. name: "Front (Undressed)",
  10614. image: {
  10615. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10616. extra: (973 / 923),
  10617. bottom: 0.025
  10618. }
  10619. },
  10620. fat: {
  10621. height: math.unit(5 + 9 / 12, "feet"),
  10622. weight: math.unit(900, "lb"),
  10623. name: "Front (Fat)",
  10624. image: {
  10625. source: "./media/characters/samantha-kruse/fat.svg",
  10626. extra: 2688 / 2561
  10627. }
  10628. },
  10629. },
  10630. [
  10631. {
  10632. name: "Normal",
  10633. height: math.unit(5 + 9 / 12, "feet"),
  10634. default: true
  10635. }
  10636. ]
  10637. ))
  10638. characterMakers.push(() => makeCharacter(
  10639. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10640. {
  10641. back: {
  10642. height: math.unit(5 + 4 / 12, "feet"),
  10643. weight: math.unit(4963, "lb"),
  10644. name: "Back",
  10645. image: {
  10646. source: "./media/characters/amelia-rosie/back.svg",
  10647. extra: 1113 / 963,
  10648. bottom: 0.01
  10649. }
  10650. },
  10651. },
  10652. [
  10653. {
  10654. name: "Level 0",
  10655. height: math.unit(5 + 4 / 12, "feet")
  10656. },
  10657. {
  10658. name: "Level 1",
  10659. height: math.unit(164597, "feet"),
  10660. default: true
  10661. },
  10662. {
  10663. name: "Level 2",
  10664. height: math.unit(956243, "miles")
  10665. },
  10666. {
  10667. name: "Level 3",
  10668. height: math.unit(29421709423, "miles")
  10669. },
  10670. {
  10671. name: "Level 4",
  10672. height: math.unit(154, "lightyears")
  10673. },
  10674. {
  10675. name: "Level 5",
  10676. height: math.unit(4738272, "lightyears")
  10677. },
  10678. {
  10679. name: "Level 6",
  10680. height: math.unit(145787152896, "lightyears")
  10681. },
  10682. ]
  10683. ))
  10684. characterMakers.push(() => makeCharacter(
  10685. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10686. {
  10687. front: {
  10688. height: math.unit(5 + 11 / 12, "feet"),
  10689. weight: math.unit(65, "kg"),
  10690. name: "Front",
  10691. image: {
  10692. source: "./media/characters/rook-kitara/front.svg",
  10693. extra: 1347 / 1274,
  10694. bottom: 0.005
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Totally Unfair",
  10701. height: math.unit(1.8, "mm")
  10702. },
  10703. {
  10704. name: "Lap Rookie",
  10705. height: math.unit(1.4, "feet")
  10706. },
  10707. {
  10708. name: "Normal",
  10709. height: math.unit(5 + 11 / 12, "feet"),
  10710. default: true
  10711. },
  10712. {
  10713. name: "How Did This Happen",
  10714. height: math.unit(80, "miles")
  10715. }
  10716. ]
  10717. ))
  10718. characterMakers.push(() => makeCharacter(
  10719. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10720. {
  10721. front: {
  10722. height: math.unit(7, "feet"),
  10723. weight: math.unit(300, "lb"),
  10724. name: "Front",
  10725. image: {
  10726. source: "./media/characters/pisces/front.svg",
  10727. extra: 2255 / 2115,
  10728. bottom: 0.03
  10729. }
  10730. },
  10731. back: {
  10732. height: math.unit(7, "feet"),
  10733. weight: math.unit(300, "lb"),
  10734. name: "Back",
  10735. image: {
  10736. source: "./media/characters/pisces/back.svg",
  10737. extra: 2146 / 2055,
  10738. bottom: 0.04
  10739. }
  10740. },
  10741. },
  10742. [
  10743. {
  10744. name: "Normal",
  10745. height: math.unit(7, "feet"),
  10746. default: true
  10747. },
  10748. {
  10749. name: "Swimming Pool",
  10750. height: math.unit(12.2, "meters")
  10751. },
  10752. {
  10753. name: "Olympic Swimming Pool",
  10754. height: math.unit(56.3, "meters")
  10755. },
  10756. {
  10757. name: "Lake Superior",
  10758. height: math.unit(93900, "meters")
  10759. },
  10760. {
  10761. name: "Mediterranean Sea",
  10762. height: math.unit(644457, "meters")
  10763. },
  10764. {
  10765. name: "World's Oceans",
  10766. height: math.unit(4567491, "meters")
  10767. },
  10768. ]
  10769. ))
  10770. characterMakers.push(() => makeCharacter(
  10771. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10772. {
  10773. front: {
  10774. height: math.unit(2.3, "meters"),
  10775. weight: math.unit(120, "kg"),
  10776. name: "Front",
  10777. image: {
  10778. source: "./media/characters/zelas/front.svg"
  10779. }
  10780. },
  10781. side: {
  10782. height: math.unit(2.3, "meters"),
  10783. weight: math.unit(120, "kg"),
  10784. name: "Side",
  10785. image: {
  10786. source: "./media/characters/zelas/side.svg"
  10787. }
  10788. },
  10789. back: {
  10790. height: math.unit(2.3, "meters"),
  10791. weight: math.unit(120, "kg"),
  10792. name: "Back",
  10793. image: {
  10794. source: "./media/characters/zelas/back.svg"
  10795. }
  10796. },
  10797. foot: {
  10798. height: math.unit(1.116, "feet"),
  10799. name: "Foot",
  10800. image: {
  10801. source: "./media/characters/zelas/foot.svg"
  10802. }
  10803. },
  10804. },
  10805. [
  10806. {
  10807. name: "Normal",
  10808. height: math.unit(2.3, "meters")
  10809. },
  10810. {
  10811. name: "Macro",
  10812. height: math.unit(30, "meters"),
  10813. default: true
  10814. },
  10815. ]
  10816. ))
  10817. characterMakers.push(() => makeCharacter(
  10818. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10819. {
  10820. front: {
  10821. height: math.unit(1, "inch"),
  10822. weight: math.unit(0.21, "grams"),
  10823. name: "Front",
  10824. image: {
  10825. source: "./media/characters/talbot/front.svg",
  10826. extra: 594 / 544
  10827. }
  10828. },
  10829. },
  10830. [
  10831. {
  10832. name: "Micro",
  10833. height: math.unit(1, "inch"),
  10834. default: true
  10835. },
  10836. ]
  10837. ))
  10838. characterMakers.push(() => makeCharacter(
  10839. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10840. {
  10841. front: {
  10842. height: math.unit(3 + 3 / 12, "feet"),
  10843. weight: math.unit(51.8, "lb"),
  10844. name: "Front",
  10845. image: {
  10846. source: "./media/characters/fliss/front.svg",
  10847. extra: 840 / 640
  10848. }
  10849. },
  10850. },
  10851. [
  10852. {
  10853. name: "Teeny Tiny",
  10854. height: math.unit(1, "mm")
  10855. },
  10856. {
  10857. name: "Small",
  10858. height: math.unit(1, "inch"),
  10859. default: true
  10860. },
  10861. {
  10862. name: "Standard Sylveon",
  10863. height: math.unit(3 + 3 / 12, "feet")
  10864. },
  10865. {
  10866. name: "Large Nuisance",
  10867. height: math.unit(33, "feet")
  10868. },
  10869. {
  10870. name: "City Filler",
  10871. height: math.unit(3000, "feet")
  10872. },
  10873. {
  10874. name: "New Horizon",
  10875. height: math.unit(6000, "miles")
  10876. },
  10877. ]
  10878. ))
  10879. characterMakers.push(() => makeCharacter(
  10880. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10881. {
  10882. front: {
  10883. height: math.unit(5, "cm"),
  10884. weight: math.unit(1.94, "g"),
  10885. name: "Front",
  10886. image: {
  10887. source: "./media/characters/fleta/front.svg",
  10888. extra: 835 / 803
  10889. }
  10890. },
  10891. back: {
  10892. height: math.unit(5, "cm"),
  10893. weight: math.unit(1.94, "g"),
  10894. name: "Back",
  10895. image: {
  10896. source: "./media/characters/fleta/back.svg",
  10897. extra: 835 / 803
  10898. }
  10899. },
  10900. },
  10901. [
  10902. {
  10903. name: "Micro",
  10904. height: math.unit(5, "cm"),
  10905. default: true
  10906. },
  10907. ]
  10908. ))
  10909. characterMakers.push(() => makeCharacter(
  10910. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10911. {
  10912. front: {
  10913. height: math.unit(6, "feet"),
  10914. weight: math.unit(225, "lb"),
  10915. name: "Front",
  10916. image: {
  10917. source: "./media/characters/dominic/front.svg",
  10918. extra: 1770 / 1620,
  10919. bottom: 0.025
  10920. }
  10921. },
  10922. back: {
  10923. height: math.unit(6, "feet"),
  10924. weight: math.unit(225, "lb"),
  10925. name: "Back",
  10926. image: {
  10927. source: "./media/characters/dominic/back.svg",
  10928. extra: 1745 / 1620,
  10929. bottom: 0.065
  10930. }
  10931. },
  10932. },
  10933. [
  10934. {
  10935. name: "Nano",
  10936. height: math.unit(0.1, "mm")
  10937. },
  10938. {
  10939. name: "Micro-",
  10940. height: math.unit(1, "mm")
  10941. },
  10942. {
  10943. name: "Micro",
  10944. height: math.unit(4, "inches")
  10945. },
  10946. {
  10947. name: "Normal",
  10948. height: math.unit(6 + 4 / 12, "feet"),
  10949. default: true
  10950. },
  10951. {
  10952. name: "Macro",
  10953. height: math.unit(115, "feet")
  10954. },
  10955. {
  10956. name: "Macro+",
  10957. height: math.unit(955, "feet")
  10958. },
  10959. {
  10960. name: "Megamacro",
  10961. height: math.unit(8990, "feet")
  10962. },
  10963. {
  10964. name: "Gigmacro",
  10965. height: math.unit(9310, "miles")
  10966. },
  10967. {
  10968. name: "Teramacro",
  10969. height: math.unit(1567005010, "miles")
  10970. },
  10971. {
  10972. name: "Examacro",
  10973. height: math.unit(1425, "parsecs")
  10974. },
  10975. ]
  10976. ))
  10977. characterMakers.push(() => makeCharacter(
  10978. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10979. {
  10980. front: {
  10981. height: math.unit(400, "feet"),
  10982. weight: math.unit(44444444, "lb"),
  10983. name: "Front",
  10984. image: {
  10985. source: "./media/characters/major-colonel/front.svg"
  10986. }
  10987. },
  10988. back: {
  10989. height: math.unit(400, "feet"),
  10990. weight: math.unit(44444444, "lb"),
  10991. name: "Back",
  10992. image: {
  10993. source: "./media/characters/major-colonel/back.svg"
  10994. }
  10995. },
  10996. },
  10997. [
  10998. {
  10999. name: "Macro",
  11000. height: math.unit(400, "feet"),
  11001. default: true
  11002. },
  11003. ]
  11004. ))
  11005. characterMakers.push(() => makeCharacter(
  11006. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11007. {
  11008. catFront: {
  11009. height: math.unit(6, "feet"),
  11010. weight: math.unit(120, "lb"),
  11011. name: "Front (Cat Side)",
  11012. image: {
  11013. source: "./media/characters/axel-lycan/cat-front.svg",
  11014. extra: 430 / 402,
  11015. bottom: 43 / 472.35
  11016. }
  11017. },
  11018. catBack: {
  11019. height: math.unit(6, "feet"),
  11020. weight: math.unit(120, "lb"),
  11021. name: "Back (Cat Side)",
  11022. image: {
  11023. source: "./media/characters/axel-lycan/cat-back.svg",
  11024. extra: 447 / 419,
  11025. bottom: 23.3 / 469
  11026. }
  11027. },
  11028. wolfFront: {
  11029. height: math.unit(6, "feet"),
  11030. weight: math.unit(120, "lb"),
  11031. name: "Front (Wolf Side)",
  11032. image: {
  11033. source: "./media/characters/axel-lycan/wolf-front.svg",
  11034. extra: 485 / 456,
  11035. bottom: 19 / 504
  11036. }
  11037. },
  11038. wolfBack: {
  11039. height: math.unit(6, "feet"),
  11040. weight: math.unit(120, "lb"),
  11041. name: "Back (Wolf Side)",
  11042. image: {
  11043. source: "./media/characters/axel-lycan/wolf-back.svg",
  11044. extra: 475 / 438,
  11045. bottom: 39.2 / 514
  11046. }
  11047. },
  11048. },
  11049. [
  11050. {
  11051. name: "Macro",
  11052. height: math.unit(1, "km"),
  11053. default: true
  11054. },
  11055. ]
  11056. ))
  11057. characterMakers.push(() => makeCharacter(
  11058. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11059. {
  11060. front: {
  11061. height: math.unit(5 + 9 / 12, "feet"),
  11062. weight: math.unit(175, "lb"),
  11063. name: "Front",
  11064. image: {
  11065. source: "./media/characters/vanrel-hyena/front.svg",
  11066. extra: 1086 / 1010,
  11067. bottom: 0.04
  11068. }
  11069. },
  11070. },
  11071. [
  11072. {
  11073. name: "Normal",
  11074. height: math.unit(5 + 9 / 12, "feet"),
  11075. default: true
  11076. },
  11077. ]
  11078. ))
  11079. characterMakers.push(() => makeCharacter(
  11080. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11081. {
  11082. front: {
  11083. height: math.unit(6, "feet"),
  11084. weight: math.unit(103, "lb"),
  11085. name: "Front",
  11086. image: {
  11087. source: "./media/characters/abbott-absol/front.svg",
  11088. extra: 765/694,
  11089. bottom: 47/812
  11090. }
  11091. },
  11092. },
  11093. [
  11094. {
  11095. name: "Megamicro",
  11096. height: math.unit(0.1, "mm")
  11097. },
  11098. {
  11099. name: "Micro",
  11100. height: math.unit(1, "inch")
  11101. },
  11102. {
  11103. name: "Normal",
  11104. height: math.unit(6, "feet"),
  11105. default: true
  11106. },
  11107. ]
  11108. ))
  11109. characterMakers.push(() => makeCharacter(
  11110. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11111. {
  11112. front: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(264, "lb"),
  11115. name: "Front",
  11116. image: {
  11117. source: "./media/characters/hector/front.svg",
  11118. extra: 2280 / 2130,
  11119. bottom: 0.07
  11120. }
  11121. },
  11122. },
  11123. [
  11124. {
  11125. name: "Normal",
  11126. height: math.unit(12.25, "foot"),
  11127. default: true
  11128. },
  11129. {
  11130. name: "Macro",
  11131. height: math.unit(160, "feet")
  11132. },
  11133. ]
  11134. ))
  11135. characterMakers.push(() => makeCharacter(
  11136. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11137. {
  11138. front: {
  11139. height: math.unit(6, "feet"),
  11140. weight: math.unit(150, "lb"),
  11141. name: "Front",
  11142. image: {
  11143. source: "./media/characters/sal/front.svg",
  11144. extra: 1846 / 1699,
  11145. bottom: 0.04
  11146. }
  11147. },
  11148. },
  11149. [
  11150. {
  11151. name: "Megamacro",
  11152. height: math.unit(10, "miles"),
  11153. default: true
  11154. },
  11155. ]
  11156. ))
  11157. characterMakers.push(() => makeCharacter(
  11158. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11159. {
  11160. front: {
  11161. height: math.unit(3, "meters"),
  11162. weight: math.unit(450, "kg"),
  11163. name: "front",
  11164. image: {
  11165. source: "./media/characters/ranger/front.svg",
  11166. extra: 2401 / 2243,
  11167. bottom: 0.05
  11168. }
  11169. },
  11170. },
  11171. [
  11172. {
  11173. name: "Normal",
  11174. height: math.unit(3, "meters"),
  11175. default: true
  11176. },
  11177. ]
  11178. ))
  11179. characterMakers.push(() => makeCharacter(
  11180. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11181. {
  11182. front: {
  11183. height: math.unit(14, "feet"),
  11184. weight: math.unit(800, "kg"),
  11185. name: "Front",
  11186. image: {
  11187. source: "./media/characters/theresa/front.svg",
  11188. extra: 3575 / 3346,
  11189. bottom: 0.03
  11190. }
  11191. },
  11192. },
  11193. [
  11194. {
  11195. name: "Normal",
  11196. height: math.unit(14, "feet"),
  11197. default: true
  11198. },
  11199. ]
  11200. ))
  11201. characterMakers.push(() => makeCharacter(
  11202. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11203. {
  11204. front: {
  11205. height: math.unit(6, "feet"),
  11206. weight: math.unit(3, "kg"),
  11207. name: "Front",
  11208. image: {
  11209. source: "./media/characters/ine/front.svg",
  11210. extra: 678 / 539,
  11211. bottom: 0.023
  11212. }
  11213. },
  11214. },
  11215. [
  11216. {
  11217. name: "Normal",
  11218. height: math.unit(2.265, "feet"),
  11219. default: true
  11220. },
  11221. ]
  11222. ))
  11223. characterMakers.push(() => makeCharacter(
  11224. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11225. {
  11226. front: {
  11227. height: math.unit(5, "feet"),
  11228. weight: math.unit(30, "kg"),
  11229. name: "Front",
  11230. image: {
  11231. source: "./media/characters/vial/front.svg",
  11232. extra: 1365 / 1277,
  11233. bottom: 0.04
  11234. }
  11235. },
  11236. },
  11237. [
  11238. {
  11239. name: "Normal",
  11240. height: math.unit(5, "feet"),
  11241. default: true
  11242. },
  11243. ]
  11244. ))
  11245. characterMakers.push(() => makeCharacter(
  11246. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11247. {
  11248. side: {
  11249. height: math.unit(3.4, "meters"),
  11250. weight: math.unit(1000, "lb"),
  11251. name: "Side",
  11252. image: {
  11253. source: "./media/characters/rovoska/side.svg",
  11254. extra: 4403 / 1515
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Normal",
  11261. height: math.unit(3.4, "meters"),
  11262. default: true
  11263. },
  11264. ]
  11265. ))
  11266. characterMakers.push(() => makeCharacter(
  11267. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11268. {
  11269. front: {
  11270. height: math.unit(8, "feet"),
  11271. weight: math.unit(315, "lb"),
  11272. name: "Front",
  11273. image: {
  11274. source: "./media/characters/gunner-rotthbauer/front.svg"
  11275. }
  11276. },
  11277. back: {
  11278. height: math.unit(8, "feet"),
  11279. weight: math.unit(315, "lb"),
  11280. name: "Back",
  11281. image: {
  11282. source: "./media/characters/gunner-rotthbauer/back.svg"
  11283. }
  11284. },
  11285. },
  11286. [
  11287. {
  11288. name: "Micro",
  11289. height: math.unit(3.5, "inches")
  11290. },
  11291. {
  11292. name: "Normal",
  11293. height: math.unit(8, "feet"),
  11294. default: true
  11295. },
  11296. {
  11297. name: "Macro",
  11298. height: math.unit(250, "feet")
  11299. },
  11300. {
  11301. name: "Megamacro",
  11302. height: math.unit(1, "AU")
  11303. },
  11304. ]
  11305. ))
  11306. characterMakers.push(() => makeCharacter(
  11307. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11308. {
  11309. front: {
  11310. height: math.unit(5 + 5 / 12, "feet"),
  11311. weight: math.unit(140, "lb"),
  11312. name: "Front",
  11313. image: {
  11314. source: "./media/characters/allatia/front.svg",
  11315. extra: 1227 / 1180,
  11316. bottom: 0.027
  11317. }
  11318. },
  11319. },
  11320. [
  11321. {
  11322. name: "Normal",
  11323. height: math.unit(5 + 5 / 12, "feet")
  11324. },
  11325. {
  11326. name: "Macro",
  11327. height: math.unit(250, "feet"),
  11328. default: true
  11329. },
  11330. {
  11331. name: "Megamacro",
  11332. height: math.unit(8, "miles")
  11333. }
  11334. ]
  11335. ))
  11336. characterMakers.push(() => makeCharacter(
  11337. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11338. {
  11339. front: {
  11340. height: math.unit(6, "feet"),
  11341. weight: math.unit(120, "lb"),
  11342. name: "Front",
  11343. image: {
  11344. source: "./media/characters/tene/front.svg",
  11345. extra: 814/750,
  11346. bottom: 36/850
  11347. }
  11348. },
  11349. stomping: {
  11350. height: math.unit(2.025, "meters"),
  11351. weight: math.unit(120, "lb"),
  11352. name: "Stomping",
  11353. image: {
  11354. source: "./media/characters/tene/stomping.svg",
  11355. extra: 885/821,
  11356. bottom: 15/900
  11357. }
  11358. },
  11359. sitting: {
  11360. height: math.unit(1, "meter"),
  11361. weight: math.unit(120, "lb"),
  11362. name: "Sitting",
  11363. image: {
  11364. source: "./media/characters/tene/sitting.svg",
  11365. extra: 396/366,
  11366. bottom: 79/475
  11367. }
  11368. },
  11369. smiling: {
  11370. height: math.unit(1.2, "feet"),
  11371. name: "Smiling",
  11372. image: {
  11373. source: "./media/characters/tene/smiling.svg",
  11374. extra: 1364/1071,
  11375. bottom: 0/1364
  11376. }
  11377. },
  11378. smug: {
  11379. height: math.unit(1.3, "feet"),
  11380. name: "Smug",
  11381. image: {
  11382. source: "./media/characters/tene/smug.svg",
  11383. extra: 1323/1082,
  11384. bottom: 0/1323
  11385. }
  11386. },
  11387. feral: {
  11388. height: math.unit(3.9, "feet"),
  11389. weight: math.unit(250, "lb"),
  11390. name: "Feral",
  11391. image: {
  11392. source: "./media/characters/tene/feral.svg",
  11393. extra: 717 / 458,
  11394. bottom: 0.179
  11395. }
  11396. },
  11397. },
  11398. [
  11399. {
  11400. name: "Normal",
  11401. height: math.unit(6, "feet")
  11402. },
  11403. {
  11404. name: "Macro",
  11405. height: math.unit(300, "feet"),
  11406. default: true
  11407. },
  11408. {
  11409. name: "Megamacro",
  11410. height: math.unit(5, "miles")
  11411. },
  11412. ]
  11413. ))
  11414. characterMakers.push(() => makeCharacter(
  11415. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11416. {
  11417. side: {
  11418. height: math.unit(6, "feet"),
  11419. name: "Side",
  11420. image: {
  11421. source: "./media/characters/evander/side.svg",
  11422. extra: 877 / 477
  11423. }
  11424. },
  11425. },
  11426. [
  11427. {
  11428. name: "Normal",
  11429. height: math.unit(0.83, "meters"),
  11430. default: true
  11431. },
  11432. ]
  11433. ))
  11434. characterMakers.push(() => makeCharacter(
  11435. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11436. {
  11437. front: {
  11438. height: math.unit(12, "feet"),
  11439. weight: math.unit(1000, "lb"),
  11440. name: "Front",
  11441. image: {
  11442. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11443. extra: 1762 / 1611
  11444. }
  11445. },
  11446. back: {
  11447. height: math.unit(12, "feet"),
  11448. weight: math.unit(1000, "lb"),
  11449. name: "Back",
  11450. image: {
  11451. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11452. extra: 1762 / 1611
  11453. }
  11454. },
  11455. },
  11456. [
  11457. {
  11458. name: "Normal",
  11459. height: math.unit(12, "feet"),
  11460. default: true
  11461. },
  11462. {
  11463. name: "Kaiju",
  11464. height: math.unit(150, "feet")
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11470. {
  11471. front: {
  11472. height: math.unit(6, "feet"),
  11473. weight: math.unit(150, "lb"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/zero-alurus/front.svg"
  11477. }
  11478. },
  11479. back: {
  11480. height: math.unit(6, "feet"),
  11481. weight: math.unit(150, "lb"),
  11482. name: "Back",
  11483. image: {
  11484. source: "./media/characters/zero-alurus/back.svg"
  11485. }
  11486. },
  11487. },
  11488. [
  11489. {
  11490. name: "Normal",
  11491. height: math.unit(5 + 10 / 12, "feet")
  11492. },
  11493. {
  11494. name: "Macro",
  11495. height: math.unit(60, "feet"),
  11496. default: true
  11497. },
  11498. {
  11499. name: "Macro+",
  11500. height: math.unit(450, "feet")
  11501. },
  11502. ]
  11503. ))
  11504. characterMakers.push(() => makeCharacter(
  11505. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11506. {
  11507. front: {
  11508. height: math.unit(6, "feet"),
  11509. weight: math.unit(200, "lb"),
  11510. name: "Front",
  11511. image: {
  11512. source: "./media/characters/mega-shi/front.svg",
  11513. extra: 1279 / 1250,
  11514. bottom: 0.02
  11515. }
  11516. },
  11517. back: {
  11518. height: math.unit(6, "feet"),
  11519. weight: math.unit(200, "lb"),
  11520. name: "Back",
  11521. image: {
  11522. source: "./media/characters/mega-shi/back.svg",
  11523. extra: 1279 / 1250,
  11524. bottom: 0.02
  11525. }
  11526. },
  11527. },
  11528. [
  11529. {
  11530. name: "Micro",
  11531. height: math.unit(16 + 6 / 12, "feet")
  11532. },
  11533. {
  11534. name: "Third Dimension",
  11535. height: math.unit(40, "meters")
  11536. },
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(660, "feet"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Megamacro",
  11544. height: math.unit(10, "miles")
  11545. },
  11546. {
  11547. name: "Planetary Launch",
  11548. height: math.unit(500, "miles")
  11549. },
  11550. {
  11551. name: "Interstellar",
  11552. height: math.unit(1e9, "miles")
  11553. },
  11554. {
  11555. name: "Leaving the Universe",
  11556. height: math.unit(1, "gigaparsec")
  11557. },
  11558. {
  11559. name: "Travelling Universes",
  11560. height: math.unit(30e15, "parsecs")
  11561. },
  11562. ]
  11563. ))
  11564. characterMakers.push(() => makeCharacter(
  11565. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11566. {
  11567. front: {
  11568. height: math.unit(5 + 4/12, "feet"),
  11569. weight: math.unit(120, "lb"),
  11570. name: "Front",
  11571. image: {
  11572. source: "./media/characters/odyssey/front.svg",
  11573. extra: 1747/1571,
  11574. bottom: 47/1794
  11575. }
  11576. },
  11577. side: {
  11578. height: math.unit(5.1, "feet"),
  11579. weight: math.unit(120, "lb"),
  11580. name: "Side",
  11581. image: {
  11582. source: "./media/characters/odyssey/side.svg",
  11583. extra: 1847/1619,
  11584. bottom: 47/1894
  11585. }
  11586. },
  11587. lounging: {
  11588. height: math.unit(1.464, "feet"),
  11589. weight: math.unit(120, "lb"),
  11590. name: "Lounging",
  11591. image: {
  11592. source: "./media/characters/odyssey/lounging.svg",
  11593. extra: 1235/837,
  11594. bottom: 551/1786
  11595. }
  11596. },
  11597. },
  11598. [
  11599. {
  11600. name: "Normal",
  11601. height: math.unit(5 + 4 / 12, "feet")
  11602. },
  11603. {
  11604. name: "Macro",
  11605. height: math.unit(1, "km")
  11606. },
  11607. {
  11608. name: "Megamacro",
  11609. height: math.unit(3000, "km")
  11610. },
  11611. {
  11612. name: "Gigamacro",
  11613. height: math.unit(1, "AU"),
  11614. default: true
  11615. },
  11616. {
  11617. name: "Omniversal",
  11618. height: math.unit(100e14, "lightyears")
  11619. },
  11620. ]
  11621. ))
  11622. characterMakers.push(() => makeCharacter(
  11623. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11624. {
  11625. front: {
  11626. height: math.unit(5 + 10/12, "feet"),
  11627. name: "Front",
  11628. image: {
  11629. source: "./media/characters/mekuto/front.svg",
  11630. extra: 875/835,
  11631. bottom: 46/921
  11632. }
  11633. },
  11634. },
  11635. [
  11636. {
  11637. name: "Minimicro",
  11638. height: math.unit(0.2, "inches")
  11639. },
  11640. {
  11641. name: "Micro",
  11642. height: math.unit(1.5, "inches")
  11643. },
  11644. {
  11645. name: "Normal",
  11646. height: math.unit(5 + 10 / 12, "feet"),
  11647. default: true
  11648. },
  11649. {
  11650. name: "Minimacro",
  11651. height: math.unit(17 + 9 / 12, "feet")
  11652. },
  11653. {
  11654. name: "Macro",
  11655. height: math.unit(177.5, "feet")
  11656. },
  11657. {
  11658. name: "Megamacro",
  11659. height: math.unit(152, "miles")
  11660. },
  11661. ]
  11662. ))
  11663. characterMakers.push(() => makeCharacter(
  11664. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11665. {
  11666. front: {
  11667. height: math.unit(6.5, "inches"),
  11668. weight: math.unit(13, "oz"),
  11669. name: "Front",
  11670. image: {
  11671. source: "./media/characters/dafydd-tomos/front.svg",
  11672. extra: 2990 / 2603,
  11673. bottom: 0.03
  11674. }
  11675. },
  11676. },
  11677. [
  11678. {
  11679. name: "Micro",
  11680. height: math.unit(6.5, "inches"),
  11681. default: true
  11682. },
  11683. ]
  11684. ))
  11685. characterMakers.push(() => makeCharacter(
  11686. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11687. {
  11688. front: {
  11689. height: math.unit(6, "feet"),
  11690. weight: math.unit(150, "lb"),
  11691. name: "Front",
  11692. image: {
  11693. source: "./media/characters/splinter/front.svg",
  11694. extra: 2990 / 2882,
  11695. bottom: 0.04
  11696. }
  11697. },
  11698. back: {
  11699. height: math.unit(6, "feet"),
  11700. weight: math.unit(150, "lb"),
  11701. name: "Back",
  11702. image: {
  11703. source: "./media/characters/splinter/back.svg",
  11704. extra: 2990 / 2882,
  11705. bottom: 0.04
  11706. }
  11707. },
  11708. },
  11709. [
  11710. {
  11711. name: "Normal",
  11712. height: math.unit(6, "feet")
  11713. },
  11714. {
  11715. name: "Macro",
  11716. height: math.unit(230, "meters"),
  11717. default: true
  11718. },
  11719. ]
  11720. ))
  11721. characterMakers.push(() => makeCharacter(
  11722. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11723. {
  11724. front: {
  11725. height: math.unit(4 + 10 / 12, "feet"),
  11726. weight: math.unit(480, "lb"),
  11727. name: "Front",
  11728. image: {
  11729. source: "./media/characters/snow-gabumon/front.svg",
  11730. extra: 1140 / 963,
  11731. bottom: 0.058
  11732. }
  11733. },
  11734. back: {
  11735. height: math.unit(4 + 10 / 12, "feet"),
  11736. weight: math.unit(480, "lb"),
  11737. name: "Back",
  11738. image: {
  11739. source: "./media/characters/snow-gabumon/back.svg",
  11740. extra: 1115 / 962,
  11741. bottom: 0.041
  11742. }
  11743. },
  11744. frontUndresed: {
  11745. height: math.unit(4 + 10 / 12, "feet"),
  11746. weight: math.unit(480, "lb"),
  11747. name: "Front (Undressed)",
  11748. image: {
  11749. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11750. extra: 1061 / 960,
  11751. bottom: 0.045
  11752. }
  11753. },
  11754. },
  11755. [
  11756. {
  11757. name: "Micro",
  11758. height: math.unit(1, "inch")
  11759. },
  11760. {
  11761. name: "Normal",
  11762. height: math.unit(4 + 10 / 12, "feet"),
  11763. default: true
  11764. },
  11765. {
  11766. name: "Macro",
  11767. height: math.unit(200, "feet")
  11768. },
  11769. {
  11770. name: "Megamacro",
  11771. height: math.unit(120, "miles")
  11772. },
  11773. {
  11774. name: "Gigamacro",
  11775. height: math.unit(9800, "miles")
  11776. },
  11777. ]
  11778. ))
  11779. characterMakers.push(() => makeCharacter(
  11780. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11781. {
  11782. front: {
  11783. height: math.unit(1.7, "meters"),
  11784. weight: math.unit(140, "lb"),
  11785. name: "Front",
  11786. image: {
  11787. source: "./media/characters/moody/front.svg",
  11788. extra: 3226 / 3007,
  11789. bottom: 0.087
  11790. }
  11791. },
  11792. },
  11793. [
  11794. {
  11795. name: "Micro",
  11796. height: math.unit(1, "mm")
  11797. },
  11798. {
  11799. name: "Normal",
  11800. height: math.unit(1.7, "meters"),
  11801. default: true
  11802. },
  11803. {
  11804. name: "Macro",
  11805. height: math.unit(80, "meters")
  11806. },
  11807. {
  11808. name: "Macro+",
  11809. height: math.unit(500, "meters")
  11810. },
  11811. ]
  11812. ))
  11813. characterMakers.push(() => makeCharacter(
  11814. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11815. {
  11816. front: {
  11817. height: math.unit(6, "feet"),
  11818. weight: math.unit(150, "lb"),
  11819. name: "Front",
  11820. image: {
  11821. source: "./media/characters/zyas/front.svg",
  11822. extra: 1180 / 1120,
  11823. bottom: 0.045
  11824. }
  11825. },
  11826. },
  11827. [
  11828. {
  11829. name: "Normal",
  11830. height: math.unit(10, "feet"),
  11831. default: true
  11832. },
  11833. {
  11834. name: "Macro",
  11835. height: math.unit(500, "feet")
  11836. },
  11837. {
  11838. name: "Megamacro",
  11839. height: math.unit(5, "miles")
  11840. },
  11841. {
  11842. name: "Teramacro",
  11843. height: math.unit(150000, "miles")
  11844. },
  11845. ]
  11846. ))
  11847. characterMakers.push(() => makeCharacter(
  11848. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11849. {
  11850. front: {
  11851. height: math.unit(6, "feet"),
  11852. weight: math.unit(150, "lb"),
  11853. name: "Front",
  11854. image: {
  11855. source: "./media/characters/cuon/front.svg",
  11856. extra: 1390 / 1320,
  11857. bottom: 0.008
  11858. }
  11859. },
  11860. },
  11861. [
  11862. {
  11863. name: "Micro",
  11864. height: math.unit(3, "inches")
  11865. },
  11866. {
  11867. name: "Normal",
  11868. height: math.unit(18 + 9 / 12, "feet"),
  11869. default: true
  11870. },
  11871. {
  11872. name: "Macro",
  11873. height: math.unit(360, "feet")
  11874. },
  11875. {
  11876. name: "Megamacro",
  11877. height: math.unit(360, "miles")
  11878. },
  11879. ]
  11880. ))
  11881. characterMakers.push(() => makeCharacter(
  11882. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11883. {
  11884. front: {
  11885. height: math.unit(2.4, "meters"),
  11886. weight: math.unit(70, "kg"),
  11887. name: "Front",
  11888. image: {
  11889. source: "./media/characters/nyanuxk/front.svg",
  11890. extra: 1172 / 1084,
  11891. bottom: 0.065
  11892. }
  11893. },
  11894. side: {
  11895. height: math.unit(2.4, "meters"),
  11896. weight: math.unit(70, "kg"),
  11897. name: "Side",
  11898. image: {
  11899. source: "./media/characters/nyanuxk/side.svg",
  11900. extra: 1190 / 1132,
  11901. bottom: 0.007
  11902. }
  11903. },
  11904. back: {
  11905. height: math.unit(2.4, "meters"),
  11906. weight: math.unit(70, "kg"),
  11907. name: "Back",
  11908. image: {
  11909. source: "./media/characters/nyanuxk/back.svg",
  11910. extra: 1200 / 1141,
  11911. bottom: 0.015
  11912. }
  11913. },
  11914. foot: {
  11915. height: math.unit(0.52, "meters"),
  11916. name: "Foot",
  11917. image: {
  11918. source: "./media/characters/nyanuxk/foot.svg"
  11919. }
  11920. },
  11921. },
  11922. [
  11923. {
  11924. name: "Micro",
  11925. height: math.unit(2, "cm")
  11926. },
  11927. {
  11928. name: "Normal",
  11929. height: math.unit(2.4, "meters"),
  11930. default: true
  11931. },
  11932. {
  11933. name: "Smaller Macro",
  11934. height: math.unit(120, "meters")
  11935. },
  11936. {
  11937. name: "Bigger Macro",
  11938. height: math.unit(1.2, "km")
  11939. },
  11940. {
  11941. name: "Megamacro",
  11942. height: math.unit(15, "kilometers")
  11943. },
  11944. {
  11945. name: "Gigamacro",
  11946. height: math.unit(2000, "km")
  11947. },
  11948. {
  11949. name: "Teramacro",
  11950. height: math.unit(500000, "km")
  11951. },
  11952. ]
  11953. ))
  11954. characterMakers.push(() => makeCharacter(
  11955. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11956. {
  11957. side: {
  11958. height: math.unit(6, "feet"),
  11959. name: "Side",
  11960. image: {
  11961. source: "./media/characters/ailbhe/side.svg",
  11962. extra: 757 / 464,
  11963. bottom: 0.041
  11964. }
  11965. },
  11966. },
  11967. [
  11968. {
  11969. name: "Normal",
  11970. height: math.unit(1.07, "meters"),
  11971. default: true
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11977. {
  11978. front: {
  11979. height: math.unit(6, "feet"),
  11980. weight: math.unit(120, "kg"),
  11981. name: "Front",
  11982. image: {
  11983. source: "./media/characters/zevulfius/front.svg",
  11984. extra: 965 / 903
  11985. }
  11986. },
  11987. side: {
  11988. height: math.unit(6, "feet"),
  11989. weight: math.unit(120, "kg"),
  11990. name: "Side",
  11991. image: {
  11992. source: "./media/characters/zevulfius/side.svg",
  11993. extra: 939 / 900
  11994. }
  11995. },
  11996. back: {
  11997. height: math.unit(6, "feet"),
  11998. weight: math.unit(120, "kg"),
  11999. name: "Back",
  12000. image: {
  12001. source: "./media/characters/zevulfius/back.svg",
  12002. extra: 918 / 854,
  12003. bottom: 0.005
  12004. }
  12005. },
  12006. foot: {
  12007. height: math.unit(6 / 3.72, "feet"),
  12008. name: "Foot",
  12009. image: {
  12010. source: "./media/characters/zevulfius/foot.svg"
  12011. }
  12012. },
  12013. },
  12014. [
  12015. {
  12016. name: "Macro",
  12017. height: math.unit(750, "meters")
  12018. },
  12019. {
  12020. name: "Megamacro",
  12021. height: math.unit(20, "km"),
  12022. default: true
  12023. },
  12024. {
  12025. name: "Gigamacro",
  12026. height: math.unit(2000, "km")
  12027. },
  12028. {
  12029. name: "Teramacro",
  12030. height: math.unit(250000, "km")
  12031. },
  12032. ]
  12033. ))
  12034. characterMakers.push(() => makeCharacter(
  12035. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12036. {
  12037. front: {
  12038. height: math.unit(100, "feet"),
  12039. weight: math.unit(350, "kg"),
  12040. name: "Front",
  12041. image: {
  12042. source: "./media/characters/rikes/front.svg",
  12043. extra: 1565 / 1483,
  12044. bottom: 0.017
  12045. }
  12046. },
  12047. },
  12048. [
  12049. {
  12050. name: "Macro",
  12051. height: math.unit(100, "feet"),
  12052. default: true
  12053. },
  12054. ]
  12055. ))
  12056. characterMakers.push(() => makeCharacter(
  12057. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12058. {
  12059. front: {
  12060. height: math.unit(8, "feet"),
  12061. weight: math.unit(356, "lb"),
  12062. name: "Front",
  12063. image: {
  12064. source: "./media/characters/adam-silver-mane/front.svg",
  12065. extra: 1036/937,
  12066. bottom: 63/1099
  12067. }
  12068. },
  12069. side: {
  12070. height: math.unit(8, "feet"),
  12071. weight: math.unit(356, "lb"),
  12072. name: "Side",
  12073. image: {
  12074. source: "./media/characters/adam-silver-mane/side.svg",
  12075. extra: 997/901,
  12076. bottom: 59/1056
  12077. }
  12078. },
  12079. frontNsfw: {
  12080. height: math.unit(8, "feet"),
  12081. weight: math.unit(356, "lb"),
  12082. name: "Front (NSFW)",
  12083. image: {
  12084. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12085. extra: 1036/937,
  12086. bottom: 63/1099
  12087. }
  12088. },
  12089. sideNsfw: {
  12090. height: math.unit(8, "feet"),
  12091. weight: math.unit(356, "lb"),
  12092. name: "Side (NSFW)",
  12093. image: {
  12094. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12095. extra: 997/901,
  12096. bottom: 59/1056
  12097. }
  12098. },
  12099. dick: {
  12100. height: math.unit(2.1, "feet"),
  12101. name: "Dick",
  12102. image: {
  12103. source: "./media/characters/adam-silver-mane/dick.svg"
  12104. }
  12105. },
  12106. taur: {
  12107. height: math.unit(16, "feet"),
  12108. weight: math.unit(1500, "kg"),
  12109. name: "Taur",
  12110. image: {
  12111. source: "./media/characters/adam-silver-mane/taur.svg",
  12112. extra: 1713 / 1571,
  12113. bottom: 0.01
  12114. }
  12115. },
  12116. },
  12117. [
  12118. {
  12119. name: "Normal",
  12120. height: math.unit(8, "feet")
  12121. },
  12122. {
  12123. name: "Minimacro",
  12124. height: math.unit(80, "feet")
  12125. },
  12126. {
  12127. name: "MDA",
  12128. height: math.unit(80, "meters")
  12129. },
  12130. {
  12131. name: "Macro",
  12132. height: math.unit(800, "feet"),
  12133. default: true
  12134. },
  12135. {
  12136. name: "Megamacro",
  12137. height: math.unit(8000, "feet")
  12138. },
  12139. {
  12140. name: "Gigamacro",
  12141. height: math.unit(800, "miles")
  12142. },
  12143. {
  12144. name: "Teramacro",
  12145. height: math.unit(80000, "miles")
  12146. },
  12147. {
  12148. name: "Celestial",
  12149. height: math.unit(8e6, "miles")
  12150. },
  12151. {
  12152. name: "Star Dragon",
  12153. height: math.unit(800000, "parsecs")
  12154. },
  12155. {
  12156. name: "Godly",
  12157. height: math.unit(800, "teraparsecs")
  12158. },
  12159. ]
  12160. ))
  12161. characterMakers.push(() => makeCharacter(
  12162. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12163. {
  12164. front: {
  12165. height: math.unit(6, "feet"),
  12166. weight: math.unit(150, "lb"),
  12167. name: "Front",
  12168. image: {
  12169. source: "./media/characters/ky'owin/front.svg",
  12170. extra: 3862/3053,
  12171. bottom: 74/3936
  12172. }
  12173. },
  12174. },
  12175. [
  12176. {
  12177. name: "Normal",
  12178. height: math.unit(6 + 8 / 12, "feet")
  12179. },
  12180. {
  12181. name: "Large",
  12182. height: math.unit(68, "feet")
  12183. },
  12184. {
  12185. name: "Macro",
  12186. height: math.unit(132, "feet")
  12187. },
  12188. {
  12189. name: "Macro+",
  12190. height: math.unit(340, "feet")
  12191. },
  12192. {
  12193. name: "Macro++",
  12194. height: math.unit(680, "feet"),
  12195. default: true
  12196. },
  12197. {
  12198. name: "Megamacro",
  12199. height: math.unit(1, "mile")
  12200. },
  12201. {
  12202. name: "Megamacro+",
  12203. height: math.unit(10, "miles")
  12204. },
  12205. ]
  12206. ))
  12207. characterMakers.push(() => makeCharacter(
  12208. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12209. {
  12210. front: {
  12211. height: math.unit(4, "feet"),
  12212. weight: math.unit(50, "lb"),
  12213. name: "Front",
  12214. image: {
  12215. source: "./media/characters/mal/front.svg",
  12216. extra: 785 / 724,
  12217. bottom: 0.07
  12218. }
  12219. },
  12220. },
  12221. [
  12222. {
  12223. name: "Micro",
  12224. height: math.unit(4, "inches")
  12225. },
  12226. {
  12227. name: "Normal",
  12228. height: math.unit(4, "feet"),
  12229. default: true
  12230. },
  12231. {
  12232. name: "Macro",
  12233. height: math.unit(200, "feet")
  12234. },
  12235. ]
  12236. ))
  12237. characterMakers.push(() => makeCharacter(
  12238. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12239. {
  12240. front: {
  12241. height: math.unit(6, "feet"),
  12242. weight: math.unit(150, "lb"),
  12243. name: "Front",
  12244. image: {
  12245. source: "./media/characters/jordan-deware/front.svg",
  12246. extra: 1191 / 1012
  12247. }
  12248. },
  12249. },
  12250. [
  12251. {
  12252. name: "Nano",
  12253. height: math.unit(0.01, "mm")
  12254. },
  12255. {
  12256. name: "Minimicro",
  12257. height: math.unit(1, "mm")
  12258. },
  12259. {
  12260. name: "Micro",
  12261. height: math.unit(0.5, "inches")
  12262. },
  12263. {
  12264. name: "Normal",
  12265. height: math.unit(4, "feet"),
  12266. default: true
  12267. },
  12268. {
  12269. name: "Minimacro",
  12270. height: math.unit(40, "meters")
  12271. },
  12272. {
  12273. name: "Small Macro",
  12274. height: math.unit(400, "meters")
  12275. },
  12276. {
  12277. name: "Macro",
  12278. height: math.unit(4, "miles")
  12279. },
  12280. {
  12281. name: "Megamacro",
  12282. height: math.unit(40, "miles")
  12283. },
  12284. {
  12285. name: "Megamacro+",
  12286. height: math.unit(400, "miles")
  12287. },
  12288. {
  12289. name: "Gigamacro",
  12290. height: math.unit(400000, "miles")
  12291. },
  12292. ]
  12293. ))
  12294. characterMakers.push(() => makeCharacter(
  12295. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12296. {
  12297. side: {
  12298. height: math.unit(6, "feet"),
  12299. weight: math.unit(150, "lb"),
  12300. name: "Side",
  12301. image: {
  12302. source: "./media/characters/kimiko/side.svg",
  12303. extra: 600 / 358
  12304. }
  12305. },
  12306. },
  12307. [
  12308. {
  12309. name: "Normal",
  12310. height: math.unit(15, "feet"),
  12311. default: true
  12312. },
  12313. {
  12314. name: "Macro",
  12315. height: math.unit(220, "feet")
  12316. },
  12317. {
  12318. name: "Macro+",
  12319. height: math.unit(1450, "feet")
  12320. },
  12321. {
  12322. name: "Megamacro",
  12323. height: math.unit(11500, "feet")
  12324. },
  12325. {
  12326. name: "Gigamacro",
  12327. height: math.unit(9500, "miles")
  12328. },
  12329. {
  12330. name: "Teramacro",
  12331. height: math.unit(2208005005, "miles")
  12332. },
  12333. {
  12334. name: "Examacro",
  12335. height: math.unit(2750, "parsecs")
  12336. },
  12337. {
  12338. name: "Zettamacro",
  12339. height: math.unit(101500, "parsecs")
  12340. },
  12341. ]
  12342. ))
  12343. characterMakers.push(() => makeCharacter(
  12344. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12345. {
  12346. front: {
  12347. height: math.unit(6, "feet"),
  12348. weight: math.unit(70, "kg"),
  12349. name: "Front",
  12350. image: {
  12351. source: "./media/characters/andrew-sleepy/front.svg"
  12352. }
  12353. },
  12354. side: {
  12355. height: math.unit(6, "feet"),
  12356. weight: math.unit(70, "kg"),
  12357. name: "Side",
  12358. image: {
  12359. source: "./media/characters/andrew-sleepy/side.svg"
  12360. }
  12361. },
  12362. },
  12363. [
  12364. {
  12365. name: "Micro",
  12366. height: math.unit(1, "mm"),
  12367. default: true
  12368. },
  12369. ]
  12370. ))
  12371. characterMakers.push(() => makeCharacter(
  12372. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12373. {
  12374. front: {
  12375. height: math.unit(6, "feet"),
  12376. weight: math.unit(150, "lb"),
  12377. name: "Front",
  12378. image: {
  12379. source: "./media/characters/judio/front.svg",
  12380. extra: 1258 / 1110
  12381. }
  12382. },
  12383. },
  12384. [
  12385. {
  12386. name: "Normal",
  12387. height: math.unit(5 + 6 / 12, "feet")
  12388. },
  12389. {
  12390. name: "Macro",
  12391. height: math.unit(1000, "feet"),
  12392. default: true
  12393. },
  12394. {
  12395. name: "Megamacro",
  12396. height: math.unit(10, "miles")
  12397. },
  12398. ]
  12399. ))
  12400. characterMakers.push(() => makeCharacter(
  12401. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12402. {
  12403. frontDressed: {
  12404. height: math.unit(6, "feet"),
  12405. weight: math.unit(68, "kg"),
  12406. name: "Front (Dressed)",
  12407. image: {
  12408. source: "./media/characters/nomaxice/front-dressed.svg",
  12409. extra: 1137/824,
  12410. bottom: 74/1211
  12411. }
  12412. },
  12413. frontShorts: {
  12414. height: math.unit(6, "feet"),
  12415. weight: math.unit(68, "kg"),
  12416. name: "Front (Shorts)",
  12417. image: {
  12418. source: "./media/characters/nomaxice/front-shorts.svg",
  12419. extra: 1137/824,
  12420. bottom: 74/1211
  12421. }
  12422. },
  12423. back: {
  12424. height: math.unit(6, "feet"),
  12425. weight: math.unit(68, "kg"),
  12426. name: "Back",
  12427. image: {
  12428. source: "./media/characters/nomaxice/back.svg",
  12429. extra: 822/786,
  12430. bottom: 39/861
  12431. }
  12432. },
  12433. hand: {
  12434. height: math.unit(0.565, "feet"),
  12435. name: "Hand",
  12436. image: {
  12437. source: "./media/characters/nomaxice/hand.svg"
  12438. }
  12439. },
  12440. foot: {
  12441. height: math.unit(1, "feet"),
  12442. name: "Foot",
  12443. image: {
  12444. source: "./media/characters/nomaxice/foot.svg"
  12445. }
  12446. },
  12447. },
  12448. [
  12449. {
  12450. name: "Micro",
  12451. height: math.unit(8, "cm")
  12452. },
  12453. {
  12454. name: "Norm",
  12455. height: math.unit(1.82, "m")
  12456. },
  12457. {
  12458. name: "Norm+",
  12459. height: math.unit(8.8, "feet"),
  12460. default: true
  12461. },
  12462. {
  12463. name: "Big",
  12464. height: math.unit(8, "meters")
  12465. },
  12466. {
  12467. name: "Macro",
  12468. height: math.unit(18, "meters")
  12469. },
  12470. {
  12471. name: "Macro+",
  12472. height: math.unit(88, "meters")
  12473. },
  12474. ]
  12475. ))
  12476. characterMakers.push(() => makeCharacter(
  12477. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12478. {
  12479. front: {
  12480. height: math.unit(12, "feet"),
  12481. weight: math.unit(1.5, "tons"),
  12482. name: "Front",
  12483. image: {
  12484. source: "./media/characters/dydros/front.svg",
  12485. extra: 863 / 800,
  12486. bottom: 0.015
  12487. }
  12488. },
  12489. back: {
  12490. height: math.unit(12, "feet"),
  12491. weight: math.unit(1.5, "tons"),
  12492. name: "Back",
  12493. image: {
  12494. source: "./media/characters/dydros/back.svg",
  12495. extra: 900 / 843,
  12496. bottom: 0.005
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Normal",
  12503. height: math.unit(12, "feet"),
  12504. default: true
  12505. },
  12506. ]
  12507. ))
  12508. characterMakers.push(() => makeCharacter(
  12509. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12510. {
  12511. front: {
  12512. height: math.unit(6, "feet"),
  12513. weight: math.unit(100, "kg"),
  12514. name: "Front",
  12515. image: {
  12516. source: "./media/characters/riggi/front.svg",
  12517. extra: 5787 / 5303
  12518. }
  12519. },
  12520. hyper: {
  12521. height: math.unit(6 * 5 / 3, "feet"),
  12522. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12523. name: "Hyper",
  12524. image: {
  12525. source: "./media/characters/riggi/hyper.svg",
  12526. extra: 3595 / 3485
  12527. }
  12528. },
  12529. },
  12530. [
  12531. {
  12532. name: "Small Macro",
  12533. height: math.unit(50, "feet")
  12534. },
  12535. {
  12536. name: "Default",
  12537. height: math.unit(200, "feet"),
  12538. default: true
  12539. },
  12540. {
  12541. name: "Loom",
  12542. height: math.unit(10000, "feet")
  12543. },
  12544. {
  12545. name: "Cruising Altitude",
  12546. height: math.unit(30000, "feet")
  12547. },
  12548. {
  12549. name: "Megamacro",
  12550. height: math.unit(100, "miles")
  12551. },
  12552. {
  12553. name: "Continent Sized",
  12554. height: math.unit(2800, "miles")
  12555. },
  12556. {
  12557. name: "Earth Sized",
  12558. height: math.unit(8000, "miles")
  12559. },
  12560. ]
  12561. ))
  12562. characterMakers.push(() => makeCharacter(
  12563. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12564. {
  12565. front: {
  12566. height: math.unit(6, "feet"),
  12567. weight: math.unit(250, "lb"),
  12568. name: "Front",
  12569. image: {
  12570. source: "./media/characters/alexi/front.svg",
  12571. extra: 3483 / 3291,
  12572. bottom: 0.04
  12573. }
  12574. },
  12575. back: {
  12576. height: math.unit(6, "feet"),
  12577. weight: math.unit(250, "lb"),
  12578. name: "Back",
  12579. image: {
  12580. source: "./media/characters/alexi/back.svg",
  12581. extra: 3533 / 3356,
  12582. bottom: 0.021
  12583. }
  12584. },
  12585. frontTransforming: {
  12586. height: math.unit(8.58, "feet"),
  12587. weight: math.unit(1300, "lb"),
  12588. name: "Transforming",
  12589. image: {
  12590. source: "./media/characters/alexi/front-transforming.svg",
  12591. extra: 437 / 409,
  12592. bottom: 19 / 458.66
  12593. }
  12594. },
  12595. frontTransformed: {
  12596. height: math.unit(12.5, "feet"),
  12597. weight: math.unit(4000, "lb"),
  12598. name: "Transformed",
  12599. image: {
  12600. source: "./media/characters/alexi/front-transformed.svg",
  12601. extra: 639 / 614,
  12602. bottom: 30.55 / 671
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Normal",
  12609. height: math.unit(14, "feet"),
  12610. default: true
  12611. },
  12612. {
  12613. name: "Minimacro",
  12614. height: math.unit(30, "meters")
  12615. },
  12616. {
  12617. name: "Macro",
  12618. height: math.unit(500, "meters")
  12619. },
  12620. {
  12621. name: "Megamacro",
  12622. height: math.unit(9000, "km")
  12623. },
  12624. {
  12625. name: "Teramacro",
  12626. height: math.unit(384000, "km")
  12627. },
  12628. ]
  12629. ))
  12630. characterMakers.push(() => makeCharacter(
  12631. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12632. {
  12633. front: {
  12634. height: math.unit(6, "feet"),
  12635. weight: math.unit(150, "lb"),
  12636. name: "Front",
  12637. image: {
  12638. source: "./media/characters/kayroo/front.svg",
  12639. extra: 1153 / 1038,
  12640. bottom: 0.06
  12641. }
  12642. },
  12643. foot: {
  12644. height: math.unit(6, "feet"),
  12645. weight: math.unit(150, "lb"),
  12646. name: "Foot",
  12647. image: {
  12648. source: "./media/characters/kayroo/foot.svg"
  12649. }
  12650. },
  12651. },
  12652. [
  12653. {
  12654. name: "Normal",
  12655. height: math.unit(8, "feet"),
  12656. default: true
  12657. },
  12658. {
  12659. name: "Minimacro",
  12660. height: math.unit(250, "feet")
  12661. },
  12662. {
  12663. name: "Macro",
  12664. height: math.unit(2800, "feet")
  12665. },
  12666. {
  12667. name: "Megamacro",
  12668. height: math.unit(5200, "feet")
  12669. },
  12670. {
  12671. name: "Gigamacro",
  12672. height: math.unit(27000, "feet")
  12673. },
  12674. {
  12675. name: "Omega",
  12676. height: math.unit(45000, "feet")
  12677. },
  12678. ]
  12679. ))
  12680. characterMakers.push(() => makeCharacter(
  12681. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12682. {
  12683. front: {
  12684. height: math.unit(18, "feet"),
  12685. weight: math.unit(5800, "lb"),
  12686. name: "Front",
  12687. image: {
  12688. source: "./media/characters/rhys/front.svg",
  12689. extra: 3386 / 3090,
  12690. bottom: 0.07
  12691. }
  12692. },
  12693. },
  12694. [
  12695. {
  12696. name: "Normal",
  12697. height: math.unit(18, "feet"),
  12698. default: true
  12699. },
  12700. {
  12701. name: "Working Size",
  12702. height: math.unit(200, "feet")
  12703. },
  12704. {
  12705. name: "Demolition Size",
  12706. height: math.unit(2000, "feet")
  12707. },
  12708. {
  12709. name: "Maximum Licensed Size",
  12710. height: math.unit(5, "miles")
  12711. },
  12712. {
  12713. name: "Maximum Observed Size",
  12714. height: math.unit(10, "yottameters")
  12715. },
  12716. ]
  12717. ))
  12718. characterMakers.push(() => makeCharacter(
  12719. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12720. {
  12721. front: {
  12722. height: math.unit(6, "feet"),
  12723. weight: math.unit(250, "lb"),
  12724. name: "Front",
  12725. image: {
  12726. source: "./media/characters/toto/front.svg",
  12727. extra: 527 / 479,
  12728. bottom: 0.05
  12729. }
  12730. },
  12731. },
  12732. [
  12733. {
  12734. name: "Micro",
  12735. height: math.unit(3, "feet")
  12736. },
  12737. {
  12738. name: "Normal",
  12739. height: math.unit(10, "feet")
  12740. },
  12741. {
  12742. name: "Macro",
  12743. height: math.unit(150, "feet"),
  12744. default: true
  12745. },
  12746. {
  12747. name: "Megamacro",
  12748. height: math.unit(1200, "feet")
  12749. },
  12750. ]
  12751. ))
  12752. characterMakers.push(() => makeCharacter(
  12753. { name: "King", species: ["lion"], tags: ["anthro"] },
  12754. {
  12755. back: {
  12756. height: math.unit(6, "feet"),
  12757. weight: math.unit(150, "lb"),
  12758. name: "Back",
  12759. image: {
  12760. source: "./media/characters/king/back.svg"
  12761. }
  12762. },
  12763. },
  12764. [
  12765. {
  12766. name: "Micro",
  12767. height: math.unit(2, "inches")
  12768. },
  12769. {
  12770. name: "Normal",
  12771. height: math.unit(8, "feet")
  12772. },
  12773. {
  12774. name: "Macro",
  12775. height: math.unit(200, "feet"),
  12776. default: true
  12777. },
  12778. {
  12779. name: "Megamacro",
  12780. height: math.unit(50, "miles")
  12781. },
  12782. ]
  12783. ))
  12784. characterMakers.push(() => makeCharacter(
  12785. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12786. {
  12787. front: {
  12788. height: math.unit(11, "feet"),
  12789. weight: math.unit(1400, "lb"),
  12790. name: "Front",
  12791. image: {
  12792. source: "./media/characters/cordite/front.svg",
  12793. extra: 1919/1827,
  12794. bottom: 40/1959
  12795. }
  12796. },
  12797. side: {
  12798. height: math.unit(11, "feet"),
  12799. weight: math.unit(1400, "lb"),
  12800. name: "Side",
  12801. image: {
  12802. source: "./media/characters/cordite/side.svg",
  12803. extra: 1908/1793,
  12804. bottom: 38/1946
  12805. }
  12806. },
  12807. back: {
  12808. height: math.unit(11, "feet"),
  12809. weight: math.unit(1400, "lb"),
  12810. name: "Back",
  12811. image: {
  12812. source: "./media/characters/cordite/back.svg",
  12813. extra: 1938/1837,
  12814. bottom: 10/1948
  12815. }
  12816. },
  12817. feral: {
  12818. height: math.unit(2, "feet"),
  12819. weight: math.unit(90, "lb"),
  12820. name: "Feral",
  12821. image: {
  12822. source: "./media/characters/cordite/feral.svg",
  12823. extra: 1260 / 755,
  12824. bottom: 0.05
  12825. }
  12826. },
  12827. },
  12828. [
  12829. {
  12830. name: "Normal",
  12831. height: math.unit(11, "feet"),
  12832. default: true
  12833. },
  12834. ]
  12835. ))
  12836. characterMakers.push(() => makeCharacter(
  12837. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12838. {
  12839. front: {
  12840. height: math.unit(6, "feet"),
  12841. weight: math.unit(150, "lb"),
  12842. name: "Front",
  12843. image: {
  12844. source: "./media/characters/pianostrong/front.svg",
  12845. extra: 6577 / 6254,
  12846. bottom: 0.02
  12847. }
  12848. },
  12849. side: {
  12850. height: math.unit(6, "feet"),
  12851. weight: math.unit(150, "lb"),
  12852. name: "Side",
  12853. image: {
  12854. source: "./media/characters/pianostrong/side.svg",
  12855. extra: 6106 / 5730
  12856. }
  12857. },
  12858. back: {
  12859. height: math.unit(6, "feet"),
  12860. weight: math.unit(150, "lb"),
  12861. name: "Back",
  12862. image: {
  12863. source: "./media/characters/pianostrong/back.svg",
  12864. extra: 6085 / 5733,
  12865. bottom: 0.01
  12866. }
  12867. },
  12868. },
  12869. [
  12870. {
  12871. name: "Macro",
  12872. height: math.unit(100, "feet")
  12873. },
  12874. {
  12875. name: "Macro+",
  12876. height: math.unit(300, "feet"),
  12877. default: true
  12878. },
  12879. {
  12880. name: "Macro++",
  12881. height: math.unit(1000, "feet")
  12882. },
  12883. ]
  12884. ))
  12885. characterMakers.push(() => makeCharacter(
  12886. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12887. {
  12888. front: {
  12889. height: math.unit(6, "feet"),
  12890. weight: math.unit(150, "lb"),
  12891. name: "Front",
  12892. image: {
  12893. source: "./media/characters/kona/front.svg",
  12894. extra: 2960 / 2629,
  12895. bottom: 0.005
  12896. }
  12897. },
  12898. },
  12899. [
  12900. {
  12901. name: "Normal",
  12902. height: math.unit(11 + 8 / 12, "feet")
  12903. },
  12904. {
  12905. name: "Macro",
  12906. height: math.unit(850, "feet"),
  12907. default: true
  12908. },
  12909. {
  12910. name: "Macro+",
  12911. height: math.unit(1.5, "km"),
  12912. default: true
  12913. },
  12914. {
  12915. name: "Megamacro",
  12916. height: math.unit(80, "miles")
  12917. },
  12918. {
  12919. name: "Gigamacro",
  12920. height: math.unit(3500, "miles")
  12921. },
  12922. ]
  12923. ))
  12924. characterMakers.push(() => makeCharacter(
  12925. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12926. {
  12927. side: {
  12928. height: math.unit(1.9, "meters"),
  12929. weight: math.unit(326, "kg"),
  12930. name: "Side",
  12931. image: {
  12932. source: "./media/characters/levi/side.svg",
  12933. extra: 1704 / 1334,
  12934. bottom: 0.02
  12935. }
  12936. },
  12937. },
  12938. [
  12939. {
  12940. name: "Normal",
  12941. height: math.unit(1.9, "meters"),
  12942. default: true
  12943. },
  12944. {
  12945. name: "Macro",
  12946. height: math.unit(20, "meters")
  12947. },
  12948. {
  12949. name: "Macro+",
  12950. height: math.unit(200, "meters")
  12951. },
  12952. {
  12953. name: "Megamacro",
  12954. height: math.unit(2, "km")
  12955. },
  12956. {
  12957. name: "Megamacro+",
  12958. height: math.unit(20, "km")
  12959. },
  12960. {
  12961. name: "Gigamacro",
  12962. height: math.unit(2500, "km")
  12963. },
  12964. {
  12965. name: "Gigamacro+",
  12966. height: math.unit(120000, "km")
  12967. },
  12968. {
  12969. name: "Teramacro",
  12970. height: math.unit(7.77e6, "km")
  12971. },
  12972. ]
  12973. ))
  12974. characterMakers.push(() => makeCharacter(
  12975. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12976. {
  12977. front: {
  12978. height: math.unit(6 + 4/12, "feet"),
  12979. weight: math.unit(190, "lb"),
  12980. name: "Front",
  12981. image: {
  12982. source: "./media/characters/bmc/front.svg",
  12983. extra: 1626/1472,
  12984. bottom: 79/1705
  12985. }
  12986. },
  12987. back: {
  12988. height: math.unit(6 + 4/12, "feet"),
  12989. weight: math.unit(190, "lb"),
  12990. name: "Back",
  12991. image: {
  12992. source: "./media/characters/bmc/back.svg",
  12993. extra: 1640/1479,
  12994. bottom: 45/1685
  12995. }
  12996. },
  12997. frontArmor: {
  12998. height: math.unit(6 + 4/12, "feet"),
  12999. weight: math.unit(190, "lb"),
  13000. name: "Front-armor",
  13001. image: {
  13002. source: "./media/characters/bmc/front-armor.svg",
  13003. extra: 1538/1468,
  13004. bottom: 79/1617
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Human-sized",
  13011. height: math.unit(6 + 4 / 12, "feet")
  13012. },
  13013. {
  13014. name: "Interactive Size",
  13015. height: math.unit(25, "feet")
  13016. },
  13017. {
  13018. name: "Small",
  13019. height: math.unit(250, "feet")
  13020. },
  13021. {
  13022. name: "Normal",
  13023. height: math.unit(1250, "feet"),
  13024. default: true
  13025. },
  13026. {
  13027. name: "Good Day",
  13028. height: math.unit(88, "miles")
  13029. },
  13030. {
  13031. name: "Largest Measured Size",
  13032. height: math.unit(105.960, "galaxies")
  13033. },
  13034. ]
  13035. ))
  13036. characterMakers.push(() => makeCharacter(
  13037. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13038. {
  13039. front: {
  13040. height: math.unit(20, "feet"),
  13041. weight: math.unit(2016, "kg"),
  13042. name: "Front",
  13043. image: {
  13044. source: "./media/characters/sven-the-kaiju/front.svg",
  13045. extra: 1277/1250,
  13046. bottom: 35/1312
  13047. }
  13048. },
  13049. mouth: {
  13050. height: math.unit(1.85, "feet"),
  13051. name: "Mouth",
  13052. image: {
  13053. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13054. }
  13055. },
  13056. },
  13057. [
  13058. {
  13059. name: "Fairy",
  13060. height: math.unit(6, "inches")
  13061. },
  13062. {
  13063. name: "Normal",
  13064. height: math.unit(20, "feet"),
  13065. default: true
  13066. },
  13067. {
  13068. name: "Rampage",
  13069. height: math.unit(200, "feet")
  13070. },
  13071. {
  13072. name: "Archfey Forest Guardian",
  13073. height: math.unit(1, "mile")
  13074. },
  13075. ]
  13076. ))
  13077. characterMakers.push(() => makeCharacter(
  13078. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13079. {
  13080. front: {
  13081. height: math.unit(4, "meters"),
  13082. weight: math.unit(2, "tons"),
  13083. name: "Front",
  13084. image: {
  13085. source: "./media/characters/marik/front.svg",
  13086. extra: 1057 / 1003,
  13087. bottom: 0.08
  13088. }
  13089. },
  13090. },
  13091. [
  13092. {
  13093. name: "Normal",
  13094. height: math.unit(4, "meters"),
  13095. default: true
  13096. },
  13097. {
  13098. name: "Macro",
  13099. height: math.unit(20, "meters")
  13100. },
  13101. {
  13102. name: "Megamacro",
  13103. height: math.unit(50, "km")
  13104. },
  13105. {
  13106. name: "Gigamacro",
  13107. height: math.unit(100, "km")
  13108. },
  13109. {
  13110. name: "Alpha Macro",
  13111. height: math.unit(7.88e7, "yottameters")
  13112. },
  13113. ]
  13114. ))
  13115. characterMakers.push(() => makeCharacter(
  13116. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13117. {
  13118. front: {
  13119. height: math.unit(6, "feet"),
  13120. weight: math.unit(110, "lb"),
  13121. name: "Front",
  13122. image: {
  13123. source: "./media/characters/mel/front.svg",
  13124. extra: 736 / 617,
  13125. bottom: 0.017
  13126. }
  13127. },
  13128. },
  13129. [
  13130. {
  13131. name: "Pico",
  13132. height: math.unit(3, "pm")
  13133. },
  13134. {
  13135. name: "Nano",
  13136. height: math.unit(3, "nm")
  13137. },
  13138. {
  13139. name: "Micro",
  13140. height: math.unit(0.3, "mm"),
  13141. default: true
  13142. },
  13143. {
  13144. name: "Micro+",
  13145. height: math.unit(3, "mm")
  13146. },
  13147. {
  13148. name: "Normal",
  13149. height: math.unit(5 + 10.5 / 12, "feet")
  13150. },
  13151. ]
  13152. ))
  13153. characterMakers.push(() => makeCharacter(
  13154. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13155. {
  13156. kaiju: {
  13157. height: math.unit(1.75, "meters"),
  13158. weight: math.unit(55, "kg"),
  13159. name: "Kaiju",
  13160. image: {
  13161. source: "./media/characters/lykonous/kaiju.svg",
  13162. extra: 1055 / 946,
  13163. bottom: 0.135
  13164. }
  13165. },
  13166. },
  13167. [
  13168. {
  13169. name: "Normal",
  13170. height: math.unit(2.5, "meters"),
  13171. default: true
  13172. },
  13173. {
  13174. name: "Kaiju Dragon",
  13175. height: math.unit(60, "meters")
  13176. },
  13177. {
  13178. name: "Mega Kaiju",
  13179. height: math.unit(120, "km")
  13180. },
  13181. {
  13182. name: "Giga Kaiju",
  13183. height: math.unit(200, "megameters")
  13184. },
  13185. {
  13186. name: "Terra Kaiju",
  13187. height: math.unit(400, "gigameters")
  13188. },
  13189. {
  13190. name: "Kaiju Dragon God",
  13191. height: math.unit(13000, "exaparsecs")
  13192. },
  13193. ]
  13194. ))
  13195. characterMakers.push(() => makeCharacter(
  13196. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13197. {
  13198. front: {
  13199. height: math.unit(6, "feet"),
  13200. weight: math.unit(150, "lb"),
  13201. name: "Front",
  13202. image: {
  13203. source: "./media/characters/blü/front.svg",
  13204. extra: 1883 / 1564,
  13205. bottom: 0.031
  13206. }
  13207. },
  13208. },
  13209. [
  13210. {
  13211. name: "Normal",
  13212. height: math.unit(13, "feet"),
  13213. default: true
  13214. },
  13215. {
  13216. name: "Big Boi",
  13217. height: math.unit(150, "meters")
  13218. },
  13219. {
  13220. name: "Mini Stomper",
  13221. height: math.unit(300, "meters")
  13222. },
  13223. {
  13224. name: "Macro",
  13225. height: math.unit(1000, "meters")
  13226. },
  13227. {
  13228. name: "Megamacro",
  13229. height: math.unit(11000, "meters")
  13230. },
  13231. {
  13232. name: "Gigamacro",
  13233. height: math.unit(11000, "km")
  13234. },
  13235. {
  13236. name: "Teramacro",
  13237. height: math.unit(420000, "km")
  13238. },
  13239. {
  13240. name: "Examacro",
  13241. height: math.unit(120, "parsecs")
  13242. },
  13243. {
  13244. name: "God Tho",
  13245. height: math.unit(98000000000, "parsecs")
  13246. },
  13247. ]
  13248. ))
  13249. characterMakers.push(() => makeCharacter(
  13250. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13251. {
  13252. taurFront: {
  13253. height: math.unit(6, "feet"),
  13254. weight: math.unit(200, "lb"),
  13255. name: "Taur (Front)",
  13256. image: {
  13257. source: "./media/characters/scales/taur-front.svg",
  13258. extra: 1,
  13259. bottom: 0.05
  13260. }
  13261. },
  13262. taurBack: {
  13263. height: math.unit(6, "feet"),
  13264. weight: math.unit(200, "lb"),
  13265. name: "Taur (Back)",
  13266. image: {
  13267. source: "./media/characters/scales/taur-back.svg",
  13268. extra: 1,
  13269. bottom: 0.08
  13270. }
  13271. },
  13272. anthro: {
  13273. height: math.unit(6 * 7 / 12, "feet"),
  13274. weight: math.unit(100, "lb"),
  13275. name: "Anthro",
  13276. image: {
  13277. source: "./media/characters/scales/anthro.svg",
  13278. extra: 1,
  13279. bottom: 0.06
  13280. }
  13281. },
  13282. },
  13283. [
  13284. {
  13285. name: "Normal",
  13286. height: math.unit(12, "feet"),
  13287. default: true
  13288. },
  13289. ]
  13290. ))
  13291. characterMakers.push(() => makeCharacter(
  13292. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13293. {
  13294. front: {
  13295. height: math.unit(6, "feet"),
  13296. weight: math.unit(150, "lb"),
  13297. name: "Front",
  13298. image: {
  13299. source: "./media/characters/koragos/front.svg",
  13300. extra: 841 / 794,
  13301. bottom: 0.035
  13302. }
  13303. },
  13304. back: {
  13305. height: math.unit(6, "feet"),
  13306. weight: math.unit(150, "lb"),
  13307. name: "Back",
  13308. image: {
  13309. source: "./media/characters/koragos/back.svg",
  13310. extra: 841 / 810,
  13311. bottom: 0.022
  13312. }
  13313. },
  13314. },
  13315. [
  13316. {
  13317. name: "Normal",
  13318. height: math.unit(6 + 11 / 12, "feet"),
  13319. default: true
  13320. },
  13321. {
  13322. name: "Macro",
  13323. height: math.unit(490, "feet")
  13324. },
  13325. {
  13326. name: "Megamacro",
  13327. height: math.unit(10, "miles")
  13328. },
  13329. {
  13330. name: "Gigamacro",
  13331. height: math.unit(50, "miles")
  13332. },
  13333. ]
  13334. ))
  13335. characterMakers.push(() => makeCharacter(
  13336. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13337. {
  13338. front: {
  13339. height: math.unit(6, "feet"),
  13340. weight: math.unit(250, "lb"),
  13341. name: "Front",
  13342. image: {
  13343. source: "./media/characters/xylrem/front.svg",
  13344. extra: 3323 / 3050,
  13345. bottom: 0.065
  13346. }
  13347. },
  13348. },
  13349. [
  13350. {
  13351. name: "Micro",
  13352. height: math.unit(4, "feet")
  13353. },
  13354. {
  13355. name: "Normal",
  13356. height: math.unit(16, "feet"),
  13357. default: true
  13358. },
  13359. {
  13360. name: "Macro",
  13361. height: math.unit(2720, "feet")
  13362. },
  13363. {
  13364. name: "Megamacro",
  13365. height: math.unit(25000, "miles")
  13366. },
  13367. ]
  13368. ))
  13369. characterMakers.push(() => makeCharacter(
  13370. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13371. {
  13372. front: {
  13373. height: math.unit(8, "feet"),
  13374. weight: math.unit(250, "kg"),
  13375. name: "Front",
  13376. image: {
  13377. source: "./media/characters/ikideru/front.svg",
  13378. extra: 930 / 870,
  13379. bottom: 0.087
  13380. }
  13381. },
  13382. back: {
  13383. height: math.unit(8, "feet"),
  13384. weight: math.unit(250, "kg"),
  13385. name: "Back",
  13386. image: {
  13387. source: "./media/characters/ikideru/back.svg",
  13388. extra: 919 / 852,
  13389. bottom: 0.055
  13390. }
  13391. },
  13392. },
  13393. [
  13394. {
  13395. name: "Rare",
  13396. height: math.unit(8, "feet"),
  13397. default: true
  13398. },
  13399. {
  13400. name: "Playful Loom",
  13401. height: math.unit(80, "feet")
  13402. },
  13403. {
  13404. name: "City Leaner",
  13405. height: math.unit(230, "feet")
  13406. },
  13407. {
  13408. name: "Megamacro",
  13409. height: math.unit(2500, "feet")
  13410. },
  13411. {
  13412. name: "Gigamacro",
  13413. height: math.unit(26400, "feet")
  13414. },
  13415. {
  13416. name: "Tectonic Shifter",
  13417. height: math.unit(1.7, "megameters")
  13418. },
  13419. {
  13420. name: "Planet Carer",
  13421. height: math.unit(21, "megameters")
  13422. },
  13423. {
  13424. name: "God",
  13425. height: math.unit(11157.22, "parsecs")
  13426. },
  13427. ]
  13428. ))
  13429. characterMakers.push(() => makeCharacter(
  13430. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13431. {
  13432. front: {
  13433. height: math.unit(6, "feet"),
  13434. weight: math.unit(120, "lb"),
  13435. name: "Front",
  13436. image: {
  13437. source: "./media/characters/neo/front.svg"
  13438. }
  13439. },
  13440. },
  13441. [
  13442. {
  13443. name: "Micro",
  13444. height: math.unit(2, "inches"),
  13445. default: true
  13446. },
  13447. {
  13448. name: "Human Size",
  13449. height: math.unit(5 + 8 / 12, "feet")
  13450. },
  13451. ]
  13452. ))
  13453. characterMakers.push(() => makeCharacter(
  13454. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13455. {
  13456. front: {
  13457. height: math.unit(13 + 10 / 12, "feet"),
  13458. weight: math.unit(5320, "lb"),
  13459. name: "Front",
  13460. image: {
  13461. source: "./media/characters/chauncey-chantz/front.svg",
  13462. extra: 1587 / 1435,
  13463. bottom: 0.02
  13464. }
  13465. },
  13466. },
  13467. [
  13468. {
  13469. name: "Normal",
  13470. height: math.unit(13 + 10 / 12, "feet"),
  13471. default: true
  13472. },
  13473. {
  13474. name: "Macro",
  13475. height: math.unit(45, "feet")
  13476. },
  13477. {
  13478. name: "Megamacro",
  13479. height: math.unit(250, "miles")
  13480. },
  13481. {
  13482. name: "Planetary",
  13483. height: math.unit(10000, "miles")
  13484. },
  13485. {
  13486. name: "Galactic",
  13487. height: math.unit(40000, "parsecs")
  13488. },
  13489. {
  13490. name: "Universal",
  13491. height: math.unit(1, "yottameter")
  13492. },
  13493. ]
  13494. ))
  13495. characterMakers.push(() => makeCharacter(
  13496. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13497. {
  13498. front: {
  13499. height: math.unit(6, "feet"),
  13500. weight: math.unit(150, "lb"),
  13501. name: "Front",
  13502. image: {
  13503. source: "./media/characters/epifox/front.svg",
  13504. extra: 1,
  13505. bottom: 0.075
  13506. }
  13507. },
  13508. },
  13509. [
  13510. {
  13511. name: "Micro",
  13512. height: math.unit(6, "inches")
  13513. },
  13514. {
  13515. name: "Normal",
  13516. height: math.unit(12, "feet"),
  13517. default: true
  13518. },
  13519. {
  13520. name: "Macro",
  13521. height: math.unit(3810, "feet")
  13522. },
  13523. {
  13524. name: "Megamacro",
  13525. height: math.unit(500, "miles")
  13526. },
  13527. ]
  13528. ))
  13529. characterMakers.push(() => makeCharacter(
  13530. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13531. {
  13532. front: {
  13533. height: math.unit(1.8796, "m"),
  13534. weight: math.unit(230, "lb"),
  13535. name: "Front",
  13536. image: {
  13537. source: "./media/characters/colin-t/front.svg",
  13538. extra: 1272 / 1193,
  13539. bottom: 0.07
  13540. }
  13541. },
  13542. },
  13543. [
  13544. {
  13545. name: "Micro",
  13546. height: math.unit(0.571, "meters")
  13547. },
  13548. {
  13549. name: "Normal",
  13550. height: math.unit(1.8796, "meters"),
  13551. default: true
  13552. },
  13553. {
  13554. name: "Tall",
  13555. height: math.unit(4, "meters")
  13556. },
  13557. {
  13558. name: "Macro",
  13559. height: math.unit(67.241, "meters")
  13560. },
  13561. {
  13562. name: "Megamacro",
  13563. height: math.unit(371.856, "meters")
  13564. },
  13565. {
  13566. name: "Planetary",
  13567. height: math.unit(12631.5689, "km")
  13568. },
  13569. ]
  13570. ))
  13571. characterMakers.push(() => makeCharacter(
  13572. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13573. {
  13574. front: {
  13575. height: math.unit(1.85, "meters"),
  13576. weight: math.unit(80, "kg"),
  13577. name: "Front",
  13578. image: {
  13579. source: "./media/characters/matvei/front.svg",
  13580. extra: 456/447,
  13581. bottom: 8/464
  13582. }
  13583. },
  13584. back: {
  13585. height: math.unit(1.85, "meters"),
  13586. weight: math.unit(80, "kg"),
  13587. name: "Back",
  13588. image: {
  13589. source: "./media/characters/matvei/back.svg",
  13590. extra: 434/427,
  13591. bottom: 11/445
  13592. }
  13593. },
  13594. },
  13595. [
  13596. {
  13597. name: "Normal",
  13598. height: math.unit(1.85, "meters"),
  13599. default: true
  13600. },
  13601. ]
  13602. ))
  13603. characterMakers.push(() => makeCharacter(
  13604. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13605. {
  13606. front: {
  13607. height: math.unit(5 + 9 / 12, "feet"),
  13608. weight: math.unit(70, "lb"),
  13609. name: "Front",
  13610. image: {
  13611. source: "./media/characters/quincy/front.svg",
  13612. extra: 3041 / 2751
  13613. }
  13614. },
  13615. back: {
  13616. height: math.unit(5 + 9 / 12, "feet"),
  13617. weight: math.unit(70, "lb"),
  13618. name: "Back",
  13619. image: {
  13620. source: "./media/characters/quincy/back.svg",
  13621. extra: 3041 / 2751
  13622. }
  13623. },
  13624. flying: {
  13625. height: math.unit(5 + 4 / 12, "feet"),
  13626. weight: math.unit(70, "lb"),
  13627. name: "Flying",
  13628. image: {
  13629. source: "./media/characters/quincy/flying.svg",
  13630. extra: 1044 / 930
  13631. }
  13632. },
  13633. },
  13634. [
  13635. {
  13636. name: "Micro",
  13637. height: math.unit(3, "cm")
  13638. },
  13639. {
  13640. name: "Normal",
  13641. height: math.unit(5 + 9 / 12, "feet")
  13642. },
  13643. {
  13644. name: "Macro",
  13645. height: math.unit(200, "meters"),
  13646. default: true
  13647. },
  13648. {
  13649. name: "Megamacro",
  13650. height: math.unit(1000, "meters")
  13651. },
  13652. ]
  13653. ))
  13654. characterMakers.push(() => makeCharacter(
  13655. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13656. {
  13657. front: {
  13658. height: math.unit(3 + 11/12, "feet"),
  13659. weight: math.unit(50, "lb"),
  13660. name: "Front",
  13661. image: {
  13662. source: "./media/characters/vanrel/front.svg",
  13663. extra: 1104/949,
  13664. bottom: 52/1156
  13665. }
  13666. },
  13667. back: {
  13668. height: math.unit(3 + 11/12, "feet"),
  13669. weight: math.unit(50, "lb"),
  13670. name: "Back",
  13671. image: {
  13672. source: "./media/characters/vanrel/back.svg",
  13673. extra: 1119/976,
  13674. bottom: 37/1156
  13675. }
  13676. },
  13677. tome: {
  13678. height: math.unit(1.35, "feet"),
  13679. weight: math.unit(10, "lb"),
  13680. name: "Vanrel's Tome",
  13681. rename: true,
  13682. image: {
  13683. source: "./media/characters/vanrel/tome.svg"
  13684. }
  13685. },
  13686. beans: {
  13687. height: math.unit(0.89, "feet"),
  13688. name: "Beans",
  13689. image: {
  13690. source: "./media/characters/vanrel/beans.svg"
  13691. }
  13692. },
  13693. },
  13694. [
  13695. {
  13696. name: "Normal",
  13697. height: math.unit(3 + 11/12, "feet"),
  13698. default: true
  13699. },
  13700. ]
  13701. ))
  13702. characterMakers.push(() => makeCharacter(
  13703. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13704. {
  13705. front: {
  13706. height: math.unit(7 + 5 / 12, "feet"),
  13707. name: "Front",
  13708. image: {
  13709. source: "./media/characters/kuiper-vanrel/front.svg",
  13710. extra: 1219/1169,
  13711. bottom: 69/1288
  13712. }
  13713. },
  13714. back: {
  13715. height: math.unit(7 + 5 / 12, "feet"),
  13716. name: "Back",
  13717. image: {
  13718. source: "./media/characters/kuiper-vanrel/back.svg",
  13719. extra: 1236/1193,
  13720. bottom: 27/1263
  13721. }
  13722. },
  13723. foot: {
  13724. height: math.unit(0.55, "meters"),
  13725. name: "Foot",
  13726. image: {
  13727. source: "./media/characters/kuiper-vanrel/foot.svg",
  13728. }
  13729. },
  13730. battle: {
  13731. height: math.unit(6.824, "feet"),
  13732. name: "Battle",
  13733. image: {
  13734. source: "./media/characters/kuiper-vanrel/battle.svg",
  13735. extra: 1466 / 1327,
  13736. bottom: 29 / 1492.5
  13737. }
  13738. },
  13739. meerkui: {
  13740. height: math.unit(18, "inches"),
  13741. name: "Meerkui",
  13742. image: {
  13743. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13744. extra: 1354/1289,
  13745. bottom: 69/1423
  13746. }
  13747. },
  13748. },
  13749. [
  13750. {
  13751. name: "Normal",
  13752. height: math.unit(7 + 5 / 12, "feet"),
  13753. default: true
  13754. },
  13755. ]
  13756. ))
  13757. characterMakers.push(() => makeCharacter(
  13758. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13759. {
  13760. front: {
  13761. height: math.unit(8 + 5 / 12, "feet"),
  13762. name: "Front",
  13763. image: {
  13764. source: "./media/characters/keset-vanrel/front.svg",
  13765. extra: 1231/1148,
  13766. bottom: 82/1313
  13767. }
  13768. },
  13769. back: {
  13770. height: math.unit(8 + 5 / 12, "feet"),
  13771. name: "Back",
  13772. image: {
  13773. source: "./media/characters/keset-vanrel/back.svg",
  13774. extra: 1240/1174,
  13775. bottom: 33/1273
  13776. }
  13777. },
  13778. hand: {
  13779. height: math.unit(0.6, "meters"),
  13780. name: "Hand",
  13781. image: {
  13782. source: "./media/characters/keset-vanrel/hand.svg"
  13783. }
  13784. },
  13785. foot: {
  13786. height: math.unit(0.94978, "meters"),
  13787. name: "Foot",
  13788. image: {
  13789. source: "./media/characters/keset-vanrel/foot.svg"
  13790. }
  13791. },
  13792. battle: {
  13793. height: math.unit(7.408, "feet"),
  13794. name: "Battle",
  13795. image: {
  13796. source: "./media/characters/keset-vanrel/battle.svg",
  13797. extra: 1890 / 1386,
  13798. bottom: 73.28 / 1970
  13799. }
  13800. },
  13801. },
  13802. [
  13803. {
  13804. name: "Normal",
  13805. height: math.unit(8 + 5 / 12, "feet"),
  13806. default: true
  13807. },
  13808. ]
  13809. ))
  13810. characterMakers.push(() => makeCharacter(
  13811. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13812. {
  13813. front: {
  13814. height: math.unit(6, "feet"),
  13815. weight: math.unit(150, "lb"),
  13816. name: "Front",
  13817. image: {
  13818. source: "./media/characters/neos/front.svg",
  13819. extra: 1696 / 992,
  13820. bottom: 0.14
  13821. }
  13822. },
  13823. },
  13824. [
  13825. {
  13826. name: "Normal",
  13827. height: math.unit(54, "cm"),
  13828. default: true
  13829. },
  13830. {
  13831. name: "Macro",
  13832. height: math.unit(100, "m")
  13833. },
  13834. {
  13835. name: "Megamacro",
  13836. height: math.unit(10, "km")
  13837. },
  13838. {
  13839. name: "Megamacro+",
  13840. height: math.unit(100, "km")
  13841. },
  13842. {
  13843. name: "Gigamacro",
  13844. height: math.unit(100, "Mm")
  13845. },
  13846. {
  13847. name: "Teramacro",
  13848. height: math.unit(100, "Gm")
  13849. },
  13850. {
  13851. name: "Examacro",
  13852. height: math.unit(100, "Em")
  13853. },
  13854. {
  13855. name: "Godly",
  13856. height: math.unit(10000, "Ym")
  13857. },
  13858. {
  13859. name: "Beyond Godly",
  13860. height: math.unit(25, "multiverses")
  13861. },
  13862. ]
  13863. ))
  13864. characterMakers.push(() => makeCharacter(
  13865. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13866. {
  13867. fluide_tame: {
  13868. height: math.unit(5, "feet"),
  13869. name: "Tame",
  13870. image: {
  13871. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13872. extra: 1655/1574,
  13873. bottom: 231/1886
  13874. },
  13875. form: "fluide",
  13876. default: true
  13877. },
  13878. fluide_nude: {
  13879. height: math.unit(5, "feet"),
  13880. name: "Nude",
  13881. image: {
  13882. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  13883. extra: 1655/1574,
  13884. bottom: 231/1886
  13885. },
  13886. form: "fluide",
  13887. },
  13888. male_tame: {
  13889. height: math.unit(5, "feet"),
  13890. name: "Tame",
  13891. image: {
  13892. source: "./media/characters/sammy-mouse/male-tame.svg",
  13893. extra: 1655/1574,
  13894. bottom: 231/1886
  13895. },
  13896. form: "male",
  13897. default: true
  13898. },
  13899. male_nude: {
  13900. height: math.unit(5, "feet"),
  13901. name: "Nude",
  13902. image: {
  13903. source: "./media/characters/sammy-mouse/male-nude.svg",
  13904. extra: 1655/1574,
  13905. bottom: 231/1886
  13906. },
  13907. form: "male",
  13908. },
  13909. female_nude: {
  13910. height: math.unit(5, "feet"),
  13911. name: "Nude",
  13912. image: {
  13913. source: "./media/characters/sammy-mouse/female-nude.svg",
  13914. extra: 1655/1574,
  13915. bottom: 231/1886
  13916. },
  13917. form: "female",
  13918. default: true
  13919. },
  13920. mouth: {
  13921. height: math.unit(0.32, "feet"),
  13922. name: "Mouth",
  13923. image: {
  13924. source: "./media/characters/sammy-mouse/mouth.svg"
  13925. },
  13926. allForms: true
  13927. },
  13928. paw: {
  13929. height: math.unit(0.42, "feet"),
  13930. name: "Paw",
  13931. image: {
  13932. source: "./media/characters/sammy-mouse/paw.svg"
  13933. },
  13934. allForms: true
  13935. },
  13936. },
  13937. [
  13938. {
  13939. name: "Micro",
  13940. height: math.unit(5, "inches"),
  13941. allForms: true
  13942. },
  13943. {
  13944. name: "Normal",
  13945. height: math.unit(5, "feet"),
  13946. default: true,
  13947. allForms: true
  13948. },
  13949. {
  13950. name: "Macro",
  13951. height: math.unit(60, "feet"),
  13952. allForms: true
  13953. },
  13954. ],
  13955. {
  13956. "fluide": {
  13957. name: "Fluide",
  13958. default: true
  13959. },
  13960. "male": {
  13961. name: "Male",
  13962. },
  13963. "female": {
  13964. name: "Female",
  13965. },
  13966. }
  13967. ))
  13968. characterMakers.push(() => makeCharacter(
  13969. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13970. {
  13971. front: {
  13972. height: math.unit(4, "feet"),
  13973. weight: math.unit(50, "lb"),
  13974. name: "Front",
  13975. image: {
  13976. source: "./media/characters/kole/front.svg",
  13977. extra: 1423 / 1303,
  13978. bottom: 0.025
  13979. }
  13980. },
  13981. back: {
  13982. height: math.unit(4, "feet"),
  13983. weight: math.unit(50, "lb"),
  13984. name: "Back",
  13985. image: {
  13986. source: "./media/characters/kole/back.svg",
  13987. extra: 1426 / 1280,
  13988. bottom: 0.02
  13989. }
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Normal",
  13995. height: math.unit(4, "feet"),
  13996. default: true
  13997. },
  13998. ]
  13999. ))
  14000. characterMakers.push(() => makeCharacter(
  14001. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14002. {
  14003. front: {
  14004. height: math.unit(2.5, "feet"),
  14005. weight: math.unit(32, "lb"),
  14006. name: "Front",
  14007. image: {
  14008. source: "./media/characters/rufran/front.svg",
  14009. extra: 1313/885,
  14010. bottom: 94/1407
  14011. }
  14012. },
  14013. side: {
  14014. height: math.unit(2.5, "feet"),
  14015. weight: math.unit(32, "lb"),
  14016. name: "Side",
  14017. image: {
  14018. source: "./media/characters/rufran/side.svg",
  14019. extra: 1109/852,
  14020. bottom: 118/1227
  14021. }
  14022. },
  14023. back: {
  14024. height: math.unit(2.5, "feet"),
  14025. weight: math.unit(32, "lb"),
  14026. name: "Back",
  14027. image: {
  14028. source: "./media/characters/rufran/back.svg",
  14029. extra: 1280/878,
  14030. bottom: 131/1411
  14031. }
  14032. },
  14033. mouth: {
  14034. height: math.unit(1.13, "feet"),
  14035. name: "Mouth",
  14036. image: {
  14037. source: "./media/characters/rufran/mouth.svg"
  14038. }
  14039. },
  14040. foot: {
  14041. height: math.unit(1.33, "feet"),
  14042. name: "Foot",
  14043. image: {
  14044. source: "./media/characters/rufran/foot.svg"
  14045. }
  14046. },
  14047. koboldFront: {
  14048. height: math.unit(2 + 6 / 12, "feet"),
  14049. weight: math.unit(20, "lb"),
  14050. name: "Front (Kobold)",
  14051. image: {
  14052. source: "./media/characters/rufran/kobold-front.svg",
  14053. extra: 2041 / 1839,
  14054. bottom: 0.055
  14055. }
  14056. },
  14057. koboldBack: {
  14058. height: math.unit(2 + 6 / 12, "feet"),
  14059. weight: math.unit(20, "lb"),
  14060. name: "Back (Kobold)",
  14061. image: {
  14062. source: "./media/characters/rufran/kobold-back.svg",
  14063. extra: 2054 / 1839,
  14064. bottom: 0.01
  14065. }
  14066. },
  14067. koboldHand: {
  14068. height: math.unit(0.2166, "meters"),
  14069. name: "Hand (Kobold)",
  14070. image: {
  14071. source: "./media/characters/rufran/kobold-hand.svg"
  14072. }
  14073. },
  14074. koboldFoot: {
  14075. height: math.unit(0.185, "meters"),
  14076. name: "Foot (Kobold)",
  14077. image: {
  14078. source: "./media/characters/rufran/kobold-foot.svg"
  14079. }
  14080. },
  14081. },
  14082. [
  14083. {
  14084. name: "Micro",
  14085. height: math.unit(1, "inch")
  14086. },
  14087. {
  14088. name: "Normal",
  14089. height: math.unit(2 + 6 / 12, "feet"),
  14090. default: true
  14091. },
  14092. {
  14093. name: "Big",
  14094. height: math.unit(60, "feet")
  14095. },
  14096. {
  14097. name: "Macro",
  14098. height: math.unit(325, "feet")
  14099. },
  14100. ]
  14101. ))
  14102. characterMakers.push(() => makeCharacter(
  14103. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14104. {
  14105. front: {
  14106. height: math.unit(0.3, "meters"),
  14107. weight: math.unit(3.5, "kg"),
  14108. name: "Front",
  14109. image: {
  14110. source: "./media/characters/chip/front.svg",
  14111. extra: 748 / 674
  14112. }
  14113. },
  14114. },
  14115. [
  14116. {
  14117. name: "Micro",
  14118. height: math.unit(1, "inch"),
  14119. default: true
  14120. },
  14121. ]
  14122. ))
  14123. characterMakers.push(() => makeCharacter(
  14124. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14125. {
  14126. side: {
  14127. height: math.unit(2.3, "meters"),
  14128. weight: math.unit(3500, "lb"),
  14129. name: "Side",
  14130. image: {
  14131. source: "./media/characters/torvid/side.svg",
  14132. extra: 1972 / 722,
  14133. bottom: 0.035
  14134. }
  14135. },
  14136. },
  14137. [
  14138. {
  14139. name: "Normal",
  14140. height: math.unit(2.3, "meters"),
  14141. default: true
  14142. },
  14143. ]
  14144. ))
  14145. characterMakers.push(() => makeCharacter(
  14146. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14147. {
  14148. front: {
  14149. height: math.unit(2, "meters"),
  14150. weight: math.unit(150.5, "kg"),
  14151. name: "Front",
  14152. image: {
  14153. source: "./media/characters/susan/front.svg",
  14154. extra: 693 / 635,
  14155. bottom: 0.05
  14156. }
  14157. },
  14158. },
  14159. [
  14160. {
  14161. name: "Megamacro",
  14162. height: math.unit(505, "miles"),
  14163. default: true
  14164. },
  14165. ]
  14166. ))
  14167. characterMakers.push(() => makeCharacter(
  14168. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14169. {
  14170. front: {
  14171. height: math.unit(6, "feet"),
  14172. weight: math.unit(150, "lb"),
  14173. name: "Front",
  14174. image: {
  14175. source: "./media/characters/raindrops/front.svg",
  14176. extra: 2655 / 2461,
  14177. bottom: 49 / 2705
  14178. }
  14179. },
  14180. back: {
  14181. height: math.unit(6, "feet"),
  14182. weight: math.unit(150, "lb"),
  14183. name: "Back",
  14184. image: {
  14185. source: "./media/characters/raindrops/back.svg",
  14186. extra: 2574 / 2400,
  14187. bottom: 65 / 2634
  14188. }
  14189. },
  14190. },
  14191. [
  14192. {
  14193. name: "Micro",
  14194. height: math.unit(6, "inches")
  14195. },
  14196. {
  14197. name: "Normal",
  14198. height: math.unit(6 + 2 / 12, "feet")
  14199. },
  14200. {
  14201. name: "Macro",
  14202. height: math.unit(131, "feet"),
  14203. default: true
  14204. },
  14205. {
  14206. name: "Megamacro",
  14207. height: math.unit(15, "miles")
  14208. },
  14209. {
  14210. name: "Gigamacro",
  14211. height: math.unit(4000, "miles")
  14212. },
  14213. {
  14214. name: "Teramacro",
  14215. height: math.unit(315000, "miles")
  14216. },
  14217. ]
  14218. ))
  14219. characterMakers.push(() => makeCharacter(
  14220. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14221. {
  14222. front: {
  14223. height: math.unit(2.794, "meters"),
  14224. weight: math.unit(325, "kg"),
  14225. name: "Front",
  14226. image: {
  14227. source: "./media/characters/tezwa/front.svg",
  14228. extra: 2083 / 1906,
  14229. bottom: 0.031
  14230. }
  14231. },
  14232. foot: {
  14233. height: math.unit(0.687, "meters"),
  14234. name: "Foot",
  14235. image: {
  14236. source: "./media/characters/tezwa/foot.svg"
  14237. }
  14238. },
  14239. },
  14240. [
  14241. {
  14242. name: "Normal",
  14243. height: math.unit(9 + 2 / 12, "feet"),
  14244. default: true
  14245. },
  14246. ]
  14247. ))
  14248. characterMakers.push(() => makeCharacter(
  14249. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14250. {
  14251. front: {
  14252. height: math.unit(58, "feet"),
  14253. weight: math.unit(89000, "lb"),
  14254. name: "Front",
  14255. image: {
  14256. source: "./media/characters/typhus/front.svg",
  14257. extra: 816 / 800,
  14258. bottom: 0.065
  14259. }
  14260. },
  14261. },
  14262. [
  14263. {
  14264. name: "Macro",
  14265. height: math.unit(58, "feet"),
  14266. default: true
  14267. },
  14268. ]
  14269. ))
  14270. characterMakers.push(() => makeCharacter(
  14271. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14272. {
  14273. front: {
  14274. height: math.unit(12, "feet"),
  14275. weight: math.unit(6, "tonnes"),
  14276. name: "Front",
  14277. image: {
  14278. source: "./media/characters/lyra-von-wulf/front.svg",
  14279. extra: 1,
  14280. bottom: 0.10
  14281. }
  14282. },
  14283. frontMecha: {
  14284. height: math.unit(12, "feet"),
  14285. weight: math.unit(12, "tonnes"),
  14286. name: "Front (Mecha)",
  14287. image: {
  14288. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14289. extra: 1,
  14290. bottom: 0.042
  14291. }
  14292. },
  14293. maw: {
  14294. height: math.unit(2.2, "feet"),
  14295. name: "Maw",
  14296. image: {
  14297. source: "./media/characters/lyra-von-wulf/maw.svg"
  14298. }
  14299. },
  14300. },
  14301. [
  14302. {
  14303. name: "Normal",
  14304. height: math.unit(12, "feet"),
  14305. default: true
  14306. },
  14307. {
  14308. name: "Classic",
  14309. height: math.unit(50, "feet")
  14310. },
  14311. {
  14312. name: "Macro",
  14313. height: math.unit(500, "feet")
  14314. },
  14315. {
  14316. name: "Megamacro",
  14317. height: math.unit(1, "mile")
  14318. },
  14319. {
  14320. name: "Gigamacro",
  14321. height: math.unit(400, "miles")
  14322. },
  14323. {
  14324. name: "Teramacro",
  14325. height: math.unit(22000, "miles")
  14326. },
  14327. {
  14328. name: "Solarmacro",
  14329. height: math.unit(8600000, "miles")
  14330. },
  14331. {
  14332. name: "Galactic",
  14333. height: math.unit(1057000, "lightyears")
  14334. },
  14335. ]
  14336. ))
  14337. characterMakers.push(() => makeCharacter(
  14338. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14339. {
  14340. front: {
  14341. height: math.unit(6 + 10 / 12, "feet"),
  14342. weight: math.unit(150, "lb"),
  14343. name: "Front",
  14344. image: {
  14345. source: "./media/characters/dixon/front.svg",
  14346. extra: 3361 / 3209,
  14347. bottom: 0.01
  14348. }
  14349. },
  14350. },
  14351. [
  14352. {
  14353. name: "Normal",
  14354. height: math.unit(6 + 10 / 12, "feet"),
  14355. default: true
  14356. },
  14357. {
  14358. name: "Big",
  14359. height: math.unit(12, "meters")
  14360. },
  14361. {
  14362. name: "Macro",
  14363. height: math.unit(500, "meters")
  14364. },
  14365. {
  14366. name: "Megamacro",
  14367. height: math.unit(2, "km")
  14368. },
  14369. ]
  14370. ))
  14371. characterMakers.push(() => makeCharacter(
  14372. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14373. {
  14374. front: {
  14375. height: math.unit(185, "cm"),
  14376. weight: math.unit(68, "kg"),
  14377. name: "Front",
  14378. image: {
  14379. source: "./media/characters/kauko/front.svg",
  14380. extra: 1455 / 1421,
  14381. bottom: 0.03
  14382. }
  14383. },
  14384. back: {
  14385. height: math.unit(185, "cm"),
  14386. weight: math.unit(68, "kg"),
  14387. name: "Back",
  14388. image: {
  14389. source: "./media/characters/kauko/back.svg",
  14390. extra: 1455 / 1421,
  14391. bottom: 0.004
  14392. }
  14393. },
  14394. },
  14395. [
  14396. {
  14397. name: "Normal",
  14398. height: math.unit(185, "cm"),
  14399. default: true
  14400. },
  14401. ]
  14402. ))
  14403. characterMakers.push(() => makeCharacter(
  14404. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14405. {
  14406. frontSfw: {
  14407. height: math.unit(5, "meters"),
  14408. weight: math.unit(4250, "lb"),
  14409. name: "Front",
  14410. image: {
  14411. source: "./media/characters/varg/front-sfw.svg",
  14412. extra: 1103/1010,
  14413. bottom: 50/1153
  14414. },
  14415. form: "anthro",
  14416. default: true
  14417. },
  14418. backSfw: {
  14419. height: math.unit(5, "meters"),
  14420. weight: math.unit(4250, "lb"),
  14421. name: "Back",
  14422. image: {
  14423. source: "./media/characters/varg/back-sfw.svg",
  14424. extra: 1038/1022,
  14425. bottom: 36/1074
  14426. },
  14427. form: "anthro"
  14428. },
  14429. frontNsfw: {
  14430. height: math.unit(5, "meters"),
  14431. weight: math.unit(4250, "lb"),
  14432. name: "Front (NSFW)",
  14433. image: {
  14434. source: "./media/characters/varg/front-nsfw.svg",
  14435. extra: 1103/1010,
  14436. bottom: 50/1153
  14437. },
  14438. form: "anthro"
  14439. },
  14440. sheath: {
  14441. height: math.unit(3.8, "feet"),
  14442. weight: math.unit(90, "kilograms"),
  14443. name: "Sheath",
  14444. image: {
  14445. source: "./media/characters/varg/sheath.svg"
  14446. },
  14447. form: "anthro"
  14448. },
  14449. dick: {
  14450. height: math.unit(4.6, "feet"),
  14451. weight: math.unit(451, "kilograms"),
  14452. name: "Dick",
  14453. image: {
  14454. source: "./media/characters/varg/dick.svg"
  14455. },
  14456. form: "anthro"
  14457. },
  14458. feralSfw: {
  14459. height: math.unit(5, "meters"),
  14460. weight: math.unit(100000, "lb"),
  14461. name: "Side",
  14462. image: {
  14463. source: "./media/characters/varg/feral-sfw.svg",
  14464. extra: 1065/511,
  14465. bottom: 211/1276
  14466. },
  14467. form: "feral",
  14468. default: true
  14469. },
  14470. feralNsfw: {
  14471. height: math.unit(5, "meters"),
  14472. weight: math.unit(100000, "lb"),
  14473. name: "Side (NSFW)",
  14474. image: {
  14475. source: "./media/characters/varg/feral-nsfw.svg",
  14476. extra: 1065/511,
  14477. bottom: 211/1276
  14478. },
  14479. form: "feral",
  14480. },
  14481. feralSheath: {
  14482. height: math.unit(9.8, "feet"),
  14483. weight: math.unit(2000, "kilograms"),
  14484. name: "Sheath",
  14485. image: {
  14486. source: "./media/characters/varg/sheath.svg"
  14487. },
  14488. form: "feral"
  14489. },
  14490. feralDick: {
  14491. height: math.unit(13.11, "feet"),
  14492. weight: math.unit(10440, "kilograms"),
  14493. name: "Dick",
  14494. image: {
  14495. source: "./media/characters/varg/dick.svg"
  14496. },
  14497. form: "feral"
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Normal",
  14503. height: math.unit(5, "meters"),
  14504. form: "anthro"
  14505. },
  14506. {
  14507. name: "Macro",
  14508. height: math.unit(200, "meters"),
  14509. form: "anthro"
  14510. },
  14511. {
  14512. name: "Megamacro",
  14513. height: math.unit(20, "kilometers"),
  14514. form: "anthro"
  14515. },
  14516. {
  14517. name: "True Size",
  14518. height: math.unit(211, "km"),
  14519. form: "anthro",
  14520. default: true
  14521. },
  14522. {
  14523. name: "Gigamacro",
  14524. height: math.unit(1000, "km"),
  14525. form: "anthro"
  14526. },
  14527. {
  14528. name: "Gigamacro+",
  14529. height: math.unit(8000, "km"),
  14530. form: "anthro"
  14531. },
  14532. {
  14533. name: "Teramacro",
  14534. height: math.unit(1000000, "km"),
  14535. form: "anthro"
  14536. },
  14537. {
  14538. name: "Normal",
  14539. height: math.unit(5, "meters"),
  14540. form: "feral"
  14541. },
  14542. {
  14543. name: "Macro",
  14544. height: math.unit(200, "meters"),
  14545. form: "feral"
  14546. },
  14547. {
  14548. name: "Megamacro",
  14549. height: math.unit(20, "kilometers"),
  14550. form: "feral"
  14551. },
  14552. {
  14553. name: "True Size",
  14554. height: math.unit(211, "km"),
  14555. form: "feral",
  14556. default: true
  14557. },
  14558. {
  14559. name: "Gigamacro",
  14560. height: math.unit(1000, "km"),
  14561. form: "feral"
  14562. },
  14563. {
  14564. name: "Gigamacro+",
  14565. height: math.unit(8000, "km"),
  14566. form: "feral"
  14567. },
  14568. {
  14569. name: "Teramacro",
  14570. height: math.unit(1000000, "km"),
  14571. form: "feral"
  14572. },
  14573. ],
  14574. {
  14575. "anthro": {
  14576. name: "Anthro",
  14577. default: true
  14578. },
  14579. "feral": {
  14580. name: "Feral",
  14581. },
  14582. }
  14583. ))
  14584. characterMakers.push(() => makeCharacter(
  14585. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14586. {
  14587. front: {
  14588. height: math.unit(7 + 7 / 12, "feet"),
  14589. weight: math.unit(267, "lb"),
  14590. name: "Front",
  14591. image: {
  14592. source: "./media/characters/dayza/front.svg",
  14593. extra: 1262 / 1200,
  14594. bottom: 0.035
  14595. }
  14596. },
  14597. side: {
  14598. height: math.unit(7 + 7 / 12, "feet"),
  14599. weight: math.unit(267, "lb"),
  14600. name: "Side",
  14601. image: {
  14602. source: "./media/characters/dayza/side.svg",
  14603. extra: 1295 / 1245,
  14604. bottom: 0.05
  14605. }
  14606. },
  14607. back: {
  14608. height: math.unit(7 + 7 / 12, "feet"),
  14609. weight: math.unit(267, "lb"),
  14610. name: "Back",
  14611. image: {
  14612. source: "./media/characters/dayza/back.svg",
  14613. extra: 1241 / 1170
  14614. }
  14615. },
  14616. },
  14617. [
  14618. {
  14619. name: "Normal",
  14620. height: math.unit(7 + 7 / 12, "feet"),
  14621. default: true
  14622. },
  14623. {
  14624. name: "Macro",
  14625. height: math.unit(155, "feet")
  14626. },
  14627. ]
  14628. ))
  14629. characterMakers.push(() => makeCharacter(
  14630. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14631. {
  14632. front: {
  14633. height: math.unit(6 + 5 / 12, "feet"),
  14634. weight: math.unit(160, "lb"),
  14635. name: "Front",
  14636. image: {
  14637. source: "./media/characters/xanthos/front.svg",
  14638. extra: 1,
  14639. bottom: 0.04
  14640. }
  14641. },
  14642. back: {
  14643. height: math.unit(6 + 5 / 12, "feet"),
  14644. weight: math.unit(160, "lb"),
  14645. name: "Back",
  14646. image: {
  14647. source: "./media/characters/xanthos/back.svg",
  14648. extra: 1,
  14649. bottom: 0.03
  14650. }
  14651. },
  14652. hand: {
  14653. height: math.unit(0.928, "feet"),
  14654. name: "Hand",
  14655. image: {
  14656. source: "./media/characters/xanthos/hand.svg"
  14657. }
  14658. },
  14659. foot: {
  14660. height: math.unit(1.286, "feet"),
  14661. name: "Foot",
  14662. image: {
  14663. source: "./media/characters/xanthos/foot.svg"
  14664. }
  14665. },
  14666. },
  14667. [
  14668. {
  14669. name: "Normal",
  14670. height: math.unit(6 + 5 / 12, "feet"),
  14671. default: true
  14672. },
  14673. {
  14674. name: "Normal+",
  14675. height: math.unit(6, "meters")
  14676. },
  14677. {
  14678. name: "Macro",
  14679. height: math.unit(40, "feet")
  14680. },
  14681. {
  14682. name: "Macro+",
  14683. height: math.unit(200, "meters")
  14684. },
  14685. {
  14686. name: "Megamacro",
  14687. height: math.unit(20, "km")
  14688. },
  14689. {
  14690. name: "Megamacro+",
  14691. height: math.unit(100, "km")
  14692. },
  14693. {
  14694. name: "Gigamacro",
  14695. height: math.unit(200, "megameters")
  14696. },
  14697. {
  14698. name: "Gigamacro+",
  14699. height: math.unit(1.5, "gigameters")
  14700. },
  14701. ]
  14702. ))
  14703. characterMakers.push(() => makeCharacter(
  14704. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14705. {
  14706. front: {
  14707. height: math.unit(6 + 3 / 12, "feet"),
  14708. weight: math.unit(215, "lb"),
  14709. name: "Front",
  14710. image: {
  14711. source: "./media/characters/grynn/front.svg",
  14712. extra: 4627 / 4209,
  14713. bottom: 0.047
  14714. }
  14715. },
  14716. },
  14717. [
  14718. {
  14719. name: "Micro",
  14720. height: math.unit(6, "inches")
  14721. },
  14722. {
  14723. name: "Normal",
  14724. height: math.unit(6 + 3 / 12, "feet"),
  14725. default: true
  14726. },
  14727. {
  14728. name: "Big",
  14729. height: math.unit(104, "feet")
  14730. },
  14731. {
  14732. name: "Macro",
  14733. height: math.unit(944, "feet")
  14734. },
  14735. {
  14736. name: "Macro+",
  14737. height: math.unit(9480, "feet")
  14738. },
  14739. {
  14740. name: "Megamacro",
  14741. height: math.unit(78752, "feet")
  14742. },
  14743. {
  14744. name: "Megamacro+",
  14745. height: math.unit(630128, "feet")
  14746. },
  14747. {
  14748. name: "Megamacro++",
  14749. height: math.unit(3150695, "feet")
  14750. },
  14751. ]
  14752. ))
  14753. characterMakers.push(() => makeCharacter(
  14754. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14755. {
  14756. front: {
  14757. height: math.unit(7 + 5 / 12, "feet"),
  14758. weight: math.unit(450, "lb"),
  14759. name: "Front",
  14760. image: {
  14761. source: "./media/characters/mocha-aura/front.svg",
  14762. extra: 1907 / 1817,
  14763. bottom: 0.04
  14764. }
  14765. },
  14766. back: {
  14767. height: math.unit(7 + 5 / 12, "feet"),
  14768. weight: math.unit(450, "lb"),
  14769. name: "Back",
  14770. image: {
  14771. source: "./media/characters/mocha-aura/back.svg",
  14772. extra: 1900 / 1825,
  14773. bottom: 0.045
  14774. }
  14775. },
  14776. },
  14777. [
  14778. {
  14779. name: "Nano",
  14780. height: math.unit(1, "nm")
  14781. },
  14782. {
  14783. name: "Megamicro",
  14784. height: math.unit(1, "mm")
  14785. },
  14786. {
  14787. name: "Micro",
  14788. height: math.unit(3, "inches")
  14789. },
  14790. {
  14791. name: "Normal",
  14792. height: math.unit(7 + 5 / 12, "feet"),
  14793. default: true
  14794. },
  14795. {
  14796. name: "Macro",
  14797. height: math.unit(30, "feet")
  14798. },
  14799. {
  14800. name: "Megamacro",
  14801. height: math.unit(3500, "feet")
  14802. },
  14803. {
  14804. name: "Teramacro",
  14805. height: math.unit(500000, "miles")
  14806. },
  14807. {
  14808. name: "Petamacro",
  14809. height: math.unit(50000000000000000, "parsecs")
  14810. },
  14811. ]
  14812. ))
  14813. characterMakers.push(() => makeCharacter(
  14814. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14815. {
  14816. front: {
  14817. height: math.unit(6, "feet"),
  14818. weight: math.unit(150, "lb"),
  14819. name: "Front",
  14820. image: {
  14821. source: "./media/characters/ilisha-devya/front.svg",
  14822. extra: 1053/1049,
  14823. bottom: 270/1323
  14824. }
  14825. },
  14826. back: {
  14827. height: math.unit(6, "feet"),
  14828. weight: math.unit(150, "lb"),
  14829. name: "Back",
  14830. image: {
  14831. source: "./media/characters/ilisha-devya/back.svg",
  14832. extra: 1131/1128,
  14833. bottom: 39/1170
  14834. }
  14835. },
  14836. },
  14837. [
  14838. {
  14839. name: "Macro",
  14840. height: math.unit(500, "feet"),
  14841. default: true
  14842. },
  14843. {
  14844. name: "Megamacro",
  14845. height: math.unit(10, "miles")
  14846. },
  14847. {
  14848. name: "Gigamacro",
  14849. height: math.unit(100000, "miles")
  14850. },
  14851. {
  14852. name: "Examacro",
  14853. height: math.unit(1e9, "lightyears")
  14854. },
  14855. {
  14856. name: "Omniversal",
  14857. height: math.unit(1e33, "lightyears")
  14858. },
  14859. {
  14860. name: "Beyond Infinite",
  14861. height: math.unit(1e100, "lightyears")
  14862. },
  14863. ]
  14864. ))
  14865. characterMakers.push(() => makeCharacter(
  14866. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14867. {
  14868. Side: {
  14869. height: math.unit(6, "feet"),
  14870. weight: math.unit(150, "lb"),
  14871. name: "Side",
  14872. image: {
  14873. source: "./media/characters/mira/side.svg",
  14874. extra: 900 / 799,
  14875. bottom: 0.02
  14876. }
  14877. },
  14878. },
  14879. [
  14880. {
  14881. name: "Human Size",
  14882. height: math.unit(6, "feet")
  14883. },
  14884. {
  14885. name: "Macro",
  14886. height: math.unit(100, "feet"),
  14887. default: true
  14888. },
  14889. {
  14890. name: "Megamacro",
  14891. height: math.unit(10, "miles")
  14892. },
  14893. {
  14894. name: "Gigamacro",
  14895. height: math.unit(25000, "miles")
  14896. },
  14897. {
  14898. name: "Teramacro",
  14899. height: math.unit(300, "AU")
  14900. },
  14901. {
  14902. name: "Full Size",
  14903. height: math.unit(4.5e10, "lightyears")
  14904. },
  14905. ]
  14906. ))
  14907. characterMakers.push(() => makeCharacter(
  14908. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14909. {
  14910. front: {
  14911. height: math.unit(6, "feet"),
  14912. weight: math.unit(150, "lb"),
  14913. name: "Front",
  14914. image: {
  14915. source: "./media/characters/holly/front.svg",
  14916. extra: 639 / 606
  14917. }
  14918. },
  14919. back: {
  14920. height: math.unit(6, "feet"),
  14921. weight: math.unit(150, "lb"),
  14922. name: "Back",
  14923. image: {
  14924. source: "./media/characters/holly/back.svg",
  14925. extra: 623 / 598
  14926. }
  14927. },
  14928. frontWorking: {
  14929. height: math.unit(6, "feet"),
  14930. weight: math.unit(150, "lb"),
  14931. name: "Front (Working)",
  14932. image: {
  14933. source: "./media/characters/holly/front-working.svg",
  14934. extra: 607 / 577,
  14935. bottom: 0.048
  14936. }
  14937. },
  14938. },
  14939. [
  14940. {
  14941. name: "Normal",
  14942. height: math.unit(12 + 3 / 12, "feet"),
  14943. default: true
  14944. },
  14945. ]
  14946. ))
  14947. characterMakers.push(() => makeCharacter(
  14948. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14949. {
  14950. front: {
  14951. height: math.unit(6, "feet"),
  14952. weight: math.unit(150, "lb"),
  14953. name: "Front",
  14954. image: {
  14955. source: "./media/characters/porter/front.svg",
  14956. extra: 1,
  14957. bottom: 0.01
  14958. }
  14959. },
  14960. frontRobes: {
  14961. height: math.unit(6, "feet"),
  14962. weight: math.unit(150, "lb"),
  14963. name: "Front (Robes)",
  14964. image: {
  14965. source: "./media/characters/porter/front-robes.svg",
  14966. extra: 1.01,
  14967. bottom: 0.01
  14968. }
  14969. },
  14970. },
  14971. [
  14972. {
  14973. name: "Normal",
  14974. height: math.unit(11 + 9 / 12, "feet"),
  14975. default: true
  14976. },
  14977. ]
  14978. ))
  14979. characterMakers.push(() => makeCharacter(
  14980. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14981. {
  14982. legendary: {
  14983. height: math.unit(6, "feet"),
  14984. weight: math.unit(150, "lb"),
  14985. name: "Legendary",
  14986. image: {
  14987. source: "./media/characters/lucy/legendary.svg",
  14988. extra: 1355 / 1100,
  14989. bottom: 0.045
  14990. }
  14991. },
  14992. },
  14993. [
  14994. {
  14995. name: "Legendary",
  14996. height: math.unit(86882 * 2, "miles"),
  14997. default: true
  14998. },
  14999. ]
  15000. ))
  15001. characterMakers.push(() => makeCharacter(
  15002. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15003. {
  15004. front: {
  15005. height: math.unit(6, "feet"),
  15006. weight: math.unit(150, "lb"),
  15007. name: "Front",
  15008. image: {
  15009. source: "./media/characters/drusilla/front.svg",
  15010. extra: 678 / 635,
  15011. bottom: 0.03
  15012. }
  15013. },
  15014. back: {
  15015. height: math.unit(6, "feet"),
  15016. weight: math.unit(150, "lb"),
  15017. name: "Back",
  15018. image: {
  15019. source: "./media/characters/drusilla/back.svg",
  15020. extra: 678 / 635,
  15021. bottom: 0.005
  15022. }
  15023. },
  15024. },
  15025. [
  15026. {
  15027. name: "Macro",
  15028. height: math.unit(100, "feet")
  15029. },
  15030. {
  15031. name: "Canon Height",
  15032. height: math.unit(2000, "feet"),
  15033. default: true
  15034. },
  15035. ]
  15036. ))
  15037. characterMakers.push(() => makeCharacter(
  15038. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15039. {
  15040. front: {
  15041. height: math.unit(6, "feet"),
  15042. weight: math.unit(180, "lb"),
  15043. name: "Front",
  15044. image: {
  15045. source: "./media/characters/renard-thatch/front.svg",
  15046. extra: 2411 / 2275,
  15047. bottom: 0.01
  15048. }
  15049. },
  15050. frontPosing: {
  15051. height: math.unit(6, "feet"),
  15052. weight: math.unit(180, "lb"),
  15053. name: "Front (Posing)",
  15054. image: {
  15055. source: "./media/characters/renard-thatch/front-posing.svg",
  15056. extra: 2381 / 2261,
  15057. bottom: 0.01
  15058. }
  15059. },
  15060. back: {
  15061. height: math.unit(6, "feet"),
  15062. weight: math.unit(180, "lb"),
  15063. name: "Back",
  15064. image: {
  15065. source: "./media/characters/renard-thatch/back.svg",
  15066. extra: 2428 / 2288
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Micro",
  15073. height: math.unit(3, "inches")
  15074. },
  15075. {
  15076. name: "Default",
  15077. height: math.unit(6, "feet"),
  15078. default: true
  15079. },
  15080. {
  15081. name: "Macro",
  15082. height: math.unit(75, "feet")
  15083. },
  15084. ]
  15085. ))
  15086. characterMakers.push(() => makeCharacter(
  15087. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15088. {
  15089. front: {
  15090. height: math.unit(1450, "feet"),
  15091. weight: math.unit(1.21e6, "tons"),
  15092. name: "Front",
  15093. image: {
  15094. source: "./media/characters/sekvra/front.svg",
  15095. extra: 1193/1190,
  15096. bottom: 78/1271
  15097. }
  15098. },
  15099. side: {
  15100. height: math.unit(1450, "feet"),
  15101. weight: math.unit(1.21e6, "tons"),
  15102. name: "Side",
  15103. image: {
  15104. source: "./media/characters/sekvra/side.svg",
  15105. extra: 1193/1190,
  15106. bottom: 52/1245
  15107. }
  15108. },
  15109. back: {
  15110. height: math.unit(1450, "feet"),
  15111. weight: math.unit(1.21e6, "tons"),
  15112. name: "Back",
  15113. image: {
  15114. source: "./media/characters/sekvra/back.svg",
  15115. extra: 1219/1216,
  15116. bottom: 21/1240
  15117. }
  15118. },
  15119. frontClothed: {
  15120. height: math.unit(1450, "feet"),
  15121. weight: math.unit(1.21e6, "tons"),
  15122. name: "Front (Clothed)",
  15123. image: {
  15124. source: "./media/characters/sekvra/front-clothed.svg",
  15125. extra: 1192/1189,
  15126. bottom: 79/1271
  15127. }
  15128. },
  15129. },
  15130. [
  15131. {
  15132. name: "Macro",
  15133. height: math.unit(1450, "feet"),
  15134. default: true
  15135. },
  15136. {
  15137. name: "Megamacro",
  15138. height: math.unit(15000, "feet")
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15144. {
  15145. front: {
  15146. height: math.unit(6, "feet"),
  15147. weight: math.unit(150, "lb"),
  15148. name: "Front",
  15149. image: {
  15150. source: "./media/characters/carmine/front.svg",
  15151. extra: 1557/1538,
  15152. bottom: 68/1625
  15153. }
  15154. },
  15155. frontArmor: {
  15156. height: math.unit(6, "feet"),
  15157. weight: math.unit(150, "lb"),
  15158. name: "Front (Armor)",
  15159. image: {
  15160. source: "./media/characters/carmine/front-armor.svg",
  15161. extra: 1549/1530,
  15162. bottom: 82/1631
  15163. }
  15164. },
  15165. mouth: {
  15166. height: math.unit(0.55, "feet"),
  15167. name: "Mouth",
  15168. image: {
  15169. source: "./media/characters/carmine/mouth.svg"
  15170. }
  15171. },
  15172. hand: {
  15173. height: math.unit(1.05, "feet"),
  15174. name: "Hand",
  15175. image: {
  15176. source: "./media/characters/carmine/hand.svg"
  15177. }
  15178. },
  15179. foot: {
  15180. height: math.unit(0.6, "feet"),
  15181. name: "Foot",
  15182. image: {
  15183. source: "./media/characters/carmine/foot.svg"
  15184. }
  15185. },
  15186. },
  15187. [
  15188. {
  15189. name: "Large",
  15190. height: math.unit(1, "mile")
  15191. },
  15192. {
  15193. name: "Huge",
  15194. height: math.unit(40, "miles"),
  15195. default: true
  15196. },
  15197. {
  15198. name: "Colossal",
  15199. height: math.unit(2500, "miles")
  15200. },
  15201. ]
  15202. ))
  15203. characterMakers.push(() => makeCharacter(
  15204. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15205. {
  15206. front: {
  15207. height: math.unit(6, "feet"),
  15208. weight: math.unit(150, "lb"),
  15209. name: "Front",
  15210. image: {
  15211. source: "./media/characters/elyssia/front.svg",
  15212. extra: 2201 / 2035,
  15213. bottom: 0.05
  15214. }
  15215. },
  15216. frontClothed: {
  15217. height: math.unit(6, "feet"),
  15218. weight: math.unit(150, "lb"),
  15219. name: "Front (Clothed)",
  15220. image: {
  15221. source: "./media/characters/elyssia/front-clothed.svg",
  15222. extra: 2201 / 2035,
  15223. bottom: 0.05
  15224. }
  15225. },
  15226. back: {
  15227. height: math.unit(6, "feet"),
  15228. weight: math.unit(150, "lb"),
  15229. name: "Back",
  15230. image: {
  15231. source: "./media/characters/elyssia/back.svg",
  15232. extra: 2201 / 2035,
  15233. bottom: 0.013
  15234. }
  15235. },
  15236. },
  15237. [
  15238. {
  15239. name: "Smaller",
  15240. height: math.unit(150, "feet")
  15241. },
  15242. {
  15243. name: "Standard",
  15244. height: math.unit(1400, "feet"),
  15245. default: true
  15246. },
  15247. {
  15248. name: "Distracted",
  15249. height: math.unit(15000, "feet")
  15250. },
  15251. ]
  15252. ))
  15253. characterMakers.push(() => makeCharacter(
  15254. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15255. {
  15256. front: {
  15257. height: math.unit(7 + 4/12, "feet"),
  15258. weight: math.unit(690, "lb"),
  15259. name: "Front",
  15260. image: {
  15261. source: "./media/characters/geno-maxwell/front.svg",
  15262. extra: 984/856,
  15263. bottom: 87/1071
  15264. }
  15265. },
  15266. back: {
  15267. height: math.unit(7 + 4/12, "feet"),
  15268. weight: math.unit(690, "lb"),
  15269. name: "Back",
  15270. image: {
  15271. source: "./media/characters/geno-maxwell/back.svg",
  15272. extra: 981/854,
  15273. bottom: 57/1038
  15274. }
  15275. },
  15276. frontCostume: {
  15277. height: math.unit(7 + 4/12, "feet"),
  15278. weight: math.unit(690, "lb"),
  15279. name: "Front (Costume)",
  15280. image: {
  15281. source: "./media/characters/geno-maxwell/front-costume.svg",
  15282. extra: 984/856,
  15283. bottom: 87/1071
  15284. }
  15285. },
  15286. backcostume: {
  15287. height: math.unit(7 + 4/12, "feet"),
  15288. weight: math.unit(690, "lb"),
  15289. name: "Back (Costume)",
  15290. image: {
  15291. source: "./media/characters/geno-maxwell/back-costume.svg",
  15292. extra: 981/854,
  15293. bottom: 57/1038
  15294. }
  15295. },
  15296. },
  15297. [
  15298. {
  15299. name: "Micro",
  15300. height: math.unit(3, "inches")
  15301. },
  15302. {
  15303. name: "Normal",
  15304. height: math.unit(7 + 4 / 12, "feet"),
  15305. default: true
  15306. },
  15307. {
  15308. name: "Macro",
  15309. height: math.unit(220, "feet")
  15310. },
  15311. {
  15312. name: "Megamacro",
  15313. height: math.unit(11, "miles")
  15314. },
  15315. ]
  15316. ))
  15317. characterMakers.push(() => makeCharacter(
  15318. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15319. {
  15320. front: {
  15321. height: math.unit(7 + 4/12, "feet"),
  15322. weight: math.unit(750, "lb"),
  15323. name: "Front",
  15324. image: {
  15325. source: "./media/characters/regena-maxwell/front.svg",
  15326. extra: 984/856,
  15327. bottom: 87/1071
  15328. }
  15329. },
  15330. back: {
  15331. height: math.unit(7 + 4/12, "feet"),
  15332. weight: math.unit(750, "lb"),
  15333. name: "Back",
  15334. image: {
  15335. source: "./media/characters/regena-maxwell/back.svg",
  15336. extra: 981/854,
  15337. bottom: 57/1038
  15338. }
  15339. },
  15340. frontCostume: {
  15341. height: math.unit(7 + 4/12, "feet"),
  15342. weight: math.unit(750, "lb"),
  15343. name: "Front (Costume)",
  15344. image: {
  15345. source: "./media/characters/regena-maxwell/front-costume.svg",
  15346. extra: 984/856,
  15347. bottom: 87/1071
  15348. }
  15349. },
  15350. backcostume: {
  15351. height: math.unit(7 + 4/12, "feet"),
  15352. weight: math.unit(750, "lb"),
  15353. name: "Back (Costume)",
  15354. image: {
  15355. source: "./media/characters/regena-maxwell/back-costume.svg",
  15356. extra: 981/854,
  15357. bottom: 57/1038
  15358. }
  15359. },
  15360. },
  15361. [
  15362. {
  15363. name: "Normal",
  15364. height: math.unit(7 + 4 / 12, "feet"),
  15365. default: true
  15366. },
  15367. {
  15368. name: "Macro",
  15369. height: math.unit(220, "feet")
  15370. },
  15371. {
  15372. name: "Megamacro",
  15373. height: math.unit(11, "miles")
  15374. },
  15375. ]
  15376. ))
  15377. characterMakers.push(() => makeCharacter(
  15378. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15379. {
  15380. front: {
  15381. height: math.unit(6, "feet"),
  15382. weight: math.unit(150, "lb"),
  15383. name: "Front",
  15384. image: {
  15385. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15386. extra: 860 / 690,
  15387. bottom: 0.03
  15388. }
  15389. },
  15390. },
  15391. [
  15392. {
  15393. name: "Normal",
  15394. height: math.unit(1.7, "meters"),
  15395. default: true
  15396. },
  15397. ]
  15398. ))
  15399. characterMakers.push(() => makeCharacter(
  15400. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15401. {
  15402. front: {
  15403. height: math.unit(6, "feet"),
  15404. weight: math.unit(150, "lb"),
  15405. name: "Front",
  15406. image: {
  15407. source: "./media/characters/quilly/front.svg",
  15408. extra: 890 / 776
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Gigamacro",
  15415. height: math.unit(404090, "miles"),
  15416. default: true
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15422. {
  15423. front: {
  15424. height: math.unit(7 + 8 / 12, "feet"),
  15425. weight: math.unit(350, "lb"),
  15426. name: "Front",
  15427. image: {
  15428. source: "./media/characters/tempest/front.svg",
  15429. extra: 1175 / 1086,
  15430. bottom: 0.02
  15431. }
  15432. },
  15433. },
  15434. [
  15435. {
  15436. name: "Normal",
  15437. height: math.unit(7 + 8 / 12, "feet"),
  15438. default: true
  15439. },
  15440. ]
  15441. ))
  15442. characterMakers.push(() => makeCharacter(
  15443. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15444. {
  15445. side: {
  15446. height: math.unit(4 + 5 / 12, "feet"),
  15447. weight: math.unit(80, "lb"),
  15448. name: "Side",
  15449. image: {
  15450. source: "./media/characters/rodger/side.svg",
  15451. extra: 1235 / 1118
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "Micro",
  15458. height: math.unit(1, "inch")
  15459. },
  15460. {
  15461. name: "Normal",
  15462. height: math.unit(4 + 5 / 12, "feet"),
  15463. default: true
  15464. },
  15465. {
  15466. name: "Macro",
  15467. height: math.unit(120, "feet")
  15468. },
  15469. ]
  15470. ))
  15471. characterMakers.push(() => makeCharacter(
  15472. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15473. {
  15474. front: {
  15475. height: math.unit(6, "feet"),
  15476. weight: math.unit(150, "lb"),
  15477. name: "Front",
  15478. image: {
  15479. source: "./media/characters/danyel/front.svg",
  15480. extra: 1185 / 1123,
  15481. bottom: 0.05
  15482. }
  15483. },
  15484. },
  15485. [
  15486. {
  15487. name: "Shrunken",
  15488. height: math.unit(0.5, "mm")
  15489. },
  15490. {
  15491. name: "Micro",
  15492. height: math.unit(1, "mm"),
  15493. default: true
  15494. },
  15495. {
  15496. name: "Upsized",
  15497. height: math.unit(5 + 5 / 12, "feet")
  15498. },
  15499. ]
  15500. ))
  15501. characterMakers.push(() => makeCharacter(
  15502. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15503. {
  15504. front: {
  15505. height: math.unit(5 + 6 / 12, "feet"),
  15506. weight: math.unit(200, "lb"),
  15507. name: "Front",
  15508. image: {
  15509. source: "./media/characters/vivian-bijoux/front.svg",
  15510. extra: 1217/1209,
  15511. bottom: 76/1293
  15512. }
  15513. },
  15514. back: {
  15515. height: math.unit(5 + 6 / 12, "feet"),
  15516. weight: math.unit(200, "lb"),
  15517. name: "Back",
  15518. image: {
  15519. source: "./media/characters/vivian-bijoux/back.svg",
  15520. extra: 1214/1208,
  15521. bottom: 51/1265
  15522. }
  15523. },
  15524. dressed: {
  15525. height: math.unit(5 + 6 / 12, "feet"),
  15526. weight: math.unit(200, "lb"),
  15527. name: "Dressed",
  15528. image: {
  15529. source: "./media/characters/vivian-bijoux/dressed.svg",
  15530. extra: 1217/1209,
  15531. bottom: 76/1293
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Normal",
  15538. height: math.unit(5 + 6 / 12, "feet"),
  15539. default: true
  15540. },
  15541. {
  15542. name: "Bad Dream",
  15543. height: math.unit(500, "feet")
  15544. },
  15545. {
  15546. name: "Nightmare",
  15547. height: math.unit(500, "miles")
  15548. },
  15549. ]
  15550. ))
  15551. characterMakers.push(() => makeCharacter(
  15552. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15553. {
  15554. front: {
  15555. height: math.unit(6 + 1 / 12, "feet"),
  15556. weight: math.unit(260, "lb"),
  15557. name: "Front",
  15558. image: {
  15559. source: "./media/characters/zeta/front.svg",
  15560. extra: 1968 / 1889,
  15561. bottom: 0.06
  15562. }
  15563. },
  15564. back: {
  15565. height: math.unit(6 + 1 / 12, "feet"),
  15566. weight: math.unit(260, "lb"),
  15567. name: "Back",
  15568. image: {
  15569. source: "./media/characters/zeta/back.svg",
  15570. extra: 1944 / 1858,
  15571. bottom: 0.03
  15572. }
  15573. },
  15574. hand: {
  15575. height: math.unit(1.112, "feet"),
  15576. name: "Hand",
  15577. image: {
  15578. source: "./media/characters/zeta/hand.svg"
  15579. }
  15580. },
  15581. foot: {
  15582. height: math.unit(1.48, "feet"),
  15583. name: "Foot",
  15584. image: {
  15585. source: "./media/characters/zeta/foot.svg"
  15586. }
  15587. },
  15588. },
  15589. [
  15590. {
  15591. name: "Micro",
  15592. height: math.unit(6, "inches")
  15593. },
  15594. {
  15595. name: "Normal",
  15596. height: math.unit(6 + 1 / 12, "feet"),
  15597. default: true
  15598. },
  15599. {
  15600. name: "Macro",
  15601. height: math.unit(20, "feet")
  15602. },
  15603. ]
  15604. ))
  15605. characterMakers.push(() => makeCharacter(
  15606. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15607. {
  15608. front: {
  15609. height: math.unit(6, "feet"),
  15610. weight: math.unit(150, "lb"),
  15611. name: "Front",
  15612. image: {
  15613. source: "./media/characters/jamie-larsen/front.svg",
  15614. extra: 962 / 933,
  15615. bottom: 0.02
  15616. }
  15617. },
  15618. back: {
  15619. height: math.unit(6, "feet"),
  15620. weight: math.unit(150, "lb"),
  15621. name: "Back",
  15622. image: {
  15623. source: "./media/characters/jamie-larsen/back.svg",
  15624. extra: 997 / 946
  15625. }
  15626. },
  15627. },
  15628. [
  15629. {
  15630. name: "Macro",
  15631. height: math.unit(28 + 7 / 12, "feet"),
  15632. default: true
  15633. },
  15634. {
  15635. name: "Macro+",
  15636. height: math.unit(180, "feet")
  15637. },
  15638. {
  15639. name: "Megamacro",
  15640. height: math.unit(10, "miles")
  15641. },
  15642. {
  15643. name: "Gigamacro",
  15644. height: math.unit(200000, "miles")
  15645. },
  15646. ]
  15647. ))
  15648. characterMakers.push(() => makeCharacter(
  15649. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15650. {
  15651. front: {
  15652. height: math.unit(6, "feet"),
  15653. weight: math.unit(120, "lb"),
  15654. name: "Front",
  15655. image: {
  15656. source: "./media/characters/vance/front.svg",
  15657. extra: 1980 / 1890,
  15658. bottom: 0.09
  15659. }
  15660. },
  15661. back: {
  15662. height: math.unit(6, "feet"),
  15663. weight: math.unit(120, "lb"),
  15664. name: "Back",
  15665. image: {
  15666. source: "./media/characters/vance/back.svg",
  15667. extra: 2081 / 1994,
  15668. bottom: 0.014
  15669. }
  15670. },
  15671. hand: {
  15672. height: math.unit(0.88, "feet"),
  15673. name: "Hand",
  15674. image: {
  15675. source: "./media/characters/vance/hand.svg"
  15676. }
  15677. },
  15678. foot: {
  15679. height: math.unit(0.64, "feet"),
  15680. name: "Foot",
  15681. image: {
  15682. source: "./media/characters/vance/foot.svg"
  15683. }
  15684. },
  15685. },
  15686. [
  15687. {
  15688. name: "Small",
  15689. height: math.unit(90, "feet"),
  15690. default: true
  15691. },
  15692. {
  15693. name: "Macro",
  15694. height: math.unit(100, "meters")
  15695. },
  15696. {
  15697. name: "Megamacro",
  15698. height: math.unit(15, "miles")
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15704. {
  15705. front: {
  15706. height: math.unit(6, "feet"),
  15707. weight: math.unit(180, "lb"),
  15708. name: "Front",
  15709. image: {
  15710. source: "./media/characters/xochitl/front.svg",
  15711. extra: 2297 / 2261,
  15712. bottom: 0.065
  15713. }
  15714. },
  15715. back: {
  15716. height: math.unit(6, "feet"),
  15717. weight: math.unit(180, "lb"),
  15718. name: "Back",
  15719. image: {
  15720. source: "./media/characters/xochitl/back.svg",
  15721. extra: 2386 / 2354,
  15722. bottom: 0.01
  15723. }
  15724. },
  15725. foot: {
  15726. height: math.unit(6 / 5 * 1.15, "feet"),
  15727. weight: math.unit(150, "lb"),
  15728. name: "Foot",
  15729. image: {
  15730. source: "./media/characters/xochitl/foot.svg"
  15731. }
  15732. },
  15733. },
  15734. [
  15735. {
  15736. name: "Macro",
  15737. height: math.unit(80, "feet")
  15738. },
  15739. {
  15740. name: "Macro+",
  15741. height: math.unit(400, "feet"),
  15742. default: true
  15743. },
  15744. {
  15745. name: "Gigamacro",
  15746. height: math.unit(80000, "miles")
  15747. },
  15748. {
  15749. name: "Gigamacro+",
  15750. height: math.unit(400000, "miles")
  15751. },
  15752. {
  15753. name: "Teramacro",
  15754. height: math.unit(300, "AU")
  15755. },
  15756. ]
  15757. ))
  15758. characterMakers.push(() => makeCharacter(
  15759. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15760. {
  15761. front: {
  15762. height: math.unit(6, "feet"),
  15763. weight: math.unit(150, "lb"),
  15764. name: "Front",
  15765. image: {
  15766. source: "./media/characters/vincent/front.svg",
  15767. extra: 1130 / 1080,
  15768. bottom: 0.055
  15769. }
  15770. },
  15771. beak: {
  15772. height: math.unit(6 * 0.1, "feet"),
  15773. name: "Beak",
  15774. image: {
  15775. source: "./media/characters/vincent/beak.svg"
  15776. }
  15777. },
  15778. hand: {
  15779. height: math.unit(6 * 0.85, "feet"),
  15780. weight: math.unit(150, "lb"),
  15781. name: "Hand",
  15782. image: {
  15783. source: "./media/characters/vincent/hand.svg"
  15784. }
  15785. },
  15786. foot: {
  15787. height: math.unit(6 * 0.19, "feet"),
  15788. weight: math.unit(150, "lb"),
  15789. name: "Foot",
  15790. image: {
  15791. source: "./media/characters/vincent/foot.svg"
  15792. }
  15793. },
  15794. },
  15795. [
  15796. {
  15797. name: "Base",
  15798. height: math.unit(6 + 5 / 12, "feet"),
  15799. default: true
  15800. },
  15801. {
  15802. name: "Macro",
  15803. height: math.unit(300, "feet")
  15804. },
  15805. {
  15806. name: "Megamacro",
  15807. height: math.unit(2, "miles")
  15808. },
  15809. {
  15810. name: "Gigamacro",
  15811. height: math.unit(1000, "miles")
  15812. },
  15813. ]
  15814. ))
  15815. characterMakers.push(() => makeCharacter(
  15816. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15817. {
  15818. front: {
  15819. height: math.unit(2, "meters"),
  15820. weight: math.unit(500, "kg"),
  15821. name: "Front",
  15822. image: {
  15823. source: "./media/characters/coatl/front.svg",
  15824. extra: 3948 / 3500,
  15825. bottom: 0.082
  15826. }
  15827. },
  15828. },
  15829. [
  15830. {
  15831. name: "Normal",
  15832. height: math.unit(4, "meters")
  15833. },
  15834. {
  15835. name: "Macro",
  15836. height: math.unit(100, "meters"),
  15837. default: true
  15838. },
  15839. {
  15840. name: "Macro+",
  15841. height: math.unit(300, "meters")
  15842. },
  15843. {
  15844. name: "Megamacro",
  15845. height: math.unit(3, "gigameters")
  15846. },
  15847. {
  15848. name: "Megamacro+",
  15849. height: math.unit(300, "terameters")
  15850. },
  15851. {
  15852. name: "Megamacro++",
  15853. height: math.unit(3, "lightyears")
  15854. },
  15855. ]
  15856. ))
  15857. characterMakers.push(() => makeCharacter(
  15858. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15859. {
  15860. front: {
  15861. height: math.unit(6, "feet"),
  15862. weight: math.unit(50, "kg"),
  15863. name: "front",
  15864. image: {
  15865. source: "./media/characters/shiroryu/front.svg",
  15866. extra: 1990 / 1935
  15867. }
  15868. },
  15869. },
  15870. [
  15871. {
  15872. name: "Mortal Mingling",
  15873. height: math.unit(3, "meters")
  15874. },
  15875. {
  15876. name: "Kaiju-ish",
  15877. height: math.unit(250, "meters")
  15878. },
  15879. {
  15880. name: "Somewhat Godly",
  15881. height: math.unit(400, "km"),
  15882. default: true
  15883. },
  15884. {
  15885. name: "Planetary",
  15886. height: math.unit(300, "megameters")
  15887. },
  15888. {
  15889. name: "Galaxy-dwarfing",
  15890. height: math.unit(450, "kiloparsecs")
  15891. },
  15892. {
  15893. name: "Universe Eater",
  15894. height: math.unit(150, "gigaparsecs")
  15895. },
  15896. {
  15897. name: "Almost Immeasurable",
  15898. height: math.unit(1.3e266, "yottaparsecs")
  15899. },
  15900. ]
  15901. ))
  15902. characterMakers.push(() => makeCharacter(
  15903. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15904. {
  15905. front: {
  15906. height: math.unit(6, "feet"),
  15907. weight: math.unit(150, "lb"),
  15908. name: "Front",
  15909. image: {
  15910. source: "./media/characters/umeko/front.svg",
  15911. extra: 1,
  15912. bottom: 0.019
  15913. }
  15914. },
  15915. frontArmored: {
  15916. height: math.unit(6, "feet"),
  15917. weight: math.unit(150, "lb"),
  15918. name: "Front (Armored)",
  15919. image: {
  15920. source: "./media/characters/umeko/front-armored.svg",
  15921. extra: 1,
  15922. bottom: 0.021
  15923. }
  15924. },
  15925. },
  15926. [
  15927. {
  15928. name: "Macro",
  15929. height: math.unit(220, "feet"),
  15930. default: true
  15931. },
  15932. {
  15933. name: "Guardian Dragon",
  15934. height: math.unit(50, "miles")
  15935. },
  15936. {
  15937. name: "Cosmic",
  15938. height: math.unit(800000, "miles")
  15939. },
  15940. ]
  15941. ))
  15942. characterMakers.push(() => makeCharacter(
  15943. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15944. {
  15945. front: {
  15946. height: math.unit(6, "feet"),
  15947. weight: math.unit(150, "lb"),
  15948. name: "Front",
  15949. image: {
  15950. source: "./media/characters/cassidy/front.svg",
  15951. extra: 810/808,
  15952. bottom: 41/851
  15953. }
  15954. },
  15955. },
  15956. [
  15957. {
  15958. name: "Canon Height",
  15959. height: math.unit(120, "feet"),
  15960. default: true
  15961. },
  15962. {
  15963. name: "Macro+",
  15964. height: math.unit(400, "feet")
  15965. },
  15966. {
  15967. name: "Macro++",
  15968. height: math.unit(4000, "feet")
  15969. },
  15970. {
  15971. name: "Megamacro",
  15972. height: math.unit(3, "miles")
  15973. },
  15974. ]
  15975. ))
  15976. characterMakers.push(() => makeCharacter(
  15977. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15978. {
  15979. front: {
  15980. height: math.unit(6, "feet"),
  15981. weight: math.unit(150, "lb"),
  15982. name: "Front",
  15983. image: {
  15984. source: "./media/characters/isaac/front.svg",
  15985. extra: 896 / 815,
  15986. bottom: 0.11
  15987. }
  15988. },
  15989. },
  15990. [
  15991. {
  15992. name: "Human Size",
  15993. height: math.unit(8, "feet"),
  15994. default: true
  15995. },
  15996. {
  15997. name: "Macro",
  15998. height: math.unit(400, "feet")
  15999. },
  16000. {
  16001. name: "Megamacro",
  16002. height: math.unit(50, "miles")
  16003. },
  16004. {
  16005. name: "Canon Height",
  16006. height: math.unit(200, "AU")
  16007. },
  16008. ]
  16009. ))
  16010. characterMakers.push(() => makeCharacter(
  16011. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16012. {
  16013. front: {
  16014. height: math.unit(6, "feet"),
  16015. weight: math.unit(72, "kg"),
  16016. name: "Front",
  16017. image: {
  16018. source: "./media/characters/sleekit/front.svg",
  16019. extra: 4693 / 4487,
  16020. bottom: 0.012
  16021. }
  16022. },
  16023. },
  16024. [
  16025. {
  16026. name: "Minimum Height",
  16027. height: math.unit(10, "meters")
  16028. },
  16029. {
  16030. name: "Smaller",
  16031. height: math.unit(25, "meters")
  16032. },
  16033. {
  16034. name: "Larger",
  16035. height: math.unit(38, "meters"),
  16036. default: true
  16037. },
  16038. {
  16039. name: "Maximum height",
  16040. height: math.unit(100, "meters")
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16046. {
  16047. front: {
  16048. height: math.unit(6, "feet"),
  16049. weight: math.unit(150, "lb"),
  16050. name: "Front",
  16051. image: {
  16052. source: "./media/characters/nillia/front.svg",
  16053. extra: 719/665,
  16054. bottom: 6/725
  16055. }
  16056. },
  16057. back: {
  16058. height: math.unit(6, "feet"),
  16059. weight: math.unit(150, "lb"),
  16060. name: "Back",
  16061. image: {
  16062. source: "./media/characters/nillia/back.svg",
  16063. extra: 705/651,
  16064. bottom: 5/710
  16065. }
  16066. },
  16067. },
  16068. [
  16069. {
  16070. name: "Canon Height",
  16071. height: math.unit(489, "feet"),
  16072. default: true
  16073. }
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16078. {
  16079. front: {
  16080. height: math.unit(6, "feet"),
  16081. weight: math.unit(150, "lb"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/mesmyriza/front.svg",
  16085. extra: 1541/1291,
  16086. bottom: 87/1628
  16087. }
  16088. },
  16089. foot: {
  16090. height: math.unit(6 / (250 / 35), "feet"),
  16091. name: "Foot",
  16092. image: {
  16093. source: "./media/characters/mesmyriza/foot.svg"
  16094. }
  16095. },
  16096. },
  16097. [
  16098. {
  16099. name: "Macro",
  16100. height: math.unit(457, "meters"),
  16101. default: true
  16102. },
  16103. {
  16104. name: "Megamacro",
  16105. height: math.unit(8, "megameters")
  16106. },
  16107. ]
  16108. ))
  16109. characterMakers.push(() => makeCharacter(
  16110. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16111. {
  16112. front: {
  16113. height: math.unit(6, "feet"),
  16114. weight: math.unit(250, "lb"),
  16115. name: "Front",
  16116. image: {
  16117. source: "./media/characters/saudade/front.svg",
  16118. extra: 1172 / 1139,
  16119. bottom: 0.035
  16120. }
  16121. },
  16122. },
  16123. [
  16124. {
  16125. name: "Micro",
  16126. height: math.unit(3, "inches")
  16127. },
  16128. {
  16129. name: "Normal",
  16130. height: math.unit(6, "feet"),
  16131. default: true
  16132. },
  16133. {
  16134. name: "Macro",
  16135. height: math.unit(50, "feet")
  16136. },
  16137. {
  16138. name: "Megamacro",
  16139. height: math.unit(2800, "feet")
  16140. },
  16141. ]
  16142. ))
  16143. characterMakers.push(() => makeCharacter(
  16144. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16145. {
  16146. front: {
  16147. height: math.unit(5 + 4 / 12, "feet"),
  16148. weight: math.unit(100, "lb"),
  16149. name: "Front",
  16150. image: {
  16151. source: "./media/characters/keireer/front.svg",
  16152. extra: 716 / 666,
  16153. bottom: 0.05
  16154. }
  16155. },
  16156. },
  16157. [
  16158. {
  16159. name: "Normal",
  16160. height: math.unit(5 + 4 / 12, "feet"),
  16161. default: true
  16162. },
  16163. ]
  16164. ))
  16165. characterMakers.push(() => makeCharacter(
  16166. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16167. {
  16168. front: {
  16169. height: math.unit(5.5, "feet"),
  16170. weight: math.unit(90, "kg"),
  16171. name: "Front",
  16172. image: {
  16173. source: "./media/characters/mirja/front.svg",
  16174. extra: 1452/1262,
  16175. bottom: 67/1519
  16176. }
  16177. },
  16178. frontDressed: {
  16179. height: math.unit(5.5, "feet"),
  16180. weight: math.unit(90, "lb"),
  16181. name: "Front (Dressed)",
  16182. image: {
  16183. source: "./media/characters/mirja/dressed.svg",
  16184. extra: 1452/1262,
  16185. bottom: 67/1519
  16186. }
  16187. },
  16188. back: {
  16189. height: math.unit(6, "feet"),
  16190. weight: math.unit(90, "lb"),
  16191. name: "Back",
  16192. image: {
  16193. source: "./media/characters/mirja/back.svg",
  16194. extra: 1892/1795,
  16195. bottom: 48/1940
  16196. }
  16197. },
  16198. maw: {
  16199. height: math.unit(1.312, "feet"),
  16200. name: "Maw",
  16201. image: {
  16202. source: "./media/characters/mirja/maw.svg"
  16203. }
  16204. },
  16205. paw: {
  16206. height: math.unit(1.15, "feet"),
  16207. name: "Paw",
  16208. image: {
  16209. source: "./media/characters/mirja/paw.svg"
  16210. }
  16211. },
  16212. },
  16213. [
  16214. {
  16215. name: "\"Incognito\"",
  16216. height: math.unit(3, "meters")
  16217. },
  16218. {
  16219. name: "Strolling Size",
  16220. height: math.unit(15, "km")
  16221. },
  16222. {
  16223. name: "Larger Strolling Size",
  16224. height: math.unit(400, "km")
  16225. },
  16226. {
  16227. name: "Preferred Size",
  16228. height: math.unit(5000, "km"),
  16229. default: true
  16230. },
  16231. {
  16232. name: "True Size",
  16233. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16234. },
  16235. ]
  16236. ))
  16237. characterMakers.push(() => makeCharacter(
  16238. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16239. {
  16240. front: {
  16241. height: math.unit(15, "feet"),
  16242. weight: math.unit(880, "kg"),
  16243. name: "Front",
  16244. image: {
  16245. source: "./media/characters/nightraver/front.svg",
  16246. extra: 2444 / 2160,
  16247. bottom: 0.027
  16248. }
  16249. },
  16250. back: {
  16251. height: math.unit(15, "feet"),
  16252. weight: math.unit(880, "kg"),
  16253. name: "Back",
  16254. image: {
  16255. source: "./media/characters/nightraver/back.svg",
  16256. extra: 2309 / 2180,
  16257. bottom: 0.005
  16258. }
  16259. },
  16260. sole: {
  16261. height: math.unit(2.878, "feet"),
  16262. name: "Sole",
  16263. image: {
  16264. source: "./media/characters/nightraver/sole.svg"
  16265. }
  16266. },
  16267. foot: {
  16268. height: math.unit(2.285, "feet"),
  16269. name: "Foot",
  16270. image: {
  16271. source: "./media/characters/nightraver/foot.svg"
  16272. }
  16273. },
  16274. maw: {
  16275. height: math.unit(2.67, "feet"),
  16276. name: "Maw",
  16277. image: {
  16278. source: "./media/characters/nightraver/maw.svg"
  16279. }
  16280. },
  16281. },
  16282. [
  16283. {
  16284. name: "Micro",
  16285. height: math.unit(1, "cm")
  16286. },
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(15, "feet"),
  16290. default: true
  16291. },
  16292. {
  16293. name: "Macro",
  16294. height: math.unit(300, "feet")
  16295. },
  16296. {
  16297. name: "Megamacro",
  16298. height: math.unit(300, "miles")
  16299. },
  16300. {
  16301. name: "Gigamacro",
  16302. height: math.unit(10000, "miles")
  16303. },
  16304. ]
  16305. ))
  16306. characterMakers.push(() => makeCharacter(
  16307. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16308. {
  16309. side: {
  16310. height: math.unit(2, "inches"),
  16311. weight: math.unit(5, "grams"),
  16312. name: "Side",
  16313. image: {
  16314. source: "./media/characters/arc/side.svg"
  16315. }
  16316. },
  16317. },
  16318. [
  16319. {
  16320. name: "Micro",
  16321. height: math.unit(2, "inches"),
  16322. default: true
  16323. },
  16324. ]
  16325. ))
  16326. characterMakers.push(() => makeCharacter(
  16327. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16328. {
  16329. front: {
  16330. height: math.unit(1.1938, "meters"),
  16331. weight: math.unit(54, "kg"),
  16332. name: "Front",
  16333. image: {
  16334. source: "./media/characters/nebula-shahar/front.svg",
  16335. extra: 1642 / 1436,
  16336. bottom: 0.06
  16337. }
  16338. },
  16339. },
  16340. [
  16341. {
  16342. name: "Megamicro",
  16343. height: math.unit(0.3, "mm")
  16344. },
  16345. {
  16346. name: "Micro",
  16347. height: math.unit(3, "cm")
  16348. },
  16349. {
  16350. name: "Normal",
  16351. height: math.unit(138, "cm"),
  16352. default: true
  16353. },
  16354. {
  16355. name: "Macro",
  16356. height: math.unit(30, "m")
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16362. {
  16363. front: {
  16364. height: math.unit(5.24, "feet"),
  16365. weight: math.unit(150, "lb"),
  16366. name: "Front",
  16367. image: {
  16368. source: "./media/characters/shayla/front.svg",
  16369. extra: 1512 / 1414,
  16370. bottom: 0.01
  16371. }
  16372. },
  16373. back: {
  16374. height: math.unit(5.24, "feet"),
  16375. weight: math.unit(150, "lb"),
  16376. name: "Back",
  16377. image: {
  16378. source: "./media/characters/shayla/back.svg",
  16379. extra: 1512 / 1414
  16380. }
  16381. },
  16382. hand: {
  16383. height: math.unit(0.7781496062992126, "feet"),
  16384. name: "Hand",
  16385. image: {
  16386. source: "./media/characters/shayla/hand.svg"
  16387. }
  16388. },
  16389. foot: {
  16390. height: math.unit(1.4206036745406823, "feet"),
  16391. name: "Foot",
  16392. image: {
  16393. source: "./media/characters/shayla/foot.svg"
  16394. }
  16395. },
  16396. },
  16397. [
  16398. {
  16399. name: "Micro",
  16400. height: math.unit(0.32, "feet")
  16401. },
  16402. {
  16403. name: "Normal",
  16404. height: math.unit(5.24, "feet"),
  16405. default: true
  16406. },
  16407. {
  16408. name: "Macro",
  16409. height: math.unit(492.12, "feet")
  16410. },
  16411. {
  16412. name: "Megamacro",
  16413. height: math.unit(186.41, "miles")
  16414. },
  16415. ]
  16416. ))
  16417. characterMakers.push(() => makeCharacter(
  16418. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16419. {
  16420. front: {
  16421. height: math.unit(2.2, "m"),
  16422. weight: math.unit(120, "kg"),
  16423. name: "Front",
  16424. image: {
  16425. source: "./media/characters/pia-jr/front.svg",
  16426. extra: 1000 / 970,
  16427. bottom: 0.035
  16428. }
  16429. },
  16430. hand: {
  16431. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16432. name: "Hand",
  16433. image: {
  16434. source: "./media/characters/pia-jr/hand.svg"
  16435. }
  16436. },
  16437. paw: {
  16438. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16439. name: "Paw",
  16440. image: {
  16441. source: "./media/characters/pia-jr/paw.svg"
  16442. }
  16443. },
  16444. },
  16445. [
  16446. {
  16447. name: "Micro",
  16448. height: math.unit(1.2, "cm")
  16449. },
  16450. {
  16451. name: "Normal",
  16452. height: math.unit(2.2, "m"),
  16453. default: true
  16454. },
  16455. {
  16456. name: "Macro",
  16457. height: math.unit(180, "m")
  16458. },
  16459. {
  16460. name: "Megamacro",
  16461. height: math.unit(420, "km")
  16462. },
  16463. ]
  16464. ))
  16465. characterMakers.push(() => makeCharacter(
  16466. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16467. {
  16468. front: {
  16469. height: math.unit(2, "m"),
  16470. weight: math.unit(115, "kg"),
  16471. name: "Front",
  16472. image: {
  16473. source: "./media/characters/pia-sr/front.svg",
  16474. extra: 760 / 730,
  16475. bottom: 0.015
  16476. }
  16477. },
  16478. back: {
  16479. height: math.unit(2, "m"),
  16480. weight: math.unit(115, "kg"),
  16481. name: "Back",
  16482. image: {
  16483. source: "./media/characters/pia-sr/back.svg",
  16484. extra: 760 / 730,
  16485. bottom: 0.01
  16486. }
  16487. },
  16488. hand: {
  16489. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16490. name: "Hand",
  16491. image: {
  16492. source: "./media/characters/pia-sr/hand.svg"
  16493. }
  16494. },
  16495. foot: {
  16496. height: math.unit(1.83, "feet"),
  16497. name: "Foot",
  16498. image: {
  16499. source: "./media/characters/pia-sr/foot.svg"
  16500. }
  16501. },
  16502. },
  16503. [
  16504. {
  16505. name: "Micro",
  16506. height: math.unit(88, "mm")
  16507. },
  16508. {
  16509. name: "Normal",
  16510. height: math.unit(2, "m"),
  16511. default: true
  16512. },
  16513. {
  16514. name: "Macro",
  16515. height: math.unit(200, "m")
  16516. },
  16517. {
  16518. name: "Megamacro",
  16519. height: math.unit(420, "km")
  16520. },
  16521. ]
  16522. ))
  16523. characterMakers.push(() => makeCharacter(
  16524. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16525. {
  16526. front: {
  16527. height: math.unit(8 + 2 / 12, "feet"),
  16528. weight: math.unit(300, "lb"),
  16529. name: "Front",
  16530. image: {
  16531. source: "./media/characters/kibibyte/front.svg",
  16532. extra: 2221 / 2098,
  16533. bottom: 0.04
  16534. }
  16535. },
  16536. },
  16537. [
  16538. {
  16539. name: "Normal",
  16540. height: math.unit(8 + 2 / 12, "feet"),
  16541. default: true
  16542. },
  16543. {
  16544. name: "Socialable Macro",
  16545. height: math.unit(50, "feet")
  16546. },
  16547. {
  16548. name: "Macro",
  16549. height: math.unit(300, "feet")
  16550. },
  16551. {
  16552. name: "Megamacro",
  16553. height: math.unit(500, "miles")
  16554. },
  16555. ]
  16556. ))
  16557. characterMakers.push(() => makeCharacter(
  16558. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16559. {
  16560. front: {
  16561. height: math.unit(6, "feet"),
  16562. weight: math.unit(150, "lb"),
  16563. name: "Front",
  16564. image: {
  16565. source: "./media/characters/felix/front.svg",
  16566. extra: 762 / 722,
  16567. bottom: 0.02
  16568. }
  16569. },
  16570. frontClothed: {
  16571. height: math.unit(6, "feet"),
  16572. weight: math.unit(150, "lb"),
  16573. name: "Front (Clothed)",
  16574. image: {
  16575. source: "./media/characters/felix/front-clothed.svg",
  16576. extra: 762 / 722,
  16577. bottom: 0.02
  16578. }
  16579. },
  16580. },
  16581. [
  16582. {
  16583. name: "Normal",
  16584. height: math.unit(6 + 8 / 12, "feet"),
  16585. default: true
  16586. },
  16587. {
  16588. name: "Macro",
  16589. height: math.unit(2600, "feet")
  16590. },
  16591. {
  16592. name: "Megamacro",
  16593. height: math.unit(450, "miles")
  16594. },
  16595. ]
  16596. ))
  16597. characterMakers.push(() => makeCharacter(
  16598. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16599. {
  16600. front: {
  16601. height: math.unit(6 + 1 / 12, "feet"),
  16602. weight: math.unit(250, "lb"),
  16603. name: "Front",
  16604. image: {
  16605. source: "./media/characters/tobo/front.svg",
  16606. extra: 608 / 586,
  16607. bottom: 0.023
  16608. }
  16609. },
  16610. back: {
  16611. height: math.unit(6 + 1 / 12, "feet"),
  16612. weight: math.unit(250, "lb"),
  16613. name: "Back",
  16614. image: {
  16615. source: "./media/characters/tobo/back.svg",
  16616. extra: 608 / 586
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Nano",
  16623. height: math.unit(2, "nm")
  16624. },
  16625. {
  16626. name: "Megamicro",
  16627. height: math.unit(0.1, "mm")
  16628. },
  16629. {
  16630. name: "Micro",
  16631. height: math.unit(1, "inch"),
  16632. default: true
  16633. },
  16634. {
  16635. name: "Human-sized",
  16636. height: math.unit(6 + 1 / 12, "feet")
  16637. },
  16638. {
  16639. name: "Macro",
  16640. height: math.unit(250, "feet")
  16641. },
  16642. {
  16643. name: "Megamacro",
  16644. height: math.unit(75, "miles")
  16645. },
  16646. {
  16647. name: "Texas-sized",
  16648. height: math.unit(750, "miles")
  16649. },
  16650. {
  16651. name: "Teramacro",
  16652. height: math.unit(50000, "miles")
  16653. },
  16654. ]
  16655. ))
  16656. characterMakers.push(() => makeCharacter(
  16657. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16658. {
  16659. front: {
  16660. height: math.unit(6, "feet"),
  16661. weight: math.unit(269, "lb"),
  16662. name: "Front",
  16663. image: {
  16664. source: "./media/characters/danny-kapowsky/front.svg",
  16665. extra: 766 / 736,
  16666. bottom: 0.044
  16667. }
  16668. },
  16669. back: {
  16670. height: math.unit(6, "feet"),
  16671. weight: math.unit(269, "lb"),
  16672. name: "Back",
  16673. image: {
  16674. source: "./media/characters/danny-kapowsky/back.svg",
  16675. extra: 797 / 760,
  16676. bottom: 0.025
  16677. }
  16678. },
  16679. },
  16680. [
  16681. {
  16682. name: "Macro",
  16683. height: math.unit(150, "feet"),
  16684. default: true
  16685. },
  16686. {
  16687. name: "Macro+",
  16688. height: math.unit(200, "feet")
  16689. },
  16690. {
  16691. name: "Macro++",
  16692. height: math.unit(300, "feet")
  16693. },
  16694. {
  16695. name: "Macro+++",
  16696. height: math.unit(400, "feet")
  16697. },
  16698. ]
  16699. ))
  16700. characterMakers.push(() => makeCharacter(
  16701. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16702. {
  16703. side: {
  16704. height: math.unit(6, "feet"),
  16705. weight: math.unit(170, "lb"),
  16706. name: "Side",
  16707. image: {
  16708. source: "./media/characters/finn/side.svg",
  16709. extra: 1953 / 1807,
  16710. bottom: 0.057
  16711. }
  16712. },
  16713. },
  16714. [
  16715. {
  16716. name: "Megamacro",
  16717. height: math.unit(14445, "feet"),
  16718. default: true
  16719. },
  16720. ]
  16721. ))
  16722. characterMakers.push(() => makeCharacter(
  16723. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16724. {
  16725. front: {
  16726. height: math.unit(5 + 6 / 12, "feet"),
  16727. weight: math.unit(125, "lb"),
  16728. name: "Front",
  16729. image: {
  16730. source: "./media/characters/roy/front.svg",
  16731. extra: 1,
  16732. bottom: 0.11
  16733. }
  16734. },
  16735. },
  16736. [
  16737. {
  16738. name: "Micro",
  16739. height: math.unit(3, "inches"),
  16740. default: true
  16741. },
  16742. {
  16743. name: "Normal",
  16744. height: math.unit(5 + 6 / 12, "feet")
  16745. },
  16746. {
  16747. name: "Lesser Macro",
  16748. height: math.unit(60, "feet")
  16749. },
  16750. {
  16751. name: "Greater Macro",
  16752. height: math.unit(120, "feet")
  16753. },
  16754. ]
  16755. ))
  16756. characterMakers.push(() => makeCharacter(
  16757. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16758. {
  16759. front: {
  16760. height: math.unit(6, "feet"),
  16761. weight: math.unit(100, "lb"),
  16762. name: "Front",
  16763. image: {
  16764. source: "./media/characters/aevsivs/front.svg",
  16765. extra: 1,
  16766. bottom: 0.03
  16767. }
  16768. },
  16769. back: {
  16770. height: math.unit(6, "feet"),
  16771. weight: math.unit(100, "lb"),
  16772. name: "Back",
  16773. image: {
  16774. source: "./media/characters/aevsivs/back.svg"
  16775. }
  16776. },
  16777. },
  16778. [
  16779. {
  16780. name: "Micro",
  16781. height: math.unit(2, "inches"),
  16782. default: true
  16783. },
  16784. {
  16785. name: "Normal",
  16786. height: math.unit(5, "feet")
  16787. },
  16788. ]
  16789. ))
  16790. characterMakers.push(() => makeCharacter(
  16791. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16792. {
  16793. front: {
  16794. height: math.unit(5 + 7 / 12, "feet"),
  16795. weight: math.unit(159, "lb"),
  16796. name: "Front",
  16797. image: {
  16798. source: "./media/characters/hildegard/front.svg",
  16799. extra: 289 / 269,
  16800. bottom: 7.63 / 297.8
  16801. }
  16802. },
  16803. back: {
  16804. height: math.unit(5 + 7 / 12, "feet"),
  16805. weight: math.unit(159, "lb"),
  16806. name: "Back",
  16807. image: {
  16808. source: "./media/characters/hildegard/back.svg",
  16809. extra: 280 / 260,
  16810. bottom: 2.3 / 282
  16811. }
  16812. },
  16813. },
  16814. [
  16815. {
  16816. name: "Normal",
  16817. height: math.unit(5 + 7 / 12, "feet"),
  16818. default: true
  16819. },
  16820. ]
  16821. ))
  16822. characterMakers.push(() => makeCharacter(
  16823. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16824. {
  16825. bernard: {
  16826. height: math.unit(2 + 7 / 12, "feet"),
  16827. weight: math.unit(66, "lb"),
  16828. name: "Bernard",
  16829. rename: true,
  16830. image: {
  16831. source: "./media/characters/bernard-wilder/bernard.svg",
  16832. extra: 192 / 128,
  16833. bottom: 0.05
  16834. }
  16835. },
  16836. wilder: {
  16837. height: math.unit(5 + 8 / 12, "feet"),
  16838. weight: math.unit(143, "lb"),
  16839. name: "Wilder",
  16840. rename: true,
  16841. image: {
  16842. source: "./media/characters/bernard-wilder/wilder.svg",
  16843. extra: 361 / 312,
  16844. bottom: 0.02
  16845. }
  16846. },
  16847. },
  16848. [
  16849. {
  16850. name: "Normal",
  16851. height: math.unit(2 + 7 / 12, "feet"),
  16852. default: true
  16853. },
  16854. ]
  16855. ))
  16856. characterMakers.push(() => makeCharacter(
  16857. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16858. {
  16859. anthro: {
  16860. height: math.unit(6 + 1 / 12, "feet"),
  16861. weight: math.unit(155, "lb"),
  16862. name: "Anthro",
  16863. image: {
  16864. source: "./media/characters/hearth/anthro.svg",
  16865. extra: 1178/1136,
  16866. bottom: 28/1206
  16867. }
  16868. },
  16869. feral: {
  16870. height: math.unit(3.78, "feet"),
  16871. weight: math.unit(35, "kg"),
  16872. name: "Feral",
  16873. image: {
  16874. source: "./media/characters/hearth/feral.svg",
  16875. extra: 153 / 135,
  16876. bottom: 0.03
  16877. }
  16878. },
  16879. },
  16880. [
  16881. {
  16882. name: "Normal",
  16883. height: math.unit(6 + 1 / 12, "feet"),
  16884. default: true
  16885. },
  16886. ]
  16887. ))
  16888. characterMakers.push(() => makeCharacter(
  16889. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16890. {
  16891. front: {
  16892. height: math.unit(6, "feet"),
  16893. weight: math.unit(182, "lb"),
  16894. name: "Front",
  16895. image: {
  16896. source: "./media/characters/ingrid/front.svg",
  16897. extra: 294 / 268,
  16898. bottom: 0.027
  16899. }
  16900. },
  16901. },
  16902. [
  16903. {
  16904. name: "Normal",
  16905. height: math.unit(6, "feet"),
  16906. default: true
  16907. },
  16908. ]
  16909. ))
  16910. characterMakers.push(() => makeCharacter(
  16911. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16912. {
  16913. eevee: {
  16914. height: math.unit(2 + 10 / 12, "feet"),
  16915. weight: math.unit(86, "lb"),
  16916. name: "Malgam",
  16917. image: {
  16918. source: "./media/characters/malgam/eevee.svg",
  16919. extra: 952/784,
  16920. bottom: 38/990
  16921. }
  16922. },
  16923. sylveon: {
  16924. height: math.unit(4, "feet"),
  16925. weight: math.unit(101, "lb"),
  16926. name: "Future Malgam",
  16927. rename: true,
  16928. image: {
  16929. source: "./media/characters/malgam/sylveon.svg",
  16930. extra: 371 / 325,
  16931. bottom: 0.015
  16932. }
  16933. },
  16934. gigantamax: {
  16935. height: math.unit(50, "feet"),
  16936. name: "Gigantamax Malgam",
  16937. rename: true,
  16938. image: {
  16939. source: "./media/characters/malgam/gigantamax.svg"
  16940. }
  16941. },
  16942. },
  16943. [
  16944. {
  16945. name: "Normal",
  16946. height: math.unit(2 + 10 / 12, "feet"),
  16947. default: true
  16948. },
  16949. ]
  16950. ))
  16951. characterMakers.push(() => makeCharacter(
  16952. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16953. {
  16954. front: {
  16955. height: math.unit(5 + 11 / 12, "feet"),
  16956. weight: math.unit(188, "lb"),
  16957. name: "Front",
  16958. image: {
  16959. source: "./media/characters/fleur/front.svg",
  16960. extra: 309 / 283,
  16961. bottom: 0.007
  16962. }
  16963. },
  16964. },
  16965. [
  16966. {
  16967. name: "Normal",
  16968. height: math.unit(5 + 11 / 12, "feet"),
  16969. default: true
  16970. },
  16971. ]
  16972. ))
  16973. characterMakers.push(() => makeCharacter(
  16974. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16975. {
  16976. front: {
  16977. height: math.unit(5 + 4 / 12, "feet"),
  16978. weight: math.unit(122, "lb"),
  16979. name: "Front",
  16980. image: {
  16981. source: "./media/characters/jude/front.svg",
  16982. extra: 288 / 273,
  16983. bottom: 0.03
  16984. }
  16985. },
  16986. },
  16987. [
  16988. {
  16989. name: "Normal",
  16990. height: math.unit(5 + 4 / 12, "feet"),
  16991. default: true
  16992. },
  16993. ]
  16994. ))
  16995. characterMakers.push(() => makeCharacter(
  16996. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16997. {
  16998. front: {
  16999. height: math.unit(5 + 11 / 12, "feet"),
  17000. weight: math.unit(190, "lb"),
  17001. name: "Front",
  17002. image: {
  17003. source: "./media/characters/seara/front.svg",
  17004. extra: 1,
  17005. bottom: 0.05
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Normal",
  17012. height: math.unit(5 + 11 / 12, "feet"),
  17013. default: true
  17014. },
  17015. ]
  17016. ))
  17017. characterMakers.push(() => makeCharacter(
  17018. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17019. {
  17020. front: {
  17021. height: math.unit(16 + 5 / 12, "feet"),
  17022. weight: math.unit(524, "lb"),
  17023. name: "Front",
  17024. image: {
  17025. source: "./media/characters/caspian-lugia/front.svg",
  17026. extra: 1,
  17027. bottom: 0.04
  17028. }
  17029. },
  17030. },
  17031. [
  17032. {
  17033. name: "Normal",
  17034. height: math.unit(16 + 5 / 12, "feet"),
  17035. default: true
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17041. {
  17042. front: {
  17043. height: math.unit(5 + 7 / 12, "feet"),
  17044. weight: math.unit(170, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/mika/front.svg",
  17048. extra: 1,
  17049. bottom: 0.016
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Normal",
  17056. height: math.unit(5 + 7 / 12, "feet"),
  17057. default: true
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17063. {
  17064. front: {
  17065. height: math.unit(6 + 2 / 12, "feet"),
  17066. weight: math.unit(268, "lb"),
  17067. name: "Front",
  17068. image: {
  17069. source: "./media/characters/sol/front.svg",
  17070. extra: 247 / 231,
  17071. bottom: 0.05
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Normal",
  17078. height: math.unit(6 + 2 / 12, "feet"),
  17079. default: true
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17085. {
  17086. buizel: {
  17087. height: math.unit(2 + 5 / 12, "feet"),
  17088. weight: math.unit(87, "lb"),
  17089. name: "Front",
  17090. image: {
  17091. source: "./media/characters/umiko/buizel.svg",
  17092. extra: 172 / 157,
  17093. bottom: 0.01
  17094. },
  17095. form: "buizel",
  17096. default: true
  17097. },
  17098. floatzel: {
  17099. height: math.unit(5 + 9 / 12, "feet"),
  17100. weight: math.unit(250, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/umiko/floatzel.svg",
  17104. extra: 1076/1006,
  17105. bottom: 15/1091
  17106. },
  17107. form: "floatzel",
  17108. default: true
  17109. },
  17110. },
  17111. [
  17112. {
  17113. name: "Normal",
  17114. height: math.unit(2 + 5 / 12, "feet"),
  17115. form: "buizel",
  17116. default: true
  17117. },
  17118. {
  17119. name: "Normal",
  17120. height: math.unit(5 + 9 / 12, "feet"),
  17121. form: "floatzel",
  17122. default: true
  17123. },
  17124. ],
  17125. {
  17126. "buizel": {
  17127. name: "Buizel"
  17128. },
  17129. "floatzel": {
  17130. name: "Floatzel",
  17131. default: true
  17132. }
  17133. }
  17134. ))
  17135. characterMakers.push(() => makeCharacter(
  17136. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17137. {
  17138. front: {
  17139. height: math.unit(6 + 2 / 12, "feet"),
  17140. weight: math.unit(146, "lb"),
  17141. name: "Front",
  17142. image: {
  17143. source: "./media/characters/iliac/front.svg",
  17144. extra: 389 / 365,
  17145. bottom: 0.035
  17146. }
  17147. },
  17148. },
  17149. [
  17150. {
  17151. name: "Normal",
  17152. height: math.unit(6 + 2 / 12, "feet"),
  17153. default: true
  17154. },
  17155. ]
  17156. ))
  17157. characterMakers.push(() => makeCharacter(
  17158. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17159. {
  17160. front: {
  17161. height: math.unit(6, "feet"),
  17162. weight: math.unit(170, "lb"),
  17163. name: "Front",
  17164. image: {
  17165. source: "./media/characters/topaz/front.svg",
  17166. extra: 317 / 303,
  17167. bottom: 0.055
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(6, "feet"),
  17175. default: true
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17181. {
  17182. front: {
  17183. height: math.unit(5 + 11 / 12, "feet"),
  17184. weight: math.unit(144, "lb"),
  17185. name: "Front",
  17186. image: {
  17187. source: "./media/characters/gabriel/front.svg",
  17188. extra: 285 / 262,
  17189. bottom: 0.004
  17190. }
  17191. },
  17192. },
  17193. [
  17194. {
  17195. name: "Normal",
  17196. height: math.unit(5 + 11 / 12, "feet"),
  17197. default: true
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17203. {
  17204. side: {
  17205. height: math.unit(6 + 5 / 12, "feet"),
  17206. weight: math.unit(300, "lb"),
  17207. name: "Side",
  17208. image: {
  17209. source: "./media/characters/tempest-suicune/side.svg",
  17210. extra: 195 / 154,
  17211. bottom: 0.04
  17212. }
  17213. },
  17214. },
  17215. [
  17216. {
  17217. name: "Normal",
  17218. height: math.unit(6 + 5 / 12, "feet"),
  17219. default: true
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17225. {
  17226. front: {
  17227. height: math.unit(7 + 2 / 12, "feet"),
  17228. weight: math.unit(322, "lb"),
  17229. name: "Front",
  17230. image: {
  17231. source: "./media/characters/vulcan/front.svg",
  17232. extra: 154 / 147,
  17233. bottom: 0.04
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Normal",
  17240. height: math.unit(7 + 2 / 12, "feet"),
  17241. default: true
  17242. },
  17243. ]
  17244. ))
  17245. characterMakers.push(() => makeCharacter(
  17246. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17247. {
  17248. front: {
  17249. height: math.unit(5 + 10 / 12, "feet"),
  17250. weight: math.unit(264, "lb"),
  17251. name: "Front",
  17252. image: {
  17253. source: "./media/characters/gault/front.svg",
  17254. extra: 161 / 140,
  17255. bottom: 0.028
  17256. }
  17257. },
  17258. },
  17259. [
  17260. {
  17261. name: "Normal",
  17262. height: math.unit(5 + 10 / 12, "feet"),
  17263. default: true
  17264. },
  17265. ]
  17266. ))
  17267. characterMakers.push(() => makeCharacter(
  17268. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17269. {
  17270. front: {
  17271. height: math.unit(6, "feet"),
  17272. weight: math.unit(150, "lb"),
  17273. name: "Front",
  17274. image: {
  17275. source: "./media/characters/shard/front.svg",
  17276. extra: 273 / 238,
  17277. bottom: 0.02
  17278. }
  17279. },
  17280. },
  17281. [
  17282. {
  17283. name: "Normal",
  17284. height: math.unit(3 + 6 / 12, "feet"),
  17285. default: true
  17286. },
  17287. ]
  17288. ))
  17289. characterMakers.push(() => makeCharacter(
  17290. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17291. {
  17292. front: {
  17293. height: math.unit(5 + 11 / 12, "feet"),
  17294. weight: math.unit(146, "lb"),
  17295. name: "Front",
  17296. image: {
  17297. source: "./media/characters/ashe/front.svg",
  17298. extra: 400 / 373,
  17299. bottom: 0.01
  17300. }
  17301. },
  17302. },
  17303. [
  17304. {
  17305. name: "Normal",
  17306. height: math.unit(5 + 11 / 12, "feet"),
  17307. default: true
  17308. },
  17309. ]
  17310. ))
  17311. characterMakers.push(() => makeCharacter(
  17312. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17313. {
  17314. front: {
  17315. height: math.unit(5 + 5 / 12, "feet"),
  17316. weight: math.unit(135, "lb"),
  17317. name: "Front",
  17318. image: {
  17319. source: "./media/characters/beatrix/front.svg",
  17320. extra: 392 / 379,
  17321. bottom: 0.01
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Normal",
  17328. height: math.unit(6, "feet"),
  17329. default: true
  17330. },
  17331. ]
  17332. ))
  17333. characterMakers.push(() => makeCharacter(
  17334. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17335. {
  17336. front: {
  17337. height: math.unit(6 + 2/12, "feet"),
  17338. weight: math.unit(135, "lb"),
  17339. name: "Front",
  17340. image: {
  17341. source: "./media/characters/ignatius/front.svg",
  17342. extra: 1380/1259,
  17343. bottom: 27/1407
  17344. }
  17345. },
  17346. },
  17347. [
  17348. {
  17349. name: "Normal",
  17350. height: math.unit(6 + 2/12, "feet"),
  17351. default: true
  17352. },
  17353. ]
  17354. ))
  17355. characterMakers.push(() => makeCharacter(
  17356. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17357. {
  17358. front: {
  17359. height: math.unit(6 + 2 / 12, "feet"),
  17360. weight: math.unit(138, "lb"),
  17361. name: "Front",
  17362. image: {
  17363. source: "./media/characters/mei-li/front.svg",
  17364. extra: 237 / 229,
  17365. bottom: 0.03
  17366. }
  17367. },
  17368. },
  17369. [
  17370. {
  17371. name: "Normal",
  17372. height: math.unit(6 + 2 / 12, "feet"),
  17373. default: true
  17374. },
  17375. ]
  17376. ))
  17377. characterMakers.push(() => makeCharacter(
  17378. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17379. {
  17380. front: {
  17381. height: math.unit(2 + 4 / 12, "feet"),
  17382. weight: math.unit(62, "lb"),
  17383. name: "Front",
  17384. image: {
  17385. source: "./media/characters/puru/front.svg",
  17386. extra: 206 / 149,
  17387. bottom: 0.06
  17388. }
  17389. },
  17390. },
  17391. [
  17392. {
  17393. name: "Normal",
  17394. height: math.unit(2 + 4 / 12, "feet"),
  17395. default: true
  17396. },
  17397. ]
  17398. ))
  17399. characterMakers.push(() => makeCharacter(
  17400. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17401. {
  17402. anthro: {
  17403. height: math.unit(5 + 8/12, "feet"),
  17404. weight: math.unit(200, "lb"),
  17405. energyNeed: math.unit(2000, "kcal"),
  17406. name: "Anthro",
  17407. image: {
  17408. source: "./media/characters/kee/anthro.svg",
  17409. extra: 3251/3184,
  17410. bottom: 250/3501
  17411. }
  17412. },
  17413. taur: {
  17414. height: math.unit(11, "feet"),
  17415. weight: math.unit(500, "lb"),
  17416. energyNeed: math.unit(5000, "kcal"),
  17417. name: "Taur",
  17418. image: {
  17419. source: "./media/characters/kee/taur.svg",
  17420. extra: 1362/1320,
  17421. bottom: 83/1445
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(5 + 8/12, "feet"),
  17429. default: true
  17430. },
  17431. {
  17432. name: "Macro",
  17433. height: math.unit(35, "feet")
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17439. {
  17440. anthro: {
  17441. height: math.unit(7, "feet"),
  17442. weight: math.unit(190, "lb"),
  17443. name: "Anthro",
  17444. image: {
  17445. source: "./media/characters/cobalt-dracha/anthro.svg",
  17446. extra: 231 / 225,
  17447. bottom: 0.04
  17448. }
  17449. },
  17450. feral: {
  17451. height: math.unit(9 + 7 / 12, "feet"),
  17452. weight: math.unit(294, "lb"),
  17453. name: "Feral",
  17454. image: {
  17455. source: "./media/characters/cobalt-dracha/feral.svg",
  17456. extra: 692 / 633,
  17457. bottom: 0.05
  17458. }
  17459. },
  17460. },
  17461. [
  17462. {
  17463. name: "Normal",
  17464. height: math.unit(7, "feet"),
  17465. default: true
  17466. },
  17467. ]
  17468. ))
  17469. characterMakers.push(() => makeCharacter(
  17470. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17471. {
  17472. fallen: {
  17473. height: math.unit(11 + 8 / 12, "feet"),
  17474. weight: math.unit(485, "lb"),
  17475. name: "Java (Fallen)",
  17476. rename: true,
  17477. image: {
  17478. source: "./media/characters/java/fallen.svg",
  17479. extra: 226 / 208,
  17480. bottom: 0.005
  17481. }
  17482. },
  17483. godkin: {
  17484. height: math.unit(10 + 6 / 12, "feet"),
  17485. weight: math.unit(328, "lb"),
  17486. name: "Java (Godkin)",
  17487. rename: true,
  17488. image: {
  17489. source: "./media/characters/java/godkin.svg",
  17490. extra: 1104/1068,
  17491. bottom: 36/1140
  17492. }
  17493. },
  17494. },
  17495. [
  17496. {
  17497. name: "Normal",
  17498. height: math.unit(11 + 8 / 12, "feet"),
  17499. default: true
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17505. {
  17506. front: {
  17507. height: math.unit(5 + 9 / 12, "feet"),
  17508. weight: math.unit(170, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/purna/front.svg",
  17512. extra: 239 / 229,
  17513. bottom: 0.01
  17514. }
  17515. },
  17516. },
  17517. [
  17518. {
  17519. name: "Normal",
  17520. height: math.unit(5 + 9 / 12, "feet"),
  17521. default: true
  17522. },
  17523. ]
  17524. ))
  17525. characterMakers.push(() => makeCharacter(
  17526. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17527. {
  17528. front: {
  17529. height: math.unit(5 + 9 / 12, "feet"),
  17530. weight: math.unit(142, "lb"),
  17531. name: "Front",
  17532. image: {
  17533. source: "./media/characters/kuva/front.svg",
  17534. extra: 281 / 271,
  17535. bottom: 0.006
  17536. }
  17537. },
  17538. },
  17539. [
  17540. {
  17541. name: "Normal",
  17542. height: math.unit(5 + 9 / 12, "feet"),
  17543. default: true
  17544. },
  17545. ]
  17546. ))
  17547. characterMakers.push(() => makeCharacter(
  17548. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17549. {
  17550. anthro: {
  17551. height: math.unit(9 + 2 / 12, "feet"),
  17552. weight: math.unit(270, "lb"),
  17553. name: "Anthro",
  17554. image: {
  17555. source: "./media/characters/embra/anthro.svg",
  17556. extra: 200 / 187,
  17557. bottom: 0.02
  17558. }
  17559. },
  17560. feral: {
  17561. height: math.unit(18 + 8 / 12, "feet"),
  17562. weight: math.unit(576, "lb"),
  17563. name: "Feral",
  17564. image: {
  17565. source: "./media/characters/embra/feral.svg",
  17566. extra: 152 / 137,
  17567. bottom: 0.037
  17568. }
  17569. },
  17570. },
  17571. [
  17572. {
  17573. name: "Normal",
  17574. height: math.unit(9 + 2 / 12, "feet"),
  17575. default: true
  17576. },
  17577. ]
  17578. ))
  17579. characterMakers.push(() => makeCharacter(
  17580. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17581. {
  17582. anthro: {
  17583. height: math.unit(10 + 9 / 12, "feet"),
  17584. weight: math.unit(224, "lb"),
  17585. name: "Anthro",
  17586. image: {
  17587. source: "./media/characters/grottos/anthro.svg",
  17588. extra: 350 / 332,
  17589. bottom: 0.045
  17590. }
  17591. },
  17592. feral: {
  17593. height: math.unit(20 + 7 / 12, "feet"),
  17594. weight: math.unit(629, "lb"),
  17595. name: "Feral",
  17596. image: {
  17597. source: "./media/characters/grottos/feral.svg",
  17598. extra: 207 / 190,
  17599. bottom: 0.05
  17600. }
  17601. },
  17602. },
  17603. [
  17604. {
  17605. name: "Normal",
  17606. height: math.unit(10 + 9 / 12, "feet"),
  17607. default: true
  17608. },
  17609. ]
  17610. ))
  17611. characterMakers.push(() => makeCharacter(
  17612. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17613. {
  17614. anthro: {
  17615. height: math.unit(9 + 6 / 12, "feet"),
  17616. weight: math.unit(298, "lb"),
  17617. name: "Anthro",
  17618. image: {
  17619. source: "./media/characters/frifna/anthro.svg",
  17620. extra: 282 / 269,
  17621. bottom: 0.015
  17622. }
  17623. },
  17624. feral: {
  17625. height: math.unit(16 + 2 / 12, "feet"),
  17626. weight: math.unit(624, "lb"),
  17627. name: "Feral",
  17628. image: {
  17629. source: "./media/characters/frifna/feral.svg"
  17630. }
  17631. },
  17632. },
  17633. [
  17634. {
  17635. name: "Normal",
  17636. height: math.unit(9 + 6 / 12, "feet"),
  17637. default: true
  17638. },
  17639. ]
  17640. ))
  17641. characterMakers.push(() => makeCharacter(
  17642. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17643. {
  17644. front: {
  17645. height: math.unit(6 + 2 / 12, "feet"),
  17646. weight: math.unit(168, "lb"),
  17647. name: "Front",
  17648. image: {
  17649. source: "./media/characters/elise/front.svg",
  17650. extra: 276 / 271
  17651. }
  17652. },
  17653. },
  17654. [
  17655. {
  17656. name: "Normal",
  17657. height: math.unit(6 + 2 / 12, "feet"),
  17658. default: true
  17659. },
  17660. ]
  17661. ))
  17662. characterMakers.push(() => makeCharacter(
  17663. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17664. {
  17665. front: {
  17666. height: math.unit(5 + 10 / 12, "feet"),
  17667. weight: math.unit(210, "lb"),
  17668. name: "Front",
  17669. image: {
  17670. source: "./media/characters/glade/front.svg",
  17671. extra: 258 / 247,
  17672. bottom: 0.008
  17673. }
  17674. },
  17675. },
  17676. [
  17677. {
  17678. name: "Normal",
  17679. height: math.unit(5 + 10 / 12, "feet"),
  17680. default: true
  17681. },
  17682. ]
  17683. ))
  17684. characterMakers.push(() => makeCharacter(
  17685. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17686. {
  17687. front: {
  17688. height: math.unit(5 + 10 / 12, "feet"),
  17689. weight: math.unit(129, "lb"),
  17690. name: "Front",
  17691. image: {
  17692. source: "./media/characters/rina/front.svg",
  17693. extra: 266 / 255,
  17694. bottom: 0.005
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Normal",
  17701. height: math.unit(5 + 10 / 12, "feet"),
  17702. default: true
  17703. },
  17704. ]
  17705. ))
  17706. characterMakers.push(() => makeCharacter(
  17707. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17708. {
  17709. front: {
  17710. height: math.unit(6 + 1 / 12, "feet"),
  17711. weight: math.unit(192, "lb"),
  17712. name: "Front",
  17713. image: {
  17714. source: "./media/characters/veronica/front.svg",
  17715. extra: 319 / 309,
  17716. bottom: 0.005
  17717. }
  17718. },
  17719. },
  17720. [
  17721. {
  17722. name: "Normal",
  17723. height: math.unit(6 + 1 / 12, "feet"),
  17724. default: true
  17725. },
  17726. ]
  17727. ))
  17728. characterMakers.push(() => makeCharacter(
  17729. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17730. {
  17731. front: {
  17732. height: math.unit(9 + 3 / 12, "feet"),
  17733. weight: math.unit(1100, "lb"),
  17734. name: "Front",
  17735. image: {
  17736. source: "./media/characters/braxton/front.svg",
  17737. extra: 1057 / 984,
  17738. bottom: 0.05
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Normal",
  17745. height: math.unit(9 + 3 / 12, "feet")
  17746. },
  17747. {
  17748. name: "Giant",
  17749. height: math.unit(300, "feet"),
  17750. default: true
  17751. },
  17752. {
  17753. name: "Macro",
  17754. height: math.unit(700, "feet")
  17755. },
  17756. {
  17757. name: "Megamacro",
  17758. height: math.unit(6000, "feet")
  17759. },
  17760. ]
  17761. ))
  17762. characterMakers.push(() => makeCharacter(
  17763. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17764. {
  17765. front: {
  17766. height: math.unit(6 + 7 / 12, "feet"),
  17767. weight: math.unit(150, "lb"),
  17768. name: "Front",
  17769. image: {
  17770. source: "./media/characters/blue-feyonics/front.svg",
  17771. extra: 1403 / 1306,
  17772. bottom: 0.047
  17773. }
  17774. },
  17775. },
  17776. [
  17777. {
  17778. name: "Normal",
  17779. height: math.unit(6 + 7 / 12, "feet"),
  17780. default: true
  17781. },
  17782. ]
  17783. ))
  17784. characterMakers.push(() => makeCharacter(
  17785. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17786. {
  17787. front: {
  17788. height: math.unit(1.8, "meters"),
  17789. weight: math.unit(60, "kg"),
  17790. name: "Front",
  17791. image: {
  17792. source: "./media/characters/maxwell/front.svg",
  17793. extra: 2060 / 1873
  17794. }
  17795. },
  17796. },
  17797. [
  17798. {
  17799. name: "Micro",
  17800. height: math.unit(1, "mm")
  17801. },
  17802. {
  17803. name: "Normal",
  17804. height: math.unit(1.8, "meter"),
  17805. default: true
  17806. },
  17807. {
  17808. name: "Macro",
  17809. height: math.unit(30, "meters")
  17810. },
  17811. {
  17812. name: "Megamacro",
  17813. height: math.unit(10, "km")
  17814. },
  17815. ]
  17816. ))
  17817. characterMakers.push(() => makeCharacter(
  17818. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17819. {
  17820. front: {
  17821. height: math.unit(6, "feet"),
  17822. weight: math.unit(150, "lb"),
  17823. name: "Front",
  17824. image: {
  17825. source: "./media/characters/jack/front.svg",
  17826. extra: 1754 / 1640,
  17827. bottom: 0.01
  17828. }
  17829. },
  17830. },
  17831. [
  17832. {
  17833. name: "Normal",
  17834. height: math.unit(80000, "feet"),
  17835. default: true
  17836. },
  17837. {
  17838. name: "Max size",
  17839. height: math.unit(10, "lightyears")
  17840. },
  17841. ]
  17842. ))
  17843. characterMakers.push(() => makeCharacter(
  17844. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17845. {
  17846. urban: {
  17847. height: math.unit(5, "feet"),
  17848. weight: math.unit(240, "lb"),
  17849. name: "Urban",
  17850. image: {
  17851. source: "./media/characters/cafat/urban.svg",
  17852. extra: 1223/1126,
  17853. bottom: 205/1428
  17854. }
  17855. },
  17856. summer: {
  17857. height: math.unit(5, "feet"),
  17858. weight: math.unit(240, "lb"),
  17859. name: "Summer",
  17860. image: {
  17861. source: "./media/characters/cafat/summer.svg",
  17862. extra: 1223/1126,
  17863. bottom: 205/1428
  17864. }
  17865. },
  17866. winter: {
  17867. height: math.unit(5, "feet"),
  17868. weight: math.unit(240, "lb"),
  17869. name: "Winter",
  17870. image: {
  17871. source: "./media/characters/cafat/winter.svg",
  17872. extra: 1223/1126,
  17873. bottom: 205/1428
  17874. }
  17875. },
  17876. lingerie: {
  17877. height: math.unit(5, "feet"),
  17878. weight: math.unit(240, "lb"),
  17879. name: "Lingerie",
  17880. image: {
  17881. source: "./media/characters/cafat/lingerie.svg",
  17882. extra: 1223/1126,
  17883. bottom: 205/1428
  17884. }
  17885. },
  17886. upright: {
  17887. height: math.unit(6.3, "feet"),
  17888. weight: math.unit(240, "lb"),
  17889. name: "Upright",
  17890. image: {
  17891. source: "./media/characters/cafat/upright.svg",
  17892. bottom: 0.01
  17893. }
  17894. },
  17895. uprightFull: {
  17896. height: math.unit(6.3, "feet"),
  17897. weight: math.unit(240, "lb"),
  17898. name: "Upright (Full)",
  17899. image: {
  17900. source: "./media/characters/cafat/upright-full.svg",
  17901. bottom: 0.01
  17902. }
  17903. },
  17904. },
  17905. [
  17906. {
  17907. name: "Small",
  17908. height: math.unit(5, "feet"),
  17909. default: true
  17910. },
  17911. {
  17912. name: "Large",
  17913. height: math.unit(13, "feet")
  17914. },
  17915. ]
  17916. ))
  17917. characterMakers.push(() => makeCharacter(
  17918. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17919. {
  17920. front: {
  17921. height: math.unit(6, "feet"),
  17922. weight: math.unit(150, "lb"),
  17923. name: "Front",
  17924. image: {
  17925. source: "./media/characters/verin-raharra/front.svg",
  17926. extra: 5019 / 4835,
  17927. bottom: 0.023
  17928. }
  17929. },
  17930. },
  17931. [
  17932. {
  17933. name: "Normal",
  17934. height: math.unit(7 + 5 / 12, "feet"),
  17935. default: true
  17936. },
  17937. {
  17938. name: "Upsized",
  17939. height: math.unit(20, "feet")
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17945. {
  17946. front: {
  17947. height: math.unit(7, "feet"),
  17948. weight: math.unit(230, "lb"),
  17949. name: "Front",
  17950. image: {
  17951. source: "./media/characters/nakata/front.svg",
  17952. extra: 1.005,
  17953. bottom: 0.01
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(7, "feet"),
  17961. default: true
  17962. },
  17963. {
  17964. name: "Big",
  17965. height: math.unit(14, "feet")
  17966. },
  17967. {
  17968. name: "Macro",
  17969. height: math.unit(400, "feet")
  17970. },
  17971. ]
  17972. ))
  17973. characterMakers.push(() => makeCharacter(
  17974. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17975. {
  17976. front: {
  17977. height: math.unit(4.91, "feet"),
  17978. weight: math.unit(100, "lb"),
  17979. name: "Front",
  17980. image: {
  17981. source: "./media/characters/lily/front.svg",
  17982. extra: 1585 / 1415,
  17983. bottom: 0.02
  17984. }
  17985. },
  17986. },
  17987. [
  17988. {
  17989. name: "Normal",
  17990. height: math.unit(4.91, "feet"),
  17991. default: true
  17992. },
  17993. ]
  17994. ))
  17995. characterMakers.push(() => makeCharacter(
  17996. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17997. {
  17998. laying: {
  17999. height: math.unit(4 + 4 / 12, "feet"),
  18000. weight: math.unit(600, "lb"),
  18001. name: "Laying",
  18002. image: {
  18003. source: "./media/characters/sheila/laying.svg",
  18004. extra: 1333 / 1265,
  18005. bottom: 0.16
  18006. }
  18007. },
  18008. },
  18009. [
  18010. {
  18011. name: "Normal",
  18012. height: math.unit(4 + 4 / 12, "feet"),
  18013. default: true
  18014. },
  18015. ]
  18016. ))
  18017. characterMakers.push(() => makeCharacter(
  18018. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18019. {
  18020. front: {
  18021. height: math.unit(6, "feet"),
  18022. weight: math.unit(190, "lb"),
  18023. name: "Front",
  18024. image: {
  18025. source: "./media/characters/sax/front.svg",
  18026. extra: 1187 / 973,
  18027. bottom: 0.042
  18028. }
  18029. },
  18030. },
  18031. [
  18032. {
  18033. name: "Micro",
  18034. height: math.unit(4, "inches"),
  18035. default: true
  18036. },
  18037. ]
  18038. ))
  18039. characterMakers.push(() => makeCharacter(
  18040. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18041. {
  18042. front: {
  18043. height: math.unit(6, "feet"),
  18044. weight: math.unit(150, "lb"),
  18045. name: "Front",
  18046. image: {
  18047. source: "./media/characters/pandora/front.svg",
  18048. extra: 2720 / 2556,
  18049. bottom: 0.015
  18050. }
  18051. },
  18052. back: {
  18053. height: math.unit(6, "feet"),
  18054. weight: math.unit(150, "lb"),
  18055. name: "Back",
  18056. image: {
  18057. source: "./media/characters/pandora/back.svg",
  18058. extra: 2720 / 2556,
  18059. bottom: 0.01
  18060. }
  18061. },
  18062. beans: {
  18063. height: math.unit(6 / 8, "feet"),
  18064. name: "Beans",
  18065. image: {
  18066. source: "./media/characters/pandora/beans.svg"
  18067. }
  18068. },
  18069. collar: {
  18070. height: math.unit(0.31, "feet"),
  18071. name: "Collar",
  18072. image: {
  18073. source: "./media/characters/pandora/collar.svg"
  18074. }
  18075. },
  18076. skirt: {
  18077. height: math.unit(6, "feet"),
  18078. weight: math.unit(150, "lb"),
  18079. name: "Skirt",
  18080. image: {
  18081. source: "./media/characters/pandora/skirt.svg",
  18082. extra: 1622 / 1525,
  18083. bottom: 0.015
  18084. }
  18085. },
  18086. hoodie: {
  18087. height: math.unit(6, "feet"),
  18088. weight: math.unit(150, "lb"),
  18089. name: "Hoodie",
  18090. image: {
  18091. source: "./media/characters/pandora/hoodie.svg",
  18092. extra: 1622 / 1525,
  18093. bottom: 0.015
  18094. }
  18095. },
  18096. casual: {
  18097. height: math.unit(6, "feet"),
  18098. weight: math.unit(150, "lb"),
  18099. name: "Casual",
  18100. image: {
  18101. source: "./media/characters/pandora/casual.svg",
  18102. extra: 1622 / 1525,
  18103. bottom: 0.015
  18104. }
  18105. },
  18106. },
  18107. [
  18108. {
  18109. name: "Normal",
  18110. height: math.unit(6, "feet")
  18111. },
  18112. {
  18113. name: "Big Steppy",
  18114. height: math.unit(1, "km"),
  18115. default: true
  18116. },
  18117. {
  18118. name: "Galactic Steppy",
  18119. height: math.unit(2, "gigameters")
  18120. },
  18121. ]
  18122. ))
  18123. characterMakers.push(() => makeCharacter(
  18124. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18125. {
  18126. side: {
  18127. height: math.unit(10, "feet"),
  18128. weight: math.unit(800, "kg"),
  18129. name: "Side",
  18130. image: {
  18131. source: "./media/characters/venio-darcony/side.svg",
  18132. extra: 1373 / 1003,
  18133. bottom: 0.037
  18134. }
  18135. },
  18136. front: {
  18137. height: math.unit(19, "feet"),
  18138. weight: math.unit(800, "kg"),
  18139. name: "Front",
  18140. image: {
  18141. source: "./media/characters/venio-darcony/front.svg"
  18142. }
  18143. },
  18144. back: {
  18145. height: math.unit(19, "feet"),
  18146. weight: math.unit(800, "kg"),
  18147. name: "Back",
  18148. image: {
  18149. source: "./media/characters/venio-darcony/back.svg"
  18150. }
  18151. },
  18152. sideNsfw: {
  18153. height: math.unit(10, "feet"),
  18154. weight: math.unit(800, "kg"),
  18155. name: "Side (NSFW)",
  18156. image: {
  18157. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18158. extra: 1373 / 1003,
  18159. bottom: 0.037
  18160. }
  18161. },
  18162. frontNsfw: {
  18163. height: math.unit(19, "feet"),
  18164. weight: math.unit(800, "kg"),
  18165. name: "Front (NSFW)",
  18166. image: {
  18167. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18168. }
  18169. },
  18170. backNsfw: {
  18171. height: math.unit(19, "feet"),
  18172. weight: math.unit(800, "kg"),
  18173. name: "Back (NSFW)",
  18174. image: {
  18175. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18176. }
  18177. },
  18178. sideArmored: {
  18179. height: math.unit(10, "feet"),
  18180. weight: math.unit(800, "kg"),
  18181. name: "Side (Armored)",
  18182. image: {
  18183. source: "./media/characters/venio-darcony/side-armored.svg",
  18184. extra: 1373 / 1003,
  18185. bottom: 0.037
  18186. }
  18187. },
  18188. frontArmored: {
  18189. height: math.unit(19, "feet"),
  18190. weight: math.unit(900, "kg"),
  18191. name: "Front (Armored)",
  18192. image: {
  18193. source: "./media/characters/venio-darcony/front-armored.svg"
  18194. }
  18195. },
  18196. backArmored: {
  18197. height: math.unit(19, "feet"),
  18198. weight: math.unit(900, "kg"),
  18199. name: "Back (Armored)",
  18200. image: {
  18201. source: "./media/characters/venio-darcony/back-armored.svg"
  18202. }
  18203. },
  18204. sword: {
  18205. height: math.unit(10, "feet"),
  18206. weight: math.unit(50, "lb"),
  18207. name: "Sword",
  18208. image: {
  18209. source: "./media/characters/venio-darcony/sword.svg"
  18210. }
  18211. },
  18212. },
  18213. [
  18214. {
  18215. name: "Normal",
  18216. height: math.unit(10, "feet")
  18217. },
  18218. {
  18219. name: "Macro",
  18220. height: math.unit(130, "feet"),
  18221. default: true
  18222. },
  18223. {
  18224. name: "Macro+",
  18225. height: math.unit(240, "feet")
  18226. },
  18227. ]
  18228. ))
  18229. characterMakers.push(() => makeCharacter(
  18230. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18231. {
  18232. front: {
  18233. height: math.unit(6, "feet"),
  18234. weight: math.unit(150, "lb"),
  18235. name: "Front",
  18236. image: {
  18237. source: "./media/characters/veski/front.svg",
  18238. extra: 1299 / 1225,
  18239. bottom: 0.04
  18240. }
  18241. },
  18242. back: {
  18243. height: math.unit(6, "feet"),
  18244. weight: math.unit(150, "lb"),
  18245. name: "Back",
  18246. image: {
  18247. source: "./media/characters/veski/back.svg",
  18248. extra: 1299 / 1225,
  18249. bottom: 0.008
  18250. }
  18251. },
  18252. maw: {
  18253. height: math.unit(1.5 * 1.21, "feet"),
  18254. name: "Maw",
  18255. image: {
  18256. source: "./media/characters/veski/maw.svg"
  18257. }
  18258. },
  18259. },
  18260. [
  18261. {
  18262. name: "Macro",
  18263. height: math.unit(2, "km"),
  18264. default: true
  18265. },
  18266. ]
  18267. ))
  18268. characterMakers.push(() => makeCharacter(
  18269. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18270. {
  18271. front: {
  18272. height: math.unit(5 + 7 / 12, "feet"),
  18273. name: "Front",
  18274. image: {
  18275. source: "./media/characters/isabelle/front.svg",
  18276. extra: 2130 / 1976,
  18277. bottom: 0.05
  18278. }
  18279. },
  18280. },
  18281. [
  18282. {
  18283. name: "Supermicro",
  18284. height: math.unit(10, "micrometers")
  18285. },
  18286. {
  18287. name: "Micro",
  18288. height: math.unit(1, "inch")
  18289. },
  18290. {
  18291. name: "Tiny",
  18292. height: math.unit(5, "inches")
  18293. },
  18294. {
  18295. name: "Standard",
  18296. height: math.unit(5 + 7 / 12, "inches")
  18297. },
  18298. {
  18299. name: "Macro",
  18300. height: math.unit(80, "meters"),
  18301. default: true
  18302. },
  18303. {
  18304. name: "Megamacro",
  18305. height: math.unit(250, "meters")
  18306. },
  18307. {
  18308. name: "Gigamacro",
  18309. height: math.unit(5, "km")
  18310. },
  18311. {
  18312. name: "Cosmic",
  18313. height: math.unit(2.5e6, "miles")
  18314. },
  18315. ]
  18316. ))
  18317. characterMakers.push(() => makeCharacter(
  18318. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18319. {
  18320. front: {
  18321. height: math.unit(6, "feet"),
  18322. weight: math.unit(150, "lb"),
  18323. name: "Front",
  18324. image: {
  18325. source: "./media/characters/hanzo/front.svg",
  18326. extra: 374 / 344,
  18327. bottom: 0.02
  18328. }
  18329. },
  18330. },
  18331. [
  18332. {
  18333. name: "Normal",
  18334. height: math.unit(8, "feet"),
  18335. default: true
  18336. },
  18337. ]
  18338. ))
  18339. characterMakers.push(() => makeCharacter(
  18340. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18341. {
  18342. front: {
  18343. height: math.unit(7, "feet"),
  18344. weight: math.unit(130, "lb"),
  18345. name: "Front",
  18346. image: {
  18347. source: "./media/characters/anna/front.svg",
  18348. extra: 169 / 145,
  18349. bottom: 0.06
  18350. }
  18351. },
  18352. full: {
  18353. height: math.unit(4.96, "feet"),
  18354. weight: math.unit(220, "lb"),
  18355. name: "Full",
  18356. image: {
  18357. source: "./media/characters/anna/full.svg",
  18358. extra: 138 / 114,
  18359. bottom: 0.15
  18360. }
  18361. },
  18362. tongue: {
  18363. height: math.unit(2.53, "feet"),
  18364. name: "Tongue",
  18365. image: {
  18366. source: "./media/characters/anna/tongue.svg"
  18367. }
  18368. },
  18369. },
  18370. [
  18371. {
  18372. name: "Normal",
  18373. height: math.unit(7, "feet"),
  18374. default: true
  18375. },
  18376. ]
  18377. ))
  18378. characterMakers.push(() => makeCharacter(
  18379. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18380. {
  18381. front: {
  18382. height: math.unit(7, "feet"),
  18383. weight: math.unit(150, "lb"),
  18384. name: "Front",
  18385. image: {
  18386. source: "./media/characters/ian-corvid/front.svg",
  18387. extra: 150 / 142,
  18388. bottom: 0.02
  18389. }
  18390. },
  18391. back: {
  18392. height: math.unit(7, "feet"),
  18393. weight: math.unit(150, "lb"),
  18394. name: "Back",
  18395. image: {
  18396. source: "./media/characters/ian-corvid/back.svg",
  18397. extra: 150 / 143,
  18398. bottom: 0.01
  18399. }
  18400. },
  18401. stomping: {
  18402. height: math.unit(7, "feet"),
  18403. weight: math.unit(150, "lb"),
  18404. name: "Stomping",
  18405. image: {
  18406. source: "./media/characters/ian-corvid/stomping.svg",
  18407. extra: 76 / 72
  18408. }
  18409. },
  18410. sitting: {
  18411. height: math.unit(7 / 1.8, "feet"),
  18412. weight: math.unit(150, "lb"),
  18413. name: "Sitting",
  18414. image: {
  18415. source: "./media/characters/ian-corvid/sitting.svg",
  18416. extra: 1400 / 1269,
  18417. bottom: 0.15
  18418. }
  18419. },
  18420. },
  18421. [
  18422. {
  18423. name: "Tiny Microw",
  18424. height: math.unit(1, "inch")
  18425. },
  18426. {
  18427. name: "Microw",
  18428. height: math.unit(6, "inches")
  18429. },
  18430. {
  18431. name: "Crow",
  18432. height: math.unit(7 + 1 / 12, "feet"),
  18433. default: true
  18434. },
  18435. {
  18436. name: "Macrow",
  18437. height: math.unit(176, "feet")
  18438. },
  18439. ]
  18440. ))
  18441. characterMakers.push(() => makeCharacter(
  18442. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18443. {
  18444. front: {
  18445. height: math.unit(5 + 7 / 12, "feet"),
  18446. weight: math.unit(147, "lb"),
  18447. name: "Front",
  18448. image: {
  18449. source: "./media/characters/natalie-kellon/front.svg",
  18450. extra: 1214 / 1141,
  18451. bottom: 0.02
  18452. }
  18453. },
  18454. },
  18455. [
  18456. {
  18457. name: "Micro",
  18458. height: math.unit(1 / 16, "inch")
  18459. },
  18460. {
  18461. name: "Tiny",
  18462. height: math.unit(4, "inches")
  18463. },
  18464. {
  18465. name: "Normal",
  18466. height: math.unit(5 + 7 / 12, "feet"),
  18467. default: true
  18468. },
  18469. {
  18470. name: "Amazon",
  18471. height: math.unit(12, "feet")
  18472. },
  18473. {
  18474. name: "Giantess",
  18475. height: math.unit(160, "meters")
  18476. },
  18477. {
  18478. name: "Titaness",
  18479. height: math.unit(800, "meters")
  18480. },
  18481. ]
  18482. ))
  18483. characterMakers.push(() => makeCharacter(
  18484. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18485. {
  18486. front: {
  18487. height: math.unit(6, "feet"),
  18488. weight: math.unit(150, "lb"),
  18489. name: "Front",
  18490. image: {
  18491. source: "./media/characters/alluria/front.svg",
  18492. extra: 806 / 738,
  18493. bottom: 0.01
  18494. }
  18495. },
  18496. side: {
  18497. height: math.unit(6, "feet"),
  18498. weight: math.unit(150, "lb"),
  18499. name: "Side",
  18500. image: {
  18501. source: "./media/characters/alluria/side.svg",
  18502. extra: 800 / 750,
  18503. }
  18504. },
  18505. back: {
  18506. height: math.unit(6, "feet"),
  18507. weight: math.unit(150, "lb"),
  18508. name: "Back",
  18509. image: {
  18510. source: "./media/characters/alluria/back.svg",
  18511. extra: 806 / 738,
  18512. }
  18513. },
  18514. frontMaid: {
  18515. height: math.unit(6, "feet"),
  18516. weight: math.unit(150, "lb"),
  18517. name: "Front (Maid)",
  18518. image: {
  18519. source: "./media/characters/alluria/front-maid.svg",
  18520. extra: 806 / 738,
  18521. bottom: 0.01
  18522. }
  18523. },
  18524. sideMaid: {
  18525. height: math.unit(6, "feet"),
  18526. weight: math.unit(150, "lb"),
  18527. name: "Side (Maid)",
  18528. image: {
  18529. source: "./media/characters/alluria/side-maid.svg",
  18530. extra: 800 / 750,
  18531. bottom: 0.005
  18532. }
  18533. },
  18534. backMaid: {
  18535. height: math.unit(6, "feet"),
  18536. weight: math.unit(150, "lb"),
  18537. name: "Back (Maid)",
  18538. image: {
  18539. source: "./media/characters/alluria/back-maid.svg",
  18540. extra: 806 / 738,
  18541. }
  18542. },
  18543. },
  18544. [
  18545. {
  18546. name: "Micro",
  18547. height: math.unit(6, "inches"),
  18548. default: true
  18549. },
  18550. ]
  18551. ))
  18552. characterMakers.push(() => makeCharacter(
  18553. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18554. {
  18555. front: {
  18556. height: math.unit(6, "feet"),
  18557. weight: math.unit(150, "lb"),
  18558. name: "Front",
  18559. image: {
  18560. source: "./media/characters/kyle/front.svg",
  18561. extra: 1069 / 962,
  18562. bottom: 77.228 / 1727.45
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Macro",
  18569. height: math.unit(150, "feet"),
  18570. default: true
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18576. {
  18577. front: {
  18578. height: math.unit(6, "feet"),
  18579. weight: math.unit(300, "lb"),
  18580. name: "Front",
  18581. image: {
  18582. source: "./media/characters/duncan/front.svg",
  18583. extra: 1650 / 1482,
  18584. bottom: 0.05
  18585. }
  18586. },
  18587. },
  18588. [
  18589. {
  18590. name: "Macro",
  18591. height: math.unit(100, "feet"),
  18592. default: true
  18593. },
  18594. ]
  18595. ))
  18596. characterMakers.push(() => makeCharacter(
  18597. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18598. {
  18599. front: {
  18600. height: math.unit(5 + 4 / 12, "feet"),
  18601. weight: math.unit(220, "lb"),
  18602. name: "Front",
  18603. image: {
  18604. source: "./media/characters/memory/front.svg",
  18605. extra: 3641 / 3545,
  18606. bottom: 0.03
  18607. }
  18608. },
  18609. back: {
  18610. height: math.unit(5 + 4 / 12, "feet"),
  18611. weight: math.unit(220, "lb"),
  18612. name: "Back",
  18613. image: {
  18614. source: "./media/characters/memory/back.svg",
  18615. extra: 3641 / 3545,
  18616. bottom: 0.025
  18617. }
  18618. },
  18619. frontSkirt: {
  18620. height: math.unit(5 + 4 / 12, "feet"),
  18621. weight: math.unit(220, "lb"),
  18622. name: "Front (Skirt)",
  18623. image: {
  18624. source: "./media/characters/memory/front-skirt.svg",
  18625. extra: 3641 / 3545,
  18626. bottom: 0.03
  18627. }
  18628. },
  18629. frontDress: {
  18630. height: math.unit(5 + 4 / 12, "feet"),
  18631. weight: math.unit(220, "lb"),
  18632. name: "Front (Dress)",
  18633. image: {
  18634. source: "./media/characters/memory/front-dress.svg",
  18635. extra: 3641 / 3545,
  18636. bottom: 0.03
  18637. }
  18638. },
  18639. },
  18640. [
  18641. {
  18642. name: "Micro",
  18643. height: math.unit(6, "inches"),
  18644. default: true
  18645. },
  18646. {
  18647. name: "Normal",
  18648. height: math.unit(5 + 4 / 12, "feet")
  18649. },
  18650. ]
  18651. ))
  18652. characterMakers.push(() => makeCharacter(
  18653. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18654. {
  18655. front: {
  18656. height: math.unit(4 + 11 / 12, "feet"),
  18657. weight: math.unit(100, "lb"),
  18658. name: "Front",
  18659. image: {
  18660. source: "./media/characters/luno/front.svg",
  18661. extra: 1535 / 1487,
  18662. bottom: 0.03
  18663. }
  18664. },
  18665. },
  18666. [
  18667. {
  18668. name: "Micro",
  18669. height: math.unit(3, "inches")
  18670. },
  18671. {
  18672. name: "Normal",
  18673. height: math.unit(4 + 11 / 12, "feet"),
  18674. default: true
  18675. },
  18676. {
  18677. name: "Macro",
  18678. height: math.unit(300, "feet")
  18679. },
  18680. {
  18681. name: "Megamacro",
  18682. height: math.unit(700, "miles")
  18683. },
  18684. ]
  18685. ))
  18686. characterMakers.push(() => makeCharacter(
  18687. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18688. {
  18689. front: {
  18690. height: math.unit(6 + 2 / 12, "feet"),
  18691. weight: math.unit(170, "lb"),
  18692. name: "Front",
  18693. image: {
  18694. source: "./media/characters/jamesy/front.svg",
  18695. extra: 440 / 382,
  18696. bottom: 0.005
  18697. }
  18698. },
  18699. },
  18700. [
  18701. {
  18702. name: "Micro",
  18703. height: math.unit(3, "inches")
  18704. },
  18705. {
  18706. name: "Normal",
  18707. height: math.unit(6 + 2 / 12, "feet"),
  18708. default: true
  18709. },
  18710. {
  18711. name: "Macro",
  18712. height: math.unit(300, "feet")
  18713. },
  18714. {
  18715. name: "Megamacro",
  18716. height: math.unit(700, "miles")
  18717. },
  18718. ]
  18719. ))
  18720. characterMakers.push(() => makeCharacter(
  18721. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18722. {
  18723. front: {
  18724. height: math.unit(6, "feet"),
  18725. weight: math.unit(160, "lb"),
  18726. name: "Front",
  18727. image: {
  18728. source: "./media/characters/mark/front.svg",
  18729. extra: 3300 / 3100,
  18730. bottom: 136.42 / 3440.47
  18731. }
  18732. },
  18733. },
  18734. [
  18735. {
  18736. name: "Macro",
  18737. height: math.unit(120, "meters")
  18738. },
  18739. {
  18740. name: "Bigger Macro",
  18741. height: math.unit(350, "meters")
  18742. },
  18743. {
  18744. name: "Megamacro",
  18745. height: math.unit(8, "km"),
  18746. default: true
  18747. },
  18748. {
  18749. name: "Continental",
  18750. height: math.unit(4550, "km")
  18751. },
  18752. {
  18753. name: "Planetary",
  18754. height: math.unit(65000, "km")
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18760. {
  18761. front: {
  18762. height: math.unit(6, "feet"),
  18763. weight: math.unit(400, "lb"),
  18764. name: "Front",
  18765. image: {
  18766. source: "./media/characters/mac/front.svg",
  18767. extra: 1048 / 987.7,
  18768. bottom: 60 / 1107.6,
  18769. }
  18770. },
  18771. },
  18772. [
  18773. {
  18774. name: "Macro",
  18775. height: math.unit(500, "feet"),
  18776. default: true
  18777. },
  18778. ]
  18779. ))
  18780. characterMakers.push(() => makeCharacter(
  18781. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18782. {
  18783. front: {
  18784. height: math.unit(5 + 2 / 12, "feet"),
  18785. weight: math.unit(190, "lb"),
  18786. name: "Front",
  18787. image: {
  18788. source: "./media/characters/bari/front.svg",
  18789. extra: 3156 / 2880,
  18790. bottom: 0.03
  18791. }
  18792. },
  18793. back: {
  18794. height: math.unit(5 + 2 / 12, "feet"),
  18795. weight: math.unit(190, "lb"),
  18796. name: "Back",
  18797. image: {
  18798. source: "./media/characters/bari/back.svg",
  18799. extra: 3260 / 2834,
  18800. bottom: 0.025
  18801. }
  18802. },
  18803. frontPlush: {
  18804. height: math.unit(5 + 2 / 12, "feet"),
  18805. weight: math.unit(190, "lb"),
  18806. name: "Front (Plush)",
  18807. image: {
  18808. source: "./media/characters/bari/front-plush.svg",
  18809. extra: 1112 / 1061,
  18810. bottom: 0.002
  18811. }
  18812. },
  18813. },
  18814. [
  18815. {
  18816. name: "Micro",
  18817. height: math.unit(3, "inches")
  18818. },
  18819. {
  18820. name: "Normal",
  18821. height: math.unit(5 + 2 / 12, "feet"),
  18822. default: true
  18823. },
  18824. {
  18825. name: "Macro",
  18826. height: math.unit(20, "feet")
  18827. },
  18828. ]
  18829. ))
  18830. characterMakers.push(() => makeCharacter(
  18831. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18832. {
  18833. front: {
  18834. height: math.unit(6 + 1 / 12, "feet"),
  18835. weight: math.unit(275, "lb"),
  18836. name: "Front",
  18837. image: {
  18838. source: "./media/characters/hunter-misha-raven/front.svg"
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Mortal",
  18845. height: math.unit(6 + 1 / 12, "feet")
  18846. },
  18847. {
  18848. name: "Divine",
  18849. height: math.unit(1.12134e34, "parsecs"),
  18850. default: true
  18851. },
  18852. ]
  18853. ))
  18854. characterMakers.push(() => makeCharacter(
  18855. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18856. {
  18857. front: {
  18858. height: math.unit(6 + 3 / 12, "feet"),
  18859. weight: math.unit(220, "lb"),
  18860. name: "Front",
  18861. image: {
  18862. source: "./media/characters/max-calore/front.svg",
  18863. extra: 1700 / 1648,
  18864. bottom: 0.01
  18865. }
  18866. },
  18867. back: {
  18868. height: math.unit(6 + 3 / 12, "feet"),
  18869. weight: math.unit(220, "lb"),
  18870. name: "Back",
  18871. image: {
  18872. source: "./media/characters/max-calore/back.svg",
  18873. extra: 1700 / 1648,
  18874. bottom: 0.01
  18875. }
  18876. },
  18877. },
  18878. [
  18879. {
  18880. name: "Normal",
  18881. height: math.unit(6 + 3 / 12, "feet"),
  18882. default: true
  18883. },
  18884. ]
  18885. ))
  18886. characterMakers.push(() => makeCharacter(
  18887. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18888. {
  18889. side: {
  18890. height: math.unit(2 + 8 / 12, "feet"),
  18891. weight: math.unit(99, "lb"),
  18892. name: "Side",
  18893. image: {
  18894. source: "./media/characters/aspen/side.svg",
  18895. extra: 152 / 138,
  18896. bottom: 0.032
  18897. }
  18898. },
  18899. },
  18900. [
  18901. {
  18902. name: "Normal",
  18903. height: math.unit(2 + 8 / 12, "feet"),
  18904. default: true
  18905. },
  18906. ]
  18907. ))
  18908. characterMakers.push(() => makeCharacter(
  18909. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18910. {
  18911. side: {
  18912. height: math.unit(3 + 2 / 12, "feet"),
  18913. weight: math.unit(224, "lb"),
  18914. name: "Side",
  18915. image: {
  18916. source: "./media/characters/sheila-feral-wolf/side.svg",
  18917. extra: 179 / 166,
  18918. bottom: 0.03
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Normal",
  18925. height: math.unit(3 + 2 / 12, "feet"),
  18926. default: true
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18932. {
  18933. side: {
  18934. height: math.unit(1 + 9 / 12, "feet"),
  18935. weight: math.unit(38, "lb"),
  18936. name: "Side",
  18937. image: {
  18938. source: "./media/characters/michelle/side.svg",
  18939. extra: 147 / 136.7,
  18940. bottom: 0.03
  18941. }
  18942. },
  18943. },
  18944. [
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(1 + 9 / 12, "feet"),
  18948. default: true
  18949. },
  18950. ]
  18951. ))
  18952. characterMakers.push(() => makeCharacter(
  18953. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18954. {
  18955. front: {
  18956. height: math.unit(1.54, "feet"),
  18957. weight: math.unit(50, "lb"),
  18958. name: "Front",
  18959. image: {
  18960. source: "./media/characters/nino/front.svg"
  18961. }
  18962. },
  18963. },
  18964. [
  18965. {
  18966. name: "Normal",
  18967. height: math.unit(1.54, "feet"),
  18968. default: true
  18969. },
  18970. ]
  18971. ))
  18972. characterMakers.push(() => makeCharacter(
  18973. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18974. {
  18975. front: {
  18976. height: math.unit(1.49, "feet"),
  18977. weight: math.unit(45, "lb"),
  18978. name: "Front",
  18979. image: {
  18980. source: "./media/characters/viola/front.svg"
  18981. }
  18982. },
  18983. },
  18984. [
  18985. {
  18986. name: "Normal",
  18987. height: math.unit(1.49, "feet"),
  18988. default: true
  18989. },
  18990. ]
  18991. ))
  18992. characterMakers.push(() => makeCharacter(
  18993. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18994. {
  18995. front: {
  18996. height: math.unit(6 + 5 / 12, "feet"),
  18997. weight: math.unit(580, "lb"),
  18998. name: "Front",
  18999. image: {
  19000. source: "./media/characters/atlas/front.svg",
  19001. extra: 298.5 / 290,
  19002. bottom: 0.015
  19003. }
  19004. },
  19005. },
  19006. [
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(6 + 5 / 12, "feet"),
  19010. default: true
  19011. },
  19012. ]
  19013. ))
  19014. characterMakers.push(() => makeCharacter(
  19015. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19016. {
  19017. side: {
  19018. height: math.unit(15.6, "inches"),
  19019. weight: math.unit(10, "lb"),
  19020. name: "Side",
  19021. image: {
  19022. source: "./media/characters/davy/side.svg",
  19023. extra: 200 / 170,
  19024. bottom: 0.01
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(15.6, "inches"),
  19032. default: true
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19038. {
  19039. side: {
  19040. height: math.unit(4 + 8 / 12, "feet"),
  19041. weight: math.unit(166, "lb"),
  19042. name: "Side",
  19043. image: {
  19044. source: "./media/characters/fiona/side.svg",
  19045. extra: 232 / 220,
  19046. bottom: 0.03
  19047. }
  19048. },
  19049. },
  19050. [
  19051. {
  19052. name: "Normal",
  19053. height: math.unit(4 + 8 / 12, "feet"),
  19054. default: true
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19060. {
  19061. front: {
  19062. height: math.unit(26, "inches"),
  19063. weight: math.unit(35, "lb"),
  19064. name: "Front",
  19065. image: {
  19066. source: "./media/characters/lyla/front.svg",
  19067. bottom: 0.1
  19068. }
  19069. },
  19070. },
  19071. [
  19072. {
  19073. name: "Normal",
  19074. height: math.unit(3, "feet"),
  19075. default: true
  19076. },
  19077. ]
  19078. ))
  19079. characterMakers.push(() => makeCharacter(
  19080. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19081. {
  19082. side: {
  19083. height: math.unit(1.8, "feet"),
  19084. weight: math.unit(44, "lb"),
  19085. name: "Side",
  19086. image: {
  19087. source: "./media/characters/perseus/side.svg",
  19088. bottom: 0.21
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(1.8, "feet"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19102. {
  19103. side: {
  19104. height: math.unit(4 + 2 / 12, "feet"),
  19105. weight: math.unit(20, "lb"),
  19106. name: "Side",
  19107. image: {
  19108. source: "./media/characters/remus/side.svg"
  19109. }
  19110. },
  19111. },
  19112. [
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(4 + 2 / 12, "feet"),
  19116. default: true
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19122. {
  19123. front: {
  19124. height: math.unit(4 + 11 / 12, "feet"),
  19125. weight: math.unit(114, "lb"),
  19126. name: "Front",
  19127. image: {
  19128. source: "./media/characters/raf/front.svg",
  19129. extra: 1504/1339,
  19130. bottom: 26/1530
  19131. }
  19132. },
  19133. side: {
  19134. height: math.unit(4 + 11 / 12, "feet"),
  19135. weight: math.unit(114, "lb"),
  19136. name: "Side",
  19137. image: {
  19138. source: "./media/characters/raf/side.svg",
  19139. extra: 1466/1316,
  19140. bottom: 29/1495
  19141. }
  19142. },
  19143. paw: {
  19144. height: math.unit(1.45, "feet"),
  19145. name: "Paw",
  19146. image: {
  19147. source: "./media/characters/raf/paw.svg"
  19148. },
  19149. extraAttributes: {
  19150. "toeSize": {
  19151. name: "Toe Size",
  19152. power: 2,
  19153. type: "area",
  19154. base: math.unit(0.004, "m^2")
  19155. },
  19156. "padSize": {
  19157. name: "Pad Size",
  19158. power: 2,
  19159. type: "area",
  19160. base: math.unit(0.04, "m^2")
  19161. },
  19162. "footSize": {
  19163. name: "Foot Size",
  19164. power: 2,
  19165. type: "area",
  19166. base: math.unit(0.08, "m^2")
  19167. },
  19168. }
  19169. },
  19170. },
  19171. [
  19172. {
  19173. name: "Micro",
  19174. height: math.unit(2, "inches")
  19175. },
  19176. {
  19177. name: "Normal",
  19178. height: math.unit(4 + 11 / 12, "feet"),
  19179. default: true
  19180. },
  19181. {
  19182. name: "Macro",
  19183. height: math.unit(70, "feet")
  19184. },
  19185. ]
  19186. ))
  19187. characterMakers.push(() => makeCharacter(
  19188. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19189. {
  19190. front: {
  19191. height: math.unit(1.5, "meters"),
  19192. weight: math.unit(68, "kg"),
  19193. name: "Front",
  19194. image: {
  19195. source: "./media/characters/liam-einarr/front.svg",
  19196. extra: 2822 / 2666
  19197. }
  19198. },
  19199. back: {
  19200. height: math.unit(1.5, "meters"),
  19201. weight: math.unit(68, "kg"),
  19202. name: "Back",
  19203. image: {
  19204. source: "./media/characters/liam-einarr/back.svg",
  19205. extra: 2822 / 2666,
  19206. bottom: 0.015
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(1.5, "meters"),
  19214. default: true
  19215. },
  19216. {
  19217. name: "Macro",
  19218. height: math.unit(150, "meters")
  19219. },
  19220. {
  19221. name: "Megamacro",
  19222. height: math.unit(35, "km")
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19228. {
  19229. front: {
  19230. height: math.unit(6, "feet"),
  19231. weight: math.unit(75, "kg"),
  19232. name: "Front",
  19233. image: {
  19234. source: "./media/characters/linda/front.svg",
  19235. extra: 930 / 874,
  19236. bottom: 0.004
  19237. }
  19238. },
  19239. },
  19240. [
  19241. {
  19242. name: "Normal",
  19243. height: math.unit(6, "feet"),
  19244. default: true
  19245. },
  19246. ]
  19247. ))
  19248. characterMakers.push(() => makeCharacter(
  19249. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19250. {
  19251. front: {
  19252. height: math.unit(6 + 8 / 12, "feet"),
  19253. weight: math.unit(220, "lb"),
  19254. name: "Front",
  19255. image: {
  19256. source: "./media/characters/caylex/front.svg",
  19257. extra: 821 / 772,
  19258. bottom: 0.07
  19259. }
  19260. },
  19261. back: {
  19262. height: math.unit(6 + 8 / 12, "feet"),
  19263. weight: math.unit(220, "lb"),
  19264. name: "Back",
  19265. image: {
  19266. source: "./media/characters/caylex/back.svg",
  19267. extra: 821 / 772,
  19268. bottom: 0.022
  19269. }
  19270. },
  19271. hand: {
  19272. height: math.unit(1.25, "feet"),
  19273. name: "Hand",
  19274. image: {
  19275. source: "./media/characters/caylex/hand.svg"
  19276. }
  19277. },
  19278. foot: {
  19279. height: math.unit(1.6, "feet"),
  19280. name: "Foot",
  19281. image: {
  19282. source: "./media/characters/caylex/foot.svg"
  19283. }
  19284. },
  19285. armored: {
  19286. height: math.unit(6 + 8 / 12, "feet"),
  19287. weight: math.unit(250, "lb"),
  19288. name: "Armored",
  19289. image: {
  19290. source: "./media/characters/caylex/armored.svg",
  19291. extra: 1420 / 1310,
  19292. bottom: 0.045
  19293. }
  19294. },
  19295. },
  19296. [
  19297. {
  19298. name: "Normal",
  19299. height: math.unit(6 + 8 / 12, "feet"),
  19300. default: true
  19301. },
  19302. {
  19303. name: "Normal+",
  19304. height: math.unit(12, "feet")
  19305. },
  19306. ]
  19307. ))
  19308. characterMakers.push(() => makeCharacter(
  19309. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19310. {
  19311. front: {
  19312. height: math.unit(7 + 6 / 12, "feet"),
  19313. weight: math.unit(288, "lb"),
  19314. name: "Front",
  19315. image: {
  19316. source: "./media/characters/alana/front.svg",
  19317. extra: 679 / 653,
  19318. bottom: 22.5 / 701
  19319. }
  19320. },
  19321. },
  19322. [
  19323. {
  19324. name: "Normal",
  19325. height: math.unit(7 + 6 / 12, "feet")
  19326. },
  19327. {
  19328. name: "Large",
  19329. height: math.unit(50, "feet")
  19330. },
  19331. {
  19332. name: "Macro",
  19333. height: math.unit(100, "feet"),
  19334. default: true
  19335. },
  19336. {
  19337. name: "Macro+",
  19338. height: math.unit(200, "feet")
  19339. },
  19340. ]
  19341. ))
  19342. characterMakers.push(() => makeCharacter(
  19343. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19344. {
  19345. front: {
  19346. height: math.unit(6 + 1 / 12, "feet"),
  19347. weight: math.unit(210, "lb"),
  19348. name: "Front",
  19349. image: {
  19350. source: "./media/characters/hasani/front.svg",
  19351. extra: 244 / 232,
  19352. bottom: 0.01
  19353. }
  19354. },
  19355. back: {
  19356. height: math.unit(6 + 1 / 12, "feet"),
  19357. weight: math.unit(210, "lb"),
  19358. name: "Back",
  19359. image: {
  19360. source: "./media/characters/hasani/back.svg",
  19361. extra: 244 / 232,
  19362. bottom: 0.01
  19363. }
  19364. },
  19365. },
  19366. [
  19367. {
  19368. name: "Normal",
  19369. height: math.unit(6 + 1 / 12, "feet")
  19370. },
  19371. {
  19372. name: "Macro",
  19373. height: math.unit(175, "feet"),
  19374. default: true
  19375. },
  19376. ]
  19377. ))
  19378. characterMakers.push(() => makeCharacter(
  19379. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19380. {
  19381. front: {
  19382. height: math.unit(1.82, "meters"),
  19383. weight: math.unit(140, "lb"),
  19384. name: "Front",
  19385. image: {
  19386. source: "./media/characters/nita/front.svg",
  19387. extra: 2473 / 2363,
  19388. bottom: 0.01
  19389. }
  19390. },
  19391. },
  19392. [
  19393. {
  19394. name: "Normal",
  19395. height: math.unit(1.82, "m")
  19396. },
  19397. {
  19398. name: "Macro",
  19399. height: math.unit(300, "m")
  19400. },
  19401. {
  19402. name: "Mistake Canon",
  19403. height: math.unit(0.5, "miles"),
  19404. default: true
  19405. },
  19406. {
  19407. name: "Big Mistake",
  19408. height: math.unit(13, "miles")
  19409. },
  19410. {
  19411. name: "Playing God",
  19412. height: math.unit(2450, "miles")
  19413. },
  19414. ]
  19415. ))
  19416. characterMakers.push(() => makeCharacter(
  19417. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19418. {
  19419. front: {
  19420. height: math.unit(4, "feet"),
  19421. weight: math.unit(120, "lb"),
  19422. name: "Front",
  19423. image: {
  19424. source: "./media/characters/shiriko/front.svg",
  19425. extra: 970/934,
  19426. bottom: 5/975
  19427. }
  19428. },
  19429. },
  19430. [
  19431. {
  19432. name: "Normal",
  19433. height: math.unit(4, "feet"),
  19434. default: true
  19435. },
  19436. ]
  19437. ))
  19438. characterMakers.push(() => makeCharacter(
  19439. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19440. {
  19441. front: {
  19442. height: math.unit(6, "feet"),
  19443. name: "front",
  19444. image: {
  19445. source: "./media/characters/deja/front.svg",
  19446. extra: 926 / 840,
  19447. bottom: 0.07
  19448. }
  19449. },
  19450. },
  19451. [
  19452. {
  19453. name: "Planck Length",
  19454. height: math.unit(1.6e-35, "meters")
  19455. },
  19456. {
  19457. name: "Normal",
  19458. height: math.unit(30.48, "meters"),
  19459. default: true
  19460. },
  19461. {
  19462. name: "Universal",
  19463. height: math.unit(8.8e26, "meters")
  19464. },
  19465. ]
  19466. ))
  19467. characterMakers.push(() => makeCharacter(
  19468. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19469. {
  19470. side: {
  19471. height: math.unit(8, "feet"),
  19472. weight: math.unit(6300, "lb"),
  19473. name: "Side",
  19474. image: {
  19475. source: "./media/characters/anima/side.svg",
  19476. bottom: 0.035
  19477. }
  19478. },
  19479. },
  19480. [
  19481. {
  19482. name: "Normal",
  19483. height: math.unit(8, "feet"),
  19484. default: true
  19485. },
  19486. ]
  19487. ))
  19488. characterMakers.push(() => makeCharacter(
  19489. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19490. {
  19491. front: {
  19492. height: math.unit(8, "feet"),
  19493. weight: math.unit(350, "lb"),
  19494. name: "Front",
  19495. image: {
  19496. source: "./media/characters/bianca/front.svg",
  19497. extra: 234 / 225,
  19498. bottom: 0.03
  19499. }
  19500. },
  19501. },
  19502. [
  19503. {
  19504. name: "Normal",
  19505. height: math.unit(8, "feet"),
  19506. default: true
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19512. {
  19513. front: {
  19514. height: math.unit(11 + 5/12, "feet"),
  19515. weight: math.unit(1200, "lb"),
  19516. name: "Front",
  19517. image: {
  19518. source: "./media/characters/adinia/front.svg",
  19519. extra: 1767/1641,
  19520. bottom: 44/1811
  19521. },
  19522. extraAttributes: {
  19523. "energyIntake": {
  19524. name: "Energy Intake",
  19525. power: 3,
  19526. type: "energy",
  19527. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19528. },
  19529. }
  19530. },
  19531. back: {
  19532. height: math.unit(11 + 5/12, "feet"),
  19533. weight: math.unit(1200, "lb"),
  19534. name: "Back",
  19535. image: {
  19536. source: "./media/characters/adinia/back.svg",
  19537. extra: 1834/1684,
  19538. bottom: 14/1848
  19539. },
  19540. extraAttributes: {
  19541. "energyIntake": {
  19542. name: "Energy Intake",
  19543. power: 3,
  19544. type: "energy",
  19545. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19546. },
  19547. }
  19548. },
  19549. maw: {
  19550. height: math.unit(3.79, "feet"),
  19551. name: "Maw",
  19552. image: {
  19553. source: "./media/characters/adinia/maw.svg"
  19554. }
  19555. },
  19556. rump: {
  19557. height: math.unit(4.6, "feet"),
  19558. name: "Rump",
  19559. image: {
  19560. source: "./media/characters/adinia/rump.svg"
  19561. }
  19562. },
  19563. },
  19564. [
  19565. {
  19566. name: "Normal",
  19567. height: math.unit(11 + 5 / 12, "feet"),
  19568. default: true
  19569. },
  19570. ]
  19571. ))
  19572. characterMakers.push(() => makeCharacter(
  19573. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19574. {
  19575. front: {
  19576. height: math.unit(3, "meters"),
  19577. weight: math.unit(200, "kg"),
  19578. name: "Front",
  19579. image: {
  19580. source: "./media/characters/lykasa/front.svg",
  19581. extra: 1076 / 976,
  19582. bottom: 0.06
  19583. }
  19584. },
  19585. },
  19586. [
  19587. {
  19588. name: "Normal",
  19589. height: math.unit(3, "meters")
  19590. },
  19591. {
  19592. name: "Kaiju",
  19593. height: math.unit(120, "meters"),
  19594. default: true
  19595. },
  19596. {
  19597. name: "Mega Kaiju",
  19598. height: math.unit(240, "km")
  19599. },
  19600. {
  19601. name: "Giga Kaiju",
  19602. height: math.unit(400, "megameters")
  19603. },
  19604. {
  19605. name: "Tera Kaiju",
  19606. height: math.unit(800, "gigameters")
  19607. },
  19608. {
  19609. name: "Kaiju Dragon Goddess",
  19610. height: math.unit(26, "zettaparsecs")
  19611. },
  19612. ]
  19613. ))
  19614. characterMakers.push(() => makeCharacter(
  19615. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19616. {
  19617. side: {
  19618. height: math.unit(283 / 124 * 6, "feet"),
  19619. weight: math.unit(35000, "lb"),
  19620. name: "Side",
  19621. image: {
  19622. source: "./media/characters/malfaren/side.svg",
  19623. extra: 1310/529,
  19624. bottom: 24/1334
  19625. }
  19626. },
  19627. front: {
  19628. height: math.unit(22.36, "feet"),
  19629. weight: math.unit(35000, "lb"),
  19630. name: "Front",
  19631. image: {
  19632. source: "./media/characters/malfaren/front.svg",
  19633. extra: 1237/1115,
  19634. bottom: 32/1269
  19635. }
  19636. },
  19637. maw: {
  19638. height: math.unit(6.9, "feet"),
  19639. name: "Maw",
  19640. image: {
  19641. source: "./media/characters/malfaren/maw.svg"
  19642. }
  19643. },
  19644. dick: {
  19645. height: math.unit(6.19, "feet"),
  19646. name: "Dick",
  19647. image: {
  19648. source: "./media/characters/malfaren/dick.svg"
  19649. }
  19650. },
  19651. eye: {
  19652. height: math.unit(0.69, "feet"),
  19653. name: "Eye",
  19654. image: {
  19655. source: "./media/characters/malfaren/eye.svg"
  19656. }
  19657. },
  19658. },
  19659. [
  19660. {
  19661. name: "Big",
  19662. height: math.unit(283 / 162 * 6, "feet"),
  19663. },
  19664. {
  19665. name: "Bigger",
  19666. height: math.unit(283 / 124 * 6, "feet")
  19667. },
  19668. {
  19669. name: "Massive",
  19670. height: math.unit(283 / 92 * 6, "feet"),
  19671. default: true
  19672. },
  19673. {
  19674. name: "👀💦",
  19675. height: math.unit(283 / 73 * 6, "feet"),
  19676. },
  19677. ]
  19678. ))
  19679. characterMakers.push(() => makeCharacter(
  19680. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19681. {
  19682. front: {
  19683. height: math.unit(1.7, "m"),
  19684. weight: math.unit(70, "kg"),
  19685. name: "Front",
  19686. image: {
  19687. source: "./media/characters/kernel/front.svg",
  19688. extra: 1960/1821,
  19689. bottom: 17/1977
  19690. }
  19691. },
  19692. },
  19693. [
  19694. {
  19695. name: "Nano",
  19696. height: math.unit(17, "micrometers")
  19697. },
  19698. {
  19699. name: "Micro",
  19700. height: math.unit(1.7, "mm")
  19701. },
  19702. {
  19703. name: "Small",
  19704. height: math.unit(1.7, "cm")
  19705. },
  19706. {
  19707. name: "Normal",
  19708. height: math.unit(1.7, "m"),
  19709. default: true
  19710. },
  19711. ]
  19712. ))
  19713. characterMakers.push(() => makeCharacter(
  19714. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19715. {
  19716. front: {
  19717. height: math.unit(1.75, "meters"),
  19718. weight: math.unit(65, "kg"),
  19719. name: "Front",
  19720. image: {
  19721. source: "./media/characters/jayne-folest/front.svg",
  19722. extra: 2115 / 2007,
  19723. bottom: 0.02
  19724. }
  19725. },
  19726. back: {
  19727. height: math.unit(1.75, "meters"),
  19728. weight: math.unit(65, "kg"),
  19729. name: "Back",
  19730. image: {
  19731. source: "./media/characters/jayne-folest/back.svg",
  19732. extra: 2115 / 2007,
  19733. bottom: 0.005
  19734. }
  19735. },
  19736. frontClothed: {
  19737. height: math.unit(1.75, "meters"),
  19738. weight: math.unit(65, "kg"),
  19739. name: "Front (Clothed)",
  19740. image: {
  19741. source: "./media/characters/jayne-folest/front-clothed.svg",
  19742. extra: 2115 / 2007,
  19743. bottom: 0.035
  19744. }
  19745. },
  19746. hand: {
  19747. height: math.unit(1 / 1.260, "feet"),
  19748. name: "Hand",
  19749. image: {
  19750. source: "./media/characters/jayne-folest/hand.svg"
  19751. }
  19752. },
  19753. foot: {
  19754. height: math.unit(1 / 0.918, "feet"),
  19755. name: "Foot",
  19756. image: {
  19757. source: "./media/characters/jayne-folest/foot.svg"
  19758. }
  19759. },
  19760. },
  19761. [
  19762. {
  19763. name: "Micro",
  19764. height: math.unit(4, "cm")
  19765. },
  19766. {
  19767. name: "Normal",
  19768. height: math.unit(1.75, "meters")
  19769. },
  19770. {
  19771. name: "Macro",
  19772. height: math.unit(47.5, "meters"),
  19773. default: true
  19774. },
  19775. ]
  19776. ))
  19777. characterMakers.push(() => makeCharacter(
  19778. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19779. {
  19780. front: {
  19781. height: math.unit(180, "cm"),
  19782. weight: math.unit(70, "kg"),
  19783. name: "Front",
  19784. image: {
  19785. source: "./media/characters/algier/front.svg",
  19786. extra: 596 / 572,
  19787. bottom: 0.04
  19788. }
  19789. },
  19790. back: {
  19791. height: math.unit(180, "cm"),
  19792. weight: math.unit(70, "kg"),
  19793. name: "Back",
  19794. image: {
  19795. source: "./media/characters/algier/back.svg",
  19796. extra: 596 / 572,
  19797. bottom: 0.025
  19798. }
  19799. },
  19800. frontdressed: {
  19801. height: math.unit(180, "cm"),
  19802. weight: math.unit(150, "kg"),
  19803. name: "Front-dressed",
  19804. image: {
  19805. source: "./media/characters/algier/front-dressed.svg",
  19806. extra: 596 / 572,
  19807. bottom: 0.038
  19808. }
  19809. },
  19810. },
  19811. [
  19812. {
  19813. name: "Micro",
  19814. height: math.unit(5, "cm")
  19815. },
  19816. {
  19817. name: "Normal",
  19818. height: math.unit(180, "cm"),
  19819. default: true
  19820. },
  19821. {
  19822. name: "Macro",
  19823. height: math.unit(64, "m")
  19824. },
  19825. ]
  19826. ))
  19827. characterMakers.push(() => makeCharacter(
  19828. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19829. {
  19830. upright: {
  19831. height: math.unit(7, "feet"),
  19832. weight: math.unit(300, "lb"),
  19833. name: "Upright",
  19834. image: {
  19835. source: "./media/characters/pretzel/upright.svg",
  19836. extra: 534 / 522,
  19837. bottom: 0.065
  19838. }
  19839. },
  19840. sprawling: {
  19841. height: math.unit(3.75, "feet"),
  19842. weight: math.unit(300, "lb"),
  19843. name: "Sprawling",
  19844. image: {
  19845. source: "./media/characters/pretzel/sprawling.svg",
  19846. extra: 314 / 281,
  19847. bottom: 0.1
  19848. }
  19849. },
  19850. tongue: {
  19851. height: math.unit(2, "feet"),
  19852. name: "Tongue",
  19853. image: {
  19854. source: "./media/characters/pretzel/tongue.svg"
  19855. }
  19856. },
  19857. },
  19858. [
  19859. {
  19860. name: "Normal",
  19861. height: math.unit(7, "feet"),
  19862. default: true
  19863. },
  19864. {
  19865. name: "Oversized",
  19866. height: math.unit(15, "feet")
  19867. },
  19868. {
  19869. name: "Huge",
  19870. height: math.unit(30, "feet")
  19871. },
  19872. {
  19873. name: "Macro",
  19874. height: math.unit(250, "feet")
  19875. },
  19876. ]
  19877. ))
  19878. characterMakers.push(() => makeCharacter(
  19879. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19880. {
  19881. sideFront: {
  19882. height: math.unit(5 + 2 / 12, "feet"),
  19883. weight: math.unit(120, "lb"),
  19884. name: "Front Side",
  19885. image: {
  19886. source: "./media/characters/roxi/side-front.svg",
  19887. extra: 2924 / 2717,
  19888. bottom: 0.08
  19889. }
  19890. },
  19891. sideBack: {
  19892. height: math.unit(5 + 2 / 12, "feet"),
  19893. weight: math.unit(120, "lb"),
  19894. name: "Back Side",
  19895. image: {
  19896. source: "./media/characters/roxi/side-back.svg",
  19897. extra: 2904 / 2693,
  19898. bottom: 0.06
  19899. }
  19900. },
  19901. front: {
  19902. height: math.unit(5 + 2 / 12, "feet"),
  19903. weight: math.unit(120, "lb"),
  19904. name: "Front",
  19905. image: {
  19906. source: "./media/characters/roxi/front.svg",
  19907. extra: 2028 / 1907,
  19908. bottom: 0.01
  19909. }
  19910. },
  19911. frontAlt: {
  19912. height: math.unit(5 + 2 / 12, "feet"),
  19913. weight: math.unit(120, "lb"),
  19914. name: "Front (Alt)",
  19915. image: {
  19916. source: "./media/characters/roxi/front-alt.svg",
  19917. extra: 1828 / 1798,
  19918. bottom: 0.01
  19919. }
  19920. },
  19921. sitting: {
  19922. height: math.unit(2.8, "feet"),
  19923. weight: math.unit(120, "lb"),
  19924. name: "Sitting",
  19925. image: {
  19926. source: "./media/characters/roxi/sitting.svg",
  19927. extra: 2660 / 2462,
  19928. bottom: 0.1
  19929. }
  19930. },
  19931. },
  19932. [
  19933. {
  19934. name: "Normal",
  19935. height: math.unit(5 + 2 / 12, "feet"),
  19936. default: true
  19937. },
  19938. ]
  19939. ))
  19940. characterMakers.push(() => makeCharacter(
  19941. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19942. {
  19943. side: {
  19944. height: math.unit(55, "feet"),
  19945. weight: math.unit(153, "tons"),
  19946. name: "Side",
  19947. image: {
  19948. source: "./media/characters/shadow/side.svg",
  19949. extra: 701 / 628,
  19950. bottom: 0.02
  19951. }
  19952. },
  19953. flying: {
  19954. height: math.unit(145, "feet"),
  19955. weight: math.unit(153, "tons"),
  19956. name: "Flying",
  19957. image: {
  19958. source: "./media/characters/shadow/flying.svg"
  19959. }
  19960. },
  19961. },
  19962. [
  19963. {
  19964. name: "Normal",
  19965. height: math.unit(55, "feet"),
  19966. default: true
  19967. },
  19968. ]
  19969. ))
  19970. characterMakers.push(() => makeCharacter(
  19971. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19972. {
  19973. front: {
  19974. height: math.unit(6, "feet"),
  19975. weight: math.unit(200, "lb"),
  19976. name: "Front",
  19977. image: {
  19978. source: "./media/characters/marcie/front.svg",
  19979. extra: 960 / 876,
  19980. bottom: 58 / 1017.87
  19981. }
  19982. },
  19983. },
  19984. [
  19985. {
  19986. name: "Macro",
  19987. height: math.unit(1, "mile"),
  19988. default: true
  19989. },
  19990. ]
  19991. ))
  19992. characterMakers.push(() => makeCharacter(
  19993. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19994. {
  19995. front: {
  19996. height: math.unit(7, "feet"),
  19997. weight: math.unit(200, "lb"),
  19998. name: "Front",
  19999. image: {
  20000. source: "./media/characters/kachina/front.svg",
  20001. extra: 1290.68 / 1119,
  20002. bottom: 36.5 / 1327.18
  20003. }
  20004. },
  20005. },
  20006. [
  20007. {
  20008. name: "Normal",
  20009. height: math.unit(7, "feet"),
  20010. default: true
  20011. },
  20012. ]
  20013. ))
  20014. characterMakers.push(() => makeCharacter(
  20015. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20016. {
  20017. looking: {
  20018. height: math.unit(2, "meters"),
  20019. weight: math.unit(300, "kg"),
  20020. name: "Looking",
  20021. image: {
  20022. source: "./media/characters/kash/looking.svg",
  20023. extra: 474 / 344,
  20024. bottom: 0.03
  20025. }
  20026. },
  20027. side: {
  20028. height: math.unit(2, "meters"),
  20029. weight: math.unit(300, "kg"),
  20030. name: "Side",
  20031. image: {
  20032. source: "./media/characters/kash/side.svg",
  20033. extra: 302 / 251,
  20034. bottom: 0.03
  20035. }
  20036. },
  20037. front: {
  20038. height: math.unit(2, "meters"),
  20039. weight: math.unit(300, "kg"),
  20040. name: "Front",
  20041. image: {
  20042. source: "./media/characters/kash/front.svg",
  20043. extra: 495 / 360,
  20044. bottom: 0.015
  20045. }
  20046. },
  20047. },
  20048. [
  20049. {
  20050. name: "Normal",
  20051. height: math.unit(2, "meters"),
  20052. default: true
  20053. },
  20054. {
  20055. name: "Big",
  20056. height: math.unit(3, "meters")
  20057. },
  20058. {
  20059. name: "Large",
  20060. height: math.unit(5, "meters")
  20061. },
  20062. ]
  20063. ))
  20064. characterMakers.push(() => makeCharacter(
  20065. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20066. {
  20067. feeding: {
  20068. height: math.unit(6.7, "feet"),
  20069. weight: math.unit(350, "lb"),
  20070. name: "Feeding",
  20071. image: {
  20072. source: "./media/characters/lalim/feeding.svg",
  20073. }
  20074. },
  20075. },
  20076. [
  20077. {
  20078. name: "Normal",
  20079. height: math.unit(6.7, "feet"),
  20080. default: true
  20081. },
  20082. ]
  20083. ))
  20084. characterMakers.push(() => makeCharacter(
  20085. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20086. {
  20087. front: {
  20088. height: math.unit(9.5, "feet"),
  20089. weight: math.unit(600, "lb"),
  20090. name: "Front",
  20091. image: {
  20092. source: "./media/characters/de'vout/front.svg",
  20093. extra: 1443 / 1328,
  20094. bottom: 0.025
  20095. }
  20096. },
  20097. back: {
  20098. height: math.unit(9.5, "feet"),
  20099. weight: math.unit(600, "lb"),
  20100. name: "Back",
  20101. image: {
  20102. source: "./media/characters/de'vout/back.svg",
  20103. extra: 1443 / 1328
  20104. }
  20105. },
  20106. frontDressed: {
  20107. height: math.unit(9.5, "feet"),
  20108. weight: math.unit(600, "lb"),
  20109. name: "Front (Dressed",
  20110. image: {
  20111. source: "./media/characters/de'vout/front-dressed.svg",
  20112. extra: 1443 / 1328,
  20113. bottom: 0.025
  20114. }
  20115. },
  20116. backDressed: {
  20117. height: math.unit(9.5, "feet"),
  20118. weight: math.unit(600, "lb"),
  20119. name: "Back (Dressed",
  20120. image: {
  20121. source: "./media/characters/de'vout/back-dressed.svg",
  20122. extra: 1443 / 1328
  20123. }
  20124. },
  20125. },
  20126. [
  20127. {
  20128. name: "Normal",
  20129. height: math.unit(9.5, "feet"),
  20130. default: true
  20131. },
  20132. ]
  20133. ))
  20134. characterMakers.push(() => makeCharacter(
  20135. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20136. {
  20137. front: {
  20138. height: math.unit(8, "feet"),
  20139. weight: math.unit(225, "lb"),
  20140. name: "Front",
  20141. image: {
  20142. source: "./media/characters/talana/front.svg",
  20143. extra: 1410 / 1300,
  20144. bottom: 0.015
  20145. }
  20146. },
  20147. frontDressed: {
  20148. height: math.unit(8, "feet"),
  20149. weight: math.unit(225, "lb"),
  20150. name: "Front (Dressed",
  20151. image: {
  20152. source: "./media/characters/talana/front-dressed.svg",
  20153. extra: 1410 / 1300,
  20154. bottom: 0.015
  20155. }
  20156. },
  20157. },
  20158. [
  20159. {
  20160. name: "Normal",
  20161. height: math.unit(8, "feet"),
  20162. default: true
  20163. },
  20164. ]
  20165. ))
  20166. characterMakers.push(() => makeCharacter(
  20167. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20168. {
  20169. side: {
  20170. height: math.unit(7.2, "feet"),
  20171. weight: math.unit(150, "lb"),
  20172. name: "Side",
  20173. image: {
  20174. source: "./media/characters/xeauvok/side.svg",
  20175. extra: 1975 / 1523,
  20176. bottom: 0.07
  20177. }
  20178. },
  20179. },
  20180. [
  20181. {
  20182. name: "Normal",
  20183. height: math.unit(7.2, "feet"),
  20184. default: true
  20185. },
  20186. ]
  20187. ))
  20188. characterMakers.push(() => makeCharacter(
  20189. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20190. {
  20191. side: {
  20192. height: math.unit(4, "meters"),
  20193. weight: math.unit(2200, "kg"),
  20194. name: "Side",
  20195. image: {
  20196. source: "./media/characters/zara/side.svg",
  20197. extra: 765/744,
  20198. bottom: 156/921
  20199. }
  20200. },
  20201. },
  20202. [
  20203. {
  20204. name: "Normal",
  20205. height: math.unit(4, "meters"),
  20206. default: true
  20207. },
  20208. ]
  20209. ))
  20210. characterMakers.push(() => makeCharacter(
  20211. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20212. {
  20213. side: {
  20214. height: math.unit(6, "feet"),
  20215. weight: math.unit(150, "lb"),
  20216. name: "Side",
  20217. image: {
  20218. source: "./media/characters/richard-dragon/side.svg",
  20219. extra: 845 / 340,
  20220. bottom: 0.017
  20221. }
  20222. },
  20223. maw: {
  20224. height: math.unit(2.97, "feet"),
  20225. name: "Maw",
  20226. image: {
  20227. source: "./media/characters/richard-dragon/maw.svg"
  20228. }
  20229. },
  20230. },
  20231. [
  20232. ]
  20233. ))
  20234. characterMakers.push(() => makeCharacter(
  20235. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20236. {
  20237. front: {
  20238. height: math.unit(4, "feet"),
  20239. weight: math.unit(100, "lb"),
  20240. name: "Front",
  20241. image: {
  20242. source: "./media/characters/richard-smeargle/front.svg",
  20243. extra: 2952 / 2820,
  20244. bottom: 0.028
  20245. }
  20246. },
  20247. },
  20248. [
  20249. {
  20250. name: "Normal",
  20251. height: math.unit(4, "feet"),
  20252. default: true
  20253. },
  20254. {
  20255. name: "Dynamax",
  20256. height: math.unit(20, "meters")
  20257. },
  20258. ]
  20259. ))
  20260. characterMakers.push(() => makeCharacter(
  20261. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20262. {
  20263. front: {
  20264. height: math.unit(6, "feet"),
  20265. weight: math.unit(110, "lb"),
  20266. name: "Front",
  20267. image: {
  20268. source: "./media/characters/klay/front.svg",
  20269. extra: 962 / 883,
  20270. bottom: 0.04
  20271. }
  20272. },
  20273. back: {
  20274. height: math.unit(6, "feet"),
  20275. weight: math.unit(110, "lb"),
  20276. name: "Back",
  20277. image: {
  20278. source: "./media/characters/klay/back.svg",
  20279. extra: 962 / 883
  20280. }
  20281. },
  20282. beans: {
  20283. height: math.unit(1.15, "feet"),
  20284. name: "Beans",
  20285. image: {
  20286. source: "./media/characters/klay/beans.svg"
  20287. }
  20288. },
  20289. },
  20290. [
  20291. {
  20292. name: "Micro",
  20293. height: math.unit(6, "inches")
  20294. },
  20295. {
  20296. name: "Mini",
  20297. height: math.unit(3, "feet")
  20298. },
  20299. {
  20300. name: "Normal",
  20301. height: math.unit(6, "feet"),
  20302. default: true
  20303. },
  20304. {
  20305. name: "Big",
  20306. height: math.unit(25, "feet")
  20307. },
  20308. {
  20309. name: "Macro",
  20310. height: math.unit(100, "feet")
  20311. },
  20312. {
  20313. name: "Megamacro",
  20314. height: math.unit(400, "feet")
  20315. },
  20316. ]
  20317. ))
  20318. characterMakers.push(() => makeCharacter(
  20319. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20320. {
  20321. front: {
  20322. height: math.unit(6, "feet"),
  20323. weight: math.unit(160, "lb"),
  20324. name: "Front",
  20325. image: {
  20326. source: "./media/characters/marcus/front.svg",
  20327. extra: 734 / 676,
  20328. bottom: 0.03
  20329. }
  20330. },
  20331. },
  20332. [
  20333. {
  20334. name: "Little",
  20335. height: math.unit(6, "feet")
  20336. },
  20337. {
  20338. name: "Normal",
  20339. height: math.unit(110, "feet"),
  20340. default: true
  20341. },
  20342. {
  20343. name: "Macro",
  20344. height: math.unit(250, "feet")
  20345. },
  20346. {
  20347. name: "Megamacro",
  20348. height: math.unit(1000, "feet")
  20349. },
  20350. ]
  20351. ))
  20352. characterMakers.push(() => makeCharacter(
  20353. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20354. {
  20355. front: {
  20356. height: math.unit(7, "feet"),
  20357. weight: math.unit(275, "lb"),
  20358. name: "Front",
  20359. image: {
  20360. source: "./media/characters/claude-delroute/front.svg",
  20361. extra: 902/827,
  20362. bottom: 26/928
  20363. }
  20364. },
  20365. side: {
  20366. height: math.unit(7, "feet"),
  20367. weight: math.unit(275, "lb"),
  20368. name: "Side",
  20369. image: {
  20370. source: "./media/characters/claude-delroute/side.svg",
  20371. extra: 908/853,
  20372. bottom: 16/924
  20373. }
  20374. },
  20375. back: {
  20376. height: math.unit(7, "feet"),
  20377. weight: math.unit(275, "lb"),
  20378. name: "Back",
  20379. image: {
  20380. source: "./media/characters/claude-delroute/back.svg",
  20381. extra: 911/829,
  20382. bottom: 18/929
  20383. }
  20384. },
  20385. maw: {
  20386. height: math.unit(0.6407, "meters"),
  20387. name: "Maw",
  20388. image: {
  20389. source: "./media/characters/claude-delroute/maw.svg"
  20390. }
  20391. },
  20392. },
  20393. [
  20394. {
  20395. name: "Normal",
  20396. height: math.unit(7, "feet"),
  20397. default: true
  20398. },
  20399. {
  20400. name: "Lorge",
  20401. height: math.unit(20, "feet")
  20402. },
  20403. ]
  20404. ))
  20405. characterMakers.push(() => makeCharacter(
  20406. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20407. {
  20408. front: {
  20409. height: math.unit(8 + 4 / 12, "feet"),
  20410. weight: math.unit(600, "lb"),
  20411. name: "Front",
  20412. image: {
  20413. source: "./media/characters/dragonien/front.svg",
  20414. extra: 100 / 94,
  20415. bottom: 3.3 / 103.3445
  20416. }
  20417. },
  20418. back: {
  20419. height: math.unit(8 + 4 / 12, "feet"),
  20420. weight: math.unit(600, "lb"),
  20421. name: "Back",
  20422. image: {
  20423. source: "./media/characters/dragonien/back.svg",
  20424. extra: 776 / 746,
  20425. bottom: 6.4 / 782.0616
  20426. }
  20427. },
  20428. foot: {
  20429. height: math.unit(1.54, "feet"),
  20430. name: "Foot",
  20431. image: {
  20432. source: "./media/characters/dragonien/foot.svg",
  20433. }
  20434. },
  20435. },
  20436. [
  20437. {
  20438. name: "Normal",
  20439. height: math.unit(8 + 4 / 12, "feet"),
  20440. default: true
  20441. },
  20442. {
  20443. name: "Macro",
  20444. height: math.unit(200, "feet")
  20445. },
  20446. {
  20447. name: "Megamacro",
  20448. height: math.unit(1, "mile")
  20449. },
  20450. {
  20451. name: "Gigamacro",
  20452. height: math.unit(1000, "miles")
  20453. },
  20454. ]
  20455. ))
  20456. characterMakers.push(() => makeCharacter(
  20457. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20458. {
  20459. front: {
  20460. height: math.unit(5 + 2 / 12, "feet"),
  20461. weight: math.unit(110, "lb"),
  20462. name: "Front",
  20463. image: {
  20464. source: "./media/characters/desta/front.svg",
  20465. extra: 767 / 726,
  20466. bottom: 11.7 / 779
  20467. }
  20468. },
  20469. back: {
  20470. height: math.unit(5 + 2 / 12, "feet"),
  20471. weight: math.unit(110, "lb"),
  20472. name: "Back",
  20473. image: {
  20474. source: "./media/characters/desta/back.svg",
  20475. extra: 777 / 728,
  20476. bottom: 6 / 784
  20477. }
  20478. },
  20479. frontAlt: {
  20480. height: math.unit(5 + 2 / 12, "feet"),
  20481. weight: math.unit(110, "lb"),
  20482. name: "Front",
  20483. image: {
  20484. source: "./media/characters/desta/front-alt.svg",
  20485. extra: 1482 / 1417
  20486. }
  20487. },
  20488. side: {
  20489. height: math.unit(5 + 2 / 12, "feet"),
  20490. weight: math.unit(110, "lb"),
  20491. name: "Side",
  20492. image: {
  20493. source: "./media/characters/desta/side.svg",
  20494. extra: 2579 / 2491,
  20495. bottom: 0.053
  20496. }
  20497. },
  20498. },
  20499. [
  20500. {
  20501. name: "Micro",
  20502. height: math.unit(6, "inches")
  20503. },
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(5 + 2 / 12, "feet"),
  20507. default: true
  20508. },
  20509. {
  20510. name: "Macro",
  20511. height: math.unit(62, "feet")
  20512. },
  20513. {
  20514. name: "Megamacro",
  20515. height: math.unit(1800, "feet")
  20516. },
  20517. ]
  20518. ))
  20519. characterMakers.push(() => makeCharacter(
  20520. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20521. {
  20522. front: {
  20523. height: math.unit(10, "feet"),
  20524. weight: math.unit(700, "lb"),
  20525. name: "Front",
  20526. image: {
  20527. source: "./media/characters/storm-alystar/front.svg",
  20528. extra: 2112 / 1898,
  20529. bottom: 0.034
  20530. }
  20531. },
  20532. },
  20533. [
  20534. {
  20535. name: "Micro",
  20536. height: math.unit(3.5, "inches")
  20537. },
  20538. {
  20539. name: "Normal",
  20540. height: math.unit(10, "feet"),
  20541. default: true
  20542. },
  20543. {
  20544. name: "Macro",
  20545. height: math.unit(400, "feet")
  20546. },
  20547. {
  20548. name: "Deific",
  20549. height: math.unit(60, "miles")
  20550. },
  20551. ]
  20552. ))
  20553. characterMakers.push(() => makeCharacter(
  20554. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20555. {
  20556. front: {
  20557. height: math.unit(2.35, "meters"),
  20558. weight: math.unit(119, "kg"),
  20559. name: "Front",
  20560. image: {
  20561. source: "./media/characters/ilia/front.svg",
  20562. extra: 1285 / 1255,
  20563. bottom: 0.06
  20564. }
  20565. },
  20566. },
  20567. [
  20568. {
  20569. name: "Normal",
  20570. height: math.unit(2.35, "meters")
  20571. },
  20572. {
  20573. name: "Macro",
  20574. height: math.unit(140, "meters"),
  20575. default: true
  20576. },
  20577. {
  20578. name: "Megamacro",
  20579. height: math.unit(100, "miles")
  20580. },
  20581. ]
  20582. ))
  20583. characterMakers.push(() => makeCharacter(
  20584. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20585. {
  20586. front: {
  20587. height: math.unit(6 + 5 / 12, "feet"),
  20588. weight: math.unit(190, "lb"),
  20589. name: "Front",
  20590. image: {
  20591. source: "./media/characters/kingdead/front.svg",
  20592. extra: 1228 / 1177
  20593. }
  20594. },
  20595. },
  20596. [
  20597. {
  20598. name: "Micro",
  20599. height: math.unit(7, "inches")
  20600. },
  20601. {
  20602. name: "Normal",
  20603. height: math.unit(6 + 5 / 12, "feet")
  20604. },
  20605. {
  20606. name: "Macro",
  20607. height: math.unit(150, "feet"),
  20608. default: true
  20609. },
  20610. {
  20611. name: "Megamacro",
  20612. height: math.unit(200, "miles")
  20613. },
  20614. ]
  20615. ))
  20616. characterMakers.push(() => makeCharacter(
  20617. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20618. {
  20619. front: {
  20620. height: math.unit(8, "feet"),
  20621. weight: math.unit(600, "lb"),
  20622. name: "Front",
  20623. image: {
  20624. source: "./media/characters/kyrehx/front.svg",
  20625. extra: 1195 / 1095,
  20626. bottom: 0.034
  20627. }
  20628. },
  20629. },
  20630. [
  20631. {
  20632. name: "Micro",
  20633. height: math.unit(2, "inches")
  20634. },
  20635. {
  20636. name: "Normal",
  20637. height: math.unit(8, "feet"),
  20638. default: true
  20639. },
  20640. {
  20641. name: "Macro",
  20642. height: math.unit(255, "feet")
  20643. },
  20644. ]
  20645. ))
  20646. characterMakers.push(() => makeCharacter(
  20647. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20648. {
  20649. front: {
  20650. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20651. weight: math.unit(184, "lb"),
  20652. name: "Front",
  20653. image: {
  20654. source: "./media/characters/xang/front.svg",
  20655. extra: 845 / 755
  20656. }
  20657. },
  20658. },
  20659. [
  20660. {
  20661. name: "Normal",
  20662. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20663. default: true
  20664. },
  20665. {
  20666. name: "Macro",
  20667. height: math.unit(0.935 * 146, "feet")
  20668. },
  20669. {
  20670. name: "Megamacro",
  20671. height: math.unit(0.935 * 3, "miles")
  20672. },
  20673. ]
  20674. ))
  20675. characterMakers.push(() => makeCharacter(
  20676. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20677. {
  20678. frontDressed: {
  20679. height: math.unit(5 + 7 / 12, "feet"),
  20680. weight: math.unit(140, "lb"),
  20681. name: "Front (Dressed)",
  20682. image: {
  20683. source: "./media/characters/doc-weardno/front-dressed.svg",
  20684. extra: 263 / 234
  20685. }
  20686. },
  20687. backDressed: {
  20688. height: math.unit(5 + 7 / 12, "feet"),
  20689. weight: math.unit(140, "lb"),
  20690. name: "Back (Dressed)",
  20691. image: {
  20692. source: "./media/characters/doc-weardno/back-dressed.svg",
  20693. extra: 266 / 238
  20694. }
  20695. },
  20696. front: {
  20697. height: math.unit(5 + 7 / 12, "feet"),
  20698. weight: math.unit(140, "lb"),
  20699. name: "Front",
  20700. image: {
  20701. source: "./media/characters/doc-weardno/front.svg",
  20702. extra: 254 / 233
  20703. }
  20704. },
  20705. },
  20706. [
  20707. {
  20708. name: "Micro",
  20709. height: math.unit(3, "inches")
  20710. },
  20711. {
  20712. name: "Normal",
  20713. height: math.unit(5 + 7 / 12, "feet"),
  20714. default: true
  20715. },
  20716. {
  20717. name: "Macro",
  20718. height: math.unit(25, "feet")
  20719. },
  20720. {
  20721. name: "Megamacro",
  20722. height: math.unit(2, "miles")
  20723. },
  20724. ]
  20725. ))
  20726. characterMakers.push(() => makeCharacter(
  20727. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20728. {
  20729. front: {
  20730. height: math.unit(6 + 2 / 12, "feet"),
  20731. weight: math.unit(153, "lb"),
  20732. name: "Front",
  20733. image: {
  20734. source: "./media/characters/seth-whilst/front.svg",
  20735. bottom: 0.07
  20736. }
  20737. },
  20738. },
  20739. [
  20740. {
  20741. name: "Micro",
  20742. height: math.unit(5, "inches")
  20743. },
  20744. {
  20745. name: "Normal",
  20746. height: math.unit(6 + 2 / 12, "feet"),
  20747. default: true
  20748. },
  20749. ]
  20750. ))
  20751. characterMakers.push(() => makeCharacter(
  20752. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20753. {
  20754. front: {
  20755. height: math.unit(3, "inches"),
  20756. weight: math.unit(8, "grams"),
  20757. name: "Front",
  20758. image: {
  20759. source: "./media/characters/pocket-jabari/front.svg",
  20760. extra: 1024 / 974,
  20761. bottom: 0.039
  20762. }
  20763. },
  20764. },
  20765. [
  20766. {
  20767. name: "Minimicro",
  20768. height: math.unit(8, "mm")
  20769. },
  20770. {
  20771. name: "Micro",
  20772. height: math.unit(3, "inches"),
  20773. default: true
  20774. },
  20775. {
  20776. name: "Normal",
  20777. height: math.unit(3, "feet")
  20778. },
  20779. ]
  20780. ))
  20781. characterMakers.push(() => makeCharacter(
  20782. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20783. {
  20784. frontDressed: {
  20785. height: math.unit(15, "feet"),
  20786. weight: math.unit(3280, "lb"),
  20787. name: "Front (Dressed)",
  20788. image: {
  20789. source: "./media/characters/sapphy/front-dressed.svg",
  20790. extra: 1951/1654,
  20791. bottom: 194/2145
  20792. },
  20793. form: "anthro",
  20794. default: true
  20795. },
  20796. backDressed: {
  20797. height: math.unit(15, "feet"),
  20798. weight: math.unit(3280, "lb"),
  20799. name: "Back (Dressed)",
  20800. image: {
  20801. source: "./media/characters/sapphy/back-dressed.svg",
  20802. extra: 2058/1918,
  20803. bottom: 125/2183
  20804. },
  20805. form: "anthro"
  20806. },
  20807. frontNude: {
  20808. height: math.unit(15, "feet"),
  20809. weight: math.unit(3280, "lb"),
  20810. name: "Front (Nude)",
  20811. image: {
  20812. source: "./media/characters/sapphy/front-nude.svg",
  20813. extra: 1951/1654,
  20814. bottom: 194/2145
  20815. },
  20816. form: "anthro"
  20817. },
  20818. backNude: {
  20819. height: math.unit(15, "feet"),
  20820. weight: math.unit(3280, "lb"),
  20821. name: "Back (Nude)",
  20822. image: {
  20823. source: "./media/characters/sapphy/back-nude.svg",
  20824. extra: 2058/1918,
  20825. bottom: 125/2183
  20826. },
  20827. form: "anthro"
  20828. },
  20829. full: {
  20830. height: math.unit(15, "feet"),
  20831. weight: math.unit(3280, "lb"),
  20832. name: "Full",
  20833. image: {
  20834. source: "./media/characters/sapphy/full.svg",
  20835. extra: 1396/1317,
  20836. bottom: 44/1440
  20837. },
  20838. form: "anthro"
  20839. },
  20840. dick: {
  20841. height: math.unit(3.8, "feet"),
  20842. name: "Dick",
  20843. image: {
  20844. source: "./media/characters/sapphy/dick.svg"
  20845. },
  20846. form: "anthro"
  20847. },
  20848. feral: {
  20849. height: math.unit(35, "feet"),
  20850. weight: math.unit(160, "tons"),
  20851. name: "Feral",
  20852. image: {
  20853. source: "./media/characters/sapphy/feral.svg",
  20854. extra: 1050/573,
  20855. bottom: 60/1110
  20856. },
  20857. form: "feral",
  20858. default: true
  20859. },
  20860. },
  20861. [
  20862. {
  20863. name: "Normal",
  20864. height: math.unit(15, "feet"),
  20865. form: "anthro"
  20866. },
  20867. {
  20868. name: "Casual Macro",
  20869. height: math.unit(120, "feet"),
  20870. form: "anthro"
  20871. },
  20872. {
  20873. name: "Macro",
  20874. height: math.unit(2150, "feet"),
  20875. default: true,
  20876. form: "anthro"
  20877. },
  20878. {
  20879. name: "Megamacro",
  20880. height: math.unit(8, "miles"),
  20881. form: "anthro"
  20882. },
  20883. {
  20884. name: "Galaxy Mom",
  20885. height: math.unit(6, "megalightyears"),
  20886. form: "anthro"
  20887. },
  20888. {
  20889. name: "Normal",
  20890. height: math.unit(35, "feet"),
  20891. form: "feral",
  20892. default: true
  20893. },
  20894. {
  20895. name: "Macro",
  20896. height: math.unit(300, "feet"),
  20897. form: "feral"
  20898. },
  20899. {
  20900. name: "Galaxy Mom",
  20901. height: math.unit(10, "megalightyears"),
  20902. form: "feral"
  20903. },
  20904. ],
  20905. {
  20906. "anthro": {
  20907. name: "Anthro",
  20908. default: true
  20909. },
  20910. "feral": {
  20911. name: "Feral"
  20912. }
  20913. }
  20914. ))
  20915. characterMakers.push(() => makeCharacter(
  20916. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20917. {
  20918. hyenaFront: {
  20919. height: math.unit(6, "feet"),
  20920. weight: math.unit(190, "lb"),
  20921. name: "Front",
  20922. image: {
  20923. source: "./media/characters/kiro/hyena-front.svg",
  20924. extra: 927/839,
  20925. bottom: 91/1018
  20926. },
  20927. form: "hyena",
  20928. default: true
  20929. },
  20930. front: {
  20931. height: math.unit(6, "feet"),
  20932. weight: math.unit(170, "lb"),
  20933. name: "Front",
  20934. image: {
  20935. source: "./media/characters/kiro/front.svg",
  20936. extra: 1064 / 1012,
  20937. bottom: 0.052
  20938. },
  20939. form: "folf",
  20940. default: true
  20941. },
  20942. },
  20943. [
  20944. {
  20945. name: "Micro",
  20946. height: math.unit(6, "inches"),
  20947. form: "folf"
  20948. },
  20949. {
  20950. name: "Normal",
  20951. height: math.unit(6, "feet"),
  20952. form: "folf",
  20953. default: true
  20954. },
  20955. {
  20956. name: "Macro",
  20957. height: math.unit(72, "feet"),
  20958. form: "folf"
  20959. },
  20960. {
  20961. name: "Micro",
  20962. height: math.unit(6, "inches"),
  20963. form: "hyena"
  20964. },
  20965. {
  20966. name: "Normal",
  20967. height: math.unit(6, "feet"),
  20968. form: "hyena",
  20969. default: true
  20970. },
  20971. {
  20972. name: "Macro",
  20973. height: math.unit(72, "feet"),
  20974. form: "hyena"
  20975. },
  20976. ],
  20977. {
  20978. "hyena": {
  20979. name: "Hyena",
  20980. default: true
  20981. },
  20982. "folf": {
  20983. name: "Folf",
  20984. },
  20985. }
  20986. ))
  20987. characterMakers.push(() => makeCharacter(
  20988. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20989. {
  20990. front: {
  20991. height: math.unit(5 + 9 / 12, "feet"),
  20992. weight: math.unit(175, "lb"),
  20993. name: "Front",
  20994. image: {
  20995. source: "./media/characters/irishfox/front.svg",
  20996. extra: 1912 / 1680,
  20997. bottom: 0.02
  20998. }
  20999. },
  21000. },
  21001. [
  21002. {
  21003. name: "Nano",
  21004. height: math.unit(1, "mm")
  21005. },
  21006. {
  21007. name: "Micro",
  21008. height: math.unit(2, "inches")
  21009. },
  21010. {
  21011. name: "Normal",
  21012. height: math.unit(5 + 9 / 12, "feet"),
  21013. default: true
  21014. },
  21015. {
  21016. name: "Macro",
  21017. height: math.unit(45, "feet")
  21018. },
  21019. ]
  21020. ))
  21021. characterMakers.push(() => makeCharacter(
  21022. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21023. {
  21024. front: {
  21025. height: math.unit(6 + 1 / 12, "feet"),
  21026. weight: math.unit(75, "lb"),
  21027. name: "Front",
  21028. image: {
  21029. source: "./media/characters/aronai-sieyes/front.svg",
  21030. extra: 1532/1450,
  21031. bottom: 42/1574
  21032. }
  21033. },
  21034. side: {
  21035. height: math.unit(6 + 1 / 12, "feet"),
  21036. weight: math.unit(75, "lb"),
  21037. name: "Side",
  21038. image: {
  21039. source: "./media/characters/aronai-sieyes/side.svg",
  21040. extra: 1422/1365,
  21041. bottom: 148/1570
  21042. }
  21043. },
  21044. back: {
  21045. height: math.unit(6 + 1 / 12, "feet"),
  21046. weight: math.unit(75, "lb"),
  21047. name: "Back",
  21048. image: {
  21049. source: "./media/characters/aronai-sieyes/back.svg",
  21050. extra: 1526/1464,
  21051. bottom: 51/1577
  21052. }
  21053. },
  21054. dressed: {
  21055. height: math.unit(6 + 1 / 12, "feet"),
  21056. weight: math.unit(75, "lb"),
  21057. name: "Dressed",
  21058. image: {
  21059. source: "./media/characters/aronai-sieyes/dressed.svg",
  21060. extra: 1559/1483,
  21061. bottom: 39/1598
  21062. }
  21063. },
  21064. slit: {
  21065. height: math.unit(1.3, "feet"),
  21066. name: "Slit",
  21067. image: {
  21068. source: "./media/characters/aronai-sieyes/slit.svg"
  21069. }
  21070. },
  21071. slitSpread: {
  21072. height: math.unit(0.9, "feet"),
  21073. name: "Slit (Spread)",
  21074. image: {
  21075. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21076. }
  21077. },
  21078. rump: {
  21079. height: math.unit(1.3, "feet"),
  21080. name: "Rump",
  21081. image: {
  21082. source: "./media/characters/aronai-sieyes/rump.svg"
  21083. }
  21084. },
  21085. maw: {
  21086. height: math.unit(1.25, "feet"),
  21087. name: "Maw",
  21088. image: {
  21089. source: "./media/characters/aronai-sieyes/maw.svg"
  21090. }
  21091. },
  21092. feral: {
  21093. height: math.unit(18, "feet"),
  21094. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21095. name: "Feral",
  21096. image: {
  21097. source: "./media/characters/aronai-sieyes/feral.svg",
  21098. extra: 1530 / 1240,
  21099. bottom: 0.035
  21100. }
  21101. },
  21102. },
  21103. [
  21104. {
  21105. name: "Micro",
  21106. height: math.unit(2, "inches")
  21107. },
  21108. {
  21109. name: "Normal",
  21110. height: math.unit(6 + 1 / 12, "feet"),
  21111. default: true
  21112. }
  21113. ]
  21114. ))
  21115. characterMakers.push(() => makeCharacter(
  21116. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21117. {
  21118. front: {
  21119. height: math.unit(12, "feet"),
  21120. weight: math.unit(410, "kg"),
  21121. name: "Front",
  21122. image: {
  21123. source: "./media/characters/xuna/front.svg",
  21124. extra: 2184 / 1980
  21125. }
  21126. },
  21127. side: {
  21128. height: math.unit(12, "feet"),
  21129. weight: math.unit(410, "kg"),
  21130. name: "Side",
  21131. image: {
  21132. source: "./media/characters/xuna/side.svg",
  21133. extra: 2184 / 1980
  21134. }
  21135. },
  21136. back: {
  21137. height: math.unit(12, "feet"),
  21138. weight: math.unit(410, "kg"),
  21139. name: "Back",
  21140. image: {
  21141. source: "./media/characters/xuna/back.svg",
  21142. extra: 2184 / 1980
  21143. }
  21144. },
  21145. },
  21146. [
  21147. {
  21148. name: "Nano glow",
  21149. height: math.unit(10, "nm")
  21150. },
  21151. {
  21152. name: "Micro floof",
  21153. height: math.unit(0.3, "m")
  21154. },
  21155. {
  21156. name: "Huggable softy boi",
  21157. height: math.unit(3.6576, "m"),
  21158. default: true
  21159. },
  21160. {
  21161. name: "Admirable floof",
  21162. height: math.unit(80, "meters")
  21163. },
  21164. {
  21165. name: "Gentle macro",
  21166. height: math.unit(300, "meters")
  21167. },
  21168. {
  21169. name: "Very careful floof",
  21170. height: math.unit(3200, "meters")
  21171. },
  21172. {
  21173. name: "The mega floof",
  21174. height: math.unit(36000, "meters")
  21175. },
  21176. {
  21177. name: "Giga-fur-Wicker",
  21178. height: math.unit(4800000, "meters")
  21179. },
  21180. {
  21181. name: "Licky world",
  21182. height: math.unit(20000000, "meters")
  21183. },
  21184. {
  21185. name: "Floofy cyan sun",
  21186. height: math.unit(1500000000, "meters")
  21187. },
  21188. {
  21189. name: "Milky Wicker",
  21190. height: math.unit(1000000000000000000000, "meters")
  21191. },
  21192. {
  21193. name: "The observing Wicker",
  21194. height: math.unit(999999999999999999999999999, "meters")
  21195. },
  21196. ]
  21197. ))
  21198. characterMakers.push(() => makeCharacter(
  21199. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21200. {
  21201. front: {
  21202. height: math.unit(5 + 9 / 12, "feet"),
  21203. weight: math.unit(150, "lb"),
  21204. name: "Front",
  21205. image: {
  21206. source: "./media/characters/arokha-sieyes/front.svg",
  21207. extra: 1425 / 1284,
  21208. bottom: 0.05
  21209. }
  21210. },
  21211. },
  21212. [
  21213. {
  21214. name: "Normal",
  21215. height: math.unit(5 + 9 / 12, "feet")
  21216. },
  21217. {
  21218. name: "Macro",
  21219. height: math.unit(30, "meters"),
  21220. default: true
  21221. },
  21222. ]
  21223. ))
  21224. characterMakers.push(() => makeCharacter(
  21225. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21226. {
  21227. front: {
  21228. height: math.unit(6, "feet"),
  21229. weight: math.unit(180, "lb"),
  21230. name: "Front",
  21231. image: {
  21232. source: "./media/characters/arokh-sieyes/front.svg",
  21233. extra: 1830 / 1769,
  21234. bottom: 0.01
  21235. }
  21236. },
  21237. },
  21238. [
  21239. {
  21240. name: "Normal",
  21241. height: math.unit(6, "feet")
  21242. },
  21243. {
  21244. name: "Macro",
  21245. height: math.unit(30, "meters"),
  21246. default: true
  21247. },
  21248. ]
  21249. ))
  21250. characterMakers.push(() => makeCharacter(
  21251. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21252. {
  21253. side: {
  21254. height: math.unit(13 + 1 / 12, "feet"),
  21255. weight: math.unit(8.5, "tonnes"),
  21256. preyCapacity: math.unit(36, "people"),
  21257. name: "Side",
  21258. image: {
  21259. source: "./media/characters/goldeneye/side.svg",
  21260. extra: 1139/741,
  21261. bottom: 98/1237
  21262. }
  21263. },
  21264. front: {
  21265. height: math.unit(5.1, "feet"),
  21266. weight: math.unit(8.5, "tonnes"),
  21267. preyCapacity: math.unit(36, "people"),
  21268. name: "Front",
  21269. image: {
  21270. source: "./media/characters/goldeneye/front.svg",
  21271. extra: 635/365,
  21272. bottom: 598/1233
  21273. }
  21274. },
  21275. maw: {
  21276. height: math.unit(6.6, "feet"),
  21277. name: "Maw",
  21278. image: {
  21279. source: "./media/characters/goldeneye/maw.svg"
  21280. }
  21281. },
  21282. headFront: {
  21283. height: math.unit(8, "feet"),
  21284. name: "Head (Front)",
  21285. image: {
  21286. source: "./media/characters/goldeneye/head-front.svg"
  21287. }
  21288. },
  21289. headSide: {
  21290. height: math.unit(6, "feet"),
  21291. name: "Head (Side)",
  21292. image: {
  21293. source: "./media/characters/goldeneye/head-side.svg"
  21294. }
  21295. },
  21296. headBack: {
  21297. height: math.unit(8, "feet"),
  21298. name: "Head (Back)",
  21299. image: {
  21300. source: "./media/characters/goldeneye/head-back.svg"
  21301. }
  21302. },
  21303. paw: {
  21304. height: math.unit(3.4, "feet"),
  21305. name: "Paw",
  21306. image: {
  21307. source: "./media/characters/goldeneye/paw.svg"
  21308. }
  21309. },
  21310. toering: {
  21311. height: math.unit(0.45, "feet"),
  21312. name: "Toering",
  21313. image: {
  21314. source: "./media/characters/goldeneye/toering.svg"
  21315. }
  21316. },
  21317. eyes: {
  21318. height: math.unit(0.5, "feet"),
  21319. name: "Eyes",
  21320. image: {
  21321. source: "./media/characters/goldeneye/eyes.svg"
  21322. }
  21323. },
  21324. },
  21325. [
  21326. {
  21327. name: "Normal",
  21328. height: math.unit(13 + 1 / 12, "feet"),
  21329. default: true
  21330. },
  21331. ]
  21332. ))
  21333. characterMakers.push(() => makeCharacter(
  21334. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21335. {
  21336. front: {
  21337. height: math.unit(6 + 1 / 12, "feet"),
  21338. weight: math.unit(210, "lb"),
  21339. name: "Front",
  21340. image: {
  21341. source: "./media/characters/leonardo-lycheborne/front.svg",
  21342. extra: 776/723,
  21343. bottom: 34/810
  21344. }
  21345. },
  21346. side: {
  21347. height: math.unit(6 + 1 / 12, "feet"),
  21348. weight: math.unit(210, "lb"),
  21349. name: "Side",
  21350. image: {
  21351. source: "./media/characters/leonardo-lycheborne/side.svg",
  21352. extra: 780/728,
  21353. bottom: 12/792
  21354. }
  21355. },
  21356. back: {
  21357. height: math.unit(6 + 1 / 12, "feet"),
  21358. weight: math.unit(210, "lb"),
  21359. name: "Back",
  21360. image: {
  21361. source: "./media/characters/leonardo-lycheborne/back.svg",
  21362. extra: 775/721,
  21363. bottom: 17/792
  21364. }
  21365. },
  21366. hand: {
  21367. height: math.unit(1.08, "feet"),
  21368. name: "Hand",
  21369. image: {
  21370. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21371. }
  21372. },
  21373. foot: {
  21374. height: math.unit(1.32, "feet"),
  21375. name: "Foot",
  21376. image: {
  21377. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21378. }
  21379. },
  21380. maw: {
  21381. height: math.unit(1, "feet"),
  21382. name: "Maw",
  21383. image: {
  21384. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21385. }
  21386. },
  21387. were: {
  21388. height: math.unit(20, "feet"),
  21389. weight: math.unit(7800, "lb"),
  21390. name: "Were",
  21391. image: {
  21392. source: "./media/characters/leonardo-lycheborne/were.svg",
  21393. extra: 1224/1165,
  21394. bottom: 72/1296
  21395. }
  21396. },
  21397. feral: {
  21398. height: math.unit(7.5, "feet"),
  21399. weight: math.unit(600, "lb"),
  21400. name: "Feral",
  21401. image: {
  21402. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21403. extra: 797/702,
  21404. bottom: 139/936
  21405. }
  21406. },
  21407. taur: {
  21408. height: math.unit(11, "feet"),
  21409. weight: math.unit(3300, "lb"),
  21410. name: "Taur",
  21411. image: {
  21412. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21413. extra: 1271/1197,
  21414. bottom: 47/1318
  21415. }
  21416. },
  21417. barghest: {
  21418. height: math.unit(11, "feet"),
  21419. weight: math.unit(1300, "lb"),
  21420. name: "Barghest",
  21421. image: {
  21422. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21423. extra: 1291/1204,
  21424. bottom: 37/1328
  21425. }
  21426. },
  21427. dick: {
  21428. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21429. name: "Dick",
  21430. image: {
  21431. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21432. }
  21433. },
  21434. dickWere: {
  21435. height: math.unit((20) / 3.8, "feet"),
  21436. name: "Dick (Were)",
  21437. image: {
  21438. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21439. }
  21440. },
  21441. },
  21442. [
  21443. {
  21444. name: "Normal",
  21445. height: math.unit(6 + 1 / 12, "feet"),
  21446. default: true
  21447. },
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21452. {
  21453. front: {
  21454. height: math.unit(10, "feet"),
  21455. weight: math.unit(350, "lb"),
  21456. name: "Front",
  21457. image: {
  21458. source: "./media/characters/jet/front.svg",
  21459. extra: 2050 / 1980,
  21460. bottom: 0.013
  21461. }
  21462. },
  21463. back: {
  21464. height: math.unit(10, "feet"),
  21465. weight: math.unit(350, "lb"),
  21466. name: "Back",
  21467. image: {
  21468. source: "./media/characters/jet/back.svg",
  21469. extra: 2050 / 1980,
  21470. bottom: 0.013
  21471. }
  21472. },
  21473. },
  21474. [
  21475. {
  21476. name: "Micro",
  21477. height: math.unit(6, "inches")
  21478. },
  21479. {
  21480. name: "Normal",
  21481. height: math.unit(10, "feet"),
  21482. default: true
  21483. },
  21484. {
  21485. name: "Macro",
  21486. height: math.unit(100, "feet")
  21487. },
  21488. ]
  21489. ))
  21490. characterMakers.push(() => makeCharacter(
  21491. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21492. {
  21493. front: {
  21494. height: math.unit(15, "feet"),
  21495. weight: math.unit(2800, "lb"),
  21496. name: "Front",
  21497. image: {
  21498. source: "./media/characters/tanarath/front.svg",
  21499. extra: 2392 / 2220,
  21500. bottom: 0.03
  21501. }
  21502. },
  21503. back: {
  21504. height: math.unit(15, "feet"),
  21505. weight: math.unit(2800, "lb"),
  21506. name: "Back",
  21507. image: {
  21508. source: "./media/characters/tanarath/back.svg",
  21509. extra: 2392 / 2220,
  21510. bottom: 0.03
  21511. }
  21512. },
  21513. },
  21514. [
  21515. {
  21516. name: "Normal",
  21517. height: math.unit(15, "feet"),
  21518. default: true
  21519. },
  21520. ]
  21521. ))
  21522. characterMakers.push(() => makeCharacter(
  21523. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21524. {
  21525. front: {
  21526. height: math.unit(7 + 1 / 12, "feet"),
  21527. weight: math.unit(175, "lb"),
  21528. name: "Front",
  21529. image: {
  21530. source: "./media/characters/patty-cattybatty/front.svg",
  21531. extra: 908 / 874,
  21532. bottom: 0.025
  21533. }
  21534. },
  21535. },
  21536. [
  21537. {
  21538. name: "Micro",
  21539. height: math.unit(1, "inch")
  21540. },
  21541. {
  21542. name: "Normal",
  21543. height: math.unit(7 + 1 / 12, "feet")
  21544. },
  21545. {
  21546. name: "Mini Macro",
  21547. height: math.unit(155, "feet")
  21548. },
  21549. {
  21550. name: "Macro",
  21551. height: math.unit(1077, "feet")
  21552. },
  21553. {
  21554. name: "Mega Macro",
  21555. height: math.unit(47650, "feet"),
  21556. default: true
  21557. },
  21558. {
  21559. name: "Giga Macro",
  21560. height: math.unit(440, "miles")
  21561. },
  21562. {
  21563. name: "Tera Macro",
  21564. height: math.unit(8700, "miles")
  21565. },
  21566. {
  21567. name: "Planetary Macro",
  21568. height: math.unit(32700, "miles")
  21569. },
  21570. {
  21571. name: "Solar Macro",
  21572. height: math.unit(550000, "miles")
  21573. },
  21574. {
  21575. name: "Celestial Macro",
  21576. height: math.unit(2.5, "AU")
  21577. },
  21578. ]
  21579. ))
  21580. characterMakers.push(() => makeCharacter(
  21581. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21582. {
  21583. front: {
  21584. height: math.unit(4 + 5 / 12, "feet"),
  21585. weight: math.unit(90, "lb"),
  21586. name: "Front",
  21587. image: {
  21588. source: "./media/characters/cappu/front.svg",
  21589. extra: 1247 / 1152,
  21590. bottom: 0.012
  21591. }
  21592. },
  21593. },
  21594. [
  21595. {
  21596. name: "Normal",
  21597. height: math.unit(4 + 5 / 12, "feet"),
  21598. default: true
  21599. },
  21600. ]
  21601. ))
  21602. characterMakers.push(() => makeCharacter(
  21603. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21604. {
  21605. frontDressed: {
  21606. height: math.unit(70, "cm"),
  21607. weight: math.unit(6, "kg"),
  21608. name: "Front (Dressed)",
  21609. image: {
  21610. source: "./media/characters/sebi/front-dressed.svg",
  21611. extra: 713.5 / 686.5,
  21612. bottom: 0.003
  21613. }
  21614. },
  21615. front: {
  21616. height: math.unit(70, "cm"),
  21617. weight: math.unit(5, "kg"),
  21618. name: "Front",
  21619. image: {
  21620. source: "./media/characters/sebi/front.svg",
  21621. extra: 713.5 / 686.5,
  21622. bottom: 0.003
  21623. }
  21624. }
  21625. },
  21626. [
  21627. {
  21628. name: "Normal",
  21629. height: math.unit(70, "cm"),
  21630. default: true
  21631. },
  21632. {
  21633. name: "Macro",
  21634. height: math.unit(8, "meters")
  21635. },
  21636. ]
  21637. ))
  21638. characterMakers.push(() => makeCharacter(
  21639. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21640. {
  21641. front: {
  21642. height: math.unit(6, "feet"),
  21643. weight: math.unit(150, "lb"),
  21644. name: "Front",
  21645. image: {
  21646. source: "./media/characters/typhek/front.svg",
  21647. extra: 1948 / 1929,
  21648. bottom: 0.025
  21649. }
  21650. },
  21651. side: {
  21652. height: math.unit(6, "feet"),
  21653. weight: math.unit(150, "lb"),
  21654. name: "Side",
  21655. image: {
  21656. source: "./media/characters/typhek/side.svg",
  21657. extra: 2034 / 2010,
  21658. bottom: 0.003
  21659. }
  21660. },
  21661. back: {
  21662. height: math.unit(6, "feet"),
  21663. weight: math.unit(150, "lb"),
  21664. name: "Back",
  21665. image: {
  21666. source: "./media/characters/typhek/back.svg",
  21667. extra: 2005 / 1978,
  21668. bottom: 0.004
  21669. }
  21670. },
  21671. palm: {
  21672. height: math.unit(1.2, "feet"),
  21673. name: "Palm",
  21674. image: {
  21675. source: "./media/characters/typhek/palm.svg"
  21676. }
  21677. },
  21678. fist: {
  21679. height: math.unit(1.1, "feet"),
  21680. name: "Fist",
  21681. image: {
  21682. source: "./media/characters/typhek/fist.svg"
  21683. }
  21684. },
  21685. foot: {
  21686. height: math.unit(1.57, "feet"),
  21687. name: "Foot",
  21688. image: {
  21689. source: "./media/characters/typhek/foot.svg"
  21690. }
  21691. },
  21692. sole: {
  21693. height: math.unit(2.05, "feet"),
  21694. name: "Sole",
  21695. image: {
  21696. source: "./media/characters/typhek/sole.svg"
  21697. }
  21698. },
  21699. },
  21700. [
  21701. {
  21702. name: "Macro",
  21703. height: math.unit(40, "stories"),
  21704. default: true
  21705. },
  21706. {
  21707. name: "Megamacro",
  21708. height: math.unit(1, "mile")
  21709. },
  21710. {
  21711. name: "Gigamacro",
  21712. height: math.unit(4000, "solarradii")
  21713. },
  21714. {
  21715. name: "Universal",
  21716. height: math.unit(1.1, "universes")
  21717. }
  21718. ]
  21719. ))
  21720. characterMakers.push(() => makeCharacter(
  21721. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21722. {
  21723. side: {
  21724. height: math.unit(5 + 7 / 12, "feet"),
  21725. weight: math.unit(150, "lb"),
  21726. name: "Side",
  21727. image: {
  21728. source: "./media/characters/kassy/side.svg",
  21729. extra: 1280 / 1225,
  21730. bottom: 0.002
  21731. }
  21732. },
  21733. front: {
  21734. height: math.unit(5 + 7 / 12, "feet"),
  21735. weight: math.unit(150, "lb"),
  21736. name: "Front",
  21737. image: {
  21738. source: "./media/characters/kassy/front.svg",
  21739. extra: 1280 / 1225,
  21740. bottom: 0.025
  21741. }
  21742. },
  21743. back: {
  21744. height: math.unit(5 + 7 / 12, "feet"),
  21745. weight: math.unit(150, "lb"),
  21746. name: "Back",
  21747. image: {
  21748. source: "./media/characters/kassy/back.svg",
  21749. extra: 1280 / 1225,
  21750. bottom: 0.002
  21751. }
  21752. },
  21753. foot: {
  21754. height: math.unit(1.266, "feet"),
  21755. name: "Foot",
  21756. image: {
  21757. source: "./media/characters/kassy/foot.svg"
  21758. }
  21759. },
  21760. },
  21761. [
  21762. {
  21763. name: "Normal",
  21764. height: math.unit(5 + 7 / 12, "feet")
  21765. },
  21766. {
  21767. name: "Macro",
  21768. height: math.unit(137, "feet"),
  21769. default: true
  21770. },
  21771. {
  21772. name: "Megamacro",
  21773. height: math.unit(1, "mile")
  21774. },
  21775. ]
  21776. ))
  21777. characterMakers.push(() => makeCharacter(
  21778. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21779. {
  21780. front: {
  21781. height: math.unit(6 + 1 / 12, "feet"),
  21782. weight: math.unit(200, "lb"),
  21783. name: "Front",
  21784. image: {
  21785. source: "./media/characters/neil/front.svg",
  21786. extra: 1326 / 1250,
  21787. bottom: 0.023
  21788. }
  21789. },
  21790. },
  21791. [
  21792. {
  21793. name: "Normal",
  21794. height: math.unit(6 + 1 / 12, "feet"),
  21795. default: true
  21796. },
  21797. {
  21798. name: "Macro",
  21799. height: math.unit(200, "feet")
  21800. },
  21801. ]
  21802. ))
  21803. characterMakers.push(() => makeCharacter(
  21804. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21805. {
  21806. front: {
  21807. height: math.unit(5 + 9 / 12, "feet"),
  21808. weight: math.unit(190, "lb"),
  21809. name: "Front",
  21810. image: {
  21811. source: "./media/characters/atticus/front.svg",
  21812. extra: 2934 / 2785,
  21813. bottom: 0.025
  21814. }
  21815. },
  21816. },
  21817. [
  21818. {
  21819. name: "Normal",
  21820. height: math.unit(5 + 9 / 12, "feet"),
  21821. default: true
  21822. },
  21823. {
  21824. name: "Macro",
  21825. height: math.unit(180, "feet")
  21826. },
  21827. ]
  21828. ))
  21829. characterMakers.push(() => makeCharacter(
  21830. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21831. {
  21832. side: {
  21833. height: math.unit(9, "feet"),
  21834. weight: math.unit(650, "lb"),
  21835. name: "Side",
  21836. image: {
  21837. source: "./media/characters/milo/side.svg",
  21838. extra: 2644 / 2310,
  21839. bottom: 0.032
  21840. }
  21841. },
  21842. },
  21843. [
  21844. {
  21845. name: "Normal",
  21846. height: math.unit(9, "feet"),
  21847. default: true
  21848. },
  21849. {
  21850. name: "Macro",
  21851. height: math.unit(300, "feet")
  21852. },
  21853. ]
  21854. ))
  21855. characterMakers.push(() => makeCharacter(
  21856. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21857. {
  21858. side: {
  21859. height: math.unit(8, "meters"),
  21860. weight: math.unit(90000, "kg"),
  21861. name: "Side",
  21862. image: {
  21863. source: "./media/characters/ijzer/side.svg",
  21864. extra: 2756 / 1600,
  21865. bottom: 0.01
  21866. }
  21867. },
  21868. },
  21869. [
  21870. {
  21871. name: "Small",
  21872. height: math.unit(3, "meters")
  21873. },
  21874. {
  21875. name: "Normal",
  21876. height: math.unit(8, "meters"),
  21877. default: true
  21878. },
  21879. {
  21880. name: "Normal+",
  21881. height: math.unit(10, "meters")
  21882. },
  21883. {
  21884. name: "Bigger",
  21885. height: math.unit(24, "meters")
  21886. },
  21887. {
  21888. name: "Huge",
  21889. height: math.unit(80, "meters")
  21890. },
  21891. ]
  21892. ))
  21893. characterMakers.push(() => makeCharacter(
  21894. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21895. {
  21896. front: {
  21897. height: math.unit(6 + 2 / 12, "feet"),
  21898. weight: math.unit(153, "lb"),
  21899. name: "Front",
  21900. image: {
  21901. source: "./media/characters/luca-cervicum/front.svg",
  21902. extra: 370 / 327,
  21903. bottom: 0.015
  21904. }
  21905. },
  21906. back: {
  21907. height: math.unit(6 + 2 / 12, "feet"),
  21908. weight: math.unit(153, "lb"),
  21909. name: "Back",
  21910. image: {
  21911. source: "./media/characters/luca-cervicum/back.svg",
  21912. extra: 367 / 333,
  21913. bottom: 0.005
  21914. }
  21915. },
  21916. frontGear: {
  21917. height: math.unit(6 + 2 / 12, "feet"),
  21918. weight: math.unit(173, "lb"),
  21919. name: "Front (Gear)",
  21920. image: {
  21921. source: "./media/characters/luca-cervicum/front-gear.svg",
  21922. extra: 377 / 333,
  21923. bottom: 0.006
  21924. }
  21925. },
  21926. },
  21927. [
  21928. {
  21929. name: "Normal",
  21930. height: math.unit(6 + 2 / 12, "feet"),
  21931. default: true
  21932. },
  21933. ]
  21934. ))
  21935. characterMakers.push(() => makeCharacter(
  21936. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21937. {
  21938. front: {
  21939. height: math.unit(6 + 1 / 12, "feet"),
  21940. weight: math.unit(304, "lb"),
  21941. name: "Front",
  21942. image: {
  21943. source: "./media/characters/oliver/front.svg",
  21944. extra: 157 / 143,
  21945. bottom: 0.08
  21946. }
  21947. },
  21948. },
  21949. [
  21950. {
  21951. name: "Normal",
  21952. height: math.unit(6 + 1 / 12, "feet"),
  21953. default: true
  21954. },
  21955. ]
  21956. ))
  21957. characterMakers.push(() => makeCharacter(
  21958. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21959. {
  21960. front: {
  21961. height: math.unit(5 + 7 / 12, "feet"),
  21962. weight: math.unit(140, "lb"),
  21963. name: "Front",
  21964. image: {
  21965. source: "./media/characters/shane/front.svg",
  21966. extra: 304 / 289,
  21967. bottom: 0.005
  21968. }
  21969. },
  21970. },
  21971. [
  21972. {
  21973. name: "Normal",
  21974. height: math.unit(5 + 7 / 12, "feet"),
  21975. default: true
  21976. },
  21977. ]
  21978. ))
  21979. characterMakers.push(() => makeCharacter(
  21980. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21981. {
  21982. front: {
  21983. height: math.unit(5 + 9 / 12, "feet"),
  21984. weight: math.unit(178, "lb"),
  21985. name: "Front",
  21986. image: {
  21987. source: "./media/characters/shin/front.svg",
  21988. extra: 159 / 151,
  21989. bottom: 0.015
  21990. }
  21991. },
  21992. },
  21993. [
  21994. {
  21995. name: "Normal",
  21996. height: math.unit(5 + 9 / 12, "feet"),
  21997. default: true
  21998. },
  21999. ]
  22000. ))
  22001. characterMakers.push(() => makeCharacter(
  22002. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22003. {
  22004. front: {
  22005. height: math.unit(5 + 10 / 12, "feet"),
  22006. weight: math.unit(168, "lb"),
  22007. name: "Front",
  22008. image: {
  22009. source: "./media/characters/xerxes/front.svg",
  22010. extra: 282 / 260,
  22011. bottom: 0.045
  22012. }
  22013. },
  22014. },
  22015. [
  22016. {
  22017. name: "Normal",
  22018. height: math.unit(5 + 10 / 12, "feet"),
  22019. default: true
  22020. },
  22021. ]
  22022. ))
  22023. characterMakers.push(() => makeCharacter(
  22024. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22025. {
  22026. front: {
  22027. height: math.unit(6 + 7 / 12, "feet"),
  22028. weight: math.unit(208, "lb"),
  22029. name: "Front",
  22030. image: {
  22031. source: "./media/characters/chaska/front.svg",
  22032. extra: 332 / 319,
  22033. bottom: 0.015
  22034. }
  22035. },
  22036. },
  22037. [
  22038. {
  22039. name: "Normal",
  22040. height: math.unit(6 + 7 / 12, "feet"),
  22041. default: true
  22042. },
  22043. ]
  22044. ))
  22045. characterMakers.push(() => makeCharacter(
  22046. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22047. {
  22048. front: {
  22049. height: math.unit(5 + 8 / 12, "feet"),
  22050. weight: math.unit(208, "lb"),
  22051. name: "Front",
  22052. image: {
  22053. source: "./media/characters/enuk/front.svg",
  22054. extra: 437 / 406,
  22055. bottom: 0.02
  22056. }
  22057. },
  22058. },
  22059. [
  22060. {
  22061. name: "Normal",
  22062. height: math.unit(5 + 8 / 12, "feet"),
  22063. default: true
  22064. },
  22065. ]
  22066. ))
  22067. characterMakers.push(() => makeCharacter(
  22068. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22069. {
  22070. front: {
  22071. height: math.unit(5 + 10 / 12, "feet"),
  22072. weight: math.unit(252, "lb"),
  22073. name: "Front",
  22074. image: {
  22075. source: "./media/characters/bruun/front.svg",
  22076. extra: 197 / 187,
  22077. bottom: 0.012
  22078. }
  22079. },
  22080. },
  22081. [
  22082. {
  22083. name: "Normal",
  22084. height: math.unit(5 + 10 / 12, "feet"),
  22085. default: true
  22086. },
  22087. ]
  22088. ))
  22089. characterMakers.push(() => makeCharacter(
  22090. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22091. {
  22092. front: {
  22093. height: math.unit(6 + 10 / 12, "feet"),
  22094. weight: math.unit(255, "lb"),
  22095. name: "Front",
  22096. image: {
  22097. source: "./media/characters/alexeev/front.svg",
  22098. extra: 213 / 200,
  22099. bottom: 0.05
  22100. }
  22101. },
  22102. },
  22103. [
  22104. {
  22105. name: "Normal",
  22106. height: math.unit(6 + 10 / 12, "feet"),
  22107. default: true
  22108. },
  22109. ]
  22110. ))
  22111. characterMakers.push(() => makeCharacter(
  22112. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22113. {
  22114. front: {
  22115. height: math.unit(2 + 8 / 12, "feet"),
  22116. weight: math.unit(22, "lb"),
  22117. name: "Front",
  22118. image: {
  22119. source: "./media/characters/evelyn/front.svg",
  22120. extra: 208 / 180
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(2 + 8 / 12, "feet"),
  22128. default: true
  22129. },
  22130. ]
  22131. ))
  22132. characterMakers.push(() => makeCharacter(
  22133. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22134. {
  22135. front: {
  22136. height: math.unit(5 + 9 / 12, "feet"),
  22137. weight: math.unit(139, "lb"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/inca/front.svg",
  22141. extra: 294 / 291,
  22142. bottom: 0.03
  22143. }
  22144. },
  22145. },
  22146. [
  22147. {
  22148. name: "Normal",
  22149. height: math.unit(5 + 9 / 12, "feet"),
  22150. default: true
  22151. },
  22152. ]
  22153. ))
  22154. characterMakers.push(() => makeCharacter(
  22155. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22156. {
  22157. front: {
  22158. height: math.unit(6 + 3 / 12, "feet"),
  22159. weight: math.unit(185, "lb"),
  22160. name: "Front",
  22161. image: {
  22162. source: "./media/characters/mera/front.svg",
  22163. extra: 291 / 277,
  22164. bottom: 0.03
  22165. }
  22166. },
  22167. },
  22168. [
  22169. {
  22170. name: "Normal",
  22171. height: math.unit(6 + 3 / 12, "feet"),
  22172. default: true
  22173. },
  22174. ]
  22175. ))
  22176. characterMakers.push(() => makeCharacter(
  22177. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22178. {
  22179. front: {
  22180. height: math.unit(6 + 7 / 12, "feet"),
  22181. weight: math.unit(160, "lb"),
  22182. name: "Front",
  22183. image: {
  22184. source: "./media/characters/ceres/front.svg",
  22185. extra: 1023 / 950,
  22186. bottom: 0.027
  22187. }
  22188. },
  22189. back: {
  22190. height: math.unit(6 + 7 / 12, "feet"),
  22191. weight: math.unit(160, "lb"),
  22192. name: "Back",
  22193. image: {
  22194. source: "./media/characters/ceres/back.svg",
  22195. extra: 1023 / 950
  22196. }
  22197. },
  22198. },
  22199. [
  22200. {
  22201. name: "Normal",
  22202. height: math.unit(6 + 7 / 12, "feet"),
  22203. default: true
  22204. },
  22205. ]
  22206. ))
  22207. characterMakers.push(() => makeCharacter(
  22208. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22209. {
  22210. front: {
  22211. height: math.unit(5 + 10 / 12, "feet"),
  22212. weight: math.unit(150, "lb"),
  22213. name: "Front",
  22214. image: {
  22215. source: "./media/characters/kris/front.svg",
  22216. extra: 885 / 803,
  22217. bottom: 0.03
  22218. }
  22219. },
  22220. },
  22221. [
  22222. {
  22223. name: "Normal",
  22224. height: math.unit(5 + 10 / 12, "feet"),
  22225. default: true
  22226. },
  22227. ]
  22228. ))
  22229. characterMakers.push(() => makeCharacter(
  22230. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22231. {
  22232. dragon_front: {
  22233. height: math.unit(5, "feet"),
  22234. name: "Front",
  22235. image: {
  22236. source: "./media/characters/taluthus/dragon-front.svg",
  22237. extra: 1203/1098,
  22238. bottom: 46/1249
  22239. },
  22240. form: "dragon",
  22241. default: true
  22242. },
  22243. dragon_maw: {
  22244. height: math.unit(2.35, "feet"),
  22245. name: "Maw",
  22246. image: {
  22247. source: "./media/characters/taluthus/dragon-maw.svg"
  22248. },
  22249. form: "dragon",
  22250. },
  22251. kitsune_front: {
  22252. height: math.unit(7, "feet"),
  22253. name: "Front",
  22254. image: {
  22255. source: "./media/characters/taluthus/kitsune-front.svg",
  22256. extra: 900/841,
  22257. bottom: 65/965
  22258. },
  22259. form: "kitsune",
  22260. default: true
  22261. },
  22262. },
  22263. [
  22264. {
  22265. name: "Normal",
  22266. height: math.unit(5, "feet"),
  22267. form: "dragon",
  22268. default: true,
  22269. },
  22270. {
  22271. name: "Normal",
  22272. height: math.unit(7, "feet"),
  22273. form: "kitsune",
  22274. default: true
  22275. },
  22276. {
  22277. name: "Macro",
  22278. height: math.unit(300, "feet"),
  22279. allForms: true
  22280. },
  22281. ],
  22282. {
  22283. "dragon": {
  22284. name: "Dragon",
  22285. default: true
  22286. },
  22287. "kitsune": {
  22288. name: "Kitsune",
  22289. },
  22290. }
  22291. ))
  22292. characterMakers.push(() => makeCharacter(
  22293. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22294. {
  22295. front: {
  22296. height: math.unit(5 + 9 / 12, "feet"),
  22297. weight: math.unit(145, "lb"),
  22298. name: "Front",
  22299. image: {
  22300. source: "./media/characters/dawn/front.svg",
  22301. extra: 2094 / 2016,
  22302. bottom: 0.025
  22303. }
  22304. },
  22305. back: {
  22306. height: math.unit(5 + 9 / 12, "feet"),
  22307. weight: math.unit(160, "lb"),
  22308. name: "Back",
  22309. image: {
  22310. source: "./media/characters/dawn/back.svg",
  22311. extra: 2112 / 2080,
  22312. bottom: 0.005
  22313. }
  22314. },
  22315. },
  22316. [
  22317. {
  22318. name: "Normal",
  22319. height: math.unit(6 + 7 / 12, "feet"),
  22320. default: true
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22326. {
  22327. anthro: {
  22328. height: math.unit(8 + 3 / 12, "feet"),
  22329. weight: math.unit(450, "lb"),
  22330. name: "Anthro",
  22331. image: {
  22332. source: "./media/characters/arador/anthro.svg",
  22333. extra: 1835 / 1718,
  22334. bottom: 0.025
  22335. }
  22336. },
  22337. feral: {
  22338. height: math.unit(4, "feet"),
  22339. weight: math.unit(200, "lb"),
  22340. name: "Feral",
  22341. image: {
  22342. source: "./media/characters/arador/feral.svg",
  22343. extra: 1683 / 1514,
  22344. bottom: 0.07
  22345. }
  22346. },
  22347. },
  22348. [
  22349. {
  22350. name: "Normal",
  22351. height: math.unit(8 + 3 / 12, "feet")
  22352. },
  22353. {
  22354. name: "Macro",
  22355. height: math.unit(82.5, "feet"),
  22356. default: true
  22357. },
  22358. ]
  22359. ))
  22360. characterMakers.push(() => makeCharacter(
  22361. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22362. {
  22363. front: {
  22364. height: math.unit(5 + 10 / 12, "feet"),
  22365. weight: math.unit(125, "lb"),
  22366. name: "Front",
  22367. image: {
  22368. source: "./media/characters/dharsi/front.svg",
  22369. extra: 716 / 630,
  22370. bottom: 0.035
  22371. }
  22372. },
  22373. },
  22374. [
  22375. {
  22376. name: "Nano",
  22377. height: math.unit(100, "nm")
  22378. },
  22379. {
  22380. name: "Micro",
  22381. height: math.unit(2, "inches")
  22382. },
  22383. {
  22384. name: "Normal",
  22385. height: math.unit(5 + 10 / 12, "feet"),
  22386. default: true
  22387. },
  22388. {
  22389. name: "Macro",
  22390. height: math.unit(1000, "feet")
  22391. },
  22392. {
  22393. name: "Megamacro",
  22394. height: math.unit(10, "miles")
  22395. },
  22396. {
  22397. name: "Gigamacro",
  22398. height: math.unit(3000, "miles")
  22399. },
  22400. {
  22401. name: "Teramacro",
  22402. height: math.unit(500000, "miles")
  22403. },
  22404. {
  22405. name: "Teramacro+",
  22406. height: math.unit(30, "galaxies")
  22407. },
  22408. ]
  22409. ))
  22410. characterMakers.push(() => makeCharacter(
  22411. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22412. {
  22413. front: {
  22414. height: math.unit(6, "feet"),
  22415. weight: math.unit(150, "lb"),
  22416. name: "Front",
  22417. image: {
  22418. source: "./media/characters/deathy/front.svg",
  22419. extra: 1552 / 1463,
  22420. bottom: 0.025
  22421. }
  22422. },
  22423. side: {
  22424. height: math.unit(6, "feet"),
  22425. weight: math.unit(150, "lb"),
  22426. name: "Side",
  22427. image: {
  22428. source: "./media/characters/deathy/side.svg",
  22429. extra: 1604 / 1455,
  22430. bottom: 0.025
  22431. }
  22432. },
  22433. back: {
  22434. height: math.unit(6, "feet"),
  22435. weight: math.unit(150, "lb"),
  22436. name: "Back",
  22437. image: {
  22438. source: "./media/characters/deathy/back.svg",
  22439. extra: 1580 / 1463,
  22440. bottom: 0.005
  22441. }
  22442. },
  22443. },
  22444. [
  22445. {
  22446. name: "Micro",
  22447. height: math.unit(5, "millimeters")
  22448. },
  22449. {
  22450. name: "Normal",
  22451. height: math.unit(6 + 5 / 12, "feet"),
  22452. default: true
  22453. },
  22454. ]
  22455. ))
  22456. characterMakers.push(() => makeCharacter(
  22457. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22458. {
  22459. front: {
  22460. height: math.unit(16, "feet"),
  22461. weight: math.unit(4000, "lb"),
  22462. name: "Front",
  22463. image: {
  22464. source: "./media/characters/juniper/front.svg",
  22465. bottom: 0.04
  22466. }
  22467. },
  22468. },
  22469. [
  22470. {
  22471. name: "Normal",
  22472. height: math.unit(16, "feet"),
  22473. default: true
  22474. },
  22475. ]
  22476. ))
  22477. characterMakers.push(() => makeCharacter(
  22478. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22479. {
  22480. front: {
  22481. height: math.unit(6, "feet"),
  22482. weight: math.unit(150, "lb"),
  22483. name: "Front",
  22484. image: {
  22485. source: "./media/characters/hipster/front.svg",
  22486. extra: 1312 / 1209,
  22487. bottom: 0.025
  22488. }
  22489. },
  22490. back: {
  22491. height: math.unit(6, "feet"),
  22492. weight: math.unit(150, "lb"),
  22493. name: "Back",
  22494. image: {
  22495. source: "./media/characters/hipster/back.svg",
  22496. extra: 1281 / 1196,
  22497. bottom: 0.01
  22498. }
  22499. },
  22500. },
  22501. [
  22502. {
  22503. name: "Micro",
  22504. height: math.unit(1, "mm")
  22505. },
  22506. {
  22507. name: "Normal",
  22508. height: math.unit(4, "inches"),
  22509. default: true
  22510. },
  22511. {
  22512. name: "Macro",
  22513. height: math.unit(500, "feet")
  22514. },
  22515. {
  22516. name: "Megamacro",
  22517. height: math.unit(1000, "miles")
  22518. },
  22519. ]
  22520. ))
  22521. characterMakers.push(() => makeCharacter(
  22522. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22523. {
  22524. front: {
  22525. height: math.unit(6, "feet"),
  22526. weight: math.unit(150, "lb"),
  22527. name: "Front",
  22528. image: {
  22529. source: "./media/characters/tendirmuldr/front.svg",
  22530. extra: 1878 / 1772,
  22531. bottom: 0.015
  22532. }
  22533. },
  22534. },
  22535. [
  22536. {
  22537. name: "Megamacro",
  22538. height: math.unit(1500, "miles"),
  22539. default: true
  22540. },
  22541. ]
  22542. ))
  22543. characterMakers.push(() => makeCharacter(
  22544. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22545. {
  22546. front: {
  22547. height: math.unit(14, "feet"),
  22548. weight: math.unit(12000, "lb"),
  22549. name: "Front",
  22550. image: {
  22551. source: "./media/characters/mort/front.svg",
  22552. extra: 365 / 318,
  22553. bottom: 0.01
  22554. }
  22555. },
  22556. side: {
  22557. height: math.unit(14, "feet"),
  22558. weight: math.unit(12000, "lb"),
  22559. name: "Side",
  22560. image: {
  22561. source: "./media/characters/mort/side.svg",
  22562. extra: 365 / 318,
  22563. bottom: 0.052
  22564. },
  22565. default: true
  22566. },
  22567. back: {
  22568. height: math.unit(14, "feet"),
  22569. weight: math.unit(12000, "lb"),
  22570. name: "Back",
  22571. image: {
  22572. source: "./media/characters/mort/back.svg",
  22573. extra: 371 / 332,
  22574. bottom: 0.18
  22575. }
  22576. },
  22577. },
  22578. [
  22579. {
  22580. name: "Normal",
  22581. height: math.unit(14, "feet"),
  22582. default: true
  22583. },
  22584. ]
  22585. ))
  22586. characterMakers.push(() => makeCharacter(
  22587. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22588. {
  22589. front: {
  22590. height: math.unit(8, "feet"),
  22591. weight: math.unit(1, "ton"),
  22592. name: "Front",
  22593. image: {
  22594. source: "./media/characters/lycoa/front.svg",
  22595. extra: 1836/1728,
  22596. bottom: 81/1917
  22597. }
  22598. },
  22599. back: {
  22600. height: math.unit(8, "feet"),
  22601. weight: math.unit(1, "ton"),
  22602. name: "Back",
  22603. image: {
  22604. source: "./media/characters/lycoa/back.svg",
  22605. extra: 1785/1720,
  22606. bottom: 91/1876
  22607. }
  22608. },
  22609. head: {
  22610. height: math.unit(1.6243, "feet"),
  22611. name: "Head",
  22612. image: {
  22613. source: "./media/characters/lycoa/head.svg",
  22614. extra: 1011/782,
  22615. bottom: 0/1011
  22616. }
  22617. },
  22618. tailmaw: {
  22619. height: math.unit(1.9, "feet"),
  22620. name: "Tailmaw",
  22621. image: {
  22622. source: "./media/characters/lycoa/tailmaw.svg"
  22623. }
  22624. },
  22625. tentacles: {
  22626. height: math.unit(2.1, "feet"),
  22627. name: "Tentacles",
  22628. image: {
  22629. source: "./media/characters/lycoa/tentacles.svg"
  22630. }
  22631. },
  22632. dick: {
  22633. height: math.unit(1.73, "feet"),
  22634. name: "Dick",
  22635. image: {
  22636. source: "./media/characters/lycoa/dick.svg"
  22637. }
  22638. },
  22639. },
  22640. [
  22641. {
  22642. name: "Normal",
  22643. height: math.unit(8, "feet"),
  22644. default: true
  22645. },
  22646. {
  22647. name: "Macro",
  22648. height: math.unit(30, "feet")
  22649. },
  22650. ]
  22651. ))
  22652. characterMakers.push(() => makeCharacter(
  22653. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22654. {
  22655. front: {
  22656. height: math.unit(4 + 2 / 12, "feet"),
  22657. weight: math.unit(70, "lb"),
  22658. name: "Front",
  22659. image: {
  22660. source: "./media/characters/naldara/front.svg",
  22661. extra: 1664/1387,
  22662. bottom: 81/1745
  22663. },
  22664. form: "anthro",
  22665. default: true
  22666. },
  22667. naga: {
  22668. height: math.unit(20, "feet"),
  22669. weight: math.unit(15000, "kg"),
  22670. name: "Front",
  22671. image: {
  22672. source: "./media/characters/naldara/naga.svg",
  22673. extra: 1590/1396,
  22674. bottom: 285/1875
  22675. },
  22676. form: "naga",
  22677. default: true
  22678. },
  22679. },
  22680. [
  22681. {
  22682. name: "Normal",
  22683. height: math.unit(4 + 2 / 12, "feet"),
  22684. form: "anthro",
  22685. default: true
  22686. },
  22687. {
  22688. name: "Normal",
  22689. height: math.unit(20, "feet"),
  22690. form: "naga",
  22691. default: true
  22692. },
  22693. ],
  22694. {
  22695. "anthro": {
  22696. name: "Anthro",
  22697. default: true
  22698. },
  22699. "naga": {
  22700. name: "Naga"
  22701. }
  22702. }
  22703. ))
  22704. characterMakers.push(() => makeCharacter(
  22705. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22706. {
  22707. front: {
  22708. height: math.unit(13 + 7 / 12, "feet"),
  22709. weight: math.unit(1500, "lb"),
  22710. name: "Front",
  22711. image: {
  22712. source: "./media/characters/briar/front.svg",
  22713. extra: 1223/1157,
  22714. bottom: 123/1346
  22715. }
  22716. },
  22717. },
  22718. [
  22719. {
  22720. name: "Normal",
  22721. height: math.unit(13 + 7 / 12, "feet"),
  22722. default: true
  22723. },
  22724. ]
  22725. ))
  22726. characterMakers.push(() => makeCharacter(
  22727. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22728. {
  22729. side: {
  22730. height: math.unit(16, "feet"),
  22731. weight: math.unit(500, "lb"),
  22732. name: "Side",
  22733. image: {
  22734. source: "./media/characters/vanguard/side.svg",
  22735. extra: 1022/914,
  22736. bottom: 30/1052
  22737. }
  22738. },
  22739. sideAlt: {
  22740. height: math.unit(10, "feet"),
  22741. weight: math.unit(500, "lb"),
  22742. name: "Side (Alt)",
  22743. image: {
  22744. source: "./media/characters/vanguard/side-alt.svg",
  22745. extra: 502 / 425,
  22746. bottom: 0.087
  22747. }
  22748. },
  22749. },
  22750. [
  22751. {
  22752. name: "Normal",
  22753. height: math.unit(17.71, "feet"),
  22754. default: true
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22760. {
  22761. front: {
  22762. height: math.unit(7.5, "feet"),
  22763. weight: math.unit(2, "lb"),
  22764. name: "Front",
  22765. image: {
  22766. source: "./media/characters/artemis/work-safe-front.svg",
  22767. extra: 1192 / 1075,
  22768. bottom: 0.07
  22769. },
  22770. form: "work-safe",
  22771. default: true
  22772. },
  22773. frontNsfw: {
  22774. height: math.unit(7.5, "feet"),
  22775. weight: math.unit(2, "lb"),
  22776. name: "Front",
  22777. image: {
  22778. source: "./media/characters/artemis/calibrating-front.svg",
  22779. extra: 1192 / 1075,
  22780. bottom: 0.07
  22781. },
  22782. form: "calibrating",
  22783. default: true
  22784. },
  22785. frontNsfwer: {
  22786. height: math.unit(7.5, "feet"),
  22787. weight: math.unit(2, "lb"),
  22788. name: "Front",
  22789. image: {
  22790. source: "./media/characters/artemis/oversize-load-front.svg",
  22791. extra: 1192 / 1075,
  22792. bottom: 0.07
  22793. },
  22794. form: "oversize-load",
  22795. default: true
  22796. },
  22797. side: {
  22798. height: math.unit(7.5, "feet"),
  22799. weight: math.unit(2, "lb"),
  22800. name: "Side",
  22801. image: {
  22802. source: "./media/characters/artemis/work-safe-side.svg",
  22803. extra: 1192 / 1075,
  22804. bottom: 0.07
  22805. },
  22806. form: "work-safe"
  22807. },
  22808. sideNsfw: {
  22809. height: math.unit(7.5, "feet"),
  22810. weight: math.unit(2, "lb"),
  22811. name: "Side",
  22812. image: {
  22813. source: "./media/characters/artemis/calibrating-side.svg",
  22814. extra: 1192 / 1075,
  22815. bottom: 0.07
  22816. },
  22817. form: "calibrating"
  22818. },
  22819. sideNsfwer: {
  22820. height: math.unit(7.5, "feet"),
  22821. weight: math.unit(2, "lb"),
  22822. name: "Side",
  22823. image: {
  22824. source: "./media/characters/artemis/oversize-load-side.svg",
  22825. extra: 1192 / 1075,
  22826. bottom: 0.07
  22827. },
  22828. form: "oversize-load"
  22829. },
  22830. maw: {
  22831. height: math.unit(1.1, "feet"),
  22832. name: "Maw",
  22833. image: {
  22834. source: "./media/characters/artemis/maw.svg"
  22835. },
  22836. form: "work-safe"
  22837. },
  22838. stomach: {
  22839. height: math.unit(0.95, "feet"),
  22840. name: "Stomach",
  22841. image: {
  22842. source: "./media/characters/artemis/stomach.svg"
  22843. },
  22844. form: "work-safe"
  22845. },
  22846. dickCanine: {
  22847. height: math.unit(1, "feet"),
  22848. name: "Dick (Canine)",
  22849. image: {
  22850. source: "./media/characters/artemis/dick-canine.svg"
  22851. },
  22852. form: "calibrating"
  22853. },
  22854. dickEquine: {
  22855. height: math.unit(0.85, "feet"),
  22856. name: "Dick (Equine)",
  22857. image: {
  22858. source: "./media/characters/artemis/dick-equine.svg"
  22859. },
  22860. form: "calibrating"
  22861. },
  22862. dickExotic: {
  22863. height: math.unit(0.85, "feet"),
  22864. name: "Dick (Exotic)",
  22865. image: {
  22866. source: "./media/characters/artemis/dick-exotic.svg"
  22867. },
  22868. form: "calibrating"
  22869. },
  22870. dickCanineBigger: {
  22871. height: math.unit(1 * 1.33, "feet"),
  22872. name: "Dick (Canine)",
  22873. image: {
  22874. source: "./media/characters/artemis/dick-canine.svg"
  22875. },
  22876. form: "oversize-load"
  22877. },
  22878. dickEquineBigger: {
  22879. height: math.unit(0.85 * 1.33, "feet"),
  22880. name: "Dick (Equine)",
  22881. image: {
  22882. source: "./media/characters/artemis/dick-equine.svg"
  22883. },
  22884. form: "oversize-load"
  22885. },
  22886. dickExoticBigger: {
  22887. height: math.unit(0.85 * 1.33, "feet"),
  22888. name: "Dick (Exotic)",
  22889. image: {
  22890. source: "./media/characters/artemis/dick-exotic.svg"
  22891. },
  22892. form: "oversize-load"
  22893. },
  22894. },
  22895. [
  22896. {
  22897. name: "Normal",
  22898. height: math.unit(7.5, "feet"),
  22899. form: "work-safe",
  22900. default: true
  22901. },
  22902. {
  22903. name: "Normal",
  22904. height: math.unit(7.5, "feet"),
  22905. form: "calibrating",
  22906. default: true
  22907. },
  22908. {
  22909. name: "Normal",
  22910. height: math.unit(7.5, "feet"),
  22911. form: "oversize-load",
  22912. default: true
  22913. },
  22914. {
  22915. name: "Enlarged",
  22916. height: math.unit(12, "feet"),
  22917. form: "work-safe",
  22918. },
  22919. {
  22920. name: "Enlarged",
  22921. height: math.unit(12, "feet"),
  22922. form: "calibrating",
  22923. },
  22924. {
  22925. name: "Enlarged",
  22926. height: math.unit(12, "feet"),
  22927. form: "oversize-load",
  22928. },
  22929. ],
  22930. {
  22931. "work-safe": {
  22932. name: "Work-Safe",
  22933. default: true
  22934. },
  22935. "calibrating": {
  22936. name: "Calibrating"
  22937. },
  22938. "oversize-load": {
  22939. name: "Oversize Load"
  22940. }
  22941. }
  22942. ))
  22943. characterMakers.push(() => makeCharacter(
  22944. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22945. {
  22946. front: {
  22947. height: math.unit(5 + 3 / 12, "feet"),
  22948. weight: math.unit(160, "lb"),
  22949. name: "Front",
  22950. image: {
  22951. source: "./media/characters/kira/front.svg",
  22952. extra: 906 / 786,
  22953. bottom: 0.01
  22954. }
  22955. },
  22956. back: {
  22957. height: math.unit(5 + 3 / 12, "feet"),
  22958. weight: math.unit(160, "lb"),
  22959. name: "Back",
  22960. image: {
  22961. source: "./media/characters/kira/back.svg",
  22962. extra: 882 / 757,
  22963. bottom: 0.005
  22964. }
  22965. },
  22966. frontDressed: {
  22967. height: math.unit(5 + 3 / 12, "feet"),
  22968. weight: math.unit(160, "lb"),
  22969. name: "Front (Dressed)",
  22970. image: {
  22971. source: "./media/characters/kira/front-dressed.svg",
  22972. extra: 906 / 786,
  22973. bottom: 0.01
  22974. }
  22975. },
  22976. beans: {
  22977. height: math.unit(0.92, "feet"),
  22978. name: "Beans",
  22979. image: {
  22980. source: "./media/characters/kira/beans.svg"
  22981. }
  22982. },
  22983. },
  22984. [
  22985. {
  22986. name: "Normal",
  22987. height: math.unit(5 + 3 / 12, "feet"),
  22988. default: true
  22989. },
  22990. ]
  22991. ))
  22992. characterMakers.push(() => makeCharacter(
  22993. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22994. {
  22995. front: {
  22996. height: math.unit(5 + 4 / 12, "feet"),
  22997. weight: math.unit(145, "lb"),
  22998. name: "Front",
  22999. image: {
  23000. source: "./media/characters/scramble/front.svg",
  23001. extra: 763 / 727,
  23002. bottom: 0.05
  23003. }
  23004. },
  23005. back: {
  23006. height: math.unit(5 + 4 / 12, "feet"),
  23007. weight: math.unit(145, "lb"),
  23008. name: "Back",
  23009. image: {
  23010. source: "./media/characters/scramble/back.svg",
  23011. extra: 826 / 737,
  23012. bottom: 0.002
  23013. }
  23014. },
  23015. },
  23016. [
  23017. {
  23018. name: "Normal",
  23019. height: math.unit(5 + 4 / 12, "feet"),
  23020. default: true
  23021. },
  23022. ]
  23023. ))
  23024. characterMakers.push(() => makeCharacter(
  23025. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23026. {
  23027. side: {
  23028. height: math.unit(6 + 2 / 12, "feet"),
  23029. weight: math.unit(190, "lb"),
  23030. name: "Side",
  23031. image: {
  23032. source: "./media/characters/biscuit/side.svg",
  23033. extra: 858 / 791,
  23034. bottom: 0.044
  23035. }
  23036. },
  23037. },
  23038. [
  23039. {
  23040. name: "Normal",
  23041. height: math.unit(6 + 2 / 12, "feet"),
  23042. default: true
  23043. },
  23044. ]
  23045. ))
  23046. characterMakers.push(() => makeCharacter(
  23047. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23048. {
  23049. front: {
  23050. height: math.unit(5 + 2 / 12, "feet"),
  23051. weight: math.unit(120, "lb"),
  23052. name: "Front",
  23053. image: {
  23054. source: "./media/characters/poffin/front.svg",
  23055. extra: 786 / 680,
  23056. bottom: 0.005
  23057. }
  23058. },
  23059. },
  23060. [
  23061. {
  23062. name: "Normal",
  23063. height: math.unit(5 + 2 / 12, "feet"),
  23064. default: true
  23065. },
  23066. ]
  23067. ))
  23068. characterMakers.push(() => makeCharacter(
  23069. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23070. {
  23071. front: {
  23072. height: math.unit(6 + 3 / 12, "feet"),
  23073. weight: math.unit(519, "lb"),
  23074. name: "Front",
  23075. image: {
  23076. source: "./media/characters/dhari/front.svg",
  23077. extra: 1048 / 946,
  23078. bottom: 0.015
  23079. }
  23080. },
  23081. back: {
  23082. height: math.unit(6 + 3 / 12, "feet"),
  23083. weight: math.unit(519, "lb"),
  23084. name: "Back",
  23085. image: {
  23086. source: "./media/characters/dhari/back.svg",
  23087. extra: 1048 / 931,
  23088. bottom: 0.005
  23089. }
  23090. },
  23091. frontDressed: {
  23092. height: math.unit(6 + 3 / 12, "feet"),
  23093. weight: math.unit(519, "lb"),
  23094. name: "Front (Dressed)",
  23095. image: {
  23096. source: "./media/characters/dhari/front-dressed.svg",
  23097. extra: 1713 / 1546,
  23098. bottom: 0.02
  23099. }
  23100. },
  23101. backDressed: {
  23102. height: math.unit(6 + 3 / 12, "feet"),
  23103. weight: math.unit(519, "lb"),
  23104. name: "Back (Dressed)",
  23105. image: {
  23106. source: "./media/characters/dhari/back-dressed.svg",
  23107. extra: 1699 / 1537,
  23108. bottom: 0.01
  23109. }
  23110. },
  23111. maw: {
  23112. height: math.unit(0.95, "feet"),
  23113. name: "Maw",
  23114. image: {
  23115. source: "./media/characters/dhari/maw.svg"
  23116. }
  23117. },
  23118. wereFront: {
  23119. height: math.unit(12 + 8 / 12, "feet"),
  23120. weight: math.unit(4000, "lb"),
  23121. name: "Front (Were)",
  23122. image: {
  23123. source: "./media/characters/dhari/were-front.svg",
  23124. extra: 1065 / 969,
  23125. bottom: 0.015
  23126. }
  23127. },
  23128. wereBack: {
  23129. height: math.unit(12 + 8 / 12, "feet"),
  23130. weight: math.unit(4000, "lb"),
  23131. name: "Back (Were)",
  23132. image: {
  23133. source: "./media/characters/dhari/were-back.svg",
  23134. extra: 1065 / 969,
  23135. bottom: 0.012
  23136. }
  23137. },
  23138. wereMaw: {
  23139. height: math.unit(0.625, "meters"),
  23140. name: "Maw (Were)",
  23141. image: {
  23142. source: "./media/characters/dhari/were-maw.svg"
  23143. }
  23144. },
  23145. },
  23146. [
  23147. {
  23148. name: "Normal",
  23149. height: math.unit(6 + 3 / 12, "feet"),
  23150. default: true
  23151. },
  23152. ]
  23153. ))
  23154. characterMakers.push(() => makeCharacter(
  23155. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23156. {
  23157. anthro: {
  23158. height: math.unit(5 + 7 / 12, "feet"),
  23159. weight: math.unit(175, "lb"),
  23160. name: "Anthro",
  23161. image: {
  23162. source: "./media/characters/rena-dyne/anthro.svg",
  23163. extra: 1849 / 1785,
  23164. bottom: 0.005
  23165. }
  23166. },
  23167. taur: {
  23168. height: math.unit(15 + 6 / 12, "feet"),
  23169. weight: math.unit(8000, "lb"),
  23170. name: "Taur",
  23171. image: {
  23172. source: "./media/characters/rena-dyne/taur.svg",
  23173. extra: 2315 / 2234,
  23174. bottom: 0.033
  23175. }
  23176. },
  23177. },
  23178. [
  23179. {
  23180. name: "Normal",
  23181. height: math.unit(5 + 7 / 12, "feet"),
  23182. default: true
  23183. },
  23184. ]
  23185. ))
  23186. characterMakers.push(() => makeCharacter(
  23187. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23188. {
  23189. front: {
  23190. height: math.unit(8, "feet"),
  23191. weight: math.unit(600, "lb"),
  23192. name: "Front",
  23193. image: {
  23194. source: "./media/characters/weremeep/front.svg",
  23195. extra: 970/849,
  23196. bottom: 7/977
  23197. }
  23198. },
  23199. },
  23200. [
  23201. {
  23202. name: "Normal",
  23203. height: math.unit(8, "feet"),
  23204. default: true
  23205. },
  23206. {
  23207. name: "Lorg",
  23208. height: math.unit(12, "feet")
  23209. },
  23210. {
  23211. name: "Oh Lawd She Comin'",
  23212. height: math.unit(20, "feet")
  23213. },
  23214. ]
  23215. ))
  23216. characterMakers.push(() => makeCharacter(
  23217. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23218. {
  23219. front: {
  23220. height: math.unit(4, "feet"),
  23221. weight: math.unit(90, "lb"),
  23222. name: "Front",
  23223. image: {
  23224. source: "./media/characters/reza/front.svg",
  23225. extra: 1183 / 1111,
  23226. bottom: 0.017
  23227. }
  23228. },
  23229. back: {
  23230. height: math.unit(4, "feet"),
  23231. weight: math.unit(90, "lb"),
  23232. name: "Back",
  23233. image: {
  23234. source: "./media/characters/reza/back.svg",
  23235. extra: 1183 / 1111,
  23236. bottom: 0.01
  23237. }
  23238. },
  23239. drake: {
  23240. height: math.unit(30, "feet"),
  23241. weight: math.unit(246960, "lb"),
  23242. name: "Drake",
  23243. image: {
  23244. source: "./media/characters/reza/drake.svg",
  23245. extra: 2350 / 2024,
  23246. bottom: 60.7 / 2403
  23247. }
  23248. },
  23249. },
  23250. [
  23251. {
  23252. name: "Normal",
  23253. height: math.unit(4, "feet"),
  23254. default: true
  23255. },
  23256. ]
  23257. ))
  23258. characterMakers.push(() => makeCharacter(
  23259. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23260. {
  23261. side: {
  23262. height: math.unit(15, "feet"),
  23263. weight: math.unit(14, "tons"),
  23264. name: "Side",
  23265. image: {
  23266. source: "./media/characters/athea/side.svg",
  23267. extra: 960 / 540,
  23268. bottom: 0.003
  23269. }
  23270. },
  23271. sitting: {
  23272. height: math.unit(6 * 2.85, "feet"),
  23273. weight: math.unit(14, "tons"),
  23274. name: "Sitting",
  23275. image: {
  23276. source: "./media/characters/athea/sitting.svg",
  23277. extra: 621 / 581,
  23278. bottom: 0.075
  23279. }
  23280. },
  23281. maw: {
  23282. height: math.unit(7.59498031496063, "feet"),
  23283. name: "Maw",
  23284. image: {
  23285. source: "./media/characters/athea/maw.svg"
  23286. }
  23287. },
  23288. },
  23289. [
  23290. {
  23291. name: "Lap Cat",
  23292. height: math.unit(2.5, "feet")
  23293. },
  23294. {
  23295. name: "Minimacro",
  23296. height: math.unit(15, "feet"),
  23297. default: true
  23298. },
  23299. {
  23300. name: "Macro",
  23301. height: math.unit(120, "feet")
  23302. },
  23303. {
  23304. name: "Macro+",
  23305. height: math.unit(640, "feet")
  23306. },
  23307. {
  23308. name: "Colossus",
  23309. height: math.unit(2.2, "miles")
  23310. },
  23311. ]
  23312. ))
  23313. characterMakers.push(() => makeCharacter(
  23314. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23315. {
  23316. front: {
  23317. height: math.unit(8 + 8 / 12, "feet"),
  23318. weight: math.unit(130, "kg"),
  23319. name: "Front",
  23320. image: {
  23321. source: "./media/characters/seroko/front.svg",
  23322. extra: 1385 / 1280,
  23323. bottom: 0.025
  23324. }
  23325. },
  23326. back: {
  23327. height: math.unit(8 + 8 / 12, "feet"),
  23328. weight: math.unit(130, "kg"),
  23329. name: "Back",
  23330. image: {
  23331. source: "./media/characters/seroko/back.svg",
  23332. extra: 1369 / 1238,
  23333. bottom: 0.018
  23334. }
  23335. },
  23336. frontDressed: {
  23337. height: math.unit(8 + 8 / 12, "feet"),
  23338. weight: math.unit(130, "kg"),
  23339. name: "Front (Dressed)",
  23340. image: {
  23341. source: "./media/characters/seroko/front-dressed.svg",
  23342. extra: 1366 / 1275,
  23343. bottom: 0.03
  23344. }
  23345. },
  23346. },
  23347. [
  23348. {
  23349. name: "Normal",
  23350. height: math.unit(8 + 8 / 12, "feet"),
  23351. default: true
  23352. },
  23353. ]
  23354. ))
  23355. characterMakers.push(() => makeCharacter(
  23356. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23357. {
  23358. front: {
  23359. height: math.unit(5.5, "feet"),
  23360. weight: math.unit(160, "lb"),
  23361. name: "Front",
  23362. image: {
  23363. source: "./media/characters/quatzi/front.svg",
  23364. extra: 2346 / 2242,
  23365. bottom: 0.015
  23366. }
  23367. },
  23368. },
  23369. [
  23370. {
  23371. name: "Normal",
  23372. height: math.unit(5.5, "feet"),
  23373. default: true
  23374. },
  23375. {
  23376. name: "Big",
  23377. height: math.unit(7.7, "feet")
  23378. },
  23379. ]
  23380. ))
  23381. characterMakers.push(() => makeCharacter(
  23382. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23383. {
  23384. front: {
  23385. height: math.unit(5 + 11 / 12, "feet"),
  23386. weight: math.unit(180, "lb"),
  23387. name: "Front",
  23388. image: {
  23389. source: "./media/characters/sen/front.svg",
  23390. extra: 1321 / 1254,
  23391. bottom: 0.015
  23392. }
  23393. },
  23394. side: {
  23395. height: math.unit(5 + 11 / 12, "feet"),
  23396. weight: math.unit(180, "lb"),
  23397. name: "Side",
  23398. image: {
  23399. source: "./media/characters/sen/side.svg",
  23400. extra: 1321 / 1254,
  23401. bottom: 0.007
  23402. }
  23403. },
  23404. back: {
  23405. height: math.unit(5 + 11 / 12, "feet"),
  23406. weight: math.unit(180, "lb"),
  23407. name: "Back",
  23408. image: {
  23409. source: "./media/characters/sen/back.svg",
  23410. extra: 1321 / 1254
  23411. }
  23412. },
  23413. },
  23414. [
  23415. {
  23416. name: "Normal",
  23417. height: math.unit(5 + 11 / 12, "feet"),
  23418. default: true
  23419. },
  23420. ]
  23421. ))
  23422. characterMakers.push(() => makeCharacter(
  23423. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23424. {
  23425. front: {
  23426. height: math.unit(166.6, "cm"),
  23427. weight: math.unit(66.6, "kg"),
  23428. name: "Front",
  23429. image: {
  23430. source: "./media/characters/fruity/front.svg",
  23431. extra: 1510 / 1386,
  23432. bottom: 0.04
  23433. }
  23434. },
  23435. back: {
  23436. height: math.unit(166.6, "cm"),
  23437. weight: math.unit(66.6, "lb"),
  23438. name: "Back",
  23439. image: {
  23440. source: "./media/characters/fruity/back.svg",
  23441. extra: 1563 / 1435,
  23442. bottom: 0.005
  23443. }
  23444. },
  23445. },
  23446. [
  23447. {
  23448. name: "Normal",
  23449. height: math.unit(166.6, "cm"),
  23450. default: true
  23451. },
  23452. {
  23453. name: "Demonic",
  23454. height: math.unit(166.6, "feet")
  23455. },
  23456. ]
  23457. ))
  23458. characterMakers.push(() => makeCharacter(
  23459. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23460. {
  23461. side: {
  23462. height: math.unit(10, "feet"),
  23463. weight: math.unit(500, "lb"),
  23464. name: "Side",
  23465. image: {
  23466. source: "./media/characters/zost/side.svg",
  23467. extra: 2870/2533,
  23468. bottom: 252/3122
  23469. }
  23470. },
  23471. mawFront: {
  23472. height: math.unit(1.08, "meters"),
  23473. name: "Maw (Front)",
  23474. image: {
  23475. source: "./media/characters/zost/maw-front.svg"
  23476. }
  23477. },
  23478. mawSide: {
  23479. height: math.unit(2.66, "feet"),
  23480. name: "Maw (Side)",
  23481. image: {
  23482. source: "./media/characters/zost/maw-side.svg"
  23483. }
  23484. },
  23485. wingspan: {
  23486. height: math.unit(7.4, "feet"),
  23487. name: "Wingspan",
  23488. image: {
  23489. source: "./media/characters/zost/wingspan.svg"
  23490. }
  23491. },
  23492. },
  23493. [
  23494. {
  23495. name: "Normal",
  23496. height: math.unit(10, "feet"),
  23497. default: true
  23498. },
  23499. ]
  23500. ))
  23501. characterMakers.push(() => makeCharacter(
  23502. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23503. {
  23504. front: {
  23505. height: math.unit(5 + 4 / 12, "feet"),
  23506. weight: math.unit(120, "lb"),
  23507. name: "Front",
  23508. image: {
  23509. source: "./media/characters/luci/front.svg",
  23510. extra: 1985 / 1884,
  23511. bottom: 0.04
  23512. }
  23513. },
  23514. back: {
  23515. height: math.unit(5 + 4 / 12, "feet"),
  23516. weight: math.unit(120, "lb"),
  23517. name: "Back",
  23518. image: {
  23519. source: "./media/characters/luci/back.svg",
  23520. extra: 1892 / 1791,
  23521. bottom: 0.002
  23522. }
  23523. },
  23524. },
  23525. [
  23526. {
  23527. name: "Normal",
  23528. height: math.unit(5 + 4 / 12, "feet"),
  23529. default: true
  23530. },
  23531. ]
  23532. ))
  23533. characterMakers.push(() => makeCharacter(
  23534. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23535. {
  23536. front: {
  23537. height: math.unit(1500, "feet"),
  23538. weight: math.unit(3.8e6, "tons"),
  23539. name: "Front",
  23540. image: {
  23541. source: "./media/characters/2th/front.svg",
  23542. extra: 3489 / 3350,
  23543. bottom: 0.1
  23544. }
  23545. },
  23546. foot: {
  23547. height: math.unit(461, "feet"),
  23548. name: "Foot",
  23549. image: {
  23550. source: "./media/characters/2th/foot.svg"
  23551. }
  23552. },
  23553. },
  23554. [
  23555. {
  23556. name: "\"Micro\"",
  23557. height: math.unit(15 + 7 / 12, "feet")
  23558. },
  23559. {
  23560. name: "Normal",
  23561. height: math.unit(1500, "feet"),
  23562. default: true
  23563. },
  23564. {
  23565. name: "Macro",
  23566. height: math.unit(5000, "feet")
  23567. },
  23568. {
  23569. name: "Megamacro",
  23570. height: math.unit(15, "miles")
  23571. },
  23572. {
  23573. name: "Gigamacro",
  23574. height: math.unit(4000, "miles")
  23575. },
  23576. {
  23577. name: "Galactic",
  23578. height: math.unit(50, "AU")
  23579. },
  23580. ]
  23581. ))
  23582. characterMakers.push(() => makeCharacter(
  23583. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23584. {
  23585. front: {
  23586. height: math.unit(5 + 6 / 12, "feet"),
  23587. weight: math.unit(220, "lb"),
  23588. name: "Front",
  23589. image: {
  23590. source: "./media/characters/amethyst/front.svg",
  23591. extra: 2078 / 2040,
  23592. bottom: 0.045
  23593. }
  23594. },
  23595. back: {
  23596. height: math.unit(5 + 6 / 12, "feet"),
  23597. weight: math.unit(220, "lb"),
  23598. name: "Back",
  23599. image: {
  23600. source: "./media/characters/amethyst/back.svg",
  23601. extra: 2021 / 1989,
  23602. bottom: 0.02
  23603. }
  23604. },
  23605. },
  23606. [
  23607. {
  23608. name: "Normal",
  23609. height: math.unit(5 + 6 / 12, "feet"),
  23610. default: true
  23611. },
  23612. ]
  23613. ))
  23614. characterMakers.push(() => makeCharacter(
  23615. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23616. {
  23617. front: {
  23618. height: math.unit(4 + 11 / 12, "feet"),
  23619. weight: math.unit(120, "lb"),
  23620. name: "Front",
  23621. image: {
  23622. source: "./media/characters/yumi-akiyama/front.svg",
  23623. extra: 1327 / 1235,
  23624. bottom: 0.02
  23625. }
  23626. },
  23627. back: {
  23628. height: math.unit(4 + 11 / 12, "feet"),
  23629. weight: math.unit(120, "lb"),
  23630. name: "Back",
  23631. image: {
  23632. source: "./media/characters/yumi-akiyama/back.svg",
  23633. extra: 1287 / 1245,
  23634. bottom: 0.002
  23635. }
  23636. },
  23637. },
  23638. [
  23639. {
  23640. name: "Galactic",
  23641. height: math.unit(50, "galaxies"),
  23642. default: true
  23643. },
  23644. {
  23645. name: "Universal",
  23646. height: math.unit(100, "universes")
  23647. },
  23648. ]
  23649. ))
  23650. characterMakers.push(() => makeCharacter(
  23651. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23652. {
  23653. front: {
  23654. height: math.unit(8, "feet"),
  23655. weight: math.unit(500, "lb"),
  23656. name: "Front",
  23657. image: {
  23658. source: "./media/characters/rifter-yrmori/front.svg",
  23659. extra: 1180 / 1125,
  23660. bottom: 0.02
  23661. }
  23662. },
  23663. back: {
  23664. height: math.unit(8, "feet"),
  23665. weight: math.unit(500, "lb"),
  23666. name: "Back",
  23667. image: {
  23668. source: "./media/characters/rifter-yrmori/back.svg",
  23669. extra: 1190 / 1145,
  23670. bottom: 0.001
  23671. }
  23672. },
  23673. wings: {
  23674. height: math.unit(7.75, "feet"),
  23675. weight: math.unit(500, "lb"),
  23676. name: "Wings",
  23677. image: {
  23678. source: "./media/characters/rifter-yrmori/wings.svg",
  23679. extra: 1357 / 1285
  23680. }
  23681. },
  23682. maw: {
  23683. height: math.unit(0.8, "feet"),
  23684. name: "Maw",
  23685. image: {
  23686. source: "./media/characters/rifter-yrmori/maw.svg"
  23687. }
  23688. },
  23689. mawfront: {
  23690. height: math.unit(1.45, "feet"),
  23691. name: "Maw (Front)",
  23692. image: {
  23693. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23694. }
  23695. },
  23696. },
  23697. [
  23698. {
  23699. name: "Normal",
  23700. height: math.unit(8, "feet"),
  23701. default: true
  23702. },
  23703. {
  23704. name: "Macro",
  23705. height: math.unit(42, "meters")
  23706. },
  23707. ]
  23708. ))
  23709. characterMakers.push(() => makeCharacter(
  23710. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23711. {
  23712. were: {
  23713. height: math.unit(25 + 6 / 12, "feet"),
  23714. weight: math.unit(10000, "lb"),
  23715. name: "Were",
  23716. image: {
  23717. source: "./media/characters/tahajin/were.svg",
  23718. extra: 801 / 770,
  23719. bottom: 0.042
  23720. }
  23721. },
  23722. aquatic: {
  23723. height: math.unit(6 + 4 / 12, "feet"),
  23724. weight: math.unit(160, "lb"),
  23725. name: "Aquatic",
  23726. image: {
  23727. source: "./media/characters/tahajin/aquatic.svg",
  23728. extra: 572 / 542,
  23729. bottom: 0.04
  23730. }
  23731. },
  23732. chow: {
  23733. height: math.unit(8 + 11 / 12, "feet"),
  23734. weight: math.unit(450, "lb"),
  23735. name: "Chow",
  23736. image: {
  23737. source: "./media/characters/tahajin/chow.svg",
  23738. extra: 660 / 640,
  23739. bottom: 0.015
  23740. }
  23741. },
  23742. demiNaga: {
  23743. height: math.unit(6 + 8 / 12, "feet"),
  23744. weight: math.unit(300, "lb"),
  23745. name: "Demi Naga",
  23746. image: {
  23747. source: "./media/characters/tahajin/demi-naga.svg",
  23748. extra: 643 / 615,
  23749. bottom: 0.1
  23750. }
  23751. },
  23752. data: {
  23753. height: math.unit(5, "inches"),
  23754. weight: math.unit(0.1, "lb"),
  23755. name: "Data",
  23756. image: {
  23757. source: "./media/characters/tahajin/data.svg"
  23758. }
  23759. },
  23760. fluu: {
  23761. height: math.unit(5 + 7 / 12, "feet"),
  23762. weight: math.unit(140, "lb"),
  23763. name: "Fluu",
  23764. image: {
  23765. source: "./media/characters/tahajin/fluu.svg",
  23766. extra: 628 / 592,
  23767. bottom: 0.02
  23768. }
  23769. },
  23770. starWarrior: {
  23771. height: math.unit(4 + 5 / 12, "feet"),
  23772. weight: math.unit(50, "lb"),
  23773. name: "Star Warrior",
  23774. image: {
  23775. source: "./media/characters/tahajin/star-warrior.svg"
  23776. }
  23777. },
  23778. },
  23779. [
  23780. {
  23781. name: "Normal",
  23782. height: math.unit(25 + 6 / 12, "feet"),
  23783. default: true
  23784. },
  23785. ]
  23786. ))
  23787. characterMakers.push(() => makeCharacter(
  23788. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23789. {
  23790. front: {
  23791. height: math.unit(8, "feet"),
  23792. weight: math.unit(350, "lb"),
  23793. name: "Front",
  23794. image: {
  23795. source: "./media/characters/gabira/front.svg",
  23796. extra: 1261/1154,
  23797. bottom: 51/1312
  23798. }
  23799. },
  23800. back: {
  23801. height: math.unit(8, "feet"),
  23802. weight: math.unit(350, "lb"),
  23803. name: "Back",
  23804. image: {
  23805. source: "./media/characters/gabira/back.svg",
  23806. extra: 1265/1163,
  23807. bottom: 46/1311
  23808. }
  23809. },
  23810. head: {
  23811. height: math.unit(2.85, "feet"),
  23812. name: "Head",
  23813. image: {
  23814. source: "./media/characters/gabira/head.svg"
  23815. }
  23816. },
  23817. },
  23818. [
  23819. {
  23820. name: "Normal",
  23821. height: math.unit(8, "feet"),
  23822. default: true
  23823. },
  23824. ]
  23825. ))
  23826. characterMakers.push(() => makeCharacter(
  23827. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23828. {
  23829. front: {
  23830. height: math.unit(5 + 3 / 12, "feet"),
  23831. weight: math.unit(137, "lb"),
  23832. name: "Front",
  23833. image: {
  23834. source: "./media/characters/sasha-katraine/front.svg",
  23835. extra: 1745/1694,
  23836. bottom: 37/1782
  23837. }
  23838. },
  23839. back: {
  23840. height: math.unit(5 + 3 / 12, "feet"),
  23841. weight: math.unit(137, "lb"),
  23842. name: "Back",
  23843. image: {
  23844. source: "./media/characters/sasha-katraine/back.svg",
  23845. extra: 1776/1699,
  23846. bottom: 26/1802
  23847. }
  23848. },
  23849. },
  23850. [
  23851. {
  23852. name: "Micro",
  23853. height: math.unit(5, "inches")
  23854. },
  23855. {
  23856. name: "Normal",
  23857. height: math.unit(5 + 3 / 12, "feet"),
  23858. default: true
  23859. },
  23860. ]
  23861. ))
  23862. characterMakers.push(() => makeCharacter(
  23863. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23864. {
  23865. side: {
  23866. height: math.unit(4, "inches"),
  23867. weight: math.unit(200, "grams"),
  23868. name: "Side",
  23869. image: {
  23870. source: "./media/characters/der/side.svg",
  23871. extra: 719 / 400,
  23872. bottom: 30.6 / 749.9187
  23873. }
  23874. },
  23875. },
  23876. [
  23877. {
  23878. name: "Micro",
  23879. height: math.unit(4, "inches"),
  23880. default: true
  23881. },
  23882. ]
  23883. ))
  23884. characterMakers.push(() => makeCharacter(
  23885. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23886. {
  23887. side: {
  23888. height: math.unit(30, "meters"),
  23889. weight: math.unit(700, "tonnes"),
  23890. name: "Side",
  23891. image: {
  23892. source: "./media/characters/fixerdragon/side.svg",
  23893. extra: (1293.0514 - 116.03) / 1106.86,
  23894. bottom: 116.03 / 1293.0514
  23895. }
  23896. },
  23897. },
  23898. [
  23899. {
  23900. name: "Planck",
  23901. height: math.unit(1.6e-35, "meters")
  23902. },
  23903. {
  23904. name: "Micro",
  23905. height: math.unit(0.4, "meters")
  23906. },
  23907. {
  23908. name: "Normal",
  23909. height: math.unit(30, "meters"),
  23910. default: true
  23911. },
  23912. {
  23913. name: "Megamacro",
  23914. height: math.unit(1.2, "megameters")
  23915. },
  23916. {
  23917. name: "Teramacro",
  23918. height: math.unit(130, "terameters")
  23919. },
  23920. {
  23921. name: "Yottamacro",
  23922. height: math.unit(6200, "yottameters")
  23923. },
  23924. ]
  23925. ));
  23926. characterMakers.push(() => makeCharacter(
  23927. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23928. {
  23929. front: {
  23930. height: math.unit(8, "feet"),
  23931. weight: math.unit(250, "lb"),
  23932. name: "Front",
  23933. image: {
  23934. source: "./media/characters/kite/front.svg",
  23935. extra: 2796 / 2659,
  23936. bottom: 0.002
  23937. }
  23938. },
  23939. },
  23940. [
  23941. {
  23942. name: "Normal",
  23943. height: math.unit(8, "feet"),
  23944. default: true
  23945. },
  23946. {
  23947. name: "Macro",
  23948. height: math.unit(360, "feet")
  23949. },
  23950. {
  23951. name: "Megamacro",
  23952. height: math.unit(1500, "feet")
  23953. },
  23954. ]
  23955. ))
  23956. characterMakers.push(() => makeCharacter(
  23957. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23958. {
  23959. anthro_front: {
  23960. height: math.unit(5 + 11/12, "feet"),
  23961. weight: math.unit(170, "lb"),
  23962. name: "Front",
  23963. image: {
  23964. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23965. extra: 1735/1585,
  23966. bottom: 96/1831
  23967. },
  23968. form: "anthro",
  23969. default: true
  23970. },
  23971. anthro_back: {
  23972. height: math.unit(5 + 11/12, "feet"),
  23973. weight: math.unit(170, "lb"),
  23974. name: "Back",
  23975. image: {
  23976. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23977. extra: 1749/1607,
  23978. bottom: 28/1777
  23979. },
  23980. form: "anthro"
  23981. },
  23982. anthro_male: {
  23983. height: math.unit(5 + 11/12, "feet"),
  23984. weight: math.unit(170, "lb"),
  23985. name: "Male",
  23986. image: {
  23987. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23988. extra: 1855/1713,
  23989. bottom: 63/1918
  23990. },
  23991. form: "anthro"
  23992. },
  23993. taur_front: {
  23994. height: math.unit(5 + 7/12, "feet"),
  23995. weight: math.unit(170, "lb"),
  23996. name: "Front",
  23997. image: {
  23998. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23999. extra: 1151/1059,
  24000. bottom: 356/1507
  24001. },
  24002. form: "taur",
  24003. default: true
  24004. },
  24005. anthro_frontDressed: {
  24006. height: math.unit(5 + 11/12, "feet"),
  24007. weight: math.unit(170, "lb"),
  24008. name: "Front (Dressed)",
  24009. image: {
  24010. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24011. extra: 1735/1585,
  24012. bottom: 96/1831
  24013. },
  24014. form: "anthro"
  24015. },
  24016. anthro_backDressed: {
  24017. height: math.unit(5 + 11/12, "feet"),
  24018. weight: math.unit(170, "lb"),
  24019. name: "Back (Dressed)",
  24020. image: {
  24021. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24022. extra: 1749/1607,
  24023. bottom: 28/1777
  24024. },
  24025. form: "anthro"
  24026. },
  24027. anthro_maleDressed: {
  24028. height: math.unit(5 + 11/12, "feet"),
  24029. weight: math.unit(170, "lb"),
  24030. name: "Male (Dressed)",
  24031. image: {
  24032. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24033. extra: 1855/1713,
  24034. bottom: 63/1918
  24035. },
  24036. form: "anthro"
  24037. },
  24038. taur_frontDressed: {
  24039. height: math.unit(5 + 7/12, "feet"),
  24040. weight: math.unit(170, "lb"),
  24041. name: "Front (Dressed)",
  24042. image: {
  24043. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24044. extra: 1151/1059,
  24045. bottom: 356/1507
  24046. },
  24047. form: "taur"
  24048. },
  24049. maw: {
  24050. height: math.unit(1.46, "feet"),
  24051. name: "Maw",
  24052. image: {
  24053. source: "./media/characters/poojawa-vynar/maw.svg"
  24054. },
  24055. allForms: true
  24056. },
  24057. head: {
  24058. height: math.unit(2.34, "feet"),
  24059. name: "Head",
  24060. image: {
  24061. source: "./media/characters/poojawa-vynar/head.svg"
  24062. },
  24063. allForms: true
  24064. },
  24065. leftPaw: {
  24066. height: math.unit(1.72, "feet"),
  24067. name: "Left Paw",
  24068. image: {
  24069. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24070. },
  24071. allForms: true
  24072. },
  24073. rightPaw: {
  24074. height: math.unit(1.61, "feet"),
  24075. name: "Right Paw",
  24076. image: {
  24077. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24078. },
  24079. allForms: true
  24080. },
  24081. toering: {
  24082. height: math.unit(2.9, "inches"),
  24083. name: "Toering",
  24084. image: {
  24085. source: "./media/characters/poojawa-vynar/toering.svg"
  24086. },
  24087. allForms: true
  24088. },
  24089. shaft: {
  24090. height: math.unit(0.625, "feet"),
  24091. name: "Shaft",
  24092. image: {
  24093. source: "./media/characters/poojawa-vynar/shaft.svg"
  24094. },
  24095. allForms: true
  24096. },
  24097. spade: {
  24098. height: math.unit(0.42, "feet"),
  24099. name: "Spade",
  24100. image: {
  24101. source: "./media/characters/poojawa-vynar/spade.svg"
  24102. },
  24103. allForms: true
  24104. },
  24105. },
  24106. [
  24107. {
  24108. name: "Shortstack",
  24109. height: math.unit(4, "feet"),
  24110. form: "anthro"
  24111. },
  24112. {
  24113. name: "Normal",
  24114. height: math.unit(5 + 11 / 12, "feet"),
  24115. form: "anthro",
  24116. default: true
  24117. },
  24118. {
  24119. name: "Tauric",
  24120. height: math.unit(4, "meters"),
  24121. form: "taur",
  24122. default: true
  24123. },
  24124. ],
  24125. {
  24126. "anthro": {
  24127. name: "Anthro",
  24128. default: true
  24129. },
  24130. "taur": {
  24131. name: "Taur",
  24132. },
  24133. }
  24134. ))
  24135. characterMakers.push(() => makeCharacter(
  24136. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24137. {
  24138. front: {
  24139. height: math.unit(293, "meters"),
  24140. weight: math.unit(70400, "tons"),
  24141. name: "Front",
  24142. image: {
  24143. source: "./media/characters/violette/front.svg",
  24144. extra: 1227 / 1180,
  24145. bottom: 0.005
  24146. }
  24147. },
  24148. back: {
  24149. height: math.unit(293, "meters"),
  24150. weight: math.unit(70400, "tons"),
  24151. name: "Back",
  24152. image: {
  24153. source: "./media/characters/violette/back.svg",
  24154. extra: 1227 / 1180,
  24155. bottom: 0.005
  24156. }
  24157. },
  24158. },
  24159. [
  24160. {
  24161. name: "Macro",
  24162. height: math.unit(293, "meters"),
  24163. default: true
  24164. },
  24165. ]
  24166. ))
  24167. characterMakers.push(() => makeCharacter(
  24168. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24169. {
  24170. front: {
  24171. height: math.unit(1050, "feet"),
  24172. weight: math.unit(200000, "tons"),
  24173. name: "Front",
  24174. image: {
  24175. source: "./media/characters/alessandra/front.svg",
  24176. extra: 960 / 912,
  24177. bottom: 0.06
  24178. }
  24179. },
  24180. },
  24181. [
  24182. {
  24183. name: "Macro",
  24184. height: math.unit(1050, "feet")
  24185. },
  24186. {
  24187. name: "Macro+",
  24188. height: math.unit(900, "meters"),
  24189. default: true
  24190. },
  24191. ]
  24192. ))
  24193. characterMakers.push(() => makeCharacter(
  24194. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24195. {
  24196. front: {
  24197. height: math.unit(5, "feet"),
  24198. weight: math.unit(187, "lb"),
  24199. name: "Front",
  24200. image: {
  24201. source: "./media/characters/person/front.svg",
  24202. extra: 3087 / 2945,
  24203. bottom: 91 / 3181
  24204. }
  24205. },
  24206. },
  24207. [
  24208. {
  24209. name: "Micro",
  24210. height: math.unit(3, "inches")
  24211. },
  24212. {
  24213. name: "Normal",
  24214. height: math.unit(5, "feet"),
  24215. default: true
  24216. },
  24217. {
  24218. name: "Macro",
  24219. height: math.unit(90, "feet")
  24220. },
  24221. {
  24222. name: "Max Size",
  24223. height: math.unit(280, "feet")
  24224. },
  24225. ]
  24226. ))
  24227. characterMakers.push(() => makeCharacter(
  24228. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24229. {
  24230. front: {
  24231. height: math.unit(4.5, "meters"),
  24232. weight: math.unit(3200, "lb"),
  24233. name: "Front",
  24234. image: {
  24235. source: "./media/characters/ty/front.svg",
  24236. extra: 1038 / 960,
  24237. bottom: 31.156 / 1068
  24238. }
  24239. },
  24240. back: {
  24241. height: math.unit(4.5, "meters"),
  24242. weight: math.unit(3200, "lb"),
  24243. name: "Back",
  24244. image: {
  24245. source: "./media/characters/ty/back.svg",
  24246. extra: 1044 / 966,
  24247. bottom: 7.48 / 1049
  24248. }
  24249. },
  24250. },
  24251. [
  24252. {
  24253. name: "Normal",
  24254. height: math.unit(4.5, "meters"),
  24255. default: true
  24256. },
  24257. ]
  24258. ))
  24259. characterMakers.push(() => makeCharacter(
  24260. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24261. {
  24262. front: {
  24263. height: math.unit(5 + 4 / 12, "feet"),
  24264. weight: math.unit(115, "lb"),
  24265. name: "Front",
  24266. image: {
  24267. source: "./media/characters/rocky/front.svg",
  24268. extra: 1012 / 975,
  24269. bottom: 54 / 1066
  24270. }
  24271. },
  24272. },
  24273. [
  24274. {
  24275. name: "Normal",
  24276. height: math.unit(5 + 4 / 12, "feet"),
  24277. default: true
  24278. },
  24279. ]
  24280. ))
  24281. characterMakers.push(() => makeCharacter(
  24282. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24283. {
  24284. upright: {
  24285. height: math.unit(6, "meters"),
  24286. weight: math.unit(4000, "kg"),
  24287. name: "Upright",
  24288. image: {
  24289. source: "./media/characters/ruin/upright.svg",
  24290. extra: 668 / 661,
  24291. bottom: 42 / 799.8396
  24292. }
  24293. },
  24294. },
  24295. [
  24296. {
  24297. name: "Normal",
  24298. height: math.unit(6, "meters"),
  24299. default: true
  24300. },
  24301. ]
  24302. ))
  24303. characterMakers.push(() => makeCharacter(
  24304. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24305. {
  24306. front: {
  24307. height: math.unit(5, "feet"),
  24308. weight: math.unit(106, "lb"),
  24309. name: "Front",
  24310. image: {
  24311. source: "./media/characters/robin/front.svg",
  24312. extra: 862 / 799,
  24313. bottom: 42.4 / 914.8856
  24314. }
  24315. },
  24316. },
  24317. [
  24318. {
  24319. name: "Normal",
  24320. height: math.unit(5, "feet"),
  24321. default: true
  24322. },
  24323. ]
  24324. ))
  24325. characterMakers.push(() => makeCharacter(
  24326. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24327. {
  24328. side: {
  24329. height: math.unit(3, "feet"),
  24330. weight: math.unit(225, "lb"),
  24331. name: "Side",
  24332. image: {
  24333. source: "./media/characters/saian/side.svg",
  24334. extra: 566 / 356,
  24335. bottom: 79.7 / 643
  24336. }
  24337. },
  24338. maw: {
  24339. height: math.unit(2.85, "feet"),
  24340. name: "Maw",
  24341. image: {
  24342. source: "./media/characters/saian/maw.svg"
  24343. }
  24344. },
  24345. },
  24346. [
  24347. {
  24348. name: "Normal",
  24349. height: math.unit(3, "feet"),
  24350. default: true
  24351. },
  24352. ]
  24353. ))
  24354. characterMakers.push(() => makeCharacter(
  24355. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24356. {
  24357. side: {
  24358. height: math.unit(8, "feet"),
  24359. weight: math.unit(300, "lb"),
  24360. name: "Side",
  24361. image: {
  24362. source: "./media/characters/equus-silvermane/side.svg",
  24363. extra: 2176 / 2050,
  24364. bottom: 65.7 / 2245
  24365. }
  24366. },
  24367. front: {
  24368. height: math.unit(8, "feet"),
  24369. weight: math.unit(300, "lb"),
  24370. name: "Front",
  24371. image: {
  24372. source: "./media/characters/equus-silvermane/front.svg",
  24373. extra: 4633 / 4400,
  24374. bottom: 71.3 / 4706.915
  24375. }
  24376. },
  24377. sideStepping: {
  24378. height: math.unit(8, "feet"),
  24379. weight: math.unit(300, "lb"),
  24380. name: "Side (Stepping)",
  24381. image: {
  24382. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24383. extra: 1968 / 1860,
  24384. bottom: 16.4 / 1989
  24385. }
  24386. },
  24387. },
  24388. [
  24389. {
  24390. name: "Normal",
  24391. height: math.unit(8, "feet")
  24392. },
  24393. {
  24394. name: "Minimacro",
  24395. height: math.unit(75, "feet"),
  24396. default: true
  24397. },
  24398. {
  24399. name: "Macro",
  24400. height: math.unit(150, "feet")
  24401. },
  24402. {
  24403. name: "Macro+",
  24404. height: math.unit(1000, "feet")
  24405. },
  24406. {
  24407. name: "Megamacro",
  24408. height: math.unit(1, "mile")
  24409. },
  24410. ]
  24411. ))
  24412. characterMakers.push(() => makeCharacter(
  24413. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24414. {
  24415. side: {
  24416. height: math.unit(20, "feet"),
  24417. weight: math.unit(30000, "kg"),
  24418. name: "Side",
  24419. image: {
  24420. source: "./media/characters/windar/side.svg",
  24421. extra: 1491 / 1248,
  24422. bottom: 82.56 / 1568
  24423. }
  24424. },
  24425. },
  24426. [
  24427. {
  24428. name: "Normal",
  24429. height: math.unit(20, "feet"),
  24430. default: true
  24431. },
  24432. ]
  24433. ))
  24434. characterMakers.push(() => makeCharacter(
  24435. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24436. {
  24437. side: {
  24438. height: math.unit(15.66, "feet"),
  24439. weight: math.unit(150, "lb"),
  24440. name: "Side",
  24441. image: {
  24442. source: "./media/characters/melody/side.svg",
  24443. extra: 1097 / 944,
  24444. bottom: 11.8 / 1109
  24445. }
  24446. },
  24447. sideOutfit: {
  24448. height: math.unit(15.66, "feet"),
  24449. weight: math.unit(150, "lb"),
  24450. name: "Side (Outfit)",
  24451. image: {
  24452. source: "./media/characters/melody/side-outfit.svg",
  24453. extra: 1097 / 944,
  24454. bottom: 11.8 / 1109
  24455. }
  24456. },
  24457. },
  24458. [
  24459. {
  24460. name: "Normal",
  24461. height: math.unit(15.66, "feet"),
  24462. default: true
  24463. },
  24464. ]
  24465. ))
  24466. characterMakers.push(() => makeCharacter(
  24467. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24468. {
  24469. armoredFront: {
  24470. height: math.unit(8, "feet"),
  24471. weight: math.unit(325, "lb"),
  24472. name: "Front",
  24473. image: {
  24474. source: "./media/characters/windera/armored-front.svg",
  24475. extra: 1830/1598,
  24476. bottom: 151/1981
  24477. },
  24478. form: "armored",
  24479. default: true
  24480. },
  24481. macroFront: {
  24482. height: math.unit(70, "feet"),
  24483. weight: math.unit(315453, "lb"),
  24484. name: "Front",
  24485. image: {
  24486. source: "./media/characters/windera/macro-front.svg",
  24487. extra: 963/883,
  24488. bottom: 23/986
  24489. },
  24490. form: "macro",
  24491. default: true
  24492. },
  24493. },
  24494. [
  24495. {
  24496. name: "Normal",
  24497. height: math.unit(8, "feet"),
  24498. default: true,
  24499. form: "armored"
  24500. },
  24501. {
  24502. name: "Normal",
  24503. height: math.unit(70, "feet"),
  24504. default: true,
  24505. form: "macro"
  24506. },
  24507. ],
  24508. {
  24509. "armored": {
  24510. name: "Armored",
  24511. default: true
  24512. },
  24513. "macro": {
  24514. name: "Macro",
  24515. },
  24516. }
  24517. ))
  24518. characterMakers.push(() => makeCharacter(
  24519. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24520. {
  24521. front: {
  24522. height: math.unit(28.75, "feet"),
  24523. weight: math.unit(2000, "kg"),
  24524. name: "Front",
  24525. image: {
  24526. source: "./media/characters/sonear/front.svg",
  24527. extra: 1041.1 / 964.9,
  24528. bottom: 53.7 / 1096.6
  24529. }
  24530. },
  24531. },
  24532. [
  24533. {
  24534. name: "Normal",
  24535. height: math.unit(28.75, "feet"),
  24536. default: true
  24537. },
  24538. ]
  24539. ))
  24540. characterMakers.push(() => makeCharacter(
  24541. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24542. {
  24543. side: {
  24544. height: math.unit(25.5, "feet"),
  24545. weight: math.unit(23000, "kg"),
  24546. name: "Side",
  24547. image: {
  24548. source: "./media/characters/kanara/side.svg"
  24549. }
  24550. },
  24551. },
  24552. [
  24553. {
  24554. name: "Normal",
  24555. height: math.unit(25.5, "feet"),
  24556. default: true
  24557. },
  24558. ]
  24559. ))
  24560. characterMakers.push(() => makeCharacter(
  24561. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24562. {
  24563. side: {
  24564. height: math.unit(10, "feet"),
  24565. weight: math.unit(1000, "kg"),
  24566. name: "Side",
  24567. image: {
  24568. source: "./media/characters/ereus/side.svg",
  24569. extra: 1157 / 959,
  24570. bottom: 153 / 1312.5
  24571. }
  24572. },
  24573. },
  24574. [
  24575. {
  24576. name: "Normal",
  24577. height: math.unit(10, "feet"),
  24578. default: true
  24579. },
  24580. ]
  24581. ))
  24582. characterMakers.push(() => makeCharacter(
  24583. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24584. {
  24585. side: {
  24586. height: math.unit(4.5, "feet"),
  24587. weight: math.unit(500, "lb"),
  24588. name: "Side",
  24589. image: {
  24590. source: "./media/characters/e-ter/side.svg",
  24591. extra: 1550 / 1248,
  24592. bottom: 146 / 1694
  24593. }
  24594. },
  24595. },
  24596. [
  24597. {
  24598. name: "Normal",
  24599. height: math.unit(4.5, "feet"),
  24600. default: true
  24601. },
  24602. ]
  24603. ))
  24604. characterMakers.push(() => makeCharacter(
  24605. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24606. {
  24607. side: {
  24608. height: math.unit(9.7, "feet"),
  24609. weight: math.unit(4000, "kg"),
  24610. name: "Side",
  24611. image: {
  24612. source: "./media/characters/yamie/side.svg"
  24613. }
  24614. },
  24615. },
  24616. [
  24617. {
  24618. name: "Normal",
  24619. height: math.unit(9.7, "feet"),
  24620. default: true
  24621. },
  24622. ]
  24623. ))
  24624. characterMakers.push(() => makeCharacter(
  24625. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24626. {
  24627. front: {
  24628. height: math.unit(50, "feet"),
  24629. weight: math.unit(50000, "kg"),
  24630. name: "Front",
  24631. image: {
  24632. source: "./media/characters/anders/front.svg",
  24633. extra: 570 / 539,
  24634. bottom: 14.7 / 586.7
  24635. }
  24636. },
  24637. },
  24638. [
  24639. {
  24640. name: "Large",
  24641. height: math.unit(50, "feet")
  24642. },
  24643. {
  24644. name: "Macro",
  24645. height: math.unit(2000, "feet"),
  24646. default: true
  24647. },
  24648. {
  24649. name: "Megamacro",
  24650. height: math.unit(12, "miles")
  24651. },
  24652. ]
  24653. ))
  24654. characterMakers.push(() => makeCharacter(
  24655. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24656. {
  24657. front: {
  24658. height: math.unit(7 + 2 / 12, "feet"),
  24659. weight: math.unit(300, "lb"),
  24660. name: "Front",
  24661. image: {
  24662. source: "./media/characters/reban/front.svg",
  24663. extra: 1287/1212,
  24664. bottom: 148/1435
  24665. }
  24666. },
  24667. head: {
  24668. height: math.unit(1.95, "feet"),
  24669. name: "Head",
  24670. image: {
  24671. source: "./media/characters/reban/head.svg"
  24672. }
  24673. },
  24674. maw: {
  24675. height: math.unit(0.95, "feet"),
  24676. name: "Maw",
  24677. image: {
  24678. source: "./media/characters/reban/maw.svg"
  24679. }
  24680. },
  24681. foot: {
  24682. height: math.unit(1.65, "feet"),
  24683. name: "Foot",
  24684. image: {
  24685. source: "./media/characters/reban/foot.svg"
  24686. }
  24687. },
  24688. dick: {
  24689. height: math.unit(7 / 5, "feet"),
  24690. name: "Dick",
  24691. image: {
  24692. source: "./media/characters/reban/dick.svg"
  24693. }
  24694. },
  24695. },
  24696. [
  24697. {
  24698. name: "Natural Height",
  24699. height: math.unit(7 + 2 / 12, "feet")
  24700. },
  24701. {
  24702. name: "Macro",
  24703. height: math.unit(500, "feet"),
  24704. default: true
  24705. },
  24706. {
  24707. name: "Canon Height",
  24708. height: math.unit(50, "AU")
  24709. },
  24710. ]
  24711. ))
  24712. characterMakers.push(() => makeCharacter(
  24713. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24714. {
  24715. front: {
  24716. height: math.unit(6, "feet"),
  24717. weight: math.unit(150, "lb"),
  24718. name: "Front",
  24719. image: {
  24720. source: "./media/characters/terrance-keayes/front.svg",
  24721. extra: 1.005,
  24722. bottom: 151 / 1615
  24723. }
  24724. },
  24725. side: {
  24726. height: math.unit(6, "feet"),
  24727. weight: math.unit(150, "lb"),
  24728. name: "Side",
  24729. image: {
  24730. source: "./media/characters/terrance-keayes/side.svg",
  24731. extra: 1.005,
  24732. bottom: 129.4 / 1544
  24733. }
  24734. },
  24735. back: {
  24736. height: math.unit(6, "feet"),
  24737. weight: math.unit(150, "lb"),
  24738. name: "Back",
  24739. image: {
  24740. source: "./media/characters/terrance-keayes/back.svg",
  24741. extra: 1.005,
  24742. bottom: 58.4 / 1557.3
  24743. }
  24744. },
  24745. dick: {
  24746. height: math.unit(6 * 0.208, "feet"),
  24747. name: "Dick",
  24748. image: {
  24749. source: "./media/characters/terrance-keayes/dick.svg"
  24750. }
  24751. },
  24752. },
  24753. [
  24754. {
  24755. name: "Canon Height",
  24756. height: math.unit(35, "miles"),
  24757. default: true
  24758. },
  24759. ]
  24760. ))
  24761. characterMakers.push(() => makeCharacter(
  24762. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24763. {
  24764. front: {
  24765. height: math.unit(6, "feet"),
  24766. weight: math.unit(150, "lb"),
  24767. name: "Front",
  24768. image: {
  24769. source: "./media/characters/ofelia/front.svg",
  24770. extra: 1130/1117,
  24771. bottom: 91/1221
  24772. }
  24773. },
  24774. back: {
  24775. height: math.unit(6, "feet"),
  24776. weight: math.unit(150, "lb"),
  24777. name: "Back",
  24778. image: {
  24779. source: "./media/characters/ofelia/back.svg",
  24780. extra: 1172/1159,
  24781. bottom: 28/1200
  24782. }
  24783. },
  24784. maw: {
  24785. height: math.unit(1, "feet"),
  24786. name: "Maw",
  24787. image: {
  24788. source: "./media/characters/ofelia/maw.svg"
  24789. }
  24790. },
  24791. foot: {
  24792. height: math.unit(1.949, "feet"),
  24793. name: "Foot",
  24794. image: {
  24795. source: "./media/characters/ofelia/foot.svg"
  24796. }
  24797. },
  24798. },
  24799. [
  24800. {
  24801. name: "Canon Height",
  24802. height: math.unit(2000, "miles"),
  24803. default: true
  24804. },
  24805. ]
  24806. ))
  24807. characterMakers.push(() => makeCharacter(
  24808. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24809. {
  24810. front: {
  24811. height: math.unit(6, "feet"),
  24812. weight: math.unit(150, "lb"),
  24813. name: "Front",
  24814. image: {
  24815. source: "./media/characters/samuel/front.svg",
  24816. extra: 265 / 258,
  24817. bottom: 2 / 266.1566
  24818. }
  24819. },
  24820. },
  24821. [
  24822. {
  24823. name: "Macro",
  24824. height: math.unit(100, "feet"),
  24825. default: true
  24826. },
  24827. {
  24828. name: "Full Size",
  24829. height: math.unit(1000, "miles")
  24830. },
  24831. ]
  24832. ))
  24833. characterMakers.push(() => makeCharacter(
  24834. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24835. {
  24836. front: {
  24837. height: math.unit(6, "feet"),
  24838. weight: math.unit(300, "lb"),
  24839. name: "Front",
  24840. image: {
  24841. source: "./media/characters/beishir-kiel/front.svg",
  24842. extra: 569 / 547,
  24843. bottom: 41.9 / 609
  24844. }
  24845. },
  24846. maw: {
  24847. height: math.unit(6 * 0.202, "feet"),
  24848. name: "Maw",
  24849. image: {
  24850. source: "./media/characters/beishir-kiel/maw.svg"
  24851. }
  24852. },
  24853. },
  24854. [
  24855. {
  24856. name: "Macro",
  24857. height: math.unit(300, "feet"),
  24858. default: true
  24859. },
  24860. ]
  24861. ))
  24862. characterMakers.push(() => makeCharacter(
  24863. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24864. {
  24865. front: {
  24866. height: math.unit(5 + 7/12, "feet"),
  24867. weight: math.unit(120, "lb"),
  24868. name: "Front",
  24869. image: {
  24870. source: "./media/characters/logan-grey/front.svg",
  24871. extra: 1836/1738,
  24872. bottom: 108/1944
  24873. }
  24874. },
  24875. back: {
  24876. height: math.unit(5 + 7/12, "feet"),
  24877. weight: math.unit(120, "lb"),
  24878. name: "Back",
  24879. image: {
  24880. source: "./media/characters/logan-grey/back.svg",
  24881. extra: 1880/1794,
  24882. bottom: 24/1904
  24883. }
  24884. },
  24885. frontSfw: {
  24886. height: math.unit(5 + 7/12, "feet"),
  24887. weight: math.unit(120, "lb"),
  24888. name: "Front (SFW)",
  24889. image: {
  24890. source: "./media/characters/logan-grey/front-sfw.svg",
  24891. extra: 1836/1738,
  24892. bottom: 108/1944
  24893. }
  24894. },
  24895. backSfw: {
  24896. height: math.unit(5 + 7/12, "feet"),
  24897. weight: math.unit(120, "lb"),
  24898. name: "Back (SFW)",
  24899. image: {
  24900. source: "./media/characters/logan-grey/back-sfw.svg",
  24901. extra: 1880/1794,
  24902. bottom: 24/1904
  24903. }
  24904. },
  24905. hands: {
  24906. height: math.unit(0.84, "feet"),
  24907. name: "Hands",
  24908. image: {
  24909. source: "./media/characters/logan-grey/hands.svg"
  24910. }
  24911. },
  24912. paws: {
  24913. height: math.unit(0.72, "feet"),
  24914. name: "Paws",
  24915. image: {
  24916. source: "./media/characters/logan-grey/paws.svg"
  24917. }
  24918. },
  24919. cock: {
  24920. height: math.unit(1.45, "feet"),
  24921. name: "Cock",
  24922. image: {
  24923. source: "./media/characters/logan-grey/cock.svg"
  24924. }
  24925. },
  24926. cockAlt: {
  24927. height: math.unit(1.437, "feet"),
  24928. name: "Cock (alt)",
  24929. image: {
  24930. source: "./media/characters/logan-grey/cock-alt.svg"
  24931. }
  24932. },
  24933. },
  24934. [
  24935. {
  24936. name: "Normal",
  24937. height: math.unit(5 + 8 / 12, "feet")
  24938. },
  24939. {
  24940. name: "The 500 Foot Femboy",
  24941. height: math.unit(500, "feet"),
  24942. default: true
  24943. },
  24944. {
  24945. name: "Megmacro",
  24946. height: math.unit(20, "miles")
  24947. },
  24948. ]
  24949. ))
  24950. characterMakers.push(() => makeCharacter(
  24951. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24952. {
  24953. front: {
  24954. height: math.unit(8 + 2 / 12, "feet"),
  24955. weight: math.unit(275, "lb"),
  24956. name: "Front",
  24957. image: {
  24958. source: "./media/characters/draganta/front.svg",
  24959. extra: 1177 / 1135,
  24960. bottom: 33.46 / 1212.1
  24961. }
  24962. },
  24963. },
  24964. [
  24965. {
  24966. name: "Normal",
  24967. height: math.unit(8 + 6 / 12, "feet"),
  24968. default: true
  24969. },
  24970. {
  24971. name: "Macro",
  24972. height: math.unit(150, "feet")
  24973. },
  24974. {
  24975. name: "Megamacro",
  24976. height: math.unit(1000, "miles")
  24977. },
  24978. ]
  24979. ))
  24980. characterMakers.push(() => makeCharacter(
  24981. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24982. {
  24983. front: {
  24984. height: math.unit(1.72, "m"),
  24985. weight: math.unit(80, "lb"),
  24986. name: "Front",
  24987. image: {
  24988. source: "./media/characters/voski/front.svg",
  24989. extra: 2076.22 / 2022.4,
  24990. bottom: 102.7 / 2177.3866
  24991. }
  24992. },
  24993. frontFlaccid: {
  24994. height: math.unit(1.72, "m"),
  24995. weight: math.unit(80, "lb"),
  24996. name: "Front (Flaccid)",
  24997. image: {
  24998. source: "./media/characters/voski/front-flaccid.svg",
  24999. extra: 2076.22 / 2022.4,
  25000. bottom: 102.7 / 2177.3866
  25001. }
  25002. },
  25003. frontErect: {
  25004. height: math.unit(1.72, "m"),
  25005. weight: math.unit(80, "lb"),
  25006. name: "Front (Erect)",
  25007. image: {
  25008. source: "./media/characters/voski/front-erect.svg",
  25009. extra: 2076.22 / 2022.4,
  25010. bottom: 102.7 / 2177.3866
  25011. }
  25012. },
  25013. back: {
  25014. height: math.unit(1.72, "m"),
  25015. weight: math.unit(80, "lb"),
  25016. name: "Back",
  25017. image: {
  25018. source: "./media/characters/voski/back.svg",
  25019. extra: 2104 / 2051,
  25020. bottom: 10.45 / 2113.63
  25021. }
  25022. },
  25023. },
  25024. [
  25025. {
  25026. name: "Normal",
  25027. height: math.unit(1.72, "m")
  25028. },
  25029. {
  25030. name: "Macro",
  25031. height: math.unit(55, "m"),
  25032. default: true
  25033. },
  25034. {
  25035. name: "Macro+",
  25036. height: math.unit(300, "m")
  25037. },
  25038. {
  25039. name: "Macro++",
  25040. height: math.unit(700, "m")
  25041. },
  25042. {
  25043. name: "Macro+++",
  25044. height: math.unit(4500, "m")
  25045. },
  25046. {
  25047. name: "Macro++++",
  25048. height: math.unit(45, "km")
  25049. },
  25050. {
  25051. name: "Macro+++++",
  25052. height: math.unit(1220, "km")
  25053. },
  25054. ]
  25055. ))
  25056. characterMakers.push(() => makeCharacter(
  25057. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25058. {
  25059. front: {
  25060. height: math.unit(2.3, "m"),
  25061. weight: math.unit(304, "kg"),
  25062. name: "Front",
  25063. image: {
  25064. source: "./media/characters/icowom-lee/front.svg",
  25065. extra: 985 / 955,
  25066. bottom: 25.4 / 1012
  25067. }
  25068. },
  25069. fronttentacles: {
  25070. height: math.unit(2.3, "m"),
  25071. weight: math.unit(304, "kg"),
  25072. name: "Front-tentacles",
  25073. image: {
  25074. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25075. extra: 985 / 955,
  25076. bottom: 25.4 / 1012
  25077. }
  25078. },
  25079. back: {
  25080. height: math.unit(2.3, "m"),
  25081. weight: math.unit(304, "kg"),
  25082. name: "Back",
  25083. image: {
  25084. source: "./media/characters/icowom-lee/back.svg",
  25085. extra: 975 / 954,
  25086. bottom: 9.5 / 985
  25087. }
  25088. },
  25089. backtentacles: {
  25090. height: math.unit(2.3, "m"),
  25091. weight: math.unit(304, "kg"),
  25092. name: "Back-tentacles",
  25093. image: {
  25094. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25095. extra: 975 / 954,
  25096. bottom: 9.5 / 985
  25097. }
  25098. },
  25099. frontDressed: {
  25100. height: math.unit(2.3, "m"),
  25101. weight: math.unit(304, "kg"),
  25102. name: "Front (Dressed)",
  25103. image: {
  25104. source: "./media/characters/icowom-lee/front-dressed.svg",
  25105. extra: 3076 / 2933,
  25106. bottom: 51.4 / 3125.1889
  25107. }
  25108. },
  25109. rump: {
  25110. height: math.unit(0.776, "meters"),
  25111. name: "Rump",
  25112. image: {
  25113. source: "./media/characters/icowom-lee/rump.svg"
  25114. }
  25115. },
  25116. genitals: {
  25117. height: math.unit(0.78, "meters"),
  25118. name: "Genitals",
  25119. image: {
  25120. source: "./media/characters/icowom-lee/genitals.svg"
  25121. }
  25122. },
  25123. },
  25124. [
  25125. {
  25126. name: "Normal",
  25127. height: math.unit(2.3, "meters"),
  25128. default: true
  25129. },
  25130. {
  25131. name: "Macro",
  25132. height: math.unit(94, "meters"),
  25133. default: true
  25134. },
  25135. ]
  25136. ))
  25137. characterMakers.push(() => makeCharacter(
  25138. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25139. {
  25140. front: {
  25141. height: math.unit(22, "meters"),
  25142. weight: math.unit(21000, "kg"),
  25143. name: "Front",
  25144. image: {
  25145. source: "./media/characters/shock-diamond/front.svg",
  25146. extra: 2204 / 2053,
  25147. bottom: 65 / 2239.47
  25148. }
  25149. },
  25150. frontNude: {
  25151. height: math.unit(22, "meters"),
  25152. weight: math.unit(21000, "kg"),
  25153. name: "Front (Nude)",
  25154. image: {
  25155. source: "./media/characters/shock-diamond/front-nude.svg",
  25156. extra: 2514 / 2285,
  25157. bottom: 13 / 2527.56
  25158. }
  25159. },
  25160. },
  25161. [
  25162. {
  25163. name: "Normal",
  25164. height: math.unit(3, "meters")
  25165. },
  25166. {
  25167. name: "Macro",
  25168. height: math.unit(22, "meters"),
  25169. default: true
  25170. },
  25171. ]
  25172. ))
  25173. characterMakers.push(() => makeCharacter(
  25174. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25175. {
  25176. front: {
  25177. height: math.unit(5 + 4/12, "feet"),
  25178. weight: math.unit(125, "lb"),
  25179. name: "Front",
  25180. image: {
  25181. source: "./media/characters/rory/front.svg",
  25182. extra: 1790/1681,
  25183. bottom: 66/1856
  25184. },
  25185. form: "normal",
  25186. default: true
  25187. },
  25188. back: {
  25189. height: math.unit(5 + 4/12, "feet"),
  25190. weight: math.unit(125, "lb"),
  25191. name: "Back",
  25192. image: {
  25193. source: "./media/characters/rory/back.svg",
  25194. extra: 1805/1690,
  25195. bottom: 56/1861
  25196. },
  25197. form: "normal"
  25198. },
  25199. frontDressed: {
  25200. height: math.unit(5 + 4/12, "feet"),
  25201. weight: math.unit(125, "lb"),
  25202. name: "Front (Dressed)",
  25203. image: {
  25204. source: "./media/characters/rory/front-dressed.svg",
  25205. extra: 1790/1681,
  25206. bottom: 66/1856
  25207. },
  25208. form: "normal"
  25209. },
  25210. backDressed: {
  25211. height: math.unit(5 + 4/12, "feet"),
  25212. weight: math.unit(125, "lb"),
  25213. name: "Back (Dressed)",
  25214. image: {
  25215. source: "./media/characters/rory/back-dressed.svg",
  25216. extra: 1805/1690,
  25217. bottom: 56/1861
  25218. },
  25219. form: "normal"
  25220. },
  25221. frontNsfw: {
  25222. height: math.unit(5 + 4/12, "feet"),
  25223. weight: math.unit(125, "lb"),
  25224. name: "Front (NSFW)",
  25225. image: {
  25226. source: "./media/characters/rory/front-nsfw.svg",
  25227. extra: 1790/1681,
  25228. bottom: 66/1856
  25229. },
  25230. form: "normal"
  25231. },
  25232. backNsfw: {
  25233. height: math.unit(5 + 4/12, "feet"),
  25234. weight: math.unit(125, "lb"),
  25235. name: "Back (NSFW)",
  25236. image: {
  25237. source: "./media/characters/rory/back-nsfw.svg",
  25238. extra: 1805/1690,
  25239. bottom: 56/1861
  25240. },
  25241. form: "normal"
  25242. },
  25243. dick: {
  25244. height: math.unit(0.8, "feet"),
  25245. name: "Dick",
  25246. image: {
  25247. source: "./media/characters/rory/dick.svg"
  25248. },
  25249. form: "normal"
  25250. },
  25251. thicc_front: {
  25252. height: math.unit(5 + 4/12, "feet"),
  25253. weight: math.unit(195, "lb"),
  25254. name: "Front",
  25255. image: {
  25256. source: "./media/characters/rory/thicc-front.svg",
  25257. extra: 1220/1100,
  25258. bottom: 103/1323
  25259. },
  25260. form: "thicc",
  25261. default: true
  25262. },
  25263. thicc_back: {
  25264. height: math.unit(5 + 4/12, "feet"),
  25265. weight: math.unit(195, "lb"),
  25266. name: "Back",
  25267. image: {
  25268. source: "./media/characters/rory/thicc-back.svg",
  25269. extra: 1166/1086,
  25270. bottom: 35/1201
  25271. },
  25272. form: "thicc"
  25273. },
  25274. },
  25275. [
  25276. {
  25277. name: "Micro",
  25278. height: math.unit(3, "inches"),
  25279. allForms: true
  25280. },
  25281. {
  25282. name: "Normal",
  25283. height: math.unit(5 + 4/12, "feet"),
  25284. allForms: true,
  25285. default: true
  25286. },
  25287. {
  25288. name: "Macro",
  25289. height: math.unit(90, "feet"),
  25290. allForms: true
  25291. },
  25292. {
  25293. name: "Supercharged",
  25294. height: math.unit(270, "feet"),
  25295. allForms: true
  25296. },
  25297. ],
  25298. {
  25299. "normal": {
  25300. name: "Normal",
  25301. default: true
  25302. },
  25303. "thicc": {
  25304. name: "Thicc",
  25305. },
  25306. }
  25307. ))
  25308. characterMakers.push(() => makeCharacter(
  25309. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25310. {
  25311. front: {
  25312. height: math.unit(5 + 9 / 12, "feet"),
  25313. weight: math.unit(190, "lb"),
  25314. name: "Front",
  25315. image: {
  25316. source: "./media/characters/sprisk/front.svg",
  25317. extra: 1225 / 1180,
  25318. bottom: 42.7 / 1266.4
  25319. }
  25320. },
  25321. frontNsfw: {
  25322. height: math.unit(5 + 9 / 12, "feet"),
  25323. weight: math.unit(190, "lb"),
  25324. name: "Front (NSFW)",
  25325. image: {
  25326. source: "./media/characters/sprisk/front-nsfw.svg",
  25327. extra: 1225 / 1180,
  25328. bottom: 42.7 / 1266.4
  25329. }
  25330. },
  25331. back: {
  25332. height: math.unit(5 + 9 / 12, "feet"),
  25333. weight: math.unit(190, "lb"),
  25334. name: "Back",
  25335. image: {
  25336. source: "./media/characters/sprisk/back.svg",
  25337. extra: 1247 / 1200,
  25338. bottom: 5.6 / 1253.04
  25339. }
  25340. },
  25341. },
  25342. [
  25343. {
  25344. name: "Tiny",
  25345. height: math.unit(2, "inches")
  25346. },
  25347. {
  25348. name: "Normal",
  25349. height: math.unit(5 + 9 / 12, "feet"),
  25350. default: true
  25351. },
  25352. {
  25353. name: "Mini Macro",
  25354. height: math.unit(18, "feet")
  25355. },
  25356. {
  25357. name: "Macro",
  25358. height: math.unit(100, "feet")
  25359. },
  25360. {
  25361. name: "MACRO",
  25362. height: math.unit(50, "miles")
  25363. },
  25364. {
  25365. name: "M A C R O",
  25366. height: math.unit(300, "miles")
  25367. },
  25368. ]
  25369. ))
  25370. characterMakers.push(() => makeCharacter(
  25371. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25372. {
  25373. side: {
  25374. height: math.unit(15.6, "meters"),
  25375. weight: math.unit(700000, "kg"),
  25376. name: "Side",
  25377. image: {
  25378. source: "./media/characters/bunsen/side.svg",
  25379. extra: 1644 / 358
  25380. }
  25381. },
  25382. foot: {
  25383. height: math.unit(1.611 * 1644 / 358, "meter"),
  25384. name: "Foot",
  25385. image: {
  25386. source: "./media/characters/bunsen/foot.svg"
  25387. }
  25388. },
  25389. },
  25390. [
  25391. {
  25392. name: "Small",
  25393. height: math.unit(10, "feet")
  25394. },
  25395. {
  25396. name: "Normal",
  25397. height: math.unit(15.6, "meters"),
  25398. default: true
  25399. },
  25400. ]
  25401. ))
  25402. characterMakers.push(() => makeCharacter(
  25403. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25404. {
  25405. front: {
  25406. height: math.unit(4 + 11 / 12, "feet"),
  25407. weight: math.unit(140, "lb"),
  25408. name: "Front",
  25409. image: {
  25410. source: "./media/characters/sesh/front.svg",
  25411. extra: 3420 / 3231,
  25412. bottom: 72 / 3949.5
  25413. }
  25414. },
  25415. },
  25416. [
  25417. {
  25418. name: "Normal",
  25419. height: math.unit(4 + 11 / 12, "feet")
  25420. },
  25421. {
  25422. name: "Grown",
  25423. height: math.unit(15, "feet"),
  25424. default: true
  25425. },
  25426. {
  25427. name: "Macro",
  25428. height: math.unit(1500, "feet")
  25429. },
  25430. {
  25431. name: "Megamacro",
  25432. height: math.unit(30, "miles")
  25433. },
  25434. {
  25435. name: "Continental",
  25436. height: math.unit(3000, "miles")
  25437. },
  25438. {
  25439. name: "Gravity Mass",
  25440. height: math.unit(300000, "miles")
  25441. },
  25442. {
  25443. name: "Planet Buster",
  25444. height: math.unit(30000000, "miles")
  25445. },
  25446. {
  25447. name: "Big",
  25448. height: math.unit(3000000000, "miles")
  25449. },
  25450. ]
  25451. ))
  25452. characterMakers.push(() => makeCharacter(
  25453. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25454. {
  25455. front: {
  25456. height: math.unit(9, "feet"),
  25457. weight: math.unit(350, "lb"),
  25458. name: "Front",
  25459. image: {
  25460. source: "./media/characters/pepper/front.svg",
  25461. extra: 1448 / 1312,
  25462. bottom: 9.4 / 1457.88
  25463. }
  25464. },
  25465. back: {
  25466. height: math.unit(9, "feet"),
  25467. weight: math.unit(350, "lb"),
  25468. name: "Back",
  25469. image: {
  25470. source: "./media/characters/pepper/back.svg",
  25471. extra: 1423 / 1300,
  25472. bottom: 4.6 / 1429
  25473. }
  25474. },
  25475. maw: {
  25476. height: math.unit(0.932, "feet"),
  25477. name: "Maw",
  25478. image: {
  25479. source: "./media/characters/pepper/maw.svg"
  25480. }
  25481. },
  25482. },
  25483. [
  25484. {
  25485. name: "Normal",
  25486. height: math.unit(9, "feet"),
  25487. default: true
  25488. },
  25489. ]
  25490. ))
  25491. characterMakers.push(() => makeCharacter(
  25492. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25493. {
  25494. front: {
  25495. height: math.unit(6, "feet"),
  25496. weight: math.unit(150, "lb"),
  25497. name: "Front",
  25498. image: {
  25499. source: "./media/characters/maelstrom/front.svg",
  25500. extra: 2100 / 1883,
  25501. bottom: 94 / 2196.7
  25502. }
  25503. },
  25504. },
  25505. [
  25506. {
  25507. name: "Less Kaiju",
  25508. height: math.unit(200, "feet")
  25509. },
  25510. {
  25511. name: "Kaiju",
  25512. height: math.unit(400, "feet"),
  25513. default: true
  25514. },
  25515. {
  25516. name: "Kaiju-er",
  25517. height: math.unit(600, "feet")
  25518. },
  25519. ]
  25520. ))
  25521. characterMakers.push(() => makeCharacter(
  25522. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25523. {
  25524. front: {
  25525. height: math.unit(6 + 5 / 12, "feet"),
  25526. weight: math.unit(180, "lb"),
  25527. name: "Front",
  25528. image: {
  25529. source: "./media/characters/lexir/front.svg",
  25530. extra: 180 / 172,
  25531. bottom: 12 / 192
  25532. }
  25533. },
  25534. back: {
  25535. height: math.unit(6 + 5 / 12, "feet"),
  25536. weight: math.unit(180, "lb"),
  25537. name: "Back",
  25538. image: {
  25539. source: "./media/characters/lexir/back.svg",
  25540. extra: 1273/1201,
  25541. bottom: 39/1312
  25542. }
  25543. },
  25544. },
  25545. [
  25546. {
  25547. name: "Very Smal",
  25548. height: math.unit(1, "nm")
  25549. },
  25550. {
  25551. name: "Normal",
  25552. height: math.unit(6 + 5 / 12, "feet"),
  25553. default: true
  25554. },
  25555. {
  25556. name: "Macro",
  25557. height: math.unit(1, "mile")
  25558. },
  25559. {
  25560. name: "Megamacro",
  25561. height: math.unit(50, "miles")
  25562. },
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25567. {
  25568. front: {
  25569. height: math.unit(1.5, "meters"),
  25570. weight: math.unit(100, "lb"),
  25571. name: "Front",
  25572. image: {
  25573. source: "./media/characters/maksio/front.svg",
  25574. extra: 1549 / 1531,
  25575. bottom: 123.7 / 1674.5429
  25576. }
  25577. },
  25578. back: {
  25579. height: math.unit(1.5, "meters"),
  25580. weight: math.unit(100, "lb"),
  25581. name: "Back",
  25582. image: {
  25583. source: "./media/characters/maksio/back.svg",
  25584. extra: 1541 / 1509,
  25585. bottom: 97 / 1639
  25586. }
  25587. },
  25588. hand: {
  25589. height: math.unit(0.621, "feet"),
  25590. name: "Hand",
  25591. image: {
  25592. source: "./media/characters/maksio/hand.svg"
  25593. }
  25594. },
  25595. foot: {
  25596. height: math.unit(1.611, "feet"),
  25597. name: "Foot",
  25598. image: {
  25599. source: "./media/characters/maksio/foot.svg"
  25600. }
  25601. },
  25602. },
  25603. [
  25604. {
  25605. name: "Shrunken",
  25606. height: math.unit(10, "cm")
  25607. },
  25608. {
  25609. name: "Normal",
  25610. height: math.unit(150, "cm"),
  25611. default: true
  25612. },
  25613. ]
  25614. ))
  25615. characterMakers.push(() => makeCharacter(
  25616. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25617. {
  25618. front: {
  25619. height: math.unit(100, "feet"),
  25620. name: "Front",
  25621. image: {
  25622. source: "./media/characters/erza-bear/front.svg",
  25623. extra: 2449 / 2390,
  25624. bottom: 46 / 2494
  25625. }
  25626. },
  25627. back: {
  25628. height: math.unit(100, "feet"),
  25629. name: "Back",
  25630. image: {
  25631. source: "./media/characters/erza-bear/back.svg",
  25632. extra: 2489 / 2430,
  25633. bottom: 85.4 / 2480
  25634. }
  25635. },
  25636. tail: {
  25637. height: math.unit(42, "feet"),
  25638. name: "Tail",
  25639. image: {
  25640. source: "./media/characters/erza-bear/tail.svg"
  25641. }
  25642. },
  25643. tongue: {
  25644. height: math.unit(8, "feet"),
  25645. name: "Tongue",
  25646. image: {
  25647. source: "./media/characters/erza-bear/tongue.svg"
  25648. }
  25649. },
  25650. dick: {
  25651. height: math.unit(10.5, "feet"),
  25652. name: "Dick",
  25653. image: {
  25654. source: "./media/characters/erza-bear/dick.svg"
  25655. }
  25656. },
  25657. dickVertical: {
  25658. height: math.unit(16.9, "feet"),
  25659. name: "Dick (Vertical)",
  25660. image: {
  25661. source: "./media/characters/erza-bear/dick-vertical.svg"
  25662. }
  25663. },
  25664. },
  25665. [
  25666. {
  25667. name: "Macro",
  25668. height: math.unit(100, "feet"),
  25669. default: true
  25670. },
  25671. ]
  25672. ))
  25673. characterMakers.push(() => makeCharacter(
  25674. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25675. {
  25676. front: {
  25677. height: math.unit(172, "cm"),
  25678. weight: math.unit(73, "kg"),
  25679. name: "Front",
  25680. image: {
  25681. source: "./media/characters/violet-flor/front.svg",
  25682. extra: 1474/1379,
  25683. bottom: 113/1587
  25684. }
  25685. },
  25686. back: {
  25687. height: math.unit(180, "cm"),
  25688. weight: math.unit(73, "kg"),
  25689. name: "Back",
  25690. image: {
  25691. source: "./media/characters/violet-flor/back.svg",
  25692. extra: 1660/1567,
  25693. bottom: 49/1709
  25694. }
  25695. },
  25696. },
  25697. [
  25698. {
  25699. name: "Normal",
  25700. height: math.unit(172, "cm"),
  25701. default: true
  25702. },
  25703. ]
  25704. ))
  25705. characterMakers.push(() => makeCharacter(
  25706. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25707. {
  25708. front: {
  25709. height: math.unit(6, "feet"),
  25710. weight: math.unit(220, "lb"),
  25711. name: "Front",
  25712. image: {
  25713. source: "./media/characters/lynn-rhea/front.svg",
  25714. extra: 310 / 273
  25715. }
  25716. },
  25717. back: {
  25718. height: math.unit(6, "feet"),
  25719. weight: math.unit(220, "lb"),
  25720. name: "Back",
  25721. image: {
  25722. source: "./media/characters/lynn-rhea/back.svg",
  25723. extra: 310 / 273
  25724. }
  25725. },
  25726. dicks: {
  25727. height: math.unit(0.9, "feet"),
  25728. name: "Dicks",
  25729. image: {
  25730. source: "./media/characters/lynn-rhea/dicks.svg"
  25731. }
  25732. },
  25733. slit: {
  25734. height: math.unit(0.4, "feet"),
  25735. name: "Slit",
  25736. image: {
  25737. source: "./media/characters/lynn-rhea/slit.svg"
  25738. }
  25739. },
  25740. },
  25741. [
  25742. {
  25743. name: "Micro",
  25744. height: math.unit(1, "inch")
  25745. },
  25746. {
  25747. name: "Macro",
  25748. height: math.unit(60, "feet"),
  25749. default: true
  25750. },
  25751. {
  25752. name: "Megamacro",
  25753. height: math.unit(2, "miles")
  25754. },
  25755. {
  25756. name: "Gigamacro",
  25757. height: math.unit(3, "earths")
  25758. },
  25759. {
  25760. name: "Galactic",
  25761. height: math.unit(0.8, "galaxies")
  25762. },
  25763. ]
  25764. ))
  25765. characterMakers.push(() => makeCharacter(
  25766. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25767. {
  25768. front: {
  25769. height: math.unit(1600, "feet"),
  25770. weight: math.unit(85758785169, "kg"),
  25771. name: "Front",
  25772. image: {
  25773. source: "./media/characters/valathos/front.svg",
  25774. extra: 1451 / 1339
  25775. }
  25776. },
  25777. },
  25778. [
  25779. {
  25780. name: "Macro",
  25781. height: math.unit(1600, "feet"),
  25782. default: true
  25783. },
  25784. ]
  25785. ))
  25786. characterMakers.push(() => makeCharacter(
  25787. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25788. {
  25789. front: {
  25790. height: math.unit(7 + 5 / 12, "feet"),
  25791. weight: math.unit(300, "lb"),
  25792. name: "Front",
  25793. image: {
  25794. source: "./media/characters/azula/front.svg",
  25795. extra: 3208 / 2880,
  25796. bottom: 80.2 / 3277
  25797. }
  25798. },
  25799. back: {
  25800. height: math.unit(7 + 5 / 12, "feet"),
  25801. weight: math.unit(300, "lb"),
  25802. name: "Back",
  25803. image: {
  25804. source: "./media/characters/azula/back.svg",
  25805. extra: 3169 / 2822,
  25806. bottom: 150.6 / 3321
  25807. }
  25808. },
  25809. },
  25810. [
  25811. {
  25812. name: "Normal",
  25813. height: math.unit(7 + 5 / 12, "feet"),
  25814. default: true
  25815. },
  25816. {
  25817. name: "Big",
  25818. height: math.unit(20, "feet")
  25819. },
  25820. ]
  25821. ))
  25822. characterMakers.push(() => makeCharacter(
  25823. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25824. {
  25825. front: {
  25826. height: math.unit(5 + 1 / 12, "feet"),
  25827. weight: math.unit(110, "lb"),
  25828. name: "Front",
  25829. image: {
  25830. source: "./media/characters/rupert/front.svg",
  25831. extra: 1549 / 1495,
  25832. bottom: 54.2 / 1604.4
  25833. }
  25834. },
  25835. },
  25836. [
  25837. {
  25838. name: "Normal",
  25839. height: math.unit(5 + 1 / 12, "feet"),
  25840. default: true
  25841. },
  25842. ]
  25843. ))
  25844. characterMakers.push(() => makeCharacter(
  25845. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25846. {
  25847. front: {
  25848. height: math.unit(8 + 4 / 12, "feet"),
  25849. weight: math.unit(350, "lb"),
  25850. name: "Front",
  25851. image: {
  25852. source: "./media/characters/sheera-castellar/front.svg",
  25853. extra: 1957 / 1894,
  25854. bottom: 26.97 / 1975.017
  25855. }
  25856. },
  25857. side: {
  25858. height: math.unit(8 + 4 / 12, "feet"),
  25859. weight: math.unit(350, "lb"),
  25860. name: "Side",
  25861. image: {
  25862. source: "./media/characters/sheera-castellar/side.svg",
  25863. extra: 1957 / 1894
  25864. }
  25865. },
  25866. back: {
  25867. height: math.unit(8 + 4 / 12, "feet"),
  25868. weight: math.unit(350, "lb"),
  25869. name: "Back",
  25870. image: {
  25871. source: "./media/characters/sheera-castellar/back.svg",
  25872. extra: 1957 / 1894
  25873. }
  25874. },
  25875. angled: {
  25876. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25877. weight: math.unit(350, "lb"),
  25878. name: "Angled",
  25879. image: {
  25880. source: "./media/characters/sheera-castellar/angled.svg",
  25881. extra: 1807 / 1707,
  25882. bottom: 68 / 1875
  25883. }
  25884. },
  25885. genitals: {
  25886. height: math.unit(2.2, "feet"),
  25887. name: "Genitals",
  25888. image: {
  25889. source: "./media/characters/sheera-castellar/genitals.svg"
  25890. }
  25891. },
  25892. taur: {
  25893. height: math.unit(10 + 6/12, "feet"),
  25894. name: "Taur",
  25895. image: {
  25896. source: "./media/characters/sheera-castellar/taur.svg",
  25897. extra: 2017/1909,
  25898. bottom: 185/2202
  25899. }
  25900. },
  25901. },
  25902. [
  25903. {
  25904. name: "Normal",
  25905. height: math.unit(8 + 4 / 12, "feet")
  25906. },
  25907. {
  25908. name: "Macro",
  25909. height: math.unit(150, "feet"),
  25910. default: true
  25911. },
  25912. {
  25913. name: "Macro+",
  25914. height: math.unit(800, "feet")
  25915. },
  25916. ]
  25917. ))
  25918. characterMakers.push(() => makeCharacter(
  25919. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25920. {
  25921. front: {
  25922. height: math.unit(6, "feet"),
  25923. weight: math.unit(150, "lb"),
  25924. name: "Front",
  25925. image: {
  25926. source: "./media/characters/jaipur/front.svg",
  25927. extra: 3860 / 3731,
  25928. bottom: 287 / 4140
  25929. }
  25930. },
  25931. back: {
  25932. height: math.unit(6, "feet"),
  25933. weight: math.unit(150, "lb"),
  25934. name: "Back",
  25935. image: {
  25936. source: "./media/characters/jaipur/back.svg",
  25937. extra: 1637/1561,
  25938. bottom: 154/1791
  25939. }
  25940. },
  25941. },
  25942. [
  25943. {
  25944. name: "Normal",
  25945. height: math.unit(1.85, "meters"),
  25946. default: true
  25947. },
  25948. {
  25949. name: "Macro",
  25950. height: math.unit(150, "meters")
  25951. },
  25952. {
  25953. name: "Macro+",
  25954. height: math.unit(0.5, "miles")
  25955. },
  25956. {
  25957. name: "Macro++",
  25958. height: math.unit(2.5, "miles")
  25959. },
  25960. {
  25961. name: "Macro+++",
  25962. height: math.unit(12, "miles")
  25963. },
  25964. {
  25965. name: "Macro++++",
  25966. height: math.unit(120, "miles")
  25967. },
  25968. {
  25969. name: "Macro+++++",
  25970. height: math.unit(1200, "miles")
  25971. },
  25972. ]
  25973. ))
  25974. characterMakers.push(() => makeCharacter(
  25975. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25976. {
  25977. front: {
  25978. height: math.unit(6, "feet"),
  25979. weight: math.unit(150, "lb"),
  25980. name: "Front",
  25981. image: {
  25982. source: "./media/characters/sheila-wolf/front.svg",
  25983. extra: 1931 / 1808,
  25984. bottom: 29.5 / 1960
  25985. }
  25986. },
  25987. dick: {
  25988. height: math.unit(1.464, "feet"),
  25989. name: "Dick",
  25990. image: {
  25991. source: "./media/characters/sheila-wolf/dick.svg"
  25992. }
  25993. },
  25994. muzzle: {
  25995. height: math.unit(0.513, "feet"),
  25996. name: "Muzzle",
  25997. image: {
  25998. source: "./media/characters/sheila-wolf/muzzle.svg"
  25999. }
  26000. },
  26001. },
  26002. [
  26003. {
  26004. name: "Macro",
  26005. height: math.unit(70, "feet"),
  26006. default: true
  26007. },
  26008. ]
  26009. ))
  26010. characterMakers.push(() => makeCharacter(
  26011. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26012. {
  26013. front: {
  26014. height: math.unit(32, "meters"),
  26015. weight: math.unit(300000, "kg"),
  26016. name: "Front",
  26017. image: {
  26018. source: "./media/characters/almor/front.svg",
  26019. extra: 1408 / 1322,
  26020. bottom: 94.6 / 1506.5
  26021. }
  26022. },
  26023. },
  26024. [
  26025. {
  26026. name: "Macro",
  26027. height: math.unit(32, "meters"),
  26028. default: true
  26029. },
  26030. ]
  26031. ))
  26032. characterMakers.push(() => makeCharacter(
  26033. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26034. {
  26035. front: {
  26036. height: math.unit(7, "feet"),
  26037. weight: math.unit(200, "lb"),
  26038. name: "Front",
  26039. image: {
  26040. source: "./media/characters/silver/front.svg",
  26041. extra: 472.1 / 450.5,
  26042. bottom: 26.5 / 499.424
  26043. }
  26044. },
  26045. },
  26046. [
  26047. {
  26048. name: "Normal",
  26049. height: math.unit(7, "feet"),
  26050. default: true
  26051. },
  26052. {
  26053. name: "Macro",
  26054. height: math.unit(800, "feet")
  26055. },
  26056. {
  26057. name: "Megamacro",
  26058. height: math.unit(250, "miles")
  26059. },
  26060. ]
  26061. ))
  26062. characterMakers.push(() => makeCharacter(
  26063. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26064. {
  26065. front: {
  26066. height: math.unit(6, "feet"),
  26067. weight: math.unit(150, "lb"),
  26068. name: "Front",
  26069. image: {
  26070. source: "./media/characters/pliskin/front.svg",
  26071. extra: 1469 / 1359,
  26072. bottom: 70 / 1540
  26073. }
  26074. },
  26075. },
  26076. [
  26077. {
  26078. name: "Micro",
  26079. height: math.unit(3, "inches")
  26080. },
  26081. {
  26082. name: "Normal",
  26083. height: math.unit(5 + 11 / 12, "feet"),
  26084. default: true
  26085. },
  26086. {
  26087. name: "Macro",
  26088. height: math.unit(120, "feet")
  26089. },
  26090. ]
  26091. ))
  26092. characterMakers.push(() => makeCharacter(
  26093. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26094. {
  26095. front: {
  26096. height: math.unit(6, "feet"),
  26097. weight: math.unit(150, "lb"),
  26098. name: "Front",
  26099. image: {
  26100. source: "./media/characters/sammy/front.svg",
  26101. extra: 1193 / 1089,
  26102. bottom: 30.5 / 1226
  26103. }
  26104. },
  26105. },
  26106. [
  26107. {
  26108. name: "Macro",
  26109. height: math.unit(1700, "feet"),
  26110. default: true
  26111. },
  26112. {
  26113. name: "Examacro",
  26114. height: math.unit(2.5e9, "lightyears")
  26115. },
  26116. ]
  26117. ))
  26118. characterMakers.push(() => makeCharacter(
  26119. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26120. {
  26121. front: {
  26122. height: math.unit(21, "meters"),
  26123. weight: math.unit(12, "tonnes"),
  26124. name: "Front",
  26125. image: {
  26126. source: "./media/characters/kuru/front.svg",
  26127. extra: 4301 / 3785,
  26128. bottom: 371.3 / 4691
  26129. }
  26130. },
  26131. },
  26132. [
  26133. {
  26134. name: "Macro",
  26135. height: math.unit(21, "meters"),
  26136. default: true
  26137. },
  26138. ]
  26139. ))
  26140. characterMakers.push(() => makeCharacter(
  26141. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26142. {
  26143. front: {
  26144. height: math.unit(23, "meters"),
  26145. weight: math.unit(12.2, "tonnes"),
  26146. name: "Front",
  26147. image: {
  26148. source: "./media/characters/rakka/front.svg",
  26149. extra: 4670 / 4169,
  26150. bottom: 301 / 4968.7
  26151. }
  26152. },
  26153. },
  26154. [
  26155. {
  26156. name: "Macro",
  26157. height: math.unit(23, "meters"),
  26158. default: true
  26159. },
  26160. ]
  26161. ))
  26162. characterMakers.push(() => makeCharacter(
  26163. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26164. {
  26165. front: {
  26166. height: math.unit(6, "feet"),
  26167. weight: math.unit(150, "lb"),
  26168. name: "Front",
  26169. image: {
  26170. source: "./media/characters/rhys-feline/front.svg",
  26171. extra: 2488 / 2308,
  26172. bottom: 35.67 / 2519.19
  26173. }
  26174. },
  26175. },
  26176. [
  26177. {
  26178. name: "Really Small",
  26179. height: math.unit(1, "nm")
  26180. },
  26181. {
  26182. name: "Micro",
  26183. height: math.unit(4, "inches")
  26184. },
  26185. {
  26186. name: "Normal",
  26187. height: math.unit(4 + 10 / 12, "feet"),
  26188. default: true
  26189. },
  26190. {
  26191. name: "Macro",
  26192. height: math.unit(100, "feet")
  26193. },
  26194. {
  26195. name: "Megamacto",
  26196. height: math.unit(50, "miles")
  26197. },
  26198. ]
  26199. ))
  26200. characterMakers.push(() => makeCharacter(
  26201. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26202. {
  26203. side: {
  26204. height: math.unit(30, "feet"),
  26205. weight: math.unit(35000, "kg"),
  26206. name: "Side",
  26207. image: {
  26208. source: "./media/characters/alydar/side.svg",
  26209. extra: 234 / 222,
  26210. bottom: 6.5 / 241
  26211. }
  26212. },
  26213. front: {
  26214. height: math.unit(30, "feet"),
  26215. weight: math.unit(35000, "kg"),
  26216. name: "Front",
  26217. image: {
  26218. source: "./media/characters/alydar/front.svg",
  26219. extra: 223.37 / 210.2,
  26220. bottom: 22.3 / 246.76
  26221. }
  26222. },
  26223. top: {
  26224. height: math.unit(64.54, "feet"),
  26225. weight: math.unit(35000, "kg"),
  26226. name: "Top",
  26227. image: {
  26228. source: "./media/characters/alydar/top.svg"
  26229. }
  26230. },
  26231. anthro: {
  26232. height: math.unit(30, "feet"),
  26233. weight: math.unit(9000, "kg"),
  26234. name: "Anthro",
  26235. image: {
  26236. source: "./media/characters/alydar/anthro.svg",
  26237. extra: 432 / 421,
  26238. bottom: 7.18 / 440
  26239. }
  26240. },
  26241. maw: {
  26242. height: math.unit(11.693, "feet"),
  26243. name: "Maw",
  26244. image: {
  26245. source: "./media/characters/alydar/maw.svg"
  26246. }
  26247. },
  26248. head: {
  26249. height: math.unit(11.693, "feet"),
  26250. name: "Head",
  26251. image: {
  26252. source: "./media/characters/alydar/head.svg"
  26253. }
  26254. },
  26255. headAlt: {
  26256. height: math.unit(12.861, "feet"),
  26257. name: "Head (Alt)",
  26258. image: {
  26259. source: "./media/characters/alydar/head-alt.svg"
  26260. }
  26261. },
  26262. wing: {
  26263. height: math.unit(20.712, "feet"),
  26264. name: "Wing",
  26265. image: {
  26266. source: "./media/characters/alydar/wing.svg"
  26267. }
  26268. },
  26269. wingFeather: {
  26270. height: math.unit(9.662, "feet"),
  26271. name: "Wing Feather",
  26272. image: {
  26273. source: "./media/characters/alydar/wing-feather.svg"
  26274. }
  26275. },
  26276. countourFeather: {
  26277. height: math.unit(4.154, "feet"),
  26278. name: "Contour Feather",
  26279. image: {
  26280. source: "./media/characters/alydar/contour-feather.svg"
  26281. }
  26282. },
  26283. },
  26284. [
  26285. {
  26286. name: "Diplomatic",
  26287. height: math.unit(13, "feet"),
  26288. default: true
  26289. },
  26290. {
  26291. name: "Small",
  26292. height: math.unit(30, "feet")
  26293. },
  26294. {
  26295. name: "Normal",
  26296. height: math.unit(95, "feet"),
  26297. default: true
  26298. },
  26299. {
  26300. name: "Large",
  26301. height: math.unit(285, "feet")
  26302. },
  26303. {
  26304. name: "Incomprehensible",
  26305. height: math.unit(450, "megameters")
  26306. },
  26307. ]
  26308. ))
  26309. characterMakers.push(() => makeCharacter(
  26310. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26311. {
  26312. side: {
  26313. height: math.unit(11, "feet"),
  26314. weight: math.unit(1750, "kg"),
  26315. name: "Side",
  26316. image: {
  26317. source: "./media/characters/selicia/side.svg",
  26318. extra: 440 / 396,
  26319. bottom: 24.8 / 465.979
  26320. }
  26321. },
  26322. maw: {
  26323. height: math.unit(4.665, "feet"),
  26324. name: "Maw",
  26325. image: {
  26326. source: "./media/characters/selicia/maw.svg"
  26327. }
  26328. },
  26329. },
  26330. [
  26331. {
  26332. name: "Normal",
  26333. height: math.unit(11, "feet"),
  26334. default: true
  26335. },
  26336. ]
  26337. ))
  26338. characterMakers.push(() => makeCharacter(
  26339. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26340. {
  26341. side: {
  26342. height: math.unit(2 + 6 / 12, "feet"),
  26343. weight: math.unit(30, "lb"),
  26344. name: "Side",
  26345. image: {
  26346. source: "./media/characters/layla/side.svg",
  26347. extra: 244 / 188,
  26348. bottom: 18.2 / 262.1
  26349. }
  26350. },
  26351. back: {
  26352. height: math.unit(2 + 6 / 12, "feet"),
  26353. weight: math.unit(30, "lb"),
  26354. name: "Back",
  26355. image: {
  26356. source: "./media/characters/layla/back.svg",
  26357. extra: 308 / 241.5,
  26358. bottom: 8.9 / 316.8
  26359. }
  26360. },
  26361. cumming: {
  26362. height: math.unit(2 + 6 / 12, "feet"),
  26363. weight: math.unit(30, "lb"),
  26364. name: "Cumming",
  26365. image: {
  26366. source: "./media/characters/layla/cumming.svg",
  26367. extra: 342 / 279,
  26368. bottom: 595 / 938
  26369. }
  26370. },
  26371. dickFlaccid: {
  26372. height: math.unit(2.595, "feet"),
  26373. name: "Flaccid Genitals",
  26374. image: {
  26375. source: "./media/characters/layla/dick-flaccid.svg"
  26376. }
  26377. },
  26378. dickErect: {
  26379. height: math.unit(2.359, "feet"),
  26380. name: "Erect Genitals",
  26381. image: {
  26382. source: "./media/characters/layla/dick-erect.svg"
  26383. }
  26384. },
  26385. dragon: {
  26386. height: math.unit(40, "feet"),
  26387. name: "Dragon",
  26388. image: {
  26389. source: "./media/characters/layla/dragon.svg",
  26390. extra: 610/535,
  26391. bottom: 367/977
  26392. }
  26393. },
  26394. taur: {
  26395. height: math.unit(30, "feet"),
  26396. name: "Taur",
  26397. image: {
  26398. source: "./media/characters/layla/taur.svg",
  26399. extra: 1268/1199,
  26400. bottom: 112/1380
  26401. }
  26402. },
  26403. },
  26404. [
  26405. {
  26406. name: "Micro",
  26407. height: math.unit(1, "inch")
  26408. },
  26409. {
  26410. name: "Small",
  26411. height: math.unit(1, "foot")
  26412. },
  26413. {
  26414. name: "Normal",
  26415. height: math.unit(2 + 6 / 12, "feet"),
  26416. default: true
  26417. },
  26418. {
  26419. name: "Macro",
  26420. height: math.unit(200, "feet")
  26421. },
  26422. {
  26423. name: "Megamacro",
  26424. height: math.unit(1000, "miles")
  26425. },
  26426. {
  26427. name: "Planetary",
  26428. height: math.unit(8000, "miles")
  26429. },
  26430. {
  26431. name: "True Layla",
  26432. height: math.unit(200000 * 7, "multiverses")
  26433. },
  26434. ]
  26435. ))
  26436. characterMakers.push(() => makeCharacter(
  26437. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26438. {
  26439. back: {
  26440. height: math.unit(10.5, "feet"),
  26441. weight: math.unit(800, "lb"),
  26442. name: "Back",
  26443. image: {
  26444. source: "./media/characters/knox/back.svg",
  26445. extra: 1486 / 1089,
  26446. bottom: 107 / 1601.4
  26447. }
  26448. },
  26449. side: {
  26450. height: math.unit(10.5, "feet"),
  26451. weight: math.unit(800, "lb"),
  26452. name: "Side",
  26453. image: {
  26454. source: "./media/characters/knox/side.svg",
  26455. extra: 244 / 218,
  26456. bottom: 14 / 260
  26457. }
  26458. },
  26459. },
  26460. [
  26461. {
  26462. name: "Compact",
  26463. height: math.unit(10.5, "feet"),
  26464. default: true
  26465. },
  26466. {
  26467. name: "Dynamax",
  26468. height: math.unit(210, "feet")
  26469. },
  26470. {
  26471. name: "Full Macro",
  26472. height: math.unit(850, "feet")
  26473. },
  26474. ]
  26475. ))
  26476. characterMakers.push(() => makeCharacter(
  26477. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26478. {
  26479. front: {
  26480. height: math.unit(28, "feet"),
  26481. weight: math.unit(10500, "lb"),
  26482. name: "Front",
  26483. image: {
  26484. source: "./media/characters/kayda/front.svg",
  26485. extra: 1536 / 1428,
  26486. bottom: 68.7 / 1603
  26487. }
  26488. },
  26489. back: {
  26490. height: math.unit(28, "feet"),
  26491. weight: math.unit(10500, "lb"),
  26492. name: "Back",
  26493. image: {
  26494. source: "./media/characters/kayda/back.svg",
  26495. extra: 1557 / 1464,
  26496. bottom: 39.5 / 1597.49
  26497. }
  26498. },
  26499. dick: {
  26500. height: math.unit(3.858, "feet"),
  26501. name: "Dick",
  26502. image: {
  26503. source: "./media/characters/kayda/dick.svg"
  26504. }
  26505. },
  26506. },
  26507. [
  26508. {
  26509. name: "Macro",
  26510. height: math.unit(28, "feet"),
  26511. default: true
  26512. },
  26513. ]
  26514. ))
  26515. characterMakers.push(() => makeCharacter(
  26516. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26517. {
  26518. front: {
  26519. height: math.unit(10 + 11 / 12, "feet"),
  26520. weight: math.unit(1400, "lb"),
  26521. name: "Front",
  26522. image: {
  26523. source: "./media/characters/brian/front.svg",
  26524. extra: 737 / 692,
  26525. bottom: 55.4 / 785
  26526. }
  26527. },
  26528. },
  26529. [
  26530. {
  26531. name: "Normal",
  26532. height: math.unit(10 + 11 / 12, "feet"),
  26533. default: true
  26534. },
  26535. ]
  26536. ))
  26537. characterMakers.push(() => makeCharacter(
  26538. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26539. {
  26540. front: {
  26541. height: math.unit(5 + 8 / 12, "feet"),
  26542. weight: math.unit(140, "lb"),
  26543. name: "Front",
  26544. image: {
  26545. source: "./media/characters/khemri/front.svg",
  26546. extra: 4780 / 4059,
  26547. bottom: 80.1 / 4859.25
  26548. }
  26549. },
  26550. },
  26551. [
  26552. {
  26553. name: "Micro",
  26554. height: math.unit(6, "inches")
  26555. },
  26556. {
  26557. name: "Normal",
  26558. height: math.unit(5 + 8 / 12, "feet"),
  26559. default: true
  26560. },
  26561. ]
  26562. ))
  26563. characterMakers.push(() => makeCharacter(
  26564. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26565. {
  26566. front: {
  26567. height: math.unit(13, "feet"),
  26568. weight: math.unit(1700, "lb"),
  26569. name: "Front",
  26570. image: {
  26571. source: "./media/characters/felix-braveheart/front.svg",
  26572. extra: 1222 / 1157,
  26573. bottom: 53.2 / 1280
  26574. }
  26575. },
  26576. back: {
  26577. height: math.unit(13, "feet"),
  26578. weight: math.unit(1700, "lb"),
  26579. name: "Back",
  26580. image: {
  26581. source: "./media/characters/felix-braveheart/back.svg",
  26582. extra: 1277 / 1203,
  26583. bottom: 50.2 / 1327
  26584. }
  26585. },
  26586. feral: {
  26587. height: math.unit(6, "feet"),
  26588. weight: math.unit(400, "lb"),
  26589. name: "Feral",
  26590. image: {
  26591. source: "./media/characters/felix-braveheart/feral.svg",
  26592. extra: 682 / 625,
  26593. bottom: 6.9 / 688
  26594. }
  26595. },
  26596. },
  26597. [
  26598. {
  26599. name: "Normal",
  26600. height: math.unit(13, "feet"),
  26601. default: true
  26602. },
  26603. ]
  26604. ))
  26605. characterMakers.push(() => makeCharacter(
  26606. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26607. {
  26608. side: {
  26609. height: math.unit(5 + 11 / 12, "feet"),
  26610. weight: math.unit(1400, "lb"),
  26611. name: "Side",
  26612. image: {
  26613. source: "./media/characters/shadow-blade/side.svg",
  26614. extra: 1726 / 1267,
  26615. bottom: 58.4 / 1785
  26616. }
  26617. },
  26618. },
  26619. [
  26620. {
  26621. name: "Normal",
  26622. height: math.unit(5 + 11 / 12, "feet"),
  26623. default: true
  26624. },
  26625. ]
  26626. ))
  26627. characterMakers.push(() => makeCharacter(
  26628. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26629. {
  26630. front: {
  26631. height: math.unit(1 + 6 / 12, "feet"),
  26632. weight: math.unit(25, "lb"),
  26633. name: "Front",
  26634. image: {
  26635. source: "./media/characters/karla-halldor/front.svg",
  26636. extra: 1459 / 1383,
  26637. bottom: 12 / 1472
  26638. }
  26639. },
  26640. },
  26641. [
  26642. {
  26643. name: "Normal",
  26644. height: math.unit(1 + 6 / 12, "feet"),
  26645. default: true
  26646. },
  26647. ]
  26648. ))
  26649. characterMakers.push(() => makeCharacter(
  26650. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26651. {
  26652. front: {
  26653. height: math.unit(6 + 2 / 12, "feet"),
  26654. weight: math.unit(160, "lb"),
  26655. name: "Front",
  26656. image: {
  26657. source: "./media/characters/ariam/front.svg",
  26658. extra: 1073/976,
  26659. bottom: 52/1125
  26660. }
  26661. },
  26662. back: {
  26663. height: math.unit(6 + 2/12, "feet"),
  26664. weight: math.unit(160, "lb"),
  26665. name: "Back",
  26666. image: {
  26667. source: "./media/characters/ariam/back.svg",
  26668. extra: 1103/1023,
  26669. bottom: 9/1112
  26670. }
  26671. },
  26672. dressed: {
  26673. height: math.unit(6 + 2/12, "feet"),
  26674. weight: math.unit(160, "lb"),
  26675. name: "Dressed",
  26676. image: {
  26677. source: "./media/characters/ariam/dressed.svg",
  26678. extra: 1099/1009,
  26679. bottom: 25/1124
  26680. }
  26681. },
  26682. squatting: {
  26683. height: math.unit(4.1, "feet"),
  26684. weight: math.unit(160, "lb"),
  26685. name: "Squatting",
  26686. image: {
  26687. source: "./media/characters/ariam/squatting.svg",
  26688. extra: 2617 / 2112,
  26689. bottom: 61.2 / 2681,
  26690. }
  26691. },
  26692. },
  26693. [
  26694. {
  26695. name: "Normal",
  26696. height: math.unit(6 + 2 / 12, "feet"),
  26697. default: true
  26698. },
  26699. {
  26700. name: "Normal+",
  26701. height: math.unit(4, "meters")
  26702. },
  26703. {
  26704. name: "Macro",
  26705. height: math.unit(50, "meters")
  26706. },
  26707. {
  26708. name: "Macro+",
  26709. height: math.unit(100, "meters")
  26710. },
  26711. {
  26712. name: "Megamacro",
  26713. height: math.unit(20, "km")
  26714. },
  26715. {
  26716. name: "Caretaker",
  26717. height: math.unit(444, "megameters")
  26718. },
  26719. ]
  26720. ))
  26721. characterMakers.push(() => makeCharacter(
  26722. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26723. {
  26724. front: {
  26725. height: math.unit(1.67, "meters"),
  26726. weight: math.unit(140, "lb"),
  26727. name: "Front",
  26728. image: {
  26729. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26730. extra: 438 / 410,
  26731. bottom: 0.75 / 439
  26732. }
  26733. },
  26734. },
  26735. [
  26736. {
  26737. name: "Shrunken",
  26738. height: math.unit(7.6, "cm")
  26739. },
  26740. {
  26741. name: "Human Scale",
  26742. height: math.unit(1.67, "meters")
  26743. },
  26744. {
  26745. name: "Wolxi Scale",
  26746. height: math.unit(36.7, "meters"),
  26747. default: true
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26753. {
  26754. front: {
  26755. height: math.unit(1.73, "meters"),
  26756. weight: math.unit(240, "lb"),
  26757. name: "Front",
  26758. image: {
  26759. source: "./media/characters/izue-two-mothers/front.svg",
  26760. extra: 469 / 437,
  26761. bottom: 1.24 / 470.6
  26762. }
  26763. },
  26764. },
  26765. [
  26766. {
  26767. name: "Shrunken",
  26768. height: math.unit(7.86, "cm")
  26769. },
  26770. {
  26771. name: "Human Scale",
  26772. height: math.unit(1.73, "meters")
  26773. },
  26774. {
  26775. name: "Wolxi Scale",
  26776. height: math.unit(38, "meters"),
  26777. default: true
  26778. },
  26779. ]
  26780. ))
  26781. characterMakers.push(() => makeCharacter(
  26782. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26783. {
  26784. front: {
  26785. height: math.unit(1.55, "meters"),
  26786. weight: math.unit(120, "lb"),
  26787. name: "Front",
  26788. image: {
  26789. source: "./media/characters/teeku-love-shack/front.svg",
  26790. extra: 387 / 362,
  26791. bottom: 1.51 / 388
  26792. }
  26793. },
  26794. },
  26795. [
  26796. {
  26797. name: "Shrunken",
  26798. height: math.unit(7, "cm")
  26799. },
  26800. {
  26801. name: "Human Scale",
  26802. height: math.unit(1.55, "meters")
  26803. },
  26804. {
  26805. name: "Wolxi Scale",
  26806. height: math.unit(34.1, "meters"),
  26807. default: true
  26808. },
  26809. ]
  26810. ))
  26811. characterMakers.push(() => makeCharacter(
  26812. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26813. {
  26814. front: {
  26815. height: math.unit(1.83, "meters"),
  26816. weight: math.unit(135, "lb"),
  26817. name: "Front",
  26818. image: {
  26819. source: "./media/characters/dejma-the-red/front.svg",
  26820. extra: 480 / 458,
  26821. bottom: 1.8 / 482
  26822. }
  26823. },
  26824. },
  26825. [
  26826. {
  26827. name: "Shrunken",
  26828. height: math.unit(8.3, "cm")
  26829. },
  26830. {
  26831. name: "Human Scale",
  26832. height: math.unit(1.83, "meters")
  26833. },
  26834. {
  26835. name: "Wolxi Scale",
  26836. height: math.unit(40, "meters"),
  26837. default: true
  26838. },
  26839. ]
  26840. ))
  26841. characterMakers.push(() => makeCharacter(
  26842. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26843. {
  26844. front: {
  26845. height: math.unit(1.78, "meters"),
  26846. weight: math.unit(65, "kg"),
  26847. name: "Front",
  26848. image: {
  26849. source: "./media/characters/aki/front.svg",
  26850. extra: 452 / 415
  26851. }
  26852. },
  26853. frontNsfw: {
  26854. height: math.unit(1.78, "meters"),
  26855. weight: math.unit(65, "kg"),
  26856. name: "Front (NSFW)",
  26857. image: {
  26858. source: "./media/characters/aki/front-nsfw.svg",
  26859. extra: 452 / 415
  26860. }
  26861. },
  26862. back: {
  26863. height: math.unit(1.78, "meters"),
  26864. weight: math.unit(65, "kg"),
  26865. name: "Back",
  26866. image: {
  26867. source: "./media/characters/aki/back.svg",
  26868. extra: 452 / 415
  26869. }
  26870. },
  26871. rump: {
  26872. height: math.unit(2.05, "feet"),
  26873. name: "Rump",
  26874. image: {
  26875. source: "./media/characters/aki/rump.svg"
  26876. }
  26877. },
  26878. dick: {
  26879. height: math.unit(0.95, "feet"),
  26880. name: "Dick",
  26881. image: {
  26882. source: "./media/characters/aki/dick.svg"
  26883. }
  26884. },
  26885. },
  26886. [
  26887. {
  26888. name: "Micro",
  26889. height: math.unit(15, "cm")
  26890. },
  26891. {
  26892. name: "Normal",
  26893. height: math.unit(178, "cm"),
  26894. default: true
  26895. },
  26896. {
  26897. name: "Macro",
  26898. height: math.unit(214, "m")
  26899. },
  26900. {
  26901. name: "Macro+",
  26902. height: math.unit(534, "m")
  26903. },
  26904. ]
  26905. ))
  26906. characterMakers.push(() => makeCharacter(
  26907. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26908. {
  26909. front: {
  26910. height: math.unit(5 + 5 / 12, "feet"),
  26911. weight: math.unit(120, "lb"),
  26912. name: "Front",
  26913. image: {
  26914. source: "./media/characters/ari/front.svg",
  26915. extra: 1550/1471,
  26916. bottom: 39/1589
  26917. }
  26918. },
  26919. },
  26920. [
  26921. {
  26922. name: "Normal",
  26923. height: math.unit(5 + 5 / 12, "feet")
  26924. },
  26925. {
  26926. name: "Macro",
  26927. height: math.unit(100, "feet"),
  26928. default: true
  26929. },
  26930. {
  26931. name: "Megamacro",
  26932. height: math.unit(100, "miles")
  26933. },
  26934. {
  26935. name: "Gigamacro",
  26936. height: math.unit(80000, "miles")
  26937. },
  26938. ]
  26939. ))
  26940. characterMakers.push(() => makeCharacter(
  26941. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26942. {
  26943. side: {
  26944. height: math.unit(9, "feet"),
  26945. weight: math.unit(400, "kg"),
  26946. name: "Side",
  26947. image: {
  26948. source: "./media/characters/bolt/side.svg",
  26949. extra: 1126 / 896,
  26950. bottom: 60 / 1187.3,
  26951. }
  26952. },
  26953. },
  26954. [
  26955. {
  26956. name: "Micro",
  26957. height: math.unit(5, "inches")
  26958. },
  26959. {
  26960. name: "Normal",
  26961. height: math.unit(9, "feet"),
  26962. default: true
  26963. },
  26964. {
  26965. name: "Macro",
  26966. height: math.unit(700, "feet")
  26967. },
  26968. {
  26969. name: "Max Size",
  26970. height: math.unit(1.52e22, "yottameters")
  26971. },
  26972. ]
  26973. ))
  26974. characterMakers.push(() => makeCharacter(
  26975. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26976. {
  26977. front: {
  26978. height: math.unit(4.3, "meters"),
  26979. weight: math.unit(3, "tons"),
  26980. name: "Front",
  26981. image: {
  26982. source: "./media/characters/draekon-sylviar/front.svg",
  26983. extra: 2072/1512,
  26984. bottom: 74/2146
  26985. }
  26986. },
  26987. back: {
  26988. height: math.unit(4.3, "meters"),
  26989. weight: math.unit(3, "tons"),
  26990. name: "Back",
  26991. image: {
  26992. source: "./media/characters/draekon-sylviar/back.svg",
  26993. extra: 1639/1483,
  26994. bottom: 41/1680
  26995. }
  26996. },
  26997. feral: {
  26998. height: math.unit(1.15, "meters"),
  26999. weight: math.unit(3, "tons"),
  27000. name: "Feral",
  27001. image: {
  27002. source: "./media/characters/draekon-sylviar/feral.svg",
  27003. extra: 1033/395,
  27004. bottom: 130/1163
  27005. }
  27006. },
  27007. maw: {
  27008. height: math.unit(1.3, "meters"),
  27009. name: "Maw",
  27010. image: {
  27011. source: "./media/characters/draekon-sylviar/maw.svg"
  27012. }
  27013. },
  27014. mawSeparated: {
  27015. height: math.unit(1.53, "meters"),
  27016. name: "Separated Maw",
  27017. image: {
  27018. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27019. }
  27020. },
  27021. tail: {
  27022. height: math.unit(1.15, "meters"),
  27023. name: "Tail",
  27024. image: {
  27025. source: "./media/characters/draekon-sylviar/tail.svg"
  27026. }
  27027. },
  27028. tailDick: {
  27029. height: math.unit(1.15, "meters"),
  27030. name: "Tail (Dick)",
  27031. image: {
  27032. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27033. }
  27034. },
  27035. tailDickSeparated: {
  27036. height: math.unit(1.19, "meters"),
  27037. name: "Tail (Separated Dick)",
  27038. image: {
  27039. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27040. }
  27041. },
  27042. slit: {
  27043. height: math.unit(1, "meters"),
  27044. name: "Slit",
  27045. image: {
  27046. source: "./media/characters/draekon-sylviar/slit.svg"
  27047. }
  27048. },
  27049. dick: {
  27050. height: math.unit(1.15, "meters"),
  27051. name: "Dick",
  27052. image: {
  27053. source: "./media/characters/draekon-sylviar/dick.svg"
  27054. }
  27055. },
  27056. dickSeparated: {
  27057. height: math.unit(1.1, "meters"),
  27058. name: "Separated Dick",
  27059. image: {
  27060. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27061. }
  27062. },
  27063. sheath: {
  27064. height: math.unit(1.15, "meters"),
  27065. name: "Sheath",
  27066. image: {
  27067. source: "./media/characters/draekon-sylviar/sheath.svg"
  27068. }
  27069. },
  27070. },
  27071. [
  27072. {
  27073. name: "Small",
  27074. height: math.unit(4.53 / 2, "meters"),
  27075. default: true
  27076. },
  27077. {
  27078. name: "Normal",
  27079. height: math.unit(4.53, "meters"),
  27080. default: true
  27081. },
  27082. {
  27083. name: "Large",
  27084. height: math.unit(4.53 * 2, "meters"),
  27085. },
  27086. ]
  27087. ))
  27088. characterMakers.push(() => makeCharacter(
  27089. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27090. {
  27091. front: {
  27092. height: math.unit(6 + 2 / 12, "feet"),
  27093. weight: math.unit(180, "lb"),
  27094. name: "Front",
  27095. image: {
  27096. source: "./media/characters/brawler/front.svg",
  27097. extra: 3301 / 3027,
  27098. bottom: 138 / 3439
  27099. }
  27100. },
  27101. },
  27102. [
  27103. {
  27104. name: "Normal",
  27105. height: math.unit(6 + 2 / 12, "feet"),
  27106. default: true
  27107. },
  27108. ]
  27109. ))
  27110. characterMakers.push(() => makeCharacter(
  27111. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27112. {
  27113. front: {
  27114. height: math.unit(11, "feet"),
  27115. weight: math.unit(1000, "lb"),
  27116. name: "Front",
  27117. image: {
  27118. source: "./media/characters/alex/front.svg",
  27119. bottom: 44.5 / 620
  27120. }
  27121. },
  27122. },
  27123. [
  27124. {
  27125. name: "Micro",
  27126. height: math.unit(5, "inches")
  27127. },
  27128. {
  27129. name: "Normal",
  27130. height: math.unit(11, "feet"),
  27131. default: true
  27132. },
  27133. {
  27134. name: "Macro",
  27135. height: math.unit(9.5e9, "feet")
  27136. },
  27137. {
  27138. name: "Max Size",
  27139. height: math.unit(1.4e283, "yottameters")
  27140. },
  27141. ]
  27142. ))
  27143. characterMakers.push(() => makeCharacter(
  27144. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27145. {
  27146. female: {
  27147. height: math.unit(29.9, "m"),
  27148. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27149. name: "Female",
  27150. image: {
  27151. source: "./media/characters/zenari/female.svg",
  27152. extra: 3281.6 / 3217,
  27153. bottom: 72.2 / 3353
  27154. }
  27155. },
  27156. male: {
  27157. height: math.unit(27.7, "m"),
  27158. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27159. name: "Male",
  27160. image: {
  27161. source: "./media/characters/zenari/male.svg",
  27162. extra: 3008 / 2991,
  27163. bottom: 54.6 / 3069
  27164. }
  27165. },
  27166. },
  27167. [
  27168. {
  27169. name: "Macro",
  27170. height: math.unit(29.7, "meters"),
  27171. default: true
  27172. },
  27173. ]
  27174. ))
  27175. characterMakers.push(() => makeCharacter(
  27176. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27177. {
  27178. female: {
  27179. height: math.unit(23.8, "m"),
  27180. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27181. name: "Female",
  27182. image: {
  27183. source: "./media/characters/mactarian/female.svg",
  27184. extra: 2662 / 2569,
  27185. bottom: 73 / 2736
  27186. }
  27187. },
  27188. male: {
  27189. height: math.unit(23.8, "m"),
  27190. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27191. name: "Male",
  27192. image: {
  27193. source: "./media/characters/mactarian/male.svg",
  27194. extra: 2673 / 2600,
  27195. bottom: 76 / 2750
  27196. }
  27197. },
  27198. },
  27199. [
  27200. {
  27201. name: "Macro",
  27202. height: math.unit(23.8, "meters"),
  27203. default: true
  27204. },
  27205. ]
  27206. ))
  27207. characterMakers.push(() => makeCharacter(
  27208. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27209. {
  27210. female: {
  27211. height: math.unit(19.3, "m"),
  27212. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27213. name: "Female",
  27214. image: {
  27215. source: "./media/characters/umok/female.svg",
  27216. extra: 2186 / 2078,
  27217. bottom: 87 / 2277
  27218. }
  27219. },
  27220. male: {
  27221. height: math.unit(19.5, "m"),
  27222. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27223. name: "Male",
  27224. image: {
  27225. source: "./media/characters/umok/male.svg",
  27226. extra: 2233 / 2140,
  27227. bottom: 24.4 / 2258
  27228. }
  27229. },
  27230. },
  27231. [
  27232. {
  27233. name: "Macro",
  27234. height: math.unit(19.3, "meters"),
  27235. default: true
  27236. },
  27237. ]
  27238. ))
  27239. characterMakers.push(() => makeCharacter(
  27240. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27241. {
  27242. female: {
  27243. height: math.unit(26.15, "m"),
  27244. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27245. name: "Female",
  27246. image: {
  27247. source: "./media/characters/joraxian/female.svg",
  27248. extra: 2912 / 2824,
  27249. bottom: 36 / 2956
  27250. }
  27251. },
  27252. male: {
  27253. height: math.unit(25.4, "m"),
  27254. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27255. name: "Male",
  27256. image: {
  27257. source: "./media/characters/joraxian/male.svg",
  27258. extra: 2877 / 2721,
  27259. bottom: 82 / 2967
  27260. }
  27261. },
  27262. },
  27263. [
  27264. {
  27265. name: "Macro",
  27266. height: math.unit(26.15, "meters"),
  27267. default: true
  27268. },
  27269. ]
  27270. ))
  27271. characterMakers.push(() => makeCharacter(
  27272. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27273. {
  27274. female: {
  27275. height: math.unit(21.6, "m"),
  27276. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27277. name: "Female",
  27278. image: {
  27279. source: "./media/characters/sthara/female.svg",
  27280. extra: 2516 / 2347,
  27281. bottom: 21.5 / 2537
  27282. }
  27283. },
  27284. male: {
  27285. height: math.unit(24, "m"),
  27286. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27287. name: "Male",
  27288. image: {
  27289. source: "./media/characters/sthara/male.svg",
  27290. extra: 2732 / 2607,
  27291. bottom: 23 / 2732
  27292. }
  27293. },
  27294. },
  27295. [
  27296. {
  27297. name: "Macro",
  27298. height: math.unit(21.6, "meters"),
  27299. default: true
  27300. },
  27301. ]
  27302. ))
  27303. characterMakers.push(() => makeCharacter(
  27304. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27305. {
  27306. front: {
  27307. height: math.unit(6 + 4 / 12, "feet"),
  27308. weight: math.unit(175, "lb"),
  27309. name: "Front",
  27310. image: {
  27311. source: "./media/characters/luka-bryzant/front.svg",
  27312. extra: 311 / 289,
  27313. bottom: 4 / 315
  27314. }
  27315. },
  27316. back: {
  27317. height: math.unit(6 + 4 / 12, "feet"),
  27318. weight: math.unit(175, "lb"),
  27319. name: "Back",
  27320. image: {
  27321. source: "./media/characters/luka-bryzant/back.svg",
  27322. extra: 311 / 289,
  27323. bottom: 3.8 / 313.7
  27324. }
  27325. },
  27326. },
  27327. [
  27328. {
  27329. name: "Micro",
  27330. height: math.unit(10, "inches")
  27331. },
  27332. {
  27333. name: "Normal",
  27334. height: math.unit(6 + 4 / 12, "feet"),
  27335. default: true
  27336. },
  27337. {
  27338. name: "Large",
  27339. height: math.unit(12, "feet")
  27340. },
  27341. ]
  27342. ))
  27343. characterMakers.push(() => makeCharacter(
  27344. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27345. {
  27346. front: {
  27347. height: math.unit(5 + 7 / 12, "feet"),
  27348. weight: math.unit(185, "lb"),
  27349. name: "Front",
  27350. image: {
  27351. source: "./media/characters/aman-aquila/front.svg",
  27352. extra: 1013 / 976,
  27353. bottom: 45.6 / 1057
  27354. }
  27355. },
  27356. side: {
  27357. height: math.unit(5 + 7 / 12, "feet"),
  27358. weight: math.unit(185, "lb"),
  27359. name: "Side",
  27360. image: {
  27361. source: "./media/characters/aman-aquila/side.svg",
  27362. extra: 1054 / 1011,
  27363. bottom: 15 / 1070
  27364. }
  27365. },
  27366. back: {
  27367. height: math.unit(5 + 7 / 12, "feet"),
  27368. weight: math.unit(185, "lb"),
  27369. name: "Back",
  27370. image: {
  27371. source: "./media/characters/aman-aquila/back.svg",
  27372. extra: 1026 / 970,
  27373. bottom: 12 / 1039
  27374. }
  27375. },
  27376. head: {
  27377. height: math.unit(1.211, "feet"),
  27378. name: "Head",
  27379. image: {
  27380. source: "./media/characters/aman-aquila/head.svg",
  27381. }
  27382. },
  27383. },
  27384. [
  27385. {
  27386. name: "Minimicro",
  27387. height: math.unit(0.057, "inches")
  27388. },
  27389. {
  27390. name: "Micro",
  27391. height: math.unit(7, "inches")
  27392. },
  27393. {
  27394. name: "Mini",
  27395. height: math.unit(3 + 7 / 12, "feet")
  27396. },
  27397. {
  27398. name: "Normal",
  27399. height: math.unit(5 + 7 / 12, "feet"),
  27400. default: true
  27401. },
  27402. {
  27403. name: "Macro",
  27404. height: math.unit(157 + 7 / 12, "feet")
  27405. },
  27406. {
  27407. name: "Megamacro",
  27408. height: math.unit(1557 + 7 / 12, "feet")
  27409. },
  27410. {
  27411. name: "Gigamacro",
  27412. height: math.unit(15557 + 7 / 12, "feet")
  27413. },
  27414. ]
  27415. ))
  27416. characterMakers.push(() => makeCharacter(
  27417. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27418. {
  27419. front: {
  27420. height: math.unit(3 + 2 / 12, "inches"),
  27421. weight: math.unit(0.3, "ounces"),
  27422. name: "Front",
  27423. image: {
  27424. source: "./media/characters/hiphae/front.svg",
  27425. extra: 1931 / 1683,
  27426. bottom: 24 / 1955
  27427. }
  27428. },
  27429. },
  27430. [
  27431. {
  27432. name: "Normal",
  27433. height: math.unit(3 + 1 / 2, "inches"),
  27434. default: true
  27435. },
  27436. ]
  27437. ))
  27438. characterMakers.push(() => makeCharacter(
  27439. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27440. {
  27441. front: {
  27442. height: math.unit(5 + 10 / 12, "feet"),
  27443. weight: math.unit(165, "lb"),
  27444. name: "Front",
  27445. image: {
  27446. source: "./media/characters/nicky/front.svg",
  27447. extra: 3144 / 2886,
  27448. bottom: 45.6 / 3192
  27449. }
  27450. },
  27451. back: {
  27452. height: math.unit(5 + 10 / 12, "feet"),
  27453. weight: math.unit(165, "lb"),
  27454. name: "Back",
  27455. image: {
  27456. source: "./media/characters/nicky/back.svg",
  27457. extra: 3055 / 2804,
  27458. bottom: 28.4 / 3087
  27459. }
  27460. },
  27461. frontclothed: {
  27462. height: math.unit(5 + 10 / 12, "feet"),
  27463. weight: math.unit(165, "lb"),
  27464. name: "Front-clothed",
  27465. image: {
  27466. source: "./media/characters/nicky/front-clothed.svg",
  27467. extra: 3184.9 / 2926.9,
  27468. bottom: 86.5 / 3239.9
  27469. }
  27470. },
  27471. foot: {
  27472. height: math.unit(1.16, "feet"),
  27473. name: "Foot",
  27474. image: {
  27475. source: "./media/characters/nicky/foot.svg"
  27476. }
  27477. },
  27478. feet: {
  27479. height: math.unit(1.34, "feet"),
  27480. name: "Feet",
  27481. image: {
  27482. source: "./media/characters/nicky/feet.svg"
  27483. }
  27484. },
  27485. maw: {
  27486. height: math.unit(0.9, "feet"),
  27487. name: "Maw",
  27488. image: {
  27489. source: "./media/characters/nicky/maw.svg"
  27490. }
  27491. },
  27492. },
  27493. [
  27494. {
  27495. name: "Normal",
  27496. height: math.unit(5 + 10 / 12, "feet"),
  27497. default: true
  27498. },
  27499. {
  27500. name: "Macro",
  27501. height: math.unit(60, "feet")
  27502. },
  27503. {
  27504. name: "Megamacro",
  27505. height: math.unit(1, "mile")
  27506. },
  27507. ]
  27508. ))
  27509. characterMakers.push(() => makeCharacter(
  27510. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27511. {
  27512. side: {
  27513. height: math.unit(10, "feet"),
  27514. weight: math.unit(600, "lb"),
  27515. name: "Side",
  27516. image: {
  27517. source: "./media/characters/blair/side.svg",
  27518. bottom: 16.6 / 475,
  27519. extra: 458 / 431
  27520. }
  27521. },
  27522. },
  27523. [
  27524. {
  27525. name: "Micro",
  27526. height: math.unit(8, "inches")
  27527. },
  27528. {
  27529. name: "Normal",
  27530. height: math.unit(10, "feet"),
  27531. default: true
  27532. },
  27533. {
  27534. name: "Macro",
  27535. height: math.unit(180, "feet")
  27536. },
  27537. ]
  27538. ))
  27539. characterMakers.push(() => makeCharacter(
  27540. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27541. {
  27542. front: {
  27543. height: math.unit(5 + 4 / 12, "feet"),
  27544. weight: math.unit(125, "lb"),
  27545. name: "Front",
  27546. image: {
  27547. source: "./media/characters/fisher/front.svg",
  27548. extra: 444 / 390,
  27549. bottom: 2 / 444.8
  27550. }
  27551. },
  27552. },
  27553. [
  27554. {
  27555. name: "Micro",
  27556. height: math.unit(4, "inches")
  27557. },
  27558. {
  27559. name: "Normal",
  27560. height: math.unit(5 + 4 / 12, "feet"),
  27561. default: true
  27562. },
  27563. {
  27564. name: "Macro",
  27565. height: math.unit(100, "feet")
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27571. {
  27572. front: {
  27573. height: math.unit(6.71, "feet"),
  27574. weight: math.unit(200, "lb"),
  27575. preyCapacity: math.unit(1000000, "people"),
  27576. name: "Front",
  27577. image: {
  27578. source: "./media/characters/gliss/front.svg",
  27579. extra: 2347 / 2231,
  27580. bottom: 113 / 2462
  27581. }
  27582. },
  27583. hammerspaceSize: {
  27584. height: math.unit(6.71 * 717, "feet"),
  27585. weight: math.unit(200, "lb"),
  27586. preyCapacity: math.unit(1000000, "people"),
  27587. name: "Hammerspace Size",
  27588. image: {
  27589. source: "./media/characters/gliss/front.svg",
  27590. extra: 2347 / 2231,
  27591. bottom: 113 / 2462
  27592. }
  27593. },
  27594. },
  27595. [
  27596. {
  27597. name: "Normal",
  27598. height: math.unit(6.71, "feet"),
  27599. default: true
  27600. },
  27601. ]
  27602. ))
  27603. characterMakers.push(() => makeCharacter(
  27604. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27605. {
  27606. side: {
  27607. height: math.unit(1.44, "m"),
  27608. weight: math.unit(80, "kg"),
  27609. name: "Side",
  27610. image: {
  27611. source: "./media/characters/dune-anderson/side.svg",
  27612. bottom: 49 / 1426
  27613. }
  27614. },
  27615. },
  27616. [
  27617. {
  27618. name: "Wolf-sized",
  27619. height: math.unit(1.44, "meters")
  27620. },
  27621. {
  27622. name: "Normal",
  27623. height: math.unit(5.05, "meters"),
  27624. default: true
  27625. },
  27626. {
  27627. name: "Big",
  27628. height: math.unit(14.4, "meters")
  27629. },
  27630. {
  27631. name: "Huge",
  27632. height: math.unit(144, "meters")
  27633. },
  27634. ]
  27635. ))
  27636. characterMakers.push(() => makeCharacter(
  27637. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27638. {
  27639. front: {
  27640. height: math.unit(6, "feet"),
  27641. weight: math.unit(220, "lb"),
  27642. name: "Front",
  27643. image: {
  27644. source: "./media/characters/hind/front.svg",
  27645. extra: 1912/1787,
  27646. bottom: 52/1964
  27647. }
  27648. },
  27649. back: {
  27650. height: math.unit(6, "feet"),
  27651. weight: math.unit(220, "lb"),
  27652. name: "Back",
  27653. image: {
  27654. source: "./media/characters/hind/back.svg",
  27655. extra: 1901/1794,
  27656. bottom: 26/1927
  27657. }
  27658. },
  27659. },
  27660. [
  27661. {
  27662. name: "Normal",
  27663. height: math.unit(6, "feet"),
  27664. default: true
  27665. },
  27666. ]
  27667. ))
  27668. characterMakers.push(() => makeCharacter(
  27669. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27670. {
  27671. front: {
  27672. height: math.unit(2.1, "meters"),
  27673. weight: math.unit(150, "lb"),
  27674. name: "Front",
  27675. image: {
  27676. source: "./media/characters/tharquench-sizestealer/front.svg",
  27677. extra: 1605/1470,
  27678. bottom: 36/1641
  27679. }
  27680. },
  27681. frontAlt: {
  27682. height: math.unit(2.1, "meters"),
  27683. weight: math.unit(150, "lb"),
  27684. name: "Front (Alt)",
  27685. image: {
  27686. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27687. extra: 2318 / 2063,
  27688. bottom: 93.4 / 2410
  27689. }
  27690. },
  27691. },
  27692. [
  27693. {
  27694. name: "Nano",
  27695. height: math.unit(1, "mm")
  27696. },
  27697. {
  27698. name: "Micro",
  27699. height: math.unit(1, "cm")
  27700. },
  27701. {
  27702. name: "Normal",
  27703. height: math.unit(2.1, "meters"),
  27704. default: true
  27705. },
  27706. ]
  27707. ))
  27708. characterMakers.push(() => makeCharacter(
  27709. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27710. {
  27711. front: {
  27712. height: math.unit(7 + 5 / 12, "feet"),
  27713. weight: math.unit(357, "lb"),
  27714. name: "Front",
  27715. image: {
  27716. source: "./media/characters/solex-draconov/front.svg",
  27717. extra: 1993 / 1865,
  27718. bottom: 117 / 2111
  27719. }
  27720. },
  27721. },
  27722. [
  27723. {
  27724. name: "Natural Height",
  27725. height: math.unit(7 + 5 / 12, "feet"),
  27726. default: true
  27727. },
  27728. {
  27729. name: "Macro",
  27730. height: math.unit(350, "feet")
  27731. },
  27732. {
  27733. name: "Macro+",
  27734. height: math.unit(1000, "feet")
  27735. },
  27736. {
  27737. name: "Megamacro",
  27738. height: math.unit(20, "km")
  27739. },
  27740. {
  27741. name: "Megamacro+",
  27742. height: math.unit(1000, "km")
  27743. },
  27744. {
  27745. name: "Gigamacro",
  27746. height: math.unit(2.5, "Gm")
  27747. },
  27748. {
  27749. name: "Teramacro",
  27750. height: math.unit(15, "Tm")
  27751. },
  27752. {
  27753. name: "Galactic",
  27754. height: math.unit(30, "Zm")
  27755. },
  27756. {
  27757. name: "Universal",
  27758. height: math.unit(21000, "Ym")
  27759. },
  27760. {
  27761. name: "Omniversal",
  27762. height: math.unit(9.861e50, "Ym")
  27763. },
  27764. {
  27765. name: "Existential",
  27766. height: math.unit(1e300, "meters")
  27767. },
  27768. ]
  27769. ))
  27770. characterMakers.push(() => makeCharacter(
  27771. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27772. {
  27773. side: {
  27774. height: math.unit(25, "feet"),
  27775. weight: math.unit(90000, "lb"),
  27776. name: "Side",
  27777. image: {
  27778. source: "./media/characters/mandarax/side.svg",
  27779. extra: 614 / 332,
  27780. bottom: 55 / 630
  27781. }
  27782. },
  27783. lounging: {
  27784. height: math.unit(15.4, "feet"),
  27785. weight: math.unit(90000, "lb"),
  27786. name: "Lounging",
  27787. image: {
  27788. source: "./media/characters/mandarax/lounging.svg",
  27789. extra: 817/609,
  27790. bottom: 685/1502
  27791. }
  27792. },
  27793. head: {
  27794. height: math.unit(11.4, "feet"),
  27795. name: "Head",
  27796. image: {
  27797. source: "./media/characters/mandarax/head.svg"
  27798. }
  27799. },
  27800. belly: {
  27801. height: math.unit(33, "feet"),
  27802. name: "Belly",
  27803. preyCapacity: math.unit(500, "people"),
  27804. image: {
  27805. source: "./media/characters/mandarax/belly.svg"
  27806. }
  27807. },
  27808. dick: {
  27809. height: math.unit(8.46, "feet"),
  27810. name: "Dick",
  27811. image: {
  27812. source: "./media/characters/mandarax/dick.svg"
  27813. }
  27814. },
  27815. top: {
  27816. height: math.unit(28, "meters"),
  27817. name: "Top",
  27818. image: {
  27819. source: "./media/characters/mandarax/top.svg"
  27820. }
  27821. },
  27822. },
  27823. [
  27824. {
  27825. name: "Normal",
  27826. height: math.unit(25, "feet"),
  27827. default: true
  27828. },
  27829. ]
  27830. ))
  27831. characterMakers.push(() => makeCharacter(
  27832. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27833. {
  27834. front: {
  27835. height: math.unit(5, "feet"),
  27836. weight: math.unit(90, "lb"),
  27837. name: "Front",
  27838. image: {
  27839. source: "./media/characters/pixil/front.svg",
  27840. extra: 2000 / 1618,
  27841. bottom: 12.3 / 2011
  27842. }
  27843. },
  27844. },
  27845. [
  27846. {
  27847. name: "Normal",
  27848. height: math.unit(5, "feet"),
  27849. default: true
  27850. },
  27851. {
  27852. name: "Megamacro",
  27853. height: math.unit(10, "miles"),
  27854. },
  27855. ]
  27856. ))
  27857. characterMakers.push(() => makeCharacter(
  27858. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27859. {
  27860. front: {
  27861. height: math.unit(7 + 2 / 12, "feet"),
  27862. weight: math.unit(200, "lb"),
  27863. name: "Front",
  27864. image: {
  27865. source: "./media/characters/angel/front.svg",
  27866. extra: 1946/1840,
  27867. bottom: 30/1976
  27868. }
  27869. },
  27870. },
  27871. [
  27872. {
  27873. name: "Normal",
  27874. height: math.unit(7 + 2 / 12, "feet"),
  27875. default: true
  27876. },
  27877. {
  27878. name: "Macro",
  27879. height: math.unit(1000, "feet")
  27880. },
  27881. {
  27882. name: "Megamacro",
  27883. height: math.unit(2, "miles")
  27884. },
  27885. {
  27886. name: "Gigamacro",
  27887. height: math.unit(20, "earths")
  27888. },
  27889. ]
  27890. ))
  27891. characterMakers.push(() => makeCharacter(
  27892. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27893. {
  27894. front: {
  27895. height: math.unit(5, "feet"),
  27896. weight: math.unit(180, "lb"),
  27897. name: "Front",
  27898. image: {
  27899. source: "./media/characters/mekana/front.svg",
  27900. extra: 1671 / 1605,
  27901. bottom: 3.5 / 1691
  27902. }
  27903. },
  27904. side: {
  27905. height: math.unit(5, "feet"),
  27906. weight: math.unit(180, "lb"),
  27907. name: "Side",
  27908. image: {
  27909. source: "./media/characters/mekana/side.svg",
  27910. extra: 1671 / 1605,
  27911. bottom: 3.5 / 1691
  27912. }
  27913. },
  27914. back: {
  27915. height: math.unit(5, "feet"),
  27916. weight: math.unit(180, "lb"),
  27917. name: "Back",
  27918. image: {
  27919. source: "./media/characters/mekana/back.svg",
  27920. extra: 1671 / 1605,
  27921. bottom: 3.5 / 1691
  27922. }
  27923. },
  27924. },
  27925. [
  27926. {
  27927. name: "Normal",
  27928. height: math.unit(5, "feet"),
  27929. default: true
  27930. },
  27931. ]
  27932. ))
  27933. characterMakers.push(() => makeCharacter(
  27934. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27935. {
  27936. front: {
  27937. height: math.unit(4 + 6 / 12, "feet"),
  27938. weight: math.unit(80, "lb"),
  27939. name: "Front",
  27940. image: {
  27941. source: "./media/characters/pixie/front.svg",
  27942. extra: 1924 / 1825,
  27943. bottom: 22.4 / 1946
  27944. }
  27945. },
  27946. },
  27947. [
  27948. {
  27949. name: "Normal",
  27950. height: math.unit(4 + 6 / 12, "feet"),
  27951. default: true
  27952. },
  27953. {
  27954. name: "Macro",
  27955. height: math.unit(40, "feet")
  27956. },
  27957. ]
  27958. ))
  27959. characterMakers.push(() => makeCharacter(
  27960. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27961. {
  27962. front: {
  27963. height: math.unit(2.1, "meters"),
  27964. weight: math.unit(200, "lb"),
  27965. name: "Front",
  27966. image: {
  27967. source: "./media/characters/the-lascivious/front.svg",
  27968. extra: 1 / 0.893,
  27969. bottom: 3.5 / 573.7
  27970. }
  27971. },
  27972. },
  27973. [
  27974. {
  27975. name: "Human Scale",
  27976. height: math.unit(2.1, "meters")
  27977. },
  27978. {
  27979. name: "Wolxi Scale",
  27980. height: math.unit(46.2, "m"),
  27981. default: true
  27982. },
  27983. {
  27984. name: "Boinker of Buildings",
  27985. height: math.unit(10, "km")
  27986. },
  27987. {
  27988. name: "Shagger of Skyscrapers",
  27989. height: math.unit(40, "km")
  27990. },
  27991. {
  27992. name: "Banger of Boroughs",
  27993. height: math.unit(4000, "km")
  27994. },
  27995. {
  27996. name: "Screwer of States",
  27997. height: math.unit(100000, "km")
  27998. },
  27999. {
  28000. name: "Pounder of Planets",
  28001. height: math.unit(2000000, "km")
  28002. },
  28003. ]
  28004. ))
  28005. characterMakers.push(() => makeCharacter(
  28006. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28007. {
  28008. front: {
  28009. height: math.unit(6, "feet"),
  28010. weight: math.unit(150, "lb"),
  28011. name: "Front",
  28012. image: {
  28013. source: "./media/characters/aj/front.svg",
  28014. extra: 2039 / 1562,
  28015. bottom: 40 / 2079
  28016. }
  28017. },
  28018. },
  28019. [
  28020. {
  28021. name: "Normal",
  28022. height: math.unit(11 + 6 / 12, "feet"),
  28023. default: true
  28024. },
  28025. {
  28026. name: "Megamacro",
  28027. height: math.unit(60, "megameters")
  28028. },
  28029. ]
  28030. ))
  28031. characterMakers.push(() => makeCharacter(
  28032. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28033. {
  28034. side: {
  28035. height: math.unit(31 + 8 / 12, "feet"),
  28036. weight: math.unit(75000, "kg"),
  28037. name: "Side",
  28038. image: {
  28039. source: "./media/characters/koros/side.svg",
  28040. extra: 1442 / 1297,
  28041. bottom: 122.7 / 1562
  28042. }
  28043. },
  28044. dicksKingsCrown: {
  28045. height: math.unit(6, "feet"),
  28046. name: "Dicks (King's Crown)",
  28047. image: {
  28048. source: "./media/characters/koros/dicks-kings-crown.svg"
  28049. }
  28050. },
  28051. dicksTailSet: {
  28052. height: math.unit(3, "feet"),
  28053. name: "Dicks (Tail Set)",
  28054. image: {
  28055. source: "./media/characters/koros/dicks-tail-set.svg"
  28056. }
  28057. },
  28058. dickCumming: {
  28059. height: math.unit(7.98, "feet"),
  28060. name: "Dick (Cumming)",
  28061. image: {
  28062. source: "./media/characters/koros/dick-cumming.svg"
  28063. }
  28064. },
  28065. dicksBack: {
  28066. height: math.unit(5.9, "feet"),
  28067. name: "Dicks (Back)",
  28068. image: {
  28069. source: "./media/characters/koros/dicks-back.svg"
  28070. }
  28071. },
  28072. dicksFront: {
  28073. height: math.unit(3.72, "feet"),
  28074. name: "Dicks (Front)",
  28075. image: {
  28076. source: "./media/characters/koros/dicks-front.svg"
  28077. }
  28078. },
  28079. dicksPeeking: {
  28080. height: math.unit(3.0, "feet"),
  28081. name: "Dicks (Peeking)",
  28082. image: {
  28083. source: "./media/characters/koros/dicks-peeking.svg"
  28084. }
  28085. },
  28086. eye: {
  28087. height: math.unit(1.7, "feet"),
  28088. name: "Eye",
  28089. image: {
  28090. source: "./media/characters/koros/eye.svg"
  28091. }
  28092. },
  28093. headFront: {
  28094. height: math.unit(11.69, "feet"),
  28095. name: "Head (Front)",
  28096. image: {
  28097. source: "./media/characters/koros/head-front.svg"
  28098. }
  28099. },
  28100. headSide: {
  28101. height: math.unit(14, "feet"),
  28102. name: "Head (Side)",
  28103. image: {
  28104. source: "./media/characters/koros/head-side.svg"
  28105. }
  28106. },
  28107. leg: {
  28108. height: math.unit(17, "feet"),
  28109. name: "Leg",
  28110. image: {
  28111. source: "./media/characters/koros/leg.svg"
  28112. }
  28113. },
  28114. mawSide: {
  28115. height: math.unit(12.8, "feet"),
  28116. name: "Maw (Side)",
  28117. image: {
  28118. source: "./media/characters/koros/maw-side.svg"
  28119. }
  28120. },
  28121. mawSpitting: {
  28122. height: math.unit(17, "feet"),
  28123. name: "Maw (Spitting)",
  28124. image: {
  28125. source: "./media/characters/koros/maw-spitting.svg"
  28126. }
  28127. },
  28128. slit: {
  28129. height: math.unit(2.8, "feet"),
  28130. name: "Slit",
  28131. image: {
  28132. source: "./media/characters/koros/slit.svg"
  28133. }
  28134. },
  28135. stomach: {
  28136. height: math.unit(6.8, "feet"),
  28137. preyCapacity: math.unit(20, "people"),
  28138. name: "Stomach",
  28139. image: {
  28140. source: "./media/characters/koros/stomach.svg"
  28141. }
  28142. },
  28143. wingspanBottom: {
  28144. height: math.unit(114, "feet"),
  28145. name: "Wingspan (Bottom)",
  28146. image: {
  28147. source: "./media/characters/koros/wingspan-bottom.svg"
  28148. }
  28149. },
  28150. wingspanTop: {
  28151. height: math.unit(104, "feet"),
  28152. name: "Wingspan (Top)",
  28153. image: {
  28154. source: "./media/characters/koros/wingspan-top.svg"
  28155. }
  28156. },
  28157. },
  28158. [
  28159. {
  28160. name: "Normal",
  28161. height: math.unit(31 + 8 / 12, "feet"),
  28162. default: true
  28163. },
  28164. ]
  28165. ))
  28166. characterMakers.push(() => makeCharacter(
  28167. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28168. {
  28169. front: {
  28170. height: math.unit(18 + 5 / 12, "feet"),
  28171. weight: math.unit(3750, "kg"),
  28172. name: "Front",
  28173. image: {
  28174. source: "./media/characters/vexx/front.svg",
  28175. extra: 426 / 396,
  28176. bottom: 31.5 / 458
  28177. }
  28178. },
  28179. maw: {
  28180. height: math.unit(6, "feet"),
  28181. name: "Maw",
  28182. image: {
  28183. source: "./media/characters/vexx/maw.svg"
  28184. }
  28185. },
  28186. },
  28187. [
  28188. {
  28189. name: "Normal",
  28190. height: math.unit(18 + 5 / 12, "feet"),
  28191. default: true
  28192. },
  28193. ]
  28194. ))
  28195. characterMakers.push(() => makeCharacter(
  28196. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28197. {
  28198. front: {
  28199. height: math.unit(17 + 6 / 12, "feet"),
  28200. weight: math.unit(150, "lb"),
  28201. name: "Front",
  28202. image: {
  28203. source: "./media/characters/baadra/front.svg",
  28204. extra: 1694/1553,
  28205. bottom: 179/1873
  28206. }
  28207. },
  28208. frontAlt: {
  28209. height: math.unit(17 + 6 / 12, "feet"),
  28210. weight: math.unit(150, "lb"),
  28211. name: "Front (Alt)",
  28212. image: {
  28213. source: "./media/characters/baadra/front-alt.svg",
  28214. extra: 3137 / 2890,
  28215. bottom: 168.4 / 3305
  28216. }
  28217. },
  28218. back: {
  28219. height: math.unit(17 + 6 / 12, "feet"),
  28220. weight: math.unit(150, "lb"),
  28221. name: "Back",
  28222. image: {
  28223. source: "./media/characters/baadra/back.svg",
  28224. extra: 3142 / 2890,
  28225. bottom: 220 / 3371
  28226. }
  28227. },
  28228. head: {
  28229. height: math.unit(5.45, "feet"),
  28230. name: "Head",
  28231. image: {
  28232. source: "./media/characters/baadra/head.svg"
  28233. }
  28234. },
  28235. headAngry: {
  28236. height: math.unit(4.95, "feet"),
  28237. name: "Head (Angry)",
  28238. image: {
  28239. source: "./media/characters/baadra/head-angry.svg"
  28240. }
  28241. },
  28242. headOpen: {
  28243. height: math.unit(6, "feet"),
  28244. name: "Head (Open)",
  28245. image: {
  28246. source: "./media/characters/baadra/head-open.svg"
  28247. }
  28248. },
  28249. },
  28250. [
  28251. {
  28252. name: "Normal",
  28253. height: math.unit(17 + 6 / 12, "feet"),
  28254. default: true
  28255. },
  28256. ]
  28257. ))
  28258. characterMakers.push(() => makeCharacter(
  28259. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28260. {
  28261. front: {
  28262. height: math.unit(7 + 3 / 12, "feet"),
  28263. weight: math.unit(180, "lb"),
  28264. name: "Front",
  28265. image: {
  28266. source: "./media/characters/juri/front.svg",
  28267. extra: 1401 / 1237,
  28268. bottom: 18.5 / 1418
  28269. }
  28270. },
  28271. side: {
  28272. height: math.unit(7 + 3 / 12, "feet"),
  28273. weight: math.unit(180, "lb"),
  28274. name: "Side",
  28275. image: {
  28276. source: "./media/characters/juri/side.svg",
  28277. extra: 1424 / 1242,
  28278. bottom: 18.5 / 1447
  28279. }
  28280. },
  28281. sitting: {
  28282. height: math.unit(6, "feet"),
  28283. weight: math.unit(180, "lb"),
  28284. name: "Sitting",
  28285. image: {
  28286. source: "./media/characters/juri/sitting.svg",
  28287. extra: 1270 / 1143,
  28288. bottom: 100 / 1343
  28289. }
  28290. },
  28291. back: {
  28292. height: math.unit(7 + 3 / 12, "feet"),
  28293. weight: math.unit(180, "lb"),
  28294. name: "Back",
  28295. image: {
  28296. source: "./media/characters/juri/back.svg",
  28297. extra: 1377 / 1240,
  28298. bottom: 23.7 / 1405
  28299. }
  28300. },
  28301. maw: {
  28302. height: math.unit(2.8, "feet"),
  28303. name: "Maw",
  28304. image: {
  28305. source: "./media/characters/juri/maw.svg"
  28306. }
  28307. },
  28308. stomach: {
  28309. height: math.unit(0.89, "feet"),
  28310. preyCapacity: math.unit(4, "liters"),
  28311. name: "Stomach",
  28312. image: {
  28313. source: "./media/characters/juri/stomach.svg"
  28314. }
  28315. },
  28316. },
  28317. [
  28318. {
  28319. name: "Normal",
  28320. height: math.unit(7 + 3 / 12, "feet"),
  28321. default: true
  28322. },
  28323. ]
  28324. ))
  28325. characterMakers.push(() => makeCharacter(
  28326. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28327. {
  28328. fox: {
  28329. height: math.unit(5 + 6 / 12, "feet"),
  28330. weight: math.unit(140, "lb"),
  28331. name: "Fox",
  28332. image: {
  28333. source: "./media/characters/maxene-sita/fox.svg",
  28334. extra: 146 / 138,
  28335. bottom: 2.1 / 148.19
  28336. }
  28337. },
  28338. foxLaying: {
  28339. height: math.unit(1.70, "feet"),
  28340. weight: math.unit(140, "lb"),
  28341. name: "Fox (Laying)",
  28342. image: {
  28343. source: "./media/characters/maxene-sita/fox-laying.svg",
  28344. extra: 910 / 572,
  28345. bottom: 71 / 981
  28346. }
  28347. },
  28348. kitsune: {
  28349. height: math.unit(10, "feet"),
  28350. weight: math.unit(800, "lb"),
  28351. name: "Kitsune",
  28352. image: {
  28353. source: "./media/characters/maxene-sita/kitsune.svg",
  28354. extra: 185 / 176,
  28355. bottom: 4.7 / 189.9
  28356. }
  28357. },
  28358. hellhound: {
  28359. height: math.unit(10, "feet"),
  28360. weight: math.unit(700, "lb"),
  28361. name: "Hellhound",
  28362. image: {
  28363. source: "./media/characters/maxene-sita/hellhound.svg",
  28364. extra: 1600 / 1545,
  28365. bottom: 81 / 1681
  28366. }
  28367. },
  28368. },
  28369. [
  28370. {
  28371. name: "Normal",
  28372. height: math.unit(5 + 6 / 12, "feet"),
  28373. default: true
  28374. },
  28375. ]
  28376. ))
  28377. characterMakers.push(() => makeCharacter(
  28378. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28379. {
  28380. front: {
  28381. height: math.unit(3 + 4 / 12, "feet"),
  28382. weight: math.unit(70, "lb"),
  28383. name: "Front",
  28384. image: {
  28385. source: "./media/characters/maia/front.svg",
  28386. extra: 227 / 219.5,
  28387. bottom: 40 / 267
  28388. }
  28389. },
  28390. back: {
  28391. height: math.unit(3 + 4 / 12, "feet"),
  28392. weight: math.unit(70, "lb"),
  28393. name: "Back",
  28394. image: {
  28395. source: "./media/characters/maia/back.svg",
  28396. extra: 237 / 225
  28397. }
  28398. },
  28399. },
  28400. [
  28401. {
  28402. name: "Normal",
  28403. height: math.unit(3 + 4 / 12, "feet"),
  28404. default: true
  28405. },
  28406. ]
  28407. ))
  28408. characterMakers.push(() => makeCharacter(
  28409. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28410. {
  28411. front: {
  28412. height: math.unit(5 + 10 / 12, "feet"),
  28413. weight: math.unit(197, "lb"),
  28414. name: "Front",
  28415. image: {
  28416. source: "./media/characters/jabaro/front.svg",
  28417. extra: 225 / 216,
  28418. bottom: 5.06 / 230
  28419. }
  28420. },
  28421. back: {
  28422. height: math.unit(5 + 10 / 12, "feet"),
  28423. weight: math.unit(197, "lb"),
  28424. name: "Back",
  28425. image: {
  28426. source: "./media/characters/jabaro/back.svg",
  28427. extra: 225 / 219,
  28428. bottom: 1.9 / 227
  28429. }
  28430. },
  28431. },
  28432. [
  28433. {
  28434. name: "Normal",
  28435. height: math.unit(5 + 10 / 12, "feet"),
  28436. default: true
  28437. },
  28438. ]
  28439. ))
  28440. characterMakers.push(() => makeCharacter(
  28441. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28442. {
  28443. front: {
  28444. height: math.unit(5 + 8 / 12, "feet"),
  28445. weight: math.unit(139, "lb"),
  28446. name: "Front",
  28447. image: {
  28448. source: "./media/characters/risa/front.svg",
  28449. extra: 270 / 260,
  28450. bottom: 11.2 / 282
  28451. }
  28452. },
  28453. back: {
  28454. height: math.unit(5 + 8 / 12, "feet"),
  28455. weight: math.unit(139, "lb"),
  28456. name: "Back",
  28457. image: {
  28458. source: "./media/characters/risa/back.svg",
  28459. extra: 264 / 255,
  28460. bottom: 4 / 268
  28461. }
  28462. },
  28463. },
  28464. [
  28465. {
  28466. name: "Normal",
  28467. height: math.unit(5 + 8 / 12, "feet"),
  28468. default: true
  28469. },
  28470. ]
  28471. ))
  28472. characterMakers.push(() => makeCharacter(
  28473. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28474. {
  28475. front: {
  28476. height: math.unit(2 + 11 / 12, "feet"),
  28477. weight: math.unit(30, "lb"),
  28478. name: "Front",
  28479. image: {
  28480. source: "./media/characters/weatley/front.svg",
  28481. bottom: 10.7 / 414,
  28482. extra: 403.5 / 362
  28483. }
  28484. },
  28485. back: {
  28486. height: math.unit(2 + 11 / 12, "feet"),
  28487. weight: math.unit(30, "lb"),
  28488. name: "Back",
  28489. image: {
  28490. source: "./media/characters/weatley/back.svg",
  28491. bottom: 10.7 / 414,
  28492. extra: 403.5 / 362
  28493. }
  28494. },
  28495. },
  28496. [
  28497. {
  28498. name: "Normal",
  28499. height: math.unit(2 + 11 / 12, "feet"),
  28500. default: true
  28501. },
  28502. ]
  28503. ))
  28504. characterMakers.push(() => makeCharacter(
  28505. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28506. {
  28507. front: {
  28508. height: math.unit(5 + 2 / 12, "feet"),
  28509. weight: math.unit(50, "kg"),
  28510. name: "Front",
  28511. image: {
  28512. source: "./media/characters/mercury-crescent/front.svg",
  28513. extra: 1088 / 1033,
  28514. bottom: 18.9 / 1109
  28515. }
  28516. },
  28517. },
  28518. [
  28519. {
  28520. name: "Normal",
  28521. height: math.unit(5 + 2 / 12, "feet"),
  28522. default: true
  28523. },
  28524. ]
  28525. ))
  28526. characterMakers.push(() => makeCharacter(
  28527. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28528. {
  28529. front: {
  28530. height: math.unit(2, "feet"),
  28531. weight: math.unit(15, "kg"),
  28532. name: "Front",
  28533. image: {
  28534. source: "./media/characters/diamond-jones/front.svg",
  28535. extra: 727/723,
  28536. bottom: 46/773
  28537. }
  28538. },
  28539. },
  28540. [
  28541. {
  28542. name: "Normal",
  28543. height: math.unit(2, "feet"),
  28544. default: true
  28545. },
  28546. ]
  28547. ))
  28548. characterMakers.push(() => makeCharacter(
  28549. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28550. {
  28551. front: {
  28552. height: math.unit(3, "feet"),
  28553. weight: math.unit(30, "kg"),
  28554. name: "Front",
  28555. image: {
  28556. source: "./media/characters/sweet-bit/front.svg",
  28557. extra: 675 / 567,
  28558. bottom: 27.7 / 703
  28559. }
  28560. },
  28561. },
  28562. [
  28563. {
  28564. name: "Normal",
  28565. height: math.unit(3, "feet"),
  28566. default: true
  28567. },
  28568. ]
  28569. ))
  28570. characterMakers.push(() => makeCharacter(
  28571. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28572. {
  28573. side: {
  28574. height: math.unit(9.178, "feet"),
  28575. weight: math.unit(500, "lb"),
  28576. name: "Side",
  28577. image: {
  28578. source: "./media/characters/umbrazen/side.svg",
  28579. extra: 1730 / 1473,
  28580. bottom: 34.6 / 1765
  28581. }
  28582. },
  28583. },
  28584. [
  28585. {
  28586. name: "Normal",
  28587. height: math.unit(9.178, "feet"),
  28588. default: true
  28589. },
  28590. ]
  28591. ))
  28592. characterMakers.push(() => makeCharacter(
  28593. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28594. {
  28595. front: {
  28596. height: math.unit(10, "feet"),
  28597. weight: math.unit(750, "lb"),
  28598. name: "Front",
  28599. image: {
  28600. source: "./media/characters/arlist/front.svg",
  28601. extra: 961 / 778,
  28602. bottom: 6.2 / 986
  28603. }
  28604. },
  28605. },
  28606. [
  28607. {
  28608. name: "Normal",
  28609. height: math.unit(10, "feet"),
  28610. default: true
  28611. },
  28612. ]
  28613. ))
  28614. characterMakers.push(() => makeCharacter(
  28615. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28616. {
  28617. front: {
  28618. height: math.unit(5 + 1 / 12, "feet"),
  28619. weight: math.unit(110, "lb"),
  28620. name: "Front",
  28621. image: {
  28622. source: "./media/characters/aradel/front.svg",
  28623. extra: 324 / 303,
  28624. bottom: 3.6 / 329.4
  28625. }
  28626. },
  28627. },
  28628. [
  28629. {
  28630. name: "Normal",
  28631. height: math.unit(5 + 1 / 12, "feet"),
  28632. default: true
  28633. },
  28634. ]
  28635. ))
  28636. characterMakers.push(() => makeCharacter(
  28637. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28638. {
  28639. dressed: {
  28640. height: math.unit(3 + 8 / 12, "feet"),
  28641. weight: math.unit(50, "lb"),
  28642. name: "Dressed",
  28643. image: {
  28644. source: "./media/characters/serryn/dressed.svg",
  28645. extra: 1792 / 1656,
  28646. bottom: 43.5 / 1840
  28647. }
  28648. },
  28649. nude: {
  28650. height: math.unit(3 + 8 / 12, "feet"),
  28651. weight: math.unit(50, "lb"),
  28652. name: "Nude",
  28653. image: {
  28654. source: "./media/characters/serryn/nude.svg",
  28655. extra: 1792 / 1656,
  28656. bottom: 43.5 / 1840
  28657. }
  28658. },
  28659. },
  28660. [
  28661. {
  28662. name: "Normal",
  28663. height: math.unit(3 + 8 / 12, "feet"),
  28664. default: true
  28665. },
  28666. ]
  28667. ))
  28668. characterMakers.push(() => makeCharacter(
  28669. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28670. {
  28671. front: {
  28672. height: math.unit(7 + 10 / 12, "feet"),
  28673. weight: math.unit(255, "lb"),
  28674. name: "Front",
  28675. image: {
  28676. source: "./media/characters/xavier-thyme/front.svg",
  28677. extra: 3733 / 3642,
  28678. bottom: 131 / 3869
  28679. }
  28680. },
  28681. frontRaven: {
  28682. height: math.unit(7 + 10 / 12, "feet"),
  28683. weight: math.unit(255, "lb"),
  28684. name: "Front (Raven)",
  28685. image: {
  28686. source: "./media/characters/xavier-thyme/front-raven.svg",
  28687. extra: 4385 / 3642,
  28688. bottom: 131 / 4517
  28689. }
  28690. },
  28691. },
  28692. [
  28693. {
  28694. name: "Normal",
  28695. height: math.unit(7 + 10 / 12, "feet"),
  28696. default: true
  28697. },
  28698. ]
  28699. ))
  28700. characterMakers.push(() => makeCharacter(
  28701. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28702. {
  28703. front: {
  28704. height: math.unit(1.6, "m"),
  28705. weight: math.unit(50, "kg"),
  28706. name: "Front",
  28707. image: {
  28708. source: "./media/characters/kiki/front.svg",
  28709. extra: 4682 / 3610,
  28710. bottom: 115 / 4777
  28711. }
  28712. },
  28713. },
  28714. [
  28715. {
  28716. name: "Normal",
  28717. height: math.unit(1.6, "meters"),
  28718. default: true
  28719. },
  28720. ]
  28721. ))
  28722. characterMakers.push(() => makeCharacter(
  28723. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28724. {
  28725. front: {
  28726. height: math.unit(50, "m"),
  28727. weight: math.unit(500, "tonnes"),
  28728. name: "Front",
  28729. image: {
  28730. source: "./media/characters/ryoko/front.svg",
  28731. extra: 4632 / 3926,
  28732. bottom: 193 / 4823
  28733. }
  28734. },
  28735. },
  28736. [
  28737. {
  28738. name: "Normal",
  28739. height: math.unit(50, "meters"),
  28740. default: true
  28741. },
  28742. ]
  28743. ))
  28744. characterMakers.push(() => makeCharacter(
  28745. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28746. {
  28747. front: {
  28748. height: math.unit(30, "m"),
  28749. weight: math.unit(22, "tonnes"),
  28750. name: "Front",
  28751. image: {
  28752. source: "./media/characters/elio/front.svg",
  28753. extra: 4582 / 3720,
  28754. bottom: 236 / 4828
  28755. }
  28756. },
  28757. },
  28758. [
  28759. {
  28760. name: "Normal",
  28761. height: math.unit(30, "meters"),
  28762. default: true
  28763. },
  28764. ]
  28765. ))
  28766. characterMakers.push(() => makeCharacter(
  28767. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28768. {
  28769. front: {
  28770. height: math.unit(6 + 3 / 12, "feet"),
  28771. weight: math.unit(120, "lb"),
  28772. name: "Front",
  28773. image: {
  28774. source: "./media/characters/azura/front.svg",
  28775. extra: 1149 / 1135,
  28776. bottom: 45 / 1194
  28777. }
  28778. },
  28779. frontClothed: {
  28780. height: math.unit(6 + 3 / 12, "feet"),
  28781. weight: math.unit(120, "lb"),
  28782. name: "Front (Clothed)",
  28783. image: {
  28784. source: "./media/characters/azura/front-clothed.svg",
  28785. extra: 1149 / 1135,
  28786. bottom: 45 / 1194
  28787. }
  28788. },
  28789. },
  28790. [
  28791. {
  28792. name: "Normal",
  28793. height: math.unit(6 + 3 / 12, "feet"),
  28794. default: true
  28795. },
  28796. {
  28797. name: "Macro",
  28798. height: math.unit(20 + 6 / 12, "feet")
  28799. },
  28800. {
  28801. name: "Megamacro",
  28802. height: math.unit(12, "miles")
  28803. },
  28804. {
  28805. name: "Gigamacro",
  28806. height: math.unit(10000, "miles")
  28807. },
  28808. {
  28809. name: "Teramacro",
  28810. height: math.unit(900000, "miles")
  28811. },
  28812. ]
  28813. ))
  28814. characterMakers.push(() => makeCharacter(
  28815. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28816. {
  28817. front: {
  28818. height: math.unit(12, "feet"),
  28819. weight: math.unit(1, "ton"),
  28820. capacity: math.unit(660000, "gallons"),
  28821. name: "Front",
  28822. image: {
  28823. source: "./media/characters/zeus/front.svg",
  28824. extra: 5005 / 4717,
  28825. bottom: 363 / 5388
  28826. }
  28827. },
  28828. },
  28829. [
  28830. {
  28831. name: "Normal",
  28832. height: math.unit(12, "feet")
  28833. },
  28834. {
  28835. name: "Preferred Size",
  28836. height: math.unit(0.5, "miles"),
  28837. default: true
  28838. },
  28839. {
  28840. name: "Giga Horse",
  28841. height: math.unit(300, "miles")
  28842. },
  28843. {
  28844. name: "Riding Planets",
  28845. height: math.unit(30, "megameters")
  28846. },
  28847. {
  28848. name: "Cosmic Giant",
  28849. height: math.unit(3, "zettameters")
  28850. },
  28851. {
  28852. name: "Breeding God",
  28853. height: math.unit(9.92e22, "yottameters")
  28854. },
  28855. ]
  28856. ))
  28857. characterMakers.push(() => makeCharacter(
  28858. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28859. {
  28860. side: {
  28861. height: math.unit(9, "feet"),
  28862. weight: math.unit(1500, "kg"),
  28863. name: "Side",
  28864. image: {
  28865. source: "./media/characters/fang/side.svg",
  28866. extra: 924 / 866,
  28867. bottom: 47.5 / 972.3
  28868. }
  28869. },
  28870. },
  28871. [
  28872. {
  28873. name: "Normal",
  28874. height: math.unit(9, "feet"),
  28875. default: true
  28876. },
  28877. {
  28878. name: "Macro",
  28879. height: math.unit(75 + 6 / 12, "feet")
  28880. },
  28881. {
  28882. name: "Teramacro",
  28883. height: math.unit(50000, "miles")
  28884. },
  28885. ]
  28886. ))
  28887. characterMakers.push(() => makeCharacter(
  28888. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28889. {
  28890. front: {
  28891. height: math.unit(10, "feet"),
  28892. weight: math.unit(2, "tons"),
  28893. name: "Front",
  28894. image: {
  28895. source: "./media/characters/rekhit/front.svg",
  28896. extra: 2796 / 2590,
  28897. bottom: 225 / 3022
  28898. }
  28899. },
  28900. },
  28901. [
  28902. {
  28903. name: "Normal",
  28904. height: math.unit(10, "feet"),
  28905. default: true
  28906. },
  28907. {
  28908. name: "Macro",
  28909. height: math.unit(500, "feet")
  28910. },
  28911. ]
  28912. ))
  28913. characterMakers.push(() => makeCharacter(
  28914. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28915. {
  28916. front: {
  28917. height: math.unit(7 + 6.451 / 12, "feet"),
  28918. weight: math.unit(310, "lb"),
  28919. name: "Front",
  28920. image: {
  28921. source: "./media/characters/dahlia-verrick/front.svg",
  28922. extra: 1488 / 1365,
  28923. bottom: 6.2 / 1495
  28924. }
  28925. },
  28926. back: {
  28927. height: math.unit(7 + 6.451 / 12, "feet"),
  28928. weight: math.unit(310, "lb"),
  28929. name: "Back",
  28930. image: {
  28931. source: "./media/characters/dahlia-verrick/back.svg",
  28932. extra: 1472 / 1351,
  28933. bottom: 5.28 / 1477
  28934. }
  28935. },
  28936. frontBusiness: {
  28937. height: math.unit(7 + 6.451 / 12, "feet"),
  28938. weight: math.unit(200, "lb"),
  28939. name: "Front (Business)",
  28940. image: {
  28941. source: "./media/characters/dahlia-verrick/front-business.svg",
  28942. extra: 1478 / 1381,
  28943. bottom: 5.5 / 1484
  28944. }
  28945. },
  28946. frontCasual: {
  28947. height: math.unit(7 + 6.451 / 12, "feet"),
  28948. weight: math.unit(200, "lb"),
  28949. name: "Front (Casual)",
  28950. image: {
  28951. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28952. extra: 1478 / 1381,
  28953. bottom: 5.5 / 1484
  28954. }
  28955. },
  28956. },
  28957. [
  28958. {
  28959. name: "Travel-Sized",
  28960. height: math.unit(7.45, "inches")
  28961. },
  28962. {
  28963. name: "Normal",
  28964. height: math.unit(7 + 6.451 / 12, "feet"),
  28965. default: true
  28966. },
  28967. {
  28968. name: "Hitting the Town",
  28969. height: math.unit(37 + 8 / 12, "feet")
  28970. },
  28971. {
  28972. name: "Stomp in the Suburbs",
  28973. height: math.unit(964 + 9.728 / 12, "feet")
  28974. },
  28975. {
  28976. name: "Sit on the City",
  28977. height: math.unit(61747 + 10.592 / 12, "feet")
  28978. },
  28979. {
  28980. name: "Glomp the Globe",
  28981. height: math.unit(252919327 + 4.832 / 12, "feet")
  28982. },
  28983. ]
  28984. ))
  28985. characterMakers.push(() => makeCharacter(
  28986. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28987. {
  28988. front: {
  28989. height: math.unit(6 + 4 / 12, "feet"),
  28990. weight: math.unit(320, "lb"),
  28991. name: "Front",
  28992. image: {
  28993. source: "./media/characters/balina-mahigan/front.svg",
  28994. extra: 447 / 428,
  28995. bottom: 18 / 466
  28996. }
  28997. },
  28998. back: {
  28999. height: math.unit(6 + 4 / 12, "feet"),
  29000. weight: math.unit(320, "lb"),
  29001. name: "Back",
  29002. image: {
  29003. source: "./media/characters/balina-mahigan/back.svg",
  29004. extra: 445 / 428,
  29005. bottom: 4.07 / 448
  29006. }
  29007. },
  29008. arm: {
  29009. height: math.unit(1.88, "feet"),
  29010. name: "Arm",
  29011. image: {
  29012. source: "./media/characters/balina-mahigan/arm.svg"
  29013. }
  29014. },
  29015. backPort: {
  29016. height: math.unit(0.685, "feet"),
  29017. name: "Back Port",
  29018. image: {
  29019. source: "./media/characters/balina-mahigan/back-port.svg"
  29020. }
  29021. },
  29022. hoofpaw: {
  29023. height: math.unit(1.41, "feet"),
  29024. name: "Hoofpaw",
  29025. image: {
  29026. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29027. }
  29028. },
  29029. leftHandBack: {
  29030. height: math.unit(0.938, "feet"),
  29031. name: "Left Hand (Back)",
  29032. image: {
  29033. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29034. }
  29035. },
  29036. leftHandFront: {
  29037. height: math.unit(0.938, "feet"),
  29038. name: "Left Hand (Front)",
  29039. image: {
  29040. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29041. }
  29042. },
  29043. rightHandBack: {
  29044. height: math.unit(0.95, "feet"),
  29045. name: "Right Hand (Back)",
  29046. image: {
  29047. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29048. }
  29049. },
  29050. rightHandFront: {
  29051. height: math.unit(0.95, "feet"),
  29052. name: "Right Hand (Front)",
  29053. image: {
  29054. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29055. }
  29056. },
  29057. },
  29058. [
  29059. {
  29060. name: "Normal",
  29061. height: math.unit(6 + 4 / 12, "feet"),
  29062. default: true
  29063. },
  29064. ]
  29065. ))
  29066. characterMakers.push(() => makeCharacter(
  29067. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29068. {
  29069. front: {
  29070. height: math.unit(6, "feet"),
  29071. weight: math.unit(320, "lb"),
  29072. name: "Front",
  29073. image: {
  29074. source: "./media/characters/balina-mejeri/front.svg",
  29075. extra: 517 / 488,
  29076. bottom: 44.2 / 561
  29077. }
  29078. },
  29079. },
  29080. [
  29081. {
  29082. name: "Normal",
  29083. height: math.unit(6 + 4 / 12, "feet")
  29084. },
  29085. {
  29086. name: "Business",
  29087. height: math.unit(155, "feet"),
  29088. default: true
  29089. },
  29090. ]
  29091. ))
  29092. characterMakers.push(() => makeCharacter(
  29093. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29094. {
  29095. kneeling: {
  29096. height: math.unit(6 + 4 / 12, "feet"),
  29097. weight: math.unit(300 * 20, "lb"),
  29098. name: "Kneeling",
  29099. image: {
  29100. source: "./media/characters/balbarian/kneeling.svg",
  29101. extra: 922 / 862,
  29102. bottom: 42.4 / 965
  29103. }
  29104. },
  29105. },
  29106. [
  29107. {
  29108. name: "Normal",
  29109. height: math.unit(6 + 4 / 12, "feet")
  29110. },
  29111. {
  29112. name: "Treasured",
  29113. height: math.unit(18 + 9 / 12, "feet"),
  29114. default: true
  29115. },
  29116. {
  29117. name: "Macro",
  29118. height: math.unit(900, "feet")
  29119. },
  29120. ]
  29121. ))
  29122. characterMakers.push(() => makeCharacter(
  29123. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29124. {
  29125. front: {
  29126. height: math.unit(6 + 4 / 12, "feet"),
  29127. weight: math.unit(325, "lb"),
  29128. name: "Front",
  29129. image: {
  29130. source: "./media/characters/balina-amarini/front.svg",
  29131. extra: 415 / 403,
  29132. bottom: 19 / 433.4
  29133. }
  29134. },
  29135. back: {
  29136. height: math.unit(6 + 4 / 12, "feet"),
  29137. weight: math.unit(325, "lb"),
  29138. name: "Back",
  29139. image: {
  29140. source: "./media/characters/balina-amarini/back.svg",
  29141. extra: 415 / 403,
  29142. bottom: 13.5 / 432
  29143. }
  29144. },
  29145. overdrive: {
  29146. height: math.unit(6 + 4 / 12, "feet"),
  29147. weight: math.unit(400, "lb"),
  29148. name: "Overdrive",
  29149. image: {
  29150. source: "./media/characters/balina-amarini/overdrive.svg",
  29151. extra: 269 / 259,
  29152. bottom: 12 / 282
  29153. }
  29154. },
  29155. },
  29156. [
  29157. {
  29158. name: "Boom",
  29159. height: math.unit(9 + 10 / 12, "feet"),
  29160. default: true
  29161. },
  29162. {
  29163. name: "Macro",
  29164. height: math.unit(280, "feet")
  29165. },
  29166. ]
  29167. ))
  29168. characterMakers.push(() => makeCharacter(
  29169. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29170. {
  29171. goddess: {
  29172. height: math.unit(600, "feet"),
  29173. weight: math.unit(2000000, "tons"),
  29174. name: "Goddess",
  29175. image: {
  29176. source: "./media/characters/lady-kubwa/goddess.svg",
  29177. extra: 1240.5 / 1223,
  29178. bottom: 22 / 1263
  29179. }
  29180. },
  29181. goddesser: {
  29182. height: math.unit(900, "feet"),
  29183. weight: math.unit(20000000, "lb"),
  29184. name: "Goddess-er",
  29185. image: {
  29186. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29187. extra: 899 / 888,
  29188. bottom: 12.6 / 912
  29189. }
  29190. },
  29191. },
  29192. [
  29193. {
  29194. name: "Macro",
  29195. height: math.unit(600, "feet"),
  29196. default: true
  29197. },
  29198. {
  29199. name: "Megamacro",
  29200. height: math.unit(250, "miles")
  29201. },
  29202. ]
  29203. ))
  29204. characterMakers.push(() => makeCharacter(
  29205. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29206. {
  29207. front: {
  29208. height: math.unit(7 + 7 / 12, "feet"),
  29209. weight: math.unit(250, "lb"),
  29210. name: "Front",
  29211. image: {
  29212. source: "./media/characters/tala-grovehorn/front.svg",
  29213. extra: 2636 / 2525,
  29214. bottom: 147 / 2781
  29215. }
  29216. },
  29217. back: {
  29218. height: math.unit(7 + 7 / 12, "feet"),
  29219. weight: math.unit(250, "lb"),
  29220. name: "Back",
  29221. image: {
  29222. source: "./media/characters/tala-grovehorn/back.svg",
  29223. extra: 2635 / 2539,
  29224. bottom: 100 / 2732.8
  29225. }
  29226. },
  29227. mouth: {
  29228. height: math.unit(1.15, "feet"),
  29229. name: "Mouth",
  29230. image: {
  29231. source: "./media/characters/tala-grovehorn/mouth.svg"
  29232. }
  29233. },
  29234. dick: {
  29235. height: math.unit(2.36, "feet"),
  29236. name: "Dick",
  29237. image: {
  29238. source: "./media/characters/tala-grovehorn/dick.svg"
  29239. }
  29240. },
  29241. slit: {
  29242. height: math.unit(0.61, "feet"),
  29243. name: "Slit",
  29244. image: {
  29245. source: "./media/characters/tala-grovehorn/slit.svg"
  29246. }
  29247. },
  29248. },
  29249. [
  29250. ]
  29251. ))
  29252. characterMakers.push(() => makeCharacter(
  29253. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29254. {
  29255. front: {
  29256. height: math.unit(7 + 7 / 12, "feet"),
  29257. weight: math.unit(225, "lb"),
  29258. name: "Front",
  29259. image: {
  29260. source: "./media/characters/epona/front.svg",
  29261. extra: 2445 / 2290,
  29262. bottom: 251 / 2696
  29263. }
  29264. },
  29265. back: {
  29266. height: math.unit(7 + 7 / 12, "feet"),
  29267. weight: math.unit(225, "lb"),
  29268. name: "Back",
  29269. image: {
  29270. source: "./media/characters/epona/back.svg",
  29271. extra: 2546 / 2408,
  29272. bottom: 44 / 2589
  29273. }
  29274. },
  29275. genitals: {
  29276. height: math.unit(1.5, "feet"),
  29277. name: "Genitals",
  29278. image: {
  29279. source: "./media/characters/epona/genitals.svg"
  29280. }
  29281. },
  29282. },
  29283. [
  29284. {
  29285. name: "Normal",
  29286. height: math.unit(7 + 7 / 12, "feet"),
  29287. default: true
  29288. },
  29289. ]
  29290. ))
  29291. characterMakers.push(() => makeCharacter(
  29292. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29293. {
  29294. front: {
  29295. height: math.unit(7, "feet"),
  29296. weight: math.unit(518, "lb"),
  29297. name: "Front",
  29298. image: {
  29299. source: "./media/characters/avia-bloodbourn/front.svg",
  29300. extra: 1466 / 1350,
  29301. bottom: 65 / 1527
  29302. }
  29303. },
  29304. },
  29305. [
  29306. ]
  29307. ))
  29308. characterMakers.push(() => makeCharacter(
  29309. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29310. {
  29311. front: {
  29312. height: math.unit(9.35, "feet"),
  29313. weight: math.unit(600, "lb"),
  29314. name: "Front",
  29315. image: {
  29316. source: "./media/characters/amera/front.svg",
  29317. extra: 891 / 818,
  29318. bottom: 30 / 922.7
  29319. }
  29320. },
  29321. back: {
  29322. height: math.unit(9.35, "feet"),
  29323. weight: math.unit(600, "lb"),
  29324. name: "Back",
  29325. image: {
  29326. source: "./media/characters/amera/back.svg",
  29327. extra: 876 / 824,
  29328. bottom: 6.8 / 884
  29329. }
  29330. },
  29331. dick: {
  29332. height: math.unit(2.14, "feet"),
  29333. name: "Dick",
  29334. image: {
  29335. source: "./media/characters/amera/dick.svg"
  29336. }
  29337. },
  29338. },
  29339. [
  29340. {
  29341. name: "Normal",
  29342. height: math.unit(9.35, "feet"),
  29343. default: true
  29344. },
  29345. ]
  29346. ))
  29347. characterMakers.push(() => makeCharacter(
  29348. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29349. {
  29350. kneeling: {
  29351. height: math.unit(3 + 4 / 12, "feet"),
  29352. weight: math.unit(90, "lb"),
  29353. name: "Kneeling",
  29354. image: {
  29355. source: "./media/characters/rosewen/kneeling.svg",
  29356. extra: 1835 / 1571,
  29357. bottom: 27.7 / 1862
  29358. }
  29359. },
  29360. },
  29361. [
  29362. {
  29363. name: "Normal",
  29364. height: math.unit(3 + 4 / 12, "feet"),
  29365. default: true
  29366. },
  29367. ]
  29368. ))
  29369. characterMakers.push(() => makeCharacter(
  29370. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29371. {
  29372. front: {
  29373. height: math.unit(5 + 10 / 12, "feet"),
  29374. weight: math.unit(200, "lb"),
  29375. name: "Front",
  29376. image: {
  29377. source: "./media/characters/sabah/front.svg",
  29378. extra: 849 / 763,
  29379. bottom: 33.9 / 881
  29380. }
  29381. },
  29382. },
  29383. [
  29384. {
  29385. name: "Normal",
  29386. height: math.unit(5 + 10 / 12, "feet"),
  29387. default: true
  29388. },
  29389. ]
  29390. ))
  29391. characterMakers.push(() => makeCharacter(
  29392. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29393. {
  29394. front: {
  29395. height: math.unit(3 + 5 / 12, "feet"),
  29396. weight: math.unit(40, "kg"),
  29397. name: "Front",
  29398. image: {
  29399. source: "./media/characters/purple-flame/front.svg",
  29400. extra: 1577 / 1412,
  29401. bottom: 97 / 1694
  29402. }
  29403. },
  29404. frontDressed: {
  29405. height: math.unit(3 + 5 / 12, "feet"),
  29406. weight: math.unit(40, "kg"),
  29407. name: "Front (Dressed)",
  29408. image: {
  29409. source: "./media/characters/purple-flame/front-dressed.svg",
  29410. extra: 1577 / 1412,
  29411. bottom: 97 / 1694
  29412. }
  29413. },
  29414. headphones: {
  29415. height: math.unit(0.85, "feet"),
  29416. name: "Headphones",
  29417. image: {
  29418. source: "./media/characters/purple-flame/headphones.svg"
  29419. }
  29420. },
  29421. },
  29422. [
  29423. {
  29424. name: "Really Small",
  29425. height: math.unit(5, "cm")
  29426. },
  29427. {
  29428. name: "Micro",
  29429. height: math.unit(1 + 5 / 12, "feet")
  29430. },
  29431. {
  29432. name: "Normal",
  29433. height: math.unit(3 + 5 / 12, "feet"),
  29434. default: true
  29435. },
  29436. {
  29437. name: "Minimacro",
  29438. height: math.unit(125, "feet")
  29439. },
  29440. {
  29441. name: "Macro",
  29442. height: math.unit(0.5, "miles")
  29443. },
  29444. {
  29445. name: "Megamacro",
  29446. height: math.unit(50, "miles")
  29447. },
  29448. {
  29449. name: "Gigantic",
  29450. height: math.unit(750, "miles")
  29451. },
  29452. {
  29453. name: "Planetary",
  29454. height: math.unit(15000, "miles")
  29455. },
  29456. ]
  29457. ))
  29458. characterMakers.push(() => makeCharacter(
  29459. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29460. {
  29461. front: {
  29462. height: math.unit(14, "feet"),
  29463. weight: math.unit(959, "lb"),
  29464. name: "Front",
  29465. image: {
  29466. source: "./media/characters/arsenal/front.svg",
  29467. extra: 2357 / 2157,
  29468. bottom: 93 / 2458
  29469. }
  29470. },
  29471. },
  29472. [
  29473. {
  29474. name: "Normal",
  29475. height: math.unit(14, "feet"),
  29476. default: true
  29477. },
  29478. ]
  29479. ))
  29480. characterMakers.push(() => makeCharacter(
  29481. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29482. {
  29483. front: {
  29484. height: math.unit(6, "feet"),
  29485. weight: math.unit(150, "lb"),
  29486. name: "Front",
  29487. image: {
  29488. source: "./media/characters/adira/front.svg",
  29489. extra: 1078 / 1029,
  29490. bottom: 87 / 1166
  29491. }
  29492. },
  29493. },
  29494. [
  29495. {
  29496. name: "Micro",
  29497. height: math.unit(4, "inches"),
  29498. default: true
  29499. },
  29500. {
  29501. name: "Macro",
  29502. height: math.unit(50, "feet")
  29503. },
  29504. ]
  29505. ))
  29506. characterMakers.push(() => makeCharacter(
  29507. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29508. {
  29509. front: {
  29510. height: math.unit(16, "feet"),
  29511. weight: math.unit(1000, "lb"),
  29512. name: "Front",
  29513. image: {
  29514. source: "./media/characters/grim/front.svg",
  29515. extra: 622 / 614,
  29516. bottom: 18.1 / 642
  29517. }
  29518. },
  29519. back: {
  29520. height: math.unit(16, "feet"),
  29521. weight: math.unit(1000, "lb"),
  29522. name: "Back",
  29523. image: {
  29524. source: "./media/characters/grim/back.svg",
  29525. extra: 610.6 / 602,
  29526. bottom: 40.8 / 652
  29527. }
  29528. },
  29529. hunched: {
  29530. height: math.unit(9.75, "feet"),
  29531. weight: math.unit(1000, "lb"),
  29532. name: "Hunched",
  29533. image: {
  29534. source: "./media/characters/grim/hunched.svg",
  29535. extra: 304 / 297,
  29536. bottom: 35.4 / 394
  29537. }
  29538. },
  29539. },
  29540. [
  29541. {
  29542. name: "Normal",
  29543. height: math.unit(16, "feet"),
  29544. default: true
  29545. },
  29546. ]
  29547. ))
  29548. characterMakers.push(() => makeCharacter(
  29549. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29550. {
  29551. front: {
  29552. height: math.unit(2.3, "meters"),
  29553. weight: math.unit(300, "lb"),
  29554. name: "Front",
  29555. image: {
  29556. source: "./media/characters/sinja/front-sfw.svg",
  29557. extra: 1393 / 1294,
  29558. bottom: 70 / 1463
  29559. }
  29560. },
  29561. frontNsfw: {
  29562. height: math.unit(2.3, "meters"),
  29563. weight: math.unit(300, "lb"),
  29564. name: "Front (NSFW)",
  29565. image: {
  29566. source: "./media/characters/sinja/front-nsfw.svg",
  29567. extra: 1393 / 1294,
  29568. bottom: 70 / 1463
  29569. }
  29570. },
  29571. back: {
  29572. height: math.unit(2.3, "meters"),
  29573. weight: math.unit(300, "lb"),
  29574. name: "Back",
  29575. image: {
  29576. source: "./media/characters/sinja/back.svg",
  29577. extra: 1393 / 1294,
  29578. bottom: 70 / 1463
  29579. }
  29580. },
  29581. head: {
  29582. height: math.unit(1.771, "feet"),
  29583. name: "Head",
  29584. image: {
  29585. source: "./media/characters/sinja/head.svg"
  29586. }
  29587. },
  29588. slit: {
  29589. height: math.unit(0.8, "feet"),
  29590. name: "Slit",
  29591. image: {
  29592. source: "./media/characters/sinja/slit.svg"
  29593. }
  29594. },
  29595. },
  29596. [
  29597. {
  29598. name: "Normal",
  29599. height: math.unit(2.3, "meters")
  29600. },
  29601. {
  29602. name: "Macro",
  29603. height: math.unit(91, "meters"),
  29604. default: true
  29605. },
  29606. {
  29607. name: "Megamacro",
  29608. height: math.unit(91440, "meters")
  29609. },
  29610. {
  29611. name: "Gigamacro",
  29612. height: math.unit(60960000, "meters")
  29613. },
  29614. {
  29615. name: "Teramacro",
  29616. height: math.unit(9144000000, "meters")
  29617. },
  29618. ]
  29619. ))
  29620. characterMakers.push(() => makeCharacter(
  29621. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29622. {
  29623. front: {
  29624. height: math.unit(1.7, "meters"),
  29625. weight: math.unit(130, "lb"),
  29626. name: "Front",
  29627. image: {
  29628. source: "./media/characters/kyu/front.svg",
  29629. extra: 415 / 395,
  29630. bottom: 5 / 420
  29631. }
  29632. },
  29633. head: {
  29634. height: math.unit(1.75, "feet"),
  29635. name: "Head",
  29636. image: {
  29637. source: "./media/characters/kyu/head.svg"
  29638. }
  29639. },
  29640. foot: {
  29641. height: math.unit(0.81, "feet"),
  29642. name: "Foot",
  29643. image: {
  29644. source: "./media/characters/kyu/foot.svg"
  29645. }
  29646. },
  29647. },
  29648. [
  29649. {
  29650. name: "Normal",
  29651. height: math.unit(1.7, "meters")
  29652. },
  29653. {
  29654. name: "Macro",
  29655. height: math.unit(131, "feet"),
  29656. default: true
  29657. },
  29658. {
  29659. name: "Megamacro",
  29660. height: math.unit(91440, "meters")
  29661. },
  29662. {
  29663. name: "Gigamacro",
  29664. height: math.unit(60960000, "meters")
  29665. },
  29666. {
  29667. name: "Teramacro",
  29668. height: math.unit(9144000000, "meters")
  29669. },
  29670. ]
  29671. ))
  29672. characterMakers.push(() => makeCharacter(
  29673. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29674. {
  29675. front: {
  29676. height: math.unit(7 + 1 / 12, "feet"),
  29677. weight: math.unit(250, "lb"),
  29678. name: "Front",
  29679. image: {
  29680. source: "./media/characters/joey/front.svg",
  29681. extra: 1791 / 1537,
  29682. bottom: 28 / 1816
  29683. }
  29684. },
  29685. },
  29686. [
  29687. {
  29688. name: "Micro",
  29689. height: math.unit(3, "inches")
  29690. },
  29691. {
  29692. name: "Normal",
  29693. height: math.unit(7 + 1 / 12, "feet"),
  29694. default: true
  29695. },
  29696. ]
  29697. ))
  29698. characterMakers.push(() => makeCharacter(
  29699. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29700. {
  29701. front: {
  29702. height: math.unit(165, "cm"),
  29703. weight: math.unit(140, "lb"),
  29704. name: "Front",
  29705. image: {
  29706. source: "./media/characters/sam-evans/front.svg",
  29707. extra: 3417 / 3230,
  29708. bottom: 41.3 / 3417
  29709. }
  29710. },
  29711. frontSixTails: {
  29712. height: math.unit(165, "cm"),
  29713. weight: math.unit(140, "lb"),
  29714. name: "Front-six-tails",
  29715. image: {
  29716. source: "./media/characters/sam-evans/front-six-tails.svg",
  29717. extra: 3417 / 3230,
  29718. bottom: 41.3 / 3417
  29719. }
  29720. },
  29721. back: {
  29722. height: math.unit(165, "cm"),
  29723. weight: math.unit(140, "lb"),
  29724. name: "Back",
  29725. image: {
  29726. source: "./media/characters/sam-evans/back.svg",
  29727. extra: 3227 / 3032,
  29728. bottom: 6.8 / 3234
  29729. }
  29730. },
  29731. face: {
  29732. height: math.unit(0.68, "feet"),
  29733. name: "Face",
  29734. image: {
  29735. source: "./media/characters/sam-evans/face.svg"
  29736. }
  29737. },
  29738. },
  29739. [
  29740. {
  29741. name: "Normal",
  29742. height: math.unit(165, "cm"),
  29743. default: true
  29744. },
  29745. {
  29746. name: "Macro",
  29747. height: math.unit(100, "meters")
  29748. },
  29749. {
  29750. name: "Macro+",
  29751. height: math.unit(800, "meters")
  29752. },
  29753. {
  29754. name: "Macro++",
  29755. height: math.unit(3, "km")
  29756. },
  29757. {
  29758. name: "Macro+++",
  29759. height: math.unit(30, "km")
  29760. },
  29761. ]
  29762. ))
  29763. characterMakers.push(() => makeCharacter(
  29764. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29765. {
  29766. front: {
  29767. height: math.unit(10, "feet"),
  29768. weight: math.unit(750, "lb"),
  29769. name: "Front",
  29770. image: {
  29771. source: "./media/characters/juliet-a/front.svg",
  29772. extra: 1766 / 1720,
  29773. bottom: 43 / 1809
  29774. }
  29775. },
  29776. back: {
  29777. height: math.unit(10, "feet"),
  29778. weight: math.unit(750, "lb"),
  29779. name: "Back",
  29780. image: {
  29781. source: "./media/characters/juliet-a/back.svg",
  29782. extra: 1781 / 1734,
  29783. bottom: 35 / 1810,
  29784. }
  29785. },
  29786. },
  29787. [
  29788. {
  29789. name: "Normal",
  29790. height: math.unit(10, "feet"),
  29791. default: true
  29792. },
  29793. {
  29794. name: "Dragon Form",
  29795. height: math.unit(250, "feet")
  29796. },
  29797. {
  29798. name: "Macro",
  29799. height: math.unit(1000, "feet")
  29800. },
  29801. {
  29802. name: "Megamacro",
  29803. height: math.unit(10000, "feet")
  29804. }
  29805. ]
  29806. ))
  29807. characterMakers.push(() => makeCharacter(
  29808. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29809. {
  29810. regular: {
  29811. height: math.unit(7 + 3 / 12, "feet"),
  29812. weight: math.unit(260, "lb"),
  29813. name: "Regular",
  29814. image: {
  29815. source: "./media/characters/wild/regular.svg",
  29816. extra: 97.45 / 92,
  29817. bottom: 6.8 / 104.3
  29818. }
  29819. },
  29820. biggums: {
  29821. height: math.unit(8 + 6 / 12, "feet"),
  29822. weight: math.unit(425, "lb"),
  29823. name: "Biggums",
  29824. image: {
  29825. source: "./media/characters/wild/biggums.svg",
  29826. extra: 97.45 / 92,
  29827. bottom: 7.5 / 132.34
  29828. }
  29829. },
  29830. mawRegular: {
  29831. height: math.unit(1.24, "feet"),
  29832. name: "Maw (Regular)",
  29833. image: {
  29834. source: "./media/characters/wild/maw.svg"
  29835. }
  29836. },
  29837. mawBiggums: {
  29838. height: math.unit(1.47, "feet"),
  29839. name: "Maw (Biggums)",
  29840. image: {
  29841. source: "./media/characters/wild/maw.svg"
  29842. }
  29843. },
  29844. },
  29845. [
  29846. {
  29847. name: "Normal",
  29848. height: math.unit(7 + 3 / 12, "feet"),
  29849. default: true
  29850. },
  29851. ]
  29852. ))
  29853. characterMakers.push(() => makeCharacter(
  29854. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29855. {
  29856. front: {
  29857. height: math.unit(2.5, "meters"),
  29858. weight: math.unit(200, "kg"),
  29859. name: "Front",
  29860. image: {
  29861. source: "./media/characters/vidar/front.svg",
  29862. extra: 2994 / 2795,
  29863. bottom: 56 / 3061
  29864. }
  29865. },
  29866. back: {
  29867. height: math.unit(2.5, "meters"),
  29868. weight: math.unit(200, "kg"),
  29869. name: "Back",
  29870. image: {
  29871. source: "./media/characters/vidar/back.svg",
  29872. extra: 3131 / 2928,
  29873. bottom: 13.5 / 3141.5
  29874. }
  29875. },
  29876. feral: {
  29877. height: math.unit(2.5, "meters"),
  29878. weight: math.unit(2000, "kg"),
  29879. name: "Feral",
  29880. image: {
  29881. source: "./media/characters/vidar/feral.svg",
  29882. extra: 2790 / 1765,
  29883. bottom: 6 / 2796
  29884. }
  29885. },
  29886. },
  29887. [
  29888. {
  29889. name: "Normal",
  29890. height: math.unit(2.5, "meters"),
  29891. default: true
  29892. },
  29893. {
  29894. name: "Macro",
  29895. height: math.unit(100, "meters")
  29896. },
  29897. ]
  29898. ))
  29899. characterMakers.push(() => makeCharacter(
  29900. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29901. {
  29902. front: {
  29903. height: math.unit(5 + 9 / 12, "feet"),
  29904. weight: math.unit(120, "lb"),
  29905. name: "Front",
  29906. image: {
  29907. source: "./media/characters/ash/front.svg",
  29908. extra: 2189 / 1961,
  29909. bottom: 5.2 / 2194
  29910. }
  29911. },
  29912. },
  29913. [
  29914. {
  29915. name: "Normal",
  29916. height: math.unit(5 + 9 / 12, "feet"),
  29917. default: true
  29918. },
  29919. ]
  29920. ))
  29921. characterMakers.push(() => makeCharacter(
  29922. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29923. {
  29924. front: {
  29925. height: math.unit(9, "feet"),
  29926. weight: math.unit(10000, "lb"),
  29927. name: "Front",
  29928. image: {
  29929. source: "./media/characters/gygabite/front.svg",
  29930. bottom: 31.7 / 537.8,
  29931. extra: 505 / 370
  29932. }
  29933. },
  29934. },
  29935. [
  29936. {
  29937. name: "Normal",
  29938. height: math.unit(9, "feet"),
  29939. default: true
  29940. },
  29941. ]
  29942. ))
  29943. characterMakers.push(() => makeCharacter(
  29944. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29945. {
  29946. front: {
  29947. height: math.unit(12, "feet"),
  29948. weight: math.unit(4000, "lb"),
  29949. name: "Front",
  29950. image: {
  29951. source: "./media/characters/p0tat0/front.svg",
  29952. extra: 1065 / 921,
  29953. bottom: 55.7 / 1121.25
  29954. }
  29955. },
  29956. },
  29957. [
  29958. {
  29959. name: "Normal",
  29960. height: math.unit(12, "feet"),
  29961. default: true
  29962. },
  29963. ]
  29964. ))
  29965. characterMakers.push(() => makeCharacter(
  29966. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29967. {
  29968. side: {
  29969. height: math.unit(6.5, "feet"),
  29970. weight: math.unit(800, "lb"),
  29971. name: "Side",
  29972. image: {
  29973. source: "./media/characters/dusk/side.svg",
  29974. extra: 615 / 373,
  29975. bottom: 53 / 664
  29976. }
  29977. },
  29978. sitting: {
  29979. height: math.unit(7, "feet"),
  29980. weight: math.unit(800, "lb"),
  29981. name: "Sitting",
  29982. image: {
  29983. source: "./media/characters/dusk/sitting.svg",
  29984. extra: 753 / 425,
  29985. bottom: 33 / 774
  29986. }
  29987. },
  29988. head: {
  29989. height: math.unit(6.1, "feet"),
  29990. name: "Head",
  29991. image: {
  29992. source: "./media/characters/dusk/head.svg"
  29993. }
  29994. },
  29995. },
  29996. [
  29997. {
  29998. name: "Normal",
  29999. height: math.unit(7, "feet"),
  30000. default: true
  30001. },
  30002. ]
  30003. ))
  30004. characterMakers.push(() => makeCharacter(
  30005. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30006. {
  30007. front: {
  30008. height: math.unit(15, "feet"),
  30009. weight: math.unit(7000, "lb"),
  30010. name: "Front",
  30011. image: {
  30012. source: "./media/characters/jay-direwolf/front.svg",
  30013. extra: 1810 / 1732,
  30014. bottom: 66 / 1892
  30015. }
  30016. },
  30017. },
  30018. [
  30019. {
  30020. name: "Normal",
  30021. height: math.unit(15, "feet"),
  30022. default: true
  30023. },
  30024. ]
  30025. ))
  30026. characterMakers.push(() => makeCharacter(
  30027. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30028. {
  30029. front: {
  30030. height: math.unit(4 + 9 / 12, "feet"),
  30031. weight: math.unit(130, "lb"),
  30032. name: "Front",
  30033. image: {
  30034. source: "./media/characters/anchovie/front.svg",
  30035. extra: 382 / 350,
  30036. bottom: 25 / 409
  30037. }
  30038. },
  30039. back: {
  30040. height: math.unit(4 + 9 / 12, "feet"),
  30041. weight: math.unit(130, "lb"),
  30042. name: "Back",
  30043. image: {
  30044. source: "./media/characters/anchovie/back.svg",
  30045. extra: 385 / 352,
  30046. bottom: 16.6 / 402
  30047. }
  30048. },
  30049. frontDressed: {
  30050. height: math.unit(4 + 9 / 12, "feet"),
  30051. weight: math.unit(130, "lb"),
  30052. name: "Front (Dressed)",
  30053. image: {
  30054. source: "./media/characters/anchovie/front-dressed.svg",
  30055. extra: 382 / 350,
  30056. bottom: 25 / 409
  30057. }
  30058. },
  30059. backDressed: {
  30060. height: math.unit(4 + 9 / 12, "feet"),
  30061. weight: math.unit(130, "lb"),
  30062. name: "Back (Dressed)",
  30063. image: {
  30064. source: "./media/characters/anchovie/back-dressed.svg",
  30065. extra: 385 / 352,
  30066. bottom: 16.6 / 402
  30067. }
  30068. },
  30069. },
  30070. [
  30071. {
  30072. name: "Micro",
  30073. height: math.unit(6.4, "inches")
  30074. },
  30075. {
  30076. name: "Normal",
  30077. height: math.unit(4 + 9 / 12, "feet"),
  30078. default: true
  30079. },
  30080. ]
  30081. ))
  30082. characterMakers.push(() => makeCharacter(
  30083. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30084. {
  30085. front: {
  30086. height: math.unit(2, "meters"),
  30087. weight: math.unit(180, "lb"),
  30088. name: "Front",
  30089. image: {
  30090. source: "./media/characters/acidrenamon/front.svg",
  30091. extra: 987 / 890,
  30092. bottom: 22.8 / 1009
  30093. }
  30094. },
  30095. back: {
  30096. height: math.unit(2, "meters"),
  30097. weight: math.unit(180, "lb"),
  30098. name: "Back",
  30099. image: {
  30100. source: "./media/characters/acidrenamon/back.svg",
  30101. extra: 983 / 891,
  30102. bottom: 8.4 / 992
  30103. }
  30104. },
  30105. head: {
  30106. height: math.unit(1.92, "feet"),
  30107. name: "Head",
  30108. image: {
  30109. source: "./media/characters/acidrenamon/head.svg"
  30110. }
  30111. },
  30112. rump: {
  30113. height: math.unit(1.72, "feet"),
  30114. name: "Rump",
  30115. image: {
  30116. source: "./media/characters/acidrenamon/rump.svg"
  30117. }
  30118. },
  30119. tail: {
  30120. height: math.unit(4.2, "feet"),
  30121. name: "Tail",
  30122. image: {
  30123. source: "./media/characters/acidrenamon/tail.svg"
  30124. }
  30125. },
  30126. },
  30127. [
  30128. {
  30129. name: "Normal",
  30130. height: math.unit(2, "meters"),
  30131. default: true
  30132. },
  30133. {
  30134. name: "Minimacro",
  30135. height: math.unit(7, "meters")
  30136. },
  30137. {
  30138. name: "Macro",
  30139. height: math.unit(200, "meters")
  30140. },
  30141. {
  30142. name: "Gigamacro",
  30143. height: math.unit(0.2, "earths")
  30144. },
  30145. ]
  30146. ))
  30147. characterMakers.push(() => makeCharacter(
  30148. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30149. {
  30150. front: {
  30151. height: math.unit(152, "feet"),
  30152. name: "Front",
  30153. image: {
  30154. source: "./media/characters/kenzie-lee/front.svg",
  30155. extra: 1869/1774,
  30156. bottom: 128/1997
  30157. }
  30158. },
  30159. side: {
  30160. height: math.unit(86, "feet"),
  30161. name: "Side",
  30162. image: {
  30163. source: "./media/characters/kenzie-lee/side.svg",
  30164. extra: 930/815,
  30165. bottom: 177/1107
  30166. }
  30167. },
  30168. paw: {
  30169. height: math.unit(15, "feet"),
  30170. name: "Paw",
  30171. image: {
  30172. source: "./media/characters/kenzie-lee/paw.svg"
  30173. }
  30174. },
  30175. },
  30176. [
  30177. {
  30178. name: "Kenzie Flea",
  30179. height: math.unit(2, "mm"),
  30180. default: true
  30181. },
  30182. {
  30183. name: "Micro",
  30184. height: math.unit(2, "inches")
  30185. },
  30186. {
  30187. name: "Normal",
  30188. height: math.unit(152, "feet")
  30189. },
  30190. {
  30191. name: "Megamacro",
  30192. height: math.unit(7, "miles")
  30193. },
  30194. {
  30195. name: "Gigamacro",
  30196. height: math.unit(8000, "miles")
  30197. },
  30198. ]
  30199. ))
  30200. characterMakers.push(() => makeCharacter(
  30201. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30202. {
  30203. front: {
  30204. height: math.unit(6, "feet"),
  30205. name: "Front",
  30206. image: {
  30207. source: "./media/characters/withers/front.svg",
  30208. extra: 1935/1760,
  30209. bottom: 72/2007
  30210. }
  30211. },
  30212. back: {
  30213. height: math.unit(6, "feet"),
  30214. name: "Back",
  30215. image: {
  30216. source: "./media/characters/withers/back.svg",
  30217. extra: 1944/1792,
  30218. bottom: 12/1956
  30219. }
  30220. },
  30221. dressed: {
  30222. height: math.unit(6, "feet"),
  30223. name: "Dressed",
  30224. image: {
  30225. source: "./media/characters/withers/dressed.svg",
  30226. extra: 1937/1765,
  30227. bottom: 73/2010
  30228. }
  30229. },
  30230. phase1: {
  30231. height: math.unit(1.1, "feet"),
  30232. name: "Phase 1",
  30233. image: {
  30234. source: "./media/characters/withers/phase-1.svg",
  30235. extra: 1885/1232,
  30236. bottom: 0/1885
  30237. }
  30238. },
  30239. phase2: {
  30240. height: math.unit(1.05, "feet"),
  30241. name: "Phase 2",
  30242. image: {
  30243. source: "./media/characters/withers/phase-2.svg",
  30244. extra: 1792/1090,
  30245. bottom: 0/1792
  30246. }
  30247. },
  30248. partyWipe: {
  30249. height: math.unit(1.1, "feet"),
  30250. name: "Party Wipe",
  30251. image: {
  30252. source: "./media/characters/withers/party-wipe.svg",
  30253. extra: 1864/1207,
  30254. bottom: 0/1864
  30255. }
  30256. },
  30257. },
  30258. [
  30259. {
  30260. name: "Macro",
  30261. height: math.unit(167, "feet"),
  30262. default: true
  30263. },
  30264. {
  30265. name: "Megamacro",
  30266. height: math.unit(15, "miles")
  30267. }
  30268. ]
  30269. ))
  30270. characterMakers.push(() => makeCharacter(
  30271. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30272. {
  30273. front: {
  30274. height: math.unit(6 + 7 / 12, "feet"),
  30275. weight: math.unit(250, "lb"),
  30276. name: "Front",
  30277. image: {
  30278. source: "./media/characters/nemoskii/front.svg",
  30279. extra: 2270 / 1734,
  30280. bottom: 86 / 2354
  30281. }
  30282. },
  30283. back: {
  30284. height: math.unit(6 + 7 / 12, "feet"),
  30285. weight: math.unit(250, "lb"),
  30286. name: "Back",
  30287. image: {
  30288. source: "./media/characters/nemoskii/back.svg",
  30289. extra: 1845 / 1788,
  30290. bottom: 10.5 / 1852
  30291. }
  30292. },
  30293. head: {
  30294. height: math.unit(1.31, "feet"),
  30295. name: "Head",
  30296. image: {
  30297. source: "./media/characters/nemoskii/head.svg"
  30298. }
  30299. },
  30300. },
  30301. [
  30302. {
  30303. name: "Micro",
  30304. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30305. },
  30306. {
  30307. name: "Normal",
  30308. height: math.unit(6 + 7 / 12, "feet"),
  30309. default: true
  30310. },
  30311. {
  30312. name: "Macro",
  30313. height: math.unit((6 + 7 / 12) * 150, "feet")
  30314. },
  30315. {
  30316. name: "Macro+",
  30317. height: math.unit((6 + 7 / 12) * 500, "feet")
  30318. },
  30319. {
  30320. name: "Megamacro",
  30321. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30322. },
  30323. ]
  30324. ))
  30325. characterMakers.push(() => makeCharacter(
  30326. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30327. {
  30328. front: {
  30329. height: math.unit(1, "mile"),
  30330. weight: math.unit(265261.9, "lb"),
  30331. name: "Front",
  30332. image: {
  30333. source: "./media/characters/shui/front.svg",
  30334. extra: 1633 / 1564,
  30335. bottom: 91.5 / 1726
  30336. }
  30337. },
  30338. },
  30339. [
  30340. {
  30341. name: "Macro",
  30342. height: math.unit(1, "mile"),
  30343. default: true
  30344. },
  30345. ]
  30346. ))
  30347. characterMakers.push(() => makeCharacter(
  30348. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30349. {
  30350. front: {
  30351. height: math.unit(12 + 6 / 12, "feet"),
  30352. weight: math.unit(1342, "lb"),
  30353. name: "Front",
  30354. image: {
  30355. source: "./media/characters/arokh-takakura/front.svg",
  30356. extra: 1089 / 1043,
  30357. bottom: 77.4 / 1176.7
  30358. }
  30359. },
  30360. back: {
  30361. height: math.unit(12 + 6 / 12, "feet"),
  30362. weight: math.unit(1342, "lb"),
  30363. name: "Back",
  30364. image: {
  30365. source: "./media/characters/arokh-takakura/back.svg",
  30366. extra: 1046 / 1019,
  30367. bottom: 102 / 1150
  30368. }
  30369. },
  30370. },
  30371. [
  30372. {
  30373. name: "Big",
  30374. height: math.unit(12 + 6 / 12, "feet"),
  30375. default: true
  30376. },
  30377. ]
  30378. ))
  30379. characterMakers.push(() => makeCharacter(
  30380. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30381. {
  30382. front: {
  30383. height: math.unit(5 + 6 / 12, "feet"),
  30384. weight: math.unit(150, "lb"),
  30385. name: "Front",
  30386. image: {
  30387. source: "./media/characters/theo/front.svg",
  30388. extra: 1184 / 1131,
  30389. bottom: 7.4 / 1191
  30390. }
  30391. },
  30392. },
  30393. [
  30394. {
  30395. name: "Micro",
  30396. height: math.unit(5, "inches")
  30397. },
  30398. {
  30399. name: "Normal",
  30400. height: math.unit(5 + 6 / 12, "feet"),
  30401. default: true
  30402. },
  30403. ]
  30404. ))
  30405. characterMakers.push(() => makeCharacter(
  30406. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30407. {
  30408. front: {
  30409. height: math.unit(5 + 9 / 12, "feet"),
  30410. weight: math.unit(130, "lb"),
  30411. name: "Front",
  30412. image: {
  30413. source: "./media/characters/cecelia-swift/front.svg",
  30414. extra: 502 / 484,
  30415. bottom: 23 / 523
  30416. }
  30417. },
  30418. back: {
  30419. height: math.unit(5 + 9 / 12, "feet"),
  30420. weight: math.unit(130, "lb"),
  30421. name: "Back",
  30422. image: {
  30423. source: "./media/characters/cecelia-swift/back.svg",
  30424. extra: 499 / 485,
  30425. bottom: 12 / 511
  30426. }
  30427. },
  30428. head: {
  30429. height: math.unit(0.90, "feet"),
  30430. name: "Head",
  30431. image: {
  30432. source: "./media/characters/cecelia-swift/head.svg"
  30433. }
  30434. },
  30435. rump: {
  30436. height: math.unit(1.75, "feet"),
  30437. name: "Rump",
  30438. image: {
  30439. source: "./media/characters/cecelia-swift/rump.svg"
  30440. }
  30441. },
  30442. },
  30443. [
  30444. {
  30445. name: "Normal",
  30446. height: math.unit(5 + 9 / 12, "feet"),
  30447. default: true
  30448. },
  30449. {
  30450. name: "Big",
  30451. height: math.unit(50, "feet")
  30452. },
  30453. {
  30454. name: "Macro",
  30455. height: math.unit(100, "feet")
  30456. },
  30457. {
  30458. name: "Macro+",
  30459. height: math.unit(500, "feet")
  30460. },
  30461. {
  30462. name: "Macro++",
  30463. height: math.unit(1000, "feet")
  30464. },
  30465. ]
  30466. ))
  30467. characterMakers.push(() => makeCharacter(
  30468. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30469. {
  30470. front: {
  30471. height: math.unit(6, "feet"),
  30472. weight: math.unit(150, "lb"),
  30473. name: "Front",
  30474. image: {
  30475. source: "./media/characters/kaunan/front.svg",
  30476. extra: 2890 / 2523,
  30477. bottom: 49 / 2939
  30478. }
  30479. },
  30480. },
  30481. [
  30482. {
  30483. name: "Macro",
  30484. height: math.unit(150, "feet"),
  30485. default: true
  30486. },
  30487. ]
  30488. ))
  30489. characterMakers.push(() => makeCharacter(
  30490. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30491. {
  30492. dressed: {
  30493. height: math.unit(175, "cm"),
  30494. weight: math.unit(60, "kg"),
  30495. name: "Dressed",
  30496. image: {
  30497. source: "./media/characters/fei/dressed.svg",
  30498. extra: 1402/1278,
  30499. bottom: 27/1429
  30500. }
  30501. },
  30502. nude: {
  30503. height: math.unit(175, "cm"),
  30504. weight: math.unit(60, "kg"),
  30505. name: "Nude",
  30506. image: {
  30507. source: "./media/characters/fei/nude.svg",
  30508. extra: 1402/1278,
  30509. bottom: 27/1429
  30510. }
  30511. },
  30512. heels: {
  30513. height: math.unit(0.466, "feet"),
  30514. name: "Heels",
  30515. image: {
  30516. source: "./media/characters/fei/heels.svg",
  30517. extra: 156/152,
  30518. bottom: 28/184
  30519. }
  30520. },
  30521. },
  30522. [
  30523. {
  30524. name: "Mortal",
  30525. height: math.unit(175, "cm")
  30526. },
  30527. {
  30528. name: "Normal",
  30529. height: math.unit(3500, "m")
  30530. },
  30531. {
  30532. name: "Stroll",
  30533. height: math.unit(18.4, "km"),
  30534. default: true
  30535. },
  30536. {
  30537. name: "Showoff",
  30538. height: math.unit(175, "km")
  30539. },
  30540. ]
  30541. ))
  30542. characterMakers.push(() => makeCharacter(
  30543. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30544. {
  30545. front: {
  30546. height: math.unit(7, "feet"),
  30547. weight: math.unit(1000, "kg"),
  30548. name: "Front",
  30549. image: {
  30550. source: "./media/characters/edrax/front.svg",
  30551. extra: 2838 / 2550,
  30552. bottom: 130 / 2968
  30553. }
  30554. },
  30555. },
  30556. [
  30557. {
  30558. name: "Small",
  30559. height: math.unit(7, "feet")
  30560. },
  30561. {
  30562. name: "Normal",
  30563. height: math.unit(1500, "meters")
  30564. },
  30565. {
  30566. name: "Mega",
  30567. height: math.unit(12000000, "km"),
  30568. default: true
  30569. },
  30570. {
  30571. name: "Megamacro",
  30572. height: math.unit(10600000, "lightyears")
  30573. },
  30574. {
  30575. name: "Hypermacro",
  30576. height: math.unit(256, "yottameters")
  30577. },
  30578. ]
  30579. ))
  30580. characterMakers.push(() => makeCharacter(
  30581. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30582. {
  30583. front: {
  30584. height: math.unit(10, "feet"),
  30585. weight: math.unit(750, "lb"),
  30586. name: "Front",
  30587. image: {
  30588. source: "./media/characters/clove/front.svg",
  30589. extra: 1918/1751,
  30590. bottom: 52/1970
  30591. }
  30592. },
  30593. back: {
  30594. height: math.unit(10, "feet"),
  30595. weight: math.unit(750, "lb"),
  30596. name: "Back",
  30597. image: {
  30598. source: "./media/characters/clove/back.svg",
  30599. extra: 1912/1747,
  30600. bottom: 50/1962
  30601. }
  30602. },
  30603. },
  30604. [
  30605. {
  30606. name: "Normal",
  30607. height: math.unit(10, "feet"),
  30608. default: true
  30609. },
  30610. ]
  30611. ))
  30612. characterMakers.push(() => makeCharacter(
  30613. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30614. {
  30615. front: {
  30616. height: math.unit(4, "feet"),
  30617. weight: math.unit(50, "lb"),
  30618. name: "Front",
  30619. image: {
  30620. source: "./media/characters/alex-rabbit/front.svg",
  30621. extra: 507 / 458,
  30622. bottom: 18.5 / 527
  30623. }
  30624. },
  30625. back: {
  30626. height: math.unit(4, "feet"),
  30627. weight: math.unit(50, "lb"),
  30628. name: "Back",
  30629. image: {
  30630. source: "./media/characters/alex-rabbit/back.svg",
  30631. extra: 502 / 460,
  30632. bottom: 18.9 / 521
  30633. }
  30634. },
  30635. },
  30636. [
  30637. {
  30638. name: "Normal",
  30639. height: math.unit(4, "feet"),
  30640. default: true
  30641. },
  30642. ]
  30643. ))
  30644. characterMakers.push(() => makeCharacter(
  30645. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30646. {
  30647. front: {
  30648. height: math.unit(1 + 3 / 12, "feet"),
  30649. weight: math.unit(80, "lb"),
  30650. name: "Front",
  30651. image: {
  30652. source: "./media/characters/zander-rose/front.svg",
  30653. extra: 916 / 797,
  30654. bottom: 17 / 933
  30655. }
  30656. },
  30657. back: {
  30658. height: math.unit(1 + 3 / 12, "feet"),
  30659. weight: math.unit(80, "lb"),
  30660. name: "Back",
  30661. image: {
  30662. source: "./media/characters/zander-rose/back.svg",
  30663. extra: 903 / 779,
  30664. bottom: 31 / 934
  30665. }
  30666. },
  30667. },
  30668. [
  30669. {
  30670. name: "Normal",
  30671. height: math.unit(1 + 3 / 12, "feet"),
  30672. default: true
  30673. },
  30674. ]
  30675. ))
  30676. characterMakers.push(() => makeCharacter(
  30677. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30678. {
  30679. anthro: {
  30680. height: math.unit(6, "feet"),
  30681. weight: math.unit(150, "lb"),
  30682. name: "Anthro",
  30683. image: {
  30684. source: "./media/characters/razz/anthro.svg",
  30685. extra: 1437 / 1343,
  30686. bottom: 48 / 1485
  30687. }
  30688. },
  30689. feral: {
  30690. height: math.unit(6, "feet"),
  30691. weight: math.unit(150, "lb"),
  30692. name: "Feral",
  30693. image: {
  30694. source: "./media/characters/razz/feral.svg",
  30695. extra: 2569 / 1385,
  30696. bottom: 95 / 2664
  30697. }
  30698. },
  30699. },
  30700. [
  30701. {
  30702. name: "Normal",
  30703. height: math.unit(6, "feet"),
  30704. default: true
  30705. },
  30706. ]
  30707. ))
  30708. characterMakers.push(() => makeCharacter(
  30709. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30710. {
  30711. front: {
  30712. height: math.unit(9 + 4 / 12, "feet"),
  30713. weight: math.unit(500, "lb"),
  30714. name: "Front",
  30715. image: {
  30716. source: "./media/characters/morrigan/front.svg",
  30717. extra: 2707 / 2579,
  30718. bottom: 156 / 2863
  30719. }
  30720. },
  30721. },
  30722. [
  30723. {
  30724. name: "Normal",
  30725. height: math.unit(9 + 4 / 12, "feet"),
  30726. default: true
  30727. },
  30728. ]
  30729. ))
  30730. characterMakers.push(() => makeCharacter(
  30731. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30732. {
  30733. front: {
  30734. height: math.unit(5, "stories"),
  30735. weight: math.unit(4000, "lb"),
  30736. name: "Front",
  30737. image: {
  30738. source: "./media/characters/jenene/front.svg",
  30739. extra: 1780 / 1710,
  30740. bottom: 57 / 1837
  30741. }
  30742. },
  30743. },
  30744. [
  30745. {
  30746. name: "Normal",
  30747. height: math.unit(5, "stories"),
  30748. default: true
  30749. },
  30750. ]
  30751. ))
  30752. characterMakers.push(() => makeCharacter(
  30753. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30754. {
  30755. taurSfw: {
  30756. height: math.unit(10, "meters"),
  30757. weight: math.unit(17500, "kg"),
  30758. name: "Taur",
  30759. image: {
  30760. source: "./media/characters/faey/taur-sfw.svg",
  30761. extra: 1200 / 968,
  30762. bottom: 41 / 1241
  30763. }
  30764. },
  30765. chestmaw: {
  30766. height: math.unit(2.01, "meters"),
  30767. name: "Chestmaw",
  30768. image: {
  30769. source: "./media/characters/faey/chestmaw.svg"
  30770. }
  30771. },
  30772. foot: {
  30773. height: math.unit(2.43, "meters"),
  30774. name: "Foot",
  30775. image: {
  30776. source: "./media/characters/faey/foot.svg"
  30777. }
  30778. },
  30779. jaws: {
  30780. height: math.unit(1.66, "meters"),
  30781. name: "Jaws",
  30782. image: {
  30783. source: "./media/characters/faey/jaws.svg"
  30784. }
  30785. },
  30786. tongues: {
  30787. height: math.unit(2.01, "meters"),
  30788. name: "Tongues",
  30789. image: {
  30790. source: "./media/characters/faey/tongues.svg"
  30791. }
  30792. },
  30793. },
  30794. [
  30795. {
  30796. name: "Small",
  30797. height: math.unit(10, "meters"),
  30798. default: true
  30799. },
  30800. {
  30801. name: "Big",
  30802. height: math.unit(500000, "km")
  30803. },
  30804. ]
  30805. ))
  30806. characterMakers.push(() => makeCharacter(
  30807. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30808. {
  30809. front: {
  30810. height: math.unit(7, "feet"),
  30811. weight: math.unit(275, "lb"),
  30812. name: "Front",
  30813. image: {
  30814. source: "./media/characters/roku/front.svg",
  30815. extra: 903 / 878,
  30816. bottom: 37 / 940
  30817. }
  30818. },
  30819. },
  30820. [
  30821. {
  30822. name: "Normal",
  30823. height: math.unit(7, "feet"),
  30824. default: true
  30825. },
  30826. {
  30827. name: "Macro",
  30828. height: math.unit(500, "feet")
  30829. },
  30830. {
  30831. name: "Megamacro",
  30832. height: math.unit(200, "miles")
  30833. },
  30834. ]
  30835. ))
  30836. characterMakers.push(() => makeCharacter(
  30837. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30838. {
  30839. front: {
  30840. height: math.unit(6 + 2 / 12, "feet"),
  30841. weight: math.unit(150, "lb"),
  30842. name: "Front",
  30843. image: {
  30844. source: "./media/characters/lira/front.svg",
  30845. extra: 1727 / 1605,
  30846. bottom: 26 / 1753
  30847. }
  30848. },
  30849. back: {
  30850. height: math.unit(6 + 2 / 12, "feet"),
  30851. weight: math.unit(150, "lb"),
  30852. name: "Back",
  30853. image: {
  30854. source: "./media/characters/lira/back.svg",
  30855. extra: 1713/1621,
  30856. bottom: 20/1733
  30857. }
  30858. },
  30859. hand: {
  30860. height: math.unit(0.75, "feet"),
  30861. name: "Hand",
  30862. image: {
  30863. source: "./media/characters/lira/hand.svg"
  30864. }
  30865. },
  30866. maw: {
  30867. height: math.unit(0.65, "feet"),
  30868. name: "Maw",
  30869. image: {
  30870. source: "./media/characters/lira/maw.svg"
  30871. }
  30872. },
  30873. pawDigi: {
  30874. height: math.unit(1.6, "feet"),
  30875. name: "Paw Digi",
  30876. image: {
  30877. source: "./media/characters/lira/paw-digi.svg"
  30878. }
  30879. },
  30880. pawPlanti: {
  30881. height: math.unit(1.4, "feet"),
  30882. name: "Paw Planti",
  30883. image: {
  30884. source: "./media/characters/lira/paw-planti.svg"
  30885. }
  30886. },
  30887. },
  30888. [
  30889. {
  30890. name: "Normal",
  30891. height: math.unit(6 + 2 / 12, "feet"),
  30892. default: true
  30893. },
  30894. {
  30895. name: "Macro",
  30896. height: math.unit(100, "feet")
  30897. },
  30898. {
  30899. name: "Macro²",
  30900. height: math.unit(1600, "feet")
  30901. },
  30902. {
  30903. name: "Planetary",
  30904. height: math.unit(20, "earths")
  30905. },
  30906. ]
  30907. ))
  30908. characterMakers.push(() => makeCharacter(
  30909. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30910. {
  30911. front: {
  30912. height: math.unit(6, "feet"),
  30913. weight: math.unit(150, "lb"),
  30914. name: "Front",
  30915. image: {
  30916. source: "./media/characters/hadjet/front.svg",
  30917. extra: 1480 / 1346,
  30918. bottom: 26 / 1506
  30919. }
  30920. },
  30921. frontNsfw: {
  30922. height: math.unit(6, "feet"),
  30923. weight: math.unit(150, "lb"),
  30924. name: "Front (NSFW)",
  30925. image: {
  30926. source: "./media/characters/hadjet/front-nsfw.svg",
  30927. extra: 1440 / 1358,
  30928. bottom: 52 / 1492
  30929. }
  30930. },
  30931. },
  30932. [
  30933. {
  30934. name: "Macro",
  30935. height: math.unit(10, "stories"),
  30936. default: true
  30937. },
  30938. {
  30939. name: "Megamacro",
  30940. height: math.unit(1.5, "miles")
  30941. },
  30942. {
  30943. name: "Megamacro+",
  30944. height: math.unit(5, "miles")
  30945. },
  30946. ]
  30947. ))
  30948. characterMakers.push(() => makeCharacter(
  30949. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30950. {
  30951. side: {
  30952. height: math.unit(106, "feet"),
  30953. weight: math.unit(500, "tonnes"),
  30954. name: "Side",
  30955. image: {
  30956. source: "./media/characters/kodran/side.svg",
  30957. extra: 553 / 480,
  30958. bottom: 33 / 586
  30959. }
  30960. },
  30961. front: {
  30962. height: math.unit(132, "feet"),
  30963. weight: math.unit(500, "tonnes"),
  30964. name: "Front",
  30965. image: {
  30966. source: "./media/characters/kodran/front.svg",
  30967. extra: 667 / 643,
  30968. bottom: 42 / 709
  30969. }
  30970. },
  30971. flying: {
  30972. height: math.unit(350, "feet"),
  30973. weight: math.unit(500, "tonnes"),
  30974. name: "Flying",
  30975. image: {
  30976. source: "./media/characters/kodran/flying.svg"
  30977. }
  30978. },
  30979. foot: {
  30980. height: math.unit(33, "feet"),
  30981. name: "Foot",
  30982. image: {
  30983. source: "./media/characters/kodran/foot.svg"
  30984. }
  30985. },
  30986. footFront: {
  30987. height: math.unit(19, "feet"),
  30988. name: "Foot (Front)",
  30989. image: {
  30990. source: "./media/characters/kodran/foot-front.svg",
  30991. extra: 261 / 261,
  30992. bottom: 91 / 352
  30993. }
  30994. },
  30995. headFront: {
  30996. height: math.unit(53, "feet"),
  30997. name: "Head (Front)",
  30998. image: {
  30999. source: "./media/characters/kodran/head-front.svg"
  31000. }
  31001. },
  31002. headSide: {
  31003. height: math.unit(65, "feet"),
  31004. name: "Head (Side)",
  31005. image: {
  31006. source: "./media/characters/kodran/head-side.svg"
  31007. }
  31008. },
  31009. throat: {
  31010. height: math.unit(79, "feet"),
  31011. name: "Throat",
  31012. image: {
  31013. source: "./media/characters/kodran/throat.svg"
  31014. }
  31015. },
  31016. },
  31017. [
  31018. {
  31019. name: "Large",
  31020. height: math.unit(106, "feet"),
  31021. default: true
  31022. },
  31023. ]
  31024. ))
  31025. characterMakers.push(() => makeCharacter(
  31026. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31027. {
  31028. side: {
  31029. height: math.unit(11, "feet"),
  31030. weight: math.unit(150, "lb"),
  31031. name: "Side",
  31032. image: {
  31033. source: "./media/characters/pyxaron/side.svg",
  31034. extra: 305 / 195,
  31035. bottom: 17 / 322
  31036. }
  31037. },
  31038. },
  31039. [
  31040. {
  31041. name: "Normal",
  31042. height: math.unit(11, "feet"),
  31043. default: true
  31044. },
  31045. ]
  31046. ))
  31047. characterMakers.push(() => makeCharacter(
  31048. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31049. {
  31050. front: {
  31051. height: math.unit(6, "feet"),
  31052. weight: math.unit(150, "lb"),
  31053. name: "Front",
  31054. image: {
  31055. source: "./media/characters/meep/front.svg",
  31056. extra: 88 / 80,
  31057. bottom: 6 / 94
  31058. }
  31059. },
  31060. },
  31061. [
  31062. {
  31063. name: "Fun Sized",
  31064. height: math.unit(2, "inches"),
  31065. default: true
  31066. },
  31067. {
  31068. name: "Friend Sized",
  31069. height: math.unit(8, "inches")
  31070. },
  31071. ]
  31072. ))
  31073. characterMakers.push(() => makeCharacter(
  31074. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31075. {
  31076. front: {
  31077. height: math.unit(15, "feet"),
  31078. weight: math.unit(2500, "lb"),
  31079. name: "Front",
  31080. image: {
  31081. source: "./media/characters/holly-rabbit/front.svg",
  31082. extra: 1433 / 1233,
  31083. bottom: 125 / 1558
  31084. }
  31085. },
  31086. dick: {
  31087. height: math.unit(4.6, "feet"),
  31088. name: "Dick",
  31089. image: {
  31090. source: "./media/characters/holly-rabbit/dick.svg"
  31091. }
  31092. },
  31093. },
  31094. [
  31095. {
  31096. name: "Normal",
  31097. height: math.unit(15, "feet"),
  31098. default: true
  31099. },
  31100. {
  31101. name: "Macro",
  31102. height: math.unit(250, "feet")
  31103. },
  31104. {
  31105. name: "Macro+",
  31106. height: math.unit(2500, "feet")
  31107. },
  31108. ]
  31109. ))
  31110. characterMakers.push(() => makeCharacter(
  31111. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31112. {
  31113. front: {
  31114. height: math.unit(3.02, "meters"),
  31115. weight: math.unit(500, "kg"),
  31116. name: "Front",
  31117. image: {
  31118. source: "./media/characters/drena/front.svg",
  31119. extra: 282 / 243,
  31120. bottom: 8 / 290
  31121. }
  31122. },
  31123. side: {
  31124. height: math.unit(3.02, "meters"),
  31125. weight: math.unit(500, "kg"),
  31126. name: "Side",
  31127. image: {
  31128. source: "./media/characters/drena/side.svg",
  31129. extra: 280 / 245,
  31130. bottom: 10 / 290
  31131. }
  31132. },
  31133. back: {
  31134. height: math.unit(3.02, "meters"),
  31135. weight: math.unit(500, "kg"),
  31136. name: "Back",
  31137. image: {
  31138. source: "./media/characters/drena/back.svg",
  31139. extra: 278 / 243,
  31140. bottom: 2 / 280
  31141. }
  31142. },
  31143. foot: {
  31144. height: math.unit(0.75, "meters"),
  31145. name: "Foot",
  31146. image: {
  31147. source: "./media/characters/drena/foot.svg"
  31148. }
  31149. },
  31150. maw: {
  31151. height: math.unit(0.82, "meters"),
  31152. name: "Maw",
  31153. image: {
  31154. source: "./media/characters/drena/maw.svg"
  31155. }
  31156. },
  31157. eating: {
  31158. height: math.unit(0.75, "meters"),
  31159. name: "Eating",
  31160. image: {
  31161. source: "./media/characters/drena/eating.svg"
  31162. }
  31163. },
  31164. rump: {
  31165. height: math.unit(0.93, "meters"),
  31166. name: "Rump",
  31167. image: {
  31168. source: "./media/characters/drena/rump.svg"
  31169. }
  31170. },
  31171. },
  31172. [
  31173. {
  31174. name: "Normal",
  31175. height: math.unit(3.02, "meters"),
  31176. default: true
  31177. },
  31178. ]
  31179. ))
  31180. characterMakers.push(() => makeCharacter(
  31181. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31182. {
  31183. front: {
  31184. height: math.unit(6 + 4 / 12, "feet"),
  31185. weight: math.unit(250, "lb"),
  31186. name: "Front",
  31187. image: {
  31188. source: "./media/characters/remmyzilla/front.svg",
  31189. extra: 4033 / 3588,
  31190. bottom: 123 / 4156
  31191. }
  31192. },
  31193. back: {
  31194. height: math.unit(6 + 4 / 12, "feet"),
  31195. weight: math.unit(250, "lb"),
  31196. name: "Back",
  31197. image: {
  31198. source: "./media/characters/remmyzilla/back.svg",
  31199. extra: 1696/1602,
  31200. bottom: 63/1759
  31201. }
  31202. },
  31203. paw: {
  31204. height: math.unit(1.73, "feet"),
  31205. name: "Paw",
  31206. image: {
  31207. source: "./media/characters/remmyzilla/paw.svg"
  31208. },
  31209. extraAttributes: {
  31210. "toeSize": {
  31211. name: "Toe Size",
  31212. power: 2,
  31213. type: "area",
  31214. base: math.unit(0.0035, "m^2")
  31215. },
  31216. "padSize": {
  31217. name: "Pad Size",
  31218. power: 2,
  31219. type: "area",
  31220. base: math.unit(0.015, "m^2")
  31221. },
  31222. "pawsize": {
  31223. name: "Paw Size",
  31224. power: 2,
  31225. type: "area",
  31226. base: math.unit(0.072, "m^2")
  31227. },
  31228. }
  31229. },
  31230. maw: {
  31231. height: math.unit(1.73, "feet"),
  31232. name: "Maw",
  31233. image: {
  31234. source: "./media/characters/remmyzilla/maw.svg"
  31235. }
  31236. },
  31237. },
  31238. [
  31239. {
  31240. name: "Normal",
  31241. height: math.unit(6 + 4 / 12, "feet")
  31242. },
  31243. {
  31244. name: "Minimacro",
  31245. height: math.unit(12 + 8 / 12, "feet")
  31246. },
  31247. {
  31248. name: "Normal",
  31249. height: math.unit(640, "feet"),
  31250. default: true
  31251. },
  31252. {
  31253. name: "Megamacro",
  31254. height: math.unit(6400, "feet")
  31255. },
  31256. {
  31257. name: "Gigamacro",
  31258. height: math.unit(64000, "miles")
  31259. },
  31260. ]
  31261. ))
  31262. characterMakers.push(() => makeCharacter(
  31263. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31264. {
  31265. front: {
  31266. height: math.unit(2.5, "meters"),
  31267. weight: math.unit(300, "lb"),
  31268. name: "Front",
  31269. image: {
  31270. source: "./media/characters/lawrence/front.svg",
  31271. extra: 357 / 335,
  31272. bottom: 30 / 387
  31273. }
  31274. },
  31275. back: {
  31276. height: math.unit(2.5, "meters"),
  31277. weight: math.unit(300, "lb"),
  31278. name: "Back",
  31279. image: {
  31280. source: "./media/characters/lawrence/back.svg",
  31281. extra: 357 / 338,
  31282. bottom: 16 / 373
  31283. }
  31284. },
  31285. head: {
  31286. height: math.unit(0.9, "meter"),
  31287. name: "Head",
  31288. image: {
  31289. source: "./media/characters/lawrence/head.svg"
  31290. }
  31291. },
  31292. maw: {
  31293. height: math.unit(0.7, "meter"),
  31294. name: "Maw",
  31295. image: {
  31296. source: "./media/characters/lawrence/maw.svg"
  31297. }
  31298. },
  31299. footBottom: {
  31300. height: math.unit(0.5, "meter"),
  31301. name: "Foot (Bottom)",
  31302. image: {
  31303. source: "./media/characters/lawrence/foot-bottom.svg"
  31304. }
  31305. },
  31306. footTop: {
  31307. height: math.unit(0.5, "meter"),
  31308. name: "Foot (Top)",
  31309. image: {
  31310. source: "./media/characters/lawrence/foot-top.svg"
  31311. }
  31312. },
  31313. },
  31314. [
  31315. {
  31316. name: "Normal",
  31317. height: math.unit(2.5, "meters"),
  31318. default: true
  31319. },
  31320. {
  31321. name: "Macro",
  31322. height: math.unit(95, "meters")
  31323. },
  31324. {
  31325. name: "Megamacro",
  31326. height: math.unit(150, "km")
  31327. },
  31328. ]
  31329. ))
  31330. characterMakers.push(() => makeCharacter(
  31331. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31332. {
  31333. front: {
  31334. height: math.unit(4.2, "meters"),
  31335. preyCapacity: math.unit(50, "m^3"),
  31336. weight: math.unit(30, "tonnes"),
  31337. name: "Front",
  31338. image: {
  31339. source: "./media/characters/sydney/front.svg",
  31340. extra: 1177/1129,
  31341. bottom: 197/1374
  31342. },
  31343. extraAttributes: {
  31344. "length": {
  31345. name: "Length",
  31346. power: 1,
  31347. type: "length",
  31348. base: math.unit(21, "meters")
  31349. },
  31350. }
  31351. },
  31352. },
  31353. [
  31354. {
  31355. name: "Normal",
  31356. height: math.unit(4.2, "meters"),
  31357. default: true
  31358. },
  31359. ]
  31360. ))
  31361. characterMakers.push(() => makeCharacter(
  31362. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31363. {
  31364. back: {
  31365. height: math.unit(201, "feet"),
  31366. name: "Back",
  31367. image: {
  31368. source: "./media/characters/jessica/back.svg",
  31369. extra: 273 / 259,
  31370. bottom: 7 / 280
  31371. }
  31372. },
  31373. },
  31374. [
  31375. {
  31376. name: "Normal",
  31377. height: math.unit(201, "feet"),
  31378. default: true
  31379. },
  31380. {
  31381. name: "Megamacro",
  31382. height: math.unit(8, "miles")
  31383. },
  31384. ]
  31385. ))
  31386. characterMakers.push(() => makeCharacter(
  31387. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31388. {
  31389. side: {
  31390. height: math.unit(5.6, "m"),
  31391. weight: math.unit(8000, "kg"),
  31392. name: "Side",
  31393. image: {
  31394. source: "./media/characters/victoria/side.svg",
  31395. extra: 1542/1229,
  31396. bottom: 124/1666
  31397. }
  31398. },
  31399. maw: {
  31400. height: math.unit(7.14, "feet"),
  31401. name: "Maw",
  31402. image: {
  31403. source: "./media/characters/victoria/maw.svg"
  31404. }
  31405. },
  31406. },
  31407. [
  31408. {
  31409. name: "Normal",
  31410. height: math.unit(5.6, "m"),
  31411. default: true
  31412. },
  31413. ]
  31414. ))
  31415. characterMakers.push(() => makeCharacter(
  31416. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31417. {
  31418. front: {
  31419. height: math.unit(5 + 6 / 12, "feet"),
  31420. name: "Front",
  31421. image: {
  31422. source: "./media/characters/cat/front.svg",
  31423. extra: 1449/1295,
  31424. bottom: 34/1483
  31425. },
  31426. form: "cat",
  31427. default: true
  31428. },
  31429. back: {
  31430. height: math.unit(5 + 6 / 12, "feet"),
  31431. name: "Back",
  31432. image: {
  31433. source: "./media/characters/cat/back.svg",
  31434. extra: 1466/1301,
  31435. bottom: 19/1485
  31436. },
  31437. form: "cat"
  31438. },
  31439. taur: {
  31440. height: math.unit(7, "feet"),
  31441. name: "Taur",
  31442. image: {
  31443. source: "./media/characters/cat/taur.svg",
  31444. extra: 1389/1233,
  31445. bottom: 83/1472
  31446. },
  31447. form: "taur",
  31448. default: true
  31449. },
  31450. lucarioFront: {
  31451. height: math.unit(4, "feet"),
  31452. name: "Lucario (Front)",
  31453. image: {
  31454. source: "./media/characters/cat/lucario-front.svg",
  31455. extra: 1149/1019,
  31456. bottom: 84/1233
  31457. },
  31458. form: "lucario",
  31459. default: true
  31460. },
  31461. lucarioBack: {
  31462. height: math.unit(4, "feet"),
  31463. name: "Lucario (Back)",
  31464. image: {
  31465. source: "./media/characters/cat/lucario-back.svg",
  31466. extra: 1190/1059,
  31467. bottom: 33/1223
  31468. },
  31469. form: "lucario"
  31470. },
  31471. megaLucario: {
  31472. height: math.unit(4, "feet"),
  31473. name: "Mega Lucario",
  31474. image: {
  31475. source: "./media/characters/cat/mega-lucario.svg",
  31476. extra: 1515 / 1319,
  31477. bottom: 63 / 1578
  31478. },
  31479. form: "lucario"
  31480. },
  31481. nickit: {
  31482. height: math.unit(2, "feet"),
  31483. name: "Nickit",
  31484. image: {
  31485. source: "./media/characters/cat/nickit.svg",
  31486. extra: 1980 / 1585,
  31487. bottom: 102 / 2082
  31488. },
  31489. form: "nickit",
  31490. default: true
  31491. },
  31492. lopunnyFront: {
  31493. height: math.unit(5, "feet"),
  31494. name: "Lopunny (Front)",
  31495. image: {
  31496. source: "./media/characters/cat/lopunny-front.svg",
  31497. extra: 1782 / 1469,
  31498. bottom: 38 / 1820
  31499. },
  31500. form: "lopunny",
  31501. default: true
  31502. },
  31503. lopunnyBack: {
  31504. height: math.unit(5, "feet"),
  31505. name: "Lopunny (Back)",
  31506. image: {
  31507. source: "./media/characters/cat/lopunny-back.svg",
  31508. extra: 1660 / 1490,
  31509. bottom: 25 / 1685
  31510. },
  31511. form: "lopunny"
  31512. },
  31513. },
  31514. [
  31515. {
  31516. name: "Really small",
  31517. height: math.unit(1, "nm"),
  31518. allForms: true
  31519. },
  31520. {
  31521. name: "Micro",
  31522. height: math.unit(5, "inches"),
  31523. allForms: true
  31524. },
  31525. {
  31526. name: "Normal",
  31527. height: math.unit(5 + 6 / 12, "feet"),
  31528. default: true,
  31529. form: "cat"
  31530. },
  31531. {
  31532. name: "Normal",
  31533. height: math.unit(7, "feet"),
  31534. default: true,
  31535. form: "taur"
  31536. },
  31537. {
  31538. name: "Normal",
  31539. height: math.unit(4, "feet"),
  31540. default: true,
  31541. form: "lucario"
  31542. },
  31543. {
  31544. name: "Normal",
  31545. height: math.unit(2, "feet"),
  31546. default: true,
  31547. form: "nickit"
  31548. },
  31549. {
  31550. name: "Normal",
  31551. height: math.unit(5, "feet"),
  31552. default: true,
  31553. form: "lopunny"
  31554. },
  31555. {
  31556. name: "Macro",
  31557. height: math.unit(50, "feet"),
  31558. allForms: true
  31559. },
  31560. {
  31561. name: "Macro+",
  31562. height: math.unit(150, "feet"),
  31563. allForms: true
  31564. },
  31565. {
  31566. name: "Megamacro",
  31567. height: math.unit(100, "miles"),
  31568. allForms: true
  31569. },
  31570. ],
  31571. {
  31572. "cat": {
  31573. name: "Cat",
  31574. default: true
  31575. },
  31576. "taur": {
  31577. name: "Taur",
  31578. },
  31579. "lucario": {
  31580. name: "Lucario",
  31581. },
  31582. "nickit": {
  31583. name: "Nickit",
  31584. },
  31585. "lopunny": {
  31586. name: "Lopunny",
  31587. }
  31588. }
  31589. ))
  31590. characterMakers.push(() => makeCharacter(
  31591. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31592. {
  31593. front: {
  31594. height: math.unit(63.4, "meters"),
  31595. weight: math.unit(3.28349e+6, "kilograms"),
  31596. name: "Front",
  31597. image: {
  31598. source: "./media/characters/kirina-violet/front.svg",
  31599. extra: 2812 / 2725,
  31600. bottom: 0 / 2812
  31601. }
  31602. },
  31603. back: {
  31604. height: math.unit(63.4, "meters"),
  31605. weight: math.unit(3.28349e+6, "kilograms"),
  31606. name: "Back",
  31607. image: {
  31608. source: "./media/characters/kirina-violet/back.svg",
  31609. extra: 2812 / 2725,
  31610. bottom: 0 / 2812
  31611. }
  31612. },
  31613. mouth: {
  31614. height: math.unit(4.35, "meters"),
  31615. name: "Mouth",
  31616. image: {
  31617. source: "./media/characters/kirina-violet/mouth.svg"
  31618. }
  31619. },
  31620. paw: {
  31621. height: math.unit(5.6, "meters"),
  31622. name: "Paw",
  31623. image: {
  31624. source: "./media/characters/kirina-violet/paw.svg"
  31625. }
  31626. },
  31627. tail: {
  31628. height: math.unit(18, "meters"),
  31629. name: "Tail",
  31630. image: {
  31631. source: "./media/characters/kirina-violet/tail.svg"
  31632. }
  31633. },
  31634. },
  31635. [
  31636. {
  31637. name: "Macro",
  31638. height: math.unit(63.4, "meters"),
  31639. default: true
  31640. },
  31641. ]
  31642. ))
  31643. characterMakers.push(() => makeCharacter(
  31644. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31645. {
  31646. front: {
  31647. height: math.unit(75, "feet"),
  31648. name: "Front",
  31649. image: {
  31650. source: "./media/characters/cat-gigachu/front.svg",
  31651. extra: 1239/1027,
  31652. bottom: 32/1271
  31653. }
  31654. },
  31655. back: {
  31656. height: math.unit(75, "feet"),
  31657. name: "Back",
  31658. image: {
  31659. source: "./media/characters/cat-gigachu/back.svg",
  31660. extra: 1229/1030,
  31661. bottom: 9/1238
  31662. }
  31663. },
  31664. },
  31665. [
  31666. {
  31667. name: "Dynamax",
  31668. height: math.unit(75, "feet"),
  31669. default: true
  31670. },
  31671. ]
  31672. ))
  31673. characterMakers.push(() => makeCharacter(
  31674. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31675. {
  31676. front: {
  31677. height: math.unit(6, "feet"),
  31678. weight: math.unit(150, "lb"),
  31679. name: "Front",
  31680. image: {
  31681. source: "./media/characters/sfaiyan/front.svg",
  31682. extra: 999 / 978,
  31683. bottom: 5 / 1004
  31684. }
  31685. },
  31686. },
  31687. [
  31688. {
  31689. name: "Normal",
  31690. height: math.unit(1.82, "meters")
  31691. },
  31692. {
  31693. name: "Giant",
  31694. height: math.unit(2.27, "km"),
  31695. default: true
  31696. },
  31697. ]
  31698. ))
  31699. characterMakers.push(() => makeCharacter(
  31700. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31701. {
  31702. front: {
  31703. height: math.unit(179, "cm"),
  31704. weight: math.unit(100, "kg"),
  31705. name: "Front",
  31706. image: {
  31707. source: "./media/characters/raunehkeli/front.svg",
  31708. extra: 1934 / 1926,
  31709. bottom: 0 / 1934
  31710. }
  31711. },
  31712. },
  31713. [
  31714. {
  31715. name: "Normal",
  31716. height: math.unit(179, "cm")
  31717. },
  31718. {
  31719. name: "Maximum",
  31720. height: math.unit(575, "meters"),
  31721. default: true
  31722. },
  31723. ]
  31724. ))
  31725. characterMakers.push(() => makeCharacter(
  31726. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31727. {
  31728. front: {
  31729. height: math.unit(6, "feet"),
  31730. weight: math.unit(150, "lb"),
  31731. name: "Front",
  31732. image: {
  31733. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31734. extra: 2625 / 2518,
  31735. bottom: 60 / 2685
  31736. }
  31737. },
  31738. },
  31739. [
  31740. {
  31741. name: "Normal",
  31742. height: math.unit(6 + 2 / 12, "feet")
  31743. },
  31744. {
  31745. name: "Macro",
  31746. height: math.unit(1180, "feet"),
  31747. default: true
  31748. },
  31749. ]
  31750. ))
  31751. characterMakers.push(() => makeCharacter(
  31752. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31753. {
  31754. front: {
  31755. height: math.unit(5 + 6 / 12, "feet"),
  31756. weight: math.unit(108, "lb"),
  31757. name: "Front",
  31758. image: {
  31759. source: "./media/characters/lilith-zott/front.svg",
  31760. extra: 2510 / 2238,
  31761. bottom: 100 / 2610
  31762. }
  31763. },
  31764. frontDressed: {
  31765. height: math.unit(5 + 6 / 12, "feet"),
  31766. weight: math.unit(108, "lb"),
  31767. name: "Front (Dressed)",
  31768. image: {
  31769. source: "./media/characters/lilith-zott/front-dressed.svg",
  31770. extra: 2510 / 2238,
  31771. bottom: 100 / 2610
  31772. }
  31773. },
  31774. },
  31775. [
  31776. {
  31777. name: "Normal",
  31778. height: math.unit(5 + 6 / 12, "feet")
  31779. },
  31780. {
  31781. name: "Macro",
  31782. height: math.unit(1030, "feet"),
  31783. default: true
  31784. },
  31785. ]
  31786. ))
  31787. characterMakers.push(() => makeCharacter(
  31788. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31789. {
  31790. front: {
  31791. height: math.unit(6, "feet"),
  31792. weight: math.unit(150, "lb"),
  31793. name: "Front",
  31794. image: {
  31795. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31796. extra: 2567 / 2435,
  31797. bottom: 39 / 2606
  31798. }
  31799. },
  31800. frontSuper: {
  31801. height: math.unit(6, "feet"),
  31802. name: "Front (Super)",
  31803. image: {
  31804. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31805. extra: 2567 / 2435,
  31806. bottom: 39 / 2606
  31807. }
  31808. },
  31809. },
  31810. [
  31811. {
  31812. name: "Normal",
  31813. height: math.unit(5 + 10 / 12, "feet")
  31814. },
  31815. {
  31816. name: "Macro",
  31817. height: math.unit(1100, "feet"),
  31818. default: true
  31819. },
  31820. ]
  31821. ))
  31822. characterMakers.push(() => makeCharacter(
  31823. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31824. {
  31825. front: {
  31826. height: math.unit(100, "miles"),
  31827. name: "Front",
  31828. image: {
  31829. source: "./media/characters/sona/front.svg",
  31830. extra: 2433 / 2201,
  31831. bottom: 53 / 2486
  31832. }
  31833. },
  31834. foot: {
  31835. height: math.unit(16.1, "miles"),
  31836. name: "Foot",
  31837. image: {
  31838. source: "./media/characters/sona/foot.svg"
  31839. }
  31840. },
  31841. },
  31842. [
  31843. {
  31844. name: "Macro",
  31845. height: math.unit(100, "miles"),
  31846. default: true
  31847. },
  31848. ]
  31849. ))
  31850. characterMakers.push(() => makeCharacter(
  31851. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31852. {
  31853. front: {
  31854. height: math.unit(6, "feet"),
  31855. weight: math.unit(150, "lb"),
  31856. name: "Front",
  31857. image: {
  31858. source: "./media/characters/bailey/front.svg",
  31859. extra: 1778 / 1724,
  31860. bottom: 30 / 1808
  31861. }
  31862. },
  31863. },
  31864. [
  31865. {
  31866. name: "Micro",
  31867. height: math.unit(4, "inches")
  31868. },
  31869. {
  31870. name: "Normal",
  31871. height: math.unit(5 + 5 / 12, "feet"),
  31872. default: true
  31873. },
  31874. {
  31875. name: "Macro",
  31876. height: math.unit(250, "feet")
  31877. },
  31878. {
  31879. name: "Megamacro",
  31880. height: math.unit(100, "miles")
  31881. },
  31882. ]
  31883. ))
  31884. characterMakers.push(() => makeCharacter(
  31885. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31886. {
  31887. front: {
  31888. height: math.unit(5 + 2 / 12, "feet"),
  31889. weight: math.unit(120, "lb"),
  31890. name: "Front",
  31891. image: {
  31892. source: "./media/characters/snaps/front.svg",
  31893. extra: 2370 / 2177,
  31894. bottom: 48 / 2418
  31895. }
  31896. },
  31897. back: {
  31898. height: math.unit(5 + 2 / 12, "feet"),
  31899. weight: math.unit(120, "lb"),
  31900. name: "Back",
  31901. image: {
  31902. source: "./media/characters/snaps/back.svg",
  31903. extra: 2408 / 2258,
  31904. bottom: 15 / 2423
  31905. }
  31906. },
  31907. },
  31908. [
  31909. {
  31910. name: "Micro",
  31911. height: math.unit(9, "inches")
  31912. },
  31913. {
  31914. name: "Normal",
  31915. height: math.unit(5 + 2 / 12, "feet"),
  31916. default: true
  31917. },
  31918. {
  31919. name: "Mini Macro",
  31920. height: math.unit(10, "feet")
  31921. },
  31922. ]
  31923. ))
  31924. characterMakers.push(() => makeCharacter(
  31925. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31926. {
  31927. front: {
  31928. height: math.unit(1.8, "meters"),
  31929. weight: math.unit(85, "kg"),
  31930. name: "Front",
  31931. image: {
  31932. source: "./media/characters/azteck/front.svg",
  31933. extra: 2815 / 2625,
  31934. bottom: 89 / 2904
  31935. }
  31936. },
  31937. back: {
  31938. height: math.unit(1.8, "meters"),
  31939. weight: math.unit(85, "kg"),
  31940. name: "Back",
  31941. image: {
  31942. source: "./media/characters/azteck/back.svg",
  31943. extra: 2856 / 2648,
  31944. bottom: 85 / 2941
  31945. }
  31946. },
  31947. frontDressed: {
  31948. height: math.unit(1.8, "meters"),
  31949. weight: math.unit(85, "kg"),
  31950. name: "Front (Dressed)",
  31951. image: {
  31952. source: "./media/characters/azteck/front-dressed.svg",
  31953. extra: 2147 / 2003,
  31954. bottom: 68 / 2215
  31955. }
  31956. },
  31957. head: {
  31958. height: math.unit(0.47, "meters"),
  31959. weight: math.unit(85, "kg"),
  31960. name: "Head",
  31961. image: {
  31962. source: "./media/characters/azteck/head.svg"
  31963. }
  31964. },
  31965. },
  31966. [
  31967. {
  31968. name: "Bite sized",
  31969. height: math.unit(16, "cm")
  31970. },
  31971. {
  31972. name: "Normal",
  31973. height: math.unit(1.8, "meters"),
  31974. default: true
  31975. },
  31976. ]
  31977. ))
  31978. characterMakers.push(() => makeCharacter(
  31979. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31980. {
  31981. front: {
  31982. height: math.unit(6, "feet"),
  31983. weight: math.unit(150, "lb"),
  31984. name: "Front",
  31985. image: {
  31986. source: "./media/characters/pidge/front.svg",
  31987. extra: 1936/1820,
  31988. bottom: 0/1936
  31989. }
  31990. },
  31991. back: {
  31992. height: math.unit(6, "feet"),
  31993. weight: math.unit(150, "lb"),
  31994. name: "Back",
  31995. image: {
  31996. source: "./media/characters/pidge/back.svg",
  31997. extra: 1938/1843,
  31998. bottom: 0/1938
  31999. }
  32000. },
  32001. casual: {
  32002. height: math.unit(6, "feet"),
  32003. weight: math.unit(150, "lb"),
  32004. name: "Casual",
  32005. image: {
  32006. source: "./media/characters/pidge/casual.svg",
  32007. extra: 1936/1820,
  32008. bottom: 0/1936
  32009. }
  32010. },
  32011. tech: {
  32012. height: math.unit(6, "feet"),
  32013. weight: math.unit(150, "lb"),
  32014. name: "Tech",
  32015. image: {
  32016. source: "./media/characters/pidge/tech.svg",
  32017. extra: 1802/1682,
  32018. bottom: 0/1802
  32019. }
  32020. },
  32021. head: {
  32022. height: math.unit(1.61, "feet"),
  32023. name: "Head",
  32024. image: {
  32025. source: "./media/characters/pidge/head.svg"
  32026. }
  32027. },
  32028. collar: {
  32029. height: math.unit(0.82, "feet"),
  32030. name: "Collar",
  32031. image: {
  32032. source: "./media/characters/pidge/collar.svg"
  32033. }
  32034. },
  32035. },
  32036. [
  32037. {
  32038. name: "Macro",
  32039. height: math.unit(2, "mile"),
  32040. default: true
  32041. },
  32042. {
  32043. name: "PUPPY",
  32044. height: math.unit(20, "miles")
  32045. },
  32046. ]
  32047. ))
  32048. characterMakers.push(() => makeCharacter(
  32049. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32050. {
  32051. front: {
  32052. height: math.unit(6, "feet"),
  32053. weight: math.unit(150, "lb"),
  32054. name: "Front",
  32055. image: {
  32056. source: "./media/characters/en/front.svg",
  32057. extra: 1697 / 1563,
  32058. bottom: 103 / 1800
  32059. }
  32060. },
  32061. back: {
  32062. height: math.unit(6, "feet"),
  32063. weight: math.unit(150, "lb"),
  32064. name: "Back",
  32065. image: {
  32066. source: "./media/characters/en/back.svg",
  32067. extra: 1700 / 1570,
  32068. bottom: 51 / 1751
  32069. }
  32070. },
  32071. frontDressed: {
  32072. height: math.unit(6, "feet"),
  32073. weight: math.unit(150, "lb"),
  32074. name: "Front (Dressed)",
  32075. image: {
  32076. source: "./media/characters/en/front-dressed.svg",
  32077. extra: 1697 / 1563,
  32078. bottom: 103 / 1800
  32079. }
  32080. },
  32081. backDressed: {
  32082. height: math.unit(6, "feet"),
  32083. weight: math.unit(150, "lb"),
  32084. name: "Back (Dressed)",
  32085. image: {
  32086. source: "./media/characters/en/back-dressed.svg",
  32087. extra: 1700 / 1570,
  32088. bottom: 51 / 1751
  32089. }
  32090. },
  32091. },
  32092. [
  32093. {
  32094. name: "Macro",
  32095. height: math.unit(210, "feet"),
  32096. default: true
  32097. },
  32098. ]
  32099. ))
  32100. characterMakers.push(() => makeCharacter(
  32101. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32102. {
  32103. front: {
  32104. height: math.unit(6, "feet"),
  32105. weight: math.unit(150, "lb"),
  32106. name: "Front",
  32107. image: {
  32108. source: "./media/characters/haze-orris/front.svg",
  32109. extra: 3975 / 3525,
  32110. bottom: 137 / 4112
  32111. }
  32112. },
  32113. },
  32114. [
  32115. {
  32116. name: "Micro",
  32117. height: math.unit(150, "mm"),
  32118. default: true
  32119. },
  32120. ]
  32121. ))
  32122. characterMakers.push(() => makeCharacter(
  32123. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32124. {
  32125. front: {
  32126. height: math.unit(6, "feet"),
  32127. weight: math.unit(150, "lb"),
  32128. name: "Front",
  32129. image: {
  32130. source: "./media/characters/casselene-yaro/front.svg",
  32131. extra: 4721 / 4541,
  32132. bottom: 82 / 4803
  32133. }
  32134. },
  32135. back: {
  32136. height: math.unit(6, "feet"),
  32137. weight: math.unit(150, "lb"),
  32138. name: "Back",
  32139. image: {
  32140. source: "./media/characters/casselene-yaro/back.svg",
  32141. extra: 4569 / 4377,
  32142. bottom: 69 / 4638
  32143. }
  32144. },
  32145. dressed: {
  32146. height: math.unit(6, "feet"),
  32147. weight: math.unit(150, "lb"),
  32148. name: "Dressed",
  32149. image: {
  32150. source: "./media/characters/casselene-yaro/dressed.svg",
  32151. extra: 4721 / 4541,
  32152. bottom: 82 / 4803
  32153. }
  32154. },
  32155. maw: {
  32156. height: math.unit(1, "feet"),
  32157. name: "Maw",
  32158. image: {
  32159. source: "./media/characters/casselene-yaro/maw.svg"
  32160. }
  32161. },
  32162. },
  32163. [
  32164. {
  32165. name: "Macro",
  32166. height: math.unit(190, "feet"),
  32167. default: true
  32168. },
  32169. ]
  32170. ))
  32171. characterMakers.push(() => makeCharacter(
  32172. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32173. {
  32174. front: {
  32175. height: math.unit(10, "feet"),
  32176. weight: math.unit(15015, "lb"),
  32177. name: "Front",
  32178. image: {
  32179. source: "./media/characters/platine/front.svg",
  32180. extra: 1741/1650,
  32181. bottom: 84/1825
  32182. }
  32183. },
  32184. side: {
  32185. height: math.unit(10, "feet"),
  32186. weight: math.unit(15015, "lb"),
  32187. name: "Side",
  32188. image: {
  32189. source: "./media/characters/platine/side.svg",
  32190. extra: 1790/1705,
  32191. bottom: 29/1819
  32192. }
  32193. },
  32194. },
  32195. [
  32196. {
  32197. name: "Normal",
  32198. height: math.unit(10, "feet"),
  32199. default: true
  32200. },
  32201. {
  32202. name: "Macro",
  32203. height: math.unit(100, "feet")
  32204. },
  32205. {
  32206. name: "Megamacro",
  32207. height: math.unit(1000, "feet")
  32208. },
  32209. ]
  32210. ))
  32211. characterMakers.push(() => makeCharacter(
  32212. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32213. {
  32214. front: {
  32215. height: math.unit(15 + 5 / 12, "feet"),
  32216. weight: math.unit(4600, "lb"),
  32217. name: "Front",
  32218. image: {
  32219. source: "./media/characters/neapolitan-ananassa/front.svg",
  32220. extra: 2903 / 2736,
  32221. bottom: 0 / 2903
  32222. }
  32223. },
  32224. side: {
  32225. height: math.unit(15 + 5 / 12, "feet"),
  32226. weight: math.unit(4600, "lb"),
  32227. name: "Side",
  32228. image: {
  32229. source: "./media/characters/neapolitan-ananassa/side.svg",
  32230. extra: 2925 / 2719,
  32231. bottom: 0 / 2925
  32232. }
  32233. },
  32234. back: {
  32235. height: math.unit(15 + 5 / 12, "feet"),
  32236. weight: math.unit(4600, "lb"),
  32237. name: "Back",
  32238. image: {
  32239. source: "./media/characters/neapolitan-ananassa/back.svg",
  32240. extra: 2903 / 2736,
  32241. bottom: 0 / 2903
  32242. }
  32243. },
  32244. },
  32245. [
  32246. {
  32247. name: "Normal",
  32248. height: math.unit(15 + 5 / 12, "feet"),
  32249. default: true
  32250. },
  32251. {
  32252. name: "Post-Millenium",
  32253. height: math.unit(35 + 5 / 12, "feet")
  32254. },
  32255. {
  32256. name: "Post-Era",
  32257. height: math.unit(450 + 5 / 12, "feet")
  32258. },
  32259. ]
  32260. ))
  32261. characterMakers.push(() => makeCharacter(
  32262. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32263. {
  32264. front: {
  32265. height: math.unit(300, "meters"),
  32266. weight: math.unit(125000, "tonnes"),
  32267. name: "Front",
  32268. image: {
  32269. source: "./media/characters/pazuzu/front.svg",
  32270. extra: 877 / 794,
  32271. bottom: 47 / 924
  32272. }
  32273. },
  32274. },
  32275. [
  32276. {
  32277. name: "Macro",
  32278. height: math.unit(300, "meters"),
  32279. default: true
  32280. },
  32281. ]
  32282. ))
  32283. characterMakers.push(() => makeCharacter(
  32284. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32285. {
  32286. side: {
  32287. height: math.unit(10 + 7 / 12, "feet"),
  32288. weight: math.unit(2.5, "tons"),
  32289. name: "Side",
  32290. image: {
  32291. source: "./media/characters/aasha/side.svg",
  32292. extra: 1345 / 1245,
  32293. bottom: 111 / 1456
  32294. }
  32295. },
  32296. back: {
  32297. height: math.unit(10 + 7 / 12, "feet"),
  32298. weight: math.unit(2.5, "tons"),
  32299. name: "Back",
  32300. image: {
  32301. source: "./media/characters/aasha/back.svg",
  32302. extra: 1133 / 1057,
  32303. bottom: 257 / 1390
  32304. }
  32305. },
  32306. },
  32307. [
  32308. {
  32309. name: "Normal",
  32310. height: math.unit(10 + 7 / 12, "feet"),
  32311. default: true
  32312. },
  32313. ]
  32314. ))
  32315. characterMakers.push(() => makeCharacter(
  32316. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32317. {
  32318. front: {
  32319. height: math.unit(6 + 3 / 12, "feet"),
  32320. name: "Front",
  32321. image: {
  32322. source: "./media/characters/nevan/front.svg",
  32323. extra: 704 / 704,
  32324. bottom: 28 / 732
  32325. }
  32326. },
  32327. back: {
  32328. height: math.unit(6 + 3 / 12, "feet"),
  32329. name: "Back",
  32330. image: {
  32331. source: "./media/characters/nevan/back.svg",
  32332. extra: 714 / 714,
  32333. bottom: 21 / 735
  32334. }
  32335. },
  32336. frontFlaccid: {
  32337. height: math.unit(6 + 3 / 12, "feet"),
  32338. name: "Front (Flaccid)",
  32339. image: {
  32340. source: "./media/characters/nevan/front-flaccid.svg",
  32341. extra: 704 / 704,
  32342. bottom: 28 / 732
  32343. }
  32344. },
  32345. frontErect: {
  32346. height: math.unit(6 + 3 / 12, "feet"),
  32347. name: "Front (Erect)",
  32348. image: {
  32349. source: "./media/characters/nevan/front-erect.svg",
  32350. extra: 704 / 704,
  32351. bottom: 28 / 732
  32352. }
  32353. },
  32354. backFlaccid: {
  32355. height: math.unit(6 + 3 / 12, "feet"),
  32356. name: "Back (Flaccid)",
  32357. image: {
  32358. source: "./media/characters/nevan/back-flaccid.svg",
  32359. extra: 714 / 714,
  32360. bottom: 21 / 735
  32361. }
  32362. },
  32363. },
  32364. [
  32365. {
  32366. name: "Normal",
  32367. height: math.unit(6 + 3 / 12, "feet"),
  32368. default: true
  32369. },
  32370. ]
  32371. ))
  32372. characterMakers.push(() => makeCharacter(
  32373. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32374. {
  32375. front: {
  32376. height: math.unit(4, "feet"),
  32377. name: "Front",
  32378. image: {
  32379. source: "./media/characters/arhan/front.svg",
  32380. extra: 3368 / 3133,
  32381. bottom: 0 / 3368
  32382. }
  32383. },
  32384. side: {
  32385. height: math.unit(4, "feet"),
  32386. name: "Side",
  32387. image: {
  32388. source: "./media/characters/arhan/side.svg",
  32389. extra: 3347 / 3105,
  32390. bottom: 0 / 3347
  32391. }
  32392. },
  32393. tongue: {
  32394. height: math.unit(1.42, "feet"),
  32395. name: "Tongue",
  32396. image: {
  32397. source: "./media/characters/arhan/tongue.svg"
  32398. }
  32399. },
  32400. head: {
  32401. height: math.unit(0.85, "feet"),
  32402. name: "Head",
  32403. image: {
  32404. source: "./media/characters/arhan/head.svg"
  32405. }
  32406. },
  32407. },
  32408. [
  32409. {
  32410. name: "Normal",
  32411. height: math.unit(4, "feet"),
  32412. default: true
  32413. },
  32414. ]
  32415. ))
  32416. characterMakers.push(() => makeCharacter(
  32417. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32418. {
  32419. front: {
  32420. height: math.unit(5 + 7.5 / 12, "feet"),
  32421. weight: math.unit(120, "lb"),
  32422. name: "Front",
  32423. image: {
  32424. source: "./media/characters/digi-duncan/front.svg",
  32425. extra: 330 / 326,
  32426. bottom: 16 / 346
  32427. }
  32428. },
  32429. side: {
  32430. height: math.unit(5 + 7.5 / 12, "feet"),
  32431. weight: math.unit(120, "lb"),
  32432. name: "Side",
  32433. image: {
  32434. source: "./media/characters/digi-duncan/side.svg",
  32435. extra: 341 / 337,
  32436. bottom: 1 / 342
  32437. }
  32438. },
  32439. back: {
  32440. height: math.unit(5 + 7.5 / 12, "feet"),
  32441. weight: math.unit(120, "lb"),
  32442. name: "Back",
  32443. image: {
  32444. source: "./media/characters/digi-duncan/back.svg",
  32445. extra: 330 / 326,
  32446. bottom: 12 / 342
  32447. }
  32448. },
  32449. },
  32450. [
  32451. {
  32452. name: "Speck",
  32453. height: math.unit(0.25, "mm")
  32454. },
  32455. {
  32456. name: "Micro",
  32457. height: math.unit(5, "mm")
  32458. },
  32459. {
  32460. name: "Tiny",
  32461. height: math.unit(0.5, "inches"),
  32462. default: true
  32463. },
  32464. {
  32465. name: "Human",
  32466. height: math.unit(5 + 7.5 / 12, "feet")
  32467. },
  32468. {
  32469. name: "Minigiant",
  32470. height: math.unit(8 + 5.25, "feet")
  32471. },
  32472. {
  32473. name: "Giant",
  32474. height: math.unit(2000, "feet")
  32475. },
  32476. {
  32477. name: "Mega",
  32478. height: math.unit(371.1, "miles")
  32479. },
  32480. ]
  32481. ))
  32482. characterMakers.push(() => makeCharacter(
  32483. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32484. {
  32485. front: {
  32486. height: math.unit(2, "meters"),
  32487. weight: math.unit(350, "kg"),
  32488. name: "Front",
  32489. image: {
  32490. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32491. extra: 898 / 838,
  32492. bottom: 9 / 907
  32493. }
  32494. },
  32495. },
  32496. [
  32497. {
  32498. name: "Micro",
  32499. height: math.unit(8, "meters")
  32500. },
  32501. {
  32502. name: "Normal",
  32503. height: math.unit(50, "meters"),
  32504. default: true
  32505. },
  32506. {
  32507. name: "Macro",
  32508. height: math.unit(500, "meters")
  32509. },
  32510. ]
  32511. ))
  32512. characterMakers.push(() => makeCharacter(
  32513. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32514. {
  32515. front: {
  32516. height: math.unit(6 + 6 / 12, "feet"),
  32517. name: "Front",
  32518. image: {
  32519. source: "./media/characters/khardesh/front.svg",
  32520. extra: 1788/1596,
  32521. bottom: 66/1854
  32522. }
  32523. },
  32524. back: {
  32525. height: math.unit(6 + 6 / 12, "feet"),
  32526. name: "Back",
  32527. image: {
  32528. source: "./media/characters/khardesh/back.svg",
  32529. extra: 1781/1584,
  32530. bottom: 68/1849
  32531. }
  32532. },
  32533. },
  32534. [
  32535. {
  32536. name: "Normal",
  32537. height: math.unit(6 + 6 / 12, "feet"),
  32538. default: true
  32539. },
  32540. {
  32541. name: "Normal+",
  32542. height: math.unit(4, "meters")
  32543. },
  32544. {
  32545. name: "Macro",
  32546. height: math.unit(50, "meters")
  32547. },
  32548. {
  32549. name: "Macro+",
  32550. height: math.unit(100, "meters")
  32551. },
  32552. {
  32553. name: "Megamacro",
  32554. height: math.unit(20, "km")
  32555. },
  32556. ]
  32557. ))
  32558. characterMakers.push(() => makeCharacter(
  32559. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32560. {
  32561. front: {
  32562. height: math.unit(6, "feet"),
  32563. weight: math.unit(150, "lb"),
  32564. name: "Front",
  32565. image: {
  32566. source: "./media/characters/kosho/front.svg",
  32567. extra: 1847 / 1847,
  32568. bottom: 86 / 1933
  32569. }
  32570. },
  32571. },
  32572. [
  32573. {
  32574. name: "Second-stage micro",
  32575. height: math.unit(0.5, "inches")
  32576. },
  32577. {
  32578. name: "First-stage micro",
  32579. height: math.unit(6, "inches")
  32580. },
  32581. {
  32582. name: "Normal",
  32583. height: math.unit(6, "feet"),
  32584. default: true
  32585. },
  32586. {
  32587. name: "First-stage macro",
  32588. height: math.unit(72, "feet")
  32589. },
  32590. {
  32591. name: "Second-stage macro",
  32592. height: math.unit(864, "feet")
  32593. },
  32594. ]
  32595. ))
  32596. characterMakers.push(() => makeCharacter(
  32597. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32598. {
  32599. normal: {
  32600. height: math.unit(4 + 6 / 12, "feet"),
  32601. name: "Normal",
  32602. image: {
  32603. source: "./media/characters/hydra/normal.svg",
  32604. extra: 2833 / 2634,
  32605. bottom: 68 / 2901
  32606. }
  32607. },
  32608. smol: {
  32609. height: math.unit(0.705, "inches"),
  32610. name: "Smol",
  32611. image: {
  32612. source: "./media/characters/hydra/smol.svg",
  32613. extra: 2715 / 2540,
  32614. bottom: 0 / 2715
  32615. }
  32616. },
  32617. },
  32618. [
  32619. {
  32620. name: "Normal",
  32621. height: math.unit(4 + 6 / 12, "feet"),
  32622. default: true
  32623. }
  32624. ]
  32625. ))
  32626. characterMakers.push(() => makeCharacter(
  32627. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32628. {
  32629. front: {
  32630. height: math.unit(0.6, "cm"),
  32631. name: "Front",
  32632. image: {
  32633. source: "./media/characters/daz/front.svg",
  32634. extra: 1682 / 1164,
  32635. bottom: 42 / 1724
  32636. }
  32637. },
  32638. },
  32639. [
  32640. {
  32641. name: "Normal",
  32642. height: math.unit(0.6, "cm"),
  32643. default: true
  32644. },
  32645. ]
  32646. ))
  32647. characterMakers.push(() => makeCharacter(
  32648. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32649. {
  32650. front: {
  32651. height: math.unit(6, "feet"),
  32652. weight: math.unit(235, "lb"),
  32653. name: "Front",
  32654. image: {
  32655. source: "./media/characters/theo-pangolin/front.svg",
  32656. extra: 1996 / 1969,
  32657. bottom: 115 / 2111
  32658. }
  32659. },
  32660. back: {
  32661. height: math.unit(6, "feet"),
  32662. weight: math.unit(235, "lb"),
  32663. name: "Back",
  32664. image: {
  32665. source: "./media/characters/theo-pangolin/back.svg",
  32666. extra: 1979 / 1979,
  32667. bottom: 40 / 2019
  32668. }
  32669. },
  32670. feral: {
  32671. height: math.unit(2, "feet"),
  32672. weight: math.unit(30, "lb"),
  32673. name: "Feral",
  32674. image: {
  32675. source: "./media/characters/theo-pangolin/feral.svg",
  32676. extra: 803 / 791,
  32677. bottom: 181 / 984
  32678. }
  32679. },
  32680. footFive: {
  32681. height: math.unit(1.43, "feet"),
  32682. name: "Foot (Five Toes)",
  32683. image: {
  32684. source: "./media/characters/theo-pangolin/foot-five.svg"
  32685. }
  32686. },
  32687. footFour: {
  32688. height: math.unit(1.43, "feet"),
  32689. name: "Foot (Four Toes)",
  32690. image: {
  32691. source: "./media/characters/theo-pangolin/foot-four.svg"
  32692. }
  32693. },
  32694. handFour: {
  32695. height: math.unit(0.81, "feet"),
  32696. name: "Hand (Four Fingers)",
  32697. image: {
  32698. source: "./media/characters/theo-pangolin/hand-four.svg"
  32699. }
  32700. },
  32701. handThree: {
  32702. height: math.unit(0.81, "feet"),
  32703. name: "Hand (Three Fingers)",
  32704. image: {
  32705. source: "./media/characters/theo-pangolin/hand-three.svg"
  32706. }
  32707. },
  32708. headFront: {
  32709. height: math.unit(1.37, "feet"),
  32710. name: "Head (Front)",
  32711. image: {
  32712. source: "./media/characters/theo-pangolin/head-front.svg"
  32713. }
  32714. },
  32715. headSide: {
  32716. height: math.unit(1.43, "feet"),
  32717. name: "Head (Side)",
  32718. image: {
  32719. source: "./media/characters/theo-pangolin/head-side.svg"
  32720. }
  32721. },
  32722. tongue: {
  32723. height: math.unit(2.29, "feet"),
  32724. name: "Tongue",
  32725. image: {
  32726. source: "./media/characters/theo-pangolin/tongue.svg"
  32727. }
  32728. },
  32729. },
  32730. [
  32731. {
  32732. name: "Normal",
  32733. height: math.unit(6, "feet")
  32734. },
  32735. {
  32736. name: "Macro",
  32737. height: math.unit(400, "feet"),
  32738. default: true
  32739. },
  32740. ]
  32741. ))
  32742. characterMakers.push(() => makeCharacter(
  32743. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32744. {
  32745. front: {
  32746. height: math.unit(6, "inches"),
  32747. weight: math.unit(0.036, "kg"),
  32748. name: "Front",
  32749. image: {
  32750. source: "./media/characters/renée/front.svg",
  32751. extra: 900 / 886,
  32752. bottom: 8 / 908
  32753. }
  32754. },
  32755. },
  32756. [
  32757. {
  32758. name: "Nano",
  32759. height: math.unit(1, "nm")
  32760. },
  32761. {
  32762. name: "Micro",
  32763. height: math.unit(1, "mm")
  32764. },
  32765. {
  32766. name: "Normal",
  32767. height: math.unit(6, "inches")
  32768. },
  32769. {
  32770. name: "Macro",
  32771. height: math.unit(2000, "feet"),
  32772. default: true
  32773. },
  32774. {
  32775. name: "Megamacro",
  32776. height: math.unit(2, "km")
  32777. },
  32778. {
  32779. name: "Gigamacro",
  32780. height: math.unit(2000, "km")
  32781. },
  32782. {
  32783. name: "Teramacro",
  32784. height: math.unit(250000, "km")
  32785. },
  32786. ]
  32787. ))
  32788. characterMakers.push(() => makeCharacter(
  32789. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32790. {
  32791. front: {
  32792. height: math.unit(4, "meters"),
  32793. weight: math.unit(150, "kg"),
  32794. name: "Front",
  32795. image: {
  32796. source: "./media/characters/caledvwlch/front.svg",
  32797. extra: 1757/1537,
  32798. bottom: 31/1788
  32799. }
  32800. },
  32801. side: {
  32802. height: math.unit(4, "meters"),
  32803. weight: math.unit(150, "kg"),
  32804. name: "Side",
  32805. image: {
  32806. source: "./media/characters/caledvwlch/side.svg",
  32807. extra: 1605 / 1536,
  32808. bottom: 31 / 1636
  32809. }
  32810. },
  32811. back: {
  32812. height: math.unit(4, "meters"),
  32813. weight: math.unit(150, "kg"),
  32814. name: "Back",
  32815. image: {
  32816. source: "./media/characters/caledvwlch/back.svg",
  32817. extra: 1635 / 1565,
  32818. bottom: 27 / 1662
  32819. }
  32820. },
  32821. },
  32822. [
  32823. {
  32824. name: "\"Incognito\"",
  32825. height: math.unit(4, "meters")
  32826. },
  32827. {
  32828. name: "Small rampage",
  32829. height: math.unit(600, "meters")
  32830. },
  32831. {
  32832. name: "Mega",
  32833. height: math.unit(30, "km")
  32834. },
  32835. {
  32836. name: "Home-size",
  32837. height: math.unit(50, "km"),
  32838. default: true
  32839. },
  32840. {
  32841. name: "Giga",
  32842. height: math.unit(300, "km")
  32843. },
  32844. {
  32845. name: "Lounging",
  32846. height: math.unit(11000, "km")
  32847. },
  32848. {
  32849. name: "Planet snacking",
  32850. height: math.unit(2000000, "km")
  32851. },
  32852. ]
  32853. ))
  32854. characterMakers.push(() => makeCharacter(
  32855. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32856. {
  32857. front: {
  32858. height: math.unit(6, "feet"),
  32859. weight: math.unit(215, "lb"),
  32860. name: "Front",
  32861. image: {
  32862. source: "./media/characters/sapphire-svell/front.svg",
  32863. extra: 495 / 455,
  32864. bottom: 20 / 515
  32865. }
  32866. },
  32867. back: {
  32868. height: math.unit(6, "feet"),
  32869. weight: math.unit(216, "lb"),
  32870. name: "Back",
  32871. image: {
  32872. source: "./media/characters/sapphire-svell/back.svg",
  32873. extra: 497 / 477,
  32874. bottom: 7 / 504
  32875. }
  32876. },
  32877. maw: {
  32878. height: math.unit(1.57, "feet"),
  32879. name: "Maw",
  32880. image: {
  32881. source: "./media/characters/sapphire-svell/maw.svg"
  32882. }
  32883. },
  32884. foot: {
  32885. height: math.unit(1.07, "feet"),
  32886. name: "Foot",
  32887. image: {
  32888. source: "./media/characters/sapphire-svell/foot.svg"
  32889. }
  32890. },
  32891. toering: {
  32892. height: math.unit(1.7, "inch"),
  32893. name: "Toering",
  32894. image: {
  32895. source: "./media/characters/sapphire-svell/toering.svg"
  32896. }
  32897. },
  32898. },
  32899. [
  32900. {
  32901. name: "Normal",
  32902. height: math.unit(300, "feet"),
  32903. default: true
  32904. },
  32905. {
  32906. name: "Augmented",
  32907. height: math.unit(1250, "feet")
  32908. },
  32909. {
  32910. name: "Unleashed",
  32911. height: math.unit(3000, "feet")
  32912. },
  32913. ]
  32914. ))
  32915. characterMakers.push(() => makeCharacter(
  32916. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32917. {
  32918. side: {
  32919. height: math.unit(2 + 3 / 12, "feet"),
  32920. weight: math.unit(110, "lb"),
  32921. name: "Side",
  32922. image: {
  32923. source: "./media/characters/glitch-flux/side.svg",
  32924. extra: 997 / 805,
  32925. bottom: 20 / 1017
  32926. }
  32927. },
  32928. },
  32929. [
  32930. {
  32931. name: "Normal",
  32932. height: math.unit(2 + 3 / 12, "feet"),
  32933. default: true
  32934. },
  32935. ]
  32936. ))
  32937. characterMakers.push(() => makeCharacter(
  32938. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32939. {
  32940. front: {
  32941. height: math.unit(4, "meters"),
  32942. name: "Front",
  32943. image: {
  32944. source: "./media/characters/mid/front.svg",
  32945. extra: 507 / 476,
  32946. bottom: 17 / 524
  32947. }
  32948. },
  32949. back: {
  32950. height: math.unit(4, "meters"),
  32951. name: "Back",
  32952. image: {
  32953. source: "./media/characters/mid/back.svg",
  32954. extra: 519 / 487,
  32955. bottom: 7 / 526
  32956. }
  32957. },
  32958. stuck: {
  32959. height: math.unit(2.2, "meters"),
  32960. name: "Stuck",
  32961. image: {
  32962. source: "./media/characters/mid/stuck.svg",
  32963. extra: 1951 / 1869,
  32964. bottom: 88 / 2039
  32965. }
  32966. }
  32967. },
  32968. [
  32969. {
  32970. name: "Normal",
  32971. height: math.unit(4, "meters"),
  32972. default: true
  32973. },
  32974. {
  32975. name: "Big",
  32976. height: math.unit(10, "meters")
  32977. },
  32978. {
  32979. name: "Macro",
  32980. height: math.unit(800, "meters")
  32981. },
  32982. {
  32983. name: "Megamacro",
  32984. height: math.unit(100, "km")
  32985. },
  32986. {
  32987. name: "Overgrown",
  32988. height: math.unit(1, "parsec")
  32989. },
  32990. ]
  32991. ))
  32992. characterMakers.push(() => makeCharacter(
  32993. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32994. {
  32995. front: {
  32996. height: math.unit(2.5, "meters"),
  32997. weight: math.unit(225, "kg"),
  32998. name: "Front",
  32999. image: {
  33000. source: "./media/characters/iris/front.svg",
  33001. extra: 3348 / 3251,
  33002. bottom: 205 / 3553
  33003. }
  33004. },
  33005. maw: {
  33006. height: math.unit(0.56, "meter"),
  33007. name: "Maw",
  33008. image: {
  33009. source: "./media/characters/iris/maw.svg"
  33010. }
  33011. },
  33012. },
  33013. [
  33014. {
  33015. name: "Mewter cat",
  33016. height: math.unit(1.2, "meters")
  33017. },
  33018. {
  33019. name: "Normal",
  33020. height: math.unit(2.5, "meters"),
  33021. default: true
  33022. },
  33023. {
  33024. name: "Minimacro",
  33025. height: math.unit(18, "feet")
  33026. },
  33027. {
  33028. name: "Macro",
  33029. height: math.unit(140, "feet")
  33030. },
  33031. {
  33032. name: "Macro+",
  33033. height: math.unit(180, "meters")
  33034. },
  33035. {
  33036. name: "Megamacro",
  33037. height: math.unit(2746, "meters")
  33038. },
  33039. ]
  33040. ))
  33041. characterMakers.push(() => makeCharacter(
  33042. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33043. {
  33044. front: {
  33045. height: math.unit(6, "feet"),
  33046. weight: math.unit(135, "lb"),
  33047. name: "Front",
  33048. image: {
  33049. source: "./media/characters/axel/front.svg",
  33050. extra: 908 / 908,
  33051. bottom: 58 / 966
  33052. }
  33053. },
  33054. side: {
  33055. height: math.unit(6, "feet"),
  33056. weight: math.unit(135, "lb"),
  33057. name: "Side",
  33058. image: {
  33059. source: "./media/characters/axel/side.svg",
  33060. extra: 958 / 958,
  33061. bottom: 11 / 969
  33062. }
  33063. },
  33064. back: {
  33065. height: math.unit(6, "feet"),
  33066. weight: math.unit(135, "lb"),
  33067. name: "Back",
  33068. image: {
  33069. source: "./media/characters/axel/back.svg",
  33070. extra: 887 / 887,
  33071. bottom: 34 / 921
  33072. }
  33073. },
  33074. head: {
  33075. height: math.unit(1.07, "feet"),
  33076. name: "Head",
  33077. image: {
  33078. source: "./media/characters/axel/head.svg"
  33079. }
  33080. },
  33081. beak: {
  33082. height: math.unit(1.4, "feet"),
  33083. name: "Beak",
  33084. image: {
  33085. source: "./media/characters/axel/beak.svg"
  33086. }
  33087. },
  33088. beakSide: {
  33089. height: math.unit(1.4, "feet"),
  33090. name: "Beak Side",
  33091. image: {
  33092. source: "./media/characters/axel/beak-side.svg"
  33093. }
  33094. },
  33095. sheath: {
  33096. height: math.unit(0.5, "feet"),
  33097. name: "Sheath",
  33098. image: {
  33099. source: "./media/characters/axel/sheath.svg"
  33100. }
  33101. },
  33102. dick: {
  33103. height: math.unit(0.98, "feet"),
  33104. name: "Dick",
  33105. image: {
  33106. source: "./media/characters/axel/dick.svg"
  33107. }
  33108. },
  33109. },
  33110. [
  33111. {
  33112. name: "Macro",
  33113. height: math.unit(68, "meters"),
  33114. default: true
  33115. },
  33116. ]
  33117. ))
  33118. characterMakers.push(() => makeCharacter(
  33119. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33120. {
  33121. front: {
  33122. height: math.unit(3.5, "meters"),
  33123. weight: math.unit(1200, "kg"),
  33124. name: "Front",
  33125. image: {
  33126. source: "./media/characters/joanna/front.svg",
  33127. extra: 1596 / 1488,
  33128. bottom: 29 / 1625
  33129. }
  33130. },
  33131. back: {
  33132. height: math.unit(3.5, "meters"),
  33133. weight: math.unit(1200, "kg"),
  33134. name: "Back",
  33135. image: {
  33136. source: "./media/characters/joanna/back.svg",
  33137. extra: 1594 / 1495,
  33138. bottom: 26 / 1620
  33139. }
  33140. },
  33141. frontShorts: {
  33142. height: math.unit(3.5, "meters"),
  33143. weight: math.unit(1200, "kg"),
  33144. name: "Front (Shorts)",
  33145. image: {
  33146. source: "./media/characters/joanna/front-shorts.svg",
  33147. extra: 1596 / 1488,
  33148. bottom: 29 / 1625
  33149. }
  33150. },
  33151. frontBiker: {
  33152. height: math.unit(3.5, "meters"),
  33153. weight: math.unit(1200, "kg"),
  33154. name: "Front (Biker)",
  33155. image: {
  33156. source: "./media/characters/joanna/front-biker.svg",
  33157. extra: 1596 / 1488,
  33158. bottom: 29 / 1625
  33159. }
  33160. },
  33161. backBiker: {
  33162. height: math.unit(3.5, "meters"),
  33163. weight: math.unit(1200, "kg"),
  33164. name: "Back (Biker)",
  33165. image: {
  33166. source: "./media/characters/joanna/back-biker.svg",
  33167. extra: 1594 / 1495,
  33168. bottom: 88 / 1682
  33169. }
  33170. },
  33171. bikeLeft: {
  33172. height: math.unit(2.4, "meters"),
  33173. weight: math.unit(1600, "kg"),
  33174. name: "Bike (Left)",
  33175. image: {
  33176. source: "./media/characters/joanna/bike-left.svg",
  33177. extra: 720 / 720,
  33178. bottom: 8 / 728
  33179. }
  33180. },
  33181. bikeRight: {
  33182. height: math.unit(2.4, "meters"),
  33183. weight: math.unit(1600, "kg"),
  33184. name: "Bike (Right)",
  33185. image: {
  33186. source: "./media/characters/joanna/bike-right.svg",
  33187. extra: 720 / 720,
  33188. bottom: 8 / 728
  33189. }
  33190. },
  33191. },
  33192. [
  33193. {
  33194. name: "Incognito",
  33195. height: math.unit(3.5, "meters")
  33196. },
  33197. {
  33198. name: "Casual Big",
  33199. height: math.unit(200, "meters")
  33200. },
  33201. {
  33202. name: "Macro",
  33203. height: math.unit(600, "meters")
  33204. },
  33205. {
  33206. name: "Original",
  33207. height: math.unit(20, "km"),
  33208. default: true
  33209. },
  33210. {
  33211. name: "Giga",
  33212. height: math.unit(400, "km")
  33213. },
  33214. {
  33215. name: "Lounging",
  33216. height: math.unit(1500, "km")
  33217. },
  33218. {
  33219. name: "Planetary",
  33220. height: math.unit(200000, "km")
  33221. },
  33222. ]
  33223. ))
  33224. characterMakers.push(() => makeCharacter(
  33225. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33226. {
  33227. front: {
  33228. height: math.unit(6, "feet"),
  33229. weight: math.unit(150, "lb"),
  33230. name: "Front",
  33231. image: {
  33232. source: "./media/characters/hugo-sigil/front.svg",
  33233. extra: 522 / 500,
  33234. bottom: 2 / 524
  33235. }
  33236. },
  33237. back: {
  33238. height: math.unit(6, "feet"),
  33239. weight: math.unit(150, "lb"),
  33240. name: "Back",
  33241. image: {
  33242. source: "./media/characters/hugo-sigil/back.svg",
  33243. extra: 519 / 495,
  33244. bottom: 5 / 524
  33245. }
  33246. },
  33247. maw: {
  33248. height: math.unit(1.4, "feet"),
  33249. weight: math.unit(150, "lb"),
  33250. name: "Maw",
  33251. image: {
  33252. source: "./media/characters/hugo-sigil/maw.svg"
  33253. }
  33254. },
  33255. feet: {
  33256. height: math.unit(1.56, "feet"),
  33257. weight: math.unit(150, "lb"),
  33258. name: "Feet",
  33259. image: {
  33260. source: "./media/characters/hugo-sigil/feet.svg",
  33261. extra: 177 / 177,
  33262. bottom: 12 / 189
  33263. }
  33264. },
  33265. },
  33266. [
  33267. {
  33268. name: "Normal",
  33269. height: math.unit(6, "feet")
  33270. },
  33271. {
  33272. name: "Macro",
  33273. height: math.unit(200, "feet"),
  33274. default: true
  33275. },
  33276. ]
  33277. ))
  33278. characterMakers.push(() => makeCharacter(
  33279. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33280. {
  33281. front: {
  33282. height: math.unit(6, "feet"),
  33283. weight: math.unit(150, "lb"),
  33284. name: "Front",
  33285. image: {
  33286. source: "./media/characters/peri/front.svg",
  33287. extra: 2354 / 2233,
  33288. bottom: 49 / 2403
  33289. }
  33290. },
  33291. },
  33292. [
  33293. {
  33294. name: "Really Small",
  33295. height: math.unit(1, "nm")
  33296. },
  33297. {
  33298. name: "Micro",
  33299. height: math.unit(4, "inches")
  33300. },
  33301. {
  33302. name: "Normal",
  33303. height: math.unit(7, "inches"),
  33304. default: true
  33305. },
  33306. {
  33307. name: "Macro",
  33308. height: math.unit(400, "feet")
  33309. },
  33310. {
  33311. name: "Megamacro",
  33312. height: math.unit(100, "miles")
  33313. },
  33314. ]
  33315. ))
  33316. characterMakers.push(() => makeCharacter(
  33317. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33318. {
  33319. frontSlim: {
  33320. height: math.unit(7, "feet"),
  33321. name: "Front (Slim)",
  33322. image: {
  33323. source: "./media/characters/issilora/front-slim.svg",
  33324. extra: 529 / 449,
  33325. bottom: 53 / 582
  33326. }
  33327. },
  33328. sideSlim: {
  33329. height: math.unit(7, "feet"),
  33330. name: "Side (Slim)",
  33331. image: {
  33332. source: "./media/characters/issilora/side-slim.svg",
  33333. extra: 570 / 480,
  33334. bottom: 30 / 600
  33335. }
  33336. },
  33337. backSlim: {
  33338. height: math.unit(7, "feet"),
  33339. name: "Back (Slim)",
  33340. image: {
  33341. source: "./media/characters/issilora/back-slim.svg",
  33342. extra: 537 / 455,
  33343. bottom: 46 / 583
  33344. }
  33345. },
  33346. frontBuff: {
  33347. height: math.unit(7, "feet"),
  33348. name: "Front (Buff)",
  33349. image: {
  33350. source: "./media/characters/issilora/front-buff.svg",
  33351. extra: 2310 / 2035,
  33352. bottom: 335 / 2645
  33353. }
  33354. },
  33355. head: {
  33356. height: math.unit(1.94, "feet"),
  33357. name: "Head",
  33358. image: {
  33359. source: "./media/characters/issilora/head.svg"
  33360. }
  33361. },
  33362. },
  33363. [
  33364. {
  33365. name: "Minimum",
  33366. height: math.unit(7, "feet")
  33367. },
  33368. {
  33369. name: "Comfortable",
  33370. height: math.unit(17, "feet")
  33371. },
  33372. {
  33373. name: "Fun Size",
  33374. height: math.unit(47, "feet")
  33375. },
  33376. {
  33377. name: "Natural Macro",
  33378. height: math.unit(137, "feet"),
  33379. default: true
  33380. },
  33381. {
  33382. name: "Maximum Kaiju",
  33383. height: math.unit(397, "feet")
  33384. },
  33385. ]
  33386. ))
  33387. characterMakers.push(() => makeCharacter(
  33388. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33389. {
  33390. front: {
  33391. height: math.unit(50 + 9/12, "feet"),
  33392. weight: math.unit(32.8, "tons"),
  33393. name: "Front",
  33394. image: {
  33395. source: "./media/characters/irb'iiritaahn/front.svg",
  33396. extra: 1878/1826,
  33397. bottom: 326/2204
  33398. }
  33399. },
  33400. back: {
  33401. height: math.unit(50 + 9/12, "feet"),
  33402. weight: math.unit(32.8, "tons"),
  33403. name: "Back",
  33404. image: {
  33405. source: "./media/characters/irb'iiritaahn/back.svg",
  33406. extra: 2052/2018,
  33407. bottom: 152/2204
  33408. }
  33409. },
  33410. head: {
  33411. height: math.unit(12.86, "feet"),
  33412. name: "Head",
  33413. image: {
  33414. source: "./media/characters/irb'iiritaahn/head.svg"
  33415. }
  33416. },
  33417. maw: {
  33418. height: math.unit(9.66, "feet"),
  33419. name: "Maw",
  33420. image: {
  33421. source: "./media/characters/irb'iiritaahn/maw.svg"
  33422. }
  33423. },
  33424. frontDick: {
  33425. height: math.unit(8.78461, "feet"),
  33426. name: "Front Dick",
  33427. image: {
  33428. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33429. }
  33430. },
  33431. rearDick: {
  33432. height: math.unit(8.78461, "feet"),
  33433. name: "Rear Dick",
  33434. image: {
  33435. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33436. }
  33437. },
  33438. rearDickUnfolded: {
  33439. height: math.unit(8.78, "feet"),
  33440. name: "Rear Dick (Unfolded)",
  33441. image: {
  33442. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33443. }
  33444. },
  33445. wings: {
  33446. height: math.unit(43, "feet"),
  33447. name: "Wings",
  33448. image: {
  33449. source: "./media/characters/irb'iiritaahn/wings.svg"
  33450. }
  33451. },
  33452. },
  33453. [
  33454. {
  33455. name: "Macro",
  33456. height: math.unit(50 + 9/12, "feet"),
  33457. default: true
  33458. },
  33459. ]
  33460. ))
  33461. characterMakers.push(() => makeCharacter(
  33462. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33463. {
  33464. front: {
  33465. height: math.unit(205, "cm"),
  33466. weight: math.unit(102, "kg"),
  33467. name: "Front",
  33468. image: {
  33469. source: "./media/characters/irbisgreif/front.svg",
  33470. extra: 785/706,
  33471. bottom: 13/798
  33472. }
  33473. },
  33474. back: {
  33475. height: math.unit(205, "cm"),
  33476. weight: math.unit(102, "kg"),
  33477. name: "Back",
  33478. image: {
  33479. source: "./media/characters/irbisgreif/back.svg",
  33480. extra: 713/701,
  33481. bottom: 26/739
  33482. }
  33483. },
  33484. frontDressed: {
  33485. height: math.unit(216, "cm"),
  33486. weight: math.unit(102, "kg"),
  33487. name: "Front-dressed",
  33488. image: {
  33489. source: "./media/characters/irbisgreif/front-dressed.svg",
  33490. extra: 902/776,
  33491. bottom: 14/916
  33492. }
  33493. },
  33494. sideDressed: {
  33495. height: math.unit(195, "cm"),
  33496. weight: math.unit(102, "kg"),
  33497. name: "Side-dressed",
  33498. image: {
  33499. source: "./media/characters/irbisgreif/side-dressed.svg",
  33500. extra: 788/688,
  33501. bottom: 21/809
  33502. }
  33503. },
  33504. backDressed: {
  33505. height: math.unit(216, "cm"),
  33506. weight: math.unit(102, "kg"),
  33507. name: "Back-dressed",
  33508. image: {
  33509. source: "./media/characters/irbisgreif/back-dressed.svg",
  33510. extra: 901/783,
  33511. bottom: 10/911
  33512. }
  33513. },
  33514. dick: {
  33515. height: math.unit(0.49, "feet"),
  33516. name: "Dick",
  33517. image: {
  33518. source: "./media/characters/irbisgreif/dick.svg"
  33519. }
  33520. },
  33521. wingTop: {
  33522. height: math.unit(1.93 , "feet"),
  33523. name: "Wing-top",
  33524. image: {
  33525. source: "./media/characters/irbisgreif/wing-top.svg"
  33526. }
  33527. },
  33528. wingBottom: {
  33529. height: math.unit(1.93 , "feet"),
  33530. name: "Wing-bottom",
  33531. image: {
  33532. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33533. }
  33534. },
  33535. },
  33536. [
  33537. {
  33538. name: "Normal",
  33539. height: math.unit(216, "cm"),
  33540. default: true
  33541. },
  33542. ]
  33543. ))
  33544. characterMakers.push(() => makeCharacter(
  33545. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33546. {
  33547. front: {
  33548. height: math.unit(6, "feet"),
  33549. weight: math.unit(150, "lb"),
  33550. name: "Front",
  33551. image: {
  33552. source: "./media/characters/pride/front.svg",
  33553. extra: 1299/1230,
  33554. bottom: 18/1317
  33555. }
  33556. },
  33557. },
  33558. [
  33559. {
  33560. name: "Normal",
  33561. height: math.unit(7, "feet")
  33562. },
  33563. {
  33564. name: "Mini-macro",
  33565. height: math.unit(11, "feet")
  33566. },
  33567. {
  33568. name: "Macro",
  33569. height: math.unit(15, "meters"),
  33570. default: true
  33571. },
  33572. {
  33573. name: "Macro+",
  33574. height: math.unit(40, "meters")
  33575. },
  33576. ]
  33577. ))
  33578. characterMakers.push(() => makeCharacter(
  33579. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33580. {
  33581. front: {
  33582. height: math.unit(4 + 2 / 12, "feet"),
  33583. weight: math.unit(95, "lb"),
  33584. name: "Front",
  33585. image: {
  33586. source: "./media/characters/vaelophis-nyx/front.svg",
  33587. extra: 2532/2330,
  33588. bottom: 0/2532
  33589. }
  33590. },
  33591. back: {
  33592. height: math.unit(4 + 2 / 12, "feet"),
  33593. weight: math.unit(95, "lb"),
  33594. name: "Back",
  33595. image: {
  33596. source: "./media/characters/vaelophis-nyx/back.svg",
  33597. extra: 2484/2361,
  33598. bottom: 0/2484
  33599. }
  33600. },
  33601. feralSide: {
  33602. height: math.unit(2 + 1/12, "feet"),
  33603. weight: math.unit(20, "lb"),
  33604. name: "Feral (Side)",
  33605. image: {
  33606. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33607. extra: 1721/1581,
  33608. bottom: 70/1791
  33609. }
  33610. },
  33611. feralLazing: {
  33612. height: math.unit(1.08, "feet"),
  33613. weight: math.unit(20, "lb"),
  33614. name: "Feral (Lazing)",
  33615. image: {
  33616. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33617. extra: 822/822,
  33618. bottom: 248/1070
  33619. }
  33620. },
  33621. ear: {
  33622. height: math.unit(0.416, "feet"),
  33623. name: "Ear",
  33624. image: {
  33625. source: "./media/characters/vaelophis-nyx/ear.svg"
  33626. }
  33627. },
  33628. eye: {
  33629. height: math.unit(0.0748, "feet"),
  33630. name: "Eye",
  33631. image: {
  33632. source: "./media/characters/vaelophis-nyx/eye.svg"
  33633. }
  33634. },
  33635. mouth: {
  33636. height: math.unit(0.378, "feet"),
  33637. name: "Mouth",
  33638. image: {
  33639. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33640. }
  33641. },
  33642. spade: {
  33643. height: math.unit(0.55, "feet"),
  33644. name: "Spade",
  33645. image: {
  33646. source: "./media/characters/vaelophis-nyx/spade.svg"
  33647. }
  33648. },
  33649. },
  33650. [
  33651. {
  33652. name: "Normal",
  33653. height: math.unit(4 + 2/12, "feet"),
  33654. default: true
  33655. },
  33656. ]
  33657. ))
  33658. characterMakers.push(() => makeCharacter(
  33659. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33660. {
  33661. front: {
  33662. height: math.unit(7, "feet"),
  33663. weight: math.unit(231, "lb"),
  33664. name: "Front",
  33665. image: {
  33666. source: "./media/characters/flux/front.svg",
  33667. extra: 919/871,
  33668. bottom: 0/919
  33669. }
  33670. },
  33671. back: {
  33672. height: math.unit(7, "feet"),
  33673. weight: math.unit(231, "lb"),
  33674. name: "Back",
  33675. image: {
  33676. source: "./media/characters/flux/back.svg",
  33677. extra: 1040/992,
  33678. bottom: 0/1040
  33679. }
  33680. },
  33681. frontDressed: {
  33682. height: math.unit(7, "feet"),
  33683. weight: math.unit(231, "lb"),
  33684. name: "Front (Dressed)",
  33685. image: {
  33686. source: "./media/characters/flux/front-dressed.svg",
  33687. extra: 919/871,
  33688. bottom: 0/919
  33689. }
  33690. },
  33691. feralSide: {
  33692. height: math.unit(5, "feet"),
  33693. weight: math.unit(150, "lb"),
  33694. name: "Feral (Side)",
  33695. image: {
  33696. source: "./media/characters/flux/feral-side.svg",
  33697. extra: 598/528,
  33698. bottom: 28/626
  33699. }
  33700. },
  33701. head: {
  33702. height: math.unit(1.585, "feet"),
  33703. name: "Head",
  33704. image: {
  33705. source: "./media/characters/flux/head.svg"
  33706. }
  33707. },
  33708. headSide: {
  33709. height: math.unit(1.74, "feet"),
  33710. name: "Head (Side)",
  33711. image: {
  33712. source: "./media/characters/flux/head-side.svg"
  33713. }
  33714. },
  33715. headSideFire: {
  33716. height: math.unit(1.76, "feet"),
  33717. name: "Head (Side, Fire)",
  33718. image: {
  33719. source: "./media/characters/flux/head-side-fire.svg"
  33720. }
  33721. },
  33722. },
  33723. [
  33724. {
  33725. name: "Normal",
  33726. height: math.unit(7, "feet"),
  33727. default: true
  33728. },
  33729. ]
  33730. ))
  33731. characterMakers.push(() => makeCharacter(
  33732. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33733. {
  33734. front: {
  33735. height: math.unit(9, "feet"),
  33736. weight: math.unit(1012, "lb"),
  33737. name: "Front",
  33738. image: {
  33739. source: "./media/characters/ulfra-lupae/front.svg",
  33740. extra: 1083/1011,
  33741. bottom: 67/1150
  33742. }
  33743. },
  33744. },
  33745. [
  33746. {
  33747. name: "Micro",
  33748. height: math.unit(6, "inches")
  33749. },
  33750. {
  33751. name: "Socializing",
  33752. height: math.unit(6 + 5/12, "feet")
  33753. },
  33754. {
  33755. name: "Normal",
  33756. height: math.unit(9, "feet"),
  33757. default: true
  33758. },
  33759. {
  33760. name: "Macro",
  33761. height: math.unit(150, "feet")
  33762. },
  33763. ]
  33764. ))
  33765. characterMakers.push(() => makeCharacter(
  33766. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33767. {
  33768. front: {
  33769. height: math.unit(5 + 2/12, "feet"),
  33770. weight: math.unit(120, "lb"),
  33771. name: "Front",
  33772. image: {
  33773. source: "./media/characters/timber/front.svg",
  33774. extra: 2814/2705,
  33775. bottom: 181/2995
  33776. }
  33777. },
  33778. },
  33779. [
  33780. {
  33781. name: "Normal",
  33782. height: math.unit(5 + 2/12, "feet"),
  33783. default: true
  33784. },
  33785. ]
  33786. ))
  33787. characterMakers.push(() => makeCharacter(
  33788. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33789. {
  33790. front: {
  33791. height: math.unit(9, "feet"),
  33792. name: "Front",
  33793. image: {
  33794. source: "./media/characters/nicki/front.svg",
  33795. extra: 1240/990,
  33796. bottom: 45/1285
  33797. },
  33798. form: "anthro",
  33799. default: true
  33800. },
  33801. side: {
  33802. height: math.unit(9, "feet"),
  33803. name: "Side",
  33804. image: {
  33805. source: "./media/characters/nicki/side.svg",
  33806. extra: 1047/973,
  33807. bottom: 61/1108
  33808. },
  33809. form: "anthro"
  33810. },
  33811. back: {
  33812. height: math.unit(9, "feet"),
  33813. name: "Back",
  33814. image: {
  33815. source: "./media/characters/nicki/back.svg",
  33816. extra: 1006/965,
  33817. bottom: 39/1045
  33818. },
  33819. form: "anthro"
  33820. },
  33821. taur: {
  33822. height: math.unit(15, "feet"),
  33823. name: "Taur",
  33824. image: {
  33825. source: "./media/characters/nicki/taur.svg",
  33826. extra: 1592/1347,
  33827. bottom: 0/1592
  33828. },
  33829. form: "taur",
  33830. default: true
  33831. },
  33832. },
  33833. [
  33834. {
  33835. name: "Normal",
  33836. height: math.unit(9, "feet"),
  33837. form: "anthro",
  33838. default: true
  33839. },
  33840. {
  33841. name: "Normal",
  33842. height: math.unit(15, "feet"),
  33843. form: "taur",
  33844. default: true
  33845. }
  33846. ],
  33847. {
  33848. "anthro": {
  33849. name: "Anthro",
  33850. default: true
  33851. },
  33852. "taur": {
  33853. name: "Taur"
  33854. }
  33855. }
  33856. ))
  33857. characterMakers.push(() => makeCharacter(
  33858. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33859. {
  33860. front: {
  33861. height: math.unit(7 + 10/12, "feet"),
  33862. weight: math.unit(3.5, "tons"),
  33863. name: "Front",
  33864. image: {
  33865. source: "./media/characters/lee/front.svg",
  33866. extra: 1773/1615,
  33867. bottom: 86/1859
  33868. }
  33869. },
  33870. hand: {
  33871. height: math.unit(1.78, "feet"),
  33872. name: "Hand",
  33873. image: {
  33874. source: "./media/characters/lee/hand.svg"
  33875. }
  33876. },
  33877. maw: {
  33878. height: math.unit(1.18, "feet"),
  33879. name: "Maw",
  33880. image: {
  33881. source: "./media/characters/lee/maw.svg"
  33882. }
  33883. },
  33884. },
  33885. [
  33886. {
  33887. name: "Normal",
  33888. height: math.unit(7 + 10/12, "feet"),
  33889. default: true
  33890. },
  33891. ]
  33892. ))
  33893. characterMakers.push(() => makeCharacter(
  33894. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33895. {
  33896. front: {
  33897. height: math.unit(9, "feet"),
  33898. name: "Front",
  33899. image: {
  33900. source: "./media/characters/guti/front.svg",
  33901. extra: 4551/4355,
  33902. bottom: 123/4674
  33903. }
  33904. },
  33905. tongue: {
  33906. height: math.unit(1, "feet"),
  33907. name: "Tongue",
  33908. image: {
  33909. source: "./media/characters/guti/tongue.svg"
  33910. }
  33911. },
  33912. paw: {
  33913. height: math.unit(1.18, "feet"),
  33914. name: "Paw",
  33915. image: {
  33916. source: "./media/characters/guti/paw.svg"
  33917. }
  33918. },
  33919. },
  33920. [
  33921. {
  33922. name: "Normal",
  33923. height: math.unit(9, "feet"),
  33924. default: true
  33925. },
  33926. ]
  33927. ))
  33928. characterMakers.push(() => makeCharacter(
  33929. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33930. {
  33931. side: {
  33932. height: math.unit(5, "meters"),
  33933. name: "Side",
  33934. image: {
  33935. source: "./media/characters/vesper/side.svg",
  33936. extra: 1605/1518,
  33937. bottom: 0/1605
  33938. }
  33939. },
  33940. },
  33941. [
  33942. {
  33943. name: "Small",
  33944. height: math.unit(5, "meters")
  33945. },
  33946. {
  33947. name: "Sage",
  33948. height: math.unit(100, "meters"),
  33949. default: true
  33950. },
  33951. {
  33952. name: "Fun Size",
  33953. height: math.unit(600, "meters")
  33954. },
  33955. {
  33956. name: "Goddess",
  33957. height: math.unit(20000, "km")
  33958. },
  33959. {
  33960. name: "Maximum",
  33961. height: math.unit(5, "galaxies")
  33962. },
  33963. ]
  33964. ))
  33965. characterMakers.push(() => makeCharacter(
  33966. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33967. {
  33968. front: {
  33969. height: math.unit(6 + 3/12, "feet"),
  33970. weight: math.unit(190, "lb"),
  33971. name: "Front",
  33972. image: {
  33973. source: "./media/characters/gawain/front.svg",
  33974. extra: 2222/2139,
  33975. bottom: 90/2312
  33976. }
  33977. },
  33978. back: {
  33979. height: math.unit(6 + 3/12, "feet"),
  33980. weight: math.unit(190, "lb"),
  33981. name: "Back",
  33982. image: {
  33983. source: "./media/characters/gawain/back.svg",
  33984. extra: 2199/2111,
  33985. bottom: 73/2272
  33986. }
  33987. },
  33988. },
  33989. [
  33990. {
  33991. name: "Normal",
  33992. height: math.unit(6 + 3/12, "feet"),
  33993. default: true
  33994. },
  33995. ]
  33996. ))
  33997. characterMakers.push(() => makeCharacter(
  33998. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33999. {
  34000. side: {
  34001. height: math.unit(3.5, "meters"),
  34002. weight: math.unit(16000, "lb"),
  34003. name: "Side",
  34004. image: {
  34005. source: "./media/characters/dascalti/side.svg",
  34006. extra: 392/273,
  34007. bottom: 47/439
  34008. }
  34009. },
  34010. breath: {
  34011. height: math.unit(7.4, "feet"),
  34012. name: "Breath",
  34013. image: {
  34014. source: "./media/characters/dascalti/breath.svg"
  34015. }
  34016. },
  34017. fed: {
  34018. height: math.unit(3.6, "meters"),
  34019. weight: math.unit(16000, "lb"),
  34020. name: "Fed",
  34021. image: {
  34022. source: "./media/characters/dascalti/fed.svg",
  34023. extra: 1419/820,
  34024. bottom: 95/1514
  34025. }
  34026. },
  34027. },
  34028. [
  34029. {
  34030. name: "Normal",
  34031. height: math.unit(3.5, "meters"),
  34032. default: true
  34033. },
  34034. ]
  34035. ))
  34036. characterMakers.push(() => makeCharacter(
  34037. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34038. {
  34039. front: {
  34040. height: math.unit(3 + 5/12, "feet"),
  34041. name: "Front",
  34042. image: {
  34043. source: "./media/characters/mauve/front.svg",
  34044. extra: 1126/1033,
  34045. bottom: 65/1191
  34046. }
  34047. },
  34048. side: {
  34049. height: math.unit(3 + 5/12, "feet"),
  34050. name: "Side",
  34051. image: {
  34052. source: "./media/characters/mauve/side.svg",
  34053. extra: 1089/1001,
  34054. bottom: 29/1118
  34055. }
  34056. },
  34057. back: {
  34058. height: math.unit(3 + 5/12, "feet"),
  34059. name: "Back",
  34060. image: {
  34061. source: "./media/characters/mauve/back.svg",
  34062. extra: 1173/1053,
  34063. bottom: 109/1282
  34064. }
  34065. },
  34066. },
  34067. [
  34068. {
  34069. name: "Normal",
  34070. height: math.unit(3 + 5/12, "feet"),
  34071. default: true
  34072. },
  34073. ]
  34074. ))
  34075. characterMakers.push(() => makeCharacter(
  34076. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34077. {
  34078. front: {
  34079. height: math.unit(6 + 3/12, "feet"),
  34080. weight: math.unit(430, "lb"),
  34081. name: "Front",
  34082. image: {
  34083. source: "./media/characters/carlos/front.svg",
  34084. extra: 1964/1913,
  34085. bottom: 70/2034
  34086. }
  34087. },
  34088. },
  34089. [
  34090. {
  34091. name: "Normal",
  34092. height: math.unit(6 + 3/12, "feet"),
  34093. default: true
  34094. },
  34095. ]
  34096. ))
  34097. characterMakers.push(() => makeCharacter(
  34098. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34099. {
  34100. back: {
  34101. height: math.unit(5 + 10/12, "feet"),
  34102. weight: math.unit(200, "lb"),
  34103. name: "Back",
  34104. image: {
  34105. source: "./media/characters/jax/back.svg",
  34106. extra: 764/739,
  34107. bottom: 25/789
  34108. }
  34109. },
  34110. },
  34111. [
  34112. {
  34113. name: "Normal",
  34114. height: math.unit(5 + 10/12, "feet"),
  34115. default: true
  34116. },
  34117. ]
  34118. ))
  34119. characterMakers.push(() => makeCharacter(
  34120. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34121. {
  34122. front: {
  34123. height: math.unit(8, "feet"),
  34124. weight: math.unit(250, "lb"),
  34125. name: "Front",
  34126. image: {
  34127. source: "./media/characters/eikthynir/front.svg",
  34128. extra: 1332/1166,
  34129. bottom: 82/1414
  34130. }
  34131. },
  34132. back: {
  34133. height: math.unit(8, "feet"),
  34134. weight: math.unit(250, "lb"),
  34135. name: "Back",
  34136. image: {
  34137. source: "./media/characters/eikthynir/back.svg",
  34138. extra: 1342/1190,
  34139. bottom: 19/1361
  34140. }
  34141. },
  34142. dick: {
  34143. height: math.unit(2.35, "feet"),
  34144. name: "Dick",
  34145. image: {
  34146. source: "./media/characters/eikthynir/dick.svg"
  34147. }
  34148. },
  34149. },
  34150. [
  34151. {
  34152. name: "Normal",
  34153. height: math.unit(8, "feet"),
  34154. default: true
  34155. },
  34156. ]
  34157. ))
  34158. characterMakers.push(() => makeCharacter(
  34159. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34160. {
  34161. front: {
  34162. height: math.unit(99, "meters"),
  34163. weight: math.unit(13000, "tons"),
  34164. name: "Front",
  34165. image: {
  34166. source: "./media/characters/zlmos/front.svg",
  34167. extra: 2202/1992,
  34168. bottom: 315/2517
  34169. }
  34170. },
  34171. },
  34172. [
  34173. {
  34174. name: "Macro",
  34175. height: math.unit(99, "meters"),
  34176. default: true
  34177. },
  34178. ]
  34179. ))
  34180. characterMakers.push(() => makeCharacter(
  34181. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34182. {
  34183. front: {
  34184. height: math.unit(6 + 5/12, "feet"),
  34185. name: "Front",
  34186. image: {
  34187. source: "./media/characters/purri/front.svg",
  34188. extra: 1698/1610,
  34189. bottom: 32/1730
  34190. }
  34191. },
  34192. frontAlt: {
  34193. height: math.unit(6 + 5/12, "feet"),
  34194. name: "Front (Alt)",
  34195. image: {
  34196. source: "./media/characters/purri/front-alt.svg",
  34197. extra: 450/420,
  34198. bottom: 26/476
  34199. }
  34200. },
  34201. boots: {
  34202. height: math.unit(5.5, "feet"),
  34203. name: "Boots",
  34204. image: {
  34205. source: "./media/characters/purri/boots.svg",
  34206. extra: 905/853,
  34207. bottom: 18/923
  34208. },
  34209. extraAttributes: {
  34210. "shoeSize": {
  34211. name: "Shoe Size",
  34212. power: 1,
  34213. type: "length",
  34214. base: math.unit(12, "ShoeSizeMensUS")
  34215. },
  34216. "platformHeight": {
  34217. name: "Platform Height",
  34218. power: 1,
  34219. type: "length",
  34220. base: math.unit(2, "inches")
  34221. },
  34222. }
  34223. },
  34224. lying: {
  34225. height: math.unit(2, "feet"),
  34226. name: "Lying",
  34227. image: {
  34228. source: "./media/characters/purri/lying.svg",
  34229. extra: 940/843,
  34230. bottom: 146/1086
  34231. }
  34232. },
  34233. devious: {
  34234. height: math.unit(1.77, "feet"),
  34235. name: "Devious",
  34236. image: {
  34237. source: "./media/characters/purri/devious.svg",
  34238. extra: 1440/1155,
  34239. bottom: 147/1587
  34240. }
  34241. },
  34242. bean: {
  34243. height: math.unit(1.94, "feet"),
  34244. name: "Bean",
  34245. image: {
  34246. source: "./media/characters/purri/bean.svg"
  34247. }
  34248. },
  34249. },
  34250. [
  34251. {
  34252. name: "Micro",
  34253. height: math.unit(1, "mm")
  34254. },
  34255. {
  34256. name: "Normal",
  34257. height: math.unit(6 + 5/12, "feet"),
  34258. default: true
  34259. },
  34260. {
  34261. name: "Macro :3c",
  34262. height: math.unit(2, "miles")
  34263. },
  34264. ]
  34265. ))
  34266. characterMakers.push(() => makeCharacter(
  34267. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34268. {
  34269. front: {
  34270. height: math.unit(6 + 2/12, "feet"),
  34271. weight: math.unit(250, "lb"),
  34272. name: "Front",
  34273. image: {
  34274. source: "./media/characters/moonlight/front.svg",
  34275. extra: 1044/908,
  34276. bottom: 56/1100
  34277. }
  34278. },
  34279. feral: {
  34280. height: math.unit(3 + 1/12, "feet"),
  34281. weight: math.unit(50, "kg"),
  34282. name: "Feral",
  34283. image: {
  34284. source: "./media/characters/moonlight/feral.svg",
  34285. extra: 3705/2791,
  34286. bottom: 145/3850
  34287. }
  34288. },
  34289. paw: {
  34290. height: math.unit(1, "feet"),
  34291. name: "Paw",
  34292. image: {
  34293. source: "./media/characters/moonlight/paw.svg"
  34294. }
  34295. },
  34296. paws: {
  34297. height: math.unit(0.98, "feet"),
  34298. name: "Paws",
  34299. image: {
  34300. source: "./media/characters/moonlight/paws.svg",
  34301. extra: 939/939,
  34302. bottom: 50/989
  34303. }
  34304. },
  34305. mouth: {
  34306. height: math.unit(0.48, "feet"),
  34307. name: "Mouth",
  34308. image: {
  34309. source: "./media/characters/moonlight/mouth.svg"
  34310. }
  34311. },
  34312. dick: {
  34313. height: math.unit(1.46, "feet"),
  34314. name: "Dick",
  34315. image: {
  34316. source: "./media/characters/moonlight/dick.svg"
  34317. }
  34318. },
  34319. },
  34320. [
  34321. {
  34322. name: "Normal",
  34323. height: math.unit(6 + 2/12, "feet"),
  34324. default: true
  34325. },
  34326. {
  34327. name: "Macro",
  34328. height: math.unit(300, "feet")
  34329. },
  34330. {
  34331. name: "Macro+",
  34332. height: math.unit(1, "mile")
  34333. },
  34334. {
  34335. name: "Mt. Moon",
  34336. height: math.unit(5, "miles")
  34337. },
  34338. {
  34339. name: "Megamacro",
  34340. height: math.unit(15, "miles")
  34341. },
  34342. ]
  34343. ))
  34344. characterMakers.push(() => makeCharacter(
  34345. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34346. {
  34347. back: {
  34348. height: math.unit(6, "feet"),
  34349. weight: math.unit(150, "lb"),
  34350. name: "Back",
  34351. image: {
  34352. source: "./media/characters/sylen/back.svg",
  34353. extra: 1335/1273,
  34354. bottom: 107/1442
  34355. }
  34356. },
  34357. },
  34358. [
  34359. {
  34360. name: "Normal",
  34361. height: math.unit(5 + 5/12, "feet")
  34362. },
  34363. {
  34364. name: "Megamacro",
  34365. height: math.unit(3, "miles"),
  34366. default: true
  34367. },
  34368. ]
  34369. ))
  34370. characterMakers.push(() => makeCharacter(
  34371. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34372. {
  34373. front: {
  34374. height: math.unit(6, "feet"),
  34375. weight: math.unit(190, "lb"),
  34376. name: "Front",
  34377. image: {
  34378. source: "./media/characters/huttser/front.svg",
  34379. extra: 1152/1058,
  34380. bottom: 23/1175
  34381. }
  34382. },
  34383. side: {
  34384. height: math.unit(6, "feet"),
  34385. weight: math.unit(190, "lb"),
  34386. name: "Side",
  34387. image: {
  34388. source: "./media/characters/huttser/side.svg",
  34389. extra: 1174/1065,
  34390. bottom: 18/1192
  34391. }
  34392. },
  34393. back: {
  34394. height: math.unit(6, "feet"),
  34395. weight: math.unit(190, "lb"),
  34396. name: "Back",
  34397. image: {
  34398. source: "./media/characters/huttser/back.svg",
  34399. extra: 1158/1056,
  34400. bottom: 12/1170
  34401. }
  34402. },
  34403. },
  34404. [
  34405. ]
  34406. ))
  34407. characterMakers.push(() => makeCharacter(
  34408. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34409. {
  34410. side: {
  34411. height: math.unit(12 + 9/12, "feet"),
  34412. weight: math.unit(15000, "lb"),
  34413. name: "Side",
  34414. image: {
  34415. source: "./media/characters/faan/side.svg",
  34416. extra: 2747/2697,
  34417. bottom: 0/2747
  34418. }
  34419. },
  34420. front: {
  34421. height: math.unit(12 + 9/12, "feet"),
  34422. weight: math.unit(15000, "lb"),
  34423. name: "Front",
  34424. image: {
  34425. source: "./media/characters/faan/front.svg",
  34426. extra: 607/571,
  34427. bottom: 24/631
  34428. }
  34429. },
  34430. head: {
  34431. height: math.unit(2.85, "feet"),
  34432. name: "Head",
  34433. image: {
  34434. source: "./media/characters/faan/head.svg"
  34435. }
  34436. },
  34437. headAlt: {
  34438. height: math.unit(3.13, "feet"),
  34439. name: "Head-alt",
  34440. image: {
  34441. source: "./media/characters/faan/head-alt.svg"
  34442. }
  34443. },
  34444. },
  34445. [
  34446. {
  34447. name: "Normal",
  34448. height: math.unit(12 + 9/12, "feet"),
  34449. default: true
  34450. },
  34451. ]
  34452. ))
  34453. characterMakers.push(() => makeCharacter(
  34454. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34455. {
  34456. front: {
  34457. height: math.unit(6, "feet"),
  34458. weight: math.unit(300, "lb"),
  34459. name: "Front",
  34460. image: {
  34461. source: "./media/characters/tanio/front.svg",
  34462. extra: 711/673,
  34463. bottom: 25/736
  34464. }
  34465. },
  34466. },
  34467. [
  34468. {
  34469. name: "Normal",
  34470. height: math.unit(6, "feet"),
  34471. default: true
  34472. },
  34473. ]
  34474. ))
  34475. characterMakers.push(() => makeCharacter(
  34476. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34477. {
  34478. front: {
  34479. height: math.unit(3, "inches"),
  34480. name: "Front",
  34481. image: {
  34482. source: "./media/characters/noboru/front.svg",
  34483. extra: 1039/932,
  34484. bottom: 18/1057
  34485. }
  34486. },
  34487. },
  34488. [
  34489. {
  34490. name: "Micro",
  34491. height: math.unit(3, "inches"),
  34492. default: true
  34493. },
  34494. ]
  34495. ))
  34496. characterMakers.push(() => makeCharacter(
  34497. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34498. {
  34499. front: {
  34500. height: math.unit(1.85, "meters"),
  34501. weight: math.unit(80, "kg"),
  34502. name: "Front",
  34503. image: {
  34504. source: "./media/characters/daniel-barrett/front.svg",
  34505. extra: 355/337,
  34506. bottom: 9/364
  34507. }
  34508. },
  34509. },
  34510. [
  34511. {
  34512. name: "Pico",
  34513. height: math.unit(0.0433, "mm")
  34514. },
  34515. {
  34516. name: "Nano",
  34517. height: math.unit(1.5, "mm")
  34518. },
  34519. {
  34520. name: "Micro",
  34521. height: math.unit(5.3, "cm"),
  34522. default: true
  34523. },
  34524. {
  34525. name: "Normal",
  34526. height: math.unit(1.85, "meters")
  34527. },
  34528. {
  34529. name: "Macro",
  34530. height: math.unit(64.7, "meters")
  34531. },
  34532. {
  34533. name: "Megamacro",
  34534. height: math.unit(2.26, "km")
  34535. },
  34536. {
  34537. name: "Gigamacro",
  34538. height: math.unit(79, "km")
  34539. },
  34540. {
  34541. name: "Teramacro",
  34542. height: math.unit(2765, "km")
  34543. },
  34544. {
  34545. name: "Petamacro",
  34546. height: math.unit(96678, "km")
  34547. },
  34548. ]
  34549. ))
  34550. characterMakers.push(() => makeCharacter(
  34551. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34552. {
  34553. front: {
  34554. height: math.unit(30, "meters"),
  34555. weight: math.unit(400, "tons"),
  34556. name: "Front",
  34557. image: {
  34558. source: "./media/characters/zeel/front.svg",
  34559. extra: 2599/2599,
  34560. bottom: 226/2825
  34561. }
  34562. },
  34563. },
  34564. [
  34565. {
  34566. name: "Macro",
  34567. height: math.unit(30, "meters"),
  34568. default: true
  34569. },
  34570. ]
  34571. ))
  34572. characterMakers.push(() => makeCharacter(
  34573. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34574. {
  34575. front: {
  34576. height: math.unit(6 + 7/12, "feet"),
  34577. weight: math.unit(210, "lb"),
  34578. name: "Front",
  34579. image: {
  34580. source: "./media/characters/tarn/front.svg",
  34581. extra: 3517/3220,
  34582. bottom: 91/3608
  34583. }
  34584. },
  34585. back: {
  34586. height: math.unit(6 + 7/12, "feet"),
  34587. weight: math.unit(210, "lb"),
  34588. name: "Back",
  34589. image: {
  34590. source: "./media/characters/tarn/back.svg",
  34591. extra: 3566/3241,
  34592. bottom: 34/3600
  34593. }
  34594. },
  34595. dick: {
  34596. height: math.unit(1.65, "feet"),
  34597. name: "Dick",
  34598. image: {
  34599. source: "./media/characters/tarn/dick.svg"
  34600. }
  34601. },
  34602. paw: {
  34603. height: math.unit(1.80, "feet"),
  34604. name: "Paw",
  34605. image: {
  34606. source: "./media/characters/tarn/paw.svg"
  34607. }
  34608. },
  34609. tongue: {
  34610. height: math.unit(0.97, "feet"),
  34611. name: "Tongue",
  34612. image: {
  34613. source: "./media/characters/tarn/tongue.svg"
  34614. }
  34615. },
  34616. },
  34617. [
  34618. {
  34619. name: "Micro",
  34620. height: math.unit(4, "inches")
  34621. },
  34622. {
  34623. name: "Normal",
  34624. height: math.unit(6 + 7/12, "feet"),
  34625. default: true
  34626. },
  34627. {
  34628. name: "Macro",
  34629. height: math.unit(300, "feet")
  34630. },
  34631. ]
  34632. ))
  34633. characterMakers.push(() => makeCharacter(
  34634. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34635. {
  34636. front: {
  34637. height: math.unit(5 + 7/12, "feet"),
  34638. weight: math.unit(80, "kg"),
  34639. name: "Front",
  34640. image: {
  34641. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34642. extra: 3023/2865,
  34643. bottom: 33/3056
  34644. }
  34645. },
  34646. back: {
  34647. height: math.unit(5 + 7/12, "feet"),
  34648. weight: math.unit(80, "kg"),
  34649. name: "Back",
  34650. image: {
  34651. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34652. extra: 3020/2886,
  34653. bottom: 30/3050
  34654. }
  34655. },
  34656. dick: {
  34657. height: math.unit(0.98, "feet"),
  34658. name: "Dick",
  34659. image: {
  34660. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34661. }
  34662. },
  34663. anatomy: {
  34664. height: math.unit(2.86, "feet"),
  34665. name: "Anatomy",
  34666. image: {
  34667. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34668. }
  34669. },
  34670. },
  34671. [
  34672. {
  34673. name: "Really Small",
  34674. height: math.unit(2, "inches")
  34675. },
  34676. {
  34677. name: "Micro",
  34678. height: math.unit(5.583, "inches")
  34679. },
  34680. {
  34681. name: "Normal",
  34682. height: math.unit(5 + 7/12, "feet"),
  34683. default: true
  34684. },
  34685. {
  34686. name: "Macro",
  34687. height: math.unit(67, "feet")
  34688. },
  34689. {
  34690. name: "Megamacro",
  34691. height: math.unit(134, "feet")
  34692. },
  34693. ]
  34694. ))
  34695. characterMakers.push(() => makeCharacter(
  34696. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34697. {
  34698. front: {
  34699. height: math.unit(9, "feet"),
  34700. weight: math.unit(120, "lb"),
  34701. name: "Front",
  34702. image: {
  34703. source: "./media/characters/sally/front.svg",
  34704. extra: 1506/1349,
  34705. bottom: 66/1572
  34706. }
  34707. },
  34708. },
  34709. [
  34710. {
  34711. name: "Normal",
  34712. height: math.unit(9, "feet"),
  34713. default: true
  34714. },
  34715. ]
  34716. ))
  34717. characterMakers.push(() => makeCharacter(
  34718. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34719. {
  34720. front: {
  34721. height: math.unit(8, "feet"),
  34722. weight: math.unit(900, "lb"),
  34723. name: "Front",
  34724. image: {
  34725. source: "./media/characters/owen/front.svg",
  34726. extra: 1761/1657,
  34727. bottom: 74/1835
  34728. }
  34729. },
  34730. side: {
  34731. height: math.unit(8, "feet"),
  34732. weight: math.unit(900, "lb"),
  34733. name: "Side",
  34734. image: {
  34735. source: "./media/characters/owen/side.svg",
  34736. extra: 1797/1734,
  34737. bottom: 30/1827
  34738. }
  34739. },
  34740. back: {
  34741. height: math.unit(8, "feet"),
  34742. weight: math.unit(900, "lb"),
  34743. name: "Back",
  34744. image: {
  34745. source: "./media/characters/owen/back.svg",
  34746. extra: 1796/1706,
  34747. bottom: 59/1855
  34748. }
  34749. },
  34750. maw: {
  34751. height: math.unit(1.76, "feet"),
  34752. name: "Maw",
  34753. image: {
  34754. source: "./media/characters/owen/maw.svg"
  34755. }
  34756. },
  34757. },
  34758. [
  34759. {
  34760. name: "Normal",
  34761. height: math.unit(8, "feet"),
  34762. default: true
  34763. },
  34764. ]
  34765. ))
  34766. characterMakers.push(() => makeCharacter(
  34767. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34768. {
  34769. front: {
  34770. height: math.unit(4, "feet"),
  34771. weight: math.unit(400, "lb"),
  34772. name: "Front",
  34773. image: {
  34774. source: "./media/characters/ryth/front.svg",
  34775. extra: 1920/1748,
  34776. bottom: 42/1962
  34777. }
  34778. },
  34779. back: {
  34780. height: math.unit(4, "feet"),
  34781. weight: math.unit(400, "lb"),
  34782. name: "Back",
  34783. image: {
  34784. source: "./media/characters/ryth/back.svg",
  34785. extra: 1897/1690,
  34786. bottom: 89/1986
  34787. }
  34788. },
  34789. mouth: {
  34790. height: math.unit(1.39, "feet"),
  34791. name: "Mouth",
  34792. image: {
  34793. source: "./media/characters/ryth/mouth.svg"
  34794. }
  34795. },
  34796. tailmaw: {
  34797. height: math.unit(1.23, "feet"),
  34798. name: "Tailmaw",
  34799. image: {
  34800. source: "./media/characters/ryth/tailmaw.svg"
  34801. }
  34802. },
  34803. goia: {
  34804. height: math.unit(4, "meters"),
  34805. weight: math.unit(10800, "lb"),
  34806. name: "Goia",
  34807. image: {
  34808. source: "./media/characters/ryth/goia.svg",
  34809. extra: 745/640,
  34810. bottom: 107/852
  34811. }
  34812. },
  34813. goiaFront: {
  34814. height: math.unit(4, "meters"),
  34815. weight: math.unit(10800, "lb"),
  34816. name: "Goia (Front)",
  34817. image: {
  34818. source: "./media/characters/ryth/goia-front.svg",
  34819. extra: 750/586,
  34820. bottom: 114/864
  34821. }
  34822. },
  34823. goiaMaw: {
  34824. height: math.unit(5.55, "feet"),
  34825. name: "Goia Maw",
  34826. image: {
  34827. source: "./media/characters/ryth/goia-maw.svg"
  34828. }
  34829. },
  34830. goiaForepaw: {
  34831. height: math.unit(3.5, "feet"),
  34832. name: "Goia Forepaw",
  34833. image: {
  34834. source: "./media/characters/ryth/goia-forepaw.svg"
  34835. }
  34836. },
  34837. goiaHindpaw: {
  34838. height: math.unit(5.55, "feet"),
  34839. name: "Goia Hindpaw",
  34840. image: {
  34841. source: "./media/characters/ryth/goia-hindpaw.svg"
  34842. }
  34843. },
  34844. },
  34845. [
  34846. {
  34847. name: "Normal",
  34848. height: math.unit(4, "feet"),
  34849. default: true
  34850. },
  34851. ]
  34852. ))
  34853. characterMakers.push(() => makeCharacter(
  34854. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34855. {
  34856. front: {
  34857. height: math.unit(7, "feet"),
  34858. weight: math.unit(180, "lb"),
  34859. name: "Front",
  34860. image: {
  34861. source: "./media/characters/necrolance/front.svg",
  34862. extra: 1062/947,
  34863. bottom: 41/1103
  34864. }
  34865. },
  34866. back: {
  34867. height: math.unit(7, "feet"),
  34868. weight: math.unit(180, "lb"),
  34869. name: "Back",
  34870. image: {
  34871. source: "./media/characters/necrolance/back.svg",
  34872. extra: 1045/984,
  34873. bottom: 14/1059
  34874. }
  34875. },
  34876. wing: {
  34877. height: math.unit(2.67, "feet"),
  34878. name: "Wing",
  34879. image: {
  34880. source: "./media/characters/necrolance/wing.svg"
  34881. }
  34882. },
  34883. },
  34884. [
  34885. {
  34886. name: "Normal",
  34887. height: math.unit(7, "feet"),
  34888. default: true
  34889. },
  34890. ]
  34891. ))
  34892. characterMakers.push(() => makeCharacter(
  34893. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34894. {
  34895. front: {
  34896. height: math.unit(76, "meters"),
  34897. weight: math.unit(30000, "tons"),
  34898. name: "Front",
  34899. image: {
  34900. source: "./media/characters/tyler/front.svg",
  34901. extra: 1640/1640,
  34902. bottom: 114/1754
  34903. }
  34904. },
  34905. },
  34906. [
  34907. {
  34908. name: "Macro",
  34909. height: math.unit(76, "meters"),
  34910. default: true
  34911. },
  34912. ]
  34913. ))
  34914. characterMakers.push(() => makeCharacter(
  34915. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34916. {
  34917. front: {
  34918. height: math.unit(4 + 11/12, "feet"),
  34919. weight: math.unit(132, "lb"),
  34920. name: "Front",
  34921. image: {
  34922. source: "./media/characters/icey/front.svg",
  34923. extra: 2750/2550,
  34924. bottom: 33/2783
  34925. }
  34926. },
  34927. back: {
  34928. height: math.unit(4 + 11/12, "feet"),
  34929. weight: math.unit(132, "lb"),
  34930. name: "Back",
  34931. image: {
  34932. source: "./media/characters/icey/back.svg",
  34933. extra: 2624/2481,
  34934. bottom: 35/2659
  34935. }
  34936. },
  34937. },
  34938. [
  34939. {
  34940. name: "Normal",
  34941. height: math.unit(4 + 11/12, "feet"),
  34942. default: true
  34943. },
  34944. ]
  34945. ))
  34946. characterMakers.push(() => makeCharacter(
  34947. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34948. {
  34949. front: {
  34950. height: math.unit(100, "feet"),
  34951. weight: math.unit(0, "lb"),
  34952. name: "Front",
  34953. image: {
  34954. source: "./media/characters/smile/front.svg",
  34955. extra: 2983/2912,
  34956. bottom: 162/3145
  34957. }
  34958. },
  34959. back: {
  34960. height: math.unit(100, "feet"),
  34961. weight: math.unit(0, "lb"),
  34962. name: "Back",
  34963. image: {
  34964. source: "./media/characters/smile/back.svg",
  34965. extra: 3143/3031,
  34966. bottom: 91/3234
  34967. }
  34968. },
  34969. head: {
  34970. height: math.unit(26.3, "feet"),
  34971. weight: math.unit(0, "lb"),
  34972. name: "Head",
  34973. image: {
  34974. source: "./media/characters/smile/head.svg"
  34975. }
  34976. },
  34977. collar: {
  34978. height: math.unit(5.3, "feet"),
  34979. weight: math.unit(0, "lb"),
  34980. name: "Collar",
  34981. image: {
  34982. source: "./media/characters/smile/collar.svg"
  34983. }
  34984. },
  34985. },
  34986. [
  34987. {
  34988. name: "Macro",
  34989. height: math.unit(100, "feet"),
  34990. default: true
  34991. },
  34992. ]
  34993. ))
  34994. characterMakers.push(() => makeCharacter(
  34995. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34996. {
  34997. dragon: {
  34998. height: math.unit(26, "feet"),
  34999. weight: math.unit(36, "tons"),
  35000. name: "Dragon",
  35001. image: {
  35002. source: "./media/characters/arimphae/dragon.svg",
  35003. extra: 1574/983,
  35004. bottom: 357/1931
  35005. }
  35006. },
  35007. drake: {
  35008. height: math.unit(9, "feet"),
  35009. weight: math.unit(1.5, "tons"),
  35010. name: "Drake",
  35011. image: {
  35012. source: "./media/characters/arimphae/drake.svg",
  35013. extra: 1120/925,
  35014. bottom: 435/1555
  35015. }
  35016. },
  35017. },
  35018. [
  35019. {
  35020. name: "Small",
  35021. height: math.unit(26*5/9, "feet")
  35022. },
  35023. {
  35024. name: "Normal",
  35025. height: math.unit(26, "feet"),
  35026. default: true
  35027. },
  35028. ]
  35029. ))
  35030. characterMakers.push(() => makeCharacter(
  35031. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35032. {
  35033. front: {
  35034. height: math.unit(8 + 9/12, "feet"),
  35035. name: "Front",
  35036. image: {
  35037. source: "./media/characters/xander/front.svg",
  35038. extra: 1237/974,
  35039. bottom: 94/1331
  35040. }
  35041. },
  35042. },
  35043. [
  35044. {
  35045. name: "Normal",
  35046. height: math.unit(8 + 9/12, "feet"),
  35047. default: true
  35048. },
  35049. {
  35050. name: "Gaze Grabber",
  35051. height: math.unit(13 + 8/12, "feet")
  35052. },
  35053. {
  35054. name: "Jaw Dropper",
  35055. height: math.unit(27, "feet")
  35056. },
  35057. {
  35058. name: "Show Stopper",
  35059. height: math.unit(136, "feet")
  35060. },
  35061. {
  35062. name: "Superstar",
  35063. height: math.unit(1.9e6, "miles")
  35064. },
  35065. ]
  35066. ))
  35067. characterMakers.push(() => makeCharacter(
  35068. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35069. {
  35070. side: {
  35071. height: math.unit(2100, "feet"),
  35072. name: "Side",
  35073. image: {
  35074. source: "./media/characters/osiris/side.svg",
  35075. extra: 1105/939,
  35076. bottom: 167/1272
  35077. }
  35078. },
  35079. },
  35080. [
  35081. {
  35082. name: "Macro",
  35083. height: math.unit(2100, "feet"),
  35084. default: true
  35085. },
  35086. ]
  35087. ))
  35088. characterMakers.push(() => makeCharacter(
  35089. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35090. {
  35091. front: {
  35092. height: math.unit(6 + 8/12, "feet"),
  35093. weight: math.unit(225, "lb"),
  35094. name: "Front",
  35095. image: {
  35096. source: "./media/characters/rhys-londe/front.svg",
  35097. extra: 2258/2141,
  35098. bottom: 188/2446
  35099. }
  35100. },
  35101. back: {
  35102. height: math.unit(6 + 8/12, "feet"),
  35103. weight: math.unit(225, "lb"),
  35104. name: "Back",
  35105. image: {
  35106. source: "./media/characters/rhys-londe/back.svg",
  35107. extra: 2237/2137,
  35108. bottom: 63/2300
  35109. }
  35110. },
  35111. frontNsfw: {
  35112. height: math.unit(6 + 8/12, "feet"),
  35113. weight: math.unit(225, "lb"),
  35114. name: "Front (NSFW)",
  35115. image: {
  35116. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35117. extra: 2258/2141,
  35118. bottom: 188/2446
  35119. }
  35120. },
  35121. backNsfw: {
  35122. height: math.unit(6 + 8/12, "feet"),
  35123. weight: math.unit(225, "lb"),
  35124. name: "Back (NSFW)",
  35125. image: {
  35126. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35127. extra: 2237/2137,
  35128. bottom: 63/2300
  35129. }
  35130. },
  35131. dick: {
  35132. height: math.unit(30, "inches"),
  35133. name: "Dick",
  35134. image: {
  35135. source: "./media/characters/rhys-londe/dick.svg"
  35136. }
  35137. },
  35138. maw: {
  35139. height: math.unit(1.6, "feet"),
  35140. name: "Maw",
  35141. image: {
  35142. source: "./media/characters/rhys-londe/maw.svg"
  35143. }
  35144. },
  35145. },
  35146. [
  35147. {
  35148. name: "Normal",
  35149. height: math.unit(6 + 8/12, "feet"),
  35150. default: true
  35151. },
  35152. ]
  35153. ))
  35154. characterMakers.push(() => makeCharacter(
  35155. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35156. {
  35157. front: {
  35158. height: math.unit(3 + 10/12, "feet"),
  35159. weight: math.unit(90, "lb"),
  35160. name: "Front",
  35161. image: {
  35162. source: "./media/characters/taivas-ensim/front.svg",
  35163. extra: 1327/1216,
  35164. bottom: 96/1423
  35165. }
  35166. },
  35167. back: {
  35168. height: math.unit(3 + 10/12, "feet"),
  35169. weight: math.unit(90, "lb"),
  35170. name: "Back",
  35171. image: {
  35172. source: "./media/characters/taivas-ensim/back.svg",
  35173. extra: 1355/1247,
  35174. bottom: 11/1366
  35175. }
  35176. },
  35177. frontNsfw: {
  35178. height: math.unit(3 + 10/12, "feet"),
  35179. weight: math.unit(90, "lb"),
  35180. name: "Front (NSFW)",
  35181. image: {
  35182. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35183. extra: 1327/1216,
  35184. bottom: 96/1423
  35185. }
  35186. },
  35187. backNsfw: {
  35188. height: math.unit(3 + 10/12, "feet"),
  35189. weight: math.unit(90, "lb"),
  35190. name: "Back (NSFW)",
  35191. image: {
  35192. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35193. extra: 1355/1247,
  35194. bottom: 11/1366
  35195. }
  35196. },
  35197. },
  35198. [
  35199. {
  35200. name: "Normal",
  35201. height: math.unit(3 + 10/12, "feet"),
  35202. default: true
  35203. },
  35204. ]
  35205. ))
  35206. characterMakers.push(() => makeCharacter(
  35207. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35208. {
  35209. front: {
  35210. height: math.unit(9 + 6/12, "feet"),
  35211. weight: math.unit(940, "lb"),
  35212. name: "Front",
  35213. image: {
  35214. source: "./media/characters/byliss/front.svg",
  35215. extra: 1327/1290,
  35216. bottom: 82/1409
  35217. }
  35218. },
  35219. back: {
  35220. height: math.unit(9 + 6/12, "feet"),
  35221. weight: math.unit(940, "lb"),
  35222. name: "Back",
  35223. image: {
  35224. source: "./media/characters/byliss/back.svg",
  35225. extra: 1376/1349,
  35226. bottom: 9/1385
  35227. }
  35228. },
  35229. frontNsfw: {
  35230. height: math.unit(9 + 6/12, "feet"),
  35231. weight: math.unit(940, "lb"),
  35232. name: "Front (NSFW)",
  35233. image: {
  35234. source: "./media/characters/byliss/front-nsfw.svg",
  35235. extra: 1327/1290,
  35236. bottom: 82/1409
  35237. }
  35238. },
  35239. backNsfw: {
  35240. height: math.unit(9 + 6/12, "feet"),
  35241. weight: math.unit(940, "lb"),
  35242. name: "Back (NSFW)",
  35243. image: {
  35244. source: "./media/characters/byliss/back-nsfw.svg",
  35245. extra: 1376/1349,
  35246. bottom: 9/1385
  35247. }
  35248. },
  35249. },
  35250. [
  35251. {
  35252. name: "Normal",
  35253. height: math.unit(9 + 6/12, "feet"),
  35254. default: true
  35255. },
  35256. ]
  35257. ))
  35258. characterMakers.push(() => makeCharacter(
  35259. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35260. {
  35261. front: {
  35262. height: math.unit(5 + 2/12, "feet"),
  35263. weight: math.unit(200, "lb"),
  35264. name: "Front",
  35265. image: {
  35266. source: "./media/characters/noraly/front.svg",
  35267. extra: 4985/4773,
  35268. bottom: 150/5135
  35269. }
  35270. },
  35271. full: {
  35272. height: math.unit(5 + 2/12, "feet"),
  35273. weight: math.unit(164, "lb"),
  35274. name: "Full",
  35275. image: {
  35276. source: "./media/characters/noraly/full.svg",
  35277. extra: 1114/1059,
  35278. bottom: 35/1149
  35279. }
  35280. },
  35281. fuller: {
  35282. height: math.unit(5 + 2/12, "feet"),
  35283. weight: math.unit(230, "lb"),
  35284. name: "Fuller",
  35285. image: {
  35286. source: "./media/characters/noraly/fuller.svg",
  35287. extra: 1114/1059,
  35288. bottom: 35/1149
  35289. }
  35290. },
  35291. fullest: {
  35292. height: math.unit(5 + 2/12, "feet"),
  35293. weight: math.unit(300, "lb"),
  35294. name: "Fullest",
  35295. image: {
  35296. source: "./media/characters/noraly/fullest.svg",
  35297. extra: 1114/1059,
  35298. bottom: 35/1149
  35299. }
  35300. },
  35301. },
  35302. [
  35303. {
  35304. name: "Normal",
  35305. height: math.unit(5 + 2/12, "feet"),
  35306. default: true
  35307. },
  35308. ]
  35309. ))
  35310. characterMakers.push(() => makeCharacter(
  35311. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35312. {
  35313. front: {
  35314. height: math.unit(5 + 2/12, "feet"),
  35315. weight: math.unit(210, "lb"),
  35316. name: "Front",
  35317. image: {
  35318. source: "./media/characters/pera/front.svg",
  35319. extra: 1560/1531,
  35320. bottom: 165/1725
  35321. }
  35322. },
  35323. back: {
  35324. height: math.unit(5 + 2/12, "feet"),
  35325. weight: math.unit(210, "lb"),
  35326. name: "Back",
  35327. image: {
  35328. source: "./media/characters/pera/back.svg",
  35329. extra: 1523/1493,
  35330. bottom: 152/1675
  35331. }
  35332. },
  35333. dick: {
  35334. height: math.unit(2.4, "feet"),
  35335. name: "Dick",
  35336. image: {
  35337. source: "./media/characters/pera/dick.svg"
  35338. }
  35339. },
  35340. },
  35341. [
  35342. {
  35343. name: "Normal",
  35344. height: math.unit(5 + 2/12, "feet"),
  35345. default: true
  35346. },
  35347. ]
  35348. ))
  35349. characterMakers.push(() => makeCharacter(
  35350. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35351. {
  35352. front: {
  35353. height: math.unit(12, "feet"),
  35354. weight: math.unit(3200, "lb"),
  35355. name: "Front",
  35356. image: {
  35357. source: "./media/characters/julian/front.svg",
  35358. extra: 2962/2701,
  35359. bottom: 184/3146
  35360. }
  35361. },
  35362. maw: {
  35363. height: math.unit(5.35, "feet"),
  35364. name: "Maw",
  35365. image: {
  35366. source: "./media/characters/julian/maw.svg"
  35367. }
  35368. },
  35369. paw: {
  35370. height: math.unit(3.07, "feet"),
  35371. name: "Paw",
  35372. image: {
  35373. source: "./media/characters/julian/paw.svg"
  35374. }
  35375. },
  35376. },
  35377. [
  35378. {
  35379. name: "Default",
  35380. height: math.unit(12, "feet"),
  35381. default: true
  35382. },
  35383. {
  35384. name: "Big",
  35385. height: math.unit(50, "feet")
  35386. },
  35387. {
  35388. name: "Really Big",
  35389. height: math.unit(1, "mile")
  35390. },
  35391. {
  35392. name: "Extremely Big",
  35393. height: math.unit(100, "miles")
  35394. },
  35395. {
  35396. name: "Planet Hugger",
  35397. height: math.unit(200, "megameters")
  35398. },
  35399. {
  35400. name: "Unreasonably Big",
  35401. height: math.unit(1e300, "meters")
  35402. },
  35403. ]
  35404. ))
  35405. characterMakers.push(() => makeCharacter(
  35406. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35407. {
  35408. solgooleo: {
  35409. height: math.unit(4, "meters"),
  35410. weight: math.unit(6000*1.5, "kg"),
  35411. volume: math.unit(6000, "liters"),
  35412. name: "Solgooleo",
  35413. image: {
  35414. source: "./media/characters/pi/solgooleo.svg",
  35415. extra: 388/331,
  35416. bottom: 29/417
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Normal",
  35423. height: math.unit(4, "meters"),
  35424. default: true
  35425. },
  35426. ]
  35427. ))
  35428. characterMakers.push(() => makeCharacter(
  35429. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35430. {
  35431. front: {
  35432. height: math.unit(8, "feet"),
  35433. weight: math.unit(4, "tons"),
  35434. name: "Front",
  35435. image: {
  35436. source: "./media/characters/shaun/front.svg",
  35437. extra: 503/495,
  35438. bottom: 20/523
  35439. }
  35440. },
  35441. back: {
  35442. height: math.unit(8, "feet"),
  35443. weight: math.unit(4, "tons"),
  35444. name: "Back",
  35445. image: {
  35446. source: "./media/characters/shaun/back.svg",
  35447. extra: 487/480,
  35448. bottom: 20/507
  35449. }
  35450. },
  35451. },
  35452. [
  35453. {
  35454. name: "Lorg",
  35455. height: math.unit(8, "feet"),
  35456. default: true
  35457. },
  35458. ]
  35459. ))
  35460. characterMakers.push(() => makeCharacter(
  35461. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35462. {
  35463. frontAnthro: {
  35464. height: math.unit(7, "feet"),
  35465. name: "Front",
  35466. image: {
  35467. source: "./media/characters/sini/front-anthro.svg",
  35468. extra: 726/678,
  35469. bottom: 35/761
  35470. },
  35471. form: "anthro",
  35472. default: true
  35473. },
  35474. backAnthro: {
  35475. height: math.unit(7, "feet"),
  35476. name: "Back",
  35477. image: {
  35478. source: "./media/characters/sini/back-anthro.svg",
  35479. extra: 743/701,
  35480. bottom: 12/755
  35481. },
  35482. form: "anthro",
  35483. },
  35484. frontAnthroNsfw: {
  35485. height: math.unit(7, "feet"),
  35486. name: "Front (NSFW)",
  35487. image: {
  35488. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35489. extra: 726/678,
  35490. bottom: 35/761
  35491. },
  35492. form: "anthro"
  35493. },
  35494. backAnthroNsfw: {
  35495. height: math.unit(7, "feet"),
  35496. name: "Back (NSFW)",
  35497. image: {
  35498. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35499. extra: 743/701,
  35500. bottom: 12/755
  35501. },
  35502. form: "anthro",
  35503. },
  35504. mawAnthro: {
  35505. height: math.unit(2.14, "feet"),
  35506. name: "Maw",
  35507. image: {
  35508. source: "./media/characters/sini/maw-anthro.svg"
  35509. },
  35510. form: "anthro"
  35511. },
  35512. dick: {
  35513. height: math.unit(1.45, "feet"),
  35514. name: "Dick",
  35515. image: {
  35516. source: "./media/characters/sini/dick-anthro.svg"
  35517. },
  35518. form: "anthro"
  35519. },
  35520. feral: {
  35521. height: math.unit(16, "feet"),
  35522. name: "Feral",
  35523. image: {
  35524. source: "./media/characters/sini/feral.svg",
  35525. extra: 814/605,
  35526. bottom: 11/825
  35527. },
  35528. form: "feral",
  35529. default: true
  35530. },
  35531. feralNsfw: {
  35532. height: math.unit(16, "feet"),
  35533. name: "Feral (NSFW)",
  35534. image: {
  35535. source: "./media/characters/sini/feral-nsfw.svg",
  35536. extra: 814/605,
  35537. bottom: 11/825
  35538. },
  35539. form: "feral"
  35540. },
  35541. mawFeral: {
  35542. height: math.unit(5.66, "feet"),
  35543. name: "Maw",
  35544. image: {
  35545. source: "./media/characters/sini/maw-feral.svg"
  35546. },
  35547. form: "feral",
  35548. },
  35549. pawFeral: {
  35550. height: math.unit(5.17, "feet"),
  35551. name: "Paw",
  35552. image: {
  35553. source: "./media/characters/sini/paw-feral.svg"
  35554. },
  35555. form: "feral",
  35556. },
  35557. rumpFeral: {
  35558. height: math.unit(13.11, "feet"),
  35559. name: "Rump",
  35560. image: {
  35561. source: "./media/characters/sini/rump-feral.svg"
  35562. },
  35563. form: "feral",
  35564. },
  35565. dickFeral: {
  35566. height: math.unit(1, "feet"),
  35567. name: "Dick",
  35568. image: {
  35569. source: "./media/characters/sini/dick-feral.svg"
  35570. },
  35571. form: "feral",
  35572. },
  35573. eyeFeral: {
  35574. height: math.unit(1.23, "feet"),
  35575. name: "Eye",
  35576. image: {
  35577. source: "./media/characters/sini/eye-feral.svg"
  35578. },
  35579. form: "feral",
  35580. },
  35581. },
  35582. [
  35583. {
  35584. name: "Normal",
  35585. height: math.unit(7, "feet"),
  35586. default: true,
  35587. form: "anthro"
  35588. },
  35589. {
  35590. name: "Normal",
  35591. height: math.unit(16, "feet"),
  35592. default: true,
  35593. form: "feral"
  35594. },
  35595. ],
  35596. {
  35597. "anthro": {
  35598. name: "Anthro",
  35599. default: true
  35600. },
  35601. "feral": {
  35602. name: "Feral",
  35603. }
  35604. }
  35605. ))
  35606. characterMakers.push(() => makeCharacter(
  35607. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35608. {
  35609. side: {
  35610. height: math.unit(47.2, "meters"),
  35611. weight: math.unit(10000, "tons"),
  35612. name: "Side",
  35613. image: {
  35614. source: "./media/characters/raylldo/side.svg",
  35615. extra: 2363/642,
  35616. bottom: 221/2584
  35617. }
  35618. },
  35619. top: {
  35620. height: math.unit(240, "meters"),
  35621. weight: math.unit(10000, "tons"),
  35622. name: "Top",
  35623. image: {
  35624. source: "./media/characters/raylldo/top.svg"
  35625. }
  35626. },
  35627. bottom: {
  35628. height: math.unit(240, "meters"),
  35629. weight: math.unit(10000, "tons"),
  35630. name: "Bottom",
  35631. image: {
  35632. source: "./media/characters/raylldo/bottom.svg"
  35633. }
  35634. },
  35635. head: {
  35636. height: math.unit(38.6, "meters"),
  35637. name: "Head",
  35638. image: {
  35639. source: "./media/characters/raylldo/head.svg",
  35640. extra: 1335/1112,
  35641. bottom: 0/1335
  35642. }
  35643. },
  35644. maw: {
  35645. height: math.unit(16.37, "meters"),
  35646. name: "Maw",
  35647. image: {
  35648. source: "./media/characters/raylldo/maw.svg",
  35649. extra: 883/660,
  35650. bottom: 0/883
  35651. },
  35652. extraAttributes: {
  35653. preyCapacity: {
  35654. name: "Capacity",
  35655. power: 3,
  35656. type: "volume",
  35657. base: math.unit(1000, "people")
  35658. },
  35659. tongueSize: {
  35660. name: "Tongue Size",
  35661. power: 2,
  35662. type: "area",
  35663. base: math.unit(21, "m^2")
  35664. }
  35665. }
  35666. },
  35667. forepaw: {
  35668. height: math.unit(18, "meters"),
  35669. name: "Forepaw",
  35670. image: {
  35671. source: "./media/characters/raylldo/forepaw.svg"
  35672. }
  35673. },
  35674. hindpaw: {
  35675. height: math.unit(23, "meters"),
  35676. name: "Hindpaw",
  35677. image: {
  35678. source: "./media/characters/raylldo/hindpaw.svg"
  35679. }
  35680. },
  35681. genitals: {
  35682. height: math.unit(42, "meters"),
  35683. name: "Genitals",
  35684. image: {
  35685. source: "./media/characters/raylldo/genitals.svg"
  35686. }
  35687. },
  35688. },
  35689. [
  35690. {
  35691. name: "Normal",
  35692. height: math.unit(47.2, "meters"),
  35693. default: true
  35694. },
  35695. ]
  35696. ))
  35697. characterMakers.push(() => makeCharacter(
  35698. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35699. {
  35700. anthroFront: {
  35701. height: math.unit(9, "feet"),
  35702. weight: math.unit(600, "lb"),
  35703. name: "Anthro (Front)",
  35704. image: {
  35705. source: "./media/characters/glint/anthro-front.svg",
  35706. extra: 1097/1018,
  35707. bottom: 28/1125
  35708. }
  35709. },
  35710. anthroBack: {
  35711. height: math.unit(9, "feet"),
  35712. weight: math.unit(600, "lb"),
  35713. name: "Anthro (Back)",
  35714. image: {
  35715. source: "./media/characters/glint/anthro-back.svg",
  35716. extra: 1154/997,
  35717. bottom: 36/1190
  35718. }
  35719. },
  35720. feral: {
  35721. height: math.unit(11, "feet"),
  35722. weight: math.unit(50000, "lb"),
  35723. name: "Feral",
  35724. image: {
  35725. source: "./media/characters/glint/feral.svg",
  35726. extra: 3035/1585,
  35727. bottom: 1169/4204
  35728. }
  35729. },
  35730. dickAnthro: {
  35731. height: math.unit(0.7, "meters"),
  35732. name: "Dick (Anthro)",
  35733. image: {
  35734. source: "./media/characters/glint/dick-anthro.svg"
  35735. }
  35736. },
  35737. dickFeral: {
  35738. height: math.unit(2.65, "meters"),
  35739. name: "Dick (Feral)",
  35740. image: {
  35741. source: "./media/characters/glint/dick-feral.svg"
  35742. }
  35743. },
  35744. slitHidden: {
  35745. height: math.unit(5.85, "meters"),
  35746. name: "Slit (Hidden)",
  35747. image: {
  35748. source: "./media/characters/glint/slit-hidden.svg"
  35749. }
  35750. },
  35751. slitErect: {
  35752. height: math.unit(5.85, "meters"),
  35753. name: "Slit (Erect)",
  35754. image: {
  35755. source: "./media/characters/glint/slit-erect.svg"
  35756. }
  35757. },
  35758. mawAnthro: {
  35759. height: math.unit(0.63, "meters"),
  35760. name: "Maw (Anthro)",
  35761. image: {
  35762. source: "./media/characters/glint/maw.svg"
  35763. }
  35764. },
  35765. mawFeral: {
  35766. height: math.unit(2.89, "meters"),
  35767. name: "Maw (Feral)",
  35768. image: {
  35769. source: "./media/characters/glint/maw.svg"
  35770. }
  35771. },
  35772. },
  35773. [
  35774. {
  35775. name: "Normal",
  35776. height: math.unit(9, "feet"),
  35777. default: true
  35778. },
  35779. ]
  35780. ))
  35781. characterMakers.push(() => makeCharacter(
  35782. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35783. {
  35784. side: {
  35785. height: math.unit(15, "feet"),
  35786. weight: math.unit(5000, "kg"),
  35787. name: "Side",
  35788. image: {
  35789. source: "./media/characters/kairne/side.svg",
  35790. extra: 979/811,
  35791. bottom: 13/992
  35792. }
  35793. },
  35794. front: {
  35795. height: math.unit(15, "feet"),
  35796. weight: math.unit(5000, "kg"),
  35797. name: "Front",
  35798. image: {
  35799. source: "./media/characters/kairne/front.svg",
  35800. extra: 908/814,
  35801. bottom: 26/934
  35802. }
  35803. },
  35804. sideNsfw: {
  35805. height: math.unit(15, "feet"),
  35806. weight: math.unit(5000, "kg"),
  35807. name: "Side (NSFW)",
  35808. image: {
  35809. source: "./media/characters/kairne/side-nsfw.svg",
  35810. extra: 979/811,
  35811. bottom: 13/992
  35812. }
  35813. },
  35814. frontNsfw: {
  35815. height: math.unit(15, "feet"),
  35816. weight: math.unit(5000, "kg"),
  35817. name: "Front (NSFW)",
  35818. image: {
  35819. source: "./media/characters/kairne/front-nsfw.svg",
  35820. extra: 908/814,
  35821. bottom: 26/934
  35822. }
  35823. },
  35824. dickCaged: {
  35825. height: math.unit(0.65, "meters"),
  35826. name: "Dick-caged",
  35827. image: {
  35828. source: "./media/characters/kairne/dick-caged.svg"
  35829. }
  35830. },
  35831. dick: {
  35832. height: math.unit(0.79, "meters"),
  35833. name: "Dick",
  35834. image: {
  35835. source: "./media/characters/kairne/dick.svg"
  35836. }
  35837. },
  35838. genitals: {
  35839. height: math.unit(1.29, "meters"),
  35840. name: "Genitals",
  35841. image: {
  35842. source: "./media/characters/kairne/genitals.svg"
  35843. }
  35844. },
  35845. maw: {
  35846. height: math.unit(1.73, "meters"),
  35847. name: "Maw",
  35848. image: {
  35849. source: "./media/characters/kairne/maw.svg"
  35850. }
  35851. },
  35852. },
  35853. [
  35854. {
  35855. name: "Normal",
  35856. height: math.unit(15, "feet"),
  35857. default: true
  35858. },
  35859. ]
  35860. ))
  35861. characterMakers.push(() => makeCharacter(
  35862. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35863. {
  35864. front: {
  35865. height: math.unit(5 + 8/12, "feet"),
  35866. weight: math.unit(139, "lb"),
  35867. name: "Front",
  35868. image: {
  35869. source: "./media/characters/biscuit-jackal/front.svg",
  35870. extra: 2106/1961,
  35871. bottom: 58/2164
  35872. }
  35873. },
  35874. back: {
  35875. height: math.unit(5 + 8/12, "feet"),
  35876. weight: math.unit(139, "lb"),
  35877. name: "Back",
  35878. image: {
  35879. source: "./media/characters/biscuit-jackal/back.svg",
  35880. extra: 2132/1976,
  35881. bottom: 57/2189
  35882. }
  35883. },
  35884. werejackal: {
  35885. height: math.unit(6 + 3/12, "feet"),
  35886. weight: math.unit(188, "lb"),
  35887. name: "Werejackal",
  35888. image: {
  35889. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35890. extra: 2373/2178,
  35891. bottom: 53/2426
  35892. }
  35893. },
  35894. },
  35895. [
  35896. {
  35897. name: "Normal",
  35898. height: math.unit(5 + 8/12, "feet"),
  35899. default: true
  35900. },
  35901. ]
  35902. ))
  35903. characterMakers.push(() => makeCharacter(
  35904. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35905. {
  35906. front: {
  35907. height: math.unit(140, "cm"),
  35908. weight: math.unit(45, "kg"),
  35909. name: "Front",
  35910. image: {
  35911. source: "./media/characters/tayra-white/front.svg",
  35912. extra: 2229/2192,
  35913. bottom: 75/2304
  35914. }
  35915. },
  35916. },
  35917. [
  35918. {
  35919. name: "Normal",
  35920. height: math.unit(140, "cm"),
  35921. default: true
  35922. },
  35923. ]
  35924. ))
  35925. characterMakers.push(() => makeCharacter(
  35926. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35927. {
  35928. front: {
  35929. height: math.unit(4 + 5/12, "feet"),
  35930. name: "Front",
  35931. image: {
  35932. source: "./media/characters/scoop/front.svg",
  35933. extra: 1257/1136,
  35934. bottom: 69/1326
  35935. }
  35936. },
  35937. back: {
  35938. height: math.unit(4 + 5/12, "feet"),
  35939. name: "Back",
  35940. image: {
  35941. source: "./media/characters/scoop/back.svg",
  35942. extra: 1321/1152,
  35943. bottom: 32/1353
  35944. }
  35945. },
  35946. maw: {
  35947. height: math.unit(0.68, "feet"),
  35948. name: "Maw",
  35949. image: {
  35950. source: "./media/characters/scoop/maw.svg"
  35951. }
  35952. },
  35953. },
  35954. [
  35955. {
  35956. name: "Really Small",
  35957. height: math.unit(1, "mm")
  35958. },
  35959. {
  35960. name: "Micro",
  35961. height: math.unit(1, "inch")
  35962. },
  35963. {
  35964. name: "Normal",
  35965. height: math.unit(4 + 5/12, "feet"),
  35966. default: true
  35967. },
  35968. {
  35969. name: "Macro",
  35970. height: math.unit(200, "feet")
  35971. },
  35972. {
  35973. name: "Megamacro",
  35974. height: math.unit(3240, "feet")
  35975. },
  35976. {
  35977. name: "Teramacro",
  35978. height: math.unit(2500, "miles")
  35979. },
  35980. ]
  35981. ))
  35982. characterMakers.push(() => makeCharacter(
  35983. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35984. {
  35985. front: {
  35986. height: math.unit(15 + 7/12, "feet"),
  35987. weight: math.unit(1150, "tons"),
  35988. name: "Front",
  35989. image: {
  35990. source: "./media/characters/saphinara/front.svg",
  35991. extra: 1837/1643,
  35992. bottom: 84/1921
  35993. },
  35994. form: "normal",
  35995. default: true
  35996. },
  35997. side: {
  35998. height: math.unit(15 + 7/12, "feet"),
  35999. weight: math.unit(1150, "tons"),
  36000. name: "Side",
  36001. image: {
  36002. source: "./media/characters/saphinara/side.svg",
  36003. extra: 605/547,
  36004. bottom: 6/611
  36005. },
  36006. form: "normal"
  36007. },
  36008. back: {
  36009. height: math.unit(15 + 7/12, "feet"),
  36010. weight: math.unit(1150, "tons"),
  36011. name: "Back",
  36012. image: {
  36013. source: "./media/characters/saphinara/back.svg",
  36014. extra: 591/531,
  36015. bottom: 13/604
  36016. },
  36017. form: "normal"
  36018. },
  36019. frontTail: {
  36020. height: math.unit(15 + 7/12, "feet"),
  36021. weight: math.unit(1150, "tons"),
  36022. name: "Front (Full Tail)",
  36023. image: {
  36024. source: "./media/characters/saphinara/front-tail.svg",
  36025. extra: 2256/1630,
  36026. bottom: 261/2517
  36027. },
  36028. form: "normal"
  36029. },
  36030. insides: {
  36031. height: math.unit(11.92, "feet"),
  36032. name: "Insides",
  36033. image: {
  36034. source: "./media/characters/saphinara/insides.svg"
  36035. },
  36036. form: "normal"
  36037. },
  36038. head: {
  36039. height: math.unit(4.17, "feet"),
  36040. name: "Head",
  36041. image: {
  36042. source: "./media/characters/saphinara/head.svg"
  36043. },
  36044. form: "normal"
  36045. },
  36046. tongue: {
  36047. height: math.unit(4.60, "feet"),
  36048. name: "Tongue",
  36049. image: {
  36050. source: "./media/characters/saphinara/tongue.svg"
  36051. },
  36052. form: "normal"
  36053. },
  36054. headEnraged: {
  36055. height: math.unit(5.55, "feet"),
  36056. name: "Head (Enraged)",
  36057. image: {
  36058. source: "./media/characters/saphinara/head-enraged.svg"
  36059. },
  36060. form: "normal"
  36061. },
  36062. wings: {
  36063. height: math.unit(11.95, "feet"),
  36064. name: "Wings",
  36065. image: {
  36066. source: "./media/characters/saphinara/wings.svg"
  36067. },
  36068. form: "normal"
  36069. },
  36070. feathers: {
  36071. height: math.unit(8.92, "feet"),
  36072. name: "Feathers",
  36073. image: {
  36074. source: "./media/characters/saphinara/feathers.svg"
  36075. },
  36076. form: "normal"
  36077. },
  36078. shackles: {
  36079. height: math.unit(2, "feet"),
  36080. name: "Shackles",
  36081. image: {
  36082. source: "./media/characters/saphinara/shackles.svg"
  36083. },
  36084. form: "normal"
  36085. },
  36086. eyes: {
  36087. height: math.unit(1.331, "feet"),
  36088. name: "Eyes",
  36089. image: {
  36090. source: "./media/characters/saphinara/eyes.svg"
  36091. },
  36092. form: "normal"
  36093. },
  36094. eyesEnraged: {
  36095. height: math.unit(1.331, "feet"),
  36096. name: "Eyes (Enraged)",
  36097. image: {
  36098. source: "./media/characters/saphinara/eyes-enraged.svg"
  36099. },
  36100. form: "normal"
  36101. },
  36102. trueFormSide: {
  36103. height: math.unit(200, "feet"),
  36104. weight: math.unit(1e7, "tons"),
  36105. name: "Side",
  36106. image: {
  36107. source: "./media/characters/saphinara/true-form-side.svg",
  36108. extra: 1399/770,
  36109. bottom: 97/1496
  36110. },
  36111. form: "true-form",
  36112. default: true
  36113. },
  36114. trueFormMaw: {
  36115. height: math.unit(71.5, "feet"),
  36116. name: "Maw",
  36117. image: {
  36118. source: "./media/characters/saphinara/true-form-maw.svg",
  36119. extra: 2302/1453,
  36120. bottom: 0/2302
  36121. },
  36122. form: "true-form"
  36123. },
  36124. meowberusSide: {
  36125. height: math.unit(75, "feet"),
  36126. weight: math.unit(180000, "kg"),
  36127. preyCapacity: math.unit(50000, "people"),
  36128. name: "Side",
  36129. image: {
  36130. source: "./media/characters/saphinara/meowberus-side.svg",
  36131. extra: 1400/711,
  36132. bottom: 126/1526
  36133. },
  36134. form: "meowberus",
  36135. extraAttributes: {
  36136. "pawArea": {
  36137. name: "Paw Size",
  36138. power: 2,
  36139. type: "area",
  36140. base: math.unit(35, "m^2")
  36141. }
  36142. }
  36143. },
  36144. },
  36145. [
  36146. {
  36147. name: "Normal",
  36148. height: math.unit(15 + 7/12, "feet"),
  36149. default: true,
  36150. form: "normal"
  36151. },
  36152. {
  36153. name: "Angry",
  36154. height: math.unit(30 + 6/12, "feet"),
  36155. form: "normal"
  36156. },
  36157. {
  36158. name: "Enraged",
  36159. height: math.unit(102 + 1/12, "feet"),
  36160. form: "normal"
  36161. },
  36162. {
  36163. name: "True",
  36164. height: math.unit(200, "feet"),
  36165. default: true,
  36166. form: "true-form"
  36167. },
  36168. {
  36169. name: "Normal",
  36170. height: math.unit(75, "feet"),
  36171. default: true,
  36172. form: "meowberus"
  36173. },
  36174. ],
  36175. {
  36176. "normal": {
  36177. name: "Normal",
  36178. default: true
  36179. },
  36180. "true-form": {
  36181. name: "True Form"
  36182. },
  36183. "meowberus": {
  36184. name: "Meowberus",
  36185. },
  36186. }
  36187. ))
  36188. characterMakers.push(() => makeCharacter(
  36189. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36190. {
  36191. front: {
  36192. height: math.unit(6 + 8/12, "feet"),
  36193. weight: math.unit(300, "lb"),
  36194. name: "Front",
  36195. image: {
  36196. source: "./media/characters/jrain/front.svg",
  36197. extra: 3039/2865,
  36198. bottom: 399/3438
  36199. }
  36200. },
  36201. back: {
  36202. height: math.unit(6 + 8/12, "feet"),
  36203. weight: math.unit(300, "lb"),
  36204. name: "Back",
  36205. image: {
  36206. source: "./media/characters/jrain/back.svg",
  36207. extra: 3089/2938,
  36208. bottom: 172/3261
  36209. }
  36210. },
  36211. head: {
  36212. height: math.unit(2.14, "feet"),
  36213. name: "Head",
  36214. image: {
  36215. source: "./media/characters/jrain/head.svg"
  36216. }
  36217. },
  36218. maw: {
  36219. height: math.unit(1.77, "feet"),
  36220. name: "Maw",
  36221. image: {
  36222. source: "./media/characters/jrain/maw.svg"
  36223. }
  36224. },
  36225. leftHand: {
  36226. height: math.unit(1.1, "feet"),
  36227. name: "Left Hand",
  36228. image: {
  36229. source: "./media/characters/jrain/left-hand.svg"
  36230. }
  36231. },
  36232. rightHand: {
  36233. height: math.unit(1.1, "feet"),
  36234. name: "Right Hand",
  36235. image: {
  36236. source: "./media/characters/jrain/right-hand.svg"
  36237. }
  36238. },
  36239. eye: {
  36240. height: math.unit(0.35, "feet"),
  36241. name: "Eye",
  36242. image: {
  36243. source: "./media/characters/jrain/eye.svg"
  36244. }
  36245. },
  36246. },
  36247. [
  36248. {
  36249. name: "Normal",
  36250. height: math.unit(6 + 8/12, "feet"),
  36251. default: true
  36252. },
  36253. {
  36254. name: "Casually Large",
  36255. height: math.unit(25, "feet")
  36256. },
  36257. {
  36258. name: "Giant",
  36259. height: math.unit(100, "feet")
  36260. },
  36261. {
  36262. name: "Kaiju",
  36263. height: math.unit(300, "feet")
  36264. },
  36265. ]
  36266. ))
  36267. characterMakers.push(() => makeCharacter(
  36268. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36269. {
  36270. dragon: {
  36271. height: math.unit(5, "meters"),
  36272. name: "Dragon",
  36273. image: {
  36274. source: "./media/characters/sabrina/dragon.svg",
  36275. extra: 3670 / 2365,
  36276. bottom: 333 / 4003
  36277. }
  36278. },
  36279. gryphon: {
  36280. height: math.unit(3, "meters"),
  36281. name: "Gryphon",
  36282. image: {
  36283. source: "./media/characters/sabrina/gryphon.svg",
  36284. extra: 1576 / 945,
  36285. bottom: 71 / 1647
  36286. }
  36287. },
  36288. snake: {
  36289. height: math.unit(12, "meters"),
  36290. name: "Snake",
  36291. image: {
  36292. source: "./media/characters/sabrina/snake.svg",
  36293. extra: 1758 / 1320,
  36294. bottom: 186 / 1944
  36295. }
  36296. },
  36297. collar: {
  36298. height: math.unit(1.86, "meters"),
  36299. name: "Collar",
  36300. image: {
  36301. source: "./media/characters/sabrina/collar.svg"
  36302. }
  36303. },
  36304. eye: {
  36305. height: math.unit(0.53, "meters"),
  36306. name: "Eye",
  36307. image: {
  36308. source: "./media/characters/sabrina/eye.svg"
  36309. }
  36310. },
  36311. foot: {
  36312. height: math.unit(1.86, "meters"),
  36313. name: "Foot",
  36314. image: {
  36315. source: "./media/characters/sabrina/foot.svg"
  36316. }
  36317. },
  36318. hand: {
  36319. height: math.unit(1.32, "meters"),
  36320. name: "Hand",
  36321. image: {
  36322. source: "./media/characters/sabrina/hand.svg"
  36323. }
  36324. },
  36325. head: {
  36326. height: math.unit(2.44, "meters"),
  36327. name: "Head",
  36328. image: {
  36329. source: "./media/characters/sabrina/head.svg"
  36330. }
  36331. },
  36332. headAngry: {
  36333. height: math.unit(2.44, "meters"),
  36334. name: "Head (Angry))",
  36335. image: {
  36336. source: "./media/characters/sabrina/head-angry.svg"
  36337. }
  36338. },
  36339. maw: {
  36340. height: math.unit(1.65, "meters"),
  36341. name: "Maw",
  36342. image: {
  36343. source: "./media/characters/sabrina/maw.svg"
  36344. }
  36345. },
  36346. spikes: {
  36347. height: math.unit(1.69, "meters"),
  36348. name: "Spikes",
  36349. image: {
  36350. source: "./media/characters/sabrina/spikes.svg"
  36351. }
  36352. },
  36353. stomach: {
  36354. height: math.unit(1.15, "meters"),
  36355. name: "Stomach",
  36356. image: {
  36357. source: "./media/characters/sabrina/stomach.svg"
  36358. }
  36359. },
  36360. tongue: {
  36361. height: math.unit(1.27, "meters"),
  36362. name: "Tongue",
  36363. image: {
  36364. source: "./media/characters/sabrina/tongue.svg"
  36365. }
  36366. },
  36367. wingDorsal: {
  36368. height: math.unit(4.85, "meters"),
  36369. name: "Wing (Dorsal)",
  36370. image: {
  36371. source: "./media/characters/sabrina/wing-dorsal.svg"
  36372. }
  36373. },
  36374. wingVentral: {
  36375. height: math.unit(4.85, "meters"),
  36376. name: "Wing (Ventral)",
  36377. image: {
  36378. source: "./media/characters/sabrina/wing-ventral.svg"
  36379. }
  36380. },
  36381. },
  36382. [
  36383. {
  36384. name: "Normal",
  36385. height: math.unit(5, "meters"),
  36386. default: true
  36387. },
  36388. ]
  36389. ))
  36390. characterMakers.push(() => makeCharacter(
  36391. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36392. {
  36393. frontMaid: {
  36394. height: math.unit(5 + 5/12, "feet"),
  36395. weight: math.unit(130, "lb"),
  36396. name: "Front (Maid)",
  36397. image: {
  36398. source: "./media/characters/midnight-tales/front-maid.svg",
  36399. extra: 489/454,
  36400. bottom: 61/550
  36401. }
  36402. },
  36403. frontFormal: {
  36404. height: math.unit(5 + 5/12, "feet"),
  36405. weight: math.unit(130, "lb"),
  36406. name: "Front (Formal)",
  36407. image: {
  36408. source: "./media/characters/midnight-tales/front-formal.svg",
  36409. extra: 489/454,
  36410. bottom: 61/550
  36411. }
  36412. },
  36413. back: {
  36414. height: math.unit(5 + 5/12, "feet"),
  36415. weight: math.unit(130, "lb"),
  36416. name: "Back",
  36417. image: {
  36418. source: "./media/characters/midnight-tales/back.svg",
  36419. extra: 498/456,
  36420. bottom: 33/531
  36421. }
  36422. },
  36423. frontBeast: {
  36424. height: math.unit(40, "feet"),
  36425. weight: math.unit(64000, "lb"),
  36426. name: "Front (Beast)",
  36427. image: {
  36428. source: "./media/characters/midnight-tales/front-beast.svg",
  36429. extra: 927/860,
  36430. bottom: 53/980
  36431. }
  36432. },
  36433. backBeast: {
  36434. height: math.unit(40, "feet"),
  36435. weight: math.unit(64000, "lb"),
  36436. name: "Back (Beast)",
  36437. image: {
  36438. source: "./media/characters/midnight-tales/back-beast.svg",
  36439. extra: 929/855,
  36440. bottom: 16/945
  36441. }
  36442. },
  36443. footBeast: {
  36444. height: math.unit(6.7, "feet"),
  36445. name: "Foot (Beast)",
  36446. image: {
  36447. source: "./media/characters/midnight-tales/foot-beast.svg"
  36448. }
  36449. },
  36450. headBeast: {
  36451. height: math.unit(8, "feet"),
  36452. name: "Head (Beast)",
  36453. image: {
  36454. source: "./media/characters/midnight-tales/head-beast.svg"
  36455. }
  36456. },
  36457. },
  36458. [
  36459. {
  36460. name: "Normal",
  36461. height: math.unit(5 + 5 / 12, "feet"),
  36462. default: true
  36463. },
  36464. {
  36465. name: "Macro",
  36466. height: math.unit(25, "feet")
  36467. },
  36468. ]
  36469. ))
  36470. characterMakers.push(() => makeCharacter(
  36471. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36472. {
  36473. front: {
  36474. height: math.unit(5 + 10/12, "feet"),
  36475. name: "Front",
  36476. image: {
  36477. source: "./media/characters/argon/front.svg",
  36478. extra: 2009/1935,
  36479. bottom: 118/2127
  36480. }
  36481. },
  36482. back: {
  36483. height: math.unit(5 + 10/12, "feet"),
  36484. name: "Back",
  36485. image: {
  36486. source: "./media/characters/argon/back.svg",
  36487. extra: 2047/1992,
  36488. bottom: 20/2067
  36489. }
  36490. },
  36491. frontDressed: {
  36492. height: math.unit(5 + 10/12, "feet"),
  36493. name: "Front (Dressed)",
  36494. image: {
  36495. source: "./media/characters/argon/front-dressed.svg",
  36496. extra: 2009/1935,
  36497. bottom: 118/2127
  36498. }
  36499. },
  36500. },
  36501. [
  36502. {
  36503. name: "Normal",
  36504. height: math.unit(5 + 10/12, "feet"),
  36505. default: true
  36506. },
  36507. ]
  36508. ))
  36509. characterMakers.push(() => makeCharacter(
  36510. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36511. {
  36512. front: {
  36513. height: math.unit(8 + 6/12, "feet"),
  36514. weight: math.unit(1150, "lb"),
  36515. name: "Front",
  36516. image: {
  36517. source: "./media/characters/kichi/front.svg",
  36518. extra: 1267/1164,
  36519. bottom: 61/1328
  36520. }
  36521. },
  36522. back: {
  36523. height: math.unit(8 + 6/12, "feet"),
  36524. weight: math.unit(1150, "lb"),
  36525. name: "Back",
  36526. image: {
  36527. source: "./media/characters/kichi/back.svg",
  36528. extra: 1273/1166,
  36529. bottom: 33/1306
  36530. }
  36531. },
  36532. },
  36533. [
  36534. {
  36535. name: "Normal",
  36536. height: math.unit(8 + 6/12, "feet"),
  36537. default: true
  36538. },
  36539. ]
  36540. ))
  36541. characterMakers.push(() => makeCharacter(
  36542. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36543. {
  36544. front: {
  36545. height: math.unit(6, "feet"),
  36546. weight: math.unit(210, "lb"),
  36547. name: "Front",
  36548. image: {
  36549. source: "./media/characters/manetel-greyscale/front.svg",
  36550. extra: 350/312,
  36551. bottom: 8/358
  36552. }
  36553. },
  36554. },
  36555. [
  36556. {
  36557. name: "Micro",
  36558. height: math.unit(2, "inches")
  36559. },
  36560. {
  36561. name: "Normal",
  36562. height: math.unit(6, "feet"),
  36563. default: true
  36564. },
  36565. {
  36566. name: "Minimacro",
  36567. height: math.unit(17, "feet")
  36568. },
  36569. {
  36570. name: "Macro",
  36571. height: math.unit(117, "feet")
  36572. },
  36573. ]
  36574. ))
  36575. characterMakers.push(() => makeCharacter(
  36576. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36577. {
  36578. side: {
  36579. height: math.unit(5 + 1/12, "feet"),
  36580. weight: math.unit(418, "lb"),
  36581. name: "Side",
  36582. image: {
  36583. source: "./media/characters/softpurr/side.svg",
  36584. extra: 1993/1945,
  36585. bottom: 134/2127
  36586. }
  36587. },
  36588. front: {
  36589. height: math.unit(5 + 1/12, "feet"),
  36590. weight: math.unit(418, "lb"),
  36591. name: "Front",
  36592. image: {
  36593. source: "./media/characters/softpurr/front.svg",
  36594. extra: 1950/1856,
  36595. bottom: 174/2124
  36596. }
  36597. },
  36598. paw: {
  36599. height: math.unit(1, "feet"),
  36600. name: "Paw",
  36601. image: {
  36602. source: "./media/characters/softpurr/paw.svg"
  36603. }
  36604. },
  36605. },
  36606. [
  36607. {
  36608. name: "Normal",
  36609. height: math.unit(5 + 1/12, "feet"),
  36610. default: true
  36611. },
  36612. ]
  36613. ))
  36614. characterMakers.push(() => makeCharacter(
  36615. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36616. {
  36617. front: {
  36618. height: math.unit(260, "meters"),
  36619. name: "Front",
  36620. image: {
  36621. source: "./media/characters/anahita/front.svg",
  36622. extra: 665/635,
  36623. bottom: 89/754
  36624. }
  36625. },
  36626. },
  36627. [
  36628. {
  36629. name: "Macro",
  36630. height: math.unit(260, "meters"),
  36631. default: true
  36632. },
  36633. ]
  36634. ))
  36635. characterMakers.push(() => makeCharacter(
  36636. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36637. {
  36638. front: {
  36639. height: math.unit(4 + 10/12, "feet"),
  36640. weight: math.unit(160, "lb"),
  36641. name: "Front",
  36642. image: {
  36643. source: "./media/characters/chip-mouse/front.svg",
  36644. extra: 3528/3408,
  36645. bottom: 0/3528
  36646. }
  36647. },
  36648. frontNsfw: {
  36649. height: math.unit(4 + 10/12, "feet"),
  36650. weight: math.unit(160, "lb"),
  36651. name: "Front (NSFW)",
  36652. image: {
  36653. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36654. extra: 3528/3408,
  36655. bottom: 0/3528
  36656. }
  36657. },
  36658. },
  36659. [
  36660. {
  36661. name: "Normal",
  36662. height: math.unit(4 + 10/12, "feet"),
  36663. default: true
  36664. },
  36665. ]
  36666. ))
  36667. characterMakers.push(() => makeCharacter(
  36668. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36669. {
  36670. side: {
  36671. height: math.unit(10, "feet"),
  36672. weight: math.unit(14000, "lb"),
  36673. name: "Side",
  36674. image: {
  36675. source: "./media/characters/kremm/side.svg",
  36676. extra: 1390/1053,
  36677. bottom: 90/1480
  36678. }
  36679. },
  36680. gut: {
  36681. height: math.unit(5.8, "feet"),
  36682. name: "Gut",
  36683. image: {
  36684. source: "./media/characters/kremm/gut.svg"
  36685. }
  36686. },
  36687. ass: {
  36688. height: math.unit(6.1, "feet"),
  36689. name: "Ass",
  36690. image: {
  36691. source: "./media/characters/kremm/ass.svg"
  36692. }
  36693. },
  36694. jaws: {
  36695. height: math.unit(2.2, "feet"),
  36696. name: "Jaws",
  36697. image: {
  36698. source: "./media/characters/kremm/jaws.svg"
  36699. }
  36700. },
  36701. dick: {
  36702. height: math.unit(4.26, "feet"),
  36703. name: "Dick",
  36704. image: {
  36705. source: "./media/characters/kremm/dick.svg"
  36706. }
  36707. },
  36708. },
  36709. [
  36710. {
  36711. name: "Normal",
  36712. height: math.unit(10, "feet"),
  36713. default: true
  36714. },
  36715. ]
  36716. ))
  36717. characterMakers.push(() => makeCharacter(
  36718. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36719. {
  36720. front: {
  36721. height: math.unit(30, "stories"),
  36722. name: "Front",
  36723. image: {
  36724. source: "./media/characters/kai/front.svg",
  36725. extra: 1892/1718,
  36726. bottom: 162/2054
  36727. }
  36728. },
  36729. },
  36730. [
  36731. {
  36732. name: "Macro",
  36733. height: math.unit(30, "stories"),
  36734. default: true
  36735. },
  36736. ]
  36737. ))
  36738. characterMakers.push(() => makeCharacter(
  36739. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36740. {
  36741. front: {
  36742. height: math.unit(6 + 4/12, "feet"),
  36743. weight: math.unit(145, "lb"),
  36744. name: "Front",
  36745. image: {
  36746. source: "./media/characters/sykes/front.svg",
  36747. extra: 1321 / 1187,
  36748. bottom: 66 / 1387
  36749. }
  36750. },
  36751. back: {
  36752. height: math.unit(6 + 4/12, "feet"),
  36753. weight: math.unit(145, "lb"),
  36754. name: "Back",
  36755. image: {
  36756. source: "./media/characters/sykes/back.svg",
  36757. extra: 1326/1181,
  36758. bottom: 31/1357
  36759. }
  36760. },
  36761. traditionalOutfit: {
  36762. height: math.unit(6 + 4/12, "feet"),
  36763. weight: math.unit(145, "lb"),
  36764. name: "Traditional Outfit",
  36765. image: {
  36766. source: "./media/characters/sykes/traditional-outfit.svg",
  36767. extra: 1321 / 1187,
  36768. bottom: 66 / 1387
  36769. }
  36770. },
  36771. adventureOutfit: {
  36772. height: math.unit(6 + 4/12, "feet"),
  36773. weight: math.unit(145, "lb"),
  36774. name: "Adventure Outfit",
  36775. image: {
  36776. source: "./media/characters/sykes/adventure-outfit.svg",
  36777. extra: 1321 / 1187,
  36778. bottom: 66 / 1387
  36779. }
  36780. },
  36781. handLeft: {
  36782. height: math.unit(0.9, "feet"),
  36783. name: "Hand (Left)",
  36784. image: {
  36785. source: "./media/characters/sykes/hand-left.svg"
  36786. }
  36787. },
  36788. handRight: {
  36789. height: math.unit(0.839, "feet"),
  36790. name: "Hand (Right)",
  36791. image: {
  36792. source: "./media/characters/sykes/hand-right.svg"
  36793. }
  36794. },
  36795. leftFoot: {
  36796. height: math.unit(1.2, "feet"),
  36797. name: "Foot (Left)",
  36798. image: {
  36799. source: "./media/characters/sykes/foot-left.svg"
  36800. }
  36801. },
  36802. rightFoot: {
  36803. height: math.unit(1.2, "feet"),
  36804. name: "Foot (Right)",
  36805. image: {
  36806. source: "./media/characters/sykes/foot-right.svg"
  36807. }
  36808. },
  36809. maw: {
  36810. height: math.unit(1.93, "feet"),
  36811. name: "Maw",
  36812. image: {
  36813. source: "./media/characters/sykes/maw.svg"
  36814. }
  36815. },
  36816. teeth: {
  36817. height: math.unit(0.51, "feet"),
  36818. name: "Teeth",
  36819. image: {
  36820. source: "./media/characters/sykes/teeth.svg"
  36821. }
  36822. },
  36823. tongue: {
  36824. height: math.unit(2.13, "feet"),
  36825. name: "Tongue",
  36826. image: {
  36827. source: "./media/characters/sykes/tongue.svg"
  36828. }
  36829. },
  36830. uvula: {
  36831. height: math.unit(0.16, "feet"),
  36832. name: "Uvula",
  36833. image: {
  36834. source: "./media/characters/sykes/uvula.svg"
  36835. }
  36836. },
  36837. collar: {
  36838. height: math.unit(0.287, "feet"),
  36839. name: "Collar",
  36840. image: {
  36841. source: "./media/characters/sykes/collar.svg"
  36842. }
  36843. },
  36844. tail: {
  36845. height: math.unit(3.8, "feet"),
  36846. name: "Tail",
  36847. image: {
  36848. source: "./media/characters/sykes/tail.svg"
  36849. }
  36850. },
  36851. },
  36852. [
  36853. {
  36854. name: "Shrunken",
  36855. height: math.unit(5, "inches")
  36856. },
  36857. {
  36858. name: "Normal",
  36859. height: math.unit(6 + 4 / 12, "feet"),
  36860. default: true
  36861. },
  36862. {
  36863. name: "Big",
  36864. height: math.unit(15, "feet")
  36865. },
  36866. ]
  36867. ))
  36868. characterMakers.push(() => makeCharacter(
  36869. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36870. {
  36871. front: {
  36872. height: math.unit(5 + 8/12, "feet"),
  36873. weight: math.unit(190, "lb"),
  36874. name: "Front",
  36875. image: {
  36876. source: "./media/characters/oven-otter/front.svg",
  36877. extra: 1809/1740,
  36878. bottom: 181/1990
  36879. }
  36880. },
  36881. back: {
  36882. height: math.unit(5 + 8/12, "feet"),
  36883. weight: math.unit(190, "lb"),
  36884. name: "Back",
  36885. image: {
  36886. source: "./media/characters/oven-otter/back.svg",
  36887. extra: 1709/1635,
  36888. bottom: 118/1827
  36889. }
  36890. },
  36891. hand: {
  36892. height: math.unit(1.07, "feet"),
  36893. name: "Hand",
  36894. image: {
  36895. source: "./media/characters/oven-otter/hand.svg"
  36896. }
  36897. },
  36898. beans: {
  36899. height: math.unit(1.74, "feet"),
  36900. name: "Beans",
  36901. image: {
  36902. source: "./media/characters/oven-otter/beans.svg"
  36903. }
  36904. },
  36905. },
  36906. [
  36907. {
  36908. name: "Micro",
  36909. height: math.unit(0.5, "inches")
  36910. },
  36911. {
  36912. name: "Normal",
  36913. height: math.unit(5 + 8/12, "feet"),
  36914. default: true
  36915. },
  36916. {
  36917. name: "Macro",
  36918. height: math.unit(250, "feet")
  36919. },
  36920. {
  36921. name: "Really High",
  36922. height: math.unit(420, "feet")
  36923. },
  36924. ]
  36925. ))
  36926. characterMakers.push(() => makeCharacter(
  36927. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36928. {
  36929. front: {
  36930. height: math.unit(5, "meters"),
  36931. weight: math.unit(292000000000000, "kg"),
  36932. name: "Front",
  36933. image: {
  36934. source: "./media/characters/devourer/front.svg",
  36935. extra: 1800/1733,
  36936. bottom: 211/2011
  36937. }
  36938. },
  36939. maw: {
  36940. height: math.unit(1.1, "meter"),
  36941. name: "Maw",
  36942. image: {
  36943. source: "./media/characters/devourer/maw.svg"
  36944. }
  36945. },
  36946. },
  36947. [
  36948. {
  36949. name: "Small",
  36950. height: math.unit(3, "meters")
  36951. },
  36952. {
  36953. name: "Large",
  36954. height: math.unit(5, "meters"),
  36955. default: true
  36956. },
  36957. ]
  36958. ))
  36959. characterMakers.push(() => makeCharacter(
  36960. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36961. {
  36962. front: {
  36963. height: math.unit(6, "feet"),
  36964. weight: math.unit(400, "lb"),
  36965. name: "Front",
  36966. image: {
  36967. source: "./media/characters/ellarby/front.svg",
  36968. extra: 1909/1763,
  36969. bottom: 80/1989
  36970. }
  36971. },
  36972. back: {
  36973. height: math.unit(6, "feet"),
  36974. weight: math.unit(400, "lb"),
  36975. name: "Back",
  36976. image: {
  36977. source: "./media/characters/ellarby/back.svg",
  36978. extra: 1914/1784,
  36979. bottom: 172/2086
  36980. }
  36981. },
  36982. },
  36983. [
  36984. {
  36985. name: "Mischief",
  36986. height: math.unit(18, "inches")
  36987. },
  36988. {
  36989. name: "Trouble",
  36990. height: math.unit(12, "feet")
  36991. },
  36992. {
  36993. name: "Havoc",
  36994. height: math.unit(200, "feet"),
  36995. default: true
  36996. },
  36997. {
  36998. name: "Pandemonium",
  36999. height: math.unit(1, "mile")
  37000. },
  37001. {
  37002. name: "Catastrophe",
  37003. height: math.unit(100, "miles")
  37004. },
  37005. ]
  37006. ))
  37007. characterMakers.push(() => makeCharacter(
  37008. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37009. {
  37010. front: {
  37011. height: math.unit(4.7, "meters"),
  37012. weight: math.unit(6500, "kg"),
  37013. name: "Front",
  37014. image: {
  37015. source: "./media/characters/vex/front.svg",
  37016. extra: 1288/1140,
  37017. bottom: 100/1388
  37018. }
  37019. },
  37020. },
  37021. [
  37022. {
  37023. name: "Normal",
  37024. height: math.unit(4.7, "meters"),
  37025. default: true
  37026. },
  37027. ]
  37028. ))
  37029. characterMakers.push(() => makeCharacter(
  37030. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37031. {
  37032. normal: {
  37033. height: math.unit(6, "feet"),
  37034. weight: math.unit(350, "lb"),
  37035. name: "Normal",
  37036. image: {
  37037. source: "./media/characters/teshy/normal.svg",
  37038. extra: 1795/1735,
  37039. bottom: 16/1811
  37040. }
  37041. },
  37042. monsterFront: {
  37043. height: math.unit(12, "feet"),
  37044. weight: math.unit(4700, "lb"),
  37045. name: "Monster (Front)",
  37046. image: {
  37047. source: "./media/characters/teshy/monster-front.svg",
  37048. extra: 2042/2034,
  37049. bottom: 128/2170
  37050. }
  37051. },
  37052. monsterSide: {
  37053. height: math.unit(12, "feet"),
  37054. weight: math.unit(4700, "lb"),
  37055. name: "Monster (Side)",
  37056. image: {
  37057. source: "./media/characters/teshy/monster-side.svg",
  37058. extra: 2067/2056,
  37059. bottom: 70/2137
  37060. }
  37061. },
  37062. monsterBack: {
  37063. height: math.unit(12, "feet"),
  37064. weight: math.unit(4700, "lb"),
  37065. name: "Monster (Back)",
  37066. image: {
  37067. source: "./media/characters/teshy/monster-back.svg",
  37068. extra: 1921/1914,
  37069. bottom: 171/2092
  37070. }
  37071. },
  37072. },
  37073. [
  37074. {
  37075. name: "Normal",
  37076. height: math.unit(6, "feet"),
  37077. default: true
  37078. },
  37079. ]
  37080. ))
  37081. characterMakers.push(() => makeCharacter(
  37082. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37083. {
  37084. front: {
  37085. height: math.unit(6, "feet"),
  37086. name: "Front",
  37087. image: {
  37088. source: "./media/characters/ramey/front.svg",
  37089. extra: 790/787,
  37090. bottom: 27/817
  37091. }
  37092. },
  37093. },
  37094. [
  37095. {
  37096. name: "Normal",
  37097. height: math.unit(6, "feet"),
  37098. default: true
  37099. },
  37100. ]
  37101. ))
  37102. characterMakers.push(() => makeCharacter(
  37103. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37104. {
  37105. front: {
  37106. height: math.unit(5 + 5/12, "feet"),
  37107. weight: math.unit(120, "lb"),
  37108. name: "Front",
  37109. image: {
  37110. source: "./media/characters/phirae/front.svg",
  37111. extra: 2491/2436,
  37112. bottom: 38/2529
  37113. }
  37114. },
  37115. },
  37116. [
  37117. {
  37118. name: "Normal",
  37119. height: math.unit(5 + 5/12, "feet"),
  37120. default: true
  37121. },
  37122. ]
  37123. ))
  37124. characterMakers.push(() => makeCharacter(
  37125. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37126. {
  37127. front: {
  37128. height: math.unit(5 + 3/12, "feet"),
  37129. name: "Front",
  37130. image: {
  37131. source: "./media/characters/stagglas/front.svg",
  37132. extra: 962/882,
  37133. bottom: 53/1015
  37134. }
  37135. },
  37136. feral: {
  37137. height: math.unit(335, "cm"),
  37138. name: "Feral",
  37139. image: {
  37140. source: "./media/characters/stagglas/feral.svg",
  37141. extra: 1732/1090,
  37142. bottom: 48/1780
  37143. }
  37144. },
  37145. },
  37146. [
  37147. {
  37148. name: "Normal",
  37149. height: math.unit(5 + 3/12, "feet"),
  37150. default: true
  37151. },
  37152. ]
  37153. ))
  37154. characterMakers.push(() => makeCharacter(
  37155. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37156. {
  37157. front: {
  37158. height: math.unit(5 + 4/12, "feet"),
  37159. weight: math.unit(145, "lb"),
  37160. name: "Front",
  37161. image: {
  37162. source: "./media/characters/starra/front.svg",
  37163. extra: 1790/1691,
  37164. bottom: 91/1881
  37165. }
  37166. },
  37167. },
  37168. [
  37169. {
  37170. name: "Normal",
  37171. height: math.unit(5 + 4/12, "feet"),
  37172. default: true
  37173. },
  37174. ]
  37175. ))
  37176. characterMakers.push(() => makeCharacter(
  37177. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37178. {
  37179. front: {
  37180. height: math.unit(3.5, "meters"),
  37181. name: "Front",
  37182. image: {
  37183. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37184. extra: 1248/972,
  37185. bottom: 38/1286
  37186. }
  37187. },
  37188. },
  37189. [
  37190. {
  37191. name: "Normal",
  37192. height: math.unit(3.5, "meters"),
  37193. default: true
  37194. },
  37195. ]
  37196. ))
  37197. characterMakers.push(() => makeCharacter(
  37198. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37199. {
  37200. side: {
  37201. height: math.unit(8 + 2/12, "feet"),
  37202. weight: math.unit(1240, "lb"),
  37203. name: "Side",
  37204. image: {
  37205. source: "./media/characters/mika-valentine/side.svg",
  37206. extra: 2670/2501,
  37207. bottom: 250/2920
  37208. }
  37209. },
  37210. },
  37211. [
  37212. {
  37213. name: "Normal",
  37214. height: math.unit(8 + 2/12, "feet"),
  37215. default: true
  37216. },
  37217. ]
  37218. ))
  37219. characterMakers.push(() => makeCharacter(
  37220. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37221. {
  37222. front: {
  37223. height: math.unit(7 + 2/12, "feet"),
  37224. name: "Front",
  37225. image: {
  37226. source: "./media/characters/xoltol/front.svg",
  37227. extra: 2212/2124,
  37228. bottom: 84/2296
  37229. }
  37230. },
  37231. side: {
  37232. height: math.unit(7 + 2/12, "feet"),
  37233. name: "Side",
  37234. image: {
  37235. source: "./media/characters/xoltol/side.svg",
  37236. extra: 2273/2197,
  37237. bottom: 26/2299
  37238. }
  37239. },
  37240. hand: {
  37241. height: math.unit(2.5, "feet"),
  37242. name: "Hand",
  37243. image: {
  37244. source: "./media/characters/xoltol/hand.svg"
  37245. }
  37246. },
  37247. },
  37248. [
  37249. {
  37250. name: "Small-ish",
  37251. height: math.unit(5 + 11/12, "feet")
  37252. },
  37253. {
  37254. name: "Normal",
  37255. height: math.unit(7 + 2/12, "feet")
  37256. },
  37257. {
  37258. name: "\"Macro\"",
  37259. height: math.unit(14 + 9/12, "feet"),
  37260. default: true
  37261. },
  37262. {
  37263. name: "Alternate Height",
  37264. height: math.unit(20, "feet")
  37265. },
  37266. {
  37267. name: "Actually Macro",
  37268. height: math.unit(100, "feet")
  37269. },
  37270. ]
  37271. ))
  37272. characterMakers.push(() => makeCharacter(
  37273. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37274. {
  37275. front: {
  37276. height: math.unit(5 + 2/12, "feet"),
  37277. weight: math.unit(75, "kg"),
  37278. name: "Front",
  37279. image: {
  37280. source: "./media/characters/kotetsu-redwood/front.svg",
  37281. extra: 1053/942,
  37282. bottom: 60/1113
  37283. }
  37284. },
  37285. },
  37286. [
  37287. {
  37288. name: "Normal",
  37289. height: math.unit(5 + 2/12, "feet"),
  37290. default: true
  37291. },
  37292. ]
  37293. ))
  37294. characterMakers.push(() => makeCharacter(
  37295. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37296. {
  37297. front: {
  37298. height: math.unit(2.4, "meters"),
  37299. weight: math.unit(125, "kg"),
  37300. name: "Front",
  37301. image: {
  37302. source: "./media/characters/lilith/front.svg",
  37303. extra: 1590/1513,
  37304. bottom: 203/1793
  37305. }
  37306. },
  37307. },
  37308. [
  37309. {
  37310. name: "Humanoid",
  37311. height: math.unit(2.4, "meters")
  37312. },
  37313. {
  37314. name: "Normal",
  37315. height: math.unit(6, "meters"),
  37316. default: true
  37317. },
  37318. {
  37319. name: "Largest",
  37320. height: math.unit(55, "meters")
  37321. },
  37322. ]
  37323. ))
  37324. characterMakers.push(() => makeCharacter(
  37325. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37326. {
  37327. front: {
  37328. height: math.unit(8 + 4/12, "feet"),
  37329. weight: math.unit(535, "lb"),
  37330. name: "Front",
  37331. image: {
  37332. source: "./media/characters/beh'kah-bolger/front.svg",
  37333. extra: 1660/1603,
  37334. bottom: 37/1697
  37335. }
  37336. },
  37337. },
  37338. [
  37339. {
  37340. name: "Normal",
  37341. height: math.unit(8 + 4/12, "feet"),
  37342. default: true
  37343. },
  37344. {
  37345. name: "Kaiju",
  37346. height: math.unit(250, "feet")
  37347. },
  37348. {
  37349. name: "Still Growing",
  37350. height: math.unit(10, "miles")
  37351. },
  37352. {
  37353. name: "Continental",
  37354. height: math.unit(5000, "miles")
  37355. },
  37356. {
  37357. name: "Final Form",
  37358. height: math.unit(2500000, "miles")
  37359. },
  37360. ]
  37361. ))
  37362. characterMakers.push(() => makeCharacter(
  37363. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37364. {
  37365. front: {
  37366. height: math.unit(7 + 2/12, "feet"),
  37367. weight: math.unit(230, "kg"),
  37368. name: "Front",
  37369. image: {
  37370. source: "./media/characters/tatyana-milewska/front.svg",
  37371. extra: 1199/1150,
  37372. bottom: 86/1285
  37373. }
  37374. },
  37375. },
  37376. [
  37377. {
  37378. name: "Normal",
  37379. height: math.unit(7 + 2/12, "feet"),
  37380. default: true
  37381. },
  37382. {
  37383. name: "Big",
  37384. height: math.unit(12, "feet")
  37385. },
  37386. {
  37387. name: "Minimacro",
  37388. height: math.unit(20, "feet")
  37389. },
  37390. {
  37391. name: "Macro",
  37392. height: math.unit(120, "feet")
  37393. },
  37394. ]
  37395. ))
  37396. characterMakers.push(() => makeCharacter(
  37397. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37398. {
  37399. front: {
  37400. height: math.unit(7 + 8/12, "feet"),
  37401. weight: math.unit(152, "kg"),
  37402. name: "Front",
  37403. image: {
  37404. source: "./media/characters/helen-arri/front.svg",
  37405. extra: 440/423,
  37406. bottom: 14/454
  37407. }
  37408. },
  37409. back: {
  37410. height: math.unit(7 + 8/12, "feet"),
  37411. weight: math.unit(152, "kg"),
  37412. name: "Back",
  37413. image: {
  37414. source: "./media/characters/helen-arri/back.svg",
  37415. extra: 443/426,
  37416. bottom: 8/451
  37417. }
  37418. },
  37419. },
  37420. [
  37421. {
  37422. name: "Normal",
  37423. height: math.unit(7 + 8/12, "feet"),
  37424. default: true
  37425. },
  37426. {
  37427. name: "Big",
  37428. height: math.unit(14, "feet")
  37429. },
  37430. {
  37431. name: "Minimacro",
  37432. height: math.unit(24, "feet")
  37433. },
  37434. {
  37435. name: "Macro",
  37436. height: math.unit(140, "feet")
  37437. },
  37438. ]
  37439. ))
  37440. characterMakers.push(() => makeCharacter(
  37441. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37442. {
  37443. front: {
  37444. height: math.unit(6, "meters"),
  37445. name: "Front",
  37446. image: {
  37447. source: "./media/characters/ehanu-rehu/front.svg",
  37448. extra: 1800/1800,
  37449. bottom: 59/1859
  37450. }
  37451. },
  37452. },
  37453. [
  37454. {
  37455. name: "Normal",
  37456. height: math.unit(6, "meters"),
  37457. default: true
  37458. },
  37459. ]
  37460. ))
  37461. characterMakers.push(() => makeCharacter(
  37462. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37463. {
  37464. front: {
  37465. height: math.unit(7 + 3/12, "feet"),
  37466. name: "Front",
  37467. image: {
  37468. source: "./media/characters/renholder/front.svg",
  37469. extra: 3096/2960,
  37470. bottom: 250/3346
  37471. }
  37472. },
  37473. },
  37474. [
  37475. {
  37476. name: "Normal Bat",
  37477. height: math.unit(7 + 3/12, "feet"),
  37478. default: true
  37479. },
  37480. {
  37481. name: "Slightly Tall Bat",
  37482. height: math.unit(100, "feet")
  37483. },
  37484. {
  37485. name: "Big Bat",
  37486. height: math.unit(1000, "feet")
  37487. },
  37488. {
  37489. name: "City-Sized Bat",
  37490. height: math.unit(200000, "feet")
  37491. },
  37492. {
  37493. name: "Bigger Bat",
  37494. height: math.unit(10000, "miles")
  37495. },
  37496. {
  37497. name: "Solar Sized Bat",
  37498. height: math.unit(100, "AU")
  37499. },
  37500. {
  37501. name: "Galactic Bat",
  37502. height: math.unit(200000, "lightyears")
  37503. },
  37504. {
  37505. name: "Universally Known Bat",
  37506. height: math.unit(1, "universe")
  37507. },
  37508. ]
  37509. ))
  37510. characterMakers.push(() => makeCharacter(
  37511. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37512. {
  37513. front: {
  37514. height: math.unit(6 + 11/12, "feet"),
  37515. weight: math.unit(250, "lb"),
  37516. name: "Front",
  37517. image: {
  37518. source: "./media/characters/cookiecat/front.svg",
  37519. extra: 893/827,
  37520. bottom: 14/907
  37521. }
  37522. },
  37523. },
  37524. [
  37525. {
  37526. name: "Micro",
  37527. height: math.unit(3, "inches")
  37528. },
  37529. {
  37530. name: "Normal",
  37531. height: math.unit(6 + 11/12, "feet"),
  37532. default: true
  37533. },
  37534. {
  37535. name: "Macro",
  37536. height: math.unit(100, "feet")
  37537. },
  37538. {
  37539. name: "Macro+",
  37540. height: math.unit(404, "feet")
  37541. },
  37542. {
  37543. name: "Megamacro",
  37544. height: math.unit(165, "miles")
  37545. },
  37546. {
  37547. name: "Planetary",
  37548. height: math.unit(4600, "miles")
  37549. },
  37550. ]
  37551. ))
  37552. characterMakers.push(() => makeCharacter(
  37553. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37554. {
  37555. front: {
  37556. height: math.unit(10 + 3/12, "feet"),
  37557. weight: math.unit(1500, "lb"),
  37558. name: "Front",
  37559. image: {
  37560. source: "./media/characters/tux-kusanagi/front.svg",
  37561. extra: 944/840,
  37562. bottom: 39/983
  37563. }
  37564. },
  37565. back: {
  37566. height: math.unit(10 + 3/12, "feet"),
  37567. weight: math.unit(1500, "lb"),
  37568. name: "Back",
  37569. image: {
  37570. source: "./media/characters/tux-kusanagi/back.svg",
  37571. extra: 941/842,
  37572. bottom: 28/969
  37573. }
  37574. },
  37575. rump: {
  37576. height: math.unit(5.25, "feet"),
  37577. name: "Rump",
  37578. image: {
  37579. source: "./media/characters/tux-kusanagi/rump.svg"
  37580. }
  37581. },
  37582. beak: {
  37583. height: math.unit(1.54, "feet"),
  37584. name: "Beak",
  37585. image: {
  37586. source: "./media/characters/tux-kusanagi/beak.svg"
  37587. }
  37588. },
  37589. },
  37590. [
  37591. {
  37592. name: "Normal",
  37593. height: math.unit(10 + 3/12, "feet"),
  37594. default: true
  37595. },
  37596. ]
  37597. ))
  37598. characterMakers.push(() => makeCharacter(
  37599. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37600. {
  37601. front: {
  37602. height: math.unit(58, "feet"),
  37603. weight: math.unit(200, "tons"),
  37604. name: "Front",
  37605. image: {
  37606. source: "./media/characters/uzarmazari/front.svg",
  37607. extra: 1575/1455,
  37608. bottom: 152/1727
  37609. }
  37610. },
  37611. back: {
  37612. height: math.unit(58, "feet"),
  37613. weight: math.unit(200, "tons"),
  37614. name: "Back",
  37615. image: {
  37616. source: "./media/characters/uzarmazari/back.svg",
  37617. extra: 1585/1510,
  37618. bottom: 157/1742
  37619. }
  37620. },
  37621. head: {
  37622. height: math.unit(26, "feet"),
  37623. name: "Head",
  37624. image: {
  37625. source: "./media/characters/uzarmazari/head.svg"
  37626. }
  37627. },
  37628. },
  37629. [
  37630. {
  37631. name: "Normal",
  37632. height: math.unit(58, "feet"),
  37633. default: true
  37634. },
  37635. ]
  37636. ))
  37637. characterMakers.push(() => makeCharacter(
  37638. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37639. {
  37640. side: {
  37641. height: math.unit(15, "feet"),
  37642. name: "Side",
  37643. image: {
  37644. source: "./media/characters/akitu/side.svg",
  37645. extra: 1421/1321,
  37646. bottom: 157/1578
  37647. }
  37648. },
  37649. front: {
  37650. height: math.unit(15, "feet"),
  37651. name: "Front",
  37652. image: {
  37653. source: "./media/characters/akitu/front.svg",
  37654. extra: 1435/1326,
  37655. bottom: 232/1667
  37656. }
  37657. },
  37658. },
  37659. [
  37660. {
  37661. name: "Normal",
  37662. height: math.unit(15, "feet"),
  37663. default: true
  37664. },
  37665. ]
  37666. ))
  37667. characterMakers.push(() => makeCharacter(
  37668. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37669. {
  37670. front: {
  37671. height: math.unit(10 + 8/12, "feet"),
  37672. name: "Front",
  37673. image: {
  37674. source: "./media/characters/azalie-croixland/front.svg",
  37675. extra: 1972/1856,
  37676. bottom: 31/2003
  37677. }
  37678. },
  37679. },
  37680. [
  37681. {
  37682. name: "Original Height",
  37683. height: math.unit(5 + 4/12, "feet")
  37684. },
  37685. {
  37686. name: "Normal Height",
  37687. height: math.unit(10 + 8/12, "feet"),
  37688. default: true
  37689. },
  37690. ]
  37691. ))
  37692. characterMakers.push(() => makeCharacter(
  37693. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37694. {
  37695. side: {
  37696. height: math.unit(7 + 1/12, "feet"),
  37697. weight: math.unit(245, "lb"),
  37698. name: "Side",
  37699. image: {
  37700. source: "./media/characters/kavus-kazian/side.svg",
  37701. extra: 349/342,
  37702. bottom: 15/364
  37703. }
  37704. },
  37705. },
  37706. [
  37707. {
  37708. name: "Normal",
  37709. height: math.unit(7 + 1/12, "feet"),
  37710. default: true
  37711. },
  37712. ]
  37713. ))
  37714. characterMakers.push(() => makeCharacter(
  37715. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37716. {
  37717. normalFront: {
  37718. height: math.unit(5 + 11/12, "feet"),
  37719. name: "Front",
  37720. image: {
  37721. source: "./media/characters/moonlight-rose/normal-front.svg",
  37722. extra: 1980/1825,
  37723. bottom: 18/1998
  37724. },
  37725. form: "normal",
  37726. default: true
  37727. },
  37728. normalBack: {
  37729. height: math.unit(5 + 11/12, "feet"),
  37730. name: "Back",
  37731. image: {
  37732. source: "./media/characters/moonlight-rose/normal-back.svg",
  37733. extra: 2010/1839,
  37734. bottom: 10/2020
  37735. },
  37736. form: "normal"
  37737. },
  37738. demonFront: {
  37739. height: math.unit(1.5, "earths"),
  37740. name: "Front",
  37741. image: {
  37742. source: "./media/characters/moonlight-rose/demon.svg",
  37743. extra: 1400/1294,
  37744. bottom: 45/1445
  37745. },
  37746. form: "demon",
  37747. default: true
  37748. },
  37749. terraFront: {
  37750. height: math.unit(1.5, "earths"),
  37751. name: "Front",
  37752. image: {
  37753. source: "./media/characters/moonlight-rose/terra.svg"
  37754. },
  37755. form: "terra",
  37756. default: true
  37757. },
  37758. jupiterFront: {
  37759. height: math.unit(69911*2, "km"),
  37760. name: "Front",
  37761. image: {
  37762. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37763. extra: 1367/1286,
  37764. bottom: 55/1422
  37765. },
  37766. form: "jupiter",
  37767. default: true
  37768. },
  37769. neptuneFront: {
  37770. height: math.unit(24622*2, "feet"),
  37771. name: "Front",
  37772. image: {
  37773. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37774. extra: 1851/1712,
  37775. bottom: 0/1851
  37776. },
  37777. form: "neptune",
  37778. default: true
  37779. },
  37780. },
  37781. [
  37782. {
  37783. name: "\"Natural\" Height",
  37784. height: math.unit(5 + 11/12, "feet"),
  37785. form: "normal"
  37786. },
  37787. {
  37788. name: "Smallest comfortable size",
  37789. height: math.unit(40, "meters"),
  37790. form: "normal"
  37791. },
  37792. {
  37793. name: "Common size",
  37794. height: math.unit(50, "km"),
  37795. form: "normal",
  37796. default: true
  37797. },
  37798. {
  37799. name: "Normal",
  37800. height: math.unit(1.5, "earths"),
  37801. form: "demon",
  37802. default: true
  37803. },
  37804. {
  37805. name: "Universal",
  37806. height: math.unit(15, "universes"),
  37807. form: "demon"
  37808. },
  37809. {
  37810. name: "Earth",
  37811. height: math.unit(1.5, "earths"),
  37812. form: "terra",
  37813. default: true
  37814. },
  37815. {
  37816. name: "Super Earth",
  37817. height: math.unit(67.5, "earths"),
  37818. form: "terra"
  37819. },
  37820. {
  37821. name: "Doesn't fit in a solar system...",
  37822. height: math.unit(1, "galaxy"),
  37823. form: "terra"
  37824. },
  37825. {
  37826. name: "Saturn",
  37827. height: math.unit(58232*2, "km"),
  37828. form: "jupiter"
  37829. },
  37830. {
  37831. name: "Jupiter",
  37832. height: math.unit(69911*2, "km"),
  37833. form: "jupiter",
  37834. default: true
  37835. },
  37836. {
  37837. name: "HD 100546 b",
  37838. height: math.unit(482938, "km"),
  37839. form: "jupiter"
  37840. },
  37841. {
  37842. name: "Enceladus",
  37843. height: math.unit(513*2, "km"),
  37844. form: "neptune"
  37845. },
  37846. {
  37847. name: "Europe",
  37848. height: math.unit(1560*2, "km"),
  37849. form: "neptune"
  37850. },
  37851. {
  37852. name: "Neptune",
  37853. height: math.unit(24622*2, "km"),
  37854. form: "neptune",
  37855. default: true
  37856. },
  37857. {
  37858. name: "CoRoT-9b",
  37859. height: math.unit(75067*2, "km"),
  37860. form: "neptune"
  37861. },
  37862. ],
  37863. {
  37864. "normal": {
  37865. name: "Normal",
  37866. default: true
  37867. },
  37868. "demon": {
  37869. name: "Demon"
  37870. },
  37871. "terra": {
  37872. name: "Terra"
  37873. },
  37874. "jupiter": {
  37875. name: "Jupiter"
  37876. },
  37877. "neptune": {
  37878. name: "Neptune"
  37879. }
  37880. }
  37881. ))
  37882. characterMakers.push(() => makeCharacter(
  37883. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37884. {
  37885. front: {
  37886. height: math.unit(16, "feet"),
  37887. weight: math.unit(610, "kg"),
  37888. name: "Front",
  37889. image: {
  37890. source: "./media/characters/huckle/front.svg",
  37891. extra: 1731/1625,
  37892. bottom: 33/1764
  37893. }
  37894. },
  37895. back: {
  37896. height: math.unit(16, "feet"),
  37897. weight: math.unit(610, "kg"),
  37898. name: "Back",
  37899. image: {
  37900. source: "./media/characters/huckle/back.svg",
  37901. extra: 1738/1651,
  37902. bottom: 37/1775
  37903. }
  37904. },
  37905. laughing: {
  37906. height: math.unit(3.75, "feet"),
  37907. name: "Laughing",
  37908. image: {
  37909. source: "./media/characters/huckle/laughing.svg"
  37910. }
  37911. },
  37912. angry: {
  37913. height: math.unit(4.15, "feet"),
  37914. name: "Angry",
  37915. image: {
  37916. source: "./media/characters/huckle/angry.svg"
  37917. }
  37918. },
  37919. },
  37920. [
  37921. {
  37922. name: "Normal",
  37923. height: math.unit(16, "feet"),
  37924. default: true
  37925. },
  37926. {
  37927. name: "Mini Macro",
  37928. height: math.unit(463, "feet")
  37929. },
  37930. {
  37931. name: "Macro",
  37932. height: math.unit(1680, "meters")
  37933. },
  37934. {
  37935. name: "Mega Macro",
  37936. height: math.unit(175, "km")
  37937. },
  37938. {
  37939. name: "Terra Macro",
  37940. height: math.unit(32, "gigameters")
  37941. },
  37942. {
  37943. name: "Multiverse+",
  37944. height: math.unit(2.56e23, "yottameters")
  37945. },
  37946. ]
  37947. ))
  37948. characterMakers.push(() => makeCharacter(
  37949. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37950. {
  37951. front: {
  37952. height: math.unit(6 + 9/12, "feet"),
  37953. weight: math.unit(280, "lb"),
  37954. name: "Front",
  37955. image: {
  37956. source: "./media/characters/candy/front.svg",
  37957. extra: 234/217,
  37958. bottom: 11/245
  37959. }
  37960. },
  37961. },
  37962. [
  37963. {
  37964. name: "Really Small",
  37965. height: math.unit(0.1, "nm")
  37966. },
  37967. {
  37968. name: "Micro",
  37969. height: math.unit(2, "inches")
  37970. },
  37971. {
  37972. name: "Normal",
  37973. height: math.unit(6 + 9/12, "feet"),
  37974. default: true
  37975. },
  37976. {
  37977. name: "Small Macro",
  37978. height: math.unit(69, "feet")
  37979. },
  37980. {
  37981. name: "Macro",
  37982. height: math.unit(160, "feet")
  37983. },
  37984. {
  37985. name: "Megamacro",
  37986. height: math.unit(22000, "miles")
  37987. },
  37988. {
  37989. name: "Gigamacro",
  37990. height: math.unit(50000, "miles")
  37991. },
  37992. ]
  37993. ))
  37994. characterMakers.push(() => makeCharacter(
  37995. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37996. {
  37997. front: {
  37998. height: math.unit(4, "feet"),
  37999. weight: math.unit(90, "lb"),
  38000. name: "Front",
  38001. image: {
  38002. source: "./media/characters/joey-mcdonald/front.svg",
  38003. extra: 1059/852,
  38004. bottom: 33/1092
  38005. }
  38006. },
  38007. back: {
  38008. height: math.unit(4, "feet"),
  38009. weight: math.unit(90, "lb"),
  38010. name: "Back",
  38011. image: {
  38012. source: "./media/characters/joey-mcdonald/back.svg",
  38013. extra: 1077/879,
  38014. bottom: 5/1082
  38015. }
  38016. },
  38017. frontKobold: {
  38018. height: math.unit(4, "feet"),
  38019. weight: math.unit(100, "lb"),
  38020. name: "Front-kobold",
  38021. image: {
  38022. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38023. extra: 1480/1367,
  38024. bottom: 0/1480
  38025. }
  38026. },
  38027. backKobold: {
  38028. height: math.unit(4, "feet"),
  38029. weight: math.unit(100, "lb"),
  38030. name: "Back-kobold",
  38031. image: {
  38032. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38033. extra: 1449/1361,
  38034. bottom: 0/1449
  38035. }
  38036. },
  38037. },
  38038. [
  38039. {
  38040. name: "Normal",
  38041. height: math.unit(4, "feet"),
  38042. default: true
  38043. },
  38044. ]
  38045. ))
  38046. characterMakers.push(() => makeCharacter(
  38047. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38048. {
  38049. front: {
  38050. height: math.unit(12 + 6/12, "feet"),
  38051. name: "Front",
  38052. image: {
  38053. source: "./media/characters/kass-lockheed/front.svg",
  38054. extra: 354/343,
  38055. bottom: 9/363
  38056. }
  38057. },
  38058. back: {
  38059. height: math.unit(12 + 6/12, "feet"),
  38060. name: "Back",
  38061. image: {
  38062. source: "./media/characters/kass-lockheed/back.svg",
  38063. extra: 364/352,
  38064. bottom: 3/367
  38065. }
  38066. },
  38067. dick: {
  38068. height: math.unit(3.12, "feet"),
  38069. name: "Dick",
  38070. image: {
  38071. source: "./media/characters/kass-lockheed/dick.svg"
  38072. }
  38073. },
  38074. head: {
  38075. height: math.unit(2.6, "feet"),
  38076. name: "Head",
  38077. image: {
  38078. source: "./media/characters/kass-lockheed/head.svg"
  38079. }
  38080. },
  38081. bleh: {
  38082. height: math.unit(2.85, "feet"),
  38083. name: "Bleh",
  38084. image: {
  38085. source: "./media/characters/kass-lockheed/bleh.svg"
  38086. }
  38087. },
  38088. smug: {
  38089. height: math.unit(2.85, "feet"),
  38090. name: "Smug",
  38091. image: {
  38092. source: "./media/characters/kass-lockheed/smug.svg"
  38093. }
  38094. },
  38095. },
  38096. [
  38097. {
  38098. name: "Normal",
  38099. height: math.unit(12 + 6/12, "feet"),
  38100. default: true
  38101. },
  38102. ]
  38103. ))
  38104. characterMakers.push(() => makeCharacter(
  38105. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38106. {
  38107. front: {
  38108. height: math.unit(6 + 2/12, "feet"),
  38109. name: "Front",
  38110. image: {
  38111. source: "./media/characters/taylor/front.svg",
  38112. extra: 639/495,
  38113. bottom: 12/651
  38114. }
  38115. },
  38116. },
  38117. [
  38118. {
  38119. name: "Normal",
  38120. height: math.unit(6 + 2/12, "feet"),
  38121. default: true
  38122. },
  38123. {
  38124. name: "Big",
  38125. height: math.unit(15, "feet")
  38126. },
  38127. {
  38128. name: "Lorg",
  38129. height: math.unit(80, "feet")
  38130. },
  38131. {
  38132. name: "Too Lorg",
  38133. height: math.unit(120, "feet")
  38134. },
  38135. ]
  38136. ))
  38137. characterMakers.push(() => makeCharacter(
  38138. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38139. {
  38140. front: {
  38141. height: math.unit(15, "feet"),
  38142. name: "Front",
  38143. image: {
  38144. source: "./media/characters/kaizer/front.svg",
  38145. extra: 1612/1436,
  38146. bottom: 43/1655
  38147. }
  38148. },
  38149. },
  38150. [
  38151. {
  38152. name: "Normal",
  38153. height: math.unit(15, "feet"),
  38154. default: true
  38155. },
  38156. ]
  38157. ))
  38158. characterMakers.push(() => makeCharacter(
  38159. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38160. {
  38161. front: {
  38162. height: math.unit(2, "feet"),
  38163. weight: math.unit(30, "lb"),
  38164. name: "Front",
  38165. image: {
  38166. source: "./media/characters/sandy/front.svg",
  38167. extra: 1439/1307,
  38168. bottom: 194/1633
  38169. }
  38170. },
  38171. },
  38172. [
  38173. {
  38174. name: "Normal",
  38175. height: math.unit(2, "feet"),
  38176. default: true
  38177. },
  38178. ]
  38179. ))
  38180. characterMakers.push(() => makeCharacter(
  38181. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38182. {
  38183. front: {
  38184. height: math.unit(3, "feet"),
  38185. name: "Front",
  38186. image: {
  38187. source: "./media/characters/mellvi/front.svg",
  38188. extra: 1831/1630,
  38189. bottom: 58/1889
  38190. }
  38191. },
  38192. },
  38193. [
  38194. {
  38195. name: "Normal",
  38196. height: math.unit(3, "feet"),
  38197. default: true
  38198. },
  38199. ]
  38200. ))
  38201. characterMakers.push(() => makeCharacter(
  38202. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38203. {
  38204. front: {
  38205. height: math.unit(5 + 11/12, "feet"),
  38206. weight: math.unit(200, "lb"),
  38207. name: "Front",
  38208. image: {
  38209. source: "./media/characters/shirou/front.svg",
  38210. extra: 2491/2383,
  38211. bottom: 189/2680
  38212. }
  38213. },
  38214. back: {
  38215. height: math.unit(5 + 11/12, "feet"),
  38216. weight: math.unit(200, "lb"),
  38217. name: "Back",
  38218. image: {
  38219. source: "./media/characters/shirou/back.svg",
  38220. extra: 2554/2450,
  38221. bottom: 76/2630
  38222. }
  38223. },
  38224. },
  38225. [
  38226. {
  38227. name: "Normal",
  38228. height: math.unit(5 + 11/12, "feet"),
  38229. default: true
  38230. },
  38231. ]
  38232. ))
  38233. characterMakers.push(() => makeCharacter(
  38234. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38235. {
  38236. front: {
  38237. height: math.unit(6 + 3/12, "feet"),
  38238. weight: math.unit(177, "lb"),
  38239. name: "Front",
  38240. image: {
  38241. source: "./media/characters/noryu/front.svg",
  38242. extra: 973/885,
  38243. bottom: 10/983
  38244. }
  38245. },
  38246. },
  38247. [
  38248. {
  38249. name: "Normal",
  38250. height: math.unit(6 + 3/12, "feet"),
  38251. default: true
  38252. },
  38253. ]
  38254. ))
  38255. characterMakers.push(() => makeCharacter(
  38256. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38257. {
  38258. front: {
  38259. height: math.unit(5 + 6/12, "feet"),
  38260. weight: math.unit(170, "lb"),
  38261. name: "Front",
  38262. image: {
  38263. source: "./media/characters/mevolas-rubenido/front.svg",
  38264. extra: 2109/1901,
  38265. bottom: 96/2205
  38266. }
  38267. },
  38268. },
  38269. [
  38270. {
  38271. name: "Normal",
  38272. height: math.unit(5 + 6/12, "feet"),
  38273. default: true
  38274. },
  38275. ]
  38276. ))
  38277. characterMakers.push(() => makeCharacter(
  38278. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38279. {
  38280. front: {
  38281. height: math.unit(100, "feet"),
  38282. name: "Front",
  38283. image: {
  38284. source: "./media/characters/dee/front.svg",
  38285. extra: 2153/2036,
  38286. bottom: 59/2212
  38287. }
  38288. },
  38289. back: {
  38290. height: math.unit(100, "feet"),
  38291. name: "Back",
  38292. image: {
  38293. source: "./media/characters/dee/back.svg",
  38294. extra: 2183/2058,
  38295. bottom: 75/2258
  38296. }
  38297. },
  38298. foot: {
  38299. height: math.unit(19.43, "feet"),
  38300. name: "Foot",
  38301. image: {
  38302. source: "./media/characters/dee/foot.svg"
  38303. }
  38304. },
  38305. hoof: {
  38306. height: math.unit(20.6, "feet"),
  38307. name: "Hoof",
  38308. image: {
  38309. source: "./media/characters/dee/hoof.svg"
  38310. }
  38311. },
  38312. },
  38313. [
  38314. {
  38315. name: "Macro",
  38316. height: math.unit(100, "feet"),
  38317. default: true
  38318. },
  38319. ]
  38320. ))
  38321. characterMakers.push(() => makeCharacter(
  38322. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38323. {
  38324. front: {
  38325. height: math.unit(5 + 6/12, "feet"),
  38326. name: "Front",
  38327. image: {
  38328. source: "./media/characters/teh/front.svg",
  38329. extra: 1002/847,
  38330. bottom: 62/1064
  38331. }
  38332. },
  38333. },
  38334. [
  38335. {
  38336. name: "Normal",
  38337. height: math.unit(5 + 6/12, "feet"),
  38338. default: true
  38339. },
  38340. ]
  38341. ))
  38342. characterMakers.push(() => makeCharacter(
  38343. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38344. {
  38345. side: {
  38346. height: math.unit(6 + 1/12, "feet"),
  38347. weight: math.unit(204, "lb"),
  38348. name: "Side",
  38349. image: {
  38350. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38351. extra: 974/775,
  38352. bottom: 169/1143
  38353. }
  38354. },
  38355. sitting: {
  38356. height: math.unit(6 + 2/12, "feet"),
  38357. weight: math.unit(204, "lb"),
  38358. name: "Sitting",
  38359. image: {
  38360. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38361. extra: 1175/964,
  38362. bottom: 378/1553
  38363. }
  38364. },
  38365. },
  38366. [
  38367. {
  38368. name: "Normal",
  38369. height: math.unit(6 + 1/12, "feet"),
  38370. default: true
  38371. },
  38372. ]
  38373. ))
  38374. characterMakers.push(() => makeCharacter(
  38375. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38376. {
  38377. front: {
  38378. height: math.unit(6, "inches"),
  38379. name: "Front",
  38380. image: {
  38381. source: "./media/characters/tululi/front.svg",
  38382. extra: 1997/1876,
  38383. bottom: 20/2017
  38384. }
  38385. },
  38386. },
  38387. [
  38388. {
  38389. name: "Normal",
  38390. height: math.unit(6, "inches"),
  38391. default: true
  38392. },
  38393. ]
  38394. ))
  38395. characterMakers.push(() => makeCharacter(
  38396. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38397. {
  38398. front: {
  38399. height: math.unit(4 + 1/12, "feet"),
  38400. name: "Front",
  38401. image: {
  38402. source: "./media/characters/star/front.svg",
  38403. extra: 1493/1189,
  38404. bottom: 48/1541
  38405. }
  38406. },
  38407. },
  38408. [
  38409. {
  38410. name: "Normal",
  38411. height: math.unit(4 + 1/12, "feet"),
  38412. default: true
  38413. },
  38414. ]
  38415. ))
  38416. characterMakers.push(() => makeCharacter(
  38417. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38418. {
  38419. front: {
  38420. height: math.unit(6 + 3/12, "feet"),
  38421. name: "Front",
  38422. image: {
  38423. source: "./media/characters/comet/front.svg",
  38424. extra: 1681/1462,
  38425. bottom: 26/1707
  38426. }
  38427. },
  38428. },
  38429. [
  38430. {
  38431. name: "Normal",
  38432. height: math.unit(6 + 3/12, "feet"),
  38433. default: true
  38434. },
  38435. ]
  38436. ))
  38437. characterMakers.push(() => makeCharacter(
  38438. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38439. {
  38440. front: {
  38441. height: math.unit(950, "feet"),
  38442. name: "Front",
  38443. image: {
  38444. source: "./media/characters/vortex/front.svg",
  38445. extra: 1497/1434,
  38446. bottom: 56/1553
  38447. }
  38448. },
  38449. maw: {
  38450. height: math.unit(285, "feet"),
  38451. name: "Maw",
  38452. image: {
  38453. source: "./media/characters/vortex/maw.svg"
  38454. }
  38455. },
  38456. },
  38457. [
  38458. {
  38459. name: "Macro",
  38460. height: math.unit(950, "feet"),
  38461. default: true
  38462. },
  38463. ]
  38464. ))
  38465. characterMakers.push(() => makeCharacter(
  38466. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38467. {
  38468. front: {
  38469. height: math.unit(600, "feet"),
  38470. weight: math.unit(0.02, "grams"),
  38471. name: "Front",
  38472. image: {
  38473. source: "./media/characters/doodle/front.svg",
  38474. extra: 1578/1413,
  38475. bottom: 37/1615
  38476. }
  38477. },
  38478. },
  38479. [
  38480. {
  38481. name: "Macro",
  38482. height: math.unit(600, "feet"),
  38483. default: true
  38484. },
  38485. ]
  38486. ))
  38487. characterMakers.push(() => makeCharacter(
  38488. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38489. {
  38490. front: {
  38491. height: math.unit(6 + 6/12, "feet"),
  38492. name: "Front",
  38493. image: {
  38494. source: "./media/characters/jai/front.svg",
  38495. extra: 1645/1534,
  38496. bottom: 115/1760
  38497. }
  38498. },
  38499. },
  38500. [
  38501. {
  38502. name: "Normal",
  38503. height: math.unit(6 + 6/12, "feet"),
  38504. default: true
  38505. },
  38506. ]
  38507. ))
  38508. characterMakers.push(() => makeCharacter(
  38509. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38510. {
  38511. front: {
  38512. height: math.unit(6 + 8/12, "feet"),
  38513. name: "Front",
  38514. image: {
  38515. source: "./media/characters/pixel/front.svg",
  38516. extra: 1900/1735,
  38517. bottom: 63/1963
  38518. }
  38519. },
  38520. },
  38521. [
  38522. {
  38523. name: "Normal",
  38524. height: math.unit(6 + 8/12, "feet"),
  38525. default: true
  38526. },
  38527. ]
  38528. ))
  38529. characterMakers.push(() => makeCharacter(
  38530. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38531. {
  38532. back: {
  38533. height: math.unit(4 + 1/12, "feet"),
  38534. weight: math.unit(75, "lb"),
  38535. name: "Back",
  38536. image: {
  38537. source: "./media/characters/rhett/back.svg",
  38538. extra: 930/878,
  38539. bottom: 25/955
  38540. }
  38541. },
  38542. front: {
  38543. height: math.unit(4 + 1/12, "feet"),
  38544. weight: math.unit(75, "lb"),
  38545. name: "Front",
  38546. image: {
  38547. source: "./media/characters/rhett/front.svg",
  38548. extra: 1682/1586,
  38549. bottom: 92/1774
  38550. }
  38551. },
  38552. },
  38553. [
  38554. {
  38555. name: "Micro",
  38556. height: math.unit(8, "inches")
  38557. },
  38558. {
  38559. name: "Tiny",
  38560. height: math.unit(2, "feet")
  38561. },
  38562. {
  38563. name: "Normal",
  38564. height: math.unit(4 + 1/12, "feet"),
  38565. default: true
  38566. },
  38567. ]
  38568. ))
  38569. characterMakers.push(() => makeCharacter(
  38570. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38571. {
  38572. front: {
  38573. height: math.unit(3 + 3/12, "feet"),
  38574. name: "Front",
  38575. image: {
  38576. source: "./media/characters/penny/front.svg",
  38577. extra: 1406/1311,
  38578. bottom: 26/1432
  38579. }
  38580. },
  38581. },
  38582. [
  38583. {
  38584. name: "Normal",
  38585. height: math.unit(3 + 3/12, "feet"),
  38586. default: true
  38587. },
  38588. ]
  38589. ))
  38590. characterMakers.push(() => makeCharacter(
  38591. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38592. {
  38593. front: {
  38594. height: math.unit(4 + 11/12, "feet"),
  38595. name: "Front",
  38596. image: {
  38597. source: "./media/characters/monty/front.svg",
  38598. extra: 1479/1209,
  38599. bottom: 0/1479
  38600. }
  38601. },
  38602. },
  38603. [
  38604. {
  38605. name: "Normal",
  38606. height: math.unit(4 + 11/12, "feet"),
  38607. default: true
  38608. },
  38609. ]
  38610. ))
  38611. characterMakers.push(() => makeCharacter(
  38612. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38613. {
  38614. front: {
  38615. height: math.unit(8 + 4/12, "feet"),
  38616. name: "Front",
  38617. image: {
  38618. source: "./media/characters/sterling/front.svg",
  38619. extra: 1420/1236,
  38620. bottom: 27/1447
  38621. }
  38622. },
  38623. },
  38624. [
  38625. {
  38626. name: "Normal",
  38627. height: math.unit(8 + 4/12, "feet"),
  38628. default: true
  38629. },
  38630. ]
  38631. ))
  38632. characterMakers.push(() => makeCharacter(
  38633. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38634. {
  38635. front: {
  38636. height: math.unit(15, "feet"),
  38637. name: "Front",
  38638. image: {
  38639. source: "./media/characters/marble/front.svg",
  38640. extra: 973/937,
  38641. bottom: 32/1005
  38642. }
  38643. },
  38644. },
  38645. [
  38646. {
  38647. name: "Normal",
  38648. height: math.unit(15, "feet"),
  38649. default: true
  38650. },
  38651. ]
  38652. ))
  38653. characterMakers.push(() => makeCharacter(
  38654. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38655. {
  38656. front: {
  38657. height: math.unit(3, "inches"),
  38658. name: "Front",
  38659. image: {
  38660. source: "./media/characters/powder/front.svg",
  38661. extra: 1504/1334,
  38662. bottom: 518/2022
  38663. }
  38664. },
  38665. },
  38666. [
  38667. {
  38668. name: "Normal",
  38669. height: math.unit(3, "inches"),
  38670. default: true
  38671. },
  38672. ]
  38673. ))
  38674. characterMakers.push(() => makeCharacter(
  38675. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38676. {
  38677. front: {
  38678. height: math.unit(4 + 5/12, "feet"),
  38679. name: "Front",
  38680. image: {
  38681. source: "./media/characters/joey-raccoon/front.svg",
  38682. extra: 1273/1197,
  38683. bottom: 0/1273
  38684. }
  38685. },
  38686. },
  38687. [
  38688. {
  38689. name: "Normal",
  38690. height: math.unit(4 + 5/12, "feet"),
  38691. default: true
  38692. },
  38693. ]
  38694. ))
  38695. characterMakers.push(() => makeCharacter(
  38696. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38697. {
  38698. front: {
  38699. height: math.unit(8 + 4/12, "feet"),
  38700. name: "Front",
  38701. image: {
  38702. source: "./media/characters/vick/front.svg",
  38703. extra: 2187/2118,
  38704. bottom: 47/2234
  38705. }
  38706. },
  38707. },
  38708. [
  38709. {
  38710. name: "Normal",
  38711. height: math.unit(8 + 4/12, "feet"),
  38712. default: true
  38713. },
  38714. ]
  38715. ))
  38716. characterMakers.push(() => makeCharacter(
  38717. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38718. {
  38719. front: {
  38720. height: math.unit(5 + 5/12, "feet"),
  38721. name: "Front",
  38722. image: {
  38723. source: "./media/characters/mitsy/front.svg",
  38724. extra: 1842/1695,
  38725. bottom: 0/1842
  38726. }
  38727. },
  38728. },
  38729. [
  38730. {
  38731. name: "Normal",
  38732. height: math.unit(5 + 5/12, "feet"),
  38733. default: true
  38734. },
  38735. ]
  38736. ))
  38737. characterMakers.push(() => makeCharacter(
  38738. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38739. {
  38740. front: {
  38741. height: math.unit(6 + 3/12, "feet"),
  38742. name: "Front",
  38743. image: {
  38744. source: "./media/characters/silvy/front.svg",
  38745. extra: 1995/1836,
  38746. bottom: 225/2220
  38747. }
  38748. },
  38749. },
  38750. [
  38751. {
  38752. name: "Normal",
  38753. height: math.unit(6 + 3/12, "feet"),
  38754. default: true
  38755. },
  38756. ]
  38757. ))
  38758. characterMakers.push(() => makeCharacter(
  38759. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38760. {
  38761. front: {
  38762. height: math.unit(3 + 8/12, "feet"),
  38763. name: "Front",
  38764. image: {
  38765. source: "./media/characters/rodney/front.svg",
  38766. extra: 1956/1747,
  38767. bottom: 31/1987
  38768. }
  38769. },
  38770. frontDressed: {
  38771. height: math.unit(2.9, "feet"),
  38772. name: "Front (Dressed)",
  38773. image: {
  38774. source: "./media/characters/rodney/front-dressed.svg",
  38775. extra: 1382/1241,
  38776. bottom: 385/1767
  38777. }
  38778. },
  38779. },
  38780. [
  38781. {
  38782. name: "Normal",
  38783. height: math.unit(3 + 8/12, "feet"),
  38784. default: true
  38785. },
  38786. ]
  38787. ))
  38788. characterMakers.push(() => makeCharacter(
  38789. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38790. {
  38791. front: {
  38792. height: math.unit(5 + 9/12, "feet"),
  38793. weight: math.unit(194, "lbs"),
  38794. name: "Front",
  38795. image: {
  38796. source: "./media/characters/zakail-sudekai/front.svg",
  38797. extra: 2696/2533,
  38798. bottom: 248/2944
  38799. }
  38800. },
  38801. maw: {
  38802. height: math.unit(1.35, "feet"),
  38803. name: "Maw",
  38804. image: {
  38805. source: "./media/characters/zakail-sudekai/maw.svg"
  38806. }
  38807. },
  38808. },
  38809. [
  38810. {
  38811. name: "Normal",
  38812. height: math.unit(5 + 9/12, "feet"),
  38813. default: true
  38814. },
  38815. ]
  38816. ))
  38817. characterMakers.push(() => makeCharacter(
  38818. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38819. {
  38820. front: {
  38821. height: math.unit(8 + 4/12, "feet"),
  38822. weight: math.unit(1200, "lb"),
  38823. name: "Front",
  38824. image: {
  38825. source: "./media/characters/eleanor/front.svg",
  38826. extra: 1226/1192,
  38827. bottom: 52/1278
  38828. }
  38829. },
  38830. back: {
  38831. height: math.unit(8 + 4/12, "feet"),
  38832. weight: math.unit(1200, "lb"),
  38833. name: "Back",
  38834. image: {
  38835. source: "./media/characters/eleanor/back.svg",
  38836. extra: 1242/1184,
  38837. bottom: 60/1302
  38838. }
  38839. },
  38840. head: {
  38841. height: math.unit(2.62, "feet"),
  38842. name: "Head",
  38843. image: {
  38844. source: "./media/characters/eleanor/head.svg"
  38845. }
  38846. },
  38847. },
  38848. [
  38849. {
  38850. name: "Normal",
  38851. height: math.unit(8 + 4/12, "feet"),
  38852. default: true
  38853. },
  38854. ]
  38855. ))
  38856. characterMakers.push(() => makeCharacter(
  38857. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38858. {
  38859. front: {
  38860. height: math.unit(8 + 4/12, "feet"),
  38861. weight: math.unit(750, "lb"),
  38862. name: "Front",
  38863. image: {
  38864. source: "./media/characters/tanya/front.svg",
  38865. extra: 1749/1615,
  38866. bottom: 33/1782
  38867. }
  38868. },
  38869. },
  38870. [
  38871. {
  38872. name: "Normal",
  38873. height: math.unit(8 + 4/12, "feet"),
  38874. default: true
  38875. },
  38876. ]
  38877. ))
  38878. characterMakers.push(() => makeCharacter(
  38879. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38880. {
  38881. front: {
  38882. height: math.unit(5, "feet"),
  38883. weight: math.unit(225, "lb"),
  38884. name: "Front",
  38885. image: {
  38886. source: "./media/characters/cindy/front.svg",
  38887. extra: 1320/1250,
  38888. bottom: 42/1362
  38889. }
  38890. },
  38891. frontDressed: {
  38892. height: math.unit(5, "feet"),
  38893. weight: math.unit(225, "lb"),
  38894. name: "Front (Dressed)",
  38895. image: {
  38896. source: "./media/characters/cindy/front-dressed.svg",
  38897. extra: 1320/1250,
  38898. bottom: 42/1362
  38899. }
  38900. },
  38901. back: {
  38902. height: math.unit(5, "feet"),
  38903. weight: math.unit(225, "lb"),
  38904. name: "Back",
  38905. image: {
  38906. source: "./media/characters/cindy/back.svg",
  38907. extra: 1384/1346,
  38908. bottom: 14/1398
  38909. }
  38910. },
  38911. },
  38912. [
  38913. {
  38914. name: "Normal",
  38915. height: math.unit(5, "feet"),
  38916. default: true
  38917. },
  38918. ]
  38919. ))
  38920. characterMakers.push(() => makeCharacter(
  38921. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38922. {
  38923. front: {
  38924. height: math.unit(6 + 9/12, "feet"),
  38925. weight: math.unit(440, "lb"),
  38926. name: "Front",
  38927. image: {
  38928. source: "./media/characters/wilbur-owen/front.svg",
  38929. extra: 1575/1448,
  38930. bottom: 72/1647
  38931. }
  38932. },
  38933. back: {
  38934. height: math.unit(6 + 9/12, "feet"),
  38935. weight: math.unit(440, "lb"),
  38936. name: "Back",
  38937. image: {
  38938. source: "./media/characters/wilbur-owen/back.svg",
  38939. extra: 1578/1445,
  38940. bottom: 36/1614
  38941. }
  38942. },
  38943. },
  38944. [
  38945. {
  38946. name: "Normal",
  38947. height: math.unit(6 + 9/12, "feet"),
  38948. default: true
  38949. },
  38950. ]
  38951. ))
  38952. characterMakers.push(() => makeCharacter(
  38953. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38954. {
  38955. front: {
  38956. height: math.unit(6 + 5/12, "feet"),
  38957. weight: math.unit(650, "lb"),
  38958. name: "Front",
  38959. image: {
  38960. source: "./media/characters/keegan/front.svg",
  38961. extra: 2387/2198,
  38962. bottom: 33/2420
  38963. }
  38964. },
  38965. side: {
  38966. height: math.unit(6 + 5/12, "feet"),
  38967. weight: math.unit(650, "lb"),
  38968. name: "Side",
  38969. image: {
  38970. source: "./media/characters/keegan/side.svg",
  38971. extra: 2390/2202,
  38972. bottom: 47/2437
  38973. }
  38974. },
  38975. back: {
  38976. height: math.unit(6 + 5/12, "feet"),
  38977. weight: math.unit(650, "lb"),
  38978. name: "Back",
  38979. image: {
  38980. source: "./media/characters/keegan/back.svg",
  38981. extra: 2418/2268,
  38982. bottom: 15/2433
  38983. }
  38984. },
  38985. frontSfw: {
  38986. height: math.unit(6 + 5/12, "feet"),
  38987. weight: math.unit(650, "lb"),
  38988. name: "Front (SFW)",
  38989. image: {
  38990. source: "./media/characters/keegan/front-sfw.svg",
  38991. extra: 2387/2198,
  38992. bottom: 33/2420
  38993. }
  38994. },
  38995. beans: {
  38996. height: math.unit(1.85, "feet"),
  38997. name: "Beans",
  38998. image: {
  38999. source: "./media/characters/keegan/beans.svg"
  39000. }
  39001. },
  39002. },
  39003. [
  39004. {
  39005. name: "Normal",
  39006. height: math.unit(6 + 5/12, "feet"),
  39007. default: true
  39008. },
  39009. ]
  39010. ))
  39011. characterMakers.push(() => makeCharacter(
  39012. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39013. {
  39014. front: {
  39015. height: math.unit(9, "feet"),
  39016. name: "Front",
  39017. image: {
  39018. source: "./media/characters/colton/front.svg",
  39019. extra: 1589/1326,
  39020. bottom: 139/1728
  39021. }
  39022. },
  39023. },
  39024. [
  39025. {
  39026. name: "Normal",
  39027. height: math.unit(9, "feet"),
  39028. default: true
  39029. },
  39030. ]
  39031. ))
  39032. characterMakers.push(() => makeCharacter(
  39033. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39034. {
  39035. front: {
  39036. height: math.unit(2 + 9/12, "feet"),
  39037. name: "Front",
  39038. image: {
  39039. source: "./media/characters/bora/front.svg",
  39040. extra: 1265/1250,
  39041. bottom: 24/1289
  39042. }
  39043. },
  39044. },
  39045. [
  39046. {
  39047. name: "Normal",
  39048. height: math.unit(2 + 9/12, "feet"),
  39049. default: true
  39050. },
  39051. ]
  39052. ))
  39053. characterMakers.push(() => makeCharacter(
  39054. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39055. {
  39056. front: {
  39057. height: math.unit(8, "feet"),
  39058. name: "Front",
  39059. image: {
  39060. source: "./media/characters/myu-myu/front.svg",
  39061. extra: 1949/1857,
  39062. bottom: 90/2039
  39063. }
  39064. },
  39065. },
  39066. [
  39067. {
  39068. name: "Normal",
  39069. height: math.unit(8, "feet"),
  39070. default: true
  39071. },
  39072. {
  39073. name: "Big",
  39074. height: math.unit(15, "feet")
  39075. },
  39076. {
  39077. name: "BIG",
  39078. height: math.unit(25, "feet")
  39079. },
  39080. ]
  39081. ))
  39082. characterMakers.push(() => makeCharacter(
  39083. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39084. {
  39085. side: {
  39086. height: math.unit(7 + 5/12, "feet"),
  39087. weight: math.unit(2800, "lb"),
  39088. name: "Side",
  39089. image: {
  39090. source: "./media/characters/haloren/side.svg",
  39091. extra: 1793/409,
  39092. bottom: 59/1852
  39093. }
  39094. },
  39095. frontPaw: {
  39096. height: math.unit(2.36, "feet"),
  39097. name: "Front paw",
  39098. image: {
  39099. source: "./media/characters/haloren/front-paw.svg"
  39100. }
  39101. },
  39102. hindPaw: {
  39103. height: math.unit(3.18, "feet"),
  39104. name: "Hind paw",
  39105. image: {
  39106. source: "./media/characters/haloren/hind-paw.svg"
  39107. }
  39108. },
  39109. maw: {
  39110. height: math.unit(5.05, "feet"),
  39111. name: "Maw",
  39112. image: {
  39113. source: "./media/characters/haloren/maw.svg"
  39114. }
  39115. },
  39116. dick: {
  39117. height: math.unit(2.90, "feet"),
  39118. name: "Dick",
  39119. image: {
  39120. source: "./media/characters/haloren/dick.svg"
  39121. }
  39122. },
  39123. },
  39124. [
  39125. {
  39126. name: "Normal",
  39127. height: math.unit(7 + 5/12, "feet"),
  39128. default: true
  39129. },
  39130. {
  39131. name: "Enhanced",
  39132. height: math.unit(14 + 3/12, "feet")
  39133. },
  39134. ]
  39135. ))
  39136. characterMakers.push(() => makeCharacter(
  39137. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39138. {
  39139. front: {
  39140. height: math.unit(171, "cm"),
  39141. name: "Front",
  39142. image: {
  39143. source: "./media/characters/kimmy/front.svg",
  39144. extra: 1491/1435,
  39145. bottom: 53/1544
  39146. }
  39147. },
  39148. },
  39149. [
  39150. {
  39151. name: "Small",
  39152. height: math.unit(9, "cm")
  39153. },
  39154. {
  39155. name: "Normal",
  39156. height: math.unit(171, "cm"),
  39157. default: true
  39158. },
  39159. ]
  39160. ))
  39161. characterMakers.push(() => makeCharacter(
  39162. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39163. {
  39164. front: {
  39165. height: math.unit(8, "feet"),
  39166. weight: math.unit(300, "lb"),
  39167. name: "Front",
  39168. image: {
  39169. source: "./media/characters/galeboomer/front.svg",
  39170. extra: 4651/4415,
  39171. bottom: 162/4813
  39172. }
  39173. },
  39174. back: {
  39175. height: math.unit(8, "feet"),
  39176. weight: math.unit(300, "lb"),
  39177. name: "Back",
  39178. image: {
  39179. source: "./media/characters/galeboomer/back.svg",
  39180. extra: 4544/4314,
  39181. bottom: 16/4560
  39182. }
  39183. },
  39184. frontAlt: {
  39185. height: math.unit(8, "feet"),
  39186. weight: math.unit(300, "lb"),
  39187. name: "Front (Alt)",
  39188. image: {
  39189. source: "./media/characters/galeboomer/front-alt.svg",
  39190. extra: 4458/4228,
  39191. bottom: 68/4526
  39192. }
  39193. },
  39194. maw: {
  39195. height: math.unit(1.2, "feet"),
  39196. name: "Maw",
  39197. image: {
  39198. source: "./media/characters/galeboomer/maw.svg"
  39199. }
  39200. },
  39201. },
  39202. [
  39203. {
  39204. name: "Normal",
  39205. height: math.unit(8, "feet"),
  39206. default: true
  39207. },
  39208. ]
  39209. ))
  39210. characterMakers.push(() => makeCharacter(
  39211. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39212. {
  39213. front: {
  39214. height: math.unit(5 + 9/12, "feet"),
  39215. weight: math.unit(120, "lb"),
  39216. name: "Front",
  39217. image: {
  39218. source: "./media/characters/chyr/front.svg",
  39219. extra: 1323/1254,
  39220. bottom: 63/1386
  39221. }
  39222. },
  39223. back: {
  39224. height: math.unit(5 + 9/12, "feet"),
  39225. weight: math.unit(120, "lb"),
  39226. name: "Back",
  39227. image: {
  39228. source: "./media/characters/chyr/back.svg",
  39229. extra: 1323/1252,
  39230. bottom: 48/1371
  39231. }
  39232. },
  39233. },
  39234. [
  39235. {
  39236. name: "Normal",
  39237. height: math.unit(5 + 9/12, "feet"),
  39238. default: true
  39239. },
  39240. ]
  39241. ))
  39242. characterMakers.push(() => makeCharacter(
  39243. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39244. {
  39245. front: {
  39246. height: math.unit(7, "feet"),
  39247. weight: math.unit(310, "lb"),
  39248. name: "Front",
  39249. image: {
  39250. source: "./media/characters/solarus/front.svg",
  39251. extra: 2415/2021,
  39252. bottom: 103/2518
  39253. }
  39254. },
  39255. back: {
  39256. height: math.unit(7, "feet"),
  39257. weight: math.unit(310, "lb"),
  39258. name: "Back",
  39259. image: {
  39260. source: "./media/characters/solarus/back.svg",
  39261. extra: 2463/2089,
  39262. bottom: 79/2542
  39263. }
  39264. },
  39265. },
  39266. [
  39267. {
  39268. name: "Normal",
  39269. height: math.unit(7, "feet"),
  39270. default: true
  39271. },
  39272. ]
  39273. ))
  39274. characterMakers.push(() => makeCharacter(
  39275. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39276. {
  39277. front: {
  39278. height: math.unit(16, "feet"),
  39279. name: "Front",
  39280. image: {
  39281. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39282. extra: 1844/1780,
  39283. bottom: 58/1902
  39284. }
  39285. },
  39286. winterCoat: {
  39287. height: math.unit(16, "feet"),
  39288. name: "Winter Coat",
  39289. image: {
  39290. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39291. extra: 1807/1775,
  39292. bottom: 69/1876
  39293. }
  39294. },
  39295. },
  39296. [
  39297. {
  39298. name: "Normal",
  39299. height: math.unit(16, "feet"),
  39300. default: true
  39301. },
  39302. {
  39303. name: "Chicago Size",
  39304. height: math.unit(560, "feet")
  39305. },
  39306. ]
  39307. ))
  39308. characterMakers.push(() => makeCharacter(
  39309. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39310. {
  39311. front: {
  39312. height: math.unit(11 + 6/12, "feet"),
  39313. weight: math.unit(1366, "lb"),
  39314. name: "Front",
  39315. image: {
  39316. source: "./media/characters/lexor/front.svg",
  39317. extra: 1560/1481,
  39318. bottom: 211/1771
  39319. }
  39320. },
  39321. back: {
  39322. height: math.unit(11 + 6/12, "feet"),
  39323. weight: math.unit(1366, "lb"),
  39324. name: "Back",
  39325. image: {
  39326. source: "./media/characters/lexor/back.svg",
  39327. extra: 1614/1533,
  39328. bottom: 76/1690
  39329. }
  39330. },
  39331. maw: {
  39332. height: math.unit(3, "feet"),
  39333. name: "Maw",
  39334. image: {
  39335. source: "./media/characters/lexor/maw.svg"
  39336. }
  39337. },
  39338. dick: {
  39339. height: math.unit(2.59, "feet"),
  39340. name: "Dick",
  39341. image: {
  39342. source: "./media/characters/lexor/dick.svg"
  39343. }
  39344. },
  39345. },
  39346. [
  39347. {
  39348. name: "Normal",
  39349. height: math.unit(11 + 6/12, "feet"),
  39350. default: true
  39351. },
  39352. ]
  39353. ))
  39354. characterMakers.push(() => makeCharacter(
  39355. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39356. {
  39357. front: {
  39358. height: math.unit(5 + 8/12, "feet"),
  39359. name: "Front",
  39360. image: {
  39361. source: "./media/characters/magnum/front.svg",
  39362. extra: 942/855,
  39363. bottom: 26/968
  39364. }
  39365. },
  39366. },
  39367. [
  39368. {
  39369. name: "Normal",
  39370. height: math.unit(5 + 8/12, "feet"),
  39371. default: true
  39372. },
  39373. ]
  39374. ))
  39375. characterMakers.push(() => makeCharacter(
  39376. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39377. {
  39378. front: {
  39379. height: math.unit(18 + 4/12, "feet"),
  39380. weight: math.unit(1500, "kg"),
  39381. name: "Front",
  39382. image: {
  39383. source: "./media/characters/solas-sharpsman/front.svg",
  39384. extra: 1698/1589,
  39385. bottom: 0/1698
  39386. }
  39387. },
  39388. },
  39389. [
  39390. {
  39391. name: "Normal",
  39392. height: math.unit(18 + 4/12, "feet"),
  39393. default: true
  39394. },
  39395. ]
  39396. ))
  39397. characterMakers.push(() => makeCharacter(
  39398. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39399. {
  39400. front: {
  39401. height: math.unit(5 + 5/12, "feet"),
  39402. weight: math.unit(180, "lb"),
  39403. name: "Front",
  39404. image: {
  39405. source: "./media/characters/october/front.svg",
  39406. extra: 1800/1650,
  39407. bottom: 0/1800
  39408. }
  39409. },
  39410. frontNsfw: {
  39411. height: math.unit(5 + 5/12, "feet"),
  39412. weight: math.unit(180, "lb"),
  39413. name: "Front (NSFW)",
  39414. image: {
  39415. source: "./media/characters/october/front-nsfw.svg",
  39416. extra: 1392/1307,
  39417. bottom: 42/1434
  39418. }
  39419. },
  39420. },
  39421. [
  39422. {
  39423. name: "Normal",
  39424. height: math.unit(5 + 5/12, "feet"),
  39425. default: true
  39426. },
  39427. ]
  39428. ))
  39429. characterMakers.push(() => makeCharacter(
  39430. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39431. {
  39432. front: {
  39433. height: math.unit(8 + 6/12, "feet"),
  39434. name: "Front",
  39435. image: {
  39436. source: "./media/characters/essynkardi/front.svg",
  39437. extra: 1541/1457,
  39438. bottom: 47/1588
  39439. }
  39440. },
  39441. },
  39442. [
  39443. {
  39444. name: "Normal",
  39445. height: math.unit(8 + 6/12, "feet"),
  39446. default: true
  39447. },
  39448. ]
  39449. ))
  39450. characterMakers.push(() => makeCharacter(
  39451. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39452. {
  39453. front: {
  39454. height: math.unit(6 + 6/12, "feet"),
  39455. weight: math.unit(7, "lb"),
  39456. name: "Front",
  39457. image: {
  39458. source: "./media/characters/icky/front.svg",
  39459. extra: 813/782,
  39460. bottom: 66/879
  39461. }
  39462. },
  39463. back: {
  39464. height: math.unit(6 + 6/12, "feet"),
  39465. weight: math.unit(7, "lb"),
  39466. name: "Back",
  39467. image: {
  39468. source: "./media/characters/icky/back.svg",
  39469. extra: 754/735,
  39470. bottom: 56/810
  39471. }
  39472. },
  39473. },
  39474. [
  39475. {
  39476. name: "Normal",
  39477. height: math.unit(6 + 6/12, "feet"),
  39478. default: true
  39479. },
  39480. ]
  39481. ))
  39482. characterMakers.push(() => makeCharacter(
  39483. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39484. {
  39485. front: {
  39486. height: math.unit(15, "feet"),
  39487. name: "Front",
  39488. image: {
  39489. source: "./media/characters/rojas/front.svg",
  39490. extra: 1462/1408,
  39491. bottom: 95/1557
  39492. }
  39493. },
  39494. back: {
  39495. height: math.unit(15, "feet"),
  39496. name: "Back",
  39497. image: {
  39498. source: "./media/characters/rojas/back.svg",
  39499. extra: 1023/954,
  39500. bottom: 28/1051
  39501. }
  39502. },
  39503. },
  39504. [
  39505. {
  39506. name: "Normal",
  39507. height: math.unit(15, "feet"),
  39508. default: true
  39509. },
  39510. ]
  39511. ))
  39512. characterMakers.push(() => makeCharacter(
  39513. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39514. {
  39515. frontHuman: {
  39516. height: math.unit(5 + 7/12, "feet"),
  39517. name: "Front (Human)",
  39518. image: {
  39519. source: "./media/characters/alek-dryagan/front-human.svg",
  39520. extra: 1687/1667,
  39521. bottom: 69/1756
  39522. }
  39523. },
  39524. backHuman: {
  39525. height: math.unit(5 + 7/12, "feet"),
  39526. name: "Back (Human)",
  39527. image: {
  39528. source: "./media/characters/alek-dryagan/back-human.svg",
  39529. extra: 1670/1649,
  39530. bottom: 65/1735
  39531. }
  39532. },
  39533. frontDemi: {
  39534. height: math.unit(65, "feet"),
  39535. name: "Front (Demi)",
  39536. image: {
  39537. source: "./media/characters/alek-dryagan/front-demi.svg",
  39538. extra: 1669/1642,
  39539. bottom: 49/1718
  39540. }
  39541. },
  39542. backDemi: {
  39543. height: math.unit(65, "feet"),
  39544. name: "Back (Demi)",
  39545. image: {
  39546. source: "./media/characters/alek-dryagan/back-demi.svg",
  39547. extra: 1658/1637,
  39548. bottom: 40/1698
  39549. }
  39550. },
  39551. mawHuman: {
  39552. height: math.unit(0.3, "feet"),
  39553. name: "Maw (Human)",
  39554. image: {
  39555. source: "./media/characters/alek-dryagan/maw-human.svg"
  39556. }
  39557. },
  39558. mawDemi: {
  39559. height: math.unit(3.8, "feet"),
  39560. name: "Maw (Demi)",
  39561. image: {
  39562. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39563. }
  39564. },
  39565. },
  39566. [
  39567. {
  39568. name: "Normal",
  39569. height: math.unit(5 + 7/12, "feet"),
  39570. default: true
  39571. },
  39572. ]
  39573. ))
  39574. characterMakers.push(() => makeCharacter(
  39575. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39576. {
  39577. frontHuman: {
  39578. height: math.unit(5 + 2/12, "feet"),
  39579. name: "Front (Human)",
  39580. image: {
  39581. source: "./media/characters/gen/front-human.svg",
  39582. extra: 1627/1538,
  39583. bottom: 71/1698
  39584. }
  39585. },
  39586. backHuman: {
  39587. height: math.unit(5 + 2/12, "feet"),
  39588. name: "Back (Human)",
  39589. image: {
  39590. source: "./media/characters/gen/back-human.svg",
  39591. extra: 1638/1548,
  39592. bottom: 69/1707
  39593. }
  39594. },
  39595. frontDemi: {
  39596. height: math.unit(5 + 2/12, "feet"),
  39597. name: "Front (Demi)",
  39598. image: {
  39599. source: "./media/characters/gen/front-demi.svg",
  39600. extra: 1627/1538,
  39601. bottom: 71/1698
  39602. }
  39603. },
  39604. backDemi: {
  39605. height: math.unit(5 + 2/12, "feet"),
  39606. name: "Back (Demi)",
  39607. image: {
  39608. source: "./media/characters/gen/back-demi.svg",
  39609. extra: 1638/1548,
  39610. bottom: 69/1707
  39611. }
  39612. },
  39613. },
  39614. [
  39615. {
  39616. name: "Normal",
  39617. height: math.unit(5 + 2/12, "feet"),
  39618. default: true
  39619. },
  39620. ]
  39621. ))
  39622. characterMakers.push(() => makeCharacter(
  39623. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39624. {
  39625. frontImp: {
  39626. height: math.unit(1 + 11/12, "feet"),
  39627. name: "Front (Imp)",
  39628. image: {
  39629. source: "./media/characters/max-kobold/front-imp.svg",
  39630. extra: 1238/1134,
  39631. bottom: 81/1319
  39632. }
  39633. },
  39634. backImp: {
  39635. height: math.unit(1 + 11/12, "feet"),
  39636. name: "Back (Imp)",
  39637. image: {
  39638. source: "./media/characters/max-kobold/back-imp.svg",
  39639. extra: 1334/1175,
  39640. bottom: 34/1368
  39641. }
  39642. },
  39643. frontDemi: {
  39644. height: math.unit(5 + 9/12, "feet"),
  39645. name: "Front (Demi)",
  39646. image: {
  39647. source: "./media/characters/max-kobold/front-demi.svg",
  39648. extra: 1715/1685,
  39649. bottom: 54/1769
  39650. }
  39651. },
  39652. backDemi: {
  39653. height: math.unit(5 + 9/12, "feet"),
  39654. name: "Back (Demi)",
  39655. image: {
  39656. source: "./media/characters/max-kobold/back-demi.svg",
  39657. extra: 1752/1729,
  39658. bottom: 41/1793
  39659. }
  39660. },
  39661. handImp: {
  39662. height: math.unit(0.45, "feet"),
  39663. name: "Hand (Imp)",
  39664. image: {
  39665. source: "./media/characters/max-kobold/hand.svg"
  39666. }
  39667. },
  39668. pawImp: {
  39669. height: math.unit(0.46, "feet"),
  39670. name: "Paw (Imp)",
  39671. image: {
  39672. source: "./media/characters/max-kobold/paw.svg"
  39673. }
  39674. },
  39675. handDemi: {
  39676. height: math.unit(0.80, "feet"),
  39677. name: "Hand (Demi)",
  39678. image: {
  39679. source: "./media/characters/max-kobold/hand.svg"
  39680. }
  39681. },
  39682. pawDemi: {
  39683. height: math.unit(1.1, "feet"),
  39684. name: "Paw (Demi)",
  39685. image: {
  39686. source: "./media/characters/max-kobold/paw.svg"
  39687. }
  39688. },
  39689. headImp: {
  39690. height: math.unit(1.33, "feet"),
  39691. name: "Head (Imp)",
  39692. image: {
  39693. source: "./media/characters/max-kobold/head-imp.svg"
  39694. }
  39695. },
  39696. mawImp: {
  39697. height: math.unit(0.75, "feet"),
  39698. name: "Maw (Imp)",
  39699. image: {
  39700. source: "./media/characters/max-kobold/maw-imp.svg"
  39701. }
  39702. },
  39703. mawDemi: {
  39704. height: math.unit(0.42, "feet"),
  39705. name: "Maw (Demi)",
  39706. image: {
  39707. source: "./media/characters/max-kobold/maw-demi.svg"
  39708. }
  39709. },
  39710. },
  39711. [
  39712. {
  39713. name: "Normal",
  39714. height: math.unit(1 + 11/12, "feet"),
  39715. default: true
  39716. },
  39717. ]
  39718. ))
  39719. characterMakers.push(() => makeCharacter(
  39720. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39721. {
  39722. front: {
  39723. height: math.unit(7 + 5/12, "feet"),
  39724. name: "Front",
  39725. image: {
  39726. source: "./media/characters/carbon/front.svg",
  39727. extra: 1754/1689,
  39728. bottom: 65/1819
  39729. }
  39730. },
  39731. back: {
  39732. height: math.unit(7 + 5/12, "feet"),
  39733. name: "Back",
  39734. image: {
  39735. source: "./media/characters/carbon/back.svg",
  39736. extra: 1762/1695,
  39737. bottom: 24/1786
  39738. }
  39739. },
  39740. frontGigantamax: {
  39741. height: math.unit(150, "feet"),
  39742. name: "Front (Gigantamax)",
  39743. image: {
  39744. source: "./media/characters/carbon/front-gigantamax.svg",
  39745. extra: 1826/1669,
  39746. bottom: 59/1885
  39747. }
  39748. },
  39749. backGigantamax: {
  39750. height: math.unit(150, "feet"),
  39751. name: "Back (Gigantamax)",
  39752. image: {
  39753. source: "./media/characters/carbon/back-gigantamax.svg",
  39754. extra: 1796/1653,
  39755. bottom: 53/1849
  39756. }
  39757. },
  39758. maw: {
  39759. height: math.unit(0.48, "feet"),
  39760. name: "Maw",
  39761. image: {
  39762. source: "./media/characters/carbon/maw.svg"
  39763. }
  39764. },
  39765. mawGigantamax: {
  39766. height: math.unit(7.5, "feet"),
  39767. name: "Maw (Gigantamax)",
  39768. image: {
  39769. source: "./media/characters/carbon/maw-gigantamax.svg"
  39770. }
  39771. },
  39772. },
  39773. [
  39774. {
  39775. name: "Normal",
  39776. height: math.unit(7 + 5/12, "feet"),
  39777. default: true
  39778. },
  39779. ]
  39780. ))
  39781. characterMakers.push(() => makeCharacter(
  39782. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39783. {
  39784. front: {
  39785. height: math.unit(6, "feet"),
  39786. name: "Front",
  39787. image: {
  39788. source: "./media/characters/maverick/front.svg",
  39789. extra: 1672/1661,
  39790. bottom: 85/1757
  39791. }
  39792. },
  39793. back: {
  39794. height: math.unit(6, "feet"),
  39795. name: "Back",
  39796. image: {
  39797. source: "./media/characters/maverick/back.svg",
  39798. extra: 1642/1631,
  39799. bottom: 38/1680
  39800. }
  39801. },
  39802. },
  39803. [
  39804. {
  39805. name: "Normal",
  39806. height: math.unit(6, "feet"),
  39807. default: true
  39808. },
  39809. ]
  39810. ))
  39811. characterMakers.push(() => makeCharacter(
  39812. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39813. {
  39814. front: {
  39815. height: math.unit(15, "feet"),
  39816. weight: math.unit(615, "lb"),
  39817. name: "Front",
  39818. image: {
  39819. source: "./media/characters/grockle/front.svg",
  39820. extra: 1535/1427,
  39821. bottom: 56/1591
  39822. }
  39823. },
  39824. },
  39825. [
  39826. {
  39827. name: "Normal",
  39828. height: math.unit(15, "feet"),
  39829. default: true
  39830. },
  39831. {
  39832. name: "Large",
  39833. height: math.unit(150, "feet")
  39834. },
  39835. {
  39836. name: "Macro",
  39837. height: math.unit(1876, "feet")
  39838. },
  39839. {
  39840. name: "Mega Macro",
  39841. height: math.unit(121940, "feet")
  39842. },
  39843. {
  39844. name: "Giga Macro",
  39845. height: math.unit(750, "km")
  39846. },
  39847. {
  39848. name: "Tera Macro",
  39849. height: math.unit(750000, "km")
  39850. },
  39851. {
  39852. name: "Galactic",
  39853. height: math.unit(1.4e5, "km")
  39854. },
  39855. {
  39856. name: "Godlike",
  39857. height: math.unit(9.8e280, "galaxies")
  39858. },
  39859. ]
  39860. ))
  39861. characterMakers.push(() => makeCharacter(
  39862. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39863. {
  39864. front: {
  39865. height: math.unit(11, "meters"),
  39866. weight: math.unit(20, "tonnes"),
  39867. name: "Front",
  39868. image: {
  39869. source: "./media/characters/alistair/front.svg",
  39870. extra: 1265/1009,
  39871. bottom: 93/1358
  39872. }
  39873. },
  39874. },
  39875. [
  39876. {
  39877. name: "Normal",
  39878. height: math.unit(11, "meters"),
  39879. default: true
  39880. },
  39881. ]
  39882. ))
  39883. characterMakers.push(() => makeCharacter(
  39884. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39885. {
  39886. front: {
  39887. height: math.unit(5 + 8/12, "feet"),
  39888. name: "Front",
  39889. image: {
  39890. source: "./media/characters/haruka/front.svg",
  39891. extra: 2012/1952,
  39892. bottom: 0/2012
  39893. }
  39894. },
  39895. },
  39896. [
  39897. {
  39898. name: "Normal",
  39899. height: math.unit(5 + 8/12, "feet"),
  39900. default: true
  39901. },
  39902. ]
  39903. ))
  39904. characterMakers.push(() => makeCharacter(
  39905. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39906. {
  39907. back: {
  39908. height: math.unit(9, "feet"),
  39909. name: "Back",
  39910. image: {
  39911. source: "./media/characters/vivian-sylveon/back.svg",
  39912. extra: 1853/1714,
  39913. bottom: 0/1853
  39914. }
  39915. },
  39916. hyper: {
  39917. height: math.unit(5.58, "feet"),
  39918. name: "Hyper",
  39919. preyCapacity: math.unit(2.80616218797, "m^3"),
  39920. image: {
  39921. source: "./media/characters/vivian-sylveon/hyper.svg",
  39922. extra: 999/676,
  39923. bottom: 697/1696
  39924. },
  39925. },
  39926. paw: {
  39927. height: math.unit(1.8, "feet"),
  39928. name: "Paw",
  39929. image: {
  39930. source: "./media/characters/vivian-sylveon/paw.svg"
  39931. }
  39932. },
  39933. danger: {
  39934. height: math.unit(7.5, "feet"),
  39935. name: "DANGER",
  39936. image: {
  39937. source: "./media/characters/vivian-sylveon/danger.svg"
  39938. }
  39939. },
  39940. },
  39941. [
  39942. {
  39943. name: "Normal",
  39944. height: math.unit(9, "feet"),
  39945. default: true
  39946. },
  39947. {
  39948. name: "Macro",
  39949. height: math.unit(500, "feet")
  39950. },
  39951. {
  39952. name: "Megamacro",
  39953. height: math.unit(600, "miles")
  39954. },
  39955. {
  39956. name: "Gigamacro",
  39957. height: math.unit(30000, "miles")
  39958. },
  39959. ]
  39960. ))
  39961. characterMakers.push(() => makeCharacter(
  39962. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39963. {
  39964. anthro: {
  39965. height: math.unit(5 + 10/12, "feet"),
  39966. weight: math.unit(100, "lb"),
  39967. name: "Anthro",
  39968. image: {
  39969. source: "./media/characters/daiki/anthro.svg",
  39970. extra: 1115/1027,
  39971. bottom: 69/1184
  39972. }
  39973. },
  39974. feral: {
  39975. height: math.unit(200, "feet"),
  39976. name: "Feral",
  39977. image: {
  39978. source: "./media/characters/daiki/feral.svg",
  39979. extra: 1256/313,
  39980. bottom: 39/1295
  39981. }
  39982. },
  39983. feralHead: {
  39984. height: math.unit(171, "feet"),
  39985. name: "Feral Head",
  39986. image: {
  39987. source: "./media/characters/daiki/feral-head.svg"
  39988. }
  39989. },
  39990. manaDragon: {
  39991. height: math.unit(170, "meters"),
  39992. name: "Mana-dragon",
  39993. image: {
  39994. source: "./media/characters/daiki/mana-dragon.svg",
  39995. extra: 763/420,
  39996. bottom: 97/860
  39997. }
  39998. },
  39999. },
  40000. [
  40001. {
  40002. name: "Normal",
  40003. height: math.unit(5 + 10/12, "feet"),
  40004. default: true
  40005. },
  40006. ]
  40007. ))
  40008. characterMakers.push(() => makeCharacter(
  40009. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40010. {
  40011. fullyEquippedFront: {
  40012. height: math.unit(3 + 1/12, "feet"),
  40013. weight: math.unit(24, "lb"),
  40014. name: "Fully Equipped (Front)",
  40015. image: {
  40016. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40017. extra: 687/605,
  40018. bottom: 18/705
  40019. }
  40020. },
  40021. fullyEquippedBack: {
  40022. height: math.unit(3 + 1/12, "feet"),
  40023. weight: math.unit(24, "lb"),
  40024. name: "Fully Equipped (Back)",
  40025. image: {
  40026. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40027. extra: 689/590,
  40028. bottom: 18/707
  40029. }
  40030. },
  40031. dailyWear: {
  40032. height: math.unit(3 + 1/12, "feet"),
  40033. weight: math.unit(24, "lb"),
  40034. name: "Daily Wear",
  40035. image: {
  40036. source: "./media/characters/tea-spot/daily-wear.svg",
  40037. extra: 701/620,
  40038. bottom: 21/722
  40039. }
  40040. },
  40041. maidWork: {
  40042. height: math.unit(3 + 1/12, "feet"),
  40043. weight: math.unit(24, "lb"),
  40044. name: "Maid Work",
  40045. image: {
  40046. source: "./media/characters/tea-spot/maid-work.svg",
  40047. extra: 693/609,
  40048. bottom: 15/708
  40049. }
  40050. },
  40051. },
  40052. [
  40053. {
  40054. name: "Normal",
  40055. height: math.unit(3 + 1/12, "feet"),
  40056. default: true
  40057. },
  40058. ]
  40059. ))
  40060. characterMakers.push(() => makeCharacter(
  40061. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40062. {
  40063. front: {
  40064. height: math.unit(175, "cm"),
  40065. weight: math.unit(75, "kg"),
  40066. name: "Front",
  40067. image: {
  40068. source: "./media/characters/chee/front.svg",
  40069. extra: 1796/1740,
  40070. bottom: 40/1836
  40071. }
  40072. },
  40073. },
  40074. [
  40075. {
  40076. name: "Micro-Micro",
  40077. height: math.unit(1, "nm")
  40078. },
  40079. {
  40080. name: "Micro-erst",
  40081. height: math.unit(1, "micrometer")
  40082. },
  40083. {
  40084. name: "Micro-er",
  40085. height: math.unit(1, "cm")
  40086. },
  40087. {
  40088. name: "Normal",
  40089. height: math.unit(175, "cm"),
  40090. default: true
  40091. },
  40092. {
  40093. name: "Macro",
  40094. height: math.unit(100, "m")
  40095. },
  40096. {
  40097. name: "Macro-er",
  40098. height: math.unit(1, "km")
  40099. },
  40100. {
  40101. name: "Macro-erst",
  40102. height: math.unit(10, "km")
  40103. },
  40104. {
  40105. name: "Macro-Macro",
  40106. height: math.unit(100, "km")
  40107. },
  40108. ]
  40109. ))
  40110. characterMakers.push(() => makeCharacter(
  40111. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40112. {
  40113. front: {
  40114. height: math.unit(11 + 9/12, "feet"),
  40115. weight: math.unit(935, "lb"),
  40116. name: "Front",
  40117. image: {
  40118. source: "./media/characters/kingsley/front.svg",
  40119. extra: 1803/1674,
  40120. bottom: 127/1930
  40121. }
  40122. },
  40123. frontNude: {
  40124. height: math.unit(11 + 9/12, "feet"),
  40125. weight: math.unit(935, "lb"),
  40126. name: "Front (Nude)",
  40127. image: {
  40128. source: "./media/characters/kingsley/front-nude.svg",
  40129. extra: 1803/1674,
  40130. bottom: 127/1930
  40131. }
  40132. },
  40133. },
  40134. [
  40135. {
  40136. name: "Normal",
  40137. height: math.unit(11 + 9/12, "feet"),
  40138. default: true
  40139. },
  40140. ]
  40141. ))
  40142. characterMakers.push(() => makeCharacter(
  40143. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40144. {
  40145. side: {
  40146. height: math.unit(9, "feet"),
  40147. name: "Side",
  40148. image: {
  40149. source: "./media/characters/rymel/side.svg",
  40150. extra: 792/469,
  40151. bottom: 121/913
  40152. }
  40153. },
  40154. maw: {
  40155. height: math.unit(2.4, "meters"),
  40156. name: "Maw",
  40157. image: {
  40158. source: "./media/characters/rymel/maw.svg"
  40159. }
  40160. },
  40161. },
  40162. [
  40163. {
  40164. name: "House Drake",
  40165. height: math.unit(2, "feet")
  40166. },
  40167. {
  40168. name: "Reduced",
  40169. height: math.unit(4.5, "feet")
  40170. },
  40171. {
  40172. name: "Normal",
  40173. height: math.unit(9, "feet"),
  40174. default: true
  40175. },
  40176. ]
  40177. ))
  40178. characterMakers.push(() => makeCharacter(
  40179. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40180. {
  40181. front: {
  40182. height: math.unit(1.74, "meters"),
  40183. weight: math.unit(55, "kg"),
  40184. name: "Front",
  40185. image: {
  40186. source: "./media/characters/rubus/front.svg",
  40187. extra: 1894/1742,
  40188. bottom: 44/1938
  40189. }
  40190. },
  40191. },
  40192. [
  40193. {
  40194. name: "Normal",
  40195. height: math.unit(1.74, "meters"),
  40196. default: true
  40197. },
  40198. ]
  40199. ))
  40200. characterMakers.push(() => makeCharacter(
  40201. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40202. {
  40203. front: {
  40204. height: math.unit(5 + 2/12, "feet"),
  40205. weight: math.unit(112, "lb"),
  40206. name: "Front",
  40207. image: {
  40208. source: "./media/characters/cassie-kingston/front.svg",
  40209. extra: 1438/1390,
  40210. bottom: 47/1485
  40211. }
  40212. },
  40213. },
  40214. [
  40215. {
  40216. name: "Normal",
  40217. height: math.unit(5 + 2/12, "feet"),
  40218. default: true
  40219. },
  40220. {
  40221. name: "Macro",
  40222. height: math.unit(128, "feet")
  40223. },
  40224. {
  40225. name: "Megamacro",
  40226. height: math.unit(2.56, "miles")
  40227. },
  40228. ]
  40229. ))
  40230. characterMakers.push(() => makeCharacter(
  40231. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40232. {
  40233. front: {
  40234. height: math.unit(7, "feet"),
  40235. name: "Front",
  40236. image: {
  40237. source: "./media/characters/fox/front.svg",
  40238. extra: 1798/1703,
  40239. bottom: 55/1853
  40240. }
  40241. },
  40242. back: {
  40243. height: math.unit(7, "feet"),
  40244. name: "Back",
  40245. image: {
  40246. source: "./media/characters/fox/back.svg",
  40247. extra: 1748/1649,
  40248. bottom: 32/1780
  40249. }
  40250. },
  40251. head: {
  40252. height: math.unit(1.95, "feet"),
  40253. name: "Head",
  40254. image: {
  40255. source: "./media/characters/fox/head.svg"
  40256. }
  40257. },
  40258. dick: {
  40259. height: math.unit(1.33, "feet"),
  40260. name: "Dick",
  40261. image: {
  40262. source: "./media/characters/fox/dick.svg"
  40263. }
  40264. },
  40265. foot: {
  40266. height: math.unit(1, "feet"),
  40267. name: "Foot",
  40268. image: {
  40269. source: "./media/characters/fox/foot.svg"
  40270. }
  40271. },
  40272. paw: {
  40273. height: math.unit(0.92, "feet"),
  40274. name: "Paw",
  40275. image: {
  40276. source: "./media/characters/fox/paw.svg"
  40277. }
  40278. },
  40279. },
  40280. [
  40281. {
  40282. name: "Small",
  40283. height: math.unit(3, "inches")
  40284. },
  40285. {
  40286. name: "\"Realistic\"",
  40287. height: math.unit(7, "feet")
  40288. },
  40289. {
  40290. name: "Normal",
  40291. height: math.unit(150, "feet"),
  40292. default: true
  40293. },
  40294. {
  40295. name: "BIG",
  40296. height: math.unit(1200, "feet")
  40297. },
  40298. {
  40299. name: "👀",
  40300. height: math.unit(5, "miles")
  40301. },
  40302. {
  40303. name: "👀👀👀",
  40304. height: math.unit(64, "miles")
  40305. },
  40306. ]
  40307. ))
  40308. characterMakers.push(() => makeCharacter(
  40309. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40310. {
  40311. front: {
  40312. height: math.unit(625, "feet"),
  40313. name: "Front",
  40314. image: {
  40315. source: "./media/characters/asonja-rossa/front.svg",
  40316. extra: 1833/1686,
  40317. bottom: 24/1857
  40318. }
  40319. },
  40320. back: {
  40321. height: math.unit(625, "feet"),
  40322. name: "Back",
  40323. image: {
  40324. source: "./media/characters/asonja-rossa/back.svg",
  40325. extra: 1852/1753,
  40326. bottom: 26/1878
  40327. }
  40328. },
  40329. },
  40330. [
  40331. {
  40332. name: "Macro",
  40333. height: math.unit(625, "feet"),
  40334. default: true
  40335. },
  40336. ]
  40337. ))
  40338. characterMakers.push(() => makeCharacter(
  40339. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40340. {
  40341. side: {
  40342. height: math.unit(8, "feet"),
  40343. name: "Side",
  40344. image: {
  40345. source: "./media/characters/rezukii/side.svg",
  40346. extra: 979/542,
  40347. bottom: 87/1066
  40348. }
  40349. },
  40350. sitting: {
  40351. height: math.unit(14.6, "feet"),
  40352. name: "Sitting",
  40353. image: {
  40354. source: "./media/characters/rezukii/sitting.svg",
  40355. extra: 1023/813,
  40356. bottom: 45/1068
  40357. }
  40358. },
  40359. },
  40360. [
  40361. {
  40362. name: "Tiny",
  40363. height: math.unit(2, "feet")
  40364. },
  40365. {
  40366. name: "Smol",
  40367. height: math.unit(4, "feet")
  40368. },
  40369. {
  40370. name: "Normal",
  40371. height: math.unit(8, "feet"),
  40372. default: true
  40373. },
  40374. {
  40375. name: "Big",
  40376. height: math.unit(12, "feet")
  40377. },
  40378. {
  40379. name: "Macro",
  40380. height: math.unit(30, "feet")
  40381. },
  40382. ]
  40383. ))
  40384. characterMakers.push(() => makeCharacter(
  40385. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40386. {
  40387. front: {
  40388. height: math.unit(14, "feet"),
  40389. weight: math.unit(9.5, "tonnes"),
  40390. name: "Front",
  40391. image: {
  40392. source: "./media/characters/dawnheart/front.svg",
  40393. extra: 2792/2675,
  40394. bottom: 64/2856
  40395. }
  40396. },
  40397. },
  40398. [
  40399. {
  40400. name: "Normal",
  40401. height: math.unit(14, "feet"),
  40402. default: true
  40403. },
  40404. ]
  40405. ))
  40406. characterMakers.push(() => makeCharacter(
  40407. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40408. {
  40409. front: {
  40410. height: math.unit(1.7, "m"),
  40411. name: "Front",
  40412. image: {
  40413. source: "./media/characters/gladi/front.svg",
  40414. extra: 1460/1362,
  40415. bottom: 19/1479
  40416. }
  40417. },
  40418. back: {
  40419. height: math.unit(1.7, "m"),
  40420. name: "Back",
  40421. image: {
  40422. source: "./media/characters/gladi/back.svg",
  40423. extra: 1459/1357,
  40424. bottom: 12/1471
  40425. }
  40426. },
  40427. feral: {
  40428. height: math.unit(2.05, "m"),
  40429. name: "Feral",
  40430. image: {
  40431. source: "./media/characters/gladi/feral.svg",
  40432. extra: 821/557,
  40433. bottom: 91/912
  40434. }
  40435. },
  40436. },
  40437. [
  40438. {
  40439. name: "Shortest",
  40440. height: math.unit(70, "cm")
  40441. },
  40442. {
  40443. name: "Normal",
  40444. height: math.unit(1.7, "m")
  40445. },
  40446. {
  40447. name: "Macro",
  40448. height: math.unit(10, "m"),
  40449. default: true
  40450. },
  40451. {
  40452. name: "Tallest",
  40453. height: math.unit(200, "m")
  40454. },
  40455. ]
  40456. ))
  40457. characterMakers.push(() => makeCharacter(
  40458. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40459. {
  40460. front: {
  40461. height: math.unit(5 + 7/12, "feet"),
  40462. weight: math.unit(2, "tons"),
  40463. name: "Front",
  40464. image: {
  40465. source: "./media/characters/erdno/front.svg",
  40466. extra: 1234/1129,
  40467. bottom: 35/1269
  40468. }
  40469. },
  40470. angled: {
  40471. height: math.unit(5 + 7/12, "feet"),
  40472. weight: math.unit(2, "tons"),
  40473. name: "Angled",
  40474. image: {
  40475. source: "./media/characters/erdno/angled.svg",
  40476. extra: 1185/1139,
  40477. bottom: 36/1221
  40478. }
  40479. },
  40480. side: {
  40481. height: math.unit(5 + 7/12, "feet"),
  40482. weight: math.unit(2, "tons"),
  40483. name: "Side",
  40484. image: {
  40485. source: "./media/characters/erdno/side.svg",
  40486. extra: 1191/1144,
  40487. bottom: 40/1231
  40488. }
  40489. },
  40490. back: {
  40491. height: math.unit(5 + 7/12, "feet"),
  40492. weight: math.unit(2, "tons"),
  40493. name: "Back",
  40494. image: {
  40495. source: "./media/characters/erdno/back.svg",
  40496. extra: 1202/1146,
  40497. bottom: 17/1219
  40498. }
  40499. },
  40500. frontNsfw: {
  40501. height: math.unit(5 + 7/12, "feet"),
  40502. weight: math.unit(2, "tons"),
  40503. name: "Front (NSFW)",
  40504. image: {
  40505. source: "./media/characters/erdno/front-nsfw.svg",
  40506. extra: 1234/1129,
  40507. bottom: 35/1269
  40508. }
  40509. },
  40510. angledNsfw: {
  40511. height: math.unit(5 + 7/12, "feet"),
  40512. weight: math.unit(2, "tons"),
  40513. name: "Angled (NSFW)",
  40514. image: {
  40515. source: "./media/characters/erdno/angled-nsfw.svg",
  40516. extra: 1185/1139,
  40517. bottom: 36/1221
  40518. }
  40519. },
  40520. sideNsfw: {
  40521. height: math.unit(5 + 7/12, "feet"),
  40522. weight: math.unit(2, "tons"),
  40523. name: "Side (NSFW)",
  40524. image: {
  40525. source: "./media/characters/erdno/side-nsfw.svg",
  40526. extra: 1191/1144,
  40527. bottom: 40/1231
  40528. }
  40529. },
  40530. backNsfw: {
  40531. height: math.unit(5 + 7/12, "feet"),
  40532. weight: math.unit(2, "tons"),
  40533. name: "Back (NSFW)",
  40534. image: {
  40535. source: "./media/characters/erdno/back-nsfw.svg",
  40536. extra: 1202/1146,
  40537. bottom: 17/1219
  40538. }
  40539. },
  40540. frontHyper: {
  40541. height: math.unit(5 + 7/12, "feet"),
  40542. weight: math.unit(2, "tons"),
  40543. name: "Front (Hyper)",
  40544. image: {
  40545. source: "./media/characters/erdno/front-hyper.svg",
  40546. extra: 1298/1136,
  40547. bottom: 35/1333
  40548. }
  40549. },
  40550. },
  40551. [
  40552. {
  40553. name: "Normal",
  40554. height: math.unit(5 + 7/12, "feet"),
  40555. default: true
  40556. },
  40557. {
  40558. name: "Big",
  40559. height: math.unit(5.7, "meters")
  40560. },
  40561. {
  40562. name: "Macro",
  40563. height: math.unit(5.7, "kilometers")
  40564. },
  40565. {
  40566. name: "Megamacro",
  40567. height: math.unit(5.7, "earths")
  40568. },
  40569. ]
  40570. ))
  40571. characterMakers.push(() => makeCharacter(
  40572. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40573. {
  40574. front: {
  40575. height: math.unit(5 + 10/12, "feet"),
  40576. weight: math.unit(150, "lb"),
  40577. name: "Front",
  40578. image: {
  40579. source: "./media/characters/jamie/front.svg",
  40580. extra: 1908/1768,
  40581. bottom: 19/1927
  40582. }
  40583. },
  40584. },
  40585. [
  40586. {
  40587. name: "Minimum",
  40588. height: math.unit(2, "cm")
  40589. },
  40590. {
  40591. name: "Micro",
  40592. height: math.unit(3, "inches")
  40593. },
  40594. {
  40595. name: "Normal",
  40596. height: math.unit(5 + 10/12, "feet"),
  40597. default: true
  40598. },
  40599. {
  40600. name: "Macro",
  40601. height: math.unit(150, "feet")
  40602. },
  40603. {
  40604. name: "Megamacro",
  40605. height: math.unit(10000, "m")
  40606. },
  40607. ]
  40608. ))
  40609. characterMakers.push(() => makeCharacter(
  40610. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40611. {
  40612. front: {
  40613. height: math.unit(2, "meters"),
  40614. weight: math.unit(100, "kg"),
  40615. name: "Front",
  40616. image: {
  40617. source: "./media/characters/shiron/front.svg",
  40618. extra: 2103/1985,
  40619. bottom: 98/2201
  40620. }
  40621. },
  40622. back: {
  40623. height: math.unit(2, "meters"),
  40624. weight: math.unit(100, "kg"),
  40625. name: "Back",
  40626. image: {
  40627. source: "./media/characters/shiron/back.svg",
  40628. extra: 2110/2015,
  40629. bottom: 89/2199
  40630. }
  40631. },
  40632. hand: {
  40633. height: math.unit(0.96, "feet"),
  40634. name: "Hand",
  40635. image: {
  40636. source: "./media/characters/shiron/hand.svg"
  40637. }
  40638. },
  40639. foot: {
  40640. height: math.unit(1.464, "feet"),
  40641. name: "Foot",
  40642. image: {
  40643. source: "./media/characters/shiron/foot.svg"
  40644. }
  40645. },
  40646. },
  40647. [
  40648. {
  40649. name: "Normal",
  40650. height: math.unit(2, "meters")
  40651. },
  40652. {
  40653. name: "Macro",
  40654. height: math.unit(500, "meters"),
  40655. default: true
  40656. },
  40657. {
  40658. name: "Megamacro",
  40659. height: math.unit(20, "km")
  40660. },
  40661. ]
  40662. ))
  40663. characterMakers.push(() => makeCharacter(
  40664. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40665. {
  40666. front: {
  40667. height: math.unit(6, "feet"),
  40668. name: "Front",
  40669. image: {
  40670. source: "./media/characters/sam/front.svg",
  40671. extra: 849/826,
  40672. bottom: 19/868
  40673. }
  40674. },
  40675. },
  40676. [
  40677. {
  40678. name: "Normal",
  40679. height: math.unit(6, "feet"),
  40680. default: true
  40681. },
  40682. ]
  40683. ))
  40684. characterMakers.push(() => makeCharacter(
  40685. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40686. {
  40687. front: {
  40688. height: math.unit(8 + 4/12, "feet"),
  40689. weight: math.unit(122, "kg"),
  40690. name: "Front",
  40691. image: {
  40692. source: "./media/characters/namori-kurogawa/front.svg",
  40693. extra: 1894/1576,
  40694. bottom: 34/1928
  40695. }
  40696. },
  40697. },
  40698. [
  40699. {
  40700. name: "Normal",
  40701. height: math.unit(8 + 4/12, "feet"),
  40702. default: true
  40703. },
  40704. ]
  40705. ))
  40706. characterMakers.push(() => makeCharacter(
  40707. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40708. {
  40709. front: {
  40710. height: math.unit(9, "feet"),
  40711. weight: math.unit(621, "lb"),
  40712. name: "Front",
  40713. image: {
  40714. source: "./media/characters/unmru/front.svg",
  40715. extra: 1853/1747,
  40716. bottom: 73/1926
  40717. }
  40718. },
  40719. side: {
  40720. height: math.unit(9, "feet"),
  40721. weight: math.unit(621, "lb"),
  40722. name: "Side",
  40723. image: {
  40724. source: "./media/characters/unmru/side.svg",
  40725. extra: 1781/1671,
  40726. bottom: 127/1908
  40727. }
  40728. },
  40729. back: {
  40730. height: math.unit(9, "feet"),
  40731. weight: math.unit(621, "lb"),
  40732. name: "Back",
  40733. image: {
  40734. source: "./media/characters/unmru/back.svg",
  40735. extra: 1894/1765,
  40736. bottom: 75/1969
  40737. }
  40738. },
  40739. dick: {
  40740. height: math.unit(3, "feet"),
  40741. weight: math.unit(35, "lb"),
  40742. name: "Dick",
  40743. image: {
  40744. source: "./media/characters/unmru/dick.svg"
  40745. }
  40746. },
  40747. },
  40748. [
  40749. {
  40750. name: "Normal",
  40751. height: math.unit(9, "feet")
  40752. },
  40753. {
  40754. name: "Natural",
  40755. height: math.unit(27, "feet"),
  40756. default: true
  40757. },
  40758. {
  40759. name: "Giant",
  40760. height: math.unit(90, "feet")
  40761. },
  40762. {
  40763. name: "Kaiju",
  40764. height: math.unit(270, "feet")
  40765. },
  40766. {
  40767. name: "Macro",
  40768. height: math.unit(900, "feet")
  40769. },
  40770. {
  40771. name: "Macro+",
  40772. height: math.unit(2700, "feet")
  40773. },
  40774. {
  40775. name: "Megamacro",
  40776. height: math.unit(9000, "feet")
  40777. },
  40778. {
  40779. name: "City-Crushing",
  40780. height: math.unit(27000, "feet")
  40781. },
  40782. {
  40783. name: "Mountain-Mashing",
  40784. height: math.unit(90000, "feet")
  40785. },
  40786. {
  40787. name: "Earth-Eclipsing",
  40788. height: math.unit(2.7e8, "feet")
  40789. },
  40790. {
  40791. name: "Sol-Swallowing",
  40792. height: math.unit(9e10, "feet")
  40793. },
  40794. {
  40795. name: "Majoris-Munching",
  40796. height: math.unit(2.7e13, "feet")
  40797. },
  40798. ]
  40799. ))
  40800. characterMakers.push(() => makeCharacter(
  40801. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40802. {
  40803. front: {
  40804. height: math.unit(1, "inch"),
  40805. name: "Front",
  40806. image: {
  40807. source: "./media/characters/squeaks-mouse/front.svg",
  40808. extra: 352/308,
  40809. bottom: 25/377
  40810. }
  40811. },
  40812. },
  40813. [
  40814. {
  40815. name: "Micro",
  40816. height: math.unit(1, "inch"),
  40817. default: true
  40818. },
  40819. ]
  40820. ))
  40821. characterMakers.push(() => makeCharacter(
  40822. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40823. {
  40824. side: {
  40825. height: math.unit(35, "feet"),
  40826. name: "Side",
  40827. image: {
  40828. source: "./media/characters/sayko/side.svg",
  40829. extra: 1697/1021,
  40830. bottom: 82/1779
  40831. }
  40832. },
  40833. head: {
  40834. height: math.unit(16, "feet"),
  40835. name: "Head",
  40836. image: {
  40837. source: "./media/characters/sayko/head.svg"
  40838. }
  40839. },
  40840. forepaw: {
  40841. height: math.unit(7.85, "feet"),
  40842. name: "Forepaw",
  40843. image: {
  40844. source: "./media/characters/sayko/forepaw.svg"
  40845. }
  40846. },
  40847. hindpaw: {
  40848. height: math.unit(8.8, "feet"),
  40849. name: "Hindpaw",
  40850. image: {
  40851. source: "./media/characters/sayko/hindpaw.svg"
  40852. }
  40853. },
  40854. },
  40855. [
  40856. {
  40857. name: "Normal",
  40858. height: math.unit(35, "feet"),
  40859. default: true
  40860. },
  40861. {
  40862. name: "Colossus",
  40863. height: math.unit(100, "meters")
  40864. },
  40865. {
  40866. name: "\"Small\" Deity",
  40867. height: math.unit(1, "km")
  40868. },
  40869. {
  40870. name: "\"Large\" Deity",
  40871. height: math.unit(15, "km")
  40872. },
  40873. ]
  40874. ))
  40875. characterMakers.push(() => makeCharacter(
  40876. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40877. {
  40878. front: {
  40879. height: math.unit(6, "feet"),
  40880. weight: math.unit(250, "lb"),
  40881. name: "Front",
  40882. image: {
  40883. source: "./media/characters/mukiro/front.svg",
  40884. extra: 1368/1310,
  40885. bottom: 34/1402
  40886. }
  40887. },
  40888. },
  40889. [
  40890. {
  40891. name: "Normal",
  40892. height: math.unit(6, "feet"),
  40893. default: true
  40894. },
  40895. ]
  40896. ))
  40897. characterMakers.push(() => makeCharacter(
  40898. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40899. {
  40900. front: {
  40901. height: math.unit(12 + 4/12, "feet"),
  40902. name: "Front",
  40903. image: {
  40904. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40905. extra: 1346/1311,
  40906. bottom: 65/1411
  40907. }
  40908. },
  40909. },
  40910. [
  40911. {
  40912. name: "Base",
  40913. height: math.unit(12 + 4/12, "feet"),
  40914. default: true
  40915. },
  40916. {
  40917. name: "Macro",
  40918. height: math.unit(150, "feet")
  40919. },
  40920. {
  40921. name: "Mega",
  40922. height: math.unit(2, "miles")
  40923. },
  40924. {
  40925. name: "Demi God",
  40926. height: math.unit(4, "AU")
  40927. },
  40928. {
  40929. name: "God Size",
  40930. height: math.unit(1, "universe")
  40931. },
  40932. ]
  40933. ))
  40934. characterMakers.push(() => makeCharacter(
  40935. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40936. {
  40937. front: {
  40938. height: math.unit(3 + 3/12, "feet"),
  40939. weight: math.unit(88, "lb"),
  40940. name: "Front",
  40941. image: {
  40942. source: "./media/characters/trey/front.svg",
  40943. extra: 1815/1509,
  40944. bottom: 60/1875
  40945. }
  40946. },
  40947. },
  40948. [
  40949. {
  40950. name: "Normal",
  40951. height: math.unit(3 + 3/12, "feet"),
  40952. default: true
  40953. },
  40954. ]
  40955. ))
  40956. characterMakers.push(() => makeCharacter(
  40957. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40958. {
  40959. front: {
  40960. height: math.unit(4, "meters"),
  40961. name: "Front",
  40962. image: {
  40963. source: "./media/characters/adelonda/front.svg",
  40964. extra: 1077/982,
  40965. bottom: 39/1116
  40966. }
  40967. },
  40968. back: {
  40969. height: math.unit(4, "meters"),
  40970. name: "Back",
  40971. image: {
  40972. source: "./media/characters/adelonda/back.svg",
  40973. extra: 1105/1003,
  40974. bottom: 25/1130
  40975. }
  40976. },
  40977. feral: {
  40978. height: math.unit(40/1.5, "meters"),
  40979. name: "Feral",
  40980. image: {
  40981. source: "./media/characters/adelonda/feral.svg",
  40982. extra: 597/271,
  40983. bottom: 387/984
  40984. }
  40985. },
  40986. },
  40987. [
  40988. {
  40989. name: "Normal",
  40990. height: math.unit(4, "meters"),
  40991. default: true
  40992. },
  40993. ]
  40994. ))
  40995. characterMakers.push(() => makeCharacter(
  40996. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40997. {
  40998. front: {
  40999. height: math.unit(8 + 4/12, "feet"),
  41000. weight: math.unit(670, "lb"),
  41001. name: "Front",
  41002. image: {
  41003. source: "./media/characters/acadiel/front.svg",
  41004. extra: 1901/1595,
  41005. bottom: 142/2043
  41006. }
  41007. },
  41008. },
  41009. [
  41010. {
  41011. name: "Normal",
  41012. height: math.unit(8 + 4/12, "feet"),
  41013. default: true
  41014. },
  41015. {
  41016. name: "Macro",
  41017. height: math.unit(200, "feet")
  41018. },
  41019. ]
  41020. ))
  41021. characterMakers.push(() => makeCharacter(
  41022. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41023. {
  41024. front: {
  41025. height: math.unit(6 + 2/12, "feet"),
  41026. weight: math.unit(185, "lb"),
  41027. name: "Front",
  41028. image: {
  41029. source: "./media/characters/kayne-ein/front.svg",
  41030. extra: 1780/1560,
  41031. bottom: 81/1861
  41032. }
  41033. },
  41034. },
  41035. [
  41036. {
  41037. name: "Normal",
  41038. height: math.unit(6 + 2/12, "feet"),
  41039. default: true
  41040. },
  41041. {
  41042. name: "Transformation Stage",
  41043. height: math.unit(15, "feet")
  41044. },
  41045. {
  41046. name: "Macro",
  41047. height: math.unit(150, "feet")
  41048. },
  41049. {
  41050. name: "Earth's Shadow",
  41051. height: math.unit(6200, "miles")
  41052. },
  41053. {
  41054. name: "Universal Demon",
  41055. height: math.unit(28e9, "parsecs")
  41056. },
  41057. {
  41058. name: "Multiverse God",
  41059. height: math.unit(3, "multiverses")
  41060. },
  41061. ]
  41062. ))
  41063. characterMakers.push(() => makeCharacter(
  41064. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41065. {
  41066. front: {
  41067. height: math.unit(5 + 5/12, "feet"),
  41068. name: "Front",
  41069. image: {
  41070. source: "./media/characters/fawn/front.svg",
  41071. extra: 1873/1731,
  41072. bottom: 95/1968
  41073. }
  41074. },
  41075. back: {
  41076. height: math.unit(5 + 5/12, "feet"),
  41077. name: "Back",
  41078. image: {
  41079. source: "./media/characters/fawn/back.svg",
  41080. extra: 1813/1700,
  41081. bottom: 14/1827
  41082. }
  41083. },
  41084. hoof: {
  41085. height: math.unit(1.45, "feet"),
  41086. name: "Hoof",
  41087. image: {
  41088. source: "./media/characters/fawn/hoof.svg"
  41089. }
  41090. },
  41091. },
  41092. [
  41093. {
  41094. name: "Normal",
  41095. height: math.unit(5 + 5/12, "feet"),
  41096. default: true
  41097. },
  41098. ]
  41099. ))
  41100. characterMakers.push(() => makeCharacter(
  41101. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41102. {
  41103. front: {
  41104. height: math.unit(2 + 5/12, "feet"),
  41105. name: "Front",
  41106. image: {
  41107. source: "./media/characters/orion/front.svg",
  41108. extra: 1366/1304,
  41109. bottom: 43/1409
  41110. }
  41111. },
  41112. paw: {
  41113. height: math.unit(0.52, "feet"),
  41114. name: "Paw",
  41115. image: {
  41116. source: "./media/characters/orion/paw.svg"
  41117. }
  41118. },
  41119. },
  41120. [
  41121. {
  41122. name: "Normal",
  41123. height: math.unit(2 + 5/12, "feet"),
  41124. default: true
  41125. },
  41126. ]
  41127. ))
  41128. characterMakers.push(() => makeCharacter(
  41129. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41130. {
  41131. front: {
  41132. height: math.unit(5 + 10/12, "feet"),
  41133. name: "Front",
  41134. image: {
  41135. source: "./media/characters/vera/front.svg",
  41136. extra: 1680/1575,
  41137. bottom: 49/1729
  41138. }
  41139. },
  41140. back: {
  41141. height: math.unit(5 + 10/12, "feet"),
  41142. name: "Back",
  41143. image: {
  41144. source: "./media/characters/vera/back.svg",
  41145. extra: 1700/1588,
  41146. bottom: 18/1718
  41147. }
  41148. },
  41149. arcanine: {
  41150. height: math.unit(6 + 8/12, "feet"),
  41151. name: "Arcanine",
  41152. image: {
  41153. source: "./media/characters/vera/arcanine.svg",
  41154. extra: 1590/1511,
  41155. bottom: 71/1661
  41156. }
  41157. },
  41158. maw: {
  41159. height: math.unit(0.82, "feet"),
  41160. name: "Maw",
  41161. image: {
  41162. source: "./media/characters/vera/maw.svg"
  41163. }
  41164. },
  41165. mawArcanine: {
  41166. height: math.unit(0.97, "feet"),
  41167. name: "Maw (Arcanine)",
  41168. image: {
  41169. source: "./media/characters/vera/maw-arcanine.svg"
  41170. }
  41171. },
  41172. paw: {
  41173. height: math.unit(0.75, "feet"),
  41174. name: "Paw",
  41175. image: {
  41176. source: "./media/characters/vera/paw.svg"
  41177. }
  41178. },
  41179. pawprint: {
  41180. height: math.unit(0.52, "feet"),
  41181. name: "Pawprint",
  41182. image: {
  41183. source: "./media/characters/vera/pawprint.svg"
  41184. }
  41185. },
  41186. },
  41187. [
  41188. {
  41189. name: "Normal",
  41190. height: math.unit(5 + 10/12, "feet"),
  41191. default: true
  41192. },
  41193. {
  41194. name: "Macro",
  41195. height: math.unit(75, "feet")
  41196. },
  41197. ]
  41198. ))
  41199. characterMakers.push(() => makeCharacter(
  41200. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41201. {
  41202. front: {
  41203. height: math.unit(4, "feet"),
  41204. weight: math.unit(40, "lb"),
  41205. name: "Front",
  41206. image: {
  41207. source: "./media/characters/orvan-rabbit/front.svg",
  41208. extra: 1896/1642,
  41209. bottom: 29/1925
  41210. }
  41211. },
  41212. },
  41213. [
  41214. {
  41215. name: "Normal",
  41216. height: math.unit(4, "feet"),
  41217. default: true
  41218. },
  41219. ]
  41220. ))
  41221. characterMakers.push(() => makeCharacter(
  41222. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41223. {
  41224. front: {
  41225. height: math.unit(6, "feet"),
  41226. weight: math.unit(168, "lb"),
  41227. name: "Front",
  41228. image: {
  41229. source: "./media/characters/lisa/front.svg",
  41230. extra: 2065/1867,
  41231. bottom: 46/2111
  41232. }
  41233. },
  41234. back: {
  41235. height: math.unit(6, "feet"),
  41236. weight: math.unit(168, "lb"),
  41237. name: "Back",
  41238. image: {
  41239. source: "./media/characters/lisa/back.svg",
  41240. extra: 1982/1838,
  41241. bottom: 29/2011
  41242. }
  41243. },
  41244. maw: {
  41245. height: math.unit(0.81, "feet"),
  41246. name: "Maw",
  41247. image: {
  41248. source: "./media/characters/lisa/maw.svg"
  41249. }
  41250. },
  41251. paw: {
  41252. height: math.unit(0.9, "feet"),
  41253. name: "Paw",
  41254. image: {
  41255. source: "./media/characters/lisa/paw.svg"
  41256. }
  41257. },
  41258. caribousune: {
  41259. height: math.unit(7 + 2/12, "feet"),
  41260. weight: math.unit(268, "lb"),
  41261. name: "Caribousune",
  41262. image: {
  41263. source: "./media/characters/lisa/caribousune.svg",
  41264. extra: 1843/1633,
  41265. bottom: 29/1872
  41266. }
  41267. },
  41268. frontCaribousune: {
  41269. height: math.unit(7 + 2/12, "feet"),
  41270. weight: math.unit(268, "lb"),
  41271. name: "Front (Caribousune)",
  41272. image: {
  41273. source: "./media/characters/lisa/front-caribousune.svg",
  41274. extra: 1818/1638,
  41275. bottom: 52/1870
  41276. }
  41277. },
  41278. sideCaribousune: {
  41279. height: math.unit(7 + 2/12, "feet"),
  41280. weight: math.unit(268, "lb"),
  41281. name: "Side (Caribousune)",
  41282. image: {
  41283. source: "./media/characters/lisa/side-caribousune.svg",
  41284. extra: 1851/1635,
  41285. bottom: 16/1867
  41286. }
  41287. },
  41288. backCaribousune: {
  41289. height: math.unit(7 + 2/12, "feet"),
  41290. weight: math.unit(268, "lb"),
  41291. name: "Back (Caribousune)",
  41292. image: {
  41293. source: "./media/characters/lisa/back-caribousune.svg",
  41294. extra: 1801/1604,
  41295. bottom: 44/1845
  41296. }
  41297. },
  41298. caribou: {
  41299. height: math.unit(7 + 2/12, "feet"),
  41300. weight: math.unit(268, "lb"),
  41301. name: "Caribou",
  41302. image: {
  41303. source: "./media/characters/lisa/caribou.svg",
  41304. extra: 1843/1633,
  41305. bottom: 29/1872
  41306. }
  41307. },
  41308. frontCaribou: {
  41309. height: math.unit(7 + 2/12, "feet"),
  41310. weight: math.unit(268, "lb"),
  41311. name: "Front (Caribou)",
  41312. image: {
  41313. source: "./media/characters/lisa/front-caribou.svg",
  41314. extra: 1818/1638,
  41315. bottom: 52/1870
  41316. }
  41317. },
  41318. sideCaribou: {
  41319. height: math.unit(7 + 2/12, "feet"),
  41320. weight: math.unit(268, "lb"),
  41321. name: "Side (Caribou)",
  41322. image: {
  41323. source: "./media/characters/lisa/side-caribou.svg",
  41324. extra: 1851/1635,
  41325. bottom: 16/1867
  41326. }
  41327. },
  41328. backCaribou: {
  41329. height: math.unit(7 + 2/12, "feet"),
  41330. weight: math.unit(268, "lb"),
  41331. name: "Back (Caribou)",
  41332. image: {
  41333. source: "./media/characters/lisa/back-caribou.svg",
  41334. extra: 1801/1604,
  41335. bottom: 44/1845
  41336. }
  41337. },
  41338. mawCaribou: {
  41339. height: math.unit(1.45, "feet"),
  41340. name: "Maw (Caribou)",
  41341. image: {
  41342. source: "./media/characters/lisa/maw-caribou.svg"
  41343. }
  41344. },
  41345. mawCaribousune: {
  41346. height: math.unit(1.45, "feet"),
  41347. name: "Maw (Caribousune)",
  41348. image: {
  41349. source: "./media/characters/lisa/maw-caribousune.svg"
  41350. }
  41351. },
  41352. pawCaribousune: {
  41353. height: math.unit(1.61, "feet"),
  41354. name: "Paw (Caribou)",
  41355. image: {
  41356. source: "./media/characters/lisa/paw-caribousune.svg"
  41357. }
  41358. },
  41359. },
  41360. [
  41361. {
  41362. name: "Normal",
  41363. height: math.unit(6, "feet")
  41364. },
  41365. {
  41366. name: "God Size",
  41367. height: math.unit(72, "feet"),
  41368. default: true
  41369. },
  41370. {
  41371. name: "Towering",
  41372. height: math.unit(288, "feet")
  41373. },
  41374. {
  41375. name: "City Size",
  41376. height: math.unit(48384, "feet")
  41377. },
  41378. {
  41379. name: "Continental",
  41380. height: math.unit(4200, "miles")
  41381. },
  41382. {
  41383. name: "Planet Eater",
  41384. height: math.unit(42, "earths")
  41385. },
  41386. {
  41387. name: "Star Swallower",
  41388. height: math.unit(42, "solarradii")
  41389. },
  41390. {
  41391. name: "System Swallower",
  41392. height: math.unit(84000, "AU")
  41393. },
  41394. {
  41395. name: "Galaxy Gobbler",
  41396. height: math.unit(42, "galaxies")
  41397. },
  41398. {
  41399. name: "Universe Devourer",
  41400. height: math.unit(42, "universes")
  41401. },
  41402. {
  41403. name: "Multiverse Muncher",
  41404. height: math.unit(42, "multiverses")
  41405. },
  41406. ]
  41407. ))
  41408. characterMakers.push(() => makeCharacter(
  41409. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41410. {
  41411. front: {
  41412. height: math.unit(36, "feet"),
  41413. name: "Front",
  41414. image: {
  41415. source: "./media/characters/shadow-rat/front.svg",
  41416. extra: 1845/1758,
  41417. bottom: 83/1928
  41418. }
  41419. },
  41420. },
  41421. [
  41422. {
  41423. name: "Macro",
  41424. height: math.unit(36, "feet"),
  41425. default: true
  41426. },
  41427. ]
  41428. ))
  41429. characterMakers.push(() => makeCharacter(
  41430. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41431. {
  41432. side: {
  41433. height: math.unit(8, "feet"),
  41434. weight: math.unit(2630, "lb"),
  41435. name: "Side",
  41436. image: {
  41437. source: "./media/characters/torallia/side.svg",
  41438. extra: 2164/2021,
  41439. bottom: 371/2535
  41440. }
  41441. },
  41442. },
  41443. [
  41444. {
  41445. name: "Mortal Interaction",
  41446. height: math.unit(8, "feet")
  41447. },
  41448. {
  41449. name: "Natural",
  41450. height: math.unit(24, "feet"),
  41451. default: true
  41452. },
  41453. {
  41454. name: "Giant",
  41455. height: math.unit(80, "feet")
  41456. },
  41457. {
  41458. name: "Kaiju",
  41459. height: math.unit(240, "feet")
  41460. },
  41461. {
  41462. name: "Macro",
  41463. height: math.unit(800, "feet")
  41464. },
  41465. {
  41466. name: "Macro+",
  41467. height: math.unit(2400, "feet")
  41468. },
  41469. {
  41470. name: "Macro++",
  41471. height: math.unit(8000, "feet")
  41472. },
  41473. {
  41474. name: "City-Crushing",
  41475. height: math.unit(24000, "feet")
  41476. },
  41477. {
  41478. name: "Mountain-Mashing",
  41479. height: math.unit(80000, "feet")
  41480. },
  41481. {
  41482. name: "District Demolisher",
  41483. height: math.unit(240000, "feet")
  41484. },
  41485. {
  41486. name: "Tri-County Terror",
  41487. height: math.unit(800000, "feet")
  41488. },
  41489. {
  41490. name: "State Smasher",
  41491. height: math.unit(2.4e6, "feet")
  41492. },
  41493. {
  41494. name: "Nation Nemesis",
  41495. height: math.unit(8e6, "feet")
  41496. },
  41497. {
  41498. name: "Continent Cracker",
  41499. height: math.unit(2.4e7, "feet")
  41500. },
  41501. {
  41502. name: "Planet-Pillaging",
  41503. height: math.unit(8e7, "feet")
  41504. },
  41505. {
  41506. name: "Earth-Eclipsing",
  41507. height: math.unit(2.4e8, "feet")
  41508. },
  41509. {
  41510. name: "Jovian-Jostling",
  41511. height: math.unit(8e8, "feet")
  41512. },
  41513. {
  41514. name: "Gas Giant Gulper",
  41515. height: math.unit(2.4e9, "feet")
  41516. },
  41517. {
  41518. name: "Astral Annihilator",
  41519. height: math.unit(8e9, "feet")
  41520. },
  41521. {
  41522. name: "Celestial Conqueror",
  41523. height: math.unit(2.4e10, "feet")
  41524. },
  41525. {
  41526. name: "Sol-Swallowing",
  41527. height: math.unit(8e10, "feet")
  41528. },
  41529. {
  41530. name: "Hunter of the Heavens",
  41531. height: math.unit(2.4e13, "feet")
  41532. },
  41533. ]
  41534. ))
  41535. characterMakers.push(() => makeCharacter(
  41536. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41537. {
  41538. front: {
  41539. height: math.unit(10, "feet"),
  41540. weight: math.unit(844, "kilograms"),
  41541. name: "Front",
  41542. image: {
  41543. source: "./media/characters/rebecca-pawlson/front.svg",
  41544. extra: 1196/1099,
  41545. bottom: 81/1277
  41546. },
  41547. extraAttributes: {
  41548. "pawSize": {
  41549. name: "Paw Size",
  41550. power: 2,
  41551. type: "area",
  41552. base: math.unit(0.2 * 0.375, "meters^2")
  41553. },
  41554. "handSize": {
  41555. name: "Hand Size",
  41556. power: 2,
  41557. type: "area",
  41558. base: math.unit(0.2 * 0.35, "meters^2")
  41559. },
  41560. "breastDiameter": {
  41561. name: "Breast Diameter",
  41562. power: 1,
  41563. type: "length",
  41564. base: math.unit(0.5, "meters")
  41565. },
  41566. "breastVolume": {
  41567. name: "Breast Volume",
  41568. power: 3,
  41569. type: "volume",
  41570. base: math.unit(0.065, "m^3")
  41571. },
  41572. "breastMass": {
  41573. name: "Breast Mass",
  41574. power: 3,
  41575. type: "mass",
  41576. base: math.unit(65, "kg")
  41577. },
  41578. "nippleDiameter": {
  41579. name: "Nipple Diameter",
  41580. power: 1,
  41581. type: "length",
  41582. base: math.unit(0.1, "meters")
  41583. },
  41584. }
  41585. },
  41586. back: {
  41587. height: math.unit(10, "feet"),
  41588. weight: math.unit(844, "kilograms"),
  41589. name: "Back",
  41590. image: {
  41591. source: "./media/characters/rebecca-pawlson/back.svg",
  41592. extra: 879/776,
  41593. bottom: 43/922
  41594. },
  41595. extraAttributes: {
  41596. "pawSize": {
  41597. name: "Paw Size",
  41598. power: 2,
  41599. type: "area",
  41600. base: math.unit(0.2 * 0.375, "meters^2")
  41601. },
  41602. "handSize": {
  41603. name: "Hand Size",
  41604. power: 2,
  41605. type: "area",
  41606. base: math.unit(0.2 * 0.35, "meters^2")
  41607. },
  41608. "breastDiameter": {
  41609. name: "Breast Diameter",
  41610. power: 1,
  41611. type: "length",
  41612. base: math.unit(0.5, "meters")
  41613. },
  41614. "breastVolume": {
  41615. name: "Breast Volume",
  41616. power: 3,
  41617. type: "volume",
  41618. base: math.unit(0.065, "m^3")
  41619. },
  41620. "breastMass": {
  41621. name: "Breast Mass",
  41622. power: 3,
  41623. type: "mass",
  41624. base: math.unit(65, "kg")
  41625. },
  41626. "nippleDiameter": {
  41627. name: "Nipple Diameter",
  41628. power: 1,
  41629. type: "length",
  41630. base: math.unit(0.1, "meters")
  41631. },
  41632. }
  41633. },
  41634. },
  41635. [
  41636. {
  41637. name: "Normal",
  41638. height: math.unit(6 + 8/12, "feet")
  41639. },
  41640. {
  41641. name: "Mini Macro",
  41642. height: math.unit(10, "feet"),
  41643. default: true
  41644. },
  41645. {
  41646. name: "Macro",
  41647. height: math.unit(100, "feet")
  41648. },
  41649. {
  41650. name: "Mega Macro",
  41651. height: math.unit(2500, "feet")
  41652. },
  41653. {
  41654. name: "Giga Macro",
  41655. height: math.unit(50, "miles")
  41656. },
  41657. ]
  41658. ))
  41659. characterMakers.push(() => makeCharacter(
  41660. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41661. {
  41662. front: {
  41663. height: math.unit(7 + 6/12, "feet"),
  41664. weight: math.unit(600, "lb"),
  41665. name: "Front",
  41666. image: {
  41667. source: "./media/characters/moxie-nova/front.svg",
  41668. extra: 1734/1652,
  41669. bottom: 41/1775
  41670. }
  41671. },
  41672. },
  41673. [
  41674. {
  41675. name: "Normal",
  41676. height: math.unit(7 + 6/12, "feet"),
  41677. default: true
  41678. },
  41679. ]
  41680. ))
  41681. characterMakers.push(() => makeCharacter(
  41682. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41683. {
  41684. goat: {
  41685. height: math.unit(4, "feet"),
  41686. weight: math.unit(180, "lb"),
  41687. name: "Goat",
  41688. image: {
  41689. source: "./media/characters/tiffany/goat.svg",
  41690. extra: 1845/1595,
  41691. bottom: 106/1951
  41692. }
  41693. },
  41694. front: {
  41695. height: math.unit(5, "feet"),
  41696. weight: math.unit(150, "lb"),
  41697. name: "Foxcoon",
  41698. image: {
  41699. source: "./media/characters/tiffany/foxcoon.svg",
  41700. extra: 1941/1845,
  41701. bottom: 58/1999
  41702. }
  41703. },
  41704. },
  41705. [
  41706. {
  41707. name: "Normal",
  41708. height: math.unit(5, "feet"),
  41709. default: true
  41710. },
  41711. ]
  41712. ))
  41713. characterMakers.push(() => makeCharacter(
  41714. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41715. {
  41716. front: {
  41717. height: math.unit(8, "feet"),
  41718. weight: math.unit(300, "lb"),
  41719. name: "Front",
  41720. image: {
  41721. source: "./media/characters/raxinath/front.svg",
  41722. extra: 1407/1309,
  41723. bottom: 39/1446
  41724. }
  41725. },
  41726. back: {
  41727. height: math.unit(8, "feet"),
  41728. weight: math.unit(300, "lb"),
  41729. name: "Back",
  41730. image: {
  41731. source: "./media/characters/raxinath/back.svg",
  41732. extra: 1405/1315,
  41733. bottom: 9/1414
  41734. }
  41735. },
  41736. },
  41737. [
  41738. {
  41739. name: "Speck",
  41740. height: math.unit(0.5, "nm")
  41741. },
  41742. {
  41743. name: "Micro",
  41744. height: math.unit(3, "inches")
  41745. },
  41746. {
  41747. name: "Kobold",
  41748. height: math.unit(3, "feet")
  41749. },
  41750. {
  41751. name: "Normal",
  41752. height: math.unit(8, "feet"),
  41753. default: true
  41754. },
  41755. {
  41756. name: "Giant",
  41757. height: math.unit(50, "feet")
  41758. },
  41759. {
  41760. name: "Macro",
  41761. height: math.unit(1000, "feet")
  41762. },
  41763. {
  41764. name: "Megamacro",
  41765. height: math.unit(1, "mile")
  41766. },
  41767. ]
  41768. ))
  41769. characterMakers.push(() => makeCharacter(
  41770. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41771. {
  41772. front: {
  41773. height: math.unit(10, "feet"),
  41774. weight: math.unit(1442, "lb"),
  41775. name: "Front",
  41776. image: {
  41777. source: "./media/characters/mal-dragon/front.svg",
  41778. extra: 1515/1444,
  41779. bottom: 113/1628
  41780. }
  41781. },
  41782. back: {
  41783. height: math.unit(10, "feet"),
  41784. weight: math.unit(1442, "lb"),
  41785. name: "Back",
  41786. image: {
  41787. source: "./media/characters/mal-dragon/back.svg",
  41788. extra: 1527/1434,
  41789. bottom: 25/1552
  41790. }
  41791. },
  41792. },
  41793. [
  41794. {
  41795. name: "Mortal Interaction",
  41796. height: math.unit(10, "feet"),
  41797. default: true
  41798. },
  41799. {
  41800. name: "Large",
  41801. height: math.unit(30, "feet")
  41802. },
  41803. {
  41804. name: "Kaiju",
  41805. height: math.unit(300, "feet")
  41806. },
  41807. {
  41808. name: "Megamacro",
  41809. height: math.unit(10000, "feet")
  41810. },
  41811. {
  41812. name: "Continent Cracker",
  41813. height: math.unit(30000000, "feet")
  41814. },
  41815. {
  41816. name: "Sol-Swallowing",
  41817. height: math.unit(1e11, "feet")
  41818. },
  41819. {
  41820. name: "Light Universal",
  41821. height: math.unit(5, "universes")
  41822. },
  41823. {
  41824. name: "Universe Atoms",
  41825. height: math.unit(1.829e9, "universes")
  41826. },
  41827. {
  41828. name: "Light Multiversal",
  41829. height: math.unit(5, "multiverses")
  41830. },
  41831. {
  41832. name: "Multiverse Atoms",
  41833. height: math.unit(1.829e9, "multiverses")
  41834. },
  41835. {
  41836. name: "Fabric of Time",
  41837. height: math.unit(1e262, "multiverses")
  41838. },
  41839. ]
  41840. ))
  41841. characterMakers.push(() => makeCharacter(
  41842. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41843. {
  41844. front: {
  41845. height: math.unit(9, "feet"),
  41846. weight: math.unit(1050, "lb"),
  41847. name: "Front",
  41848. image: {
  41849. source: "./media/characters/tabitha/front.svg",
  41850. extra: 2083/1994,
  41851. bottom: 68/2151
  41852. }
  41853. },
  41854. },
  41855. [
  41856. {
  41857. name: "Baseline",
  41858. height: math.unit(9, "feet"),
  41859. default: true
  41860. },
  41861. {
  41862. name: "Giant",
  41863. height: math.unit(90, "feet")
  41864. },
  41865. {
  41866. name: "Macro",
  41867. height: math.unit(900, "feet")
  41868. },
  41869. {
  41870. name: "Megamacro",
  41871. height: math.unit(9000, "feet")
  41872. },
  41873. {
  41874. name: "City-Crushing",
  41875. height: math.unit(27000, "feet")
  41876. },
  41877. {
  41878. name: "Mountain-Mashing",
  41879. height: math.unit(90000, "feet")
  41880. },
  41881. {
  41882. name: "Nation Nemesis",
  41883. height: math.unit(9e6, "feet")
  41884. },
  41885. {
  41886. name: "Continent Cracker",
  41887. height: math.unit(27e6, "feet")
  41888. },
  41889. {
  41890. name: "Earth-Eclipsing",
  41891. height: math.unit(2.7e8, "feet")
  41892. },
  41893. {
  41894. name: "Gas Giant Gulper",
  41895. height: math.unit(2.7e9, "feet")
  41896. },
  41897. {
  41898. name: "Sol-Swallowing",
  41899. height: math.unit(9e10, "feet")
  41900. },
  41901. {
  41902. name: "Galaxy Gulper",
  41903. height: math.unit(9, "galaxies")
  41904. },
  41905. {
  41906. name: "Cosmos Churner",
  41907. height: math.unit(9, "universes")
  41908. },
  41909. ]
  41910. ))
  41911. characterMakers.push(() => makeCharacter(
  41912. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41913. {
  41914. front: {
  41915. height: math.unit(160, "cm"),
  41916. weight: math.unit(55, "kg"),
  41917. name: "Front",
  41918. image: {
  41919. source: "./media/characters/tow/front.svg",
  41920. extra: 1751/1722,
  41921. bottom: 74/1825
  41922. }
  41923. },
  41924. },
  41925. [
  41926. {
  41927. name: "Norm",
  41928. height: math.unit(160, "cm")
  41929. },
  41930. {
  41931. name: "Casual",
  41932. height: math.unit(3200, "m"),
  41933. default: true
  41934. },
  41935. {
  41936. name: "Show-Off",
  41937. height: math.unit(160, "km")
  41938. },
  41939. ]
  41940. ))
  41941. characterMakers.push(() => makeCharacter(
  41942. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41943. {
  41944. front: {
  41945. height: math.unit(7 + 11/12, "feet"),
  41946. weight: math.unit(342.8, "lb"),
  41947. name: "Front",
  41948. image: {
  41949. source: "./media/characters/vivian-orca-dragon/front.svg",
  41950. extra: 1890/1865,
  41951. bottom: 28/1918
  41952. }
  41953. },
  41954. },
  41955. [
  41956. {
  41957. name: "Micro",
  41958. height: math.unit(5, "inches")
  41959. },
  41960. {
  41961. name: "Normal",
  41962. height: math.unit(7 + 11/12, "feet"),
  41963. default: true
  41964. },
  41965. {
  41966. name: "Macro",
  41967. height: math.unit(395 + 7/12, "feet")
  41968. },
  41969. ]
  41970. ))
  41971. characterMakers.push(() => makeCharacter(
  41972. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41973. {
  41974. side: {
  41975. height: math.unit(10, "feet"),
  41976. weight: math.unit(1442, "lb"),
  41977. name: "Side",
  41978. image: {
  41979. source: "./media/characters/lotherakon/side.svg",
  41980. extra: 1604/1497,
  41981. bottom: 89/1693
  41982. }
  41983. },
  41984. },
  41985. [
  41986. {
  41987. name: "Mortal Interaction",
  41988. height: math.unit(10, "feet")
  41989. },
  41990. {
  41991. name: "Large",
  41992. height: math.unit(30, "feet"),
  41993. default: true
  41994. },
  41995. {
  41996. name: "Giant",
  41997. height: math.unit(100, "feet")
  41998. },
  41999. {
  42000. name: "Kaiju",
  42001. height: math.unit(300, "feet")
  42002. },
  42003. {
  42004. name: "Macro",
  42005. height: math.unit(1000, "feet")
  42006. },
  42007. {
  42008. name: "Macro+",
  42009. height: math.unit(3000, "feet")
  42010. },
  42011. {
  42012. name: "Megamacro",
  42013. height: math.unit(10000, "feet")
  42014. },
  42015. {
  42016. name: "City-Crushing",
  42017. height: math.unit(30000, "feet")
  42018. },
  42019. {
  42020. name: "Continent Cracker",
  42021. height: math.unit(30e6, "feet")
  42022. },
  42023. {
  42024. name: "Earth Eclipsing",
  42025. height: math.unit(3e8, "feet")
  42026. },
  42027. {
  42028. name: "Gas Giant Gulper",
  42029. height: math.unit(3e9, "feet")
  42030. },
  42031. {
  42032. name: "Sol-Swallowing",
  42033. height: math.unit(1e11, "feet")
  42034. },
  42035. {
  42036. name: "System Swallower",
  42037. height: math.unit(3e14, "feet")
  42038. },
  42039. {
  42040. name: "Galaxy Gulper",
  42041. height: math.unit(10, "galaxies")
  42042. },
  42043. {
  42044. name: "Light Universal",
  42045. height: math.unit(5, "universes")
  42046. },
  42047. {
  42048. name: "Universe Palm",
  42049. height: math.unit(20, "universes")
  42050. },
  42051. {
  42052. name: "Light Multiversal",
  42053. height: math.unit(5, "multiverses")
  42054. },
  42055. {
  42056. name: "Multiverse Palm",
  42057. height: math.unit(20, "multiverses")
  42058. },
  42059. {
  42060. name: "Inferno Incarnate",
  42061. height: math.unit(1e7, "multiverses")
  42062. },
  42063. ]
  42064. ))
  42065. characterMakers.push(() => makeCharacter(
  42066. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42067. {
  42068. front: {
  42069. height: math.unit(8, "feet"),
  42070. weight: math.unit(1200, "lb"),
  42071. name: "Front",
  42072. image: {
  42073. source: "./media/characters/malithee/front.svg",
  42074. extra: 1675/1640,
  42075. bottom: 162/1837
  42076. }
  42077. },
  42078. },
  42079. [
  42080. {
  42081. name: "Mortal Interaction",
  42082. height: math.unit(8, "feet"),
  42083. default: true
  42084. },
  42085. {
  42086. name: "Large",
  42087. height: math.unit(24, "feet")
  42088. },
  42089. {
  42090. name: "Kaiju",
  42091. height: math.unit(240, "feet")
  42092. },
  42093. {
  42094. name: "Megamacro",
  42095. height: math.unit(8000, "feet")
  42096. },
  42097. {
  42098. name: "Continent Cracker",
  42099. height: math.unit(24e6, "feet")
  42100. },
  42101. {
  42102. name: "Earth-Eclipsing",
  42103. height: math.unit(2.4e8, "feet")
  42104. },
  42105. {
  42106. name: "Sol-Swallowing",
  42107. height: math.unit(8e10, "feet")
  42108. },
  42109. {
  42110. name: "Galaxy Gulper",
  42111. height: math.unit(8, "galaxies")
  42112. },
  42113. {
  42114. name: "Light Universal",
  42115. height: math.unit(4, "universes")
  42116. },
  42117. {
  42118. name: "Universe Atoms",
  42119. height: math.unit(1.829e9, "universes")
  42120. },
  42121. {
  42122. name: "Light Multiversal",
  42123. height: math.unit(4, "multiverses")
  42124. },
  42125. {
  42126. name: "Multiverse Atoms",
  42127. height: math.unit(1.829e9, "multiverses")
  42128. },
  42129. {
  42130. name: "Nigh-Omnipresence",
  42131. height: math.unit(8e261, "multiverses")
  42132. },
  42133. ]
  42134. ))
  42135. characterMakers.push(() => makeCharacter(
  42136. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42137. {
  42138. front: {
  42139. height: math.unit(10, "feet"),
  42140. weight: math.unit(1500, "lb"),
  42141. name: "Front",
  42142. image: {
  42143. source: "./media/characters/miles-thestia/front.svg",
  42144. extra: 1812/1727,
  42145. bottom: 86/1898
  42146. }
  42147. },
  42148. back: {
  42149. height: math.unit(10, "feet"),
  42150. weight: math.unit(1500, "lb"),
  42151. name: "Back",
  42152. image: {
  42153. source: "./media/characters/miles-thestia/back.svg",
  42154. extra: 1799/1690,
  42155. bottom: 47/1846
  42156. }
  42157. },
  42158. frontNsfw: {
  42159. height: math.unit(10, "feet"),
  42160. weight: math.unit(1500, "lb"),
  42161. name: "Front (NSFW)",
  42162. image: {
  42163. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42164. extra: 1812/1727,
  42165. bottom: 86/1898
  42166. }
  42167. },
  42168. },
  42169. [
  42170. {
  42171. name: "Mini-Macro",
  42172. height: math.unit(10, "feet"),
  42173. default: true
  42174. },
  42175. ]
  42176. ))
  42177. characterMakers.push(() => makeCharacter(
  42178. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42179. {
  42180. front: {
  42181. height: math.unit(25, "feet"),
  42182. name: "Front",
  42183. image: {
  42184. source: "./media/characters/titan-s-wulf/front.svg",
  42185. extra: 1560/1484,
  42186. bottom: 76/1636
  42187. }
  42188. },
  42189. },
  42190. [
  42191. {
  42192. name: "Smallest",
  42193. height: math.unit(25, "feet"),
  42194. default: true
  42195. },
  42196. {
  42197. name: "Normal",
  42198. height: math.unit(200, "feet")
  42199. },
  42200. {
  42201. name: "Macro",
  42202. height: math.unit(200000, "feet")
  42203. },
  42204. {
  42205. name: "Multiversal Original",
  42206. height: math.unit(10000, "multiverses")
  42207. },
  42208. ]
  42209. ))
  42210. characterMakers.push(() => makeCharacter(
  42211. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42212. {
  42213. front: {
  42214. height: math.unit(8, "feet"),
  42215. weight: math.unit(553, "lb"),
  42216. name: "Front",
  42217. image: {
  42218. source: "./media/characters/tawendeh/front.svg",
  42219. extra: 2365/2268,
  42220. bottom: 83/2448
  42221. }
  42222. },
  42223. frontClothed: {
  42224. height: math.unit(8, "feet"),
  42225. weight: math.unit(553, "lb"),
  42226. name: "Front (Clothed)",
  42227. image: {
  42228. source: "./media/characters/tawendeh/front-clothed.svg",
  42229. extra: 2365/2268,
  42230. bottom: 83/2448
  42231. }
  42232. },
  42233. back: {
  42234. height: math.unit(8, "feet"),
  42235. weight: math.unit(553, "lb"),
  42236. name: "Back",
  42237. image: {
  42238. source: "./media/characters/tawendeh/back.svg",
  42239. extra: 2397/2294,
  42240. bottom: 42/2439
  42241. }
  42242. },
  42243. },
  42244. [
  42245. {
  42246. name: "Mortal Interaction",
  42247. height: math.unit(8, "feet"),
  42248. default: true
  42249. },
  42250. {
  42251. name: "Giant",
  42252. height: math.unit(80, "feet")
  42253. },
  42254. {
  42255. name: "Macro",
  42256. height: math.unit(800, "feet")
  42257. },
  42258. {
  42259. name: "Megamacro",
  42260. height: math.unit(8000, "feet")
  42261. },
  42262. {
  42263. name: "City-Crushing",
  42264. height: math.unit(24000, "feet")
  42265. },
  42266. {
  42267. name: "Mountain-Mashing",
  42268. height: math.unit(80000, "feet")
  42269. },
  42270. {
  42271. name: "Nation Nemesis",
  42272. height: math.unit(8e6, "feet")
  42273. },
  42274. {
  42275. name: "Continent Cracker",
  42276. height: math.unit(24e6, "feet")
  42277. },
  42278. {
  42279. name: "Earth-Eclipsing",
  42280. height: math.unit(2.4e8, "feet")
  42281. },
  42282. {
  42283. name: "Gas Giant Gulper",
  42284. height: math.unit(2.4e9, "feet")
  42285. },
  42286. {
  42287. name: "Sol-Swallowing",
  42288. height: math.unit(8e10, "feet")
  42289. },
  42290. {
  42291. name: "Galaxy Gulper",
  42292. height: math.unit(8, "galaxies")
  42293. },
  42294. {
  42295. name: "Cosmos Churner",
  42296. height: math.unit(8, "universes")
  42297. },
  42298. {
  42299. name: "Omnipotent Otter",
  42300. height: math.unit(80, "universes")
  42301. },
  42302. ]
  42303. ))
  42304. characterMakers.push(() => makeCharacter(
  42305. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42306. {
  42307. front: {
  42308. height: math.unit(2.6, "meters"),
  42309. weight: math.unit(900, "kg"),
  42310. name: "Front",
  42311. image: {
  42312. source: "./media/characters/neesha/front.svg",
  42313. extra: 1803/1653,
  42314. bottom: 128/1931
  42315. }
  42316. },
  42317. },
  42318. [
  42319. {
  42320. name: "Normal",
  42321. height: math.unit(2.6, "meters"),
  42322. default: true
  42323. },
  42324. {
  42325. name: "Macro",
  42326. height: math.unit(50, "meters")
  42327. },
  42328. ]
  42329. ))
  42330. characterMakers.push(() => makeCharacter(
  42331. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42332. {
  42333. front: {
  42334. height: math.unit(5, "feet"),
  42335. weight: math.unit(185, "lb"),
  42336. name: "Front",
  42337. image: {
  42338. source: "./media/characters/kyera/front.svg",
  42339. extra: 1875/1790,
  42340. bottom: 96/1971
  42341. }
  42342. },
  42343. },
  42344. [
  42345. {
  42346. name: "Normal",
  42347. height: math.unit(5, "feet"),
  42348. default: true
  42349. },
  42350. ]
  42351. ))
  42352. characterMakers.push(() => makeCharacter(
  42353. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42354. {
  42355. front: {
  42356. height: math.unit(7 + 6/12, "feet"),
  42357. weight: math.unit(540, "lb"),
  42358. name: "Front",
  42359. image: {
  42360. source: "./media/characters/yuko/front.svg",
  42361. extra: 1282/1222,
  42362. bottom: 101/1383
  42363. }
  42364. },
  42365. frontClothed: {
  42366. height: math.unit(7 + 6/12, "feet"),
  42367. weight: math.unit(540, "lb"),
  42368. name: "Front (Clothed)",
  42369. image: {
  42370. source: "./media/characters/yuko/front-clothed.svg",
  42371. extra: 1282/1222,
  42372. bottom: 101/1383
  42373. }
  42374. },
  42375. },
  42376. [
  42377. {
  42378. name: "Normal",
  42379. height: math.unit(7 + 6/12, "feet"),
  42380. default: true
  42381. },
  42382. {
  42383. name: "Macro",
  42384. height: math.unit(26 + 9/12, "feet")
  42385. },
  42386. {
  42387. name: "Megamacro",
  42388. height: math.unit(300, "feet")
  42389. },
  42390. {
  42391. name: "Gigamacro",
  42392. height: math.unit(5000, "feet")
  42393. },
  42394. {
  42395. name: "Planetary",
  42396. height: math.unit(10000, "miles")
  42397. },
  42398. ]
  42399. ))
  42400. characterMakers.push(() => makeCharacter(
  42401. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42402. {
  42403. front: {
  42404. height: math.unit(8 + 2/12, "feet"),
  42405. weight: math.unit(600, "lb"),
  42406. name: "Front",
  42407. image: {
  42408. source: "./media/characters/deam-nitrel/front.svg",
  42409. extra: 1308/1234,
  42410. bottom: 125/1433
  42411. }
  42412. },
  42413. },
  42414. [
  42415. {
  42416. name: "Normal",
  42417. height: math.unit(8 + 2/12, "feet"),
  42418. default: true
  42419. },
  42420. ]
  42421. ))
  42422. characterMakers.push(() => makeCharacter(
  42423. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42424. {
  42425. front: {
  42426. height: math.unit(6.1, "feet"),
  42427. weight: math.unit(180, "lb"),
  42428. name: "Front",
  42429. image: {
  42430. source: "./media/characters/skyress/front.svg",
  42431. extra: 1045/915,
  42432. bottom: 28/1073
  42433. }
  42434. },
  42435. maw: {
  42436. height: math.unit(1, "feet"),
  42437. name: "Maw",
  42438. image: {
  42439. source: "./media/characters/skyress/maw.svg"
  42440. }
  42441. },
  42442. },
  42443. [
  42444. {
  42445. name: "Normal",
  42446. height: math.unit(6.1, "feet"),
  42447. default: true
  42448. },
  42449. {
  42450. name: "Macro",
  42451. height: math.unit(200, "feet")
  42452. },
  42453. ]
  42454. ))
  42455. characterMakers.push(() => makeCharacter(
  42456. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42457. {
  42458. front: {
  42459. height: math.unit(4 + 2/12, "feet"),
  42460. weight: math.unit(40, "kg"),
  42461. name: "Front",
  42462. image: {
  42463. source: "./media/characters/amethyst-jones/front.svg",
  42464. extra: 1220/1150,
  42465. bottom: 101/1321
  42466. }
  42467. },
  42468. },
  42469. [
  42470. {
  42471. name: "Normal",
  42472. height: math.unit(4 + 2/12, "feet"),
  42473. default: true
  42474. },
  42475. ]
  42476. ))
  42477. characterMakers.push(() => makeCharacter(
  42478. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42479. {
  42480. front: {
  42481. height: math.unit(1.7, "m"),
  42482. weight: math.unit(135, "lb"),
  42483. name: "Front",
  42484. image: {
  42485. source: "./media/characters/jade/front.svg",
  42486. extra: 1818/1767,
  42487. bottom: 32/1850
  42488. }
  42489. },
  42490. back: {
  42491. height: math.unit(1.7, "m"),
  42492. weight: math.unit(135, "lb"),
  42493. name: "Back",
  42494. image: {
  42495. source: "./media/characters/jade/back.svg",
  42496. extra: 1869/1809,
  42497. bottom: 35/1904
  42498. }
  42499. },
  42500. hand: {
  42501. height: math.unit(0.24, "m"),
  42502. name: "Hand",
  42503. image: {
  42504. source: "./media/characters/jade/hand.svg"
  42505. }
  42506. },
  42507. foot: {
  42508. height: math.unit(0.263, "m"),
  42509. name: "Foot",
  42510. image: {
  42511. source: "./media/characters/jade/foot.svg"
  42512. }
  42513. },
  42514. dick: {
  42515. height: math.unit(0.47, "m"),
  42516. name: "Dick",
  42517. image: {
  42518. source: "./media/characters/jade/dick.svg"
  42519. }
  42520. },
  42521. },
  42522. [
  42523. {
  42524. name: "Micro",
  42525. height: math.unit(22, "cm")
  42526. },
  42527. {
  42528. name: "Normal",
  42529. height: math.unit(1.7, "m"),
  42530. default: true
  42531. },
  42532. {
  42533. name: "Macro",
  42534. height: math.unit(152, "m")
  42535. },
  42536. ]
  42537. ))
  42538. characterMakers.push(() => makeCharacter(
  42539. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42540. {
  42541. front: {
  42542. height: math.unit(100, "miles"),
  42543. weight: math.unit(20000, "tons"),
  42544. name: "Front",
  42545. image: {
  42546. source: "./media/characters/cookie/front.svg",
  42547. extra: 1125/1070,
  42548. bottom: 30/1155
  42549. }
  42550. },
  42551. },
  42552. [
  42553. {
  42554. name: "Big",
  42555. height: math.unit(50, "feet")
  42556. },
  42557. {
  42558. name: "Macro",
  42559. height: math.unit(100, "miles"),
  42560. default: true
  42561. },
  42562. {
  42563. name: "Megamacro",
  42564. height: math.unit(90000, "miles")
  42565. },
  42566. ]
  42567. ))
  42568. characterMakers.push(() => makeCharacter(
  42569. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42570. {
  42571. front: {
  42572. height: math.unit(6, "feet"),
  42573. weight: math.unit(145, "lb"),
  42574. name: "Front",
  42575. image: {
  42576. source: "./media/characters/farzian/front.svg",
  42577. extra: 1902/1693,
  42578. bottom: 108/2010
  42579. }
  42580. },
  42581. },
  42582. [
  42583. {
  42584. name: "Macro",
  42585. height: math.unit(500, "feet"),
  42586. default: true
  42587. },
  42588. ]
  42589. ))
  42590. characterMakers.push(() => makeCharacter(
  42591. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42592. {
  42593. front: {
  42594. height: math.unit(3 + 6/12, "feet"),
  42595. weight: math.unit(50, "lb"),
  42596. name: "Front",
  42597. image: {
  42598. source: "./media/characters/kimberly-tilson/front.svg",
  42599. extra: 1400/1322,
  42600. bottom: 36/1436
  42601. }
  42602. },
  42603. back: {
  42604. height: math.unit(3 + 6/12, "feet"),
  42605. weight: math.unit(50, "lb"),
  42606. name: "Back",
  42607. image: {
  42608. source: "./media/characters/kimberly-tilson/back.svg",
  42609. extra: 1370/1307,
  42610. bottom: 20/1390
  42611. }
  42612. },
  42613. },
  42614. [
  42615. {
  42616. name: "Normal",
  42617. height: math.unit(3 + 6/12, "feet"),
  42618. default: true
  42619. },
  42620. ]
  42621. ))
  42622. characterMakers.push(() => makeCharacter(
  42623. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42624. {
  42625. front: {
  42626. height: math.unit(350, "meters"),
  42627. weight: math.unit(7.57059e+8, "lb"),
  42628. name: "Front",
  42629. image: {
  42630. source: "./media/characters/harthos/front.svg",
  42631. extra: 455/446,
  42632. bottom: 15/470
  42633. },
  42634. form: "peacekeeper",
  42635. default: true
  42636. },
  42637. allusus_front: {
  42638. height: math.unit(270, "meters"),
  42639. weight: math.unit(3.47550e+8, "lb"),
  42640. name: "Front",
  42641. image: {
  42642. source: "./media/characters/harthos/allusus-front.svg",
  42643. extra: 455/446,
  42644. bottom: 15/470
  42645. },
  42646. form: "allusus",
  42647. },
  42648. },
  42649. [
  42650. {
  42651. name: "Macro",
  42652. height: math.unit(350, "meters"),
  42653. default: true,
  42654. form: "peacekeeper"
  42655. },
  42656. {
  42657. name: "Macro",
  42658. height: math.unit(270, "meters"),
  42659. default: true,
  42660. form: "allusus"
  42661. },
  42662. ],
  42663. {
  42664. "peacekeeper": {
  42665. name: "Peacekeeper",
  42666. default: true
  42667. },
  42668. "allusus": {
  42669. name: "Allusus",
  42670. },
  42671. }
  42672. ))
  42673. characterMakers.push(() => makeCharacter(
  42674. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42675. {
  42676. front: {
  42677. height: math.unit(15, "feet"),
  42678. name: "Front",
  42679. image: {
  42680. source: "./media/characters/hypatia/front.svg",
  42681. extra: 1653/1591,
  42682. bottom: 79/1732
  42683. }
  42684. },
  42685. },
  42686. [
  42687. {
  42688. name: "Normal",
  42689. height: math.unit(15, "feet")
  42690. },
  42691. {
  42692. name: "Small",
  42693. height: math.unit(300, "feet")
  42694. },
  42695. {
  42696. name: "Macro",
  42697. height: math.unit(2500, "feet"),
  42698. default: true
  42699. },
  42700. {
  42701. name: "Mega Macro",
  42702. height: math.unit(1500, "miles")
  42703. },
  42704. {
  42705. name: "Giga Macro",
  42706. height: math.unit(1.5e6, "miles")
  42707. },
  42708. ]
  42709. ))
  42710. characterMakers.push(() => makeCharacter(
  42711. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42712. {
  42713. front: {
  42714. height: math.unit(6, "feet"),
  42715. weight: math.unit(200, "lb"),
  42716. name: "Front",
  42717. image: {
  42718. source: "./media/characters/wulver/front.svg",
  42719. extra: 1724/1632,
  42720. bottom: 130/1854
  42721. }
  42722. },
  42723. frontNsfw: {
  42724. height: math.unit(6, "feet"),
  42725. weight: math.unit(200, "lb"),
  42726. name: "Front (NSFW)",
  42727. image: {
  42728. source: "./media/characters/wulver/front-nsfw.svg",
  42729. extra: 1724/1632,
  42730. bottom: 130/1854
  42731. }
  42732. },
  42733. },
  42734. [
  42735. {
  42736. name: "Human-Sized",
  42737. height: math.unit(6, "feet")
  42738. },
  42739. {
  42740. name: "Normal",
  42741. height: math.unit(4, "meters"),
  42742. default: true
  42743. },
  42744. {
  42745. name: "Large",
  42746. height: math.unit(6, "m")
  42747. },
  42748. ]
  42749. ))
  42750. characterMakers.push(() => makeCharacter(
  42751. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42752. {
  42753. front: {
  42754. height: math.unit(7, "feet"),
  42755. name: "Front",
  42756. image: {
  42757. source: "./media/characters/maru/front.svg",
  42758. extra: 1595/1570,
  42759. bottom: 0/1595
  42760. }
  42761. },
  42762. },
  42763. [
  42764. {
  42765. name: "Normal",
  42766. height: math.unit(7, "feet"),
  42767. default: true
  42768. },
  42769. {
  42770. name: "Macro",
  42771. height: math.unit(700, "feet")
  42772. },
  42773. {
  42774. name: "Mega Macro",
  42775. height: math.unit(25, "miles")
  42776. },
  42777. ]
  42778. ))
  42779. characterMakers.push(() => makeCharacter(
  42780. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42781. {
  42782. front: {
  42783. height: math.unit(6, "feet"),
  42784. weight: math.unit(170, "lb"),
  42785. name: "Front",
  42786. image: {
  42787. source: "./media/characters/xenon/front.svg",
  42788. extra: 1376/1305,
  42789. bottom: 56/1432
  42790. }
  42791. },
  42792. back: {
  42793. height: math.unit(6, "feet"),
  42794. weight: math.unit(170, "lb"),
  42795. name: "Back",
  42796. image: {
  42797. source: "./media/characters/xenon/back.svg",
  42798. extra: 1328/1259,
  42799. bottom: 95/1423
  42800. }
  42801. },
  42802. maw: {
  42803. height: math.unit(0.52, "feet"),
  42804. name: "Maw",
  42805. image: {
  42806. source: "./media/characters/xenon/maw.svg"
  42807. }
  42808. },
  42809. handLeft: {
  42810. height: math.unit(0.82 * 169 / 153, "feet"),
  42811. name: "Hand (Left)",
  42812. image: {
  42813. source: "./media/characters/xenon/hand-left.svg"
  42814. }
  42815. },
  42816. handRight: {
  42817. height: math.unit(0.82, "feet"),
  42818. name: "Hand (Right)",
  42819. image: {
  42820. source: "./media/characters/xenon/hand-right.svg"
  42821. }
  42822. },
  42823. footLeft: {
  42824. height: math.unit(1.13, "feet"),
  42825. name: "Foot (Left)",
  42826. image: {
  42827. source: "./media/characters/xenon/foot-left.svg"
  42828. }
  42829. },
  42830. footRight: {
  42831. height: math.unit(1.13 * 194 / 196, "feet"),
  42832. name: "Foot (Right)",
  42833. image: {
  42834. source: "./media/characters/xenon/foot-right.svg"
  42835. }
  42836. },
  42837. },
  42838. [
  42839. {
  42840. name: "Micro",
  42841. height: math.unit(0.8, "inches")
  42842. },
  42843. {
  42844. name: "Normal",
  42845. height: math.unit(6, "feet")
  42846. },
  42847. {
  42848. name: "Macro",
  42849. height: math.unit(50, "feet"),
  42850. default: true
  42851. },
  42852. {
  42853. name: "Macro+",
  42854. height: math.unit(250, "feet")
  42855. },
  42856. {
  42857. name: "Megamacro",
  42858. height: math.unit(1500, "feet")
  42859. },
  42860. ]
  42861. ))
  42862. characterMakers.push(() => makeCharacter(
  42863. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42864. {
  42865. front: {
  42866. height: math.unit(7 + 5/12, "feet"),
  42867. name: "Front",
  42868. image: {
  42869. source: "./media/characters/zane/front.svg",
  42870. extra: 1260/1203,
  42871. bottom: 94/1354
  42872. }
  42873. },
  42874. back: {
  42875. height: math.unit(5.05, "feet"),
  42876. name: "Back",
  42877. image: {
  42878. source: "./media/characters/zane/back.svg",
  42879. extra: 893/829,
  42880. bottom: 30/923
  42881. }
  42882. },
  42883. werewolf: {
  42884. height: math.unit(11, "feet"),
  42885. name: "Werewolf",
  42886. image: {
  42887. source: "./media/characters/zane/werewolf.svg",
  42888. extra: 1383/1323,
  42889. bottom: 89/1472
  42890. }
  42891. },
  42892. foot: {
  42893. height: math.unit(1.46, "feet"),
  42894. name: "Foot",
  42895. image: {
  42896. source: "./media/characters/zane/foot.svg"
  42897. }
  42898. },
  42899. footFront: {
  42900. height: math.unit(0.784, "feet"),
  42901. name: "Foot (Front)",
  42902. image: {
  42903. source: "./media/characters/zane/foot-front.svg"
  42904. }
  42905. },
  42906. dick: {
  42907. height: math.unit(1.95, "feet"),
  42908. name: "Dick",
  42909. image: {
  42910. source: "./media/characters/zane/dick.svg"
  42911. }
  42912. },
  42913. dickWerewolf: {
  42914. height: math.unit(3.77, "feet"),
  42915. name: "Dick (Werewolf)",
  42916. image: {
  42917. source: "./media/characters/zane/dick.svg"
  42918. }
  42919. },
  42920. },
  42921. [
  42922. {
  42923. name: "Normal",
  42924. height: math.unit(7 + 5/12, "feet"),
  42925. default: true
  42926. },
  42927. ]
  42928. ))
  42929. characterMakers.push(() => makeCharacter(
  42930. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42931. {
  42932. front: {
  42933. height: math.unit(6 + 2/12, "feet"),
  42934. weight: math.unit(284, "lb"),
  42935. name: "Front",
  42936. image: {
  42937. source: "./media/characters/benni-desparque/front.svg",
  42938. extra: 878/729,
  42939. bottom: 58/936
  42940. }
  42941. },
  42942. back: {
  42943. height: math.unit(6 + 2/12, "feet"),
  42944. weight: math.unit(284, "lb"),
  42945. name: "Back",
  42946. image: {
  42947. source: "./media/characters/benni-desparque/back.svg",
  42948. extra: 901/756,
  42949. bottom: 51/952
  42950. }
  42951. },
  42952. dressed: {
  42953. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  42954. weight: math.unit(284, "lb"),
  42955. name: "Dressed",
  42956. image: {
  42957. source: "./media/characters/benni-desparque/dressed.svg",
  42958. extra: 1514/1276,
  42959. bottom: 65/1579
  42960. }
  42961. },
  42962. hand: {
  42963. height: math.unit(1.28, "feet"),
  42964. name: "Hand",
  42965. image: {
  42966. source: "./media/characters/benni-desparque/hand.svg"
  42967. }
  42968. },
  42969. foot: {
  42970. height: math.unit(1.53, "feet"),
  42971. name: "Foot",
  42972. image: {
  42973. source: "./media/characters/benni-desparque/foot.svg"
  42974. }
  42975. },
  42976. aiControlUnit: {
  42977. height: math.unit(0.175, "feet"),
  42978. name: "AI Control Unit",
  42979. image: {
  42980. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  42981. }
  42982. },
  42983. },
  42984. [
  42985. {
  42986. name: "Civilian",
  42987. height: math.unit(6 + 2/12, "feet")
  42988. },
  42989. {
  42990. name: "Normal",
  42991. height: math.unit(98, "feet"),
  42992. default: true
  42993. },
  42994. {
  42995. name: "Kaiju Fighter",
  42996. height: math.unit(268, "feet")
  42997. },
  42998. ]
  42999. ))
  43000. characterMakers.push(() => makeCharacter(
  43001. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43002. {
  43003. front: {
  43004. height: math.unit(5, "feet"),
  43005. weight: math.unit(105, "lb"),
  43006. name: "Front",
  43007. image: {
  43008. source: "./media/characters/maxine/front.svg",
  43009. extra: 1386/1250,
  43010. bottom: 71/1457
  43011. }
  43012. },
  43013. },
  43014. [
  43015. {
  43016. name: "Normal",
  43017. height: math.unit(5, "feet"),
  43018. default: true
  43019. },
  43020. ]
  43021. ))
  43022. characterMakers.push(() => makeCharacter(
  43023. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43024. {
  43025. front: {
  43026. height: math.unit(11 + 7/12, "feet"),
  43027. weight: math.unit(9576, "lb"),
  43028. name: "Front",
  43029. image: {
  43030. source: "./media/characters/scaly/front.svg",
  43031. extra: 888/867,
  43032. bottom: 36/924
  43033. }
  43034. },
  43035. },
  43036. [
  43037. {
  43038. name: "Normal",
  43039. height: math.unit(11 + 7/12, "feet"),
  43040. default: true
  43041. },
  43042. ]
  43043. ))
  43044. characterMakers.push(() => makeCharacter(
  43045. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43046. {
  43047. front: {
  43048. height: math.unit(6 + 3/12, "feet"),
  43049. name: "Front",
  43050. image: {
  43051. source: "./media/characters/saelria/front.svg",
  43052. extra: 1243/1138,
  43053. bottom: 46/1289
  43054. }
  43055. },
  43056. },
  43057. [
  43058. {
  43059. name: "Micro",
  43060. height: math.unit(6, "inches"),
  43061. },
  43062. {
  43063. name: "Normal",
  43064. height: math.unit(6 + 3/12, "feet"),
  43065. default: true
  43066. },
  43067. {
  43068. name: "Macro",
  43069. height: math.unit(25, "feet")
  43070. },
  43071. ]
  43072. ))
  43073. characterMakers.push(() => makeCharacter(
  43074. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43075. {
  43076. front: {
  43077. height: math.unit(80, "meters"),
  43078. weight: math.unit(7000, "tonnes"),
  43079. name: "Front",
  43080. image: {
  43081. source: "./media/characters/tef/front.svg",
  43082. extra: 2036/1991,
  43083. bottom: 54/2090
  43084. }
  43085. },
  43086. back: {
  43087. height: math.unit(80, "meters"),
  43088. weight: math.unit(7000, "tonnes"),
  43089. name: "Back",
  43090. image: {
  43091. source: "./media/characters/tef/back.svg",
  43092. extra: 2036/1991,
  43093. bottom: 54/2090
  43094. }
  43095. },
  43096. },
  43097. [
  43098. {
  43099. name: "Macro",
  43100. height: math.unit(80, "meters"),
  43101. default: true
  43102. },
  43103. ]
  43104. ))
  43105. characterMakers.push(() => makeCharacter(
  43106. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43107. {
  43108. front: {
  43109. height: math.unit(13, "feet"),
  43110. weight: math.unit(6, "tons"),
  43111. name: "Front",
  43112. image: {
  43113. source: "./media/characters/rover/front.svg",
  43114. extra: 1233/1156,
  43115. bottom: 50/1283
  43116. }
  43117. },
  43118. back: {
  43119. height: math.unit(13, "feet"),
  43120. weight: math.unit(6, "tons"),
  43121. name: "Back",
  43122. image: {
  43123. source: "./media/characters/rover/back.svg",
  43124. extra: 1327/1258,
  43125. bottom: 39/1366
  43126. }
  43127. },
  43128. },
  43129. [
  43130. {
  43131. name: "Normal",
  43132. height: math.unit(13, "feet"),
  43133. default: true
  43134. },
  43135. {
  43136. name: "Macro",
  43137. height: math.unit(1300, "feet")
  43138. },
  43139. {
  43140. name: "Megamacro",
  43141. height: math.unit(1300, "miles")
  43142. },
  43143. {
  43144. name: "Gigamacro",
  43145. height: math.unit(1300000, "miles")
  43146. },
  43147. ]
  43148. ))
  43149. characterMakers.push(() => makeCharacter(
  43150. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43151. {
  43152. front: {
  43153. height: math.unit(10, "feet"),
  43154. weight: math.unit(500, "lb"),
  43155. name: "Front",
  43156. image: {
  43157. source: "./media/characters/ariz/front.svg",
  43158. extra: 461/450,
  43159. bottom: 16/477
  43160. }
  43161. },
  43162. },
  43163. [
  43164. {
  43165. name: "MiniMacro",
  43166. height: math.unit(10, "feet"),
  43167. default: true
  43168. },
  43169. ]
  43170. ))
  43171. characterMakers.push(() => makeCharacter(
  43172. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43173. {
  43174. front: {
  43175. height: math.unit(6, "feet"),
  43176. weight: math.unit(140, "lb"),
  43177. name: "Front",
  43178. image: {
  43179. source: "./media/characters/sigrun/front.svg",
  43180. extra: 1418/1359,
  43181. bottom: 27/1445
  43182. }
  43183. },
  43184. },
  43185. [
  43186. {
  43187. name: "Macro",
  43188. height: math.unit(35, "feet"),
  43189. default: true
  43190. },
  43191. ]
  43192. ))
  43193. characterMakers.push(() => makeCharacter(
  43194. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43195. {
  43196. front: {
  43197. height: math.unit(6, "feet"),
  43198. weight: math.unit(150, "lb"),
  43199. name: "Front",
  43200. image: {
  43201. source: "./media/characters/numin/front.svg",
  43202. extra: 1433/1388,
  43203. bottom: 12/1445
  43204. }
  43205. },
  43206. },
  43207. [
  43208. {
  43209. name: "Macro",
  43210. height: math.unit(21.5, "km"),
  43211. default: true
  43212. },
  43213. ]
  43214. ))
  43215. characterMakers.push(() => makeCharacter(
  43216. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43217. {
  43218. front: {
  43219. height: math.unit(6, "feet"),
  43220. weight: math.unit(463, "lb"),
  43221. name: "Front",
  43222. image: {
  43223. source: "./media/characters/melwa/front.svg",
  43224. extra: 1307/1248,
  43225. bottom: 93/1400
  43226. }
  43227. },
  43228. },
  43229. [
  43230. {
  43231. name: "Macro",
  43232. height: math.unit(50, "meters"),
  43233. default: true
  43234. },
  43235. ]
  43236. ))
  43237. characterMakers.push(() => makeCharacter(
  43238. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43239. {
  43240. front: {
  43241. height: math.unit(325, "feet"),
  43242. name: "Front",
  43243. image: {
  43244. source: "./media/characters/zorkaiju/front.svg",
  43245. extra: 1955/1814,
  43246. bottom: 40/1995
  43247. }
  43248. },
  43249. frontExtended: {
  43250. height: math.unit(325, "feet"),
  43251. name: "Front (Extended)",
  43252. image: {
  43253. source: "./media/characters/zorkaiju/front-extended.svg",
  43254. extra: 1955/1814,
  43255. bottom: 40/1995
  43256. }
  43257. },
  43258. side: {
  43259. height: math.unit(325, "feet"),
  43260. name: "Side",
  43261. image: {
  43262. source: "./media/characters/zorkaiju/side.svg",
  43263. extra: 1495/1396,
  43264. bottom: 17/1512
  43265. }
  43266. },
  43267. sideExtended: {
  43268. height: math.unit(325, "feet"),
  43269. name: "Side (Extended)",
  43270. image: {
  43271. source: "./media/characters/zorkaiju/side-extended.svg",
  43272. extra: 1495/1396,
  43273. bottom: 17/1512
  43274. }
  43275. },
  43276. back: {
  43277. height: math.unit(325, "feet"),
  43278. name: "Back",
  43279. image: {
  43280. source: "./media/characters/zorkaiju/back.svg",
  43281. extra: 1959/1821,
  43282. bottom: 31/1990
  43283. }
  43284. },
  43285. backExtended: {
  43286. height: math.unit(325, "feet"),
  43287. name: "Back (Extended)",
  43288. image: {
  43289. source: "./media/characters/zorkaiju/back-extended.svg",
  43290. extra: 1959/1821,
  43291. bottom: 31/1990
  43292. }
  43293. },
  43294. hand: {
  43295. height: math.unit(58.4, "feet"),
  43296. name: "Hand",
  43297. image: {
  43298. source: "./media/characters/zorkaiju/hand.svg"
  43299. }
  43300. },
  43301. handExtended: {
  43302. height: math.unit(61.4, "feet"),
  43303. name: "Hand (Extended)",
  43304. image: {
  43305. source: "./media/characters/zorkaiju/hand-extended.svg"
  43306. }
  43307. },
  43308. foot: {
  43309. height: math.unit(95, "feet"),
  43310. name: "Foot",
  43311. image: {
  43312. source: "./media/characters/zorkaiju/foot.svg"
  43313. }
  43314. },
  43315. leftArm: {
  43316. height: math.unit(59, "feet"),
  43317. name: "Left Arm",
  43318. image: {
  43319. source: "./media/characters/zorkaiju/left-arm.svg"
  43320. }
  43321. },
  43322. rightArm: {
  43323. height: math.unit(59, "feet"),
  43324. name: "Right Arm",
  43325. image: {
  43326. source: "./media/characters/zorkaiju/right-arm.svg"
  43327. }
  43328. },
  43329. leftArmExtended: {
  43330. height: math.unit(59 * 1.033546, "feet"),
  43331. name: "Left Arm (Extended)",
  43332. image: {
  43333. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43334. }
  43335. },
  43336. rightArmExtended: {
  43337. height: math.unit(59 * 1.0496, "feet"),
  43338. name: "Right Arm (Extended)",
  43339. image: {
  43340. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43341. }
  43342. },
  43343. tail: {
  43344. height: math.unit(104, "feet"),
  43345. name: "Tail",
  43346. image: {
  43347. source: "./media/characters/zorkaiju/tail.svg"
  43348. }
  43349. },
  43350. tailExtended: {
  43351. height: math.unit(104, "feet"),
  43352. name: "Tail (Extended)",
  43353. image: {
  43354. source: "./media/characters/zorkaiju/tail-extended.svg"
  43355. }
  43356. },
  43357. tailBottom: {
  43358. height: math.unit(104, "feet"),
  43359. name: "Tail Bottom",
  43360. image: {
  43361. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43362. }
  43363. },
  43364. crystal: {
  43365. height: math.unit(27.54, "feet"),
  43366. name: "Crystal",
  43367. image: {
  43368. source: "./media/characters/zorkaiju/crystal.svg"
  43369. }
  43370. },
  43371. },
  43372. [
  43373. {
  43374. name: "Kaiju",
  43375. height: math.unit(325, "feet"),
  43376. default: true
  43377. },
  43378. ]
  43379. ))
  43380. characterMakers.push(() => makeCharacter(
  43381. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43382. {
  43383. front: {
  43384. height: math.unit(6 + 1/12, "feet"),
  43385. weight: math.unit(115, "lb"),
  43386. name: "Front",
  43387. image: {
  43388. source: "./media/characters/bailey-belfry/front.svg",
  43389. extra: 1240/1121,
  43390. bottom: 101/1341
  43391. }
  43392. },
  43393. },
  43394. [
  43395. {
  43396. name: "Normal",
  43397. height: math.unit(6 + 1/12, "feet"),
  43398. default: true
  43399. },
  43400. ]
  43401. ))
  43402. characterMakers.push(() => makeCharacter(
  43403. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43404. {
  43405. side: {
  43406. height: math.unit(4, "meters"),
  43407. weight: math.unit(250, "kg"),
  43408. name: "Side",
  43409. image: {
  43410. source: "./media/characters/blacky/side.svg",
  43411. extra: 1027/919,
  43412. bottom: 43/1070
  43413. }
  43414. },
  43415. maw: {
  43416. height: math.unit(1, "meters"),
  43417. name: "Maw",
  43418. image: {
  43419. source: "./media/characters/blacky/maw.svg"
  43420. }
  43421. },
  43422. paw: {
  43423. height: math.unit(1, "meters"),
  43424. name: "Paw",
  43425. image: {
  43426. source: "./media/characters/blacky/paw.svg"
  43427. }
  43428. },
  43429. },
  43430. [
  43431. {
  43432. name: "Normal",
  43433. height: math.unit(4, "meters"),
  43434. default: true
  43435. },
  43436. ]
  43437. ))
  43438. characterMakers.push(() => makeCharacter(
  43439. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43440. {
  43441. front: {
  43442. height: math.unit(170, "cm"),
  43443. weight: math.unit(66, "kg"),
  43444. name: "Front",
  43445. image: {
  43446. source: "./media/characters/thux-ei/front.svg",
  43447. extra: 1109/1011,
  43448. bottom: 8/1117
  43449. }
  43450. },
  43451. },
  43452. [
  43453. {
  43454. name: "Normal",
  43455. height: math.unit(170, "cm"),
  43456. default: true
  43457. },
  43458. ]
  43459. ))
  43460. characterMakers.push(() => makeCharacter(
  43461. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43462. {
  43463. front: {
  43464. height: math.unit(5, "feet"),
  43465. weight: math.unit(120, "lb"),
  43466. name: "Front",
  43467. image: {
  43468. source: "./media/characters/roxanne-voltaire/front.svg",
  43469. extra: 1901/1779,
  43470. bottom: 53/1954
  43471. }
  43472. },
  43473. },
  43474. [
  43475. {
  43476. name: "Normal",
  43477. height: math.unit(5, "feet"),
  43478. default: true
  43479. },
  43480. {
  43481. name: "Giant",
  43482. height: math.unit(50, "feet")
  43483. },
  43484. {
  43485. name: "Titan",
  43486. height: math.unit(500, "feet")
  43487. },
  43488. {
  43489. name: "Macro",
  43490. height: math.unit(5000, "feet")
  43491. },
  43492. {
  43493. name: "Megamacro",
  43494. height: math.unit(50000, "feet")
  43495. },
  43496. {
  43497. name: "Gigamacro",
  43498. height: math.unit(500000, "feet")
  43499. },
  43500. {
  43501. name: "Teramacro",
  43502. height: math.unit(5e6, "feet")
  43503. },
  43504. ]
  43505. ))
  43506. characterMakers.push(() => makeCharacter(
  43507. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43508. {
  43509. front: {
  43510. height: math.unit(6 + 2/12, "feet"),
  43511. name: "Front",
  43512. image: {
  43513. source: "./media/characters/squeaks/front.svg",
  43514. extra: 1823/1768,
  43515. bottom: 138/1961
  43516. }
  43517. },
  43518. },
  43519. [
  43520. {
  43521. name: "Micro",
  43522. height: math.unit(0.5, "inches")
  43523. },
  43524. {
  43525. name: "Normal",
  43526. height: math.unit(6 + 2/12, "feet"),
  43527. default: true
  43528. },
  43529. {
  43530. name: "Macro",
  43531. height: math.unit(600, "feet")
  43532. },
  43533. ]
  43534. ))
  43535. characterMakers.push(() => makeCharacter(
  43536. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43537. {
  43538. front: {
  43539. height: math.unit(1.72, "meters"),
  43540. name: "Front",
  43541. image: {
  43542. source: "./media/characters/archinger/front.svg",
  43543. extra: 1861/1675,
  43544. bottom: 125/1986
  43545. }
  43546. },
  43547. back: {
  43548. height: math.unit(1.72, "meters"),
  43549. name: "Back",
  43550. image: {
  43551. source: "./media/characters/archinger/back.svg",
  43552. extra: 1844/1701,
  43553. bottom: 104/1948
  43554. }
  43555. },
  43556. cock: {
  43557. height: math.unit(0.59, "feet"),
  43558. name: "Cock",
  43559. image: {
  43560. source: "./media/characters/archinger/cock.svg"
  43561. }
  43562. },
  43563. },
  43564. [
  43565. {
  43566. name: "Normal",
  43567. height: math.unit(1.72, "meters"),
  43568. default: true
  43569. },
  43570. {
  43571. name: "Macro",
  43572. height: math.unit(84, "meters")
  43573. },
  43574. {
  43575. name: "Macro+",
  43576. height: math.unit(112, "meters")
  43577. },
  43578. {
  43579. name: "Macro++",
  43580. height: math.unit(960, "meters")
  43581. },
  43582. {
  43583. name: "Macro+++",
  43584. height: math.unit(4, "km")
  43585. },
  43586. {
  43587. name: "Macro++++",
  43588. height: math.unit(48, "km")
  43589. },
  43590. {
  43591. name: "Macro+++++",
  43592. height: math.unit(4500, "km")
  43593. },
  43594. ]
  43595. ))
  43596. characterMakers.push(() => makeCharacter(
  43597. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43598. {
  43599. front: {
  43600. height: math.unit(5 + 5/12, "feet"),
  43601. name: "Front",
  43602. image: {
  43603. source: "./media/characters/alsnapz/front.svg",
  43604. extra: 1157/1065,
  43605. bottom: 42/1199
  43606. }
  43607. },
  43608. },
  43609. [
  43610. {
  43611. name: "Normal",
  43612. height: math.unit(5 + 5/12, "feet"),
  43613. default: true
  43614. },
  43615. ]
  43616. ))
  43617. characterMakers.push(() => makeCharacter(
  43618. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43619. {
  43620. side: {
  43621. height: math.unit(3.2, "earths"),
  43622. name: "Side",
  43623. image: {
  43624. source: "./media/characters/mag/side.svg",
  43625. extra: 1331/1008,
  43626. bottom: 52/1383
  43627. }
  43628. },
  43629. wing: {
  43630. height: math.unit(1.94, "earths"),
  43631. name: "Wing",
  43632. image: {
  43633. source: "./media/characters/mag/wing.svg"
  43634. }
  43635. },
  43636. dick: {
  43637. height: math.unit(1.8, "earths"),
  43638. name: "Dick",
  43639. image: {
  43640. source: "./media/characters/mag/dick.svg"
  43641. }
  43642. },
  43643. ass: {
  43644. height: math.unit(1.33, "earths"),
  43645. name: "Ass",
  43646. image: {
  43647. source: "./media/characters/mag/ass.svg"
  43648. }
  43649. },
  43650. head: {
  43651. height: math.unit(1.1, "earths"),
  43652. name: "Head",
  43653. image: {
  43654. source: "./media/characters/mag/head.svg"
  43655. }
  43656. },
  43657. maw: {
  43658. height: math.unit(1.62, "earths"),
  43659. name: "Maw",
  43660. image: {
  43661. source: "./media/characters/mag/maw.svg"
  43662. }
  43663. },
  43664. },
  43665. [
  43666. {
  43667. name: "Small",
  43668. height: math.unit(162, "feet")
  43669. },
  43670. {
  43671. name: "Normal",
  43672. height: math.unit(3.2, "earths"),
  43673. default: true
  43674. },
  43675. ]
  43676. ))
  43677. characterMakers.push(() => makeCharacter(
  43678. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43679. {
  43680. front: {
  43681. height: math.unit(512, "feet"),
  43682. weight: math.unit(63509, "tonnes"),
  43683. name: "Front",
  43684. image: {
  43685. source: "./media/characters/vorrel-harroc/front.svg",
  43686. extra: 1075/1063,
  43687. bottom: 62/1137
  43688. }
  43689. },
  43690. },
  43691. [
  43692. {
  43693. name: "Normal",
  43694. height: math.unit(10, "feet")
  43695. },
  43696. {
  43697. name: "Macro",
  43698. height: math.unit(512, "feet"),
  43699. default: true
  43700. },
  43701. {
  43702. name: "Megamacro",
  43703. height: math.unit(256, "miles")
  43704. },
  43705. {
  43706. name: "Gigamacro",
  43707. height: math.unit(4096, "miles")
  43708. },
  43709. ]
  43710. ))
  43711. characterMakers.push(() => makeCharacter(
  43712. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43713. {
  43714. side: {
  43715. height: math.unit(50, "feet"),
  43716. name: "Side",
  43717. image: {
  43718. source: "./media/characters/froimar/side.svg",
  43719. extra: 855/638,
  43720. bottom: 99/954
  43721. }
  43722. },
  43723. },
  43724. [
  43725. {
  43726. name: "Macro",
  43727. height: math.unit(50, "feet"),
  43728. default: true
  43729. },
  43730. ]
  43731. ))
  43732. characterMakers.push(() => makeCharacter(
  43733. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43734. {
  43735. front: {
  43736. height: math.unit(210, "miles"),
  43737. name: "Front",
  43738. image: {
  43739. source: "./media/characters/timothy/front.svg",
  43740. extra: 1007/943,
  43741. bottom: 62/1069
  43742. }
  43743. },
  43744. frontSkirt: {
  43745. height: math.unit(210, "miles"),
  43746. name: "Front (Skirt)",
  43747. image: {
  43748. source: "./media/characters/timothy/front-skirt.svg",
  43749. extra: 1007/943,
  43750. bottom: 62/1069
  43751. }
  43752. },
  43753. frontCoat: {
  43754. height: math.unit(210, "miles"),
  43755. name: "Front (Coat)",
  43756. image: {
  43757. source: "./media/characters/timothy/front-coat.svg",
  43758. extra: 1007/943,
  43759. bottom: 62/1069
  43760. }
  43761. },
  43762. },
  43763. [
  43764. {
  43765. name: "Macro",
  43766. height: math.unit(210, "miles"),
  43767. default: true
  43768. },
  43769. {
  43770. name: "Megamacro",
  43771. height: math.unit(210000, "miles")
  43772. },
  43773. ]
  43774. ))
  43775. characterMakers.push(() => makeCharacter(
  43776. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43777. {
  43778. front: {
  43779. height: math.unit(188, "feet"),
  43780. name: "Front",
  43781. image: {
  43782. source: "./media/characters/pyotr/front.svg",
  43783. extra: 1912/1826,
  43784. bottom: 18/1930
  43785. }
  43786. },
  43787. },
  43788. [
  43789. {
  43790. name: "Macro",
  43791. height: math.unit(188, "feet"),
  43792. default: true
  43793. },
  43794. {
  43795. name: "Megamacro",
  43796. height: math.unit(8, "miles")
  43797. },
  43798. ]
  43799. ))
  43800. characterMakers.push(() => makeCharacter(
  43801. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43802. {
  43803. side: {
  43804. height: math.unit(10, "feet"),
  43805. weight: math.unit(4500, "lb"),
  43806. name: "Side",
  43807. image: {
  43808. source: "./media/characters/ackart/side.svg",
  43809. extra: 1776/1668,
  43810. bottom: 116/1892
  43811. }
  43812. },
  43813. },
  43814. [
  43815. {
  43816. name: "Normal",
  43817. height: math.unit(10, "feet"),
  43818. default: true
  43819. },
  43820. ]
  43821. ))
  43822. characterMakers.push(() => makeCharacter(
  43823. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43824. {
  43825. side: {
  43826. height: math.unit(21, "feet"),
  43827. name: "Side",
  43828. image: {
  43829. source: "./media/characters/nolow/side.svg",
  43830. extra: 1484/1434,
  43831. bottom: 85/1569
  43832. }
  43833. },
  43834. sideErect: {
  43835. height: math.unit(21, "feet"),
  43836. name: "Side-erect",
  43837. image: {
  43838. source: "./media/characters/nolow/side-erect.svg",
  43839. extra: 1484/1434,
  43840. bottom: 85/1569
  43841. }
  43842. },
  43843. },
  43844. [
  43845. {
  43846. name: "Regular",
  43847. height: math.unit(12, "feet")
  43848. },
  43849. {
  43850. name: "Big Chee",
  43851. height: math.unit(21, "feet"),
  43852. default: true
  43853. },
  43854. ]
  43855. ))
  43856. characterMakers.push(() => makeCharacter(
  43857. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43858. {
  43859. front: {
  43860. height: math.unit(7, "feet"),
  43861. weight: math.unit(250, "lb"),
  43862. name: "Front",
  43863. image: {
  43864. source: "./media/characters/nines/front.svg",
  43865. extra: 1741/1607,
  43866. bottom: 41/1782
  43867. }
  43868. },
  43869. side: {
  43870. height: math.unit(7, "feet"),
  43871. weight: math.unit(250, "lb"),
  43872. name: "Side",
  43873. image: {
  43874. source: "./media/characters/nines/side.svg",
  43875. extra: 1854/1735,
  43876. bottom: 93/1947
  43877. }
  43878. },
  43879. back: {
  43880. height: math.unit(7, "feet"),
  43881. weight: math.unit(250, "lb"),
  43882. name: "Back",
  43883. image: {
  43884. source: "./media/characters/nines/back.svg",
  43885. extra: 1748/1615,
  43886. bottom: 20/1768
  43887. }
  43888. },
  43889. },
  43890. [
  43891. {
  43892. name: "Megamacro",
  43893. height: math.unit(99, "km"),
  43894. default: true
  43895. },
  43896. ]
  43897. ))
  43898. characterMakers.push(() => makeCharacter(
  43899. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43900. {
  43901. front: {
  43902. height: math.unit(5 + 10/12, "feet"),
  43903. weight: math.unit(210, "lb"),
  43904. name: "Front",
  43905. image: {
  43906. source: "./media/characters/zenith/front.svg",
  43907. extra: 1531/1452,
  43908. bottom: 198/1729
  43909. }
  43910. },
  43911. back: {
  43912. height: math.unit(5 + 10/12, "feet"),
  43913. weight: math.unit(210, "lb"),
  43914. name: "Back",
  43915. image: {
  43916. source: "./media/characters/zenith/back.svg",
  43917. extra: 1571/1487,
  43918. bottom: 75/1646
  43919. }
  43920. },
  43921. },
  43922. [
  43923. {
  43924. name: "Normal",
  43925. height: math.unit(5 + 10/12, "feet"),
  43926. default: true
  43927. }
  43928. ]
  43929. ))
  43930. characterMakers.push(() => makeCharacter(
  43931. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43932. {
  43933. front: {
  43934. height: math.unit(4, "feet"),
  43935. weight: math.unit(60, "lb"),
  43936. name: "Front",
  43937. image: {
  43938. source: "./media/characters/jasper/front.svg",
  43939. extra: 1450/1379,
  43940. bottom: 19/1469
  43941. }
  43942. },
  43943. },
  43944. [
  43945. {
  43946. name: "Normal",
  43947. height: math.unit(4, "feet"),
  43948. default: true
  43949. },
  43950. ]
  43951. ))
  43952. characterMakers.push(() => makeCharacter(
  43953. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43954. {
  43955. front: {
  43956. height: math.unit(6 + 5/12, "feet"),
  43957. weight: math.unit(290, "lb"),
  43958. name: "Front",
  43959. image: {
  43960. source: "./media/characters/tiberius-thyben/front.svg",
  43961. extra: 757/739,
  43962. bottom: 39/796
  43963. }
  43964. },
  43965. },
  43966. [
  43967. {
  43968. name: "Micro",
  43969. height: math.unit(1.5, "inches")
  43970. },
  43971. {
  43972. name: "Normal",
  43973. height: math.unit(6 + 5/12, "feet"),
  43974. default: true
  43975. },
  43976. {
  43977. name: "Macro",
  43978. height: math.unit(300, "feet")
  43979. },
  43980. ]
  43981. ))
  43982. characterMakers.push(() => makeCharacter(
  43983. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43984. {
  43985. front: {
  43986. height: math.unit(5 + 6/12, "feet"),
  43987. weight: math.unit(60, "kg"),
  43988. name: "Front",
  43989. image: {
  43990. source: "./media/characters/sabre/front.svg",
  43991. extra: 738/671,
  43992. bottom: 27/765
  43993. }
  43994. },
  43995. },
  43996. [
  43997. {
  43998. name: "Teeny",
  43999. height: math.unit(2, "inches")
  44000. },
  44001. {
  44002. name: "Smol",
  44003. height: math.unit(8, "inches")
  44004. },
  44005. {
  44006. name: "Normal",
  44007. height: math.unit(5 + 6/12, "feet"),
  44008. default: true
  44009. },
  44010. {
  44011. name: "Mini-Macro",
  44012. height: math.unit(15, "feet")
  44013. },
  44014. {
  44015. name: "Macro",
  44016. height: math.unit(50, "feet")
  44017. },
  44018. ]
  44019. ))
  44020. characterMakers.push(() => makeCharacter(
  44021. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44022. {
  44023. front: {
  44024. height: math.unit(6 + 4/12, "feet"),
  44025. weight: math.unit(170, "lb"),
  44026. name: "Front",
  44027. image: {
  44028. source: "./media/characters/charlie/front.svg",
  44029. extra: 1348/1228,
  44030. bottom: 15/1363
  44031. }
  44032. },
  44033. },
  44034. [
  44035. {
  44036. name: "Macro",
  44037. height: math.unit(1700, "meters"),
  44038. default: true
  44039. },
  44040. {
  44041. name: "MegaMacro",
  44042. height: math.unit(20400, "meters")
  44043. },
  44044. ]
  44045. ))
  44046. characterMakers.push(() => makeCharacter(
  44047. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44048. {
  44049. front: {
  44050. height: math.unit(1.96, "meters"),
  44051. weight: math.unit(220, "lb"),
  44052. name: "Front",
  44053. image: {
  44054. source: "./media/characters/susan-grant/front.svg",
  44055. extra: 482/478,
  44056. bottom: 7/489
  44057. }
  44058. },
  44059. },
  44060. [
  44061. {
  44062. name: "Normal",
  44063. height: math.unit(1.96, "meters"),
  44064. default: true
  44065. },
  44066. {
  44067. name: "Macro",
  44068. height: math.unit(76.2, "meters")
  44069. },
  44070. {
  44071. name: "MegaMacro",
  44072. height: math.unit(305, "meters")
  44073. },
  44074. {
  44075. name: "GigaMacro",
  44076. height: math.unit(1220, "meters")
  44077. },
  44078. {
  44079. name: "SuperMacro",
  44080. height: math.unit(4878, "meters")
  44081. },
  44082. ]
  44083. ))
  44084. characterMakers.push(() => makeCharacter(
  44085. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44086. {
  44087. front: {
  44088. height: math.unit(5 + 4/12, "feet"),
  44089. weight: math.unit(110, "lb"),
  44090. name: "Front",
  44091. image: {
  44092. source: "./media/characters/axel-isanov/front.svg",
  44093. extra: 1096/1065,
  44094. bottom: 13/1109
  44095. }
  44096. },
  44097. },
  44098. [
  44099. {
  44100. name: "Normal",
  44101. height: math.unit(5 + 4/12, "feet"),
  44102. default: true
  44103. },
  44104. ]
  44105. ))
  44106. characterMakers.push(() => makeCharacter(
  44107. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44108. {
  44109. front: {
  44110. height: math.unit(9, "feet"),
  44111. weight: math.unit(467, "lb"),
  44112. name: "Front",
  44113. image: {
  44114. source: "./media/characters/necahual/front.svg",
  44115. extra: 920/873,
  44116. bottom: 26/946
  44117. }
  44118. },
  44119. back: {
  44120. height: math.unit(9, "feet"),
  44121. weight: math.unit(467, "lb"),
  44122. name: "Back",
  44123. image: {
  44124. source: "./media/characters/necahual/back.svg",
  44125. extra: 930/884,
  44126. bottom: 16/946
  44127. }
  44128. },
  44129. frontUnderwear: {
  44130. height: math.unit(9, "feet"),
  44131. weight: math.unit(467, "lb"),
  44132. name: "Front (Underwear)",
  44133. image: {
  44134. source: "./media/characters/necahual/front-underwear.svg",
  44135. extra: 920/873,
  44136. bottom: 26/946
  44137. }
  44138. },
  44139. frontDressed: {
  44140. height: math.unit(9, "feet"),
  44141. weight: math.unit(467, "lb"),
  44142. name: "Front (Dressed)",
  44143. image: {
  44144. source: "./media/characters/necahual/front-dressed.svg",
  44145. extra: 920/873,
  44146. bottom: 26/946
  44147. }
  44148. },
  44149. },
  44150. [
  44151. {
  44152. name: "Comprsesed",
  44153. height: math.unit(9, "feet")
  44154. },
  44155. {
  44156. name: "Natural",
  44157. height: math.unit(15, "feet"),
  44158. default: true
  44159. },
  44160. {
  44161. name: "Boosted",
  44162. height: math.unit(50, "feet")
  44163. },
  44164. {
  44165. name: "Boosted+",
  44166. height: math.unit(150, "feet")
  44167. },
  44168. {
  44169. name: "Max",
  44170. height: math.unit(500, "feet")
  44171. },
  44172. ]
  44173. ))
  44174. characterMakers.push(() => makeCharacter(
  44175. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44176. {
  44177. front: {
  44178. height: math.unit(22 + 1/12, "feet"),
  44179. weight: math.unit(3200, "lb"),
  44180. name: "Front",
  44181. image: {
  44182. source: "./media/characters/theo-acacia/front.svg",
  44183. extra: 1796/1741,
  44184. bottom: 83/1879
  44185. }
  44186. },
  44187. frontUnderwear: {
  44188. height: math.unit(22 + 1/12, "feet"),
  44189. weight: math.unit(3200, "lb"),
  44190. name: "Front (Underwear)",
  44191. image: {
  44192. source: "./media/characters/theo-acacia/front-underwear.svg",
  44193. extra: 1796/1741,
  44194. bottom: 83/1879
  44195. }
  44196. },
  44197. frontNude: {
  44198. height: math.unit(22 + 1/12, "feet"),
  44199. weight: math.unit(3200, "lb"),
  44200. name: "Front (Nude)",
  44201. image: {
  44202. source: "./media/characters/theo-acacia/front-nude.svg",
  44203. extra: 1796/1741,
  44204. bottom: 83/1879
  44205. }
  44206. },
  44207. },
  44208. [
  44209. {
  44210. name: "Normal",
  44211. height: math.unit(22 + 1/12, "feet"),
  44212. default: true
  44213. },
  44214. ]
  44215. ))
  44216. characterMakers.push(() => makeCharacter(
  44217. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44218. {
  44219. front: {
  44220. height: math.unit(20, "feet"),
  44221. name: "Front",
  44222. image: {
  44223. source: "./media/characters/astra/front.svg",
  44224. extra: 1850/1714,
  44225. bottom: 106/1956
  44226. }
  44227. },
  44228. frontUndressed: {
  44229. height: math.unit(20, "feet"),
  44230. name: "Front (Undressed)",
  44231. image: {
  44232. source: "./media/characters/astra/front-undressed.svg",
  44233. extra: 1926/1749,
  44234. bottom: 0/1926
  44235. }
  44236. },
  44237. hand: {
  44238. height: math.unit(1.53, "feet"),
  44239. name: "Hand",
  44240. image: {
  44241. source: "./media/characters/astra/hand.svg"
  44242. }
  44243. },
  44244. paw: {
  44245. height: math.unit(1.53, "feet"),
  44246. name: "Paw",
  44247. image: {
  44248. source: "./media/characters/astra/paw.svg"
  44249. }
  44250. },
  44251. },
  44252. [
  44253. {
  44254. name: "Smallest",
  44255. height: math.unit(20, "feet")
  44256. },
  44257. {
  44258. name: "Normal",
  44259. height: math.unit(1e9, "miles"),
  44260. default: true
  44261. },
  44262. {
  44263. name: "Larger",
  44264. height: math.unit(5, "multiverses")
  44265. },
  44266. {
  44267. name: "Largest",
  44268. height: math.unit(1e9, "multiverses")
  44269. },
  44270. ]
  44271. ))
  44272. characterMakers.push(() => makeCharacter(
  44273. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44274. {
  44275. front: {
  44276. height: math.unit(8, "feet"),
  44277. name: "Front",
  44278. image: {
  44279. source: "./media/characters/breanna/front.svg",
  44280. extra: 1912/1632,
  44281. bottom: 33/1945
  44282. }
  44283. },
  44284. },
  44285. [
  44286. {
  44287. name: "Smallest",
  44288. height: math.unit(8, "feet")
  44289. },
  44290. {
  44291. name: "Normal",
  44292. height: math.unit(1, "mile"),
  44293. default: true
  44294. },
  44295. {
  44296. name: "Maximum",
  44297. height: math.unit(1500000000000, "lightyears")
  44298. },
  44299. ]
  44300. ))
  44301. characterMakers.push(() => makeCharacter(
  44302. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44303. {
  44304. front: {
  44305. height: math.unit(5 + 11/12, "feet"),
  44306. weight: math.unit(155, "lb"),
  44307. name: "Front",
  44308. image: {
  44309. source: "./media/characters/cai/front.svg",
  44310. extra: 1823/1702,
  44311. bottom: 32/1855
  44312. }
  44313. },
  44314. back: {
  44315. height: math.unit(5 + 11/12, "feet"),
  44316. weight: math.unit(155, "lb"),
  44317. name: "Back",
  44318. image: {
  44319. source: "./media/characters/cai/back.svg",
  44320. extra: 1809/1708,
  44321. bottom: 31/1840
  44322. }
  44323. },
  44324. },
  44325. [
  44326. {
  44327. name: "Normal",
  44328. height: math.unit(5 + 11/12, "feet"),
  44329. default: true
  44330. },
  44331. {
  44332. name: "Big",
  44333. height: math.unit(15, "feet")
  44334. },
  44335. {
  44336. name: "Macro",
  44337. height: math.unit(200, "feet")
  44338. },
  44339. ]
  44340. ))
  44341. characterMakers.push(() => makeCharacter(
  44342. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44343. {
  44344. front: {
  44345. height: math.unit(5 + 6/12, "feet"),
  44346. weight: math.unit(160, "lb"),
  44347. name: "Front",
  44348. image: {
  44349. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44350. extra: 1227/1174,
  44351. bottom: 37/1264
  44352. }
  44353. },
  44354. },
  44355. [
  44356. {
  44357. name: "Macro",
  44358. height: math.unit(444, "meters"),
  44359. default: true
  44360. },
  44361. ]
  44362. ))
  44363. characterMakers.push(() => makeCharacter(
  44364. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44365. {
  44366. front: {
  44367. height: math.unit(18 + 7/12, "feet"),
  44368. name: "Front",
  44369. image: {
  44370. source: "./media/characters/rex/front.svg",
  44371. extra: 1941/1807,
  44372. bottom: 66/2007
  44373. }
  44374. },
  44375. back: {
  44376. height: math.unit(18 + 7/12, "feet"),
  44377. name: "Back",
  44378. image: {
  44379. source: "./media/characters/rex/back.svg",
  44380. extra: 1937/1822,
  44381. bottom: 42/1979
  44382. }
  44383. },
  44384. boot: {
  44385. height: math.unit(3.45, "feet"),
  44386. name: "Boot",
  44387. image: {
  44388. source: "./media/characters/rex/boot.svg"
  44389. }
  44390. },
  44391. paw: {
  44392. height: math.unit(4.17, "feet"),
  44393. name: "Paw",
  44394. image: {
  44395. source: "./media/characters/rex/paw.svg"
  44396. }
  44397. },
  44398. head: {
  44399. height: math.unit(6.728, "feet"),
  44400. name: "Head",
  44401. image: {
  44402. source: "./media/characters/rex/head.svg"
  44403. }
  44404. },
  44405. },
  44406. [
  44407. {
  44408. name: "Nano",
  44409. height: math.unit(18 + 7/12, "feet")
  44410. },
  44411. {
  44412. name: "Micro",
  44413. height: math.unit(1.5, "megameters")
  44414. },
  44415. {
  44416. name: "Normal",
  44417. height: math.unit(440, "megameters"),
  44418. default: true
  44419. },
  44420. {
  44421. name: "Macro",
  44422. height: math.unit(2.5, "gigameters")
  44423. },
  44424. {
  44425. name: "Gigamacro",
  44426. height: math.unit(2, "galaxies")
  44427. },
  44428. ]
  44429. ))
  44430. characterMakers.push(() => makeCharacter(
  44431. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44432. {
  44433. side: {
  44434. height: math.unit(32, "feet"),
  44435. weight: math.unit(250000, "lb"),
  44436. name: "Side",
  44437. image: {
  44438. source: "./media/characters/silverwing/side.svg",
  44439. extra: 1100/1019,
  44440. bottom: 204/1304
  44441. }
  44442. },
  44443. },
  44444. [
  44445. {
  44446. name: "Normal",
  44447. height: math.unit(32, "feet"),
  44448. default: true
  44449. },
  44450. ]
  44451. ))
  44452. characterMakers.push(() => makeCharacter(
  44453. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44454. {
  44455. front: {
  44456. height: math.unit(6 + 6/12, "feet"),
  44457. weight: math.unit(350, "lb"),
  44458. name: "Front",
  44459. image: {
  44460. source: "./media/characters/tristan-hawthorne/front.svg",
  44461. extra: 1159/1124,
  44462. bottom: 37/1196
  44463. },
  44464. form: "labrador",
  44465. default: true
  44466. },
  44467. skunkFront: {
  44468. height: math.unit(4 + 6/12, "feet"),
  44469. weight: math.unit(120, "lb"),
  44470. name: "Front",
  44471. image: {
  44472. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44473. extra: 1609/1551,
  44474. bottom: 169/1778
  44475. },
  44476. form: "skunk",
  44477. default: true
  44478. },
  44479. },
  44480. [
  44481. {
  44482. name: "Normal",
  44483. height: math.unit(6 + 6/12, "feet"),
  44484. form: "labrador",
  44485. default: true
  44486. },
  44487. {
  44488. name: "Normal",
  44489. height: math.unit(4 + 6/12, "feet"),
  44490. form: "skunk",
  44491. default: true
  44492. },
  44493. ],
  44494. {
  44495. "labrador": {
  44496. name: "Labrador",
  44497. default: true
  44498. },
  44499. "skunk": {
  44500. name: "Skunk"
  44501. }
  44502. }
  44503. ))
  44504. characterMakers.push(() => makeCharacter(
  44505. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44506. {
  44507. front: {
  44508. height: math.unit(5 + 11/12, "feet"),
  44509. weight: math.unit(190, "lb"),
  44510. name: "Front",
  44511. image: {
  44512. source: "./media/characters/mizu/front.svg",
  44513. extra: 1988/1788,
  44514. bottom: 14/2002
  44515. }
  44516. },
  44517. },
  44518. [
  44519. {
  44520. name: "Normal",
  44521. height: math.unit(5 + 11/12, "feet"),
  44522. default: true
  44523. },
  44524. ]
  44525. ))
  44526. characterMakers.push(() => makeCharacter(
  44527. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44528. {
  44529. front: {
  44530. height: math.unit(1.7, "feet"),
  44531. weight: math.unit(50, "lb"),
  44532. name: "Front",
  44533. image: {
  44534. source: "./media/characters/dechroma/front.svg",
  44535. extra: 1095/859,
  44536. bottom: 64/1159
  44537. }
  44538. },
  44539. },
  44540. [
  44541. {
  44542. name: "Normal",
  44543. height: math.unit(1.7, "feet"),
  44544. default: true
  44545. },
  44546. ]
  44547. ))
  44548. characterMakers.push(() => makeCharacter(
  44549. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44550. {
  44551. side: {
  44552. height: math.unit(30, "feet"),
  44553. name: "Side",
  44554. image: {
  44555. source: "./media/characters/veluren-thanazel/side.svg",
  44556. extra: 1611/633,
  44557. bottom: 118/1729
  44558. }
  44559. },
  44560. front: {
  44561. height: math.unit(30, "feet"),
  44562. name: "Front",
  44563. image: {
  44564. source: "./media/characters/veluren-thanazel/front.svg",
  44565. extra: 1486/636,
  44566. bottom: 238/1724
  44567. }
  44568. },
  44569. head: {
  44570. height: math.unit(21.4, "feet"),
  44571. name: "Head",
  44572. image: {
  44573. source: "./media/characters/veluren-thanazel/head.svg"
  44574. }
  44575. },
  44576. genitals: {
  44577. height: math.unit(19.4, "feet"),
  44578. name: "Genitals",
  44579. image: {
  44580. source: "./media/characters/veluren-thanazel/genitals.svg"
  44581. }
  44582. },
  44583. },
  44584. [
  44585. {
  44586. name: "Social",
  44587. height: math.unit(6, "feet")
  44588. },
  44589. {
  44590. name: "Play",
  44591. height: math.unit(12, "feet")
  44592. },
  44593. {
  44594. name: "True",
  44595. height: math.unit(30, "feet"),
  44596. default: true
  44597. },
  44598. ]
  44599. ))
  44600. characterMakers.push(() => makeCharacter(
  44601. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44602. {
  44603. front: {
  44604. height: math.unit(7 + 6/12, "feet"),
  44605. weight: math.unit(500, "kg"),
  44606. name: "Front",
  44607. image: {
  44608. source: "./media/characters/arcturas/front.svg",
  44609. extra: 1700/1500,
  44610. bottom: 145/1845
  44611. }
  44612. },
  44613. },
  44614. [
  44615. {
  44616. name: "Normal",
  44617. height: math.unit(7 + 6/12, "feet"),
  44618. default: true
  44619. },
  44620. ]
  44621. ))
  44622. characterMakers.push(() => makeCharacter(
  44623. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44624. {
  44625. side: {
  44626. height: math.unit(6, "feet"),
  44627. weight: math.unit(2, "tons"),
  44628. name: "Side",
  44629. image: {
  44630. source: "./media/characters/vitaen/side.svg",
  44631. extra: 1157/617,
  44632. bottom: 122/1279
  44633. }
  44634. },
  44635. },
  44636. [
  44637. {
  44638. name: "Normal",
  44639. height: math.unit(6, "feet"),
  44640. default: true
  44641. },
  44642. ]
  44643. ))
  44644. characterMakers.push(() => makeCharacter(
  44645. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44646. {
  44647. front: {
  44648. height: math.unit(19, "feet"),
  44649. name: "Front",
  44650. image: {
  44651. source: "./media/characters/fia-dreamweaver/front.svg",
  44652. extra: 1630/1504,
  44653. bottom: 25/1655
  44654. }
  44655. },
  44656. },
  44657. [
  44658. {
  44659. name: "Normal",
  44660. height: math.unit(19, "feet"),
  44661. default: true
  44662. },
  44663. ]
  44664. ))
  44665. characterMakers.push(() => makeCharacter(
  44666. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44667. {
  44668. front: {
  44669. height: math.unit(5 + 4/12, "feet"),
  44670. name: "Front",
  44671. image: {
  44672. source: "./media/characters/artan/front.svg",
  44673. extra: 1618/1535,
  44674. bottom: 46/1664
  44675. }
  44676. },
  44677. back: {
  44678. height: math.unit(5 + 4/12, "feet"),
  44679. name: "Back",
  44680. image: {
  44681. source: "./media/characters/artan/back.svg",
  44682. extra: 1618/1543,
  44683. bottom: 31/1649
  44684. }
  44685. },
  44686. },
  44687. [
  44688. {
  44689. name: "Normal",
  44690. height: math.unit(5 + 4/12, "feet"),
  44691. default: true
  44692. },
  44693. ]
  44694. ))
  44695. characterMakers.push(() => makeCharacter(
  44696. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44697. {
  44698. side: {
  44699. height: math.unit(182, "cm"),
  44700. weight: math.unit(1000, "lb"),
  44701. name: "Side",
  44702. image: {
  44703. source: "./media/characters/silver-dragon/side.svg",
  44704. extra: 710/287,
  44705. bottom: 88/798
  44706. }
  44707. },
  44708. },
  44709. [
  44710. {
  44711. name: "Normal",
  44712. height: math.unit(182, "cm"),
  44713. default: true
  44714. },
  44715. ]
  44716. ))
  44717. characterMakers.push(() => makeCharacter(
  44718. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44719. {
  44720. side: {
  44721. height: math.unit(6 + 6/12, "feet"),
  44722. weight: math.unit(1.5, "tons"),
  44723. name: "Side",
  44724. image: {
  44725. source: "./media/characters/zephyr/side.svg",
  44726. extra: 1433/586,
  44727. bottom: 109/1542
  44728. }
  44729. },
  44730. },
  44731. [
  44732. {
  44733. name: "Normal",
  44734. height: math.unit(6 + 6/12, "feet"),
  44735. default: true
  44736. },
  44737. ]
  44738. ))
  44739. characterMakers.push(() => makeCharacter(
  44740. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44741. {
  44742. side: {
  44743. height: math.unit(1, "feet"),
  44744. name: "Side",
  44745. image: {
  44746. source: "./media/characters/vixye/side.svg",
  44747. extra: 632/541,
  44748. bottom: 0/632
  44749. }
  44750. },
  44751. },
  44752. [
  44753. {
  44754. name: "Normal",
  44755. height: math.unit(1, "feet"),
  44756. default: true
  44757. },
  44758. {
  44759. name: "True",
  44760. height: math.unit(1e15, "multiverses")
  44761. },
  44762. ]
  44763. ))
  44764. characterMakers.push(() => makeCharacter(
  44765. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44766. {
  44767. front: {
  44768. height: math.unit(8 + 2/12, "feet"),
  44769. weight: math.unit(650, "lb"),
  44770. name: "Front",
  44771. image: {
  44772. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44773. extra: 1174/1137,
  44774. bottom: 82/1256
  44775. }
  44776. },
  44777. back: {
  44778. height: math.unit(8 + 2/12, "feet"),
  44779. weight: math.unit(650, "lb"),
  44780. name: "Back",
  44781. image: {
  44782. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44783. extra: 1204/1157,
  44784. bottom: 46/1250
  44785. }
  44786. },
  44787. },
  44788. [
  44789. {
  44790. name: "Wildform",
  44791. height: math.unit(8 + 2/12, "feet"),
  44792. default: true
  44793. },
  44794. ]
  44795. ))
  44796. characterMakers.push(() => makeCharacter(
  44797. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44798. {
  44799. front: {
  44800. height: math.unit(18, "feet"),
  44801. name: "Front",
  44802. image: {
  44803. source: "./media/characters/cyphin/front.svg",
  44804. extra: 970/886,
  44805. bottom: 42/1012
  44806. }
  44807. },
  44808. back: {
  44809. height: math.unit(18, "feet"),
  44810. name: "Back",
  44811. image: {
  44812. source: "./media/characters/cyphin/back.svg",
  44813. extra: 1009/894,
  44814. bottom: 24/1033
  44815. }
  44816. },
  44817. head: {
  44818. height: math.unit(5.05, "feet"),
  44819. name: "Head",
  44820. image: {
  44821. source: "./media/characters/cyphin/head.svg"
  44822. }
  44823. },
  44824. tailbud: {
  44825. height: math.unit(5, "feet"),
  44826. name: "Tailbud",
  44827. image: {
  44828. source: "./media/characters/cyphin/tailbud.svg"
  44829. }
  44830. },
  44831. },
  44832. [
  44833. ]
  44834. ))
  44835. characterMakers.push(() => makeCharacter(
  44836. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44837. {
  44838. side: {
  44839. height: math.unit(10, "feet"),
  44840. weight: math.unit(6, "tons"),
  44841. name: "Side",
  44842. image: {
  44843. source: "./media/characters/raijin/side.svg",
  44844. extra: 1529/613,
  44845. bottom: 337/1866
  44846. }
  44847. },
  44848. },
  44849. [
  44850. {
  44851. name: "Normal",
  44852. height: math.unit(10, "feet"),
  44853. default: true
  44854. },
  44855. ]
  44856. ))
  44857. characterMakers.push(() => makeCharacter(
  44858. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44859. {
  44860. side: {
  44861. height: math.unit(9, "feet"),
  44862. name: "Side",
  44863. image: {
  44864. source: "./media/characters/nilghais/side.svg",
  44865. extra: 1047/744,
  44866. bottom: 91/1138
  44867. }
  44868. },
  44869. head: {
  44870. height: math.unit(3.14, "feet"),
  44871. name: "Head",
  44872. image: {
  44873. source: "./media/characters/nilghais/head.svg"
  44874. }
  44875. },
  44876. mouth: {
  44877. height: math.unit(4.6, "feet"),
  44878. name: "Mouth",
  44879. image: {
  44880. source: "./media/characters/nilghais/mouth.svg"
  44881. }
  44882. },
  44883. wings: {
  44884. height: math.unit(24, "feet"),
  44885. name: "Wings",
  44886. image: {
  44887. source: "./media/characters/nilghais/wings.svg"
  44888. }
  44889. },
  44890. ass: {
  44891. height: math.unit(6.12, "feet"),
  44892. name: "Ass",
  44893. image: {
  44894. source: "./media/characters/nilghais/ass.svg"
  44895. }
  44896. },
  44897. },
  44898. [
  44899. {
  44900. name: "Normal",
  44901. height: math.unit(9, "feet"),
  44902. default: true
  44903. },
  44904. ]
  44905. ))
  44906. characterMakers.push(() => makeCharacter(
  44907. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44908. {
  44909. regular: {
  44910. height: math.unit(16 + 2/12, "feet"),
  44911. weight: math.unit(2300, "lb"),
  44912. name: "Regular",
  44913. image: {
  44914. source: "./media/characters/zolgar/regular.svg",
  44915. extra: 1246/1004,
  44916. bottom: 124/1370
  44917. }
  44918. },
  44919. boxers: {
  44920. height: math.unit(16 + 2/12, "feet"),
  44921. weight: math.unit(2300, "lb"),
  44922. name: "Boxers",
  44923. image: {
  44924. source: "./media/characters/zolgar/boxers.svg",
  44925. extra: 1246/1004,
  44926. bottom: 124/1370
  44927. }
  44928. },
  44929. armored: {
  44930. height: math.unit(16 + 2/12, "feet"),
  44931. weight: math.unit(2300, "lb"),
  44932. name: "Armored",
  44933. image: {
  44934. source: "./media/characters/zolgar/armored.svg",
  44935. extra: 1246/1004,
  44936. bottom: 124/1370
  44937. }
  44938. },
  44939. goth: {
  44940. height: math.unit(16 + 2/12, "feet"),
  44941. weight: math.unit(2300, "lb"),
  44942. name: "Goth",
  44943. image: {
  44944. source: "./media/characters/zolgar/goth.svg",
  44945. extra: 1246/1004,
  44946. bottom: 124/1370
  44947. }
  44948. },
  44949. },
  44950. [
  44951. {
  44952. name: "Shrunken Down",
  44953. height: math.unit(9 + 2/12, "feet")
  44954. },
  44955. {
  44956. name: "Normal",
  44957. height: math.unit(16 + 2/12, "feet"),
  44958. default: true
  44959. },
  44960. ]
  44961. ))
  44962. characterMakers.push(() => makeCharacter(
  44963. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44964. {
  44965. front: {
  44966. height: math.unit(6, "feet"),
  44967. weight: math.unit(168, "lb"),
  44968. name: "Front",
  44969. image: {
  44970. source: "./media/characters/luca/front.svg",
  44971. extra: 841/667,
  44972. bottom: 102/943
  44973. }
  44974. },
  44975. },
  44976. [
  44977. {
  44978. name: "Normal",
  44979. height: math.unit(6, "feet"),
  44980. default: true
  44981. },
  44982. ]
  44983. ))
  44984. characterMakers.push(() => makeCharacter(
  44985. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44986. {
  44987. side: {
  44988. height: math.unit(7 + 3/12, "feet"),
  44989. weight: math.unit(312, "lb"),
  44990. name: "Side",
  44991. image: {
  44992. source: "./media/characters/zezo/side.svg",
  44993. extra: 1192/1067,
  44994. bottom: 63/1255
  44995. }
  44996. },
  44997. },
  44998. [
  44999. {
  45000. name: "Normal",
  45001. height: math.unit(7 + 3/12, "feet"),
  45002. default: true
  45003. },
  45004. ]
  45005. ))
  45006. characterMakers.push(() => makeCharacter(
  45007. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45008. {
  45009. front: {
  45010. height: math.unit(5 + 5/12, "feet"),
  45011. weight: math.unit(170, "lb"),
  45012. name: "Front",
  45013. image: {
  45014. source: "./media/characters/mayso/front.svg",
  45015. extra: 1215/1108,
  45016. bottom: 16/1231
  45017. }
  45018. },
  45019. },
  45020. [
  45021. {
  45022. name: "Normal",
  45023. height: math.unit(5 + 5/12, "feet"),
  45024. default: true
  45025. },
  45026. ]
  45027. ))
  45028. characterMakers.push(() => makeCharacter(
  45029. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45030. {
  45031. front: {
  45032. height: math.unit(4 + 3/12, "feet"),
  45033. weight: math.unit(80, "lb"),
  45034. name: "Front",
  45035. image: {
  45036. source: "./media/characters/hess/front.svg",
  45037. extra: 1200/1123,
  45038. bottom: 16/1216
  45039. }
  45040. },
  45041. },
  45042. [
  45043. {
  45044. name: "Normal",
  45045. height: math.unit(4 + 3/12, "feet"),
  45046. default: true
  45047. },
  45048. ]
  45049. ))
  45050. characterMakers.push(() => makeCharacter(
  45051. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45052. {
  45053. front: {
  45054. height: math.unit(1.9, "meters"),
  45055. name: "Front",
  45056. image: {
  45057. source: "./media/characters/ashgar/front.svg",
  45058. extra: 1177/1146,
  45059. bottom: 99/1276
  45060. }
  45061. },
  45062. back: {
  45063. height: math.unit(1.9, "meters"),
  45064. name: "Back",
  45065. image: {
  45066. source: "./media/characters/ashgar/back.svg",
  45067. extra: 1201/1183,
  45068. bottom: 53/1254
  45069. }
  45070. },
  45071. feral: {
  45072. height: math.unit(1.4, "meters"),
  45073. name: "Feral",
  45074. image: {
  45075. source: "./media/characters/ashgar/feral.svg",
  45076. extra: 370/345,
  45077. bottom: 45/415
  45078. }
  45079. },
  45080. },
  45081. [
  45082. {
  45083. name: "Normal",
  45084. height: math.unit(1.9, "meters"),
  45085. default: true
  45086. },
  45087. ]
  45088. ))
  45089. characterMakers.push(() => makeCharacter(
  45090. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45091. {
  45092. regular: {
  45093. height: math.unit(6, "feet"),
  45094. weight: math.unit(220, "lb"),
  45095. name: "Regular",
  45096. image: {
  45097. source: "./media/characters/phillip/regular.svg",
  45098. extra: 1373/1277,
  45099. bottom: 75/1448
  45100. }
  45101. },
  45102. dressed: {
  45103. height: math.unit(6, "feet"),
  45104. weight: math.unit(220, "lb"),
  45105. name: "Dressed",
  45106. image: {
  45107. source: "./media/characters/phillip/dressed.svg",
  45108. extra: 1373/1277,
  45109. bottom: 75/1448
  45110. }
  45111. },
  45112. paw: {
  45113. height: math.unit(1.44, "feet"),
  45114. name: "Paw",
  45115. image: {
  45116. source: "./media/characters/phillip/paw.svg"
  45117. }
  45118. },
  45119. },
  45120. [
  45121. {
  45122. name: "Normal",
  45123. height: math.unit(6, "feet"),
  45124. default: true
  45125. },
  45126. ]
  45127. ))
  45128. characterMakers.push(() => makeCharacter(
  45129. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45130. {
  45131. side: {
  45132. height: math.unit(42, "feet"),
  45133. name: "Side",
  45134. image: {
  45135. source: "./media/characters/uvula/side.svg",
  45136. extra: 683/586,
  45137. bottom: 60/743
  45138. }
  45139. },
  45140. front: {
  45141. height: math.unit(42, "feet"),
  45142. name: "Front",
  45143. image: {
  45144. source: "./media/characters/uvula/front.svg",
  45145. extra: 705/613,
  45146. bottom: 54/759
  45147. }
  45148. },
  45149. maw: {
  45150. height: math.unit(23.5, "feet"),
  45151. name: "Maw",
  45152. image: {
  45153. source: "./media/characters/uvula/maw.svg"
  45154. }
  45155. },
  45156. },
  45157. [
  45158. {
  45159. name: "Original Size",
  45160. height: math.unit(14, "inches")
  45161. },
  45162. {
  45163. name: "Human Size",
  45164. height: math.unit(6, "feet")
  45165. },
  45166. {
  45167. name: "Big",
  45168. height: math.unit(42, "feet"),
  45169. default: true
  45170. },
  45171. {
  45172. name: "Bigger",
  45173. height: math.unit(100, "feet")
  45174. },
  45175. ]
  45176. ))
  45177. characterMakers.push(() => makeCharacter(
  45178. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45179. {
  45180. front: {
  45181. height: math.unit(5 + 11/12, "feet"),
  45182. name: "Front",
  45183. image: {
  45184. source: "./media/characters/lannah/front.svg",
  45185. extra: 1208/1113,
  45186. bottom: 97/1305
  45187. }
  45188. },
  45189. },
  45190. [
  45191. {
  45192. name: "Normal",
  45193. height: math.unit(5 + 11/12, "feet"),
  45194. default: true
  45195. },
  45196. ]
  45197. ))
  45198. characterMakers.push(() => makeCharacter(
  45199. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45200. {
  45201. front: {
  45202. height: math.unit(6 + 3/12, "feet"),
  45203. weight: math.unit(3.5, "tons"),
  45204. name: "Front",
  45205. image: {
  45206. source: "./media/characters/emberflame/front.svg",
  45207. extra: 1198/672,
  45208. bottom: 82/1280
  45209. }
  45210. },
  45211. side: {
  45212. height: math.unit(6 + 3/12, "feet"),
  45213. weight: math.unit(3.5, "tons"),
  45214. name: "Side",
  45215. image: {
  45216. source: "./media/characters/emberflame/side.svg",
  45217. extra: 938/527,
  45218. bottom: 56/994
  45219. }
  45220. },
  45221. },
  45222. [
  45223. {
  45224. name: "Normal",
  45225. height: math.unit(6 + 3/12, "feet"),
  45226. default: true
  45227. },
  45228. ]
  45229. ))
  45230. characterMakers.push(() => makeCharacter(
  45231. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45232. {
  45233. side: {
  45234. height: math.unit(17.5, "feet"),
  45235. weight: math.unit(35, "tons"),
  45236. name: "Side",
  45237. image: {
  45238. source: "./media/characters/sophie-ambrose/side.svg",
  45239. extra: 1573/1242,
  45240. bottom: 71/1644
  45241. }
  45242. },
  45243. maw: {
  45244. height: math.unit(7.4, "feet"),
  45245. name: "Maw",
  45246. image: {
  45247. source: "./media/characters/sophie-ambrose/maw.svg"
  45248. }
  45249. },
  45250. },
  45251. [
  45252. {
  45253. name: "Normal",
  45254. height: math.unit(17.5, "feet"),
  45255. default: true
  45256. },
  45257. ]
  45258. ))
  45259. characterMakers.push(() => makeCharacter(
  45260. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45261. {
  45262. front: {
  45263. height: math.unit(280, "feet"),
  45264. weight: math.unit(550, "tons"),
  45265. name: "Front",
  45266. image: {
  45267. source: "./media/characters/king-mugi/front.svg",
  45268. extra: 1102/947,
  45269. bottom: 104/1206
  45270. }
  45271. },
  45272. },
  45273. [
  45274. {
  45275. name: "King Mugi",
  45276. height: math.unit(280, "feet"),
  45277. default: true
  45278. },
  45279. ]
  45280. ))
  45281. characterMakers.push(() => makeCharacter(
  45282. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45283. {
  45284. female: {
  45285. height: math.unit(300, "meters"),
  45286. name: "Front",
  45287. image: {
  45288. source: "./media/characters/nova-fox/female.svg",
  45289. extra: 664/632,
  45290. bottom: 51/715
  45291. },
  45292. form: "female",
  45293. default: true
  45294. },
  45295. male: {
  45296. height: math.unit(300, "meters"),
  45297. name: "Front",
  45298. image: {
  45299. source: "./media/characters/nova-fox/male.svg",
  45300. extra: 663/631,
  45301. bottom: 30/693
  45302. },
  45303. form: "male",
  45304. default: true
  45305. },
  45306. },
  45307. [
  45308. {
  45309. name: "Macro",
  45310. height: math.unit(300, "meters"),
  45311. default: true,
  45312. allForms: true
  45313. },
  45314. ],
  45315. {
  45316. "female": {
  45317. name: "Female",
  45318. default: true
  45319. },
  45320. "male": {
  45321. name: "Male",
  45322. },
  45323. }
  45324. ))
  45325. characterMakers.push(() => makeCharacter(
  45326. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45327. {
  45328. front: {
  45329. height: math.unit(6 + 3/12, "feet"),
  45330. weight: math.unit(170, "lb"),
  45331. name: "Front",
  45332. image: {
  45333. source: "./media/characters/sam-bat/front.svg",
  45334. extra: 1601/1411,
  45335. bottom: 125/1726
  45336. }
  45337. },
  45338. back: {
  45339. height: math.unit(6 + 3/12, "feet"),
  45340. weight: math.unit(170, "lb"),
  45341. name: "Back",
  45342. image: {
  45343. source: "./media/characters/sam-bat/back.svg",
  45344. extra: 1577/1405,
  45345. bottom: 58/1635
  45346. }
  45347. },
  45348. },
  45349. [
  45350. {
  45351. name: "Normal",
  45352. height: math.unit(6 + 3/12, "feet"),
  45353. default: true
  45354. },
  45355. ]
  45356. ))
  45357. characterMakers.push(() => makeCharacter(
  45358. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45359. {
  45360. front: {
  45361. height: math.unit(59, "feet"),
  45362. weight: math.unit(40000, "lb"),
  45363. name: "Front",
  45364. image: {
  45365. source: "./media/characters/inari/front.svg",
  45366. extra: 1884/1350,
  45367. bottom: 95/1979
  45368. }
  45369. },
  45370. },
  45371. [
  45372. {
  45373. name: "Gigantamax",
  45374. height: math.unit(59, "feet"),
  45375. default: true
  45376. },
  45377. ]
  45378. ))
  45379. characterMakers.push(() => makeCharacter(
  45380. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45381. {
  45382. front: {
  45383. height: math.unit(5 + 8/12, "feet"),
  45384. name: "Front",
  45385. image: {
  45386. source: "./media/characters/elizabeth/front.svg",
  45387. extra: 1395/1298,
  45388. bottom: 54/1449
  45389. }
  45390. },
  45391. mouth: {
  45392. height: math.unit(1.97, "feet"),
  45393. name: "Mouth",
  45394. image: {
  45395. source: "./media/characters/elizabeth/mouth.svg"
  45396. }
  45397. },
  45398. foot: {
  45399. height: math.unit(1.17, "feet"),
  45400. name: "Foot",
  45401. image: {
  45402. source: "./media/characters/elizabeth/foot.svg"
  45403. }
  45404. },
  45405. },
  45406. [
  45407. {
  45408. name: "Normal",
  45409. height: math.unit(5 + 8/12, "feet"),
  45410. default: true
  45411. },
  45412. {
  45413. name: "Minimacro",
  45414. height: math.unit(18, "feet")
  45415. },
  45416. {
  45417. name: "Macro",
  45418. height: math.unit(180, "feet")
  45419. },
  45420. ]
  45421. ))
  45422. characterMakers.push(() => makeCharacter(
  45423. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45424. {
  45425. front: {
  45426. height: math.unit(5 + 2/12, "feet"),
  45427. name: "Front",
  45428. image: {
  45429. source: "./media/characters/october-gossamer/front.svg",
  45430. extra: 505/454,
  45431. bottom: 7/512
  45432. }
  45433. },
  45434. back: {
  45435. height: math.unit(5 + 2/12, "feet"),
  45436. name: "Back",
  45437. image: {
  45438. source: "./media/characters/october-gossamer/back.svg",
  45439. extra: 501/454,
  45440. bottom: 11/512
  45441. }
  45442. },
  45443. },
  45444. [
  45445. {
  45446. name: "Normal",
  45447. height: math.unit(5 + 2/12, "feet"),
  45448. default: true
  45449. },
  45450. ]
  45451. ))
  45452. characterMakers.push(() => makeCharacter(
  45453. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45454. {
  45455. front: {
  45456. height: math.unit(5, "feet"),
  45457. name: "Front",
  45458. image: {
  45459. source: "./media/characters/epiglottis/front.svg",
  45460. extra: 923/849,
  45461. bottom: 17/940
  45462. }
  45463. },
  45464. },
  45465. [
  45466. {
  45467. name: "Original Size",
  45468. height: math.unit(10, "inches")
  45469. },
  45470. {
  45471. name: "Human Size",
  45472. height: math.unit(5, "feet"),
  45473. default: true
  45474. },
  45475. {
  45476. name: "Big",
  45477. height: math.unit(25, "feet")
  45478. },
  45479. {
  45480. name: "Bigger",
  45481. height: math.unit(50, "feet")
  45482. },
  45483. {
  45484. name: "oh lawd",
  45485. height: math.unit(75, "feet")
  45486. },
  45487. ]
  45488. ))
  45489. characterMakers.push(() => makeCharacter(
  45490. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45491. {
  45492. front: {
  45493. height: math.unit(2 + 4/12, "feet"),
  45494. weight: math.unit(60, "lb"),
  45495. name: "Front",
  45496. image: {
  45497. source: "./media/characters/lerm/front.svg",
  45498. extra: 796/790,
  45499. bottom: 79/875
  45500. }
  45501. },
  45502. },
  45503. [
  45504. {
  45505. name: "Normal",
  45506. height: math.unit(2 + 4/12, "feet"),
  45507. default: true
  45508. },
  45509. ]
  45510. ))
  45511. characterMakers.push(() => makeCharacter(
  45512. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45513. {
  45514. front: {
  45515. height: math.unit(5.5, "feet"),
  45516. weight: math.unit(130, "lb"),
  45517. name: "Front",
  45518. image: {
  45519. source: "./media/characters/xena-nebadon/front.svg",
  45520. extra: 1828/1730,
  45521. bottom: 79/1907
  45522. }
  45523. },
  45524. },
  45525. [
  45526. {
  45527. name: "Tiny Puppy",
  45528. height: math.unit(3, "inches")
  45529. },
  45530. {
  45531. name: "Normal",
  45532. height: math.unit(5.5, "feet"),
  45533. default: true
  45534. },
  45535. {
  45536. name: "Lotta Lady",
  45537. height: math.unit(12, "feet")
  45538. },
  45539. {
  45540. name: "Pretty Big",
  45541. height: math.unit(100, "feet")
  45542. },
  45543. {
  45544. name: "Big",
  45545. height: math.unit(500, "feet")
  45546. },
  45547. {
  45548. name: "Skyscraper Toys",
  45549. height: math.unit(2500, "feet")
  45550. },
  45551. {
  45552. name: "Plane Catcher",
  45553. height: math.unit(8, "miles")
  45554. },
  45555. {
  45556. name: "Planet Toys",
  45557. height: math.unit(15, "earths")
  45558. },
  45559. {
  45560. name: "Stardust",
  45561. height: math.unit(0.25, "galaxies")
  45562. },
  45563. {
  45564. name: "Snacks",
  45565. height: math.unit(70, "universes")
  45566. },
  45567. ]
  45568. ))
  45569. characterMakers.push(() => makeCharacter(
  45570. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45571. {
  45572. front: {
  45573. height: math.unit(1.6, "meters"),
  45574. weight: math.unit(60, "kg"),
  45575. name: "Front",
  45576. image: {
  45577. source: "./media/characters/bounty/front.svg",
  45578. extra: 1426/1308,
  45579. bottom: 15/1441
  45580. }
  45581. },
  45582. back: {
  45583. height: math.unit(1.6, "meters"),
  45584. weight: math.unit(60, "kg"),
  45585. name: "Back",
  45586. image: {
  45587. source: "./media/characters/bounty/back.svg",
  45588. extra: 1417/1307,
  45589. bottom: 8/1425
  45590. }
  45591. },
  45592. },
  45593. [
  45594. {
  45595. name: "Normal",
  45596. height: math.unit(1.6, "meters"),
  45597. default: true
  45598. },
  45599. {
  45600. name: "Macro",
  45601. height: math.unit(300, "meters")
  45602. },
  45603. ]
  45604. ))
  45605. characterMakers.push(() => makeCharacter(
  45606. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45607. {
  45608. front: {
  45609. height: math.unit(2 + 8/12, "feet"),
  45610. weight: math.unit(15, "lb"),
  45611. name: "Front",
  45612. image: {
  45613. source: "./media/characters/mochi/front.svg",
  45614. extra: 1022/852,
  45615. bottom: 435/1457
  45616. }
  45617. },
  45618. back: {
  45619. height: math.unit(2 + 8/12, "feet"),
  45620. weight: math.unit(15, "lb"),
  45621. name: "Back",
  45622. image: {
  45623. source: "./media/characters/mochi/back.svg",
  45624. extra: 1335/1119,
  45625. bottom: 39/1374
  45626. }
  45627. },
  45628. bird: {
  45629. height: math.unit(2 + 8/12, "feet"),
  45630. weight: math.unit(15, "lb"),
  45631. name: "Bird",
  45632. image: {
  45633. source: "./media/characters/mochi/bird.svg",
  45634. extra: 1251/1113,
  45635. bottom: 178/1429
  45636. }
  45637. },
  45638. kaiju: {
  45639. height: math.unit(154, "feet"),
  45640. weight: math.unit(1e7, "lb"),
  45641. name: "Kaiju",
  45642. image: {
  45643. source: "./media/characters/mochi/kaiju.svg",
  45644. extra: 460/324,
  45645. bottom: 40/500
  45646. }
  45647. },
  45648. head: {
  45649. height: math.unit(1.21, "feet"),
  45650. name: "Head",
  45651. image: {
  45652. source: "./media/characters/mochi/head.svg"
  45653. }
  45654. },
  45655. alternateTail: {
  45656. height: math.unit(2 + 8/12, "feet"),
  45657. weight: math.unit(45, "lb"),
  45658. name: "Alternate Tail",
  45659. image: {
  45660. source: "./media/characters/mochi/alternate-tail.svg",
  45661. extra: 139/76,
  45662. bottom: 45/184
  45663. }
  45664. },
  45665. },
  45666. [
  45667. {
  45668. name: "Micro",
  45669. height: math.unit(2, "inches")
  45670. },
  45671. {
  45672. name: "Normal",
  45673. height: math.unit(2 + 8/12, "feet"),
  45674. default: true
  45675. },
  45676. {
  45677. name: "Macro",
  45678. height: math.unit(106, "feet")
  45679. },
  45680. ]
  45681. ))
  45682. characterMakers.push(() => makeCharacter(
  45683. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45684. {
  45685. front: {
  45686. height: math.unit(5.67, "feet"),
  45687. weight: math.unit(135, "lb"),
  45688. name: "Front",
  45689. image: {
  45690. source: "./media/characters/sarel/front.svg",
  45691. extra: 865/788,
  45692. bottom: 97/962
  45693. }
  45694. },
  45695. back: {
  45696. height: math.unit(5.67, "feet"),
  45697. weight: math.unit(135, "lb"),
  45698. name: "Back",
  45699. image: {
  45700. source: "./media/characters/sarel/back.svg",
  45701. extra: 857/777,
  45702. bottom: 32/889
  45703. }
  45704. },
  45705. chozoan: {
  45706. height: math.unit(5.67, "feet"),
  45707. weight: math.unit(135, "lb"),
  45708. name: "Chozoan",
  45709. image: {
  45710. source: "./media/characters/sarel/chozoan.svg",
  45711. extra: 865/788,
  45712. bottom: 97/962
  45713. }
  45714. },
  45715. current: {
  45716. height: math.unit(5.67, "feet"),
  45717. weight: math.unit(135, "lb"),
  45718. name: "Current",
  45719. image: {
  45720. source: "./media/characters/sarel/current.svg",
  45721. extra: 865/788,
  45722. bottom: 97/962
  45723. }
  45724. },
  45725. head: {
  45726. height: math.unit(1.77, "feet"),
  45727. name: "Head",
  45728. image: {
  45729. source: "./media/characters/sarel/head.svg"
  45730. }
  45731. },
  45732. claws: {
  45733. height: math.unit(1.8, "feet"),
  45734. name: "Claws",
  45735. image: {
  45736. source: "./media/characters/sarel/claws.svg"
  45737. }
  45738. },
  45739. clawsAlt: {
  45740. height: math.unit(1.8, "feet"),
  45741. name: "Claws-alt",
  45742. image: {
  45743. source: "./media/characters/sarel/claws-alt.svg"
  45744. }
  45745. },
  45746. },
  45747. [
  45748. {
  45749. name: "Normal",
  45750. height: math.unit(5.67, "feet"),
  45751. default: true
  45752. },
  45753. ]
  45754. ))
  45755. characterMakers.push(() => makeCharacter(
  45756. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45757. {
  45758. front: {
  45759. height: math.unit(5500, "feet"),
  45760. name: "Front",
  45761. image: {
  45762. source: "./media/characters/alyonia/front.svg",
  45763. extra: 1200/1135,
  45764. bottom: 29/1229
  45765. }
  45766. },
  45767. back: {
  45768. height: math.unit(5500, "feet"),
  45769. name: "Back",
  45770. image: {
  45771. source: "./media/characters/alyonia/back.svg",
  45772. extra: 1205/1138,
  45773. bottom: 10/1215
  45774. }
  45775. },
  45776. },
  45777. [
  45778. {
  45779. name: "Small",
  45780. height: math.unit(10, "feet")
  45781. },
  45782. {
  45783. name: "Macro",
  45784. height: math.unit(500, "feet")
  45785. },
  45786. {
  45787. name: "Mega Macro",
  45788. height: math.unit(5500, "feet"),
  45789. default: true
  45790. },
  45791. {
  45792. name: "Mega Macro+",
  45793. height: math.unit(500000, "feet")
  45794. },
  45795. {
  45796. name: "Giga Macro",
  45797. height: math.unit(3000, "miles")
  45798. },
  45799. {
  45800. name: "Tera Macro",
  45801. height: math.unit(2.8e6, "miles")
  45802. },
  45803. {
  45804. name: "Galactic",
  45805. height: math.unit(120000, "lightyears")
  45806. },
  45807. ]
  45808. ))
  45809. characterMakers.push(() => makeCharacter(
  45810. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45811. {
  45812. werewolf: {
  45813. height: math.unit(8, "feet"),
  45814. weight: math.unit(425, "lb"),
  45815. name: "Werewolf",
  45816. image: {
  45817. source: "./media/characters/autumn/werewolf.svg",
  45818. extra: 2154/2031,
  45819. bottom: 160/2314
  45820. }
  45821. },
  45822. human: {
  45823. height: math.unit(5 + 8/12, "feet"),
  45824. weight: math.unit(150, "lb"),
  45825. name: "Human",
  45826. image: {
  45827. source: "./media/characters/autumn/human.svg",
  45828. extra: 1200/1149,
  45829. bottom: 30/1230
  45830. }
  45831. },
  45832. },
  45833. [
  45834. {
  45835. name: "Normal",
  45836. height: math.unit(8, "feet"),
  45837. default: true
  45838. },
  45839. ]
  45840. ))
  45841. characterMakers.push(() => makeCharacter(
  45842. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45843. {
  45844. front: {
  45845. height: math.unit(8 + 5/12, "feet"),
  45846. weight: math.unit(825, "lb"),
  45847. name: "Front",
  45848. image: {
  45849. source: "./media/characters/cobalt-charizard/front.svg",
  45850. extra: 1268/1155,
  45851. bottom: 122/1390
  45852. }
  45853. },
  45854. side: {
  45855. height: math.unit(8 + 5/12, "feet"),
  45856. weight: math.unit(825, "lb"),
  45857. name: "Side",
  45858. image: {
  45859. source: "./media/characters/cobalt-charizard/side.svg",
  45860. extra: 1348/1257,
  45861. bottom: 58/1406
  45862. }
  45863. },
  45864. gMax: {
  45865. height: math.unit(134 + 11/12, "feet"),
  45866. name: "G-Max",
  45867. image: {
  45868. source: "./media/characters/cobalt-charizard/g-max.svg",
  45869. extra: 1835/1541,
  45870. bottom: 151/1986
  45871. }
  45872. },
  45873. },
  45874. [
  45875. {
  45876. name: "Normal",
  45877. height: math.unit(8 + 5/12, "feet"),
  45878. default: true
  45879. },
  45880. ]
  45881. ))
  45882. characterMakers.push(() => makeCharacter(
  45883. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45884. {
  45885. front: {
  45886. height: math.unit(6 + 3/12, "feet"),
  45887. weight: math.unit(210, "lb"),
  45888. name: "Front",
  45889. image: {
  45890. source: "./media/characters/stella/front.svg",
  45891. extra: 3549/3335,
  45892. bottom: 51/3600
  45893. }
  45894. },
  45895. },
  45896. [
  45897. {
  45898. name: "Normal",
  45899. height: math.unit(6 + 3/12, "feet"),
  45900. default: true
  45901. },
  45902. ]
  45903. ))
  45904. characterMakers.push(() => makeCharacter(
  45905. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45906. {
  45907. front: {
  45908. height: math.unit(5, "feet"),
  45909. weight: math.unit(90, "lb"),
  45910. name: "Front",
  45911. image: {
  45912. source: "./media/characters/riley-bishop/front.svg",
  45913. extra: 1450/1428,
  45914. bottom: 152/1602
  45915. }
  45916. },
  45917. },
  45918. [
  45919. {
  45920. name: "Normal",
  45921. height: math.unit(5, "feet"),
  45922. default: true
  45923. },
  45924. ]
  45925. ))
  45926. characterMakers.push(() => makeCharacter(
  45927. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45928. {
  45929. side: {
  45930. height: math.unit(8 + 2/12, "feet"),
  45931. weight: math.unit(500, "kg"),
  45932. name: "Side",
  45933. image: {
  45934. source: "./media/characters/theo-arcanine/side.svg",
  45935. extra: 1342/1074,
  45936. bottom: 111/1453
  45937. }
  45938. },
  45939. },
  45940. [
  45941. {
  45942. name: "Normal",
  45943. height: math.unit(8 + 2/12, "feet"),
  45944. default: true
  45945. },
  45946. ]
  45947. ))
  45948. characterMakers.push(() => makeCharacter(
  45949. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45950. {
  45951. front: {
  45952. height: math.unit(4, "feet"),
  45953. name: "Front",
  45954. image: {
  45955. source: "./media/characters/kali/front.svg",
  45956. extra: 1074/867,
  45957. bottom: 34/1108
  45958. }
  45959. },
  45960. back: {
  45961. height: math.unit(4, "feet"),
  45962. name: "Back",
  45963. image: {
  45964. source: "./media/characters/kali/back.svg",
  45965. extra: 1068/863,
  45966. bottom: 26/1094
  45967. }
  45968. },
  45969. frontAlt: {
  45970. height: math.unit(4, "feet"),
  45971. name: "Front (Alt)",
  45972. image: {
  45973. source: "./media/characters/kali/front-alt.svg",
  45974. extra: 1921/1357,
  45975. bottom: 70/1991
  45976. }
  45977. },
  45978. },
  45979. [
  45980. {
  45981. name: "Normal",
  45982. height: math.unit(4, "feet"),
  45983. default: true
  45984. },
  45985. {
  45986. name: "Big'vali",
  45987. height: math.unit(11, "feet")
  45988. },
  45989. {
  45990. name: "Macro",
  45991. height: math.unit(32, "meters")
  45992. },
  45993. {
  45994. name: "Macro+",
  45995. height: math.unit(150, "meters")
  45996. },
  45997. {
  45998. name: "Megamacro",
  45999. height: math.unit(7500, "meters")
  46000. },
  46001. {
  46002. name: "Megamacro+",
  46003. height: math.unit(80, "kilometers")
  46004. },
  46005. ]
  46006. ))
  46007. characterMakers.push(() => makeCharacter(
  46008. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46009. {
  46010. side: {
  46011. height: math.unit(5 + 11/12, "feet"),
  46012. weight: math.unit(236, "lb"),
  46013. name: "Side",
  46014. image: {
  46015. source: "./media/characters/gapp/side.svg",
  46016. extra: 775/340,
  46017. bottom: 58/833
  46018. }
  46019. },
  46020. mouth: {
  46021. height: math.unit(2.98, "feet"),
  46022. name: "Mouth",
  46023. image: {
  46024. source: "./media/characters/gapp/mouth.svg"
  46025. }
  46026. },
  46027. },
  46028. [
  46029. {
  46030. name: "Normal",
  46031. height: math.unit(5 + 1/12, "feet"),
  46032. default: true
  46033. },
  46034. ]
  46035. ))
  46036. characterMakers.push(() => makeCharacter(
  46037. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46038. {
  46039. front: {
  46040. height: math.unit(6, "feet"),
  46041. name: "Front",
  46042. image: {
  46043. source: "./media/characters/persephone/front.svg",
  46044. extra: 1895/1717,
  46045. bottom: 96/1991
  46046. }
  46047. },
  46048. back: {
  46049. height: math.unit(6, "feet"),
  46050. name: "Back",
  46051. image: {
  46052. source: "./media/characters/persephone/back.svg",
  46053. extra: 1868/1679,
  46054. bottom: 26/1894
  46055. }
  46056. },
  46057. casual: {
  46058. height: math.unit(6, "feet"),
  46059. name: "Casual",
  46060. image: {
  46061. source: "./media/characters/persephone/casual.svg",
  46062. extra: 1713/1541,
  46063. bottom: 76/1789
  46064. }
  46065. },
  46066. gaming: {
  46067. height: math.unit(3.55, "feet"),
  46068. name: "Gaming",
  46069. image: {
  46070. source: "./media/characters/persephone/gaming.svg",
  46071. extra: 1242/1038,
  46072. bottom: 66/1308
  46073. }
  46074. },
  46075. head: {
  46076. height: math.unit(2.15, "feet"),
  46077. name: "😐",
  46078. image: {
  46079. source: "./media/characters/persephone/head.svg"
  46080. }
  46081. },
  46082. talking: {
  46083. height: math.unit(2.5, "feet"),
  46084. name: "💬",
  46085. image: {
  46086. source: "./media/characters/persephone/talking.svg"
  46087. }
  46088. },
  46089. hmm: {
  46090. height: math.unit(2.28, "feet"),
  46091. name: "🤨",
  46092. image: {
  46093. source: "./media/characters/persephone/hmm.svg"
  46094. }
  46095. },
  46096. },
  46097. [
  46098. {
  46099. name: "Human Size",
  46100. height: math.unit(6, "feet")
  46101. },
  46102. {
  46103. name: "Big Steppy",
  46104. height: math.unit(600, "meters"),
  46105. default: true
  46106. },
  46107. {
  46108. name: "Galaxy Brain",
  46109. height: math.unit(1, "zettameter")
  46110. },
  46111. ]
  46112. ))
  46113. characterMakers.push(() => makeCharacter(
  46114. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46115. {
  46116. front: {
  46117. height: math.unit(1.85, "meters"),
  46118. name: "Front",
  46119. image: {
  46120. source: "./media/characters/riley-foxthing/front.svg",
  46121. extra: 1495/1354,
  46122. bottom: 122/1617
  46123. }
  46124. },
  46125. frontAlt: {
  46126. height: math.unit(1.85, "meters"),
  46127. name: "Front (Alt)",
  46128. image: {
  46129. source: "./media/characters/riley-foxthing/front-alt.svg",
  46130. extra: 1572/1389,
  46131. bottom: 116/1688
  46132. }
  46133. },
  46134. },
  46135. [
  46136. {
  46137. name: "Normal Sized",
  46138. height: math.unit(1.85, "meters"),
  46139. default: true
  46140. },
  46141. {
  46142. name: "Quite Sizable",
  46143. height: math.unit(5, "meters")
  46144. },
  46145. {
  46146. name: "Rather Large",
  46147. height: math.unit(20, "meters")
  46148. },
  46149. {
  46150. name: "Macro",
  46151. height: math.unit(450, "meters")
  46152. },
  46153. {
  46154. name: "Giga",
  46155. height: math.unit(5, "km")
  46156. },
  46157. ]
  46158. ))
  46159. characterMakers.push(() => makeCharacter(
  46160. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46161. {
  46162. front: {
  46163. height: math.unit(6, "feet"),
  46164. weight: math.unit(200, "lb"),
  46165. name: "Front",
  46166. image: {
  46167. source: "./media/characters/blizzard/front.svg",
  46168. extra: 1136/990,
  46169. bottom: 136/1272
  46170. }
  46171. },
  46172. back: {
  46173. height: math.unit(6, "feet"),
  46174. weight: math.unit(200, "lb"),
  46175. name: "Back",
  46176. image: {
  46177. source: "./media/characters/blizzard/back.svg",
  46178. extra: 1175/1034,
  46179. bottom: 97/1272
  46180. }
  46181. },
  46182. sitting: {
  46183. height: math.unit(3.725, "feet"),
  46184. weight: math.unit(200, "lb"),
  46185. name: "Sitting",
  46186. image: {
  46187. source: "./media/characters/blizzard/sitting.svg",
  46188. extra: 581/485,
  46189. bottom: 90/671
  46190. }
  46191. },
  46192. frontWizard: {
  46193. height: math.unit(7.9, "feet"),
  46194. weight: math.unit(200, "lb"),
  46195. name: "Front (Wizard)",
  46196. image: {
  46197. source: "./media/characters/blizzard/front-wizard.svg"
  46198. }
  46199. },
  46200. backWizard: {
  46201. height: math.unit(7.9, "feet"),
  46202. weight: math.unit(200, "lb"),
  46203. name: "Back (Wizard)",
  46204. image: {
  46205. source: "./media/characters/blizzard/back-wizard.svg"
  46206. }
  46207. },
  46208. frontNsfw: {
  46209. height: math.unit(6, "feet"),
  46210. weight: math.unit(200, "lb"),
  46211. name: "Front (NSFW)",
  46212. image: {
  46213. source: "./media/characters/blizzard/front-nsfw.svg",
  46214. extra: 1136/990,
  46215. bottom: 136/1272
  46216. }
  46217. },
  46218. backNsfw: {
  46219. height: math.unit(6, "feet"),
  46220. weight: math.unit(200, "lb"),
  46221. name: "Back (NSFW)",
  46222. image: {
  46223. source: "./media/characters/blizzard/back-nsfw.svg",
  46224. extra: 1175/1034,
  46225. bottom: 97/1272
  46226. }
  46227. },
  46228. sittingNsfw: {
  46229. height: math.unit(3.725, "feet"),
  46230. weight: math.unit(200, "lb"),
  46231. name: "Sitting (NSFW)",
  46232. image: {
  46233. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46234. extra: 581/485,
  46235. bottom: 90/671
  46236. }
  46237. },
  46238. wizardFrontNsfw: {
  46239. height: math.unit(7.9, "feet"),
  46240. weight: math.unit(200, "lb"),
  46241. name: "Wizard (Front, NSFW)",
  46242. image: {
  46243. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46244. }
  46245. },
  46246. },
  46247. [
  46248. {
  46249. name: "Normal",
  46250. height: math.unit(6, "feet"),
  46251. default: true
  46252. },
  46253. ]
  46254. ))
  46255. characterMakers.push(() => makeCharacter(
  46256. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46257. {
  46258. front: {
  46259. height: math.unit(5 + 2/12, "feet"),
  46260. name: "Front",
  46261. image: {
  46262. source: "./media/characters/lumi/front.svg",
  46263. extra: 1328/1268,
  46264. bottom: 103/1431
  46265. }
  46266. },
  46267. back: {
  46268. height: math.unit(5 + 2/12, "feet"),
  46269. name: "Back",
  46270. image: {
  46271. source: "./media/characters/lumi/back.svg",
  46272. extra: 1381/1327,
  46273. bottom: 43/1424
  46274. }
  46275. },
  46276. },
  46277. [
  46278. {
  46279. name: "Normal",
  46280. height: math.unit(5 + 2/12, "feet"),
  46281. default: true
  46282. },
  46283. ]
  46284. ))
  46285. characterMakers.push(() => makeCharacter(
  46286. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46287. {
  46288. front: {
  46289. height: math.unit(5 + 9/12, "feet"),
  46290. name: "Front",
  46291. image: {
  46292. source: "./media/characters/aliya-cotton/front.svg",
  46293. extra: 577/564,
  46294. bottom: 29/606
  46295. }
  46296. },
  46297. },
  46298. [
  46299. {
  46300. name: "Normal",
  46301. height: math.unit(5 + 9/12, "feet"),
  46302. default: true
  46303. },
  46304. ]
  46305. ))
  46306. characterMakers.push(() => makeCharacter(
  46307. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46308. {
  46309. front: {
  46310. height: math.unit(2.7, "meters"),
  46311. weight: math.unit(25000, "lb"),
  46312. name: "Front",
  46313. image: {
  46314. source: "./media/characters/noah-luxray/front.svg",
  46315. extra: 1644/825,
  46316. bottom: 339/1983
  46317. }
  46318. },
  46319. side: {
  46320. height: math.unit(2.97, "meters"),
  46321. weight: math.unit(25000, "lb"),
  46322. name: "Side",
  46323. image: {
  46324. source: "./media/characters/noah-luxray/side.svg",
  46325. extra: 1319/650,
  46326. bottom: 163/1482
  46327. }
  46328. },
  46329. dick: {
  46330. height: math.unit(7.4, "feet"),
  46331. weight: math.unit(2500, "lb"),
  46332. name: "Dick",
  46333. image: {
  46334. source: "./media/characters/noah-luxray/dick.svg"
  46335. }
  46336. },
  46337. dickAlt: {
  46338. height: math.unit(10.83, "feet"),
  46339. weight: math.unit(2500, "lb"),
  46340. name: "Dick-alt",
  46341. image: {
  46342. source: "./media/characters/noah-luxray/dick-alt.svg"
  46343. }
  46344. },
  46345. },
  46346. [
  46347. {
  46348. name: "BIG",
  46349. height: math.unit(2.7, "meters"),
  46350. default: true
  46351. },
  46352. ]
  46353. ))
  46354. characterMakers.push(() => makeCharacter(
  46355. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46356. {
  46357. standing: {
  46358. height: math.unit(183, "cm"),
  46359. weight: math.unit(68, "kg"),
  46360. name: "Standing",
  46361. image: {
  46362. source: "./media/characters/arion/standing.svg",
  46363. extra: 1869/1807,
  46364. bottom: 93/1962
  46365. }
  46366. },
  46367. reclining: {
  46368. height: math.unit(70.5, "cm"),
  46369. weight: math.unit(68, "lb"),
  46370. name: "Reclining",
  46371. image: {
  46372. source: "./media/characters/arion/reclining.svg",
  46373. extra: 937/870,
  46374. bottom: 63/1000
  46375. }
  46376. },
  46377. },
  46378. [
  46379. {
  46380. name: "Colossus Size, Low",
  46381. height: math.unit(33, "meters"),
  46382. default: true
  46383. },
  46384. {
  46385. name: "Colossus Size, Mid",
  46386. height: math.unit(52, "meters")
  46387. },
  46388. {
  46389. name: "Colossus Size, High",
  46390. height: math.unit(60, "meters")
  46391. },
  46392. {
  46393. name: "Titan Size, Low",
  46394. height: math.unit(91, "meters"),
  46395. },
  46396. {
  46397. name: "Titan Size, Mid",
  46398. height: math.unit(122, "meters")
  46399. },
  46400. {
  46401. name: "Titan Size, High",
  46402. height: math.unit(162, "meters")
  46403. },
  46404. ]
  46405. ))
  46406. characterMakers.push(() => makeCharacter(
  46407. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46408. {
  46409. front: {
  46410. height: math.unit(53, "meters"),
  46411. name: "Front",
  46412. image: {
  46413. source: "./media/characters/stellar-marbey/front.svg",
  46414. extra: 1913/1805,
  46415. bottom: 92/2005
  46416. }
  46417. },
  46418. back: {
  46419. height: math.unit(53, "meters"),
  46420. name: "Back",
  46421. image: {
  46422. source: "./media/characters/stellar-marbey/back.svg",
  46423. extra: 1960/1851,
  46424. bottom: 28/1988
  46425. }
  46426. },
  46427. mouth: {
  46428. height: math.unit(3.5, "meters"),
  46429. name: "Mouth",
  46430. image: {
  46431. source: "./media/characters/stellar-marbey/mouth.svg"
  46432. }
  46433. },
  46434. },
  46435. [
  46436. {
  46437. name: "Macro",
  46438. height: math.unit(53, "meters"),
  46439. default: true
  46440. },
  46441. ]
  46442. ))
  46443. characterMakers.push(() => makeCharacter(
  46444. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46445. {
  46446. front: {
  46447. height: math.unit(8 + 1/12, "feet"),
  46448. weight: math.unit(233, "lb"),
  46449. name: "Front",
  46450. image: {
  46451. source: "./media/characters/matsu/front.svg",
  46452. extra: 832/772,
  46453. bottom: 40/872
  46454. }
  46455. },
  46456. back: {
  46457. height: math.unit(8 + 1/12, "feet"),
  46458. weight: math.unit(233, "lb"),
  46459. name: "Back",
  46460. image: {
  46461. source: "./media/characters/matsu/back.svg",
  46462. extra: 839/780,
  46463. bottom: 47/886
  46464. }
  46465. },
  46466. },
  46467. [
  46468. {
  46469. name: "Normal",
  46470. height: math.unit(8 + 1/12, "feet"),
  46471. default: true
  46472. },
  46473. ]
  46474. ))
  46475. characterMakers.push(() => makeCharacter(
  46476. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46477. {
  46478. front: {
  46479. height: math.unit(4, "feet"),
  46480. weight: math.unit(148, "lb"),
  46481. name: "Front",
  46482. image: {
  46483. source: "./media/characters/thiz/front.svg",
  46484. extra: 1913/1748,
  46485. bottom: 62/1975
  46486. }
  46487. },
  46488. },
  46489. [
  46490. {
  46491. name: "Normal",
  46492. height: math.unit(4, "feet"),
  46493. default: true
  46494. },
  46495. ]
  46496. ))
  46497. characterMakers.push(() => makeCharacter(
  46498. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46499. {
  46500. front: {
  46501. height: math.unit(7 + 6/12, "feet"),
  46502. weight: math.unit(267, "lb"),
  46503. name: "Front",
  46504. image: {
  46505. source: "./media/characters/marcel/front.svg",
  46506. extra: 1221/1096,
  46507. bottom: 76/1297
  46508. }
  46509. },
  46510. },
  46511. [
  46512. {
  46513. name: "Normal",
  46514. height: math.unit(7 + 6/12, "feet"),
  46515. default: true
  46516. },
  46517. ]
  46518. ))
  46519. characterMakers.push(() => makeCharacter(
  46520. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46521. {
  46522. side: {
  46523. height: math.unit(42, "meters"),
  46524. name: "Side",
  46525. image: {
  46526. source: "./media/characters/flake/side.svg",
  46527. extra: 1525/1306,
  46528. bottom: 209/1734
  46529. }
  46530. },
  46531. },
  46532. [
  46533. {
  46534. name: "Normal",
  46535. height: math.unit(42, "meters"),
  46536. default: true
  46537. },
  46538. ]
  46539. ))
  46540. characterMakers.push(() => makeCharacter(
  46541. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46542. {
  46543. dressed: {
  46544. height: math.unit(6 + 4/12, "feet"),
  46545. weight: math.unit(520, "lb"),
  46546. name: "Dressed",
  46547. image: {
  46548. source: "./media/characters/someonne/dressed.svg",
  46549. extra: 1020/1010,
  46550. bottom: 178/1198
  46551. }
  46552. },
  46553. undressed: {
  46554. height: math.unit(6 + 4/12, "feet"),
  46555. weight: math.unit(520, "lb"),
  46556. name: "Undressed",
  46557. image: {
  46558. source: "./media/characters/someonne/undressed.svg",
  46559. extra: 1019/1014,
  46560. bottom: 169/1188
  46561. }
  46562. },
  46563. },
  46564. [
  46565. {
  46566. name: "Normal",
  46567. height: math.unit(6 + 4/12, "feet"),
  46568. default: true
  46569. },
  46570. ]
  46571. ))
  46572. characterMakers.push(() => makeCharacter(
  46573. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46574. {
  46575. front: {
  46576. height: math.unit(3, "feet"),
  46577. weight: math.unit(30, "lb"),
  46578. name: "Front",
  46579. image: {
  46580. source: "./media/characters/till/front.svg",
  46581. extra: 892/823,
  46582. bottom: 55/947
  46583. }
  46584. },
  46585. },
  46586. [
  46587. {
  46588. name: "Normal",
  46589. height: math.unit(3, "feet"),
  46590. default: true
  46591. },
  46592. ]
  46593. ))
  46594. characterMakers.push(() => makeCharacter(
  46595. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46596. {
  46597. front: {
  46598. height: math.unit(9 + 8/12, "feet"),
  46599. weight: math.unit(800, "lb"),
  46600. name: "Front",
  46601. image: {
  46602. source: "./media/characters/sydney-heki/front.svg",
  46603. extra: 1360/1300,
  46604. bottom: 22/1382
  46605. }
  46606. },
  46607. back: {
  46608. height: math.unit(9 + 8/12, "feet"),
  46609. weight: math.unit(800, "lb"),
  46610. name: "Back",
  46611. image: {
  46612. source: "./media/characters/sydney-heki/back.svg",
  46613. extra: 1356/1293,
  46614. bottom: 12/1368
  46615. }
  46616. },
  46617. frontDressed: {
  46618. height: math.unit(9 + 8/12, "feet"),
  46619. weight: math.unit(800, "lb"),
  46620. name: "Front-dressed",
  46621. image: {
  46622. source: "./media/characters/sydney-heki/front-dressed.svg",
  46623. extra: 1360/1300,
  46624. bottom: 22/1382
  46625. }
  46626. },
  46627. },
  46628. [
  46629. {
  46630. name: "Normal",
  46631. height: math.unit(9 + 8/12, "feet"),
  46632. default: true
  46633. },
  46634. {
  46635. name: "Macro",
  46636. height: math.unit(500, "feet")
  46637. },
  46638. {
  46639. name: "Megamacro",
  46640. height: math.unit(3.6, "miles")
  46641. },
  46642. ]
  46643. ))
  46644. characterMakers.push(() => makeCharacter(
  46645. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46646. {
  46647. front: {
  46648. height: math.unit(200, "cm"),
  46649. weight: math.unit(250, "lb"),
  46650. name: "Front",
  46651. image: {
  46652. source: "./media/characters/fowler-karlsson/front.svg",
  46653. extra: 897/845,
  46654. bottom: 123/1020
  46655. }
  46656. },
  46657. back: {
  46658. height: math.unit(200, "cm"),
  46659. weight: math.unit(250, "lb"),
  46660. name: "Back",
  46661. image: {
  46662. source: "./media/characters/fowler-karlsson/back.svg",
  46663. extra: 999/944,
  46664. bottom: 26/1025
  46665. }
  46666. },
  46667. dick: {
  46668. height: math.unit(1.92, "feet"),
  46669. weight: math.unit(150, "lb"),
  46670. name: "Dick",
  46671. image: {
  46672. source: "./media/characters/fowler-karlsson/dick.svg"
  46673. }
  46674. },
  46675. },
  46676. [
  46677. {
  46678. name: "Normal",
  46679. height: math.unit(200, "cm"),
  46680. default: true
  46681. },
  46682. {
  46683. name: "Smaller Macro",
  46684. height: math.unit(90, "m")
  46685. },
  46686. {
  46687. name: "Macro",
  46688. height: math.unit(150, "m")
  46689. },
  46690. {
  46691. name: "Bigger Macro",
  46692. height: math.unit(300, "m")
  46693. },
  46694. ]
  46695. ))
  46696. characterMakers.push(() => makeCharacter(
  46697. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46698. {
  46699. side: {
  46700. height: math.unit(8 + 2/12, "feet"),
  46701. weight: math.unit(1, "tonne"),
  46702. name: "Side",
  46703. image: {
  46704. source: "./media/characters/rylide/side.svg",
  46705. extra: 1318/1034,
  46706. bottom: 106/1424
  46707. }
  46708. },
  46709. sitting: {
  46710. height: math.unit(303, "cm"),
  46711. weight: math.unit(1, "tonne"),
  46712. name: "Sitting",
  46713. image: {
  46714. source: "./media/characters/rylide/sitting.svg",
  46715. extra: 1303/1103,
  46716. bottom: 36/1339
  46717. }
  46718. },
  46719. },
  46720. [
  46721. {
  46722. name: "Normal",
  46723. height: math.unit(8 + 2/12, "feet"),
  46724. default: true
  46725. },
  46726. ]
  46727. ))
  46728. characterMakers.push(() => makeCharacter(
  46729. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46730. {
  46731. front: {
  46732. height: math.unit(5 + 10/12, "feet"),
  46733. weight: math.unit(160, "lb"),
  46734. name: "Front",
  46735. image: {
  46736. source: "./media/characters/pudask/front.svg",
  46737. extra: 1616/1590,
  46738. bottom: 161/1777
  46739. }
  46740. },
  46741. },
  46742. [
  46743. {
  46744. name: "Ferret Height",
  46745. height: math.unit(2 + 5/12, "feet")
  46746. },
  46747. {
  46748. name: "Canon Height",
  46749. height: math.unit(5 + 10/12, "feet"),
  46750. default: true
  46751. },
  46752. ]
  46753. ))
  46754. characterMakers.push(() => makeCharacter(
  46755. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46756. {
  46757. front: {
  46758. height: math.unit(3 + 6/12, "feet"),
  46759. weight: math.unit(60, "lb"),
  46760. name: "Front",
  46761. image: {
  46762. source: "./media/characters/ramita/front.svg",
  46763. extra: 1402/1232,
  46764. bottom: 62/1464
  46765. }
  46766. },
  46767. dressed: {
  46768. height: math.unit(3 + 6/12, "feet"),
  46769. weight: math.unit(60, "lb"),
  46770. name: "Dressed",
  46771. image: {
  46772. source: "./media/characters/ramita/dressed.svg",
  46773. extra: 1534/1249,
  46774. bottom: 50/1584
  46775. }
  46776. },
  46777. },
  46778. [
  46779. {
  46780. name: "Normal",
  46781. height: math.unit(3 + 6/12, "feet"),
  46782. default: true
  46783. },
  46784. ]
  46785. ))
  46786. characterMakers.push(() => makeCharacter(
  46787. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46788. {
  46789. front: {
  46790. height: math.unit(8, "feet"),
  46791. name: "Front",
  46792. image: {
  46793. source: "./media/characters/ark/front.svg",
  46794. extra: 772/693,
  46795. bottom: 45/817
  46796. }
  46797. },
  46798. },
  46799. [
  46800. {
  46801. name: "Normal",
  46802. height: math.unit(8, "feet"),
  46803. default: true
  46804. },
  46805. ]
  46806. ))
  46807. characterMakers.push(() => makeCharacter(
  46808. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46809. {
  46810. front: {
  46811. height: math.unit(6, "feet"),
  46812. weight: math.unit(250, "lb"),
  46813. volume: math.unit(5/8, "gallons"),
  46814. name: "Front",
  46815. image: {
  46816. source: "./media/characters/ludwig-horn/front.svg",
  46817. extra: 1782/1635,
  46818. bottom: 96/1878
  46819. }
  46820. },
  46821. back: {
  46822. height: math.unit(6, "feet"),
  46823. weight: math.unit(250, "lb"),
  46824. volume: math.unit(5/8, "gallons"),
  46825. name: "Back",
  46826. image: {
  46827. source: "./media/characters/ludwig-horn/back.svg",
  46828. extra: 1874/1729,
  46829. bottom: 27/1901
  46830. }
  46831. },
  46832. dick: {
  46833. height: math.unit(1.05, "feet"),
  46834. weight: math.unit(15, "lb"),
  46835. volume: math.unit(5/8, "gallons"),
  46836. name: "Dick",
  46837. image: {
  46838. source: "./media/characters/ludwig-horn/dick.svg"
  46839. }
  46840. },
  46841. },
  46842. [
  46843. {
  46844. name: "Small",
  46845. height: math.unit(6, "feet")
  46846. },
  46847. {
  46848. name: "Typical",
  46849. height: math.unit(12, "feet"),
  46850. default: true
  46851. },
  46852. {
  46853. name: "Building",
  46854. height: math.unit(80, "feet")
  46855. },
  46856. {
  46857. name: "Town",
  46858. height: math.unit(800, "feet")
  46859. },
  46860. {
  46861. name: "Kingdom",
  46862. height: math.unit(80000, "feet")
  46863. },
  46864. {
  46865. name: "Planet",
  46866. height: math.unit(8000000, "feet")
  46867. },
  46868. {
  46869. name: "Universe",
  46870. height: math.unit(8000000000, "feet")
  46871. },
  46872. {
  46873. name: "Transcended",
  46874. height: math.unit(8e27, "feet")
  46875. },
  46876. ]
  46877. ))
  46878. characterMakers.push(() => makeCharacter(
  46879. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46880. {
  46881. front: {
  46882. height: math.unit(5, "feet"),
  46883. weight: math.unit(50, "kg"),
  46884. name: "Front",
  46885. image: {
  46886. source: "./media/characters/biot-avery/front.svg",
  46887. extra: 1295/1232,
  46888. bottom: 86/1381
  46889. }
  46890. },
  46891. },
  46892. [
  46893. {
  46894. name: "Normal",
  46895. height: math.unit(5, "feet"),
  46896. default: true
  46897. },
  46898. ]
  46899. ))
  46900. characterMakers.push(() => makeCharacter(
  46901. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46902. {
  46903. front: {
  46904. height: math.unit(6, "feet"),
  46905. name: "Front",
  46906. image: {
  46907. source: "./media/characters/kitsune-kiro/front.svg",
  46908. extra: 1270/1158,
  46909. bottom: 42/1312
  46910. }
  46911. },
  46912. frontAlt: {
  46913. height: math.unit(6, "feet"),
  46914. name: "Front-alt",
  46915. image: {
  46916. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46917. extra: 1130/1081,
  46918. bottom: 36/1166
  46919. }
  46920. },
  46921. },
  46922. [
  46923. {
  46924. name: "Smol",
  46925. height: math.unit(3, "feet")
  46926. },
  46927. {
  46928. name: "Normal",
  46929. height: math.unit(6, "feet"),
  46930. default: true
  46931. },
  46932. ]
  46933. ))
  46934. characterMakers.push(() => makeCharacter(
  46935. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46936. {
  46937. front: {
  46938. height: math.unit(6, "feet"),
  46939. weight: math.unit(125, "lb"),
  46940. name: "Front",
  46941. image: {
  46942. source: "./media/characters/jack-thatcher/front.svg",
  46943. extra: 1474/1370,
  46944. bottom: 26/1500
  46945. }
  46946. },
  46947. back: {
  46948. height: math.unit(6, "feet"),
  46949. weight: math.unit(125, "lb"),
  46950. name: "Back",
  46951. image: {
  46952. source: "./media/characters/jack-thatcher/back.svg",
  46953. extra: 1489/1384,
  46954. bottom: 18/1507
  46955. }
  46956. },
  46957. },
  46958. [
  46959. {
  46960. name: "Normal",
  46961. height: math.unit(6, "feet"),
  46962. default: true
  46963. },
  46964. {
  46965. name: "Macro",
  46966. height: math.unit(75, "feet")
  46967. },
  46968. {
  46969. name: "Macro-er",
  46970. height: math.unit(250, "feet")
  46971. },
  46972. ]
  46973. ))
  46974. characterMakers.push(() => makeCharacter(
  46975. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46976. {
  46977. front: {
  46978. height: math.unit(7, "feet"),
  46979. weight: math.unit(110, "kg"),
  46980. name: "Front",
  46981. image: {
  46982. source: "./media/characters/max-hyper/front.svg",
  46983. extra: 1969/1881,
  46984. bottom: 49/2018
  46985. }
  46986. },
  46987. },
  46988. [
  46989. {
  46990. name: "Normal",
  46991. height: math.unit(7, "feet"),
  46992. default: true
  46993. },
  46994. ]
  46995. ))
  46996. characterMakers.push(() => makeCharacter(
  46997. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46998. {
  46999. front: {
  47000. height: math.unit(5 + 5/12, "feet"),
  47001. weight: math.unit(160, "lb"),
  47002. name: "Front",
  47003. image: {
  47004. source: "./media/characters/spook/front.svg",
  47005. extra: 794/791,
  47006. bottom: 54/848
  47007. }
  47008. },
  47009. back: {
  47010. height: math.unit(5 + 5/12, "feet"),
  47011. weight: math.unit(160, "lb"),
  47012. name: "Back",
  47013. image: {
  47014. source: "./media/characters/spook/back.svg",
  47015. extra: 812/798,
  47016. bottom: 32/844
  47017. }
  47018. },
  47019. },
  47020. [
  47021. {
  47022. name: "Normal",
  47023. height: math.unit(5 + 5/12, "feet"),
  47024. default: true
  47025. },
  47026. ]
  47027. ))
  47028. characterMakers.push(() => makeCharacter(
  47029. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47030. {
  47031. front: {
  47032. height: math.unit(18, "feet"),
  47033. name: "Front",
  47034. image: {
  47035. source: "./media/characters/xeaduulix/front.svg",
  47036. extra: 1380/1166,
  47037. bottom: 110/1490
  47038. }
  47039. },
  47040. back: {
  47041. height: math.unit(18, "feet"),
  47042. name: "Back",
  47043. image: {
  47044. source: "./media/characters/xeaduulix/back.svg",
  47045. extra: 1592/1170,
  47046. bottom: 128/1720
  47047. }
  47048. },
  47049. frontNsfw: {
  47050. height: math.unit(18, "feet"),
  47051. name: "Front (NSFW)",
  47052. image: {
  47053. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47054. extra: 1380/1166,
  47055. bottom: 110/1490
  47056. }
  47057. },
  47058. backNsfw: {
  47059. height: math.unit(18, "feet"),
  47060. name: "Back (NSFW)",
  47061. image: {
  47062. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47063. extra: 1592/1170,
  47064. bottom: 128/1720
  47065. }
  47066. },
  47067. },
  47068. [
  47069. {
  47070. name: "Normal",
  47071. height: math.unit(18, "feet"),
  47072. default: true
  47073. },
  47074. ]
  47075. ))
  47076. characterMakers.push(() => makeCharacter(
  47077. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47078. {
  47079. spreadWings: {
  47080. height: math.unit(20, "feet"),
  47081. name: "Spread Wings",
  47082. image: {
  47083. source: "./media/characters/fledge/spread-wings.svg",
  47084. extra: 693/635,
  47085. bottom: 26/719
  47086. }
  47087. },
  47088. front: {
  47089. height: math.unit(20, "feet"),
  47090. name: "Front",
  47091. image: {
  47092. source: "./media/characters/fledge/front.svg",
  47093. extra: 684/637,
  47094. bottom: 18/702
  47095. }
  47096. },
  47097. frontAlt: {
  47098. height: math.unit(20, "feet"),
  47099. name: "Front (Alt)",
  47100. image: {
  47101. source: "./media/characters/fledge/front-alt.svg",
  47102. extra: 708/664,
  47103. bottom: 13/721
  47104. }
  47105. },
  47106. back: {
  47107. height: math.unit(20, "feet"),
  47108. name: "Back",
  47109. image: {
  47110. source: "./media/characters/fledge/back.svg",
  47111. extra: 718/634,
  47112. bottom: 22/740
  47113. }
  47114. },
  47115. head: {
  47116. height: math.unit(5.55, "feet"),
  47117. name: "Head",
  47118. image: {
  47119. source: "./media/characters/fledge/head.svg"
  47120. }
  47121. },
  47122. headAlt: {
  47123. height: math.unit(5.1, "feet"),
  47124. name: "Head (Alt)",
  47125. image: {
  47126. source: "./media/characters/fledge/head-alt.svg"
  47127. }
  47128. },
  47129. },
  47130. [
  47131. {
  47132. name: "Small",
  47133. height: math.unit(6 + 2/12, "feet")
  47134. },
  47135. {
  47136. name: "Big",
  47137. height: math.unit(20, "feet"),
  47138. default: true
  47139. },
  47140. {
  47141. name: "Giant",
  47142. height: math.unit(100, "feet")
  47143. },
  47144. {
  47145. name: "Macro",
  47146. height: math.unit(200, "feet")
  47147. },
  47148. ]
  47149. ))
  47150. characterMakers.push(() => makeCharacter(
  47151. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47152. {
  47153. front: {
  47154. height: math.unit(1, "meter"),
  47155. name: "Front",
  47156. image: {
  47157. source: "./media/characters/atlas-morenai/front.svg",
  47158. extra: 1275/1043,
  47159. bottom: 19/1294
  47160. }
  47161. },
  47162. back: {
  47163. height: math.unit(1, "meter"),
  47164. name: "Back",
  47165. image: {
  47166. source: "./media/characters/atlas-morenai/back.svg",
  47167. extra: 1141/1001,
  47168. bottom: 25/1166
  47169. }
  47170. },
  47171. },
  47172. [
  47173. {
  47174. name: "Normal",
  47175. height: math.unit(1, "meter"),
  47176. default: true
  47177. },
  47178. {
  47179. name: "Magic-Infused",
  47180. height: math.unit(5, "meters")
  47181. },
  47182. ]
  47183. ))
  47184. characterMakers.push(() => makeCharacter(
  47185. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47186. {
  47187. front: {
  47188. height: math.unit(5, "meters"),
  47189. name: "Front",
  47190. image: {
  47191. source: "./media/characters/cintia/front.svg",
  47192. extra: 1312/1228,
  47193. bottom: 38/1350
  47194. }
  47195. },
  47196. back: {
  47197. height: math.unit(5, "meters"),
  47198. name: "Back",
  47199. image: {
  47200. source: "./media/characters/cintia/back.svg",
  47201. extra: 1260/1166,
  47202. bottom: 98/1358
  47203. }
  47204. },
  47205. frontDick: {
  47206. height: math.unit(5, "meters"),
  47207. name: "Front (Dick)",
  47208. image: {
  47209. source: "./media/characters/cintia/front-dick.svg",
  47210. extra: 1312/1228,
  47211. bottom: 38/1350
  47212. }
  47213. },
  47214. backDick: {
  47215. height: math.unit(5, "meters"),
  47216. name: "Back (Dick)",
  47217. image: {
  47218. source: "./media/characters/cintia/back-dick.svg",
  47219. extra: 1260/1166,
  47220. bottom: 98/1358
  47221. }
  47222. },
  47223. bust: {
  47224. height: math.unit(1.97, "meters"),
  47225. name: "Bust",
  47226. image: {
  47227. source: "./media/characters/cintia/bust.svg",
  47228. extra: 617/565,
  47229. bottom: 0/617
  47230. }
  47231. },
  47232. },
  47233. [
  47234. {
  47235. name: "Normal",
  47236. height: math.unit(5, "meters"),
  47237. default: true
  47238. },
  47239. ]
  47240. ))
  47241. characterMakers.push(() => makeCharacter(
  47242. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47243. {
  47244. side: {
  47245. height: math.unit(100, "feet"),
  47246. name: "Side",
  47247. image: {
  47248. source: "./media/characters/denora/side.svg",
  47249. extra: 875/803,
  47250. bottom: 9/884
  47251. }
  47252. },
  47253. },
  47254. [
  47255. {
  47256. name: "Standard",
  47257. height: math.unit(100, "feet"),
  47258. default: true
  47259. },
  47260. {
  47261. name: "Grand",
  47262. height: math.unit(1000, "feet")
  47263. },
  47264. {
  47265. name: "Conquering",
  47266. height: math.unit(10000, "feet")
  47267. },
  47268. ]
  47269. ))
  47270. characterMakers.push(() => makeCharacter(
  47271. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47272. {
  47273. dressed: {
  47274. height: math.unit(8 + 5/12, "feet"),
  47275. weight: math.unit(700, "lb"),
  47276. name: "Dressed",
  47277. image: {
  47278. source: "./media/characters/kiva/dressed.svg",
  47279. extra: 1102/1055,
  47280. bottom: 60/1162
  47281. }
  47282. },
  47283. nude: {
  47284. height: math.unit(8 + 5/12, "feet"),
  47285. weight: math.unit(700, "lb"),
  47286. name: "Nude",
  47287. image: {
  47288. source: "./media/characters/kiva/nude.svg",
  47289. extra: 1102/1055,
  47290. bottom: 60/1162
  47291. }
  47292. },
  47293. },
  47294. [
  47295. {
  47296. name: "Base Height",
  47297. height: math.unit(8 + 5/12, "feet"),
  47298. default: true
  47299. },
  47300. {
  47301. name: "Macro",
  47302. height: math.unit(100, "feet")
  47303. },
  47304. {
  47305. name: "Max",
  47306. height: math.unit(3280, "feet")
  47307. },
  47308. ]
  47309. ))
  47310. characterMakers.push(() => makeCharacter(
  47311. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47312. {
  47313. front: {
  47314. height: math.unit(6 + 8/12, "feet"),
  47315. weight: math.unit(250, "lb"),
  47316. name: "Front",
  47317. image: {
  47318. source: "./media/characters/ztragon/front.svg",
  47319. extra: 1825/1684,
  47320. bottom: 98/1923
  47321. }
  47322. },
  47323. },
  47324. [
  47325. {
  47326. name: "Normal",
  47327. height: math.unit(6 + 8/12, "feet"),
  47328. default: true
  47329. },
  47330. {
  47331. name: "Macro",
  47332. height: math.unit(80, "feet")
  47333. },
  47334. ]
  47335. ))
  47336. characterMakers.push(() => makeCharacter(
  47337. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47338. {
  47339. front: {
  47340. height: math.unit(10.4, "feet"),
  47341. weight: math.unit(2, "tons"),
  47342. name: "Front",
  47343. image: {
  47344. source: "./media/characters/yesenia/front.svg",
  47345. extra: 1479/1474,
  47346. bottom: 233/1712
  47347. }
  47348. },
  47349. },
  47350. [
  47351. {
  47352. name: "Normal",
  47353. height: math.unit(10.4, "feet"),
  47354. default: true
  47355. },
  47356. ]
  47357. ))
  47358. characterMakers.push(() => makeCharacter(
  47359. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47360. {
  47361. normal: {
  47362. height: math.unit(6 + 1/12, "feet"),
  47363. weight: math.unit(180, "lb"),
  47364. name: "Normal",
  47365. image: {
  47366. source: "./media/characters/leanne-lycheborne/normal.svg",
  47367. extra: 1748/1660,
  47368. bottom: 98/1846
  47369. }
  47370. },
  47371. were: {
  47372. height: math.unit(12, "feet"),
  47373. weight: math.unit(1600, "lb"),
  47374. name: "Were",
  47375. image: {
  47376. source: "./media/characters/leanne-lycheborne/were.svg",
  47377. extra: 1485/1432,
  47378. bottom: 66/1551
  47379. }
  47380. },
  47381. },
  47382. [
  47383. {
  47384. name: "Normal",
  47385. height: math.unit(6 + 1/12, "feet"),
  47386. default: true
  47387. },
  47388. ]
  47389. ))
  47390. characterMakers.push(() => makeCharacter(
  47391. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47392. {
  47393. side: {
  47394. height: math.unit(13, "feet"),
  47395. name: "Side",
  47396. image: {
  47397. source: "./media/characters/kira-tyler/side.svg",
  47398. extra: 693/393,
  47399. bottom: 58/751
  47400. }
  47401. },
  47402. },
  47403. [
  47404. {
  47405. name: "Normal",
  47406. height: math.unit(13, "feet"),
  47407. default: true
  47408. },
  47409. ]
  47410. ))
  47411. characterMakers.push(() => makeCharacter(
  47412. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47413. {
  47414. front: {
  47415. height: math.unit(10.3, "feet"),
  47416. weight: math.unit(150, "lb"),
  47417. name: "Front",
  47418. image: {
  47419. source: "./media/characters/blaze/front.svg",
  47420. extra: 1378/1286,
  47421. bottom: 172/1550
  47422. }
  47423. },
  47424. },
  47425. [
  47426. {
  47427. name: "Normal",
  47428. height: math.unit(10.3, "feet"),
  47429. default: true
  47430. },
  47431. ]
  47432. ))
  47433. characterMakers.push(() => makeCharacter(
  47434. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47435. {
  47436. side: {
  47437. height: math.unit(2, "meters"),
  47438. weight: math.unit(400, "kg"),
  47439. name: "Side",
  47440. image: {
  47441. source: "./media/characters/anu/side.svg",
  47442. extra: 506/394,
  47443. bottom: 18/524
  47444. }
  47445. },
  47446. },
  47447. [
  47448. {
  47449. name: "Humanoid",
  47450. height: math.unit(2, "meters")
  47451. },
  47452. {
  47453. name: "Normal",
  47454. height: math.unit(5, "meters"),
  47455. default: true
  47456. },
  47457. ]
  47458. ))
  47459. characterMakers.push(() => makeCharacter(
  47460. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47461. {
  47462. front: {
  47463. height: math.unit(5 + 5/12, "feet"),
  47464. weight: math.unit(170, "lb"),
  47465. name: "Front",
  47466. image: {
  47467. source: "./media/characters/synx-the-lynx/front.svg",
  47468. extra: 1893/1745,
  47469. bottom: 17/1910
  47470. }
  47471. },
  47472. side: {
  47473. height: math.unit(5 + 5/12, "feet"),
  47474. weight: math.unit(170, "lb"),
  47475. name: "Side",
  47476. image: {
  47477. source: "./media/characters/synx-the-lynx/side.svg",
  47478. extra: 1884/1740,
  47479. bottom: 39/1923
  47480. }
  47481. },
  47482. back: {
  47483. height: math.unit(5 + 5/12, "feet"),
  47484. weight: math.unit(170, "lb"),
  47485. name: "Back",
  47486. image: {
  47487. source: "./media/characters/synx-the-lynx/back.svg",
  47488. extra: 1903/1755,
  47489. bottom: 14/1917
  47490. }
  47491. },
  47492. },
  47493. [
  47494. {
  47495. name: "Normal",
  47496. height: math.unit(5 + 5/12, "feet"),
  47497. default: true
  47498. },
  47499. ]
  47500. ))
  47501. characterMakers.push(() => makeCharacter(
  47502. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47503. {
  47504. back: {
  47505. height: math.unit(15, "feet"),
  47506. name: "Back",
  47507. image: {
  47508. source: "./media/characters/nadezda-fex/back.svg",
  47509. extra: 1695/1481,
  47510. bottom: 25/1720
  47511. }
  47512. },
  47513. },
  47514. [
  47515. {
  47516. name: "Normal",
  47517. height: math.unit(15, "feet"),
  47518. default: true
  47519. },
  47520. {
  47521. name: "Macro",
  47522. height: math.unit(2.5, "miles")
  47523. },
  47524. {
  47525. name: "Goddess",
  47526. height: math.unit(2, "multiverses")
  47527. },
  47528. ]
  47529. ))
  47530. characterMakers.push(() => makeCharacter(
  47531. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47532. {
  47533. front: {
  47534. height: math.unit(216, "cm"),
  47535. name: "Front",
  47536. image: {
  47537. source: "./media/characters/lev/front.svg",
  47538. extra: 1728/1670,
  47539. bottom: 82/1810
  47540. }
  47541. },
  47542. back: {
  47543. height: math.unit(216, "cm"),
  47544. name: "Back",
  47545. image: {
  47546. source: "./media/characters/lev/back.svg",
  47547. extra: 1738/1675,
  47548. bottom: 24/1762
  47549. }
  47550. },
  47551. dressed: {
  47552. height: math.unit(216, "cm"),
  47553. name: "Dressed",
  47554. image: {
  47555. source: "./media/characters/lev/dressed.svg",
  47556. extra: 1397/1351,
  47557. bottom: 73/1470
  47558. }
  47559. },
  47560. head: {
  47561. height: math.unit(0.51, "meter"),
  47562. name: "Head",
  47563. image: {
  47564. source: "./media/characters/lev/head.svg"
  47565. }
  47566. },
  47567. },
  47568. [
  47569. {
  47570. name: "Normal",
  47571. height: math.unit(216, "cm"),
  47572. default: true
  47573. },
  47574. {
  47575. name: "Relatively Macro",
  47576. height: math.unit(80, "meters")
  47577. },
  47578. {
  47579. name: "Megamacro",
  47580. height: math.unit(21600, "meters")
  47581. },
  47582. {
  47583. name: "Megamacro+",
  47584. height: math.unit(64800, "meters")
  47585. },
  47586. ]
  47587. ))
  47588. characterMakers.push(() => makeCharacter(
  47589. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47590. {
  47591. front: {
  47592. height: math.unit(2, "meters"),
  47593. weight: math.unit(80, "kg"),
  47594. name: "Front",
  47595. image: {
  47596. source: "./media/characters/moka/front.svg",
  47597. extra: 1337/1255,
  47598. bottom: 58/1395
  47599. }
  47600. },
  47601. },
  47602. [
  47603. {
  47604. name: "Micro",
  47605. height: math.unit(15, "cm")
  47606. },
  47607. {
  47608. name: "Normal",
  47609. height: math.unit(2, "meters"),
  47610. default: true
  47611. },
  47612. {
  47613. name: "Macro",
  47614. height: math.unit(20, "meters"),
  47615. },
  47616. ]
  47617. ))
  47618. characterMakers.push(() => makeCharacter(
  47619. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47620. {
  47621. front: {
  47622. height: math.unit(9, "feet"),
  47623. weight: math.unit(240, "lb"),
  47624. name: "Front",
  47625. image: {
  47626. source: "./media/characters/kuzco/front.svg",
  47627. extra: 1593/1487,
  47628. bottom: 32/1625
  47629. }
  47630. },
  47631. side: {
  47632. height: math.unit(9, "feet"),
  47633. weight: math.unit(240, "lb"),
  47634. name: "Side",
  47635. image: {
  47636. source: "./media/characters/kuzco/side.svg",
  47637. extra: 1575/1485,
  47638. bottom: 30/1605
  47639. }
  47640. },
  47641. back: {
  47642. height: math.unit(9, "feet"),
  47643. weight: math.unit(240, "lb"),
  47644. name: "Back",
  47645. image: {
  47646. source: "./media/characters/kuzco/back.svg",
  47647. extra: 1603/1514,
  47648. bottom: 14/1617
  47649. }
  47650. },
  47651. },
  47652. [
  47653. {
  47654. name: "Normal",
  47655. height: math.unit(9, "feet"),
  47656. default: true
  47657. },
  47658. ]
  47659. ))
  47660. characterMakers.push(() => makeCharacter(
  47661. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47662. {
  47663. side: {
  47664. height: math.unit(2, "meters"),
  47665. weight: math.unit(300, "kg"),
  47666. name: "Side",
  47667. image: {
  47668. source: "./media/characters/ceruleus/side.svg",
  47669. extra: 1068/974,
  47670. bottom: 126/1194
  47671. }
  47672. },
  47673. maw: {
  47674. height: math.unit(0.8125, "meter"),
  47675. name: "Maw",
  47676. image: {
  47677. source: "./media/characters/ceruleus/maw.svg"
  47678. }
  47679. },
  47680. },
  47681. [
  47682. {
  47683. name: "Normal",
  47684. height: math.unit(16, "meters"),
  47685. default: true
  47686. },
  47687. ]
  47688. ))
  47689. characterMakers.push(() => makeCharacter(
  47690. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47691. {
  47692. front: {
  47693. height: math.unit(9, "feet"),
  47694. weight: math.unit(500, "kg"),
  47695. name: "Front",
  47696. image: {
  47697. source: "./media/characters/acouya/front.svg",
  47698. extra: 1660/1473,
  47699. bottom: 28/1688
  47700. }
  47701. },
  47702. },
  47703. [
  47704. {
  47705. name: "Normal",
  47706. height: math.unit(9, "feet"),
  47707. default: true
  47708. },
  47709. ]
  47710. ))
  47711. characterMakers.push(() => makeCharacter(
  47712. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47713. {
  47714. front: {
  47715. height: math.unit(5 + 6/12, "feet"),
  47716. weight: math.unit(195, "lb"),
  47717. name: "Front",
  47718. image: {
  47719. source: "./media/characters/vant/front.svg",
  47720. extra: 1396/1320,
  47721. bottom: 20/1416
  47722. }
  47723. },
  47724. back: {
  47725. height: math.unit(5 + 6/12, "feet"),
  47726. weight: math.unit(195, "lb"),
  47727. name: "Back",
  47728. image: {
  47729. source: "./media/characters/vant/back.svg",
  47730. extra: 1396/1320,
  47731. bottom: 20/1416
  47732. }
  47733. },
  47734. maw: {
  47735. height: math.unit(0.75, "feet"),
  47736. name: "Maw",
  47737. image: {
  47738. source: "./media/characters/vant/maw.svg"
  47739. }
  47740. },
  47741. paw: {
  47742. height: math.unit(1.07, "feet"),
  47743. name: "Paw",
  47744. image: {
  47745. source: "./media/characters/vant/paw.svg"
  47746. }
  47747. },
  47748. },
  47749. [
  47750. {
  47751. name: "Micro",
  47752. height: math.unit(0.25, "inches")
  47753. },
  47754. {
  47755. name: "Normal",
  47756. height: math.unit(5 + 6/12, "feet"),
  47757. default: true
  47758. },
  47759. {
  47760. name: "Macro",
  47761. height: math.unit(75, "feet")
  47762. },
  47763. ]
  47764. ))
  47765. characterMakers.push(() => makeCharacter(
  47766. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47767. {
  47768. front: {
  47769. height: math.unit(30, "meters"),
  47770. weight: math.unit(363, "tons"),
  47771. name: "Front",
  47772. image: {
  47773. source: "./media/characters/ahra/front.svg",
  47774. extra: 1914/1814,
  47775. bottom: 46/1960
  47776. }
  47777. },
  47778. },
  47779. [
  47780. {
  47781. name: "Macro",
  47782. height: math.unit(30, "meters"),
  47783. default: true
  47784. },
  47785. ]
  47786. ))
  47787. characterMakers.push(() => makeCharacter(
  47788. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47789. {
  47790. undressed: {
  47791. height: math.unit(2, "m"),
  47792. weight: math.unit(250, "kg"),
  47793. name: "Undressed",
  47794. image: {
  47795. source: "./media/characters/coriander/undressed.svg",
  47796. extra: 1757/1606,
  47797. bottom: 107/1864
  47798. }
  47799. },
  47800. dressed: {
  47801. height: math.unit(2, "m"),
  47802. weight: math.unit(250, "kg"),
  47803. name: "Dressed",
  47804. image: {
  47805. source: "./media/characters/coriander/dressed.svg",
  47806. extra: 1757/1606,
  47807. bottom: 107/1864
  47808. }
  47809. },
  47810. },
  47811. [
  47812. {
  47813. name: "Normal",
  47814. height: math.unit(4, "meters"),
  47815. default: true
  47816. },
  47817. {
  47818. name: "XL",
  47819. height: math.unit(6, "meters")
  47820. },
  47821. {
  47822. name: "XXL",
  47823. height: math.unit(8, "meters")
  47824. },
  47825. ]
  47826. ))
  47827. characterMakers.push(() => makeCharacter(
  47828. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47829. {
  47830. front: {
  47831. height: math.unit(6, "feet"),
  47832. name: "Front",
  47833. image: {
  47834. source: "./media/characters/syrinx/front.svg",
  47835. extra: 1557/1259,
  47836. bottom: 171/1728
  47837. }
  47838. },
  47839. },
  47840. [
  47841. {
  47842. name: "Normal",
  47843. height: math.unit(6 + 3/12, "feet"),
  47844. default: true
  47845. },
  47846. ]
  47847. ))
  47848. characterMakers.push(() => makeCharacter(
  47849. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47850. {
  47851. front: {
  47852. height: math.unit(11 + 6/12, "feet"),
  47853. weight: math.unit(1.5, "tons"),
  47854. name: "Front",
  47855. image: {
  47856. source: "./media/characters/bor/front.svg",
  47857. extra: 1189/1109,
  47858. bottom: 170/1359
  47859. }
  47860. },
  47861. },
  47862. [
  47863. {
  47864. name: "Normal",
  47865. height: math.unit(11 + 6/12, "feet"),
  47866. default: true
  47867. },
  47868. {
  47869. name: "Macro",
  47870. height: math.unit(32 + 9/12, "feet")
  47871. },
  47872. ]
  47873. ))
  47874. characterMakers.push(() => makeCharacter(
  47875. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47876. {
  47877. anthro: {
  47878. height: math.unit(9, "feet"),
  47879. weight: math.unit(2076, "lb"),
  47880. name: "Anthro",
  47881. image: {
  47882. source: "./media/characters/abacus/anthro.svg",
  47883. extra: 1540/1494,
  47884. bottom: 233/1773
  47885. }
  47886. },
  47887. pigeon: {
  47888. height: math.unit(1, "feet"),
  47889. name: "Pigeon",
  47890. image: {
  47891. source: "./media/characters/abacus/pigeon.svg",
  47892. extra: 528/525,
  47893. bottom: 46/574
  47894. }
  47895. },
  47896. },
  47897. [
  47898. {
  47899. name: "Normal",
  47900. height: math.unit(9, "feet"),
  47901. default: true
  47902. },
  47903. ]
  47904. ))
  47905. characterMakers.push(() => makeCharacter(
  47906. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47907. {
  47908. side: {
  47909. height: math.unit(6, "feet"),
  47910. name: "Side",
  47911. image: {
  47912. source: "./media/characters/delkhan/side.svg",
  47913. extra: 1884/1786,
  47914. bottom: 308/2192
  47915. }
  47916. },
  47917. head: {
  47918. height: math.unit(3.38, "feet"),
  47919. name: "Head",
  47920. image: {
  47921. source: "./media/characters/delkhan/head.svg"
  47922. }
  47923. },
  47924. },
  47925. [
  47926. {
  47927. name: "Normal",
  47928. height: math.unit(72, "feet"),
  47929. default: true
  47930. },
  47931. {
  47932. name: "Giant",
  47933. height: math.unit(172, "feet")
  47934. },
  47935. ]
  47936. ))
  47937. characterMakers.push(() => makeCharacter(
  47938. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47939. {
  47940. standing: {
  47941. height: math.unit(6, "feet"),
  47942. name: "Standing",
  47943. image: {
  47944. source: "./media/characters/euchidat/standing.svg",
  47945. extra: 1612/1553,
  47946. bottom: 116/1728
  47947. }
  47948. },
  47949. leaning: {
  47950. height: math.unit(6, "feet"),
  47951. name: "Leaning",
  47952. image: {
  47953. source: "./media/characters/euchidat/leaning.svg",
  47954. extra: 1719/1674,
  47955. bottom: 27/1746
  47956. }
  47957. },
  47958. },
  47959. [
  47960. {
  47961. name: "Normal",
  47962. height: math.unit(175, "feet"),
  47963. default: true
  47964. },
  47965. {
  47966. name: "Megamacro",
  47967. height: math.unit(190, "miles")
  47968. },
  47969. {
  47970. name: "Gigamacro",
  47971. height: math.unit(190000, "miles")
  47972. },
  47973. ]
  47974. ))
  47975. characterMakers.push(() => makeCharacter(
  47976. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47977. {
  47978. front: {
  47979. height: math.unit(6, "feet"),
  47980. weight: math.unit(150, "lb"),
  47981. name: "Front",
  47982. image: {
  47983. source: "./media/characters/rebecca-stack/front.svg",
  47984. extra: 1256/1201,
  47985. bottom: 18/1274
  47986. }
  47987. },
  47988. },
  47989. [
  47990. {
  47991. name: "Normal",
  47992. height: math.unit(5 + 8/12, "feet"),
  47993. default: true
  47994. },
  47995. {
  47996. name: "Demolitionist",
  47997. height: math.unit(200, "feet")
  47998. },
  47999. {
  48000. name: "Out of Control",
  48001. height: math.unit(2, "miles")
  48002. },
  48003. {
  48004. name: "Giga",
  48005. height: math.unit(7200, "miles")
  48006. },
  48007. ]
  48008. ))
  48009. characterMakers.push(() => makeCharacter(
  48010. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48011. {
  48012. front: {
  48013. height: math.unit(6, "feet"),
  48014. weight: math.unit(150, "lb"),
  48015. name: "Front",
  48016. image: {
  48017. source: "./media/characters/jenny-cartwright/front.svg",
  48018. extra: 1384/1376,
  48019. bottom: 58/1442
  48020. }
  48021. },
  48022. },
  48023. [
  48024. {
  48025. name: "Normal",
  48026. height: math.unit(6 + 7/12, "feet"),
  48027. default: true
  48028. },
  48029. {
  48030. name: "Librarian",
  48031. height: math.unit(55, "feet")
  48032. },
  48033. {
  48034. name: "Sightseer",
  48035. height: math.unit(50, "miles")
  48036. },
  48037. {
  48038. name: "Giga",
  48039. height: math.unit(30000, "miles")
  48040. },
  48041. ]
  48042. ))
  48043. characterMakers.push(() => makeCharacter(
  48044. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48045. {
  48046. nude: {
  48047. height: math.unit(8, "feet"),
  48048. weight: math.unit(225, "lb"),
  48049. name: "Nude",
  48050. image: {
  48051. source: "./media/characters/marvy/nude.svg",
  48052. extra: 1900/1683,
  48053. bottom: 89/1989
  48054. }
  48055. },
  48056. dressed: {
  48057. height: math.unit(8, "feet"),
  48058. weight: math.unit(225, "lb"),
  48059. name: "Dressed",
  48060. image: {
  48061. source: "./media/characters/marvy/dressed.svg",
  48062. extra: 1900/1683,
  48063. bottom: 89/1989
  48064. }
  48065. },
  48066. head: {
  48067. height: math.unit(2.85, "feet"),
  48068. name: "Head",
  48069. image: {
  48070. source: "./media/characters/marvy/head.svg"
  48071. }
  48072. },
  48073. },
  48074. [
  48075. {
  48076. name: "Normal",
  48077. height: math.unit(8, "feet"),
  48078. default: true
  48079. },
  48080. ]
  48081. ))
  48082. characterMakers.push(() => makeCharacter(
  48083. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48084. {
  48085. front: {
  48086. height: math.unit(8, "feet"),
  48087. weight: math.unit(250, "lb"),
  48088. name: "Front",
  48089. image: {
  48090. source: "./media/characters/leah/front.svg",
  48091. extra: 1257/1149,
  48092. bottom: 109/1366
  48093. }
  48094. },
  48095. },
  48096. [
  48097. {
  48098. name: "Normal",
  48099. height: math.unit(8, "feet"),
  48100. default: true
  48101. },
  48102. {
  48103. name: "Minimacro",
  48104. height: math.unit(40, "feet")
  48105. },
  48106. {
  48107. name: "Macro",
  48108. height: math.unit(124, "feet")
  48109. },
  48110. {
  48111. name: "Megamacro",
  48112. height: math.unit(850, "feet")
  48113. },
  48114. ]
  48115. ))
  48116. characterMakers.push(() => makeCharacter(
  48117. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48118. {
  48119. side: {
  48120. height: math.unit(13 + 6/12, "feet"),
  48121. weight: math.unit(3200, "lb"),
  48122. name: "Side",
  48123. image: {
  48124. source: "./media/characters/alvir/side.svg",
  48125. extra: 896/589,
  48126. bottom: 26/922
  48127. }
  48128. },
  48129. },
  48130. [
  48131. {
  48132. name: "Normal",
  48133. height: math.unit(13 + 6/12, "feet"),
  48134. default: true
  48135. },
  48136. ]
  48137. ))
  48138. characterMakers.push(() => makeCharacter(
  48139. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48140. {
  48141. front: {
  48142. height: math.unit(5 + 4/12, "feet"),
  48143. weight: math.unit(236, "lb"),
  48144. name: "Front",
  48145. image: {
  48146. source: "./media/characters/zaina-khalil/front.svg",
  48147. extra: 1533/1485,
  48148. bottom: 94/1627
  48149. }
  48150. },
  48151. side: {
  48152. height: math.unit(5 + 4/12, "feet"),
  48153. weight: math.unit(236, "lb"),
  48154. name: "Side",
  48155. image: {
  48156. source: "./media/characters/zaina-khalil/side.svg",
  48157. extra: 1537/1498,
  48158. bottom: 66/1603
  48159. }
  48160. },
  48161. back: {
  48162. height: math.unit(5 + 4/12, "feet"),
  48163. weight: math.unit(236, "lb"),
  48164. name: "Back",
  48165. image: {
  48166. source: "./media/characters/zaina-khalil/back.svg",
  48167. extra: 1546/1494,
  48168. bottom: 89/1635
  48169. }
  48170. },
  48171. },
  48172. [
  48173. {
  48174. name: "Normal",
  48175. height: math.unit(5 + 4/12, "feet"),
  48176. default: true
  48177. },
  48178. ]
  48179. ))
  48180. characterMakers.push(() => makeCharacter(
  48181. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48182. {
  48183. side: {
  48184. height: math.unit(12, "feet"),
  48185. weight: math.unit(4000, "lb"),
  48186. name: "Side",
  48187. image: {
  48188. source: "./media/characters/terry/side.svg",
  48189. extra: 1518/1439,
  48190. bottom: 149/1667
  48191. }
  48192. },
  48193. },
  48194. [
  48195. {
  48196. name: "Normal",
  48197. height: math.unit(12, "feet"),
  48198. default: true
  48199. },
  48200. ]
  48201. ))
  48202. characterMakers.push(() => makeCharacter(
  48203. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48204. {
  48205. front: {
  48206. height: math.unit(12, "feet"),
  48207. weight: math.unit(1500, "lb"),
  48208. name: "Front",
  48209. image: {
  48210. source: "./media/characters/kahea/front.svg",
  48211. extra: 1722/1617,
  48212. bottom: 179/1901
  48213. }
  48214. },
  48215. },
  48216. [
  48217. {
  48218. name: "Normal",
  48219. height: math.unit(12, "feet"),
  48220. default: true
  48221. },
  48222. ]
  48223. ))
  48224. characterMakers.push(() => makeCharacter(
  48225. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48226. {
  48227. demonFront: {
  48228. height: math.unit(36, "feet"),
  48229. name: "Front",
  48230. image: {
  48231. source: "./media/characters/alex-xuria/demon-front.svg",
  48232. extra: 1705/1673,
  48233. bottom: 198/1903
  48234. },
  48235. form: "demon",
  48236. default: true
  48237. },
  48238. demonBack: {
  48239. height: math.unit(36, "feet"),
  48240. name: "Back",
  48241. image: {
  48242. source: "./media/characters/alex-xuria/demon-back.svg",
  48243. extra: 1725/1693,
  48244. bottom: 70/1795
  48245. },
  48246. form: "demon"
  48247. },
  48248. demonHead: {
  48249. height: math.unit(2.14, "meters"),
  48250. name: "Head",
  48251. image: {
  48252. source: "./media/characters/alex-xuria/demon-head.svg"
  48253. },
  48254. form: "demon"
  48255. },
  48256. demonHand: {
  48257. height: math.unit(1.61, "meters"),
  48258. name: "Hand",
  48259. image: {
  48260. source: "./media/characters/alex-xuria/demon-hand.svg"
  48261. },
  48262. form: "demon"
  48263. },
  48264. demonPaw: {
  48265. height: math.unit(1.35, "meters"),
  48266. name: "Paw",
  48267. image: {
  48268. source: "./media/characters/alex-xuria/demon-paw.svg"
  48269. },
  48270. form: "demon"
  48271. },
  48272. demonFoot: {
  48273. height: math.unit(2.2, "meters"),
  48274. name: "Foot",
  48275. image: {
  48276. source: "./media/characters/alex-xuria/demon-foot.svg"
  48277. },
  48278. form: "demon"
  48279. },
  48280. demonCock: {
  48281. height: math.unit(1.74, "meters"),
  48282. name: "Cock",
  48283. image: {
  48284. source: "./media/characters/alex-xuria/demon-cock.svg"
  48285. },
  48286. form: "demon"
  48287. },
  48288. demonTailClosed: {
  48289. height: math.unit(1.47, "meters"),
  48290. name: "Tail (Closed)",
  48291. image: {
  48292. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48293. },
  48294. form: "demon"
  48295. },
  48296. demonTailOpen: {
  48297. height: math.unit(2.85, "meters"),
  48298. name: "Tail (Open)",
  48299. image: {
  48300. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48301. },
  48302. form: "demon"
  48303. },
  48304. incubusFront: {
  48305. height: math.unit(12, "feet"),
  48306. name: "Front",
  48307. image: {
  48308. source: "./media/characters/alex-xuria/incubus-front.svg",
  48309. extra: 1754/1677,
  48310. bottom: 125/1879
  48311. },
  48312. form: "incubus",
  48313. default: true
  48314. },
  48315. incubusBack: {
  48316. height: math.unit(12, "feet"),
  48317. name: "Back",
  48318. image: {
  48319. source: "./media/characters/alex-xuria/incubus-back.svg",
  48320. extra: 1702/1647,
  48321. bottom: 30/1732
  48322. },
  48323. form: "incubus"
  48324. },
  48325. incubusHead: {
  48326. height: math.unit(3.45, "feet"),
  48327. name: "Head",
  48328. image: {
  48329. source: "./media/characters/alex-xuria/incubus-head.svg"
  48330. },
  48331. form: "incubus"
  48332. },
  48333. rabbitFront: {
  48334. height: math.unit(6, "feet"),
  48335. name: "Front",
  48336. image: {
  48337. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48338. extra: 1369/1349,
  48339. bottom: 45/1414
  48340. },
  48341. form: "rabbit",
  48342. default: true
  48343. },
  48344. rabbitSide: {
  48345. height: math.unit(6, "feet"),
  48346. name: "Side",
  48347. image: {
  48348. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48349. extra: 1370/1356,
  48350. bottom: 37/1407
  48351. },
  48352. form: "rabbit"
  48353. },
  48354. rabbitBack: {
  48355. height: math.unit(6, "feet"),
  48356. name: "Back",
  48357. image: {
  48358. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48359. extra: 1375/1358,
  48360. bottom: 43/1418
  48361. },
  48362. form: "rabbit"
  48363. },
  48364. },
  48365. [
  48366. {
  48367. name: "Normal",
  48368. height: math.unit(6, "feet"),
  48369. default: true,
  48370. form: "rabbit"
  48371. },
  48372. {
  48373. name: "Incubus",
  48374. height: math.unit(12, "feet"),
  48375. default: true,
  48376. form: "incubus"
  48377. },
  48378. {
  48379. name: "Demon",
  48380. height: math.unit(36, "feet"),
  48381. default: true,
  48382. form: "demon"
  48383. }
  48384. ],
  48385. {
  48386. "demon": {
  48387. name: "Demon",
  48388. default: true
  48389. },
  48390. "incubus": {
  48391. name: "Incubus",
  48392. },
  48393. "rabbit": {
  48394. name: "Rabbit"
  48395. }
  48396. }
  48397. ))
  48398. characterMakers.push(() => makeCharacter(
  48399. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48400. {
  48401. front: {
  48402. height: math.unit(7 + 5/12, "feet"),
  48403. weight: math.unit(510, "lb"),
  48404. name: "Front",
  48405. image: {
  48406. source: "./media/characters/syrup/front.svg",
  48407. extra: 932/916,
  48408. bottom: 26/958
  48409. }
  48410. },
  48411. },
  48412. [
  48413. {
  48414. name: "Normal",
  48415. height: math.unit(7 + 5/12, "feet"),
  48416. default: true
  48417. },
  48418. {
  48419. name: "Big",
  48420. height: math.unit(50, "feet")
  48421. },
  48422. {
  48423. name: "Macro",
  48424. height: math.unit(300, "feet")
  48425. },
  48426. {
  48427. name: "Megamacro",
  48428. height: math.unit(1, "mile")
  48429. },
  48430. ]
  48431. ))
  48432. characterMakers.push(() => makeCharacter(
  48433. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48434. {
  48435. front: {
  48436. height: math.unit(6 + 9/12, "feet"),
  48437. name: "Front",
  48438. image: {
  48439. source: "./media/characters/zeimne/front.svg",
  48440. extra: 1969/1806,
  48441. bottom: 53/2022
  48442. }
  48443. },
  48444. },
  48445. [
  48446. {
  48447. name: "Normal",
  48448. height: math.unit(6 + 9/12, "feet"),
  48449. default: true
  48450. },
  48451. {
  48452. name: "Giant",
  48453. height: math.unit(550, "feet")
  48454. },
  48455. {
  48456. name: "Mega",
  48457. height: math.unit(3, "miles")
  48458. },
  48459. {
  48460. name: "Giga",
  48461. height: math.unit(250, "miles")
  48462. },
  48463. {
  48464. name: "Tera",
  48465. height: math.unit(1, "AU")
  48466. },
  48467. ]
  48468. ))
  48469. characterMakers.push(() => makeCharacter(
  48470. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48471. {
  48472. front: {
  48473. height: math.unit(5 + 2/12, "feet"),
  48474. name: "Front",
  48475. image: {
  48476. source: "./media/characters/grar/front.svg",
  48477. extra: 1331/1119,
  48478. bottom: 60/1391
  48479. }
  48480. },
  48481. back: {
  48482. height: math.unit(5 + 2/12, "feet"),
  48483. name: "Back",
  48484. image: {
  48485. source: "./media/characters/grar/back.svg",
  48486. extra: 1385/1169,
  48487. bottom: 23/1408
  48488. }
  48489. },
  48490. },
  48491. [
  48492. {
  48493. name: "Normal",
  48494. height: math.unit(5 + 2/12, "feet"),
  48495. default: true
  48496. },
  48497. ]
  48498. ))
  48499. characterMakers.push(() => makeCharacter(
  48500. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48501. {
  48502. front: {
  48503. height: math.unit(13 + 7/12, "feet"),
  48504. weight: math.unit(2200, "lb"),
  48505. name: "Front",
  48506. image: {
  48507. source: "./media/characters/endraya/front.svg",
  48508. extra: 1289/1215,
  48509. bottom: 50/1339
  48510. }
  48511. },
  48512. nude: {
  48513. height: math.unit(13 + 7/12, "feet"),
  48514. weight: math.unit(2200, "lb"),
  48515. name: "Nude",
  48516. image: {
  48517. source: "./media/characters/endraya/nude.svg",
  48518. extra: 1247/1171,
  48519. bottom: 40/1287
  48520. }
  48521. },
  48522. head: {
  48523. height: math.unit(2.6, "feet"),
  48524. name: "Head",
  48525. image: {
  48526. source: "./media/characters/endraya/head.svg"
  48527. }
  48528. },
  48529. slit: {
  48530. height: math.unit(3.4, "feet"),
  48531. name: "Slit",
  48532. image: {
  48533. source: "./media/characters/endraya/slit.svg"
  48534. }
  48535. },
  48536. },
  48537. [
  48538. {
  48539. name: "Normal",
  48540. height: math.unit(13 + 7/12, "feet"),
  48541. default: true
  48542. },
  48543. {
  48544. name: "Macro",
  48545. height: math.unit(200, "feet")
  48546. },
  48547. ]
  48548. ))
  48549. characterMakers.push(() => makeCharacter(
  48550. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48551. {
  48552. front: {
  48553. height: math.unit(1.81, "meters"),
  48554. weight: math.unit(69, "kg"),
  48555. name: "Front",
  48556. image: {
  48557. source: "./media/characters/rodryana/front.svg",
  48558. extra: 2002/1921,
  48559. bottom: 53/2055
  48560. }
  48561. },
  48562. back: {
  48563. height: math.unit(1.81, "meters"),
  48564. weight: math.unit(69, "kg"),
  48565. name: "Back",
  48566. image: {
  48567. source: "./media/characters/rodryana/back.svg",
  48568. extra: 1993/1926,
  48569. bottom: 48/2041
  48570. }
  48571. },
  48572. maw: {
  48573. height: math.unit(0.19769417475, "meters"),
  48574. name: "Maw",
  48575. image: {
  48576. source: "./media/characters/rodryana/maw.svg"
  48577. }
  48578. },
  48579. slit: {
  48580. height: math.unit(0.31631067961, "meters"),
  48581. name: "Slit",
  48582. image: {
  48583. source: "./media/characters/rodryana/slit.svg"
  48584. }
  48585. },
  48586. },
  48587. [
  48588. {
  48589. name: "Normal",
  48590. height: math.unit(1.81, "meters")
  48591. },
  48592. {
  48593. name: "Mini Macro",
  48594. height: math.unit(181, "meters")
  48595. },
  48596. {
  48597. name: "Macro",
  48598. height: math.unit(452, "meters"),
  48599. default: true
  48600. },
  48601. {
  48602. name: "Mega Macro",
  48603. height: math.unit(1.375, "km")
  48604. },
  48605. {
  48606. name: "Giga Macro",
  48607. height: math.unit(13.575, "km")
  48608. },
  48609. ]
  48610. ))
  48611. characterMakers.push(() => makeCharacter(
  48612. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48613. {
  48614. front: {
  48615. height: math.unit(6, "feet"),
  48616. weight: math.unit(1000, "lb"),
  48617. name: "Front",
  48618. image: {
  48619. source: "./media/characters/asaya/front.svg",
  48620. extra: 1460/1200,
  48621. bottom: 71/1531
  48622. }
  48623. },
  48624. },
  48625. [
  48626. {
  48627. name: "Normal",
  48628. height: math.unit(8, "km"),
  48629. default: true
  48630. },
  48631. ]
  48632. ))
  48633. characterMakers.push(() => makeCharacter(
  48634. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48635. {
  48636. front: {
  48637. height: math.unit(3.5, "meters"),
  48638. name: "Front",
  48639. image: {
  48640. source: "./media/characters/sarzu-and-israz/front.svg",
  48641. extra: 1570/1558,
  48642. bottom: 150/1720
  48643. },
  48644. },
  48645. back: {
  48646. height: math.unit(3.5, "meters"),
  48647. name: "Back",
  48648. image: {
  48649. source: "./media/characters/sarzu-and-israz/back.svg",
  48650. extra: 1523/1509,
  48651. bottom: 132/1655
  48652. },
  48653. },
  48654. frontFemale: {
  48655. height: math.unit(3.5, "meters"),
  48656. name: "Front (Female)",
  48657. image: {
  48658. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48659. extra: 1570/1558,
  48660. bottom: 150/1720
  48661. },
  48662. },
  48663. frontHerm: {
  48664. height: math.unit(3.5, "meters"),
  48665. name: "Front (Herm)",
  48666. image: {
  48667. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48668. extra: 1570/1558,
  48669. bottom: 150/1720
  48670. },
  48671. },
  48672. },
  48673. [
  48674. {
  48675. name: "Normal",
  48676. height: math.unit(3.5, "meters"),
  48677. default: true,
  48678. },
  48679. {
  48680. name: "Macro",
  48681. height: math.unit(65.5, "meters"),
  48682. },
  48683. ],
  48684. ))
  48685. characterMakers.push(() => makeCharacter(
  48686. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48687. {
  48688. front: {
  48689. height: math.unit(6, "feet"),
  48690. weight: math.unit(250, "lb"),
  48691. name: "Front",
  48692. image: {
  48693. source: "./media/characters/zenimma/front.svg",
  48694. extra: 1346/1320,
  48695. bottom: 58/1404
  48696. }
  48697. },
  48698. back: {
  48699. height: math.unit(6, "feet"),
  48700. weight: math.unit(250, "lb"),
  48701. name: "Back",
  48702. image: {
  48703. source: "./media/characters/zenimma/back.svg",
  48704. extra: 1324/1308,
  48705. bottom: 44/1368
  48706. }
  48707. },
  48708. dick: {
  48709. height: math.unit(1.44, "feet"),
  48710. name: "Dick",
  48711. image: {
  48712. source: "./media/characters/zenimma/dick.svg"
  48713. }
  48714. },
  48715. },
  48716. [
  48717. {
  48718. name: "Canon Height",
  48719. height: math.unit(66, "miles"),
  48720. default: true
  48721. },
  48722. ]
  48723. ))
  48724. characterMakers.push(() => makeCharacter(
  48725. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48726. {
  48727. nude: {
  48728. height: math.unit(6, "feet"),
  48729. weight: math.unit(150, "lb"),
  48730. name: "Nude",
  48731. image: {
  48732. source: "./media/characters/shavon/nude.svg",
  48733. extra: 1242/1096,
  48734. bottom: 98/1340
  48735. }
  48736. },
  48737. dressed: {
  48738. height: math.unit(6, "feet"),
  48739. weight: math.unit(150, "lb"),
  48740. name: "Dressed",
  48741. image: {
  48742. source: "./media/characters/shavon/dressed.svg",
  48743. extra: 1242/1096,
  48744. bottom: 98/1340
  48745. }
  48746. },
  48747. },
  48748. [
  48749. {
  48750. name: "Macro",
  48751. height: math.unit(255, "feet"),
  48752. default: true
  48753. },
  48754. ]
  48755. ))
  48756. characterMakers.push(() => makeCharacter(
  48757. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48758. {
  48759. front: {
  48760. height: math.unit(6, "feet"),
  48761. name: "Front",
  48762. image: {
  48763. source: "./media/characters/steph/front.svg",
  48764. extra: 1430/1330,
  48765. bottom: 54/1484
  48766. }
  48767. },
  48768. },
  48769. [
  48770. {
  48771. name: "Normal",
  48772. height: math.unit(6, "feet"),
  48773. default: true
  48774. },
  48775. ]
  48776. ))
  48777. characterMakers.push(() => makeCharacter(
  48778. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48779. {
  48780. front: {
  48781. height: math.unit(9, "feet"),
  48782. weight: math.unit(400, "lb"),
  48783. name: "Front",
  48784. image: {
  48785. source: "./media/characters/kil'aman/front.svg",
  48786. extra: 1210/1159,
  48787. bottom: 109/1319
  48788. }
  48789. },
  48790. head: {
  48791. height: math.unit(2.14, "feet"),
  48792. name: "Head",
  48793. image: {
  48794. source: "./media/characters/kil'aman/head.svg"
  48795. }
  48796. },
  48797. maw: {
  48798. height: math.unit(1.21, "feet"),
  48799. name: "Maw",
  48800. image: {
  48801. source: "./media/characters/kil'aman/maw.svg"
  48802. }
  48803. },
  48804. foot: {
  48805. height: math.unit(1.7, "feet"),
  48806. name: "Foot",
  48807. image: {
  48808. source: "./media/characters/kil'aman/foot.svg"
  48809. }
  48810. },
  48811. dick: {
  48812. height: math.unit(2.1, "feet"),
  48813. name: "Dick",
  48814. image: {
  48815. source: "./media/characters/kil'aman/dick.svg"
  48816. }
  48817. },
  48818. },
  48819. [
  48820. {
  48821. name: "Normal",
  48822. height: math.unit(9, "feet")
  48823. },
  48824. {
  48825. name: "Canon Height",
  48826. height: math.unit(10, "miles"),
  48827. default: true
  48828. },
  48829. {
  48830. name: "Maximum",
  48831. height: math.unit(6e9, "miles")
  48832. },
  48833. ]
  48834. ))
  48835. characterMakers.push(() => makeCharacter(
  48836. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48837. {
  48838. front: {
  48839. height: math.unit(90, "feet"),
  48840. weight: math.unit(675000, "lb"),
  48841. name: "Front",
  48842. image: {
  48843. source: "./media/characters/qadan/front.svg",
  48844. extra: 1012/1004,
  48845. bottom: 78/1090
  48846. }
  48847. },
  48848. back: {
  48849. height: math.unit(90, "feet"),
  48850. weight: math.unit(675000, "lb"),
  48851. name: "Back",
  48852. image: {
  48853. source: "./media/characters/qadan/back.svg",
  48854. extra: 1042/1031,
  48855. bottom: 55/1097
  48856. }
  48857. },
  48858. armored: {
  48859. height: math.unit(90, "feet"),
  48860. weight: math.unit(675000, "lb"),
  48861. name: "Armored",
  48862. image: {
  48863. source: "./media/characters/qadan/armored.svg",
  48864. extra: 1047/1037,
  48865. bottom: 48/1095
  48866. }
  48867. },
  48868. },
  48869. [
  48870. {
  48871. name: "Normal",
  48872. height: math.unit(90, "feet"),
  48873. default: true
  48874. },
  48875. ]
  48876. ))
  48877. characterMakers.push(() => makeCharacter(
  48878. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48879. {
  48880. front: {
  48881. height: math.unit(6, "feet"),
  48882. weight: math.unit(225, "lb"),
  48883. name: "Front",
  48884. image: {
  48885. source: "./media/characters/brooke/front.svg",
  48886. extra: 1050/1010,
  48887. bottom: 66/1116
  48888. }
  48889. },
  48890. back: {
  48891. height: math.unit(6, "feet"),
  48892. weight: math.unit(225, "lb"),
  48893. name: "Back",
  48894. image: {
  48895. source: "./media/characters/brooke/back.svg",
  48896. extra: 1053/1013,
  48897. bottom: 41/1094
  48898. }
  48899. },
  48900. dressed: {
  48901. height: math.unit(6, "feet"),
  48902. weight: math.unit(225, "lb"),
  48903. name: "Dressed",
  48904. image: {
  48905. source: "./media/characters/brooke/dressed.svg",
  48906. extra: 1050/1010,
  48907. bottom: 66/1116
  48908. }
  48909. },
  48910. },
  48911. [
  48912. {
  48913. name: "Canon Height",
  48914. height: math.unit(500, "miles"),
  48915. default: true
  48916. },
  48917. ]
  48918. ))
  48919. characterMakers.push(() => makeCharacter(
  48920. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48921. {
  48922. front: {
  48923. height: math.unit(6 + 2/12, "feet"),
  48924. weight: math.unit(210, "lb"),
  48925. name: "Front",
  48926. image: {
  48927. source: "./media/characters/wubs/front.svg",
  48928. extra: 1345/1325,
  48929. bottom: 70/1415
  48930. }
  48931. },
  48932. back: {
  48933. height: math.unit(6 + 2/12, "feet"),
  48934. weight: math.unit(210, "lb"),
  48935. name: "Back",
  48936. image: {
  48937. source: "./media/characters/wubs/back.svg",
  48938. extra: 1296/1275,
  48939. bottom: 58/1354
  48940. }
  48941. },
  48942. },
  48943. [
  48944. {
  48945. name: "Normal",
  48946. height: math.unit(6 + 2/12, "feet"),
  48947. default: true
  48948. },
  48949. {
  48950. name: "Macro",
  48951. height: math.unit(1000, "feet")
  48952. },
  48953. {
  48954. name: "Megamacro",
  48955. height: math.unit(1, "mile")
  48956. },
  48957. ]
  48958. ))
  48959. characterMakers.push(() => makeCharacter(
  48960. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48961. {
  48962. front: {
  48963. height: math.unit(4, "feet"),
  48964. weight: math.unit(120, "lb"),
  48965. name: "Front",
  48966. image: {
  48967. source: "./media/characters/blue/front.svg",
  48968. extra: 1636/1525,
  48969. bottom: 43/1679
  48970. }
  48971. },
  48972. back: {
  48973. height: math.unit(4, "feet"),
  48974. weight: math.unit(120, "lb"),
  48975. name: "Back",
  48976. image: {
  48977. source: "./media/characters/blue/back.svg",
  48978. extra: 1660/1560,
  48979. bottom: 57/1717
  48980. }
  48981. },
  48982. paws: {
  48983. height: math.unit(0.826, "feet"),
  48984. name: "Paws",
  48985. image: {
  48986. source: "./media/characters/blue/paws.svg"
  48987. }
  48988. },
  48989. },
  48990. [
  48991. {
  48992. name: "Micro",
  48993. height: math.unit(3, "inches")
  48994. },
  48995. {
  48996. name: "Normal",
  48997. height: math.unit(4, "feet"),
  48998. default: true
  48999. },
  49000. {
  49001. name: "Femenine Form",
  49002. height: math.unit(14, "feet")
  49003. },
  49004. {
  49005. name: "Werebat Form",
  49006. height: math.unit(18, "feet")
  49007. },
  49008. ]
  49009. ))
  49010. characterMakers.push(() => makeCharacter(
  49011. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49012. {
  49013. female: {
  49014. height: math.unit(7 + 4/12, "feet"),
  49015. weight: math.unit(243, "lb"),
  49016. name: "Female",
  49017. image: {
  49018. source: "./media/characters/kaya/female.svg",
  49019. extra: 975/898,
  49020. bottom: 34/1009
  49021. }
  49022. },
  49023. herm: {
  49024. height: math.unit(7 + 4/12, "feet"),
  49025. weight: math.unit(243, "lb"),
  49026. name: "Herm",
  49027. image: {
  49028. source: "./media/characters/kaya/herm.svg",
  49029. extra: 975/898,
  49030. bottom: 34/1009
  49031. }
  49032. },
  49033. },
  49034. [
  49035. {
  49036. name: "Normal",
  49037. height: math.unit(7 + 4/12, "feet"),
  49038. default: true
  49039. },
  49040. ]
  49041. ))
  49042. characterMakers.push(() => makeCharacter(
  49043. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49044. {
  49045. female: {
  49046. height: math.unit(9 + 4/12, "feet"),
  49047. weight: math.unit(398, "lb"),
  49048. name: "Female",
  49049. image: {
  49050. source: "./media/characters/kassandra/female.svg",
  49051. extra: 908/839,
  49052. bottom: 61/969
  49053. }
  49054. },
  49055. intersex: {
  49056. height: math.unit(9 + 4/12, "feet"),
  49057. weight: math.unit(398, "lb"),
  49058. name: "Intersex",
  49059. image: {
  49060. source: "./media/characters/kassandra/intersex.svg",
  49061. extra: 908/839,
  49062. bottom: 61/969
  49063. }
  49064. },
  49065. },
  49066. [
  49067. {
  49068. name: "Normal",
  49069. height: math.unit(9 + 4/12, "feet"),
  49070. default: true
  49071. },
  49072. ]
  49073. ))
  49074. characterMakers.push(() => makeCharacter(
  49075. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49076. {
  49077. front: {
  49078. height: math.unit(3, "meters"),
  49079. name: "Front",
  49080. image: {
  49081. source: "./media/characters/amy/front.svg",
  49082. extra: 1380/1343,
  49083. bottom: 70/1450
  49084. }
  49085. },
  49086. back: {
  49087. height: math.unit(3, "meters"),
  49088. name: "Back",
  49089. image: {
  49090. source: "./media/characters/amy/back.svg",
  49091. extra: 1380/1347,
  49092. bottom: 66/1446
  49093. }
  49094. },
  49095. },
  49096. [
  49097. {
  49098. name: "Normal",
  49099. height: math.unit(3, "meters"),
  49100. default: true
  49101. },
  49102. ]
  49103. ))
  49104. characterMakers.push(() => makeCharacter(
  49105. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49106. {
  49107. side: {
  49108. height: math.unit(47, "cm"),
  49109. weight: math.unit(10.8, "kg"),
  49110. name: "Side",
  49111. image: {
  49112. source: "./media/characters/alphaschakal/side.svg",
  49113. extra: 1058/568,
  49114. bottom: 62/1120
  49115. }
  49116. },
  49117. back: {
  49118. height: math.unit(78, "cm"),
  49119. weight: math.unit(10.8, "kg"),
  49120. name: "Back",
  49121. image: {
  49122. source: "./media/characters/alphaschakal/back.svg",
  49123. extra: 1102/942,
  49124. bottom: 185/1287
  49125. }
  49126. },
  49127. head: {
  49128. height: math.unit(28, "cm"),
  49129. name: "Head",
  49130. image: {
  49131. source: "./media/characters/alphaschakal/head.svg",
  49132. extra: 696/508,
  49133. bottom: 0/696
  49134. }
  49135. },
  49136. paw: {
  49137. height: math.unit(16, "cm"),
  49138. name: "Paw",
  49139. image: {
  49140. source: "./media/characters/alphaschakal/paw.svg"
  49141. }
  49142. },
  49143. },
  49144. [
  49145. {
  49146. name: "Normal",
  49147. height: math.unit(47, "cm"),
  49148. default: true
  49149. },
  49150. {
  49151. name: "Macro",
  49152. height: math.unit(340, "cm")
  49153. },
  49154. ]
  49155. ))
  49156. characterMakers.push(() => makeCharacter(
  49157. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49158. {
  49159. front: {
  49160. height: math.unit(36, "earths"),
  49161. name: "Front",
  49162. image: {
  49163. source: "./media/characters/ecobyss/front.svg",
  49164. extra: 1282/1215,
  49165. bottom: 11/1293
  49166. }
  49167. },
  49168. back: {
  49169. height: math.unit(36, "earths"),
  49170. name: "Back",
  49171. image: {
  49172. source: "./media/characters/ecobyss/back.svg",
  49173. extra: 1291/1222,
  49174. bottom: 8/1299
  49175. }
  49176. },
  49177. },
  49178. [
  49179. {
  49180. name: "Normal",
  49181. height: math.unit(36, "earths"),
  49182. default: true
  49183. },
  49184. ]
  49185. ))
  49186. characterMakers.push(() => makeCharacter(
  49187. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49188. {
  49189. front: {
  49190. height: math.unit(12, "feet"),
  49191. name: "Front",
  49192. image: {
  49193. source: "./media/characters/vasuk/front.svg",
  49194. extra: 1326/1207,
  49195. bottom: 64/1390
  49196. }
  49197. },
  49198. },
  49199. [
  49200. {
  49201. name: "Normal",
  49202. height: math.unit(12, "feet"),
  49203. default: true
  49204. },
  49205. ]
  49206. ))
  49207. characterMakers.push(() => makeCharacter(
  49208. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49209. {
  49210. side: {
  49211. height: math.unit(100, "feet"),
  49212. name: "Side",
  49213. image: {
  49214. source: "./media/characters/linneaus/side.svg",
  49215. extra: 987/807,
  49216. bottom: 47/1034
  49217. }
  49218. },
  49219. },
  49220. [
  49221. {
  49222. name: "Macro",
  49223. height: math.unit(100, "feet"),
  49224. default: true
  49225. },
  49226. ]
  49227. ))
  49228. characterMakers.push(() => makeCharacter(
  49229. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49230. {
  49231. front: {
  49232. height: math.unit(8, "feet"),
  49233. weight: math.unit(1200, "lb"),
  49234. name: "Front",
  49235. image: {
  49236. source: "./media/characters/nyterious-daligdig/front.svg",
  49237. extra: 1284/1094,
  49238. bottom: 84/1368
  49239. }
  49240. },
  49241. back: {
  49242. height: math.unit(8, "feet"),
  49243. weight: math.unit(1200, "lb"),
  49244. name: "Back",
  49245. image: {
  49246. source: "./media/characters/nyterious-daligdig/back.svg",
  49247. extra: 1301/1121,
  49248. bottom: 129/1430
  49249. }
  49250. },
  49251. mouth: {
  49252. height: math.unit(1.464, "feet"),
  49253. name: "Mouth",
  49254. image: {
  49255. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49256. }
  49257. },
  49258. },
  49259. [
  49260. {
  49261. name: "Small",
  49262. height: math.unit(8, "feet"),
  49263. default: true
  49264. },
  49265. {
  49266. name: "Normal",
  49267. height: math.unit(15, "feet")
  49268. },
  49269. {
  49270. name: "Macro",
  49271. height: math.unit(90, "feet")
  49272. },
  49273. ]
  49274. ))
  49275. characterMakers.push(() => makeCharacter(
  49276. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49277. {
  49278. front: {
  49279. height: math.unit(7 + 4/12, "feet"),
  49280. weight: math.unit(252, "lb"),
  49281. name: "Front",
  49282. image: {
  49283. source: "./media/characters/bandel/front.svg",
  49284. extra: 1946/1775,
  49285. bottom: 26/1972
  49286. }
  49287. },
  49288. back: {
  49289. height: math.unit(7 + 4/12, "feet"),
  49290. weight: math.unit(252, "lb"),
  49291. name: "Back",
  49292. image: {
  49293. source: "./media/characters/bandel/back.svg",
  49294. extra: 1940/1770,
  49295. bottom: 25/1965
  49296. }
  49297. },
  49298. maw: {
  49299. height: math.unit(2.15, "feet"),
  49300. name: "Maw",
  49301. image: {
  49302. source: "./media/characters/bandel/maw.svg"
  49303. }
  49304. },
  49305. stomach: {
  49306. height: math.unit(1.95, "feet"),
  49307. name: "Stomach",
  49308. image: {
  49309. source: "./media/characters/bandel/stomach.svg"
  49310. }
  49311. },
  49312. },
  49313. [
  49314. {
  49315. name: "Normal",
  49316. height: math.unit(7 + 4/12, "feet"),
  49317. default: true
  49318. },
  49319. ]
  49320. ))
  49321. characterMakers.push(() => makeCharacter(
  49322. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49323. {
  49324. front: {
  49325. height: math.unit(10 + 5/12, "feet"),
  49326. weight: math.unit(773.5, "kg"),
  49327. name: "Front",
  49328. image: {
  49329. source: "./media/characters/zed/front.svg",
  49330. extra: 987/941,
  49331. bottom: 52/1039
  49332. }
  49333. },
  49334. },
  49335. [
  49336. {
  49337. name: "Short",
  49338. height: math.unit(5 + 4/12, "feet")
  49339. },
  49340. {
  49341. name: "Average",
  49342. height: math.unit(10 + 5/12, "feet"),
  49343. default: true
  49344. },
  49345. {
  49346. name: "Mini-Macro",
  49347. height: math.unit(24 + 9/12, "feet")
  49348. },
  49349. {
  49350. name: "Macro",
  49351. height: math.unit(249, "feet")
  49352. },
  49353. {
  49354. name: "Mega-Macro",
  49355. height: math.unit(12490, "feet")
  49356. },
  49357. {
  49358. name: "Giga-Macro",
  49359. height: math.unit(24.9, "miles")
  49360. },
  49361. {
  49362. name: "Tera-Macro",
  49363. height: math.unit(24900, "miles")
  49364. },
  49365. {
  49366. name: "Cosmic Scale",
  49367. height: math.unit(38.9, "lightyears")
  49368. },
  49369. {
  49370. name: "Universal Scale",
  49371. height: math.unit(138e12, "lightyears")
  49372. },
  49373. ]
  49374. ))
  49375. characterMakers.push(() => makeCharacter(
  49376. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49377. {
  49378. front: {
  49379. height: math.unit(1561, "inches"),
  49380. name: "Front",
  49381. image: {
  49382. source: "./media/characters/ivan/front.svg",
  49383. extra: 1126/1071,
  49384. bottom: 26/1152
  49385. }
  49386. },
  49387. back: {
  49388. height: math.unit(1561, "inches"),
  49389. name: "Back",
  49390. image: {
  49391. source: "./media/characters/ivan/back.svg",
  49392. extra: 1134/1079,
  49393. bottom: 30/1164
  49394. }
  49395. },
  49396. },
  49397. [
  49398. {
  49399. name: "Normal",
  49400. height: math.unit(1561, "inches"),
  49401. default: true
  49402. },
  49403. ]
  49404. ))
  49405. characterMakers.push(() => makeCharacter(
  49406. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49407. {
  49408. front: {
  49409. height: math.unit(5 + 7/12, "feet"),
  49410. weight: math.unit(150, "lb"),
  49411. name: "Front",
  49412. image: {
  49413. source: "./media/characters/robin-arctic-hare/front.svg",
  49414. extra: 1148/974,
  49415. bottom: 20/1168
  49416. }
  49417. },
  49418. },
  49419. [
  49420. {
  49421. name: "Normal",
  49422. height: math.unit(5 + 7/12, "feet"),
  49423. default: true
  49424. },
  49425. ]
  49426. ))
  49427. characterMakers.push(() => makeCharacter(
  49428. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49429. {
  49430. side: {
  49431. height: math.unit(5, "feet"),
  49432. name: "Side",
  49433. image: {
  49434. source: "./media/characters/birch/side.svg",
  49435. extra: 985/796,
  49436. bottom: 111/1096
  49437. }
  49438. },
  49439. },
  49440. [
  49441. {
  49442. name: "Normal",
  49443. height: math.unit(5, "feet"),
  49444. default: true
  49445. },
  49446. ]
  49447. ))
  49448. characterMakers.push(() => makeCharacter(
  49449. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49450. {
  49451. front: {
  49452. height: math.unit(4, "feet"),
  49453. name: "Front",
  49454. image: {
  49455. source: "./media/characters/rasp/front.svg",
  49456. extra: 561/478,
  49457. bottom: 74/635
  49458. }
  49459. },
  49460. },
  49461. [
  49462. {
  49463. name: "Normal",
  49464. height: math.unit(4, "feet"),
  49465. default: true
  49466. },
  49467. ]
  49468. ))
  49469. characterMakers.push(() => makeCharacter(
  49470. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49471. {
  49472. front: {
  49473. height: math.unit(4 + 6/12, "feet"),
  49474. name: "Front",
  49475. image: {
  49476. source: "./media/characters/agatha/front.svg",
  49477. extra: 947/933,
  49478. bottom: 42/989
  49479. }
  49480. },
  49481. back: {
  49482. height: math.unit(4 + 6/12, "feet"),
  49483. name: "Back",
  49484. image: {
  49485. source: "./media/characters/agatha/back.svg",
  49486. extra: 935/922,
  49487. bottom: 48/983
  49488. }
  49489. },
  49490. },
  49491. [
  49492. {
  49493. name: "Normal",
  49494. height: math.unit(4 + 6 /12, "feet"),
  49495. default: true
  49496. },
  49497. {
  49498. name: "Max Size",
  49499. height: math.unit(500, "feet")
  49500. },
  49501. ]
  49502. ))
  49503. characterMakers.push(() => makeCharacter(
  49504. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49505. {
  49506. side: {
  49507. height: math.unit(30, "feet"),
  49508. name: "Side",
  49509. image: {
  49510. source: "./media/characters/roggy/side.svg",
  49511. extra: 909/643,
  49512. bottom: 63/972
  49513. }
  49514. },
  49515. lounging: {
  49516. height: math.unit(20, "feet"),
  49517. name: "Lounging",
  49518. image: {
  49519. source: "./media/characters/roggy/lounging.svg",
  49520. extra: 643/479,
  49521. bottom: 145/788
  49522. }
  49523. },
  49524. handpaw: {
  49525. height: math.unit(13.1, "feet"),
  49526. name: "Handpaw",
  49527. image: {
  49528. source: "./media/characters/roggy/handpaw.svg"
  49529. }
  49530. },
  49531. footpaw: {
  49532. height: math.unit(15.8, "feet"),
  49533. name: "Footpaw",
  49534. image: {
  49535. source: "./media/characters/roggy/footpaw.svg"
  49536. }
  49537. },
  49538. },
  49539. [
  49540. {
  49541. name: "Menacing",
  49542. height: math.unit(30, "feet"),
  49543. default: true
  49544. },
  49545. ]
  49546. ))
  49547. characterMakers.push(() => makeCharacter(
  49548. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49549. {
  49550. front: {
  49551. height: math.unit(5 + 7/12, "feet"),
  49552. weight: math.unit(135, "lb"),
  49553. name: "Front",
  49554. image: {
  49555. source: "./media/characters/naomi/front.svg",
  49556. extra: 1209/1154,
  49557. bottom: 129/1338
  49558. }
  49559. },
  49560. back: {
  49561. height: math.unit(5 + 7/12, "feet"),
  49562. weight: math.unit(135, "lb"),
  49563. name: "Back",
  49564. image: {
  49565. source: "./media/characters/naomi/back.svg",
  49566. extra: 1252/1190,
  49567. bottom: 23/1275
  49568. }
  49569. },
  49570. },
  49571. [
  49572. {
  49573. name: "Normal",
  49574. height: math.unit(5 + 7 /12, "feet"),
  49575. default: true
  49576. },
  49577. ]
  49578. ))
  49579. characterMakers.push(() => makeCharacter(
  49580. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49581. {
  49582. side: {
  49583. height: math.unit(35, "meters"),
  49584. name: "Side",
  49585. image: {
  49586. source: "./media/characters/kimpi/side.svg",
  49587. extra: 419/382,
  49588. bottom: 63/482
  49589. }
  49590. },
  49591. hand: {
  49592. height: math.unit(8.96, "meters"),
  49593. name: "Hand",
  49594. image: {
  49595. source: "./media/characters/kimpi/hand.svg"
  49596. }
  49597. },
  49598. },
  49599. [
  49600. {
  49601. name: "Normal",
  49602. height: math.unit(35, "meters"),
  49603. default: true
  49604. },
  49605. ]
  49606. ))
  49607. characterMakers.push(() => makeCharacter(
  49608. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49609. {
  49610. front: {
  49611. height: math.unit(4 + 4/12, "feet"),
  49612. name: "Front",
  49613. image: {
  49614. source: "./media/characters/pepper-purrloin/front.svg",
  49615. extra: 1141/1024,
  49616. bottom: 21/1162
  49617. }
  49618. },
  49619. },
  49620. [
  49621. {
  49622. name: "Normal",
  49623. height: math.unit(4 + 4/12, "feet"),
  49624. default: true
  49625. },
  49626. ]
  49627. ))
  49628. characterMakers.push(() => makeCharacter(
  49629. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49630. {
  49631. front: {
  49632. height: math.unit(6 + 2/12, "feet"),
  49633. name: "Front",
  49634. image: {
  49635. source: "./media/characters/raphael/front.svg",
  49636. extra: 1101/962,
  49637. bottom: 59/1160
  49638. }
  49639. },
  49640. },
  49641. [
  49642. {
  49643. name: "Normal",
  49644. height: math.unit(6 + 2/12, "feet"),
  49645. default: true
  49646. },
  49647. ]
  49648. ))
  49649. characterMakers.push(() => makeCharacter(
  49650. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49651. {
  49652. front: {
  49653. height: math.unit(6, "feet"),
  49654. weight: math.unit(150, "lb"),
  49655. name: "Front",
  49656. image: {
  49657. source: "./media/characters/victor-williams/front.svg",
  49658. extra: 1894/1825,
  49659. bottom: 67/1961
  49660. }
  49661. },
  49662. },
  49663. [
  49664. {
  49665. name: "Normal",
  49666. height: math.unit(6, "feet"),
  49667. default: true
  49668. },
  49669. ]
  49670. ))
  49671. characterMakers.push(() => makeCharacter(
  49672. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49673. {
  49674. front: {
  49675. height: math.unit(5 + 8/12, "feet"),
  49676. weight: math.unit(150, "lb"),
  49677. name: "Front",
  49678. image: {
  49679. source: "./media/characters/rachel/front.svg",
  49680. extra: 1902/1787,
  49681. bottom: 46/1948
  49682. }
  49683. },
  49684. },
  49685. [
  49686. {
  49687. name: "Base Height",
  49688. height: math.unit(5 + 8/12, "feet"),
  49689. default: true
  49690. },
  49691. {
  49692. name: "Macro",
  49693. height: math.unit(200, "feet")
  49694. },
  49695. {
  49696. name: "Mega Macro",
  49697. height: math.unit(1, "mile")
  49698. },
  49699. {
  49700. name: "Giga Macro",
  49701. height: math.unit(1500, "miles")
  49702. },
  49703. {
  49704. name: "Tera Macro",
  49705. height: math.unit(8000, "miles")
  49706. },
  49707. {
  49708. name: "Tera Macro+",
  49709. height: math.unit(2e5, "miles")
  49710. },
  49711. ]
  49712. ))
  49713. characterMakers.push(() => makeCharacter(
  49714. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49715. {
  49716. front: {
  49717. height: math.unit(6.5, "feet"),
  49718. name: "Front",
  49719. image: {
  49720. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49721. extra: 860/819,
  49722. bottom: 307/1167
  49723. }
  49724. },
  49725. back: {
  49726. height: math.unit(6.5, "feet"),
  49727. name: "Back",
  49728. image: {
  49729. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49730. extra: 880/837,
  49731. bottom: 395/1275
  49732. }
  49733. },
  49734. sleeping: {
  49735. height: math.unit(2.79, "feet"),
  49736. name: "Sleeping",
  49737. image: {
  49738. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49739. extra: 465/383,
  49740. bottom: 263/728
  49741. }
  49742. },
  49743. maw: {
  49744. height: math.unit(2.52, "feet"),
  49745. name: "Maw",
  49746. image: {
  49747. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49748. }
  49749. },
  49750. },
  49751. [
  49752. {
  49753. name: "Normal",
  49754. height: math.unit(6.5, "feet"),
  49755. default: true
  49756. },
  49757. ]
  49758. ))
  49759. characterMakers.push(() => makeCharacter(
  49760. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49761. {
  49762. front: {
  49763. height: math.unit(5, "feet"),
  49764. name: "Front",
  49765. image: {
  49766. source: "./media/characters/nova-nerium/front.svg",
  49767. extra: 1548/1392,
  49768. bottom: 374/1922
  49769. }
  49770. },
  49771. back: {
  49772. height: math.unit(5, "feet"),
  49773. name: "Back",
  49774. image: {
  49775. source: "./media/characters/nova-nerium/back.svg",
  49776. extra: 1658/1468,
  49777. bottom: 257/1915
  49778. }
  49779. },
  49780. },
  49781. [
  49782. {
  49783. name: "Normal",
  49784. height: math.unit(5, "feet"),
  49785. default: true
  49786. },
  49787. ]
  49788. ))
  49789. characterMakers.push(() => makeCharacter(
  49790. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49791. {
  49792. front: {
  49793. height: math.unit(5 + 4/12, "feet"),
  49794. name: "Front",
  49795. image: {
  49796. source: "./media/characters/ashe-pyriph/front.svg",
  49797. extra: 1935/1747,
  49798. bottom: 60/1995
  49799. }
  49800. },
  49801. },
  49802. [
  49803. {
  49804. name: "Normal",
  49805. height: math.unit(5 + 4/12, "feet"),
  49806. default: true
  49807. },
  49808. ]
  49809. ))
  49810. characterMakers.push(() => makeCharacter(
  49811. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49812. {
  49813. front: {
  49814. height: math.unit(8.7, "feet"),
  49815. name: "Front",
  49816. image: {
  49817. source: "./media/characters/flicker-wisp/front.svg",
  49818. extra: 1835/1613,
  49819. bottom: 449/2284
  49820. }
  49821. },
  49822. side: {
  49823. height: math.unit(8.7, "feet"),
  49824. name: "Side",
  49825. image: {
  49826. source: "./media/characters/flicker-wisp/side.svg",
  49827. extra: 1841/1642,
  49828. bottom: 336/2177
  49829. },
  49830. default: true
  49831. },
  49832. maw: {
  49833. height: math.unit(3.35, "feet"),
  49834. name: "Maw",
  49835. image: {
  49836. source: "./media/characters/flicker-wisp/maw.svg",
  49837. extra: 2338/1506,
  49838. bottom: 0/2338
  49839. }
  49840. },
  49841. ovipositor: {
  49842. height: math.unit(4.95, "feet"),
  49843. name: "Ovipositor",
  49844. image: {
  49845. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49846. }
  49847. },
  49848. egg: {
  49849. height: math.unit(0.385, "feet"),
  49850. weight: math.unit(2, "lb"),
  49851. name: "Egg",
  49852. image: {
  49853. source: "./media/characters/flicker-wisp/egg.svg"
  49854. }
  49855. },
  49856. },
  49857. [
  49858. {
  49859. name: "Normal",
  49860. height: math.unit(8.7, "feet"),
  49861. default: true
  49862. },
  49863. ]
  49864. ))
  49865. characterMakers.push(() => makeCharacter(
  49866. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49867. {
  49868. side: {
  49869. height: math.unit(11, "feet"),
  49870. name: "Side",
  49871. image: {
  49872. source: "./media/characters/faefnul/side.svg",
  49873. extra: 1100/1007,
  49874. bottom: 0/1100
  49875. }
  49876. },
  49877. },
  49878. [
  49879. {
  49880. name: "Normal",
  49881. height: math.unit(11, "feet"),
  49882. default: true
  49883. },
  49884. ]
  49885. ))
  49886. characterMakers.push(() => makeCharacter(
  49887. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49888. {
  49889. front: {
  49890. height: math.unit(6 + 2/12, "feet"),
  49891. name: "Front",
  49892. image: {
  49893. source: "./media/characters/shady/front.svg",
  49894. extra: 502/461,
  49895. bottom: 9/511
  49896. }
  49897. },
  49898. kneeling: {
  49899. height: math.unit(4.6, "feet"),
  49900. name: "Kneeling",
  49901. image: {
  49902. source: "./media/characters/shady/kneeling.svg",
  49903. extra: 1328/1219,
  49904. bottom: 117/1445
  49905. }
  49906. },
  49907. maw: {
  49908. height: math.unit(2, "feet"),
  49909. name: "Maw",
  49910. image: {
  49911. source: "./media/characters/shady/maw.svg"
  49912. }
  49913. },
  49914. },
  49915. [
  49916. {
  49917. name: "Nano",
  49918. height: math.unit(1, "mm")
  49919. },
  49920. {
  49921. name: "Micro",
  49922. height: math.unit(12, "mm")
  49923. },
  49924. {
  49925. name: "Tiny",
  49926. height: math.unit(3, "inches")
  49927. },
  49928. {
  49929. name: "Normal",
  49930. height: math.unit(6 + 2/12, "feet"),
  49931. default: true
  49932. },
  49933. {
  49934. name: "Big",
  49935. height: math.unit(15, "feet")
  49936. },
  49937. {
  49938. name: "Macro",
  49939. height: math.unit(150, "feet")
  49940. },
  49941. {
  49942. name: "Titanic",
  49943. height: math.unit(500, "feet")
  49944. },
  49945. ]
  49946. ))
  49947. characterMakers.push(() => makeCharacter(
  49948. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49949. {
  49950. front: {
  49951. height: math.unit(12, "feet"),
  49952. name: "Front",
  49953. image: {
  49954. source: "./media/characters/fenrir/front.svg",
  49955. extra: 968/875,
  49956. bottom: 22/990
  49957. }
  49958. },
  49959. },
  49960. [
  49961. {
  49962. name: "Big",
  49963. height: math.unit(12, "feet"),
  49964. default: true
  49965. },
  49966. ]
  49967. ))
  49968. characterMakers.push(() => makeCharacter(
  49969. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49970. {
  49971. front: {
  49972. height: math.unit(5 + 4/12, "feet"),
  49973. name: "Front",
  49974. image: {
  49975. source: "./media/characters/makar/front.svg",
  49976. extra: 1181/1112,
  49977. bottom: 78/1259
  49978. }
  49979. },
  49980. },
  49981. [
  49982. {
  49983. name: "Normal",
  49984. height: math.unit(5 + 4/12, "feet"),
  49985. default: true
  49986. },
  49987. ]
  49988. ))
  49989. characterMakers.push(() => makeCharacter(
  49990. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49991. {
  49992. front: {
  49993. height: math.unit(5 + 7/12, "feet"),
  49994. name: "Front",
  49995. image: {
  49996. source: "./media/characters/callow/front.svg",
  49997. extra: 1482/1304,
  49998. bottom: 23/1505
  49999. }
  50000. },
  50001. back: {
  50002. height: math.unit(5 + 7/12, "feet"),
  50003. name: "Back",
  50004. image: {
  50005. source: "./media/characters/callow/back.svg",
  50006. extra: 1484/1296,
  50007. bottom: 25/1509
  50008. }
  50009. },
  50010. },
  50011. [
  50012. {
  50013. name: "Micro",
  50014. height: math.unit(3, "inches"),
  50015. default: true
  50016. },
  50017. {
  50018. name: "Normal",
  50019. height: math.unit(5 + 7/12, "feet")
  50020. },
  50021. ]
  50022. ))
  50023. characterMakers.push(() => makeCharacter(
  50024. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50025. {
  50026. front: {
  50027. height: math.unit(6 + 2/12, "feet"),
  50028. name: "Front",
  50029. image: {
  50030. source: "./media/characters/natel/front.svg",
  50031. extra: 1833/1692,
  50032. bottom: 166/1999
  50033. }
  50034. },
  50035. },
  50036. [
  50037. {
  50038. name: "Normal",
  50039. height: math.unit(6 + 2/12, "feet"),
  50040. default: true
  50041. },
  50042. ]
  50043. ))
  50044. characterMakers.push(() => makeCharacter(
  50045. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50046. {
  50047. front: {
  50048. height: math.unit(1.75, "meters"),
  50049. name: "Front",
  50050. image: {
  50051. source: "./media/characters/misu/front.svg",
  50052. extra: 1690/1558,
  50053. bottom: 234/1924
  50054. }
  50055. },
  50056. back: {
  50057. height: math.unit(1.75, "meters"),
  50058. name: "Back",
  50059. image: {
  50060. source: "./media/characters/misu/back.svg",
  50061. extra: 1762/1618,
  50062. bottom: 146/1908
  50063. }
  50064. },
  50065. frontNude: {
  50066. height: math.unit(1.75, "meters"),
  50067. name: "Front (Nude)",
  50068. image: {
  50069. source: "./media/characters/misu/front-nude.svg",
  50070. extra: 1690/1558,
  50071. bottom: 234/1924
  50072. }
  50073. },
  50074. backNude: {
  50075. height: math.unit(1.75, "meters"),
  50076. name: "Back (Nude)",
  50077. image: {
  50078. source: "./media/characters/misu/back-nude.svg",
  50079. extra: 1762/1618,
  50080. bottom: 146/1908
  50081. }
  50082. },
  50083. frontErect: {
  50084. height: math.unit(1.75, "meters"),
  50085. name: "Front (Erect)",
  50086. image: {
  50087. source: "./media/characters/misu/front-erect.svg",
  50088. extra: 1690/1558,
  50089. bottom: 234/1924
  50090. }
  50091. },
  50092. maw: {
  50093. height: math.unit(0.47, "meters"),
  50094. name: "Maw",
  50095. image: {
  50096. source: "./media/characters/misu/maw.svg"
  50097. }
  50098. },
  50099. head: {
  50100. height: math.unit(0.35, "meters"),
  50101. name: "Head",
  50102. image: {
  50103. source: "./media/characters/misu/head.svg"
  50104. }
  50105. },
  50106. rear: {
  50107. height: math.unit(0.47, "meters"),
  50108. name: "Rear",
  50109. image: {
  50110. source: "./media/characters/misu/rear.svg"
  50111. }
  50112. },
  50113. },
  50114. [
  50115. {
  50116. name: "Normal",
  50117. height: math.unit(1.75, "meters")
  50118. },
  50119. {
  50120. name: "Not good for the people",
  50121. height: math.unit(42, "meters")
  50122. },
  50123. {
  50124. name: "Not good for the neighborhood",
  50125. height: math.unit(135, "meters")
  50126. },
  50127. {
  50128. name: "Bit bigger problem",
  50129. height: math.unit(380, "meters"),
  50130. default: true
  50131. },
  50132. {
  50133. name: "Not good for the city",
  50134. height: math.unit(1.5, "km")
  50135. },
  50136. {
  50137. name: "Not good for the county",
  50138. height: math.unit(5.5, "km")
  50139. },
  50140. {
  50141. name: "Not good for the state",
  50142. height: math.unit(25, "km")
  50143. },
  50144. {
  50145. name: "Not good for the country",
  50146. height: math.unit(125, "km")
  50147. },
  50148. {
  50149. name: "Not good for the continent",
  50150. height: math.unit(2100, "km")
  50151. },
  50152. {
  50153. name: "Not good for the planet",
  50154. height: math.unit(35000, "km")
  50155. },
  50156. {
  50157. name: "Just no",
  50158. height: math.unit(8.5e18, "km")
  50159. },
  50160. ]
  50161. ))
  50162. characterMakers.push(() => makeCharacter(
  50163. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50164. {
  50165. front: {
  50166. height: math.unit(6.5, "feet"),
  50167. name: "Front",
  50168. image: {
  50169. source: "./media/characters/poppy/front.svg",
  50170. extra: 1878/1812,
  50171. bottom: 43/1921
  50172. }
  50173. },
  50174. feet: {
  50175. height: math.unit(1.06, "feet"),
  50176. name: "Feet",
  50177. image: {
  50178. source: "./media/characters/poppy/feet.svg",
  50179. extra: 1083/1083,
  50180. bottom: 87/1170
  50181. }
  50182. },
  50183. },
  50184. [
  50185. {
  50186. name: "Human",
  50187. height: math.unit(6.5, "feet")
  50188. },
  50189. {
  50190. name: "Default",
  50191. height: math.unit(300, "feet"),
  50192. default: true
  50193. },
  50194. {
  50195. name: "Huge",
  50196. height: math.unit(850, "feet")
  50197. },
  50198. {
  50199. name: "Mega",
  50200. height: math.unit(8000, "feet")
  50201. },
  50202. {
  50203. name: "Giga",
  50204. height: math.unit(300, "miles")
  50205. },
  50206. ]
  50207. ))
  50208. characterMakers.push(() => makeCharacter(
  50209. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50210. {
  50211. bipedal: {
  50212. height: math.unit(7, "feet"),
  50213. name: "Bipedal",
  50214. image: {
  50215. source: "./media/characters/zener/bipedal.svg",
  50216. extra: 874/805,
  50217. bottom: 109/983
  50218. }
  50219. },
  50220. quadrupedal: {
  50221. height: math.unit(4.64, "feet"),
  50222. name: "Quadrupedal",
  50223. image: {
  50224. source: "./media/characters/zener/quadrupedal.svg",
  50225. extra: 638/507,
  50226. bottom: 190/828
  50227. }
  50228. },
  50229. cock: {
  50230. height: math.unit(18, "inches"),
  50231. name: "Cock",
  50232. image: {
  50233. source: "./media/characters/zener/cock.svg"
  50234. }
  50235. },
  50236. },
  50237. [
  50238. {
  50239. name: "Normal",
  50240. height: math.unit(7, "feet"),
  50241. default: true
  50242. },
  50243. ]
  50244. ))
  50245. characterMakers.push(() => makeCharacter(
  50246. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50247. {
  50248. nude: {
  50249. height: math.unit(5 + 6/12, "feet"),
  50250. name: "Nude",
  50251. image: {
  50252. source: "./media/characters/charlie-dog/nude.svg",
  50253. extra: 768/734,
  50254. bottom: 26/794
  50255. }
  50256. },
  50257. dressed: {
  50258. height: math.unit(5 + 6/12, "feet"),
  50259. name: "Dressed",
  50260. image: {
  50261. source: "./media/characters/charlie-dog/dressed.svg",
  50262. extra: 768/734,
  50263. bottom: 26/794
  50264. }
  50265. },
  50266. },
  50267. [
  50268. {
  50269. name: "Normal",
  50270. height: math.unit(5 + 6/12, "feet"),
  50271. default: true
  50272. },
  50273. ]
  50274. ))
  50275. characterMakers.push(() => makeCharacter(
  50276. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50277. {
  50278. front: {
  50279. height: math.unit(6 + 4/12, "feet"),
  50280. name: "Front",
  50281. image: {
  50282. source: "./media/characters/ir'istrasz/front.svg",
  50283. extra: 1014/977,
  50284. bottom: 65/1079
  50285. }
  50286. },
  50287. back: {
  50288. height: math.unit(6 + 4/12, "feet"),
  50289. name: "Back",
  50290. image: {
  50291. source: "./media/characters/ir'istrasz/back.svg",
  50292. extra: 1024/992,
  50293. bottom: 34/1058
  50294. }
  50295. },
  50296. },
  50297. [
  50298. {
  50299. name: "Normal",
  50300. height: math.unit(6 + 4/12, "feet"),
  50301. default: true
  50302. },
  50303. ]
  50304. ))
  50305. characterMakers.push(() => makeCharacter(
  50306. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50307. {
  50308. front: {
  50309. height: math.unit(5 + 8/12, "feet"),
  50310. name: "Front",
  50311. image: {
  50312. source: "./media/characters/dee-ditto/front.svg",
  50313. extra: 1874/1785,
  50314. bottom: 68/1942
  50315. }
  50316. },
  50317. back: {
  50318. height: math.unit(5 + 8/12, "feet"),
  50319. name: "Back",
  50320. image: {
  50321. source: "./media/characters/dee-ditto/back.svg",
  50322. extra: 1870/1783,
  50323. bottom: 77/1947
  50324. }
  50325. },
  50326. },
  50327. [
  50328. {
  50329. name: "Normal",
  50330. height: math.unit(5 + 8/12, "feet"),
  50331. default: true
  50332. },
  50333. ]
  50334. ))
  50335. characterMakers.push(() => makeCharacter(
  50336. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50337. {
  50338. front: {
  50339. height: math.unit(7 + 6/12, "feet"),
  50340. name: "Front",
  50341. image: {
  50342. source: "./media/characters/fey/front.svg",
  50343. extra: 995/979,
  50344. bottom: 30/1025
  50345. }
  50346. },
  50347. back: {
  50348. height: math.unit(7 + 6/12, "feet"),
  50349. name: "Back",
  50350. image: {
  50351. source: "./media/characters/fey/back.svg",
  50352. extra: 1079/1008,
  50353. bottom: 5/1084
  50354. }
  50355. },
  50356. dressed: {
  50357. height: math.unit(7 + 6/12, "feet"),
  50358. name: "Dressed",
  50359. image: {
  50360. source: "./media/characters/fey/dressed.svg",
  50361. extra: 995/979,
  50362. bottom: 30/1025
  50363. }
  50364. },
  50365. },
  50366. [
  50367. {
  50368. name: "Normal",
  50369. height: math.unit(7 + 6/12, "feet"),
  50370. default: true
  50371. },
  50372. ]
  50373. ))
  50374. characterMakers.push(() => makeCharacter(
  50375. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50376. {
  50377. standing: {
  50378. height: math.unit(17, "feet"),
  50379. name: "Standing",
  50380. image: {
  50381. source: "./media/characters/aster/standing.svg",
  50382. extra: 1798/1598,
  50383. bottom: 117/1915
  50384. }
  50385. },
  50386. },
  50387. [
  50388. {
  50389. name: "Normal",
  50390. height: math.unit(17, "feet"),
  50391. default: true
  50392. },
  50393. {
  50394. name: "Homewrecker",
  50395. height: math.unit(95, "feet")
  50396. },
  50397. {
  50398. name: "Planet Devourer",
  50399. height: math.unit(1008000, "miles")
  50400. },
  50401. ]
  50402. ))
  50403. characterMakers.push(() => makeCharacter(
  50404. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50405. {
  50406. front: {
  50407. height: math.unit(6 + 5/12, "feet"),
  50408. weight: math.unit(265, "lb"),
  50409. name: "Front",
  50410. image: {
  50411. source: "./media/characters/devon-childs/front.svg",
  50412. extra: 1795/1721,
  50413. bottom: 41/1836
  50414. }
  50415. },
  50416. side: {
  50417. height: math.unit(6 + 5/12, "feet"),
  50418. weight: math.unit(265, "lb"),
  50419. name: "Side",
  50420. image: {
  50421. source: "./media/characters/devon-childs/side.svg",
  50422. extra: 1812/1738,
  50423. bottom: 30/1842
  50424. }
  50425. },
  50426. back: {
  50427. height: math.unit(6 + 5/12, "feet"),
  50428. weight: math.unit(265, "lb"),
  50429. name: "Back",
  50430. image: {
  50431. source: "./media/characters/devon-childs/back.svg",
  50432. extra: 1808/1735,
  50433. bottom: 23/1831
  50434. }
  50435. },
  50436. hand: {
  50437. height: math.unit(1.464, "feet"),
  50438. name: "Hand",
  50439. image: {
  50440. source: "./media/characters/devon-childs/hand.svg"
  50441. }
  50442. },
  50443. foot: {
  50444. height: math.unit(1.6, "feet"),
  50445. name: "Foot",
  50446. image: {
  50447. source: "./media/characters/devon-childs/foot.svg"
  50448. }
  50449. },
  50450. },
  50451. [
  50452. {
  50453. name: "Micro",
  50454. height: math.unit(7, "cm")
  50455. },
  50456. {
  50457. name: "Normal",
  50458. height: math.unit(6 + 5/12, "feet"),
  50459. default: true
  50460. },
  50461. {
  50462. name: "Macro",
  50463. height: math.unit(154, "feet")
  50464. },
  50465. ]
  50466. ))
  50467. characterMakers.push(() => makeCharacter(
  50468. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50469. {
  50470. front: {
  50471. height: math.unit(6, "feet"),
  50472. weight: math.unit(180, "lb"),
  50473. name: "Front",
  50474. image: {
  50475. source: "./media/characters/lydemox-vir/front.svg",
  50476. extra: 1632/1435,
  50477. bottom: 58/1690
  50478. }
  50479. },
  50480. frontSFW: {
  50481. height: math.unit(6, "feet"),
  50482. weight: math.unit(180, "lb"),
  50483. name: "Front (SFW)",
  50484. image: {
  50485. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50486. extra: 1632/1435,
  50487. bottom: 58/1690
  50488. }
  50489. },
  50490. back: {
  50491. height: math.unit(6, "feet"),
  50492. weight: math.unit(180, "lb"),
  50493. name: "Back",
  50494. image: {
  50495. source: "./media/characters/lydemox-vir/back.svg",
  50496. extra: 1593/1408,
  50497. bottom: 31/1624
  50498. }
  50499. },
  50500. paw: {
  50501. height: math.unit(1.85, "feet"),
  50502. name: "Paw",
  50503. image: {
  50504. source: "./media/characters/lydemox-vir/paw.svg"
  50505. }
  50506. },
  50507. dick: {
  50508. height: math.unit(1.8, "feet"),
  50509. name: "Dick",
  50510. image: {
  50511. source: "./media/characters/lydemox-vir/dick.svg"
  50512. }
  50513. },
  50514. },
  50515. [
  50516. {
  50517. name: "Macro",
  50518. height: math.unit(100, "feet"),
  50519. default: true
  50520. },
  50521. {
  50522. name: "Teramacro",
  50523. height: math.unit(1, "earth")
  50524. },
  50525. {
  50526. name: "Planetary",
  50527. height: math.unit(20, "earths")
  50528. },
  50529. ]
  50530. ))
  50531. characterMakers.push(() => makeCharacter(
  50532. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50533. {
  50534. front: {
  50535. height: math.unit(15 + 8/12, "feet"),
  50536. weight: math.unit(1237, "kg"),
  50537. name: "Front",
  50538. image: {
  50539. source: "./media/characters/mia/front.svg",
  50540. extra: 1573/1446,
  50541. bottom: 58/1631
  50542. }
  50543. },
  50544. },
  50545. [
  50546. {
  50547. name: "Small",
  50548. height: math.unit(9 + 5/12, "feet")
  50549. },
  50550. {
  50551. name: "Normal",
  50552. height: math.unit(15 + 8/12, "feet"),
  50553. default: true
  50554. },
  50555. ]
  50556. ))
  50557. characterMakers.push(() => makeCharacter(
  50558. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50559. {
  50560. front: {
  50561. height: math.unit(10 + 6/12, "feet"),
  50562. weight: math.unit(1.3, "tons"),
  50563. name: "Front",
  50564. image: {
  50565. source: "./media/characters/mr-graves/front.svg",
  50566. extra: 1779/1695,
  50567. bottom: 198/1977
  50568. }
  50569. },
  50570. },
  50571. [
  50572. {
  50573. name: "Normal",
  50574. height: math.unit(10 + 6 /12, "feet"),
  50575. default: true
  50576. },
  50577. ]
  50578. ))
  50579. characterMakers.push(() => makeCharacter(
  50580. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50581. {
  50582. dressedFront: {
  50583. height: math.unit(5 + 8/12, "feet"),
  50584. weight: math.unit(125, "lb"),
  50585. name: "Dressed (Front)",
  50586. image: {
  50587. source: "./media/characters/jess/dressed-front.svg",
  50588. extra: 1176/1152,
  50589. bottom: 42/1218
  50590. }
  50591. },
  50592. dressedSide: {
  50593. height: math.unit(5 + 8/12, "feet"),
  50594. weight: math.unit(125, "lb"),
  50595. name: "Dressed (Side)",
  50596. image: {
  50597. source: "./media/characters/jess/dressed-side.svg",
  50598. extra: 1204/1190,
  50599. bottom: 6/1210
  50600. }
  50601. },
  50602. nudeFront: {
  50603. height: math.unit(5 + 8/12, "feet"),
  50604. weight: math.unit(125, "lb"),
  50605. name: "Nude (Front)",
  50606. image: {
  50607. source: "./media/characters/jess/nude-front.svg",
  50608. extra: 1176/1152,
  50609. bottom: 42/1218
  50610. }
  50611. },
  50612. nudeSide: {
  50613. height: math.unit(5 + 8/12, "feet"),
  50614. weight: math.unit(125, "lb"),
  50615. name: "Nude (Side)",
  50616. image: {
  50617. source: "./media/characters/jess/nude-side.svg",
  50618. extra: 1204/1190,
  50619. bottom: 6/1210
  50620. }
  50621. },
  50622. organsFront: {
  50623. height: math.unit(2.83799342105, "feet"),
  50624. name: "Organs (Front)",
  50625. image: {
  50626. source: "./media/characters/jess/organs-front.svg"
  50627. }
  50628. },
  50629. organsSide: {
  50630. height: math.unit(2.64225290474, "feet"),
  50631. name: "Organs (Side)",
  50632. image: {
  50633. source: "./media/characters/jess/organs-side.svg"
  50634. }
  50635. },
  50636. digestiveTractFront: {
  50637. height: math.unit(2.8106580871, "feet"),
  50638. name: "Digestive Tract (Front)",
  50639. image: {
  50640. source: "./media/characters/jess/digestive-tract-front.svg"
  50641. }
  50642. },
  50643. digestiveTractSide: {
  50644. height: math.unit(2.54365045014, "feet"),
  50645. name: "Digestive Tract (Side)",
  50646. image: {
  50647. source: "./media/characters/jess/digestive-tract-side.svg"
  50648. }
  50649. },
  50650. respiratorySystemFront: {
  50651. height: math.unit(1.11196233456, "feet"),
  50652. name: "Respiratory System (Front)",
  50653. image: {
  50654. source: "./media/characters/jess/respiratory-system-front.svg"
  50655. }
  50656. },
  50657. respiratorySystemSide: {
  50658. height: math.unit(0.89327966297, "feet"),
  50659. name: "Respiratory System (Side)",
  50660. image: {
  50661. source: "./media/characters/jess/respiratory-system-side.svg"
  50662. }
  50663. },
  50664. urinaryTractFront: {
  50665. height: math.unit(1.16126356186, "feet"),
  50666. name: "Urinary Tract (Front)",
  50667. image: {
  50668. source: "./media/characters/jess/urinary-tract-front.svg"
  50669. }
  50670. },
  50671. urinaryTractSide: {
  50672. height: math.unit(1.20910039627, "feet"),
  50673. name: "Urinary Tract (Side)",
  50674. image: {
  50675. source: "./media/characters/jess/urinary-tract-side.svg"
  50676. }
  50677. },
  50678. reproductiveOrgansFront: {
  50679. height: math.unit(0.48422591566, "feet"),
  50680. name: "Reproductive Organs (Front)",
  50681. image: {
  50682. source: "./media/characters/jess/reproductive-organs-front.svg"
  50683. }
  50684. },
  50685. reproductiveOrgansSide: {
  50686. height: math.unit(0.61553314481, "feet"),
  50687. name: "Reproductive Organs (Side)",
  50688. image: {
  50689. source: "./media/characters/jess/reproductive-organs-side.svg"
  50690. }
  50691. },
  50692. breastsFront: {
  50693. height: math.unit(0.47690395121, "feet"),
  50694. name: "Breasts (Front)",
  50695. image: {
  50696. source: "./media/characters/jess/breasts-front.svg"
  50697. }
  50698. },
  50699. breastsSide: {
  50700. height: math.unit(0.30556998307, "feet"),
  50701. name: "Breasts (Side)",
  50702. image: {
  50703. source: "./media/characters/jess/breasts-side.svg"
  50704. }
  50705. },
  50706. heartFront: {
  50707. height: math.unit(0.53011022622, "feet"),
  50708. name: "Heart (Front)",
  50709. image: {
  50710. source: "./media/characters/jess/heart-front.svg"
  50711. }
  50712. },
  50713. heartSide: {
  50714. height: math.unit(0.51790695213, "feet"),
  50715. name: "Heart (Side)",
  50716. image: {
  50717. source: "./media/characters/jess/heart-side.svg"
  50718. }
  50719. },
  50720. earsAndNoseFront: {
  50721. height: math.unit(0.29385483995, "feet"),
  50722. name: "Ears and Nose (Front)",
  50723. image: {
  50724. source: "./media/characters/jess/ears-and-nose-front.svg"
  50725. }
  50726. },
  50727. earsAndNoseSide: {
  50728. height: math.unit(0.18109658741, "feet"),
  50729. name: "Ears and Nose (Side)",
  50730. image: {
  50731. source: "./media/characters/jess/ears-and-nose-side.svg"
  50732. }
  50733. },
  50734. },
  50735. [
  50736. {
  50737. name: "Normal",
  50738. height: math.unit(5 + 8/12, "feet"),
  50739. default: true
  50740. },
  50741. ]
  50742. ))
  50743. characterMakers.push(() => makeCharacter(
  50744. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50745. {
  50746. front: {
  50747. height: math.unit(6, "feet"),
  50748. weight: math.unit(6.64467e-7, "grams"),
  50749. name: "Front",
  50750. image: {
  50751. source: "./media/characters/wimpering/front.svg",
  50752. extra: 597/587,
  50753. bottom: 34/631
  50754. }
  50755. },
  50756. },
  50757. [
  50758. {
  50759. name: "Micro",
  50760. height: math.unit(0.4, "mm"),
  50761. default: true
  50762. },
  50763. ]
  50764. ))
  50765. characterMakers.push(() => makeCharacter(
  50766. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50767. {
  50768. front: {
  50769. height: math.unit(5 + 2/12, "feet"),
  50770. weight: math.unit(110, "lb"),
  50771. name: "Front",
  50772. image: {
  50773. source: "./media/characters/keltre/front.svg",
  50774. extra: 1099/1057,
  50775. bottom: 22/1121
  50776. }
  50777. },
  50778. back: {
  50779. height: math.unit(5 + 2/12, "feet"),
  50780. weight: math.unit(110, "lb"),
  50781. name: "Back",
  50782. image: {
  50783. source: "./media/characters/keltre/back.svg",
  50784. extra: 1095/1053,
  50785. bottom: 17/1112
  50786. }
  50787. },
  50788. dressed: {
  50789. height: math.unit(5 + 2/12, "feet"),
  50790. weight: math.unit(110, "lb"),
  50791. name: "Dressed",
  50792. image: {
  50793. source: "./media/characters/keltre/dressed.svg",
  50794. extra: 1099/1057,
  50795. bottom: 22/1121
  50796. }
  50797. },
  50798. winter: {
  50799. height: math.unit(5 + 2/12, "feet"),
  50800. weight: math.unit(110, "lb"),
  50801. name: "Winter",
  50802. image: {
  50803. source: "./media/characters/keltre/winter.svg",
  50804. extra: 1099/1057,
  50805. bottom: 22/1121
  50806. }
  50807. },
  50808. head: {
  50809. height: math.unit(1.61 * 0.86, "feet"),
  50810. name: "Head",
  50811. image: {
  50812. source: "./media/characters/keltre/head.svg",
  50813. extra: 534/421,
  50814. bottom: 0/534
  50815. }
  50816. },
  50817. hand: {
  50818. height: math.unit(1.3 * 0.86, "feet"),
  50819. name: "Hand",
  50820. image: {
  50821. source: "./media/characters/keltre/hand.svg"
  50822. }
  50823. },
  50824. foot: {
  50825. height: math.unit(1.8 * 0.86, "feet"),
  50826. name: "Foot",
  50827. image: {
  50828. source: "./media/characters/keltre/foot.svg"
  50829. }
  50830. },
  50831. },
  50832. [
  50833. {
  50834. name: "Fine",
  50835. height: math.unit(1, "inch")
  50836. },
  50837. {
  50838. name: "Dimnutive",
  50839. height: math.unit(4, "inches")
  50840. },
  50841. {
  50842. name: "Tiny",
  50843. height: math.unit(1, "foot")
  50844. },
  50845. {
  50846. name: "Small",
  50847. height: math.unit(3, "feet")
  50848. },
  50849. {
  50850. name: "Normal",
  50851. height: math.unit(5 + 2/12, "feet"),
  50852. default: true
  50853. },
  50854. ]
  50855. ))
  50856. characterMakers.push(() => makeCharacter(
  50857. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50858. {
  50859. front: {
  50860. height: math.unit(6 + 2/12, "feet"),
  50861. name: "Front",
  50862. image: {
  50863. source: "./media/characters/nox/front.svg",
  50864. extra: 1917/1830,
  50865. bottom: 74/1991
  50866. }
  50867. },
  50868. back: {
  50869. height: math.unit(6 + 2/12, "feet"),
  50870. name: "Back",
  50871. image: {
  50872. source: "./media/characters/nox/back.svg",
  50873. extra: 1896/1815,
  50874. bottom: 21/1917
  50875. }
  50876. },
  50877. head: {
  50878. height: math.unit(1.1, "feet"),
  50879. name: "Head",
  50880. image: {
  50881. source: "./media/characters/nox/head.svg",
  50882. extra: 874/704,
  50883. bottom: 0/874
  50884. }
  50885. },
  50886. tattoo: {
  50887. height: math.unit(0.729, "feet"),
  50888. name: "Tattoo",
  50889. image: {
  50890. source: "./media/characters/nox/tattoo.svg"
  50891. }
  50892. },
  50893. },
  50894. [
  50895. {
  50896. name: "Normal",
  50897. height: math.unit(6 + 2/12, "feet")
  50898. },
  50899. {
  50900. name: "Gigamacro",
  50901. height: math.unit(2, "earths"),
  50902. default: true
  50903. },
  50904. {
  50905. name: "Cosmic",
  50906. height: math.unit(867, "yottameters")
  50907. },
  50908. ]
  50909. ))
  50910. characterMakers.push(() => makeCharacter(
  50911. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50912. {
  50913. front: {
  50914. height: math.unit(6, "feet"),
  50915. weight: math.unit(150, "lb"),
  50916. name: "Front",
  50917. image: {
  50918. source: "./media/characters/caspian/front.svg",
  50919. extra: 1443/1359,
  50920. bottom: 0/1443
  50921. }
  50922. },
  50923. back: {
  50924. height: math.unit(6, "feet"),
  50925. weight: math.unit(150, "lb"),
  50926. name: "Back",
  50927. image: {
  50928. source: "./media/characters/caspian/back.svg",
  50929. extra: 1379/1309,
  50930. bottom: 0/1379
  50931. }
  50932. },
  50933. head: {
  50934. height: math.unit(0.9, "feet"),
  50935. name: "Head",
  50936. image: {
  50937. source: "./media/characters/caspian/head.svg",
  50938. extra: 692/492,
  50939. bottom: 0/692
  50940. }
  50941. },
  50942. headAlt: {
  50943. height: math.unit(0.95, "feet"),
  50944. name: "Head (Alt)",
  50945. image: {
  50946. source: "./media/characters/caspian/head-alt.svg",
  50947. extra: 668/508,
  50948. bottom: 0/668
  50949. }
  50950. },
  50951. hand: {
  50952. height: math.unit(0.8, "feet"),
  50953. name: "Hand",
  50954. image: {
  50955. source: "./media/characters/caspian/hand.svg"
  50956. }
  50957. },
  50958. paw: {
  50959. height: math.unit(0.95, "feet"),
  50960. name: "Paw",
  50961. image: {
  50962. source: "./media/characters/caspian/paw.svg"
  50963. }
  50964. },
  50965. },
  50966. [
  50967. {
  50968. name: "Normal",
  50969. height: math.unit(162, "feet"),
  50970. default: true
  50971. },
  50972. ]
  50973. ))
  50974. characterMakers.push(() => makeCharacter(
  50975. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50976. {
  50977. front: {
  50978. height: math.unit(6, "feet"),
  50979. name: "Front",
  50980. image: {
  50981. source: "./media/characters/myra-aisling/front.svg",
  50982. extra: 1268/1166,
  50983. bottom: 73/1341
  50984. }
  50985. },
  50986. back: {
  50987. height: math.unit(6, "feet"),
  50988. name: "Back",
  50989. image: {
  50990. source: "./media/characters/myra-aisling/back.svg",
  50991. extra: 1249/1149,
  50992. bottom: 79/1328
  50993. }
  50994. },
  50995. dressed: {
  50996. height: math.unit(6, "feet"),
  50997. name: "Dressed",
  50998. image: {
  50999. source: "./media/characters/myra-aisling/dressed.svg",
  51000. extra: 1290/1189,
  51001. bottom: 47/1337
  51002. }
  51003. },
  51004. hand: {
  51005. height: math.unit(1.1, "feet"),
  51006. name: "Hand",
  51007. image: {
  51008. source: "./media/characters/myra-aisling/hand.svg"
  51009. }
  51010. },
  51011. paw: {
  51012. height: math.unit(1.23, "feet"),
  51013. name: "Paw",
  51014. image: {
  51015. source: "./media/characters/myra-aisling/paw.svg"
  51016. }
  51017. },
  51018. },
  51019. [
  51020. {
  51021. name: "Normal",
  51022. height: math.unit(160, "feet"),
  51023. default: true
  51024. },
  51025. ]
  51026. ))
  51027. characterMakers.push(() => makeCharacter(
  51028. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51029. {
  51030. front: {
  51031. height: math.unit(6, "feet"),
  51032. name: "Front",
  51033. image: {
  51034. source: "./media/characters/tenley-sidero/front.svg",
  51035. extra: 1365/1276,
  51036. bottom: 47/1412
  51037. }
  51038. },
  51039. back: {
  51040. height: math.unit(6, "feet"),
  51041. name: "Back",
  51042. image: {
  51043. source: "./media/characters/tenley-sidero/back.svg",
  51044. extra: 1383/1283,
  51045. bottom: 35/1418
  51046. }
  51047. },
  51048. dressed: {
  51049. height: math.unit(6, "feet"),
  51050. name: "Dressed",
  51051. image: {
  51052. source: "./media/characters/tenley-sidero/dressed.svg",
  51053. extra: 1364/1275,
  51054. bottom: 42/1406
  51055. }
  51056. },
  51057. head: {
  51058. height: math.unit(1.47, "feet"),
  51059. name: "Head",
  51060. image: {
  51061. source: "./media/characters/tenley-sidero/head.svg",
  51062. extra: 610/490,
  51063. bottom: 0/610
  51064. }
  51065. },
  51066. },
  51067. [
  51068. {
  51069. name: "Normal",
  51070. height: math.unit(154, "feet"),
  51071. default: true
  51072. },
  51073. ]
  51074. ))
  51075. characterMakers.push(() => makeCharacter(
  51076. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51077. {
  51078. front: {
  51079. height: math.unit(5, "inches"),
  51080. name: "Front",
  51081. image: {
  51082. source: "./media/characters/mallory/front.svg",
  51083. extra: 1919/1678,
  51084. bottom: 29/1948
  51085. }
  51086. },
  51087. hand: {
  51088. height: math.unit(0.73, "inches"),
  51089. name: "Hand",
  51090. image: {
  51091. source: "./media/characters/mallory/hand.svg"
  51092. }
  51093. },
  51094. paw: {
  51095. height: math.unit(0.68, "inches"),
  51096. name: "Paw",
  51097. image: {
  51098. source: "./media/characters/mallory/paw.svg"
  51099. }
  51100. },
  51101. },
  51102. [
  51103. {
  51104. name: "Small",
  51105. height: math.unit(5, "inches"),
  51106. default: true
  51107. },
  51108. ]
  51109. ))
  51110. characterMakers.push(() => makeCharacter(
  51111. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51112. {
  51113. naked: {
  51114. height: math.unit(6, "feet"),
  51115. name: "Naked",
  51116. image: {
  51117. source: "./media/characters/mab/naked.svg",
  51118. extra: 1855/1757,
  51119. bottom: 208/2063
  51120. }
  51121. },
  51122. outside: {
  51123. height: math.unit(6, "feet"),
  51124. name: "Outside",
  51125. image: {
  51126. source: "./media/characters/mab/outside.svg",
  51127. extra: 1855/1757,
  51128. bottom: 208/2063
  51129. }
  51130. },
  51131. party: {
  51132. height: math.unit(6, "feet"),
  51133. name: "Party",
  51134. image: {
  51135. source: "./media/characters/mab/party.svg",
  51136. extra: 1855/1757,
  51137. bottom: 208/2063
  51138. }
  51139. },
  51140. },
  51141. [
  51142. {
  51143. name: "Normal",
  51144. height: math.unit(165, "feet"),
  51145. default: true
  51146. },
  51147. ]
  51148. ))
  51149. characterMakers.push(() => makeCharacter(
  51150. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51151. {
  51152. feral: {
  51153. height: math.unit(12, "feet"),
  51154. weight: math.unit(20000, "lb"),
  51155. name: "Side",
  51156. image: {
  51157. source: "./media/characters/winter/feral.svg",
  51158. extra: 1286/943,
  51159. bottom: 112/1398
  51160. },
  51161. form: "feral",
  51162. default: true
  51163. },
  51164. feralNsfw: {
  51165. height: math.unit(12, "feet"),
  51166. weight: math.unit(20000, "lb"),
  51167. name: "Side (NSFW)",
  51168. image: {
  51169. source: "./media/characters/winter/feral-nsfw.svg",
  51170. extra: 1286/943,
  51171. bottom: 112/1398
  51172. },
  51173. form: "feral"
  51174. },
  51175. dick: {
  51176. height: math.unit(3.79, "feet"),
  51177. name: "Dick",
  51178. image: {
  51179. source: "./media/characters/winter/dick.svg"
  51180. },
  51181. form: "feral"
  51182. },
  51183. anthro: {
  51184. height: math.unit(12, "feet"),
  51185. weight: math.unit(10, "tons"),
  51186. name: "Anthro",
  51187. image: {
  51188. source: "./media/characters/winter/anthro.svg",
  51189. extra: 1701/1553,
  51190. bottom: 64/1765
  51191. },
  51192. form: "anthro",
  51193. default: true
  51194. },
  51195. },
  51196. [
  51197. {
  51198. name: "Big",
  51199. height: math.unit(12, "feet"),
  51200. default: true,
  51201. form: "feral"
  51202. },
  51203. {
  51204. name: "Big",
  51205. height: math.unit(12, "feet"),
  51206. default: true,
  51207. form: "anthro"
  51208. },
  51209. ],
  51210. {
  51211. "feral": {
  51212. name: "Feral",
  51213. default: true
  51214. },
  51215. "anthro": {
  51216. name: "Anthro"
  51217. }
  51218. }
  51219. ))
  51220. characterMakers.push(() => makeCharacter(
  51221. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51222. {
  51223. front: {
  51224. height: math.unit(4.1, "inches"),
  51225. name: "Front",
  51226. image: {
  51227. source: "./media/characters/alto/front.svg",
  51228. extra: 736/627,
  51229. bottom: 90/826
  51230. }
  51231. },
  51232. },
  51233. [
  51234. {
  51235. name: "Normal",
  51236. height: math.unit(4.1, "inches"),
  51237. default: true
  51238. },
  51239. ]
  51240. ))
  51241. characterMakers.push(() => makeCharacter(
  51242. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51243. {
  51244. sitting: {
  51245. height: math.unit(3, "feet"),
  51246. name: "Sitting",
  51247. image: {
  51248. source: "./media/characters/ratstrid-v/sitting.svg",
  51249. extra: 355/310,
  51250. bottom: 136/491
  51251. }
  51252. },
  51253. },
  51254. [
  51255. {
  51256. name: "Normal",
  51257. height: math.unit(3, "feet"),
  51258. default: true
  51259. },
  51260. ]
  51261. ))
  51262. characterMakers.push(() => makeCharacter(
  51263. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51264. {
  51265. back: {
  51266. height: math.unit(6, "feet"),
  51267. weight: math.unit(450, "lb"),
  51268. name: "Back",
  51269. image: {
  51270. source: "./media/characters/siz/back.svg",
  51271. extra: 1449/1274,
  51272. bottom: 13/1462
  51273. }
  51274. },
  51275. },
  51276. [
  51277. {
  51278. name: "Smallest",
  51279. height: math.unit(18 + 3/12, "feet")
  51280. },
  51281. {
  51282. name: "Modest",
  51283. height: math.unit(56 + 8/12, "feet"),
  51284. default: true
  51285. },
  51286. {
  51287. name: "Largest",
  51288. height: math.unit(3590, "feet")
  51289. },
  51290. ]
  51291. ))
  51292. characterMakers.push(() => makeCharacter(
  51293. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51294. {
  51295. front: {
  51296. height: math.unit(5 + 9/12, "feet"),
  51297. weight: math.unit(150, "lb"),
  51298. name: "Front",
  51299. image: {
  51300. source: "./media/characters/ven/front.svg",
  51301. extra: 1372/1320,
  51302. bottom: 73/1445
  51303. }
  51304. },
  51305. side: {
  51306. height: math.unit(5 + 9/12, "feet"),
  51307. weight: math.unit(1150, "lb"),
  51308. name: "Side",
  51309. image: {
  51310. source: "./media/characters/ven/side.svg",
  51311. extra: 1119/1070,
  51312. bottom: 42/1161
  51313. },
  51314. default: true
  51315. },
  51316. },
  51317. [
  51318. {
  51319. name: "Normal",
  51320. height: math.unit(5 + 9/12, "feet"),
  51321. default: true
  51322. },
  51323. ]
  51324. ))
  51325. characterMakers.push(() => makeCharacter(
  51326. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51327. {
  51328. front: {
  51329. height: math.unit(12, "feet"),
  51330. weight: math.unit(1000, "kg"),
  51331. name: "Front",
  51332. image: {
  51333. source: "./media/characters/maple/front.svg",
  51334. extra: 1193/1081,
  51335. bottom: 22/1215
  51336. }
  51337. },
  51338. },
  51339. [
  51340. {
  51341. name: "Compressed",
  51342. height: math.unit(7, "feet")
  51343. },
  51344. {
  51345. name: "Normal",
  51346. height: math.unit(12, "feet"),
  51347. default: true
  51348. },
  51349. ]
  51350. ))
  51351. characterMakers.push(() => makeCharacter(
  51352. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51353. {
  51354. front: {
  51355. height: math.unit(9, "feet"),
  51356. weight: math.unit(1500, "lb"),
  51357. name: "Front",
  51358. image: {
  51359. source: "./media/characters/nora/front.svg",
  51360. extra: 1348/1286,
  51361. bottom: 218/1566
  51362. }
  51363. },
  51364. erect: {
  51365. height: math.unit(9, "feet"),
  51366. weight: math.unit(11500, "lb"),
  51367. name: "Erect",
  51368. image: {
  51369. source: "./media/characters/nora/erect.svg",
  51370. extra: 1488/1433,
  51371. bottom: 133/1621
  51372. }
  51373. },
  51374. },
  51375. [
  51376. {
  51377. name: "Normal",
  51378. height: math.unit(9, "feet"),
  51379. default: true
  51380. },
  51381. ]
  51382. ))
  51383. characterMakers.push(() => makeCharacter(
  51384. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51385. {
  51386. front: {
  51387. height: math.unit(25, "feet"),
  51388. weight: math.unit(27500, "lb"),
  51389. name: "Front",
  51390. image: {
  51391. source: "./media/characters/north-caudin/front.svg",
  51392. extra: 1184/1082,
  51393. bottom: 23/1207
  51394. }
  51395. },
  51396. },
  51397. [
  51398. {
  51399. name: "Compressed",
  51400. height: math.unit(10, "feet")
  51401. },
  51402. {
  51403. name: "Normal",
  51404. height: math.unit(25, "feet"),
  51405. default: true
  51406. },
  51407. ]
  51408. ))
  51409. characterMakers.push(() => makeCharacter(
  51410. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51411. {
  51412. front: {
  51413. height: math.unit(9, "feet"),
  51414. weight: math.unit(1250, "lb"),
  51415. name: "Front",
  51416. image: {
  51417. source: "./media/characters/merrian/front.svg",
  51418. extra: 2393/2304,
  51419. bottom: 40/2433
  51420. }
  51421. },
  51422. },
  51423. [
  51424. {
  51425. name: "Normal",
  51426. height: math.unit(9, "feet"),
  51427. default: true
  51428. },
  51429. ]
  51430. ))
  51431. characterMakers.push(() => makeCharacter(
  51432. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51433. {
  51434. front: {
  51435. height: math.unit(9, "feet"),
  51436. weight: math.unit(1000, "lb"),
  51437. name: "Front",
  51438. image: {
  51439. source: "./media/characters/hazel/front.svg",
  51440. extra: 2351/2298,
  51441. bottom: 38/2389
  51442. }
  51443. },
  51444. },
  51445. [
  51446. {
  51447. name: "Normal",
  51448. height: math.unit(9, "feet"),
  51449. default: true
  51450. },
  51451. ]
  51452. ))
  51453. characterMakers.push(() => makeCharacter(
  51454. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51455. {
  51456. front: {
  51457. height: math.unit(13, "feet"),
  51458. weight: math.unit(3200, "lb"),
  51459. name: "Front",
  51460. image: {
  51461. source: "./media/characters/emma/front.svg",
  51462. extra: 2263/2029,
  51463. bottom: 68/2331
  51464. }
  51465. },
  51466. },
  51467. [
  51468. {
  51469. name: "Normal",
  51470. height: math.unit(13, "feet"),
  51471. default: true
  51472. },
  51473. ]
  51474. ))
  51475. characterMakers.push(() => makeCharacter(
  51476. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51477. {
  51478. front: {
  51479. height: math.unit(11 + 9/12, "feet"),
  51480. weight: math.unit(2500, "lb"),
  51481. name: "Front",
  51482. image: {
  51483. source: "./media/characters/ilumina/front.svg",
  51484. extra: 2248/2209,
  51485. bottom: 164/2412
  51486. }
  51487. },
  51488. },
  51489. [
  51490. {
  51491. name: "Normal",
  51492. height: math.unit(11 + 9/12, "feet"),
  51493. default: true
  51494. },
  51495. ]
  51496. ))
  51497. characterMakers.push(() => makeCharacter(
  51498. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51499. {
  51500. front: {
  51501. height: math.unit(8 + 10/12, "feet"),
  51502. weight: math.unit(1350, "lb"),
  51503. name: "Front",
  51504. image: {
  51505. source: "./media/characters/moonshine/front.svg",
  51506. extra: 2395/2288,
  51507. bottom: 40/2435
  51508. }
  51509. },
  51510. },
  51511. [
  51512. {
  51513. name: "Normal",
  51514. height: math.unit(8 + 10/12, "feet"),
  51515. default: true
  51516. },
  51517. ]
  51518. ))
  51519. characterMakers.push(() => makeCharacter(
  51520. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51521. {
  51522. front: {
  51523. height: math.unit(14, "feet"),
  51524. weight: math.unit(3400, "lb"),
  51525. name: "Front",
  51526. image: {
  51527. source: "./media/characters/aletia/front.svg",
  51528. extra: 1185/1052,
  51529. bottom: 21/1206
  51530. }
  51531. },
  51532. },
  51533. [
  51534. {
  51535. name: "Compressed",
  51536. height: math.unit(8, "feet")
  51537. },
  51538. {
  51539. name: "Normal",
  51540. height: math.unit(14, "feet"),
  51541. default: true
  51542. },
  51543. ]
  51544. ))
  51545. characterMakers.push(() => makeCharacter(
  51546. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51547. {
  51548. front: {
  51549. height: math.unit(17, "feet"),
  51550. weight: math.unit(6500, "lb"),
  51551. name: "Front",
  51552. image: {
  51553. source: "./media/characters/deidra/front.svg",
  51554. extra: 1201/1081,
  51555. bottom: 16/1217
  51556. }
  51557. },
  51558. },
  51559. [
  51560. {
  51561. name: "Compressed",
  51562. height: math.unit(9 + 6/12, "feet")
  51563. },
  51564. {
  51565. name: "Normal",
  51566. height: math.unit(17, "feet"),
  51567. default: true
  51568. },
  51569. ]
  51570. ))
  51571. characterMakers.push(() => makeCharacter(
  51572. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51573. {
  51574. front: {
  51575. height: math.unit(7 + 4/12, "feet"),
  51576. weight: math.unit(280, "lb"),
  51577. name: "Front",
  51578. image: {
  51579. source: "./media/characters/freki-yrmori/front.svg",
  51580. extra: 1286/1182,
  51581. bottom: 29/1315
  51582. }
  51583. },
  51584. maw: {
  51585. height: math.unit(0.9, "feet"),
  51586. name: "Maw",
  51587. image: {
  51588. source: "./media/characters/freki-yrmori/maw.svg"
  51589. }
  51590. },
  51591. },
  51592. [
  51593. {
  51594. name: "Normal",
  51595. height: math.unit(7 + 4/12, "feet"),
  51596. default: true
  51597. },
  51598. {
  51599. name: "Macro",
  51600. height: math.unit(38.5, "meters")
  51601. },
  51602. ]
  51603. ))
  51604. characterMakers.push(() => makeCharacter(
  51605. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51606. {
  51607. side: {
  51608. height: math.unit(47.2, "meters"),
  51609. weight: math.unit(10000, "tons"),
  51610. name: "Side",
  51611. image: {
  51612. source: "./media/characters/aetherios/side.svg",
  51613. extra: 2363/642,
  51614. bottom: 221/2584
  51615. }
  51616. },
  51617. top: {
  51618. height: math.unit(240, "meters"),
  51619. weight: math.unit(10000, "tons"),
  51620. name: "Top",
  51621. image: {
  51622. source: "./media/characters/aetherios/top.svg"
  51623. }
  51624. },
  51625. bottom: {
  51626. height: math.unit(240, "meters"),
  51627. weight: math.unit(10000, "tons"),
  51628. name: "Bottom",
  51629. image: {
  51630. source: "./media/characters/aetherios/bottom.svg"
  51631. }
  51632. },
  51633. head: {
  51634. height: math.unit(38.6, "meters"),
  51635. name: "Head",
  51636. image: {
  51637. source: "./media/characters/aetherios/head.svg",
  51638. extra: 1335/1112,
  51639. bottom: 0/1335
  51640. }
  51641. },
  51642. front: {
  51643. height: math.unit(29, "meters"),
  51644. name: "Front",
  51645. image: {
  51646. source: "./media/characters/aetherios/front.svg",
  51647. extra: 1266/953,
  51648. bottom: 158/1424
  51649. }
  51650. },
  51651. maw: {
  51652. height: math.unit(16.37, "meters"),
  51653. name: "Maw",
  51654. image: {
  51655. source: "./media/characters/aetherios/maw.svg",
  51656. extra: 748/637,
  51657. bottom: 0/748
  51658. },
  51659. extraAttributes: {
  51660. preyCapacity: {
  51661. name: "Capacity",
  51662. power: 3,
  51663. type: "volume",
  51664. base: math.unit(1000, "people")
  51665. },
  51666. tongueSize: {
  51667. name: "Tongue Size",
  51668. power: 2,
  51669. type: "area",
  51670. base: math.unit(21, "m^2")
  51671. }
  51672. }
  51673. },
  51674. forepaw: {
  51675. height: math.unit(18, "meters"),
  51676. name: "Forepaw",
  51677. image: {
  51678. source: "./media/characters/aetherios/forepaw.svg"
  51679. }
  51680. },
  51681. hindpaw: {
  51682. height: math.unit(23, "meters"),
  51683. name: "Hindpaw",
  51684. image: {
  51685. source: "./media/characters/aetherios/hindpaw.svg"
  51686. }
  51687. },
  51688. genitals: {
  51689. height: math.unit(42, "meters"),
  51690. name: "Genitals",
  51691. image: {
  51692. source: "./media/characters/aetherios/genitals.svg"
  51693. }
  51694. },
  51695. },
  51696. [
  51697. {
  51698. name: "Normal",
  51699. height: math.unit(47.2, "meters"),
  51700. default: true
  51701. },
  51702. {
  51703. name: "Macro",
  51704. height: math.unit(160, "meters")
  51705. },
  51706. {
  51707. name: "Mega",
  51708. height: math.unit(1.87, "km")
  51709. },
  51710. {
  51711. name: "Giga",
  51712. height: math.unit(40000, "km")
  51713. },
  51714. {
  51715. name: "Stellar",
  51716. height: math.unit(158000000, "km")
  51717. },
  51718. {
  51719. name: "Cosmic",
  51720. height: math.unit(9.46e12, "km")
  51721. },
  51722. ]
  51723. ))
  51724. characterMakers.push(() => makeCharacter(
  51725. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51726. {
  51727. front: {
  51728. height: math.unit(5 + 4/12, "feet"),
  51729. weight: math.unit(80, "lb"),
  51730. name: "Front",
  51731. image: {
  51732. source: "./media/characters/mizu-gieeg/front.svg",
  51733. extra: 850/709,
  51734. bottom: 52/902
  51735. }
  51736. },
  51737. back: {
  51738. height: math.unit(5 + 4/12, "feet"),
  51739. weight: math.unit(80, "lb"),
  51740. name: "Back",
  51741. image: {
  51742. source: "./media/characters/mizu-gieeg/back.svg",
  51743. extra: 882/745,
  51744. bottom: 25/907
  51745. }
  51746. },
  51747. },
  51748. [
  51749. {
  51750. name: "Normal",
  51751. height: math.unit(5 + 4/12, "feet"),
  51752. default: true
  51753. },
  51754. ]
  51755. ))
  51756. characterMakers.push(() => makeCharacter(
  51757. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51758. {
  51759. front: {
  51760. height: math.unit(6, "feet"),
  51761. name: "Front",
  51762. image: {
  51763. source: "./media/characters/roselle-st-papier/front.svg",
  51764. extra: 1430/1280,
  51765. bottom: 37/1467
  51766. }
  51767. },
  51768. back: {
  51769. height: math.unit(6, "feet"),
  51770. name: "Back",
  51771. image: {
  51772. source: "./media/characters/roselle-st-papier/back.svg",
  51773. extra: 1491/1296,
  51774. bottom: 23/1514
  51775. }
  51776. },
  51777. ear: {
  51778. height: math.unit(1.26, "feet"),
  51779. name: "Ear",
  51780. image: {
  51781. source: "./media/characters/roselle-st-papier/ear.svg"
  51782. }
  51783. },
  51784. },
  51785. [
  51786. {
  51787. name: "Normal",
  51788. height: math.unit(150, "feet"),
  51789. default: true
  51790. },
  51791. ]
  51792. ))
  51793. characterMakers.push(() => makeCharacter(
  51794. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51795. {
  51796. front: {
  51797. height: math.unit(1, "inches"),
  51798. name: "Front",
  51799. image: {
  51800. source: "./media/characters/valargent/front.svg",
  51801. extra: 1825/1694,
  51802. bottom: 62/1887
  51803. }
  51804. },
  51805. back: {
  51806. height: math.unit(1, "inches"),
  51807. name: "Back",
  51808. image: {
  51809. source: "./media/characters/valargent/back.svg",
  51810. extra: 1775/1682,
  51811. bottom: 88/1863
  51812. }
  51813. },
  51814. },
  51815. [
  51816. {
  51817. name: "Micro",
  51818. height: math.unit(1, "inch"),
  51819. default: true
  51820. },
  51821. ]
  51822. ))
  51823. characterMakers.push(() => makeCharacter(
  51824. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51825. {
  51826. front: {
  51827. height: math.unit(3.4, "meters"),
  51828. name: "Front",
  51829. image: {
  51830. source: "./media/characters/zarina/front.svg",
  51831. extra: 1733/1425,
  51832. bottom: 93/1826
  51833. }
  51834. },
  51835. squatting: {
  51836. height: math.unit(2.14, "meters"),
  51837. name: "Squatting",
  51838. image: {
  51839. source: "./media/characters/zarina/squatting.svg",
  51840. extra: 1073/788,
  51841. bottom: 63/1136
  51842. }
  51843. },
  51844. back: {
  51845. height: math.unit(2.14, "meters"),
  51846. name: "Back",
  51847. image: {
  51848. source: "./media/characters/zarina/back.svg",
  51849. extra: 1128/885,
  51850. bottom: 0/1128
  51851. }
  51852. },
  51853. },
  51854. [
  51855. {
  51856. name: "Normal",
  51857. height: math.unit(3.4, "meters"),
  51858. default: true
  51859. },
  51860. {
  51861. name: "Big",
  51862. height: math.unit(5, "meters")
  51863. },
  51864. {
  51865. name: "Macro",
  51866. height: math.unit(110, "meters")
  51867. },
  51868. ]
  51869. ))
  51870. characterMakers.push(() => makeCharacter(
  51871. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51872. {
  51873. front: {
  51874. height: math.unit(7, "feet"),
  51875. name: "Front",
  51876. image: {
  51877. source: "./media/characters/ventus-astro-fox/front.svg",
  51878. extra: 1792/1623,
  51879. bottom: 28/1820
  51880. }
  51881. },
  51882. back: {
  51883. height: math.unit(7, "feet"),
  51884. name: "Back",
  51885. image: {
  51886. source: "./media/characters/ventus-astro-fox/back.svg",
  51887. extra: 1789/1620,
  51888. bottom: 31/1820
  51889. }
  51890. },
  51891. outfit: {
  51892. height: math.unit(7, "feet"),
  51893. name: "Outfit",
  51894. image: {
  51895. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51896. extra: 1054/925,
  51897. bottom: 15/1069
  51898. }
  51899. },
  51900. head: {
  51901. height: math.unit(1.12, "feet"),
  51902. name: "Head",
  51903. image: {
  51904. source: "./media/characters/ventus-astro-fox/head.svg",
  51905. extra: 866/504,
  51906. bottom: 0/866
  51907. }
  51908. },
  51909. hand: {
  51910. height: math.unit(1, "feet"),
  51911. name: "Hand",
  51912. image: {
  51913. source: "./media/characters/ventus-astro-fox/hand.svg"
  51914. }
  51915. },
  51916. paw: {
  51917. height: math.unit(1.5, "feet"),
  51918. name: "Paw",
  51919. image: {
  51920. source: "./media/characters/ventus-astro-fox/paw.svg"
  51921. }
  51922. },
  51923. },
  51924. [
  51925. {
  51926. name: "Normal",
  51927. height: math.unit(7, "feet"),
  51928. default: true
  51929. },
  51930. {
  51931. name: "Macro",
  51932. height: math.unit(200, "feet")
  51933. },
  51934. {
  51935. name: "Cosmic",
  51936. height: math.unit(3, "universes")
  51937. },
  51938. ]
  51939. ))
  51940. characterMakers.push(() => makeCharacter(
  51941. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51942. {
  51943. front: {
  51944. height: math.unit(3, "meters"),
  51945. weight: math.unit(7000, "lb"),
  51946. name: "Front",
  51947. image: {
  51948. source: "./media/characters/core-t/front.svg",
  51949. extra: 5729/4941,
  51950. bottom: 1129/6858
  51951. }
  51952. },
  51953. },
  51954. [
  51955. {
  51956. name: "Big",
  51957. height: math.unit(3, "meters"),
  51958. default: true
  51959. },
  51960. ]
  51961. ))
  51962. characterMakers.push(() => makeCharacter(
  51963. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51964. {
  51965. normal: {
  51966. height: math.unit(6 + 6/12, "feet"),
  51967. weight: math.unit(275, "lb"),
  51968. name: "Front",
  51969. image: {
  51970. source: "./media/characters/cadbunny/normal.svg",
  51971. extra: 1129/947,
  51972. bottom: 93/1222
  51973. },
  51974. default: true,
  51975. form: "normal"
  51976. },
  51977. gigantamax: {
  51978. height: math.unit(26, "feet"),
  51979. weight: math.unit(16000, "lb"),
  51980. name: "Front",
  51981. image: {
  51982. source: "./media/characters/cadbunny/gigantamax.svg",
  51983. extra: 1133/944,
  51984. bottom: 90/1223
  51985. },
  51986. default: true,
  51987. form: "gigantamax"
  51988. },
  51989. },
  51990. [
  51991. {
  51992. name: "Normal",
  51993. height: math.unit(6 + 6/12, "feet"),
  51994. default: true,
  51995. form: "normal"
  51996. },
  51997. {
  51998. name: "Small",
  51999. height: math.unit(26, "feet"),
  52000. default: true,
  52001. form: "gigantamax"
  52002. },
  52003. {
  52004. name: "Large",
  52005. height: math.unit(78, "feet"),
  52006. form: "gigantamax"
  52007. },
  52008. ],
  52009. {
  52010. "normal": {
  52011. name: "Normal",
  52012. default: true
  52013. },
  52014. "gigantamax": {
  52015. name: "Gigantamax"
  52016. }
  52017. }
  52018. ))
  52019. characterMakers.push(() => makeCharacter(
  52020. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52021. {
  52022. anthroFront: {
  52023. height: math.unit(8, "feet"),
  52024. weight: math.unit(300, "lb"),
  52025. name: "Front",
  52026. image: {
  52027. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52028. extra: 1272/1176,
  52029. bottom: 53/1325
  52030. },
  52031. form: "anthro",
  52032. default: true
  52033. },
  52034. feralSide: {
  52035. height: math.unit(4, "feet"),
  52036. weight: math.unit(250, "lb"),
  52037. name: "Side",
  52038. image: {
  52039. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52040. extra: 731/621,
  52041. bottom: 0/731
  52042. },
  52043. form: "feral",
  52044. default: true
  52045. },
  52046. },
  52047. [
  52048. {
  52049. name: "Regular",
  52050. height: math.unit(8, "feet"),
  52051. form: "anthro"
  52052. },
  52053. {
  52054. name: "Macro",
  52055. height: math.unit(250, "feet"),
  52056. form: "anthro",
  52057. default: true
  52058. },
  52059. {
  52060. name: "Regular",
  52061. height: math.unit(4, "feet"),
  52062. form: "feral"
  52063. },
  52064. {
  52065. name: "Macro",
  52066. height: math.unit(125, "feet"),
  52067. form: "feral",
  52068. default: true
  52069. },
  52070. ],
  52071. {
  52072. "anthro": {
  52073. name: "Anthro",
  52074. default: true
  52075. },
  52076. "feral": {
  52077. name: "Feral",
  52078. },
  52079. }
  52080. ))
  52081. characterMakers.push(() => makeCharacter(
  52082. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52083. {
  52084. front: {
  52085. height: math.unit(11 + 10/12, "feet"),
  52086. weight: math.unit(1587, "kg"),
  52087. name: "Front",
  52088. image: {
  52089. source: "./media/characters/maple-javira-dragon/front.svg",
  52090. extra: 1136/744,
  52091. bottom: 73/1209
  52092. }
  52093. },
  52094. side: {
  52095. height: math.unit(11 + 10/12, "feet"),
  52096. weight: math.unit(1587, "kg"),
  52097. name: "Side",
  52098. image: {
  52099. source: "./media/characters/maple-javira-dragon/side.svg",
  52100. extra: 712/505,
  52101. bottom: 17/729
  52102. }
  52103. },
  52104. head: {
  52105. height: math.unit(8.05, "feet"),
  52106. name: "Head",
  52107. image: {
  52108. source: "./media/characters/maple-javira-dragon/head.svg",
  52109. extra: 1420/1344,
  52110. bottom: 0/1420
  52111. }
  52112. },
  52113. },
  52114. [
  52115. {
  52116. name: "Normal",
  52117. height: math.unit(11 + 10/12, "feet"),
  52118. default: true
  52119. },
  52120. ]
  52121. ))
  52122. characterMakers.push(() => makeCharacter(
  52123. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52124. {
  52125. front: {
  52126. height: math.unit(117, "cm"),
  52127. weight: math.unit(50, "kg"),
  52128. name: "Front",
  52129. image: {
  52130. source: "./media/characters/sonia-wyverntail/front.svg",
  52131. extra: 708/592,
  52132. bottom: 25/733
  52133. }
  52134. },
  52135. },
  52136. [
  52137. {
  52138. name: "Normal",
  52139. height: math.unit(117, "cm"),
  52140. default: true
  52141. },
  52142. ]
  52143. ))
  52144. characterMakers.push(() => makeCharacter(
  52145. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52146. {
  52147. front: {
  52148. height: math.unit(6 + 5/12, "feet"),
  52149. name: "Front",
  52150. image: {
  52151. source: "./media/characters/micah/front.svg",
  52152. extra: 1758/1546,
  52153. bottom: 214/1972
  52154. }
  52155. },
  52156. },
  52157. [
  52158. {
  52159. name: "Normal",
  52160. height: math.unit(6 + 5/12, "feet"),
  52161. default: true
  52162. },
  52163. ]
  52164. ))
  52165. characterMakers.push(() => makeCharacter(
  52166. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52167. {
  52168. front: {
  52169. height: math.unit(1.75, "meters"),
  52170. weight: math.unit(100, "kg"),
  52171. name: "Front",
  52172. image: {
  52173. source: "./media/characters/zarya/front.svg",
  52174. extra: 741/735,
  52175. bottom: 44/785
  52176. },
  52177. extraAttributes: {
  52178. "tailLength": {
  52179. name: "Tail Length",
  52180. power: 1,
  52181. type: "length",
  52182. base: math.unit(180, "cm")
  52183. },
  52184. "pawLength": {
  52185. name: "Paw Length",
  52186. power: 1,
  52187. type: "length",
  52188. base: math.unit(31, "cm")
  52189. },
  52190. }
  52191. },
  52192. side: {
  52193. height: math.unit(1.75, "meters"),
  52194. weight: math.unit(100, "kg"),
  52195. name: "Side",
  52196. image: {
  52197. source: "./media/characters/zarya/side.svg",
  52198. extra: 776/770,
  52199. bottom: 17/793
  52200. },
  52201. extraAttributes: {
  52202. "tailLength": {
  52203. name: "Tail Length",
  52204. power: 1,
  52205. type: "length",
  52206. base: math.unit(180, "cm")
  52207. },
  52208. "pawLength": {
  52209. name: "Paw Length",
  52210. power: 1,
  52211. type: "length",
  52212. base: math.unit(31, "cm")
  52213. },
  52214. }
  52215. },
  52216. back: {
  52217. height: math.unit(1.75, "meters"),
  52218. weight: math.unit(100, "kg"),
  52219. name: "Back",
  52220. image: {
  52221. source: "./media/characters/zarya/back.svg",
  52222. extra: 741/735,
  52223. bottom: 44/785
  52224. },
  52225. extraAttributes: {
  52226. "tailLength": {
  52227. name: "Tail Length",
  52228. power: 1,
  52229. type: "length",
  52230. base: math.unit(180, "cm")
  52231. },
  52232. "pawLength": {
  52233. name: "Paw Length",
  52234. power: 1,
  52235. type: "length",
  52236. base: math.unit(31, "cm")
  52237. },
  52238. }
  52239. },
  52240. frontNoTail: {
  52241. height: math.unit(1.75, "meters"),
  52242. weight: math.unit(100, "kg"),
  52243. name: "Front (No Tail)",
  52244. image: {
  52245. source: "./media/characters/zarya/front-no-tail.svg",
  52246. extra: 741/735,
  52247. bottom: 44/785
  52248. },
  52249. extraAttributes: {
  52250. "tailLength": {
  52251. name: "Tail Length",
  52252. power: 1,
  52253. type: "length",
  52254. base: math.unit(180, "cm")
  52255. },
  52256. "pawLength": {
  52257. name: "Paw Length",
  52258. power: 1,
  52259. type: "length",
  52260. base: math.unit(31, "cm")
  52261. },
  52262. }
  52263. },
  52264. dressed: {
  52265. height: math.unit(1.75, "meters"),
  52266. weight: math.unit(100, "kg"),
  52267. name: "Dressed",
  52268. image: {
  52269. source: "./media/characters/zarya/dressed.svg",
  52270. extra: 683/672,
  52271. bottom: 79/762
  52272. },
  52273. extraAttributes: {
  52274. "tailLength": {
  52275. name: "Tail Length",
  52276. power: 1,
  52277. type: "length",
  52278. base: math.unit(180, "cm")
  52279. },
  52280. "pawLength": {
  52281. name: "Paw Length",
  52282. power: 1,
  52283. type: "length",
  52284. base: math.unit(31, "cm")
  52285. },
  52286. }
  52287. },
  52288. },
  52289. [
  52290. {
  52291. name: "Micro",
  52292. height: math.unit(5, "cm")
  52293. },
  52294. {
  52295. name: "Normal",
  52296. height: math.unit(1.75, "meters"),
  52297. default: true
  52298. },
  52299. {
  52300. name: "Macro",
  52301. height: math.unit(122, "meters")
  52302. },
  52303. ]
  52304. ))
  52305. characterMakers.push(() => makeCharacter(
  52306. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52307. {
  52308. front: {
  52309. height: math.unit(7.5, "feet"),
  52310. name: "Front",
  52311. image: {
  52312. source: "./media/characters/sven-hatisson/front.svg",
  52313. extra: 917/857,
  52314. bottom: 42/959
  52315. }
  52316. },
  52317. back: {
  52318. height: math.unit(7.5, "feet"),
  52319. name: "Back",
  52320. image: {
  52321. source: "./media/characters/sven-hatisson/back.svg",
  52322. extra: 903/856,
  52323. bottom: 15/918
  52324. }
  52325. },
  52326. },
  52327. [
  52328. {
  52329. name: "Base Height",
  52330. height: math.unit(7.5, "feet")
  52331. },
  52332. {
  52333. name: "Usual Height",
  52334. height: math.unit(13.5, "feet"),
  52335. default: true
  52336. },
  52337. {
  52338. name: "Smaller Macro",
  52339. height: math.unit(85, "feet")
  52340. },
  52341. {
  52342. name: "Moderate Macro",
  52343. height: math.unit(320, "feet")
  52344. },
  52345. {
  52346. name: "Large Macro",
  52347. height: math.unit(1000, "feet")
  52348. },
  52349. {
  52350. name: "Largest Size",
  52351. height: math.unit(2, "miles")
  52352. },
  52353. ]
  52354. ))
  52355. characterMakers.push(() => makeCharacter(
  52356. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52357. {
  52358. side: {
  52359. height: math.unit(1.8, "meters"),
  52360. weight: math.unit(275, "kg"),
  52361. name: "Side",
  52362. image: {
  52363. source: "./media/characters/terra/side.svg",
  52364. extra: 1273/1147,
  52365. bottom: 0/1273
  52366. }
  52367. },
  52368. },
  52369. [
  52370. {
  52371. name: "Normal",
  52372. height: math.unit(16.2, "meters"),
  52373. default: true
  52374. },
  52375. ]
  52376. ))
  52377. characterMakers.push(() => makeCharacter(
  52378. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52379. {
  52380. borzoiFront: {
  52381. height: math.unit(6 + 9/12, "feet"),
  52382. name: "Front",
  52383. image: {
  52384. source: "./media/characters/rae/borzoi-front.svg",
  52385. extra: 1161/1098,
  52386. bottom: 31/1192
  52387. },
  52388. form: "borzoi",
  52389. default: true
  52390. },
  52391. werewolfFront: {
  52392. height: math.unit(8 + 7/12, "feet"),
  52393. name: "Front",
  52394. image: {
  52395. source: "./media/characters/rae/werewolf-front.svg",
  52396. extra: 1411/1334,
  52397. bottom: 127/1538
  52398. },
  52399. form: "werewolf",
  52400. default: true
  52401. },
  52402. },
  52403. [
  52404. {
  52405. name: "Normal",
  52406. height: math.unit(6 + 9/12, "feet"),
  52407. default: true,
  52408. form: "borzoi"
  52409. },
  52410. {
  52411. name: "Normal",
  52412. height: math.unit(8 + 7/12, "feet"),
  52413. default: true,
  52414. form: "werewolf"
  52415. },
  52416. ],
  52417. {
  52418. "borzoi": {
  52419. name: "Borzoi",
  52420. default: true
  52421. },
  52422. "werewolf": {
  52423. name: "Werewolf",
  52424. },
  52425. }
  52426. ))
  52427. characterMakers.push(() => makeCharacter(
  52428. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52429. {
  52430. front: {
  52431. height: math.unit(8 + 7/12, "feet"),
  52432. weight: math.unit(482, "lb"),
  52433. name: "Front",
  52434. image: {
  52435. source: "./media/characters/kit/front.svg",
  52436. extra: 1247/1103,
  52437. bottom: 41/1288
  52438. }
  52439. },
  52440. back: {
  52441. height: math.unit(8 + 7/12, "feet"),
  52442. weight: math.unit(482, "lb"),
  52443. name: "Back",
  52444. image: {
  52445. source: "./media/characters/kit/back.svg",
  52446. extra: 1252/1123,
  52447. bottom: 21/1273
  52448. }
  52449. },
  52450. paw: {
  52451. height: math.unit(1.46, "feet"),
  52452. name: "Paw",
  52453. image: {
  52454. source: "./media/characters/kit/paw.svg"
  52455. }
  52456. },
  52457. },
  52458. [
  52459. {
  52460. name: "Normal",
  52461. height: math.unit(2.61, "meters"),
  52462. default: true
  52463. },
  52464. {
  52465. name: "\"Tall\"",
  52466. height: math.unit(8.21, "meters")
  52467. },
  52468. {
  52469. name: "Tall",
  52470. height: math.unit(19.6, "meters")
  52471. },
  52472. {
  52473. name: "Very Tall",
  52474. height: math.unit(57.91, "meters")
  52475. },
  52476. {
  52477. name: "Semi-Macro",
  52478. height: math.unit(138.64, "meters")
  52479. },
  52480. {
  52481. name: "Macro",
  52482. height: math.unit(831.99, "meters")
  52483. },
  52484. {
  52485. name: "EX-Macro",
  52486. height: math.unit(96451121, "meters")
  52487. },
  52488. {
  52489. name: "S1-Omnipotent",
  52490. height: math.unit(4.42074e+9, "meters")
  52491. },
  52492. {
  52493. name: "S2-Omnipotent",
  52494. height: math.unit(9.42074e+17, "meters")
  52495. },
  52496. {
  52497. name: "Omnipotent",
  52498. height: math.unit(4.23112e+24, "meters")
  52499. },
  52500. {
  52501. name: "Hypergod",
  52502. height: math.unit(5.05176e+27, "meters")
  52503. },
  52504. {
  52505. name: "Hypergod-EX",
  52506. height: math.unit(9.45532e+49, "meters")
  52507. },
  52508. {
  52509. name: "Hypergod-SP",
  52510. height: math.unit(9.45532e+195, "meters")
  52511. },
  52512. ]
  52513. ))
  52514. characterMakers.push(() => makeCharacter(
  52515. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52516. {
  52517. side: {
  52518. height: math.unit(0.6, "meters"),
  52519. weight: math.unit(24, "kg"),
  52520. name: "Side",
  52521. image: {
  52522. source: "./media/characters/celeste/side.svg",
  52523. extra: 810/517,
  52524. bottom: 53/863
  52525. }
  52526. },
  52527. },
  52528. [
  52529. {
  52530. name: "Velociraptor",
  52531. height: math.unit(0.6, "meters"),
  52532. default: true
  52533. },
  52534. {
  52535. name: "Utahraptor",
  52536. height: math.unit(1.8, "meters")
  52537. },
  52538. {
  52539. name: "Gallimimus",
  52540. height: math.unit(4.0, "meters")
  52541. },
  52542. {
  52543. name: "Large",
  52544. height: math.unit(20, "meters")
  52545. },
  52546. {
  52547. name: "Planetary",
  52548. height: math.unit(50, "megameters")
  52549. },
  52550. {
  52551. name: "Stellar",
  52552. height: math.unit(1.5, "gigameters")
  52553. },
  52554. {
  52555. name: "Galactic",
  52556. height: math.unit(100, "exameters")
  52557. },
  52558. ]
  52559. ))
  52560. characterMakers.push(() => makeCharacter(
  52561. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52562. {
  52563. front: {
  52564. height: math.unit(6, "feet"),
  52565. weight: math.unit(210, "lb"),
  52566. name: "Front",
  52567. image: {
  52568. source: "./media/characters/glacia/front.svg",
  52569. extra: 958/901,
  52570. bottom: 45/1003
  52571. }
  52572. },
  52573. },
  52574. [
  52575. {
  52576. name: "Macro",
  52577. height: math.unit(1000, "meters"),
  52578. default: true
  52579. },
  52580. ]
  52581. ))
  52582. characterMakers.push(() => makeCharacter(
  52583. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52584. {
  52585. front: {
  52586. height: math.unit(4, "meters"),
  52587. name: "Front",
  52588. image: {
  52589. source: "./media/characters/giri/front.svg",
  52590. extra: 966/894,
  52591. bottom: 21/987
  52592. }
  52593. },
  52594. },
  52595. [
  52596. {
  52597. name: "Normal",
  52598. height: math.unit(4, "meters"),
  52599. default: true
  52600. },
  52601. ]
  52602. ))
  52603. characterMakers.push(() => makeCharacter(
  52604. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52605. {
  52606. back: {
  52607. height: math.unit(4, "feet"),
  52608. weight: math.unit(37, "lb"),
  52609. name: "Back",
  52610. image: {
  52611. source: "./media/characters/tin/back.svg",
  52612. extra: 845/780,
  52613. bottom: 28/873
  52614. }
  52615. },
  52616. },
  52617. [
  52618. {
  52619. name: "Normal",
  52620. height: math.unit(4, "feet"),
  52621. default: true
  52622. },
  52623. ]
  52624. ))
  52625. characterMakers.push(() => makeCharacter(
  52626. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52627. {
  52628. front: {
  52629. height: math.unit(25, "feet"),
  52630. name: "Front",
  52631. image: {
  52632. source: "./media/characters/cadenza-vivace/front.svg",
  52633. extra: 1842/1578,
  52634. bottom: 30/1872
  52635. }
  52636. },
  52637. },
  52638. [
  52639. {
  52640. name: "Macro",
  52641. height: math.unit(25, "feet"),
  52642. default: true
  52643. },
  52644. ]
  52645. ))
  52646. characterMakers.push(() => makeCharacter(
  52647. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52648. {
  52649. front: {
  52650. height: math.unit(10, "feet"),
  52651. weight: math.unit(625, "kg"),
  52652. name: "Front",
  52653. image: {
  52654. source: "./media/characters/zain/front.svg",
  52655. extra: 1682/1498,
  52656. bottom: 223/1905
  52657. }
  52658. },
  52659. back: {
  52660. height: math.unit(10, "feet"),
  52661. weight: math.unit(625, "kg"),
  52662. name: "Back",
  52663. image: {
  52664. source: "./media/characters/zain/back.svg",
  52665. extra: 1814/1657,
  52666. bottom: 152/1966
  52667. }
  52668. },
  52669. head: {
  52670. height: math.unit(10, "feet"),
  52671. weight: math.unit(625, "kg"),
  52672. name: "Head",
  52673. image: {
  52674. source: "./media/characters/zain/head.svg",
  52675. extra: 1059/762,
  52676. bottom: 0/1059
  52677. }
  52678. },
  52679. },
  52680. [
  52681. {
  52682. name: "Normal",
  52683. height: math.unit(10, "feet"),
  52684. default: true
  52685. },
  52686. ]
  52687. ))
  52688. characterMakers.push(() => makeCharacter(
  52689. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52690. {
  52691. front: {
  52692. height: math.unit(6 + 5/12, "feet"),
  52693. weight: math.unit(750, "lb"),
  52694. name: "Front",
  52695. image: {
  52696. source: "./media/characters/ruchex/front.svg",
  52697. extra: 877/820,
  52698. bottom: 17/894
  52699. },
  52700. extraAttributes: {
  52701. "width": {
  52702. name: "Width",
  52703. power: 1,
  52704. type: "length",
  52705. base: math.unit(4.757, "feet")
  52706. },
  52707. }
  52708. },
  52709. },
  52710. [
  52711. {
  52712. name: "Normal",
  52713. height: math.unit(6 + 5/12, "feet"),
  52714. default: true
  52715. },
  52716. ]
  52717. ))
  52718. characterMakers.push(() => makeCharacter(
  52719. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52720. {
  52721. dressedFront: {
  52722. height: math.unit(191, "cm"),
  52723. weight: math.unit(80, "kg"),
  52724. name: "Front",
  52725. image: {
  52726. source: "./media/characters/buster/dressed-front.svg",
  52727. extra: 1022/973,
  52728. bottom: 69/1091
  52729. }
  52730. },
  52731. dressedBack: {
  52732. height: math.unit(191, "cm"),
  52733. weight: math.unit(80, "kg"),
  52734. name: "Back",
  52735. image: {
  52736. source: "./media/characters/buster/dressed-back.svg",
  52737. extra: 1018/970,
  52738. bottom: 55/1073
  52739. }
  52740. },
  52741. nudeFront: {
  52742. height: math.unit(191, "cm"),
  52743. weight: math.unit(80, "kg"),
  52744. name: "Front (Nude)",
  52745. image: {
  52746. source: "./media/characters/buster/nude-front.svg",
  52747. extra: 1022/973,
  52748. bottom: 69/1091
  52749. }
  52750. },
  52751. nudeBack: {
  52752. height: math.unit(191, "cm"),
  52753. weight: math.unit(80, "kg"),
  52754. name: "Back (Nude)",
  52755. image: {
  52756. source: "./media/characters/buster/nude-back.svg",
  52757. extra: 1018/970,
  52758. bottom: 55/1073
  52759. }
  52760. },
  52761. dick: {
  52762. height: math.unit(2.59, "feet"),
  52763. name: "Dick",
  52764. image: {
  52765. source: "./media/characters/buster/dick.svg"
  52766. }
  52767. },
  52768. ass: {
  52769. height: math.unit(1.2, "feet"),
  52770. name: "Ass",
  52771. image: {
  52772. source: "./media/characters/buster/ass.svg"
  52773. }
  52774. },
  52775. },
  52776. [
  52777. {
  52778. name: "Normal",
  52779. height: math.unit(191, "cm"),
  52780. default: true
  52781. },
  52782. ]
  52783. ))
  52784. characterMakers.push(() => makeCharacter(
  52785. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52786. {
  52787. side: {
  52788. height: math.unit(8.1, "feet"),
  52789. weight: math.unit(3500, "lb"),
  52790. name: "Side",
  52791. image: {
  52792. source: "./media/characters/sonya/side.svg",
  52793. extra: 1730/1317,
  52794. bottom: 86/1816
  52795. }
  52796. },
  52797. },
  52798. [
  52799. {
  52800. name: "Normal",
  52801. height: math.unit(8.1, "feet"),
  52802. default: true
  52803. },
  52804. ]
  52805. ))
  52806. characterMakers.push(() => makeCharacter(
  52807. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52808. {
  52809. front: {
  52810. height: math.unit(6, "feet"),
  52811. weight: math.unit(150, "lb"),
  52812. name: "Front",
  52813. image: {
  52814. source: "./media/characters/cadence-andrysiak/front.svg",
  52815. extra: 1164/1121,
  52816. bottom: 60/1224
  52817. }
  52818. },
  52819. back: {
  52820. height: math.unit(6, "feet"),
  52821. weight: math.unit(150, "lb"),
  52822. name: "Back",
  52823. image: {
  52824. source: "./media/characters/cadence-andrysiak/back.svg",
  52825. extra: 1200/1165,
  52826. bottom: 9/1209
  52827. }
  52828. },
  52829. dressed: {
  52830. height: math.unit(6, "feet"),
  52831. weight: math.unit(150, "lb"),
  52832. name: "Dressed",
  52833. image: {
  52834. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52835. extra: 1164/1121,
  52836. bottom: 60/1224
  52837. }
  52838. },
  52839. },
  52840. [
  52841. {
  52842. name: "Micro",
  52843. height: math.unit(1, "mm")
  52844. },
  52845. {
  52846. name: "Normal",
  52847. height: math.unit(6, "feet"),
  52848. default: true
  52849. },
  52850. ]
  52851. ))
  52852. characterMakers.push(() => makeCharacter(
  52853. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52854. {
  52855. front: {
  52856. height: math.unit(60, "inches"),
  52857. weight: math.unit(16, "lb"),
  52858. preyCapacity: math.unit(80, "liters"),
  52859. name: "Front",
  52860. image: {
  52861. source: "./media/characters/penny-lynx/front.svg",
  52862. extra: 1959/1769,
  52863. bottom: 49/2008
  52864. }
  52865. },
  52866. },
  52867. [
  52868. {
  52869. name: "Nokia",
  52870. height: math.unit(2, "inches")
  52871. },
  52872. {
  52873. name: "Desktop",
  52874. height: math.unit(24, "inches")
  52875. },
  52876. {
  52877. name: "TV",
  52878. height: math.unit(60, "inches")
  52879. },
  52880. {
  52881. name: "Jumbotron",
  52882. height: math.unit(12, "feet")
  52883. },
  52884. {
  52885. name: "Billboard",
  52886. height: math.unit(48, "feet"),
  52887. default: true
  52888. },
  52889. {
  52890. name: "IMAX",
  52891. height: math.unit(96, "feet")
  52892. },
  52893. {
  52894. name: "SINGULARITY",
  52895. height: math.unit(864938, "miles")
  52896. },
  52897. ]
  52898. ))
  52899. characterMakers.push(() => makeCharacter(
  52900. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52901. {
  52902. front: {
  52903. height: math.unit(5 + 4/12, "feet"),
  52904. weight: math.unit(230, "lb"),
  52905. name: "Front",
  52906. image: {
  52907. source: "./media/characters/sukebe/front.svg",
  52908. extra: 2130/2038,
  52909. bottom: 90/2220
  52910. }
  52911. },
  52912. back: {
  52913. height: math.unit(3.48, "feet"),
  52914. weight: math.unit(230, "lb"),
  52915. name: "Back",
  52916. image: {
  52917. source: "./media/characters/sukebe/back.svg",
  52918. extra: 1670/1604,
  52919. bottom: 0/1670
  52920. }
  52921. },
  52922. },
  52923. [
  52924. {
  52925. name: "Normal",
  52926. height: math.unit(5 + 4/12, "feet"),
  52927. default: true
  52928. },
  52929. ]
  52930. ))
  52931. characterMakers.push(() => makeCharacter(
  52932. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52933. {
  52934. front: {
  52935. height: math.unit(6, "feet"),
  52936. name: "Front",
  52937. image: {
  52938. source: "./media/characters/nylla/front.svg",
  52939. extra: 1868/1699,
  52940. bottom: 97/1965
  52941. }
  52942. },
  52943. back: {
  52944. height: math.unit(6, "feet"),
  52945. name: "Back",
  52946. image: {
  52947. source: "./media/characters/nylla/back.svg",
  52948. extra: 1889/1712,
  52949. bottom: 93/1982
  52950. }
  52951. },
  52952. frontNsfw: {
  52953. height: math.unit(6, "feet"),
  52954. name: "Front (NSFW)",
  52955. image: {
  52956. source: "./media/characters/nylla/front-nsfw.svg",
  52957. extra: 1868/1699,
  52958. bottom: 97/1965
  52959. },
  52960. extraAttributes: {
  52961. "dickLength": {
  52962. name: "Dick Length",
  52963. power: 1,
  52964. type: "length",
  52965. base: math.unit(1.4, "feet")
  52966. },
  52967. "cumVolume": {
  52968. name: "Cum Volume",
  52969. power: 3,
  52970. type: "volume",
  52971. base: math.unit(100, "mL")
  52972. },
  52973. }
  52974. },
  52975. backNsfw: {
  52976. height: math.unit(6, "feet"),
  52977. name: "Back (NSFW)",
  52978. image: {
  52979. source: "./media/characters/nylla/back-nsfw.svg",
  52980. extra: 1889/1712,
  52981. bottom: 93/1982
  52982. }
  52983. },
  52984. maw: {
  52985. height: math.unit(2.10, "feet"),
  52986. name: "Maw",
  52987. image: {
  52988. source: "./media/characters/nylla/maw.svg"
  52989. }
  52990. },
  52991. paws: {
  52992. height: math.unit(2.06, "feet"),
  52993. name: "Paws",
  52994. image: {
  52995. source: "./media/characters/nylla/paws.svg"
  52996. }
  52997. },
  52998. muzzle: {
  52999. height: math.unit(0.61, "feet"),
  53000. name: "Muzzle",
  53001. image: {
  53002. source: "./media/characters/nylla/muzzle.svg"
  53003. }
  53004. },
  53005. sheath: {
  53006. height: math.unit(1.305, "feet"),
  53007. name: "Sheath",
  53008. image: {
  53009. source: "./media/characters/nylla/sheath.svg"
  53010. }
  53011. },
  53012. },
  53013. [
  53014. {
  53015. name: "Micro",
  53016. height: math.unit(7.5, "inches")
  53017. },
  53018. {
  53019. name: "Normal",
  53020. height: math.unit(7, "feet"),
  53021. default: true
  53022. },
  53023. {
  53024. name: "Macro",
  53025. height: math.unit(60, "feet")
  53026. },
  53027. {
  53028. name: "Mega",
  53029. height: math.unit(200, "feet")
  53030. },
  53031. ]
  53032. ))
  53033. characterMakers.push(() => makeCharacter(
  53034. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53035. {
  53036. front: {
  53037. height: math.unit(10, "feet"),
  53038. weight: math.unit(2300, "lb"),
  53039. name: "Front",
  53040. image: {
  53041. source: "./media/characters/hunt3r/front.svg",
  53042. extra: 1909/1742,
  53043. bottom: 46/1955
  53044. }
  53045. },
  53046. },
  53047. [
  53048. {
  53049. name: "Normal",
  53050. height: math.unit(10, "feet"),
  53051. default: true
  53052. },
  53053. ]
  53054. ))
  53055. characterMakers.push(() => makeCharacter(
  53056. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53057. {
  53058. dressed: {
  53059. height: math.unit(11, "feet"),
  53060. weight: math.unit(18500, "lb"),
  53061. preyCapacity: math.unit(9, "people"),
  53062. name: "Dressed",
  53063. image: {
  53064. source: "./media/characters/cylphis/dressed.svg",
  53065. extra: 1028/1003,
  53066. bottom: 75/1103
  53067. },
  53068. },
  53069. undressed: {
  53070. height: math.unit(11, "feet"),
  53071. weight: math.unit(18500, "lb"),
  53072. preyCapacity: math.unit(9, "people"),
  53073. name: "Undressed",
  53074. image: {
  53075. source: "./media/characters/cylphis/undressed.svg",
  53076. extra: 1028/1003,
  53077. bottom: 75/1103
  53078. }
  53079. },
  53080. full: {
  53081. height: math.unit(11, "feet"),
  53082. weight: math.unit(18500 + 150*9, "lb"),
  53083. preyCapacity: math.unit(9, "people"),
  53084. name: "Full",
  53085. image: {
  53086. source: "./media/characters/cylphis/full.svg",
  53087. extra: 1028/1003,
  53088. bottom: 75/1103
  53089. }
  53090. },
  53091. },
  53092. [
  53093. {
  53094. name: "Small",
  53095. height: math.unit(8, "feet")
  53096. },
  53097. {
  53098. name: "Normal",
  53099. height: math.unit(11, "feet"),
  53100. default: true
  53101. },
  53102. ]
  53103. ))
  53104. characterMakers.push(() => makeCharacter(
  53105. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53106. {
  53107. front: {
  53108. height: math.unit(2 + 7/12, "feet"),
  53109. name: "Front",
  53110. image: {
  53111. source: "./media/characters/orishan/front.svg",
  53112. extra: 1058/1023,
  53113. bottom: 23/1081
  53114. }
  53115. },
  53116. back: {
  53117. height: math.unit(2 + 7/12, "feet"),
  53118. name: "Back",
  53119. image: {
  53120. source: "./media/characters/orishan/back.svg",
  53121. extra: 1058/1023,
  53122. bottom: 23/1081
  53123. }
  53124. },
  53125. },
  53126. [
  53127. {
  53128. name: "Micro",
  53129. height: math.unit(2, "cm")
  53130. },
  53131. {
  53132. name: "Normal",
  53133. height: math.unit(2 + 7/12, "feet"),
  53134. default: true
  53135. },
  53136. ]
  53137. ))
  53138. characterMakers.push(() => makeCharacter(
  53139. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53140. {
  53141. front: {
  53142. height: math.unit(3, "meters"),
  53143. weight: math.unit(508, "kg"),
  53144. name: "Front",
  53145. image: {
  53146. source: "./media/characters/seranis/front.svg",
  53147. extra: 1478/1454,
  53148. bottom: 41/1519
  53149. }
  53150. },
  53151. },
  53152. [
  53153. {
  53154. name: "Normal",
  53155. height: math.unit(3, "meters"),
  53156. default: true
  53157. },
  53158. {
  53159. name: "Macro",
  53160. height: math.unit(108, "meters")
  53161. },
  53162. {
  53163. name: "Megamacro",
  53164. height: math.unit(1250, "meters")
  53165. },
  53166. ]
  53167. ))
  53168. characterMakers.push(() => makeCharacter(
  53169. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53170. {
  53171. undressed: {
  53172. height: math.unit(5 + 3/12, "feet"),
  53173. name: "Undressed",
  53174. image: {
  53175. source: "./media/characters/ankou/undressed.svg",
  53176. extra: 1301/1213,
  53177. bottom: 87/1388
  53178. }
  53179. },
  53180. dressed: {
  53181. height: math.unit(5 + 3/12, "feet"),
  53182. name: "Dressed",
  53183. image: {
  53184. source: "./media/characters/ankou/dressed.svg",
  53185. extra: 1301/1213,
  53186. bottom: 87/1388
  53187. }
  53188. },
  53189. head: {
  53190. height: math.unit(1.61, "feet"),
  53191. name: "Head",
  53192. image: {
  53193. source: "./media/characters/ankou/head.svg"
  53194. }
  53195. },
  53196. },
  53197. [
  53198. {
  53199. name: "Normal",
  53200. height: math.unit(5 + 3/12, "feet"),
  53201. default: true
  53202. },
  53203. ]
  53204. ))
  53205. characterMakers.push(() => makeCharacter(
  53206. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53207. {
  53208. side: {
  53209. height: math.unit(6 + 3/12, "feet"),
  53210. weight: math.unit(200, "kg"),
  53211. name: "Side",
  53212. image: {
  53213. source: "./media/characters/juniper-skunktaur/side.svg",
  53214. extra: 1574/1229,
  53215. bottom: 38/1612
  53216. }
  53217. },
  53218. front: {
  53219. height: math.unit(6 + 3/12, "feet"),
  53220. weight: math.unit(200, "kg"),
  53221. name: "Front",
  53222. image: {
  53223. source: "./media/characters/juniper-skunktaur/front.svg",
  53224. extra: 1337/1278,
  53225. bottom: 22/1359
  53226. }
  53227. },
  53228. back: {
  53229. height: math.unit(6 + 3/12, "feet"),
  53230. weight: math.unit(200, "kg"),
  53231. name: "Back",
  53232. image: {
  53233. source: "./media/characters/juniper-skunktaur/back.svg",
  53234. extra: 1618/1273,
  53235. bottom: 13/1631
  53236. }
  53237. },
  53238. top: {
  53239. height: math.unit(2.62, "feet"),
  53240. weight: math.unit(200, "kg"),
  53241. name: "Top",
  53242. image: {
  53243. source: "./media/characters/juniper-skunktaur/top.svg"
  53244. }
  53245. },
  53246. },
  53247. [
  53248. {
  53249. name: "Normal",
  53250. height: math.unit(6 + 3/12, "feet"),
  53251. default: true
  53252. },
  53253. ]
  53254. ))
  53255. characterMakers.push(() => makeCharacter(
  53256. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53257. {
  53258. front: {
  53259. height: math.unit(20.5, "feet"),
  53260. name: "Front",
  53261. image: {
  53262. source: "./media/characters/rei/front.svg",
  53263. extra: 1349/1195,
  53264. bottom: 31/1380
  53265. }
  53266. },
  53267. back: {
  53268. height: math.unit(20.5, "feet"),
  53269. name: "Back",
  53270. image: {
  53271. source: "./media/characters/rei/back.svg",
  53272. extra: 1358/1204,
  53273. bottom: 22/1380
  53274. }
  53275. },
  53276. pawsDigi: {
  53277. height: math.unit(3.45, "feet"),
  53278. name: "Paws (Digi)",
  53279. image: {
  53280. source: "./media/characters/rei/paws-digi.svg"
  53281. }
  53282. },
  53283. pawsPlanti: {
  53284. height: math.unit(3.45, "feet"),
  53285. name: "Paws (Planti)",
  53286. image: {
  53287. source: "./media/characters/rei/paws-planti.svg"
  53288. }
  53289. },
  53290. },
  53291. [
  53292. {
  53293. name: "Normal",
  53294. height: math.unit(20.5, "feet"),
  53295. default: true
  53296. },
  53297. ]
  53298. ))
  53299. characterMakers.push(() => makeCharacter(
  53300. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53301. {
  53302. front: {
  53303. height: math.unit(5 + 11/12, "feet"),
  53304. name: "Front",
  53305. image: {
  53306. source: "./media/characters/carina/front.svg",
  53307. extra: 1720/1449,
  53308. bottom: 14/1734
  53309. }
  53310. },
  53311. back: {
  53312. height: math.unit(5 + 11/12, "feet"),
  53313. name: "Back",
  53314. image: {
  53315. source: "./media/characters/carina/back.svg",
  53316. extra: 1493/1445,
  53317. bottom: 17/1510
  53318. }
  53319. },
  53320. paw: {
  53321. height: math.unit(0.92, "feet"),
  53322. name: "Paw",
  53323. image: {
  53324. source: "./media/characters/carina/paw.svg"
  53325. }
  53326. },
  53327. },
  53328. [
  53329. {
  53330. name: "Normal",
  53331. height: math.unit(5 + 11/12, "feet"),
  53332. default: true
  53333. },
  53334. ]
  53335. ))
  53336. characterMakers.push(() => makeCharacter(
  53337. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53338. {
  53339. normal_front: {
  53340. height: math.unit(4.88, "meters"),
  53341. name: "Front",
  53342. image: {
  53343. source: "./media/characters/maya/normal-front.svg",
  53344. extra: 1222/1145,
  53345. bottom: 57/1279
  53346. },
  53347. form: "normal",
  53348. default: true
  53349. },
  53350. monstrous_front: {
  53351. height: math.unit(10, "meters"),
  53352. name: "Front",
  53353. image: {
  53354. source: "./media/characters/maya/monstrous-front.svg",
  53355. extra: 1523/1109,
  53356. bottom: 113/1636
  53357. },
  53358. form: "monstrous",
  53359. extraAttributes: {
  53360. "swallowSize": {
  53361. name: "Tailmaw Bite Size",
  53362. power: 3,
  53363. type: "volume",
  53364. base: math.unit(43000, "liters")
  53365. },
  53366. }
  53367. },
  53368. taur_front: {
  53369. height: math.unit(10, "meters"),
  53370. name: "Front",
  53371. image: {
  53372. source: "./media/characters/maya/taur-front.svg",
  53373. extra: 743/506,
  53374. bottom: 101/844
  53375. },
  53376. form: "taur",
  53377. },
  53378. },
  53379. [
  53380. {
  53381. name: "Normal",
  53382. height: math.unit(4.88, "meters"),
  53383. default: true,
  53384. form: "normal"
  53385. },
  53386. {
  53387. name: "Macro",
  53388. height: math.unit(38.1, "meters"),
  53389. form: "normal"
  53390. },
  53391. {
  53392. name: "Macro+",
  53393. height: math.unit(152.4, "meters"),
  53394. form: "normal"
  53395. },
  53396. {
  53397. name: "Macro++",
  53398. height: math.unit(16.09, "km"),
  53399. form: "normal"
  53400. },
  53401. {
  53402. name: "Mega-macro",
  53403. height: math.unit(700, "megameters"),
  53404. form: "normal"
  53405. },
  53406. {
  53407. name: "Satiated",
  53408. height: math.unit(10, "meters"),
  53409. default: true,
  53410. form: "monstrous"
  53411. },
  53412. {
  53413. name: "Hungry",
  53414. height: math.unit(75, "meters"),
  53415. form: "monstrous"
  53416. },
  53417. {
  53418. name: "Ravenous",
  53419. height: math.unit(500, "meters"),
  53420. form: "monstrous"
  53421. },
  53422. {
  53423. name: "\"Normal\"",
  53424. height: math.unit(10, "meters"),
  53425. form: "taur"
  53426. },
  53427. {
  53428. name: "Macro",
  53429. height: math.unit(50, "meters"),
  53430. form: "taur"
  53431. },
  53432. ],
  53433. {
  53434. "normal": {
  53435. name: "Normal",
  53436. default: true
  53437. },
  53438. "monstrous": {
  53439. name: "Monstrous",
  53440. },
  53441. "taur": {
  53442. name: "Taur",
  53443. },
  53444. }
  53445. ))
  53446. characterMakers.push(() => makeCharacter(
  53447. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53448. {
  53449. front: {
  53450. height: math.unit(6 + 2/12, "feet"),
  53451. weight: math.unit(500, "lb"),
  53452. preyCapacity: math.unit(4, "people"),
  53453. name: "Front",
  53454. image: {
  53455. source: "./media/characters/yepir/front.svg"
  53456. }
  53457. },
  53458. side: {
  53459. height: math.unit(6 + 2/12, "feet"),
  53460. weight: math.unit(500, "lb"),
  53461. preyCapacity: math.unit(4, "people"),
  53462. name: "Side",
  53463. image: {
  53464. source: "./media/characters/yepir/side.svg"
  53465. }
  53466. },
  53467. paw: {
  53468. height: math.unit(1.05, "feet"),
  53469. name: "Paw",
  53470. image: {
  53471. source: "./media/characters/yepir/paw.svg"
  53472. }
  53473. },
  53474. },
  53475. [
  53476. {
  53477. name: "Normal",
  53478. height: math.unit(6 + 2/12, "feet"),
  53479. default: true
  53480. },
  53481. ]
  53482. ))
  53483. characterMakers.push(() => makeCharacter(
  53484. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53485. {
  53486. front: {
  53487. height: math.unit(5 + 4/12, "feet"),
  53488. name: "Front",
  53489. image: {
  53490. source: "./media/characters/russec/front.svg",
  53491. extra: 1926/1626,
  53492. bottom: 72/1998
  53493. }
  53494. },
  53495. back: {
  53496. height: math.unit(5 + 4/12, "feet"),
  53497. name: "Back",
  53498. image: {
  53499. source: "./media/characters/russec/back.svg",
  53500. extra: 1910/1591,
  53501. bottom: 48/1958
  53502. }
  53503. },
  53504. },
  53505. [
  53506. {
  53507. name: "Small",
  53508. height: math.unit(5 + 4/12, "feet")
  53509. },
  53510. {
  53511. name: "Normal",
  53512. height: math.unit(72, "feet"),
  53513. default: true
  53514. },
  53515. ]
  53516. ))
  53517. characterMakers.push(() => makeCharacter(
  53518. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53519. {
  53520. side: {
  53521. height: math.unit(12, "feet"),
  53522. name: "Side",
  53523. image: {
  53524. source: "./media/characters/cianus/side.svg",
  53525. extra: 808/526,
  53526. bottom: 61/869
  53527. }
  53528. },
  53529. },
  53530. [
  53531. {
  53532. name: "Normal",
  53533. height: math.unit(12, "feet"),
  53534. default: true
  53535. },
  53536. ]
  53537. ))
  53538. characterMakers.push(() => makeCharacter(
  53539. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53540. {
  53541. front: {
  53542. height: math.unit(9 + 6/12, "feet"),
  53543. weight: math.unit(300, "lb"),
  53544. name: "Front",
  53545. image: {
  53546. source: "./media/characters/ahab/front.svg",
  53547. extra: 1897/1868,
  53548. bottom: 121/2018
  53549. }
  53550. },
  53551. frontNsfw: {
  53552. height: math.unit(9 + 6/12, "feet"),
  53553. weight: math.unit(300, "lb"),
  53554. name: "Front-nsfw",
  53555. image: {
  53556. source: "./media/characters/ahab/front-nsfw.svg",
  53557. extra: 1897/1868,
  53558. bottom: 121/2018
  53559. }
  53560. },
  53561. },
  53562. [
  53563. {
  53564. name: "Normal",
  53565. height: math.unit(9 + 6/12, "feet")
  53566. },
  53567. {
  53568. name: "Macro",
  53569. height: math.unit(657, "feet"),
  53570. default: true
  53571. },
  53572. ]
  53573. ))
  53574. characterMakers.push(() => makeCharacter(
  53575. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53576. {
  53577. front: {
  53578. height: math.unit(2.69, "meters"),
  53579. weight: math.unit(132, "kg"),
  53580. name: "Front",
  53581. image: {
  53582. source: "./media/characters/aarkus/front.svg",
  53583. extra: 1400/1231,
  53584. bottom: 34/1434
  53585. }
  53586. },
  53587. back: {
  53588. height: math.unit(2.69, "meters"),
  53589. weight: math.unit(132, "kg"),
  53590. name: "Back",
  53591. image: {
  53592. source: "./media/characters/aarkus/back.svg",
  53593. extra: 1381/1218,
  53594. bottom: 30/1411
  53595. }
  53596. },
  53597. frontNsfw: {
  53598. height: math.unit(2.69, "meters"),
  53599. weight: math.unit(132, "kg"),
  53600. name: "Front (NSFW)",
  53601. image: {
  53602. source: "./media/characters/aarkus/front-nsfw.svg",
  53603. extra: 1400/1231,
  53604. bottom: 34/1434
  53605. }
  53606. },
  53607. foot: {
  53608. height: math.unit(1.45, "feet"),
  53609. name: "Foot",
  53610. image: {
  53611. source: "./media/characters/aarkus/foot.svg"
  53612. }
  53613. },
  53614. head: {
  53615. height: math.unit(2.85, "feet"),
  53616. name: "Head",
  53617. image: {
  53618. source: "./media/characters/aarkus/head.svg"
  53619. }
  53620. },
  53621. headAlt: {
  53622. height: math.unit(3.07, "feet"),
  53623. name: "Head (Alt)",
  53624. image: {
  53625. source: "./media/characters/aarkus/head-alt.svg"
  53626. }
  53627. },
  53628. mouth: {
  53629. height: math.unit(1.25, "feet"),
  53630. name: "Mouth",
  53631. image: {
  53632. source: "./media/characters/aarkus/mouth.svg"
  53633. }
  53634. },
  53635. dick: {
  53636. height: math.unit(1.77, "feet"),
  53637. name: "Dick",
  53638. image: {
  53639. source: "./media/characters/aarkus/dick.svg"
  53640. }
  53641. },
  53642. },
  53643. [
  53644. {
  53645. name: "Normal",
  53646. height: math.unit(2.69, "meters"),
  53647. default: true
  53648. },
  53649. {
  53650. name: "Macro",
  53651. height: math.unit(269, "meters")
  53652. },
  53653. {
  53654. name: "Macro+",
  53655. height: math.unit(672.5, "meters")
  53656. },
  53657. {
  53658. name: "Megamacro",
  53659. height: math.unit(2.017, "km")
  53660. },
  53661. ]
  53662. ))
  53663. characterMakers.push(() => makeCharacter(
  53664. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53665. {
  53666. front: {
  53667. height: math.unit(23.47, "cm"),
  53668. weight: math.unit(600, "grams"),
  53669. name: "Front",
  53670. image: {
  53671. source: "./media/characters/diode/front.svg",
  53672. extra: 1778/1396,
  53673. bottom: 95/1873
  53674. }
  53675. },
  53676. side: {
  53677. height: math.unit(23.47, "cm"),
  53678. weight: math.unit(600, "grams"),
  53679. name: "Side",
  53680. image: {
  53681. source: "./media/characters/diode/side.svg",
  53682. extra: 1831/1404,
  53683. bottom: 86/1917
  53684. }
  53685. },
  53686. wings: {
  53687. height: math.unit(0.683, "feet"),
  53688. name: "Wings",
  53689. image: {
  53690. source: "./media/characters/diode/wings.svg"
  53691. }
  53692. },
  53693. },
  53694. [
  53695. {
  53696. name: "Normal",
  53697. height: math.unit(23.47, "cm"),
  53698. default: true
  53699. },
  53700. ]
  53701. ))
  53702. characterMakers.push(() => makeCharacter(
  53703. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53704. {
  53705. front: {
  53706. height: math.unit(6 + 3/12, "feet"),
  53707. weight: math.unit(250, "lb"),
  53708. name: "Front",
  53709. image: {
  53710. source: "./media/characters/reika/front.svg",
  53711. extra: 1120/1078,
  53712. bottom: 86/1206
  53713. }
  53714. },
  53715. },
  53716. [
  53717. {
  53718. name: "Normal",
  53719. height: math.unit(6 + 3/12, "feet"),
  53720. default: true
  53721. },
  53722. ]
  53723. ))
  53724. characterMakers.push(() => makeCharacter(
  53725. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53726. {
  53727. front: {
  53728. height: math.unit(16 + 8/12, "feet"),
  53729. weight: math.unit(9000, "lb"),
  53730. name: "Front",
  53731. image: {
  53732. source: "./media/characters/lokuto-takama/front.svg",
  53733. extra: 1774/1632,
  53734. bottom: 147/1921
  53735. },
  53736. extraAttributes: {
  53737. "bustWidth": {
  53738. name: "Bust Width",
  53739. power: 1,
  53740. type: "length",
  53741. base: math.unit(2.4, "meters")
  53742. },
  53743. "breastWeight": {
  53744. name: "Breast Weight",
  53745. power: 3,
  53746. type: "mass",
  53747. base: math.unit(1000, "kg")
  53748. },
  53749. }
  53750. },
  53751. },
  53752. [
  53753. {
  53754. name: "Normal",
  53755. height: math.unit(16 + 8/12, "feet"),
  53756. default: true
  53757. },
  53758. ]
  53759. ))
  53760. characterMakers.push(() => makeCharacter(
  53761. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53762. {
  53763. front: {
  53764. height: math.unit(10, "cm"),
  53765. weight: math.unit(850, "grams"),
  53766. name: "Front",
  53767. image: {
  53768. source: "./media/characters/owak-bone/front.svg",
  53769. extra: 1965/1801,
  53770. bottom: 31/1996
  53771. }
  53772. },
  53773. },
  53774. [
  53775. {
  53776. name: "Normal",
  53777. height: math.unit(10, "cm"),
  53778. default: true
  53779. },
  53780. ]
  53781. ))
  53782. characterMakers.push(() => makeCharacter(
  53783. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53784. {
  53785. front: {
  53786. height: math.unit(2 + 6/12, "feet"),
  53787. weight: math.unit(9, "lb"),
  53788. name: "Front",
  53789. image: {
  53790. source: "./media/characters/muffin/front.svg",
  53791. extra: 1220/1195,
  53792. bottom: 84/1304
  53793. }
  53794. },
  53795. },
  53796. [
  53797. {
  53798. name: "Normal",
  53799. height: math.unit(2 + 6/12, "feet"),
  53800. default: true
  53801. },
  53802. ]
  53803. ))
  53804. characterMakers.push(() => makeCharacter(
  53805. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53806. {
  53807. front: {
  53808. height: math.unit(7, "feet"),
  53809. name: "Front",
  53810. image: {
  53811. source: "./media/characters/chimera/front.svg",
  53812. extra: 1752/1614,
  53813. bottom: 68/1820
  53814. }
  53815. },
  53816. },
  53817. [
  53818. {
  53819. name: "Normal",
  53820. height: math.unit(7, "feet")
  53821. },
  53822. {
  53823. name: "Gigamacro",
  53824. height: math.unit(2.9, "gigameters"),
  53825. default: true
  53826. },
  53827. {
  53828. name: "Universal",
  53829. height: math.unit(1.56e26, "yottameters")
  53830. },
  53831. ]
  53832. ))
  53833. characterMakers.push(() => makeCharacter(
  53834. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53835. {
  53836. front: {
  53837. height: math.unit(3, "feet"),
  53838. weight: math.unit(20, "lb"),
  53839. name: "Front",
  53840. image: {
  53841. source: "./media/characters/kit-fennec-fox/front.svg",
  53842. extra: 1027/932,
  53843. bottom: 16/1043
  53844. }
  53845. },
  53846. back: {
  53847. height: math.unit(3, "feet"),
  53848. weight: math.unit(20, "lb"),
  53849. name: "Back",
  53850. image: {
  53851. source: "./media/characters/kit-fennec-fox/back.svg",
  53852. extra: 1027/932,
  53853. bottom: 16/1043
  53854. }
  53855. },
  53856. },
  53857. [
  53858. {
  53859. name: "Normal",
  53860. height: math.unit(3, "feet"),
  53861. default: true
  53862. },
  53863. ]
  53864. ))
  53865. characterMakers.push(() => makeCharacter(
  53866. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53867. {
  53868. front: {
  53869. height: math.unit(167, "cm"),
  53870. name: "Front",
  53871. image: {
  53872. source: "./media/characters/blue-otter/front.svg",
  53873. extra: 1951/1920,
  53874. bottom: 31/1982
  53875. }
  53876. },
  53877. },
  53878. [
  53879. {
  53880. name: "Otter-Sized",
  53881. height: math.unit(100, "cm")
  53882. },
  53883. {
  53884. name: "Normal",
  53885. height: math.unit(167, "cm"),
  53886. default: true
  53887. },
  53888. ]
  53889. ))
  53890. characterMakers.push(() => makeCharacter(
  53891. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53892. {
  53893. front: {
  53894. height: math.unit(4 + 4/12, "feet"),
  53895. name: "Front",
  53896. image: {
  53897. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53898. extra: 1072/1067,
  53899. bottom: 117/1189
  53900. }
  53901. },
  53902. back: {
  53903. height: math.unit(4 + 4/12, "feet"),
  53904. name: "Back",
  53905. image: {
  53906. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53907. extra: 1135/1129,
  53908. bottom: 57/1192
  53909. }
  53910. },
  53911. head: {
  53912. height: math.unit(1.77, "feet"),
  53913. name: "Head",
  53914. image: {
  53915. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53916. }
  53917. },
  53918. },
  53919. [
  53920. {
  53921. name: "Normal",
  53922. height: math.unit(4 + 4/12, "feet"),
  53923. default: true
  53924. },
  53925. ]
  53926. ))
  53927. characterMakers.push(() => makeCharacter(
  53928. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53929. {
  53930. front: {
  53931. height: math.unit(2, "inches"),
  53932. name: "Front",
  53933. image: {
  53934. source: "./media/characters/carley-hartford/front.svg",
  53935. extra: 1035/988,
  53936. bottom: 23/1058
  53937. }
  53938. },
  53939. back: {
  53940. height: math.unit(2, "inches"),
  53941. name: "Back",
  53942. image: {
  53943. source: "./media/characters/carley-hartford/back.svg",
  53944. extra: 1035/988,
  53945. bottom: 23/1058
  53946. }
  53947. },
  53948. dressed: {
  53949. height: math.unit(2, "inches"),
  53950. name: "Dressed",
  53951. image: {
  53952. source: "./media/characters/carley-hartford/dressed.svg",
  53953. extra: 651/620,
  53954. bottom: 0/651
  53955. }
  53956. },
  53957. },
  53958. [
  53959. {
  53960. name: "Micro",
  53961. height: math.unit(2, "inches"),
  53962. default: true
  53963. },
  53964. {
  53965. name: "Macro",
  53966. height: math.unit(6 + 3/12, "feet")
  53967. },
  53968. ]
  53969. ))
  53970. characterMakers.push(() => makeCharacter(
  53971. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53972. {
  53973. front: {
  53974. height: math.unit(2 + 3/12, "feet"),
  53975. weight: math.unit(15 + 7/16, "lb"),
  53976. name: "Front",
  53977. image: {
  53978. source: "./media/characters/duke/front.svg",
  53979. extra: 910/815,
  53980. bottom: 30/940
  53981. }
  53982. },
  53983. },
  53984. [
  53985. {
  53986. name: "Normal",
  53987. height: math.unit(2 + 3/12, "feet"),
  53988. default: true
  53989. },
  53990. ]
  53991. ))
  53992. characterMakers.push(() => makeCharacter(
  53993. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53994. {
  53995. front: {
  53996. height: math.unit(5 + 4/12, "feet"),
  53997. weight: math.unit(156, "lb"),
  53998. name: "Front",
  53999. image: {
  54000. source: "./media/characters/dein/front.svg",
  54001. extra: 855/815,
  54002. bottom: 48/903
  54003. }
  54004. },
  54005. side: {
  54006. height: math.unit(5 + 4/12, "feet"),
  54007. weight: math.unit(156, "lb"),
  54008. name: "side",
  54009. image: {
  54010. source: "./media/characters/dein/side.svg",
  54011. extra: 846/803,
  54012. bottom: 25/871
  54013. }
  54014. },
  54015. maw: {
  54016. height: math.unit(1.45, "feet"),
  54017. name: "Maw",
  54018. image: {
  54019. source: "./media/characters/dein/maw.svg"
  54020. }
  54021. },
  54022. },
  54023. [
  54024. {
  54025. name: "Ferret Sized",
  54026. height: math.unit(2 + 5/12, "feet")
  54027. },
  54028. {
  54029. name: "Normal",
  54030. height: math.unit(5 + 4/12, "feet"),
  54031. default: true
  54032. },
  54033. ]
  54034. ))
  54035. characterMakers.push(() => makeCharacter(
  54036. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54037. {
  54038. front: {
  54039. height: math.unit(84 + 8/12, "feet"),
  54040. weight: math.unit(942180, "lb"),
  54041. name: "Front",
  54042. image: {
  54043. source: "./media/characters/daurine-arima/front.svg",
  54044. extra: 1989/1782,
  54045. bottom: 37/2026
  54046. }
  54047. },
  54048. side: {
  54049. height: math.unit(84 + 8/12, "feet"),
  54050. weight: math.unit(942180, "lb"),
  54051. name: "Side",
  54052. image: {
  54053. source: "./media/characters/daurine-arima/side.svg",
  54054. extra: 1997/1790,
  54055. bottom: 21/2018
  54056. }
  54057. },
  54058. back: {
  54059. height: math.unit(84 + 8/12, "feet"),
  54060. weight: math.unit(942180, "lb"),
  54061. name: "Back",
  54062. image: {
  54063. source: "./media/characters/daurine-arima/back.svg",
  54064. extra: 1992/1800,
  54065. bottom: 12/2004
  54066. }
  54067. },
  54068. head: {
  54069. height: math.unit(15.5, "feet"),
  54070. name: "Head",
  54071. image: {
  54072. source: "./media/characters/daurine-arima/head.svg"
  54073. }
  54074. },
  54075. headAlt: {
  54076. height: math.unit(19.19, "feet"),
  54077. name: "Head (Alt)",
  54078. image: {
  54079. source: "./media/characters/daurine-arima/head-alt.svg"
  54080. }
  54081. },
  54082. },
  54083. [
  54084. {
  54085. name: "Minimum height",
  54086. height: math.unit(8 + 10/12, "feet")
  54087. },
  54088. {
  54089. name: "Comfort height",
  54090. height: math.unit(19 + 6 /12, "feet")
  54091. },
  54092. {
  54093. name: "\"Normal\" height",
  54094. height: math.unit(28 + 10/12, "feet")
  54095. },
  54096. {
  54097. name: "Base height",
  54098. height: math.unit(84 + 8/12, "feet"),
  54099. default: true
  54100. },
  54101. {
  54102. name: "Mini-macro",
  54103. height: math.unit(2360, "feet")
  54104. },
  54105. {
  54106. name: "Macro",
  54107. height: math.unit(10, "miles")
  54108. },
  54109. {
  54110. name: "Goddess",
  54111. height: math.unit(9.99e40, "yottameters")
  54112. },
  54113. ]
  54114. ))
  54115. characterMakers.push(() => makeCharacter(
  54116. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54117. {
  54118. front: {
  54119. height: math.unit(2.3, "meters"),
  54120. name: "Front",
  54121. image: {
  54122. source: "./media/characters/cilenomon/front.svg",
  54123. extra: 1963/1778,
  54124. bottom: 54/2017
  54125. }
  54126. },
  54127. },
  54128. [
  54129. {
  54130. name: "Normal",
  54131. height: math.unit(2.3, "meters"),
  54132. default: true
  54133. },
  54134. {
  54135. name: "Big",
  54136. height: math.unit(5, "meters")
  54137. },
  54138. {
  54139. name: "Macro",
  54140. height: math.unit(30, "meters")
  54141. },
  54142. {
  54143. name: "True",
  54144. height: math.unit(1, "universe")
  54145. },
  54146. ]
  54147. ))
  54148. characterMakers.push(() => makeCharacter(
  54149. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54150. {
  54151. front: {
  54152. height: math.unit(5, "feet"),
  54153. name: "Front",
  54154. image: {
  54155. source: "./media/characters/sen-mink/front.svg",
  54156. extra: 1727/1675,
  54157. bottom: 35/1762
  54158. }
  54159. },
  54160. },
  54161. [
  54162. {
  54163. name: "Normal",
  54164. height: math.unit(5, "feet"),
  54165. default: true
  54166. },
  54167. ]
  54168. ))
  54169. characterMakers.push(() => makeCharacter(
  54170. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54171. {
  54172. front: {
  54173. height: math.unit(5.42999, "feet"),
  54174. weight: math.unit(100, "lb"),
  54175. name: "Front",
  54176. image: {
  54177. source: "./media/characters/ophois/front.svg",
  54178. extra: 1429/1286,
  54179. bottom: 60/1489
  54180. }
  54181. },
  54182. },
  54183. [
  54184. {
  54185. name: "Normal",
  54186. height: math.unit(5.42999, "feet"),
  54187. default: true
  54188. },
  54189. ]
  54190. ))
  54191. characterMakers.push(() => makeCharacter(
  54192. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54193. {
  54194. front: {
  54195. height: math.unit(2, "meters"),
  54196. name: "Front",
  54197. image: {
  54198. source: "./media/characters/riley/front.svg",
  54199. extra: 1779/1754,
  54200. bottom: 139/1918
  54201. }
  54202. },
  54203. },
  54204. [
  54205. {
  54206. name: "Normal",
  54207. height: math.unit(2, "meters"),
  54208. default: true
  54209. },
  54210. ]
  54211. ))
  54212. characterMakers.push(() => makeCharacter(
  54213. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54214. {
  54215. front: {
  54216. height: math.unit(6 + 2/12, "feet"),
  54217. weight: math.unit(195, "lb"),
  54218. preyCapacity: math.unit(6, "people"),
  54219. name: "Front",
  54220. image: {
  54221. source: "./media/characters/shuken-flash/front.svg",
  54222. extra: 1905/1739,
  54223. bottom: 65/1970
  54224. }
  54225. },
  54226. back: {
  54227. height: math.unit(6 + 2/12, "feet"),
  54228. weight: math.unit(195, "lb"),
  54229. preyCapacity: math.unit(6, "people"),
  54230. name: "Back",
  54231. image: {
  54232. source: "./media/characters/shuken-flash/back.svg",
  54233. extra: 1912/1751,
  54234. bottom: 13/1925
  54235. }
  54236. },
  54237. },
  54238. [
  54239. {
  54240. name: "Normal",
  54241. height: math.unit(6 + 2/12, "feet"),
  54242. default: true
  54243. },
  54244. ]
  54245. ))
  54246. characterMakers.push(() => makeCharacter(
  54247. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54248. {
  54249. front: {
  54250. height: math.unit(5 + 9/12, "feet"),
  54251. weight: math.unit(150, "lb"),
  54252. name: "Front",
  54253. image: {
  54254. source: "./media/characters/plat/front.svg",
  54255. extra: 1816/1703,
  54256. bottom: 43/1859
  54257. }
  54258. },
  54259. side: {
  54260. height: math.unit(5 + 9/12, "feet"),
  54261. weight: math.unit(300, "lb"),
  54262. name: "Side",
  54263. image: {
  54264. source: "./media/characters/plat/side.svg",
  54265. extra: 1824/1699,
  54266. bottom: 18/1842
  54267. }
  54268. },
  54269. },
  54270. [
  54271. {
  54272. name: "Normal",
  54273. height: math.unit(5 + 9/12, "feet"),
  54274. default: true
  54275. },
  54276. ]
  54277. ))
  54278. characterMakers.push(() => makeCharacter(
  54279. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54280. {
  54281. front: {
  54282. height: math.unit(9, "feet"),
  54283. weight: math.unit(1800, "lb"),
  54284. name: "Front",
  54285. image: {
  54286. source: "./media/characters/elaine/front.svg",
  54287. extra: 1833/1354,
  54288. bottom: 25/1858
  54289. }
  54290. },
  54291. back: {
  54292. height: math.unit(8.8, "feet"),
  54293. weight: math.unit(1800, "lb"),
  54294. name: "Back",
  54295. image: {
  54296. source: "./media/characters/elaine/back.svg",
  54297. extra: 1641/1233,
  54298. bottom: 53/1694
  54299. }
  54300. },
  54301. },
  54302. [
  54303. {
  54304. name: "Normal",
  54305. height: math.unit(9, "feet"),
  54306. default: true
  54307. },
  54308. ]
  54309. ))
  54310. characterMakers.push(() => makeCharacter(
  54311. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54312. {
  54313. front: {
  54314. height: math.unit(17 + 9/12, "feet"),
  54315. weight: math.unit(8000, "lb"),
  54316. name: "Front",
  54317. image: {
  54318. source: "./media/characters/vera-raven/front.svg",
  54319. extra: 1457/1412,
  54320. bottom: 121/1578
  54321. }
  54322. },
  54323. side: {
  54324. height: math.unit(17 + 9/12, "feet"),
  54325. weight: math.unit(8000, "lb"),
  54326. name: "Side",
  54327. image: {
  54328. source: "./media/characters/vera-raven/side.svg",
  54329. extra: 1510/1464,
  54330. bottom: 54/1564
  54331. }
  54332. },
  54333. },
  54334. [
  54335. {
  54336. name: "Normal",
  54337. height: math.unit(17 + 9/12, "feet"),
  54338. default: true
  54339. },
  54340. ]
  54341. ))
  54342. characterMakers.push(() => makeCharacter(
  54343. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54344. {
  54345. dressed: {
  54346. height: math.unit(6 + 9/12, "feet"),
  54347. name: "Dressed",
  54348. image: {
  54349. source: "./media/characters/nakisha/dressed.svg",
  54350. extra: 1909/1757,
  54351. bottom: 48/1957
  54352. }
  54353. },
  54354. nude: {
  54355. height: math.unit(6 + 9/12, "feet"),
  54356. name: "Nude",
  54357. image: {
  54358. source: "./media/characters/nakisha/nude.svg",
  54359. extra: 1917/1765,
  54360. bottom: 34/1951
  54361. }
  54362. },
  54363. },
  54364. [
  54365. {
  54366. name: "Normal",
  54367. height: math.unit(6 + 9/12, "feet"),
  54368. default: true
  54369. },
  54370. ]
  54371. ))
  54372. characterMakers.push(() => makeCharacter(
  54373. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54374. {
  54375. front: {
  54376. height: math.unit(87, "meters"),
  54377. name: "Front",
  54378. image: {
  54379. source: "./media/characters/serafin/front.svg",
  54380. extra: 1919/1776,
  54381. bottom: 65/1984
  54382. }
  54383. },
  54384. },
  54385. [
  54386. {
  54387. name: "Normal",
  54388. height: math.unit(87, "meters"),
  54389. default: true
  54390. },
  54391. ]
  54392. ))
  54393. characterMakers.push(() => makeCharacter(
  54394. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54395. {
  54396. front: {
  54397. height: math.unit(6, "feet"),
  54398. weight: math.unit(200, "lb"),
  54399. name: "Front",
  54400. image: {
  54401. source: "./media/characters/poptart/front.svg",
  54402. extra: 615/583,
  54403. bottom: 23/638
  54404. }
  54405. },
  54406. back: {
  54407. height: math.unit(6, "feet"),
  54408. weight: math.unit(200, "lb"),
  54409. name: "Back",
  54410. image: {
  54411. source: "./media/characters/poptart/back.svg",
  54412. extra: 617/584,
  54413. bottom: 22/639
  54414. }
  54415. },
  54416. frontNsfw: {
  54417. height: math.unit(6, "feet"),
  54418. weight: math.unit(200, "lb"),
  54419. name: "Front (NSFW)",
  54420. image: {
  54421. source: "./media/characters/poptart/front-nsfw.svg",
  54422. extra: 615/583,
  54423. bottom: 23/638
  54424. }
  54425. },
  54426. backNsfw: {
  54427. height: math.unit(6, "feet"),
  54428. weight: math.unit(200, "lb"),
  54429. name: "Back (NSFW)",
  54430. image: {
  54431. source: "./media/characters/poptart/back-nsfw.svg",
  54432. extra: 617/584,
  54433. bottom: 22/639
  54434. }
  54435. },
  54436. hand: {
  54437. height: math.unit(1.14, "feet"),
  54438. name: "Hand",
  54439. image: {
  54440. source: "./media/characters/poptart/hand.svg"
  54441. }
  54442. },
  54443. foot: {
  54444. height: math.unit(1.5, "feet"),
  54445. name: "Foot",
  54446. image: {
  54447. source: "./media/characters/poptart/foot.svg"
  54448. }
  54449. },
  54450. },
  54451. [
  54452. {
  54453. name: "Normal",
  54454. height: math.unit(6, "feet"),
  54455. default: true
  54456. },
  54457. {
  54458. name: "Grande",
  54459. height: math.unit(350, "feet")
  54460. },
  54461. {
  54462. name: "Massif",
  54463. height: math.unit(967, "feet")
  54464. },
  54465. ]
  54466. ))
  54467. characterMakers.push(() => makeCharacter(
  54468. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54469. {
  54470. hyenaSide: {
  54471. height: math.unit(120, "cm"),
  54472. weight: math.unit(120, "lb"),
  54473. name: "Side",
  54474. image: {
  54475. source: "./media/characters/trance/hyena-side.svg",
  54476. extra: 998/904,
  54477. bottom: 76/1074
  54478. }
  54479. },
  54480. },
  54481. [
  54482. {
  54483. name: "Normal",
  54484. height: math.unit(120, "cm"),
  54485. default: true
  54486. },
  54487. {
  54488. name: "Dire",
  54489. height: math.unit(230, "cm")
  54490. },
  54491. {
  54492. name: "Macro",
  54493. height: math.unit(37, "feet")
  54494. },
  54495. ]
  54496. ))
  54497. characterMakers.push(() => makeCharacter(
  54498. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54499. {
  54500. front: {
  54501. height: math.unit(6 + 3/12, "feet"),
  54502. name: "Front",
  54503. image: {
  54504. source: "./media/characters/michael-berretta/front.svg",
  54505. extra: 515/494,
  54506. bottom: 20/535
  54507. }
  54508. },
  54509. back: {
  54510. height: math.unit(6 + 3/12, "feet"),
  54511. name: "Back",
  54512. image: {
  54513. source: "./media/characters/michael-berretta/back.svg",
  54514. extra: 520/497,
  54515. bottom: 21/541
  54516. }
  54517. },
  54518. frontNsfw: {
  54519. height: math.unit(6 + 3/12, "feet"),
  54520. name: "Front (NSFW)",
  54521. image: {
  54522. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54523. extra: 515/494,
  54524. bottom: 20/535
  54525. }
  54526. },
  54527. dick: {
  54528. height: math.unit(1, "feet"),
  54529. name: "Dick",
  54530. image: {
  54531. source: "./media/characters/michael-berretta/dick.svg"
  54532. }
  54533. },
  54534. },
  54535. [
  54536. {
  54537. name: "Normal",
  54538. height: math.unit(6 + 3/12, "feet"),
  54539. default: true
  54540. },
  54541. {
  54542. name: "Big",
  54543. height: math.unit(12, "feet")
  54544. },
  54545. {
  54546. name: "Macro",
  54547. height: math.unit(187.5, "feet")
  54548. },
  54549. ]
  54550. ))
  54551. characterMakers.push(() => makeCharacter(
  54552. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54553. {
  54554. front: {
  54555. height: math.unit(9 + 9/12, "feet"),
  54556. weight: math.unit(1244, "lb"),
  54557. name: "Front",
  54558. image: {
  54559. source: "./media/characters/stella-edgecomb/front.svg",
  54560. extra: 1835/1706,
  54561. bottom: 49/1884
  54562. }
  54563. },
  54564. pen: {
  54565. height: math.unit(0.95, "feet"),
  54566. name: "Pen",
  54567. image: {
  54568. source: "./media/characters/stella-edgecomb/pen.svg"
  54569. }
  54570. },
  54571. },
  54572. [
  54573. {
  54574. name: "Cozy Bear",
  54575. height: math.unit(0.5, "inches")
  54576. },
  54577. {
  54578. name: "Normal",
  54579. height: math.unit(9 + 9/12, "feet"),
  54580. default: true
  54581. },
  54582. {
  54583. name: "Giga Bear",
  54584. height: math.unit(1, "mile")
  54585. },
  54586. {
  54587. name: "Great Bear",
  54588. height: math.unit(53, "miles")
  54589. },
  54590. {
  54591. name: "Goddess Bear",
  54592. height: math.unit(40000, "miles")
  54593. },
  54594. {
  54595. name: "Sun Bear",
  54596. height: math.unit(900000, "miles")
  54597. },
  54598. ]
  54599. ))
  54600. characterMakers.push(() => makeCharacter(
  54601. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54602. {
  54603. anthroFront: {
  54604. height: math.unit(556, "cm"),
  54605. weight: math.unit(2650, "kg"),
  54606. preyCapacity: math.unit(3, "people"),
  54607. name: "Front",
  54608. image: {
  54609. source: "./media/characters/ash´iika/front.svg",
  54610. extra: 710/673,
  54611. bottom: 15/725
  54612. },
  54613. form: "anthro",
  54614. default: true
  54615. },
  54616. anthroSide: {
  54617. height: math.unit(556, "cm"),
  54618. weight: math.unit(2650, "kg"),
  54619. preyCapacity: math.unit(3, "people"),
  54620. name: "Side",
  54621. image: {
  54622. source: "./media/characters/ash´iika/side.svg",
  54623. extra: 696/676,
  54624. bottom: 13/709
  54625. },
  54626. form: "anthro"
  54627. },
  54628. anthroDressed: {
  54629. height: math.unit(556, "cm"),
  54630. weight: math.unit(2650, "kg"),
  54631. preyCapacity: math.unit(3, "people"),
  54632. name: "Dressed",
  54633. image: {
  54634. source: "./media/characters/ash´iika/dressed.svg",
  54635. extra: 710/673,
  54636. bottom: 15/725
  54637. },
  54638. form: "anthro"
  54639. },
  54640. anthroHead: {
  54641. height: math.unit(3.5, "feet"),
  54642. name: "Head",
  54643. image: {
  54644. source: "./media/characters/ash´iika/head.svg",
  54645. extra: 348/291,
  54646. bottom: 45/393
  54647. },
  54648. form: "anthro"
  54649. },
  54650. feralSide: {
  54651. height: math.unit(870, "cm"),
  54652. weight: math.unit(17500, "kg"),
  54653. preyCapacity: math.unit(15, "people"),
  54654. name: "Side",
  54655. image: {
  54656. source: "./media/characters/ash´iika/feral.svg",
  54657. extra: 595/199,
  54658. bottom: 7/602
  54659. },
  54660. form: "feral",
  54661. default: true,
  54662. },
  54663. },
  54664. [
  54665. {
  54666. name: "Normal",
  54667. height: math.unit(556, "cm"),
  54668. default: true,
  54669. form: "anthro"
  54670. },
  54671. {
  54672. name: "Macro",
  54673. height: math.unit(88, "meters"),
  54674. form: "anthro"
  54675. },
  54676. {
  54677. name: "Normal",
  54678. height: math.unit(870, "cm"),
  54679. default: true,
  54680. form: "feral"
  54681. },
  54682. {
  54683. name: "Large",
  54684. height: math.unit(25, "meters"),
  54685. form: "feral"
  54686. },
  54687. ],
  54688. {
  54689. "anthro": {
  54690. name: "Anthro",
  54691. default: true
  54692. },
  54693. "feral": {
  54694. name: "Feral",
  54695. },
  54696. }
  54697. ))
  54698. characterMakers.push(() => makeCharacter(
  54699. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54700. {
  54701. front: {
  54702. height: math.unit(10, "feet"),
  54703. weight: math.unit(800, "lb"),
  54704. name: "Front",
  54705. image: {
  54706. source: "./media/characters/yen/front.svg",
  54707. extra: 443/411,
  54708. bottom: 6/449
  54709. }
  54710. },
  54711. sleeping: {
  54712. height: math.unit(10, "feet"),
  54713. weight: math.unit(800, "lb"),
  54714. name: "Sleeping",
  54715. image: {
  54716. source: "./media/characters/yen/sleeping.svg",
  54717. extra: 470/422,
  54718. bottom: 0/470
  54719. }
  54720. },
  54721. head: {
  54722. height: math.unit(2.2, "feet"),
  54723. name: "Head",
  54724. image: {
  54725. source: "./media/characters/yen/head.svg"
  54726. }
  54727. },
  54728. headAlt: {
  54729. height: math.unit(2.1, "feet"),
  54730. name: "Head (Alt)",
  54731. image: {
  54732. source: "./media/characters/yen/head-alt.svg"
  54733. }
  54734. },
  54735. },
  54736. [
  54737. {
  54738. name: "Normal",
  54739. height: math.unit(10, "feet"),
  54740. default: true
  54741. },
  54742. ]
  54743. ))
  54744. characterMakers.push(() => makeCharacter(
  54745. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54746. {
  54747. front: {
  54748. height: math.unit(12, "feet"),
  54749. name: "Front",
  54750. image: {
  54751. source: "./media/characters/citra/front.svg",
  54752. extra: 1950/1710,
  54753. bottom: 47/1997
  54754. }
  54755. },
  54756. },
  54757. [
  54758. {
  54759. name: "Normal",
  54760. height: math.unit(12, "feet"),
  54761. default: true
  54762. },
  54763. ]
  54764. ))
  54765. characterMakers.push(() => makeCharacter(
  54766. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54767. {
  54768. side: {
  54769. height: math.unit(7 + 10/12, "feet"),
  54770. name: "Side",
  54771. image: {
  54772. source: "./media/characters/sholstim/side.svg",
  54773. extra: 786/682,
  54774. bottom: 40/826
  54775. }
  54776. },
  54777. },
  54778. [
  54779. {
  54780. name: "Normal",
  54781. height: math.unit(7 + 10/12, "feet"),
  54782. default: true
  54783. },
  54784. ]
  54785. ))
  54786. characterMakers.push(() => makeCharacter(
  54787. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54788. {
  54789. front: {
  54790. height: math.unit(3.10, "meters"),
  54791. name: "Front",
  54792. image: {
  54793. source: "./media/characters/aggyn/front.svg",
  54794. extra: 1188/963,
  54795. bottom: 24/1212
  54796. }
  54797. },
  54798. },
  54799. [
  54800. {
  54801. name: "Normal",
  54802. height: math.unit(3.10, "meters"),
  54803. default: true
  54804. },
  54805. ]
  54806. ))
  54807. characterMakers.push(() => makeCharacter(
  54808. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54809. {
  54810. front: {
  54811. height: math.unit(7 + 5/12, "feet"),
  54812. weight: math.unit(687, "lb"),
  54813. name: "Front",
  54814. image: {
  54815. source: "./media/characters/alsandair-hergenroether/front.svg",
  54816. extra: 1251/1186,
  54817. bottom: 75/1326
  54818. }
  54819. },
  54820. back: {
  54821. height: math.unit(7 + 5/12, "feet"),
  54822. weight: math.unit(687, "lb"),
  54823. name: "Back",
  54824. image: {
  54825. source: "./media/characters/alsandair-hergenroether/back.svg",
  54826. extra: 1290/1229,
  54827. bottom: 17/1307
  54828. }
  54829. },
  54830. },
  54831. [
  54832. {
  54833. name: "Max Compression",
  54834. height: math.unit(7 + 5/12, "feet"),
  54835. default: true
  54836. },
  54837. {
  54838. name: "\"Normal\"",
  54839. height: math.unit(2, "universes")
  54840. },
  54841. ]
  54842. ))
  54843. characterMakers.push(() => makeCharacter(
  54844. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54845. {
  54846. front: {
  54847. height: math.unit(4 + 1/12, "feet"),
  54848. weight: math.unit(92, "lb"),
  54849. name: "Front",
  54850. image: {
  54851. source: "./media/characters/ie/front.svg",
  54852. extra: 1585/1352,
  54853. bottom: 91/1676
  54854. }
  54855. },
  54856. },
  54857. [
  54858. {
  54859. name: "Normal",
  54860. height: math.unit(4 + 1/12, "feet"),
  54861. default: true
  54862. },
  54863. ]
  54864. ))
  54865. characterMakers.push(() => makeCharacter(
  54866. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54867. {
  54868. anthro: {
  54869. height: math.unit(6, "feet"),
  54870. weight: math.unit(150, "lb"),
  54871. name: "Front",
  54872. image: {
  54873. source: "./media/characters/willow/anthro.svg",
  54874. extra: 1073/986,
  54875. bottom: 34/1107
  54876. },
  54877. form: "anthro",
  54878. default: true
  54879. },
  54880. taur: {
  54881. height: math.unit(6, "feet"),
  54882. weight: math.unit(150, "lb"),
  54883. name: "Side",
  54884. image: {
  54885. source: "./media/characters/willow/taur.svg",
  54886. extra: 647/512,
  54887. bottom: 136/783
  54888. },
  54889. form: "taur",
  54890. default: true
  54891. },
  54892. },
  54893. [
  54894. {
  54895. name: "Humanoid",
  54896. height: math.unit(2.7, "meters"),
  54897. form: "anthro"
  54898. },
  54899. {
  54900. name: "Normal",
  54901. height: math.unit(9, "meters"),
  54902. form: "anthro",
  54903. default: true
  54904. },
  54905. {
  54906. name: "Humanoid",
  54907. height: math.unit(2.1, "meters"),
  54908. form: "taur"
  54909. },
  54910. {
  54911. name: "Normal",
  54912. height: math.unit(7, "meters"),
  54913. form: "taur",
  54914. default: true
  54915. },
  54916. ],
  54917. {
  54918. "anthro": {
  54919. name: "Anthro",
  54920. default: true
  54921. },
  54922. "taur": {
  54923. name: "Taur",
  54924. },
  54925. }
  54926. ))
  54927. characterMakers.push(() => makeCharacter(
  54928. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54929. {
  54930. front: {
  54931. height: math.unit(2 + 5/12, "feet"),
  54932. name: "Front",
  54933. image: {
  54934. source: "./media/characters/kyan/front.svg",
  54935. extra: 460/334,
  54936. bottom: 23/483
  54937. },
  54938. extraAttributes: {
  54939. "toeLength": {
  54940. name: "Toe Length",
  54941. power: 1,
  54942. type: "length",
  54943. base: math.unit(7, "cm")
  54944. },
  54945. "toeclawLength": {
  54946. name: "Toeclaw Length",
  54947. power: 1,
  54948. type: "length",
  54949. base: math.unit(4.7, "cm")
  54950. },
  54951. "earHeight": {
  54952. name: "Ear Height",
  54953. power: 1,
  54954. type: "length",
  54955. base: math.unit(14.1, "cm")
  54956. },
  54957. }
  54958. },
  54959. paws: {
  54960. height: math.unit(0.45, "feet"),
  54961. name: "Paws",
  54962. image: {
  54963. source: "./media/characters/kyan/paws.svg",
  54964. extra: 581/581,
  54965. bottom: 114/695
  54966. }
  54967. },
  54968. },
  54969. [
  54970. {
  54971. name: "Normal",
  54972. height: math.unit(2 + 5/12, "feet"),
  54973. default: true
  54974. },
  54975. ]
  54976. ))
  54977. characterMakers.push(() => makeCharacter(
  54978. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54979. {
  54980. front: {
  54981. height: math.unit(2 + 2/3, "feet"),
  54982. name: "Front",
  54983. image: {
  54984. source: "./media/characters/xazzon/front.svg",
  54985. extra: 1109/984,
  54986. bottom: 42/1151
  54987. }
  54988. },
  54989. back: {
  54990. height: math.unit(2 + 2/3, "feet"),
  54991. name: "Back",
  54992. image: {
  54993. source: "./media/characters/xazzon/back.svg",
  54994. extra: 1095/971,
  54995. bottom: 23/1118
  54996. }
  54997. },
  54998. },
  54999. [
  55000. {
  55001. name: "Normal",
  55002. height: math.unit(2 + 2/3, "feet"),
  55003. default: true
  55004. },
  55005. ]
  55006. ))
  55007. characterMakers.push(() => makeCharacter(
  55008. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55009. {
  55010. front: {
  55011. height: math.unit(8, "feet"),
  55012. weight: math.unit(300, "lb"),
  55013. name: "Front",
  55014. image: {
  55015. source: "./media/characters/khyla-shadowsong/front.svg",
  55016. extra: 861/798,
  55017. bottom: 32/893
  55018. }
  55019. },
  55020. side: {
  55021. height: math.unit(8, "feet"),
  55022. weight: math.unit(300, "lb"),
  55023. name: "Side",
  55024. image: {
  55025. source: "./media/characters/khyla-shadowsong/side.svg",
  55026. extra: 790/750,
  55027. bottom: 87/877
  55028. }
  55029. },
  55030. back: {
  55031. height: math.unit(8, "feet"),
  55032. weight: math.unit(300, "lb"),
  55033. name: "Back",
  55034. image: {
  55035. source: "./media/characters/khyla-shadowsong/back.svg",
  55036. extra: 855/808,
  55037. bottom: 14/869
  55038. }
  55039. },
  55040. head: {
  55041. height: math.unit(2.7, "feet"),
  55042. name: "Head",
  55043. image: {
  55044. source: "./media/characters/khyla-shadowsong/head.svg"
  55045. }
  55046. },
  55047. },
  55048. [
  55049. {
  55050. name: "Micro",
  55051. height: math.unit(6, "inches")
  55052. },
  55053. {
  55054. name: "Normal",
  55055. height: math.unit(8, "feet"),
  55056. default: true
  55057. },
  55058. ]
  55059. ))
  55060. characterMakers.push(() => makeCharacter(
  55061. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55062. {
  55063. hyperFront: {
  55064. height: math.unit(9 + 4/12, "feet"),
  55065. weight: math.unit(2000, "lb"),
  55066. name: "Front",
  55067. image: {
  55068. source: "./media/characters/tiden/hyper-front.svg",
  55069. extra: 400/382,
  55070. bottom: 6/406
  55071. },
  55072. form: "hyper",
  55073. },
  55074. regularFront: {
  55075. height: math.unit(7 + 10/12, "feet"),
  55076. weight: math.unit(470, "lb"),
  55077. name: "Front",
  55078. image: {
  55079. source: "./media/characters/tiden/regular-front.svg",
  55080. extra: 468/442,
  55081. bottom: 6/474
  55082. },
  55083. form: "regular",
  55084. },
  55085. },
  55086. [
  55087. {
  55088. name: "Normal",
  55089. height: math.unit(9 + 4/12, "feet"),
  55090. default: true,
  55091. form: "hyper"
  55092. },
  55093. {
  55094. name: "Normal",
  55095. height: math.unit(7 + 10/12, "feet"),
  55096. default: true,
  55097. form: "regular"
  55098. },
  55099. ],
  55100. {
  55101. "hyper": {
  55102. name: "Hyper",
  55103. default: true
  55104. },
  55105. "regular": {
  55106. name: "Regular",
  55107. },
  55108. }
  55109. ))
  55110. characterMakers.push(() => makeCharacter(
  55111. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55112. {
  55113. side: {
  55114. height: math.unit(6, "feet"),
  55115. weight: math.unit(150, "lb"),
  55116. name: "Side",
  55117. image: {
  55118. source: "./media/characters/jason-crowe/side.svg",
  55119. extra: 1771/766,
  55120. bottom: 219/1990
  55121. }
  55122. },
  55123. },
  55124. [
  55125. {
  55126. name: "Pocket Gryphon",
  55127. height: math.unit(6, "cm")
  55128. },
  55129. {
  55130. name: "Raven",
  55131. height: math.unit(60, "cm")
  55132. },
  55133. {
  55134. name: "Normal",
  55135. height: math.unit(1, "meter"),
  55136. default: true
  55137. },
  55138. ]
  55139. ))
  55140. characterMakers.push(() => makeCharacter(
  55141. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55142. {
  55143. front: {
  55144. height: math.unit(9 + 6/12, "feet"),
  55145. weight: math.unit(1100, "lb"),
  55146. name: "Front",
  55147. image: {
  55148. source: "./media/characters/django/front.svg",
  55149. extra: 1231/1136,
  55150. bottom: 34/1265
  55151. }
  55152. },
  55153. side: {
  55154. height: math.unit(9 + 6/12, "feet"),
  55155. weight: math.unit(1100, "lb"),
  55156. name: "Side",
  55157. image: {
  55158. source: "./media/characters/django/side.svg",
  55159. extra: 1267/1174,
  55160. bottom: 9/1276
  55161. }
  55162. },
  55163. },
  55164. [
  55165. {
  55166. name: "Normal",
  55167. height: math.unit(9 + 6/12, "feet"),
  55168. default: true
  55169. },
  55170. {
  55171. name: "Macro 1",
  55172. height: math.unit(50, "feet")
  55173. },
  55174. {
  55175. name: "Macro 2",
  55176. height: math.unit(500, "feet")
  55177. },
  55178. {
  55179. name: "Mega Macro",
  55180. height: math.unit(5300, "feet")
  55181. },
  55182. ]
  55183. ))
  55184. characterMakers.push(() => makeCharacter(
  55185. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55186. {
  55187. frontSfw: {
  55188. height: math.unit(120, "cm"),
  55189. weight: math.unit(15, "kg"),
  55190. name: "Front (SFW)",
  55191. image: {
  55192. source: "./media/characters/eri/front-sfw.svg",
  55193. extra: 1014/939,
  55194. bottom: 37/1051
  55195. },
  55196. form: "moth",
  55197. },
  55198. frontNsfw: {
  55199. height: math.unit(120, "cm"),
  55200. weight: math.unit(15, "kg"),
  55201. name: "Front (NSFW)",
  55202. image: {
  55203. source: "./media/characters/eri/front-nsfw.svg",
  55204. extra: 1014/939,
  55205. bottom: 37/1051
  55206. },
  55207. form: "moth",
  55208. default: true
  55209. },
  55210. egg: {
  55211. height: math.unit(10, "cm"),
  55212. name: "Egg",
  55213. image: {
  55214. source: "./media/characters/eri/egg.svg"
  55215. },
  55216. form: "egg",
  55217. default: true
  55218. },
  55219. },
  55220. [
  55221. {
  55222. name: "Normal",
  55223. height: math.unit(120, "cm"),
  55224. default: true,
  55225. form: "moth"
  55226. },
  55227. {
  55228. name: "Normal",
  55229. height: math.unit(10, "cm"),
  55230. default: true,
  55231. form: "egg"
  55232. },
  55233. ],
  55234. {
  55235. "moth": {
  55236. name: "Moth",
  55237. default: true
  55238. },
  55239. "egg": {
  55240. name: "Egg",
  55241. },
  55242. }
  55243. ))
  55244. characterMakers.push(() => makeCharacter(
  55245. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55246. {
  55247. front: {
  55248. height: math.unit(200, "feet"),
  55249. name: "Front",
  55250. image: {
  55251. source: "./media/characters/bishop-dowser/front.svg",
  55252. extra: 933/868,
  55253. bottom: 106/1039
  55254. }
  55255. },
  55256. },
  55257. [
  55258. {
  55259. name: "Giant",
  55260. height: math.unit(200, "feet"),
  55261. default: true
  55262. },
  55263. ]
  55264. ))
  55265. characterMakers.push(() => makeCharacter(
  55266. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55267. {
  55268. front: {
  55269. height: math.unit(2, "meters"),
  55270. preyCapacity: math.unit(3, "people"),
  55271. name: "Front",
  55272. image: {
  55273. source: "./media/characters/fryra/front.svg",
  55274. extra: 1025/948,
  55275. bottom: 30/1055
  55276. },
  55277. extraAttributes: {
  55278. "breastVolume": {
  55279. name: "Breast Volume",
  55280. power: 3,
  55281. type: "volume",
  55282. base: math.unit(8, "liters")
  55283. },
  55284. }
  55285. },
  55286. back: {
  55287. height: math.unit(2, "meters"),
  55288. preyCapacity: math.unit(3, "people"),
  55289. name: "Back",
  55290. image: {
  55291. source: "./media/characters/fryra/back.svg",
  55292. extra: 993/938,
  55293. bottom: 38/1031
  55294. },
  55295. extraAttributes: {
  55296. "breastVolume": {
  55297. name: "Breast Volume",
  55298. power: 3,
  55299. type: "volume",
  55300. base: math.unit(8, "liters")
  55301. },
  55302. }
  55303. },
  55304. head: {
  55305. height: math.unit(1.33, "feet"),
  55306. name: "Head",
  55307. image: {
  55308. source: "./media/characters/fryra/head.svg"
  55309. }
  55310. },
  55311. maw: {
  55312. height: math.unit(0.56, "feet"),
  55313. name: "Maw",
  55314. image: {
  55315. source: "./media/characters/fryra/maw.svg"
  55316. }
  55317. },
  55318. },
  55319. [
  55320. {
  55321. name: "Micro",
  55322. height: math.unit(5, "cm")
  55323. },
  55324. {
  55325. name: "Normal",
  55326. height: math.unit(2, "meters"),
  55327. default: true
  55328. },
  55329. {
  55330. name: "Small Macro",
  55331. height: math.unit(8, "meters")
  55332. },
  55333. {
  55334. name: "Macro",
  55335. height: math.unit(50, "meters")
  55336. },
  55337. {
  55338. name: "Megamacro",
  55339. height: math.unit(1, "km")
  55340. },
  55341. {
  55342. name: "Planetary",
  55343. height: math.unit(300000, "km")
  55344. },
  55345. {
  55346. name: "Universal",
  55347. height: math.unit(250, "lightyears")
  55348. },
  55349. {
  55350. name: "Fabric of Reality",
  55351. height: math.unit(1000, "multiverses")
  55352. },
  55353. ]
  55354. ))
  55355. characterMakers.push(() => makeCharacter(
  55356. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55357. {
  55358. frontDressed: {
  55359. height: math.unit(6 + 2/12, "feet"),
  55360. name: "Front (Dressed)",
  55361. image: {
  55362. source: "./media/characters/fiera/front-dressed.svg",
  55363. extra: 1883/1793,
  55364. bottom: 70/1953
  55365. }
  55366. },
  55367. backDressed: {
  55368. height: math.unit(6 + 2/12, "feet"),
  55369. name: "Back (Dressed)",
  55370. image: {
  55371. source: "./media/characters/fiera/back-dressed.svg",
  55372. extra: 1847/1780,
  55373. bottom: 70/1917
  55374. }
  55375. },
  55376. frontNude: {
  55377. height: math.unit(6 + 2/12, "feet"),
  55378. name: "Front (Nude)",
  55379. image: {
  55380. source: "./media/characters/fiera/front-nude.svg",
  55381. extra: 1875/1785,
  55382. bottom: 66/1941
  55383. }
  55384. },
  55385. backNude: {
  55386. height: math.unit(6 + 2/12, "feet"),
  55387. name: "Back (Nude)",
  55388. image: {
  55389. source: "./media/characters/fiera/back-nude.svg",
  55390. extra: 1855/1788,
  55391. bottom: 44/1899
  55392. }
  55393. },
  55394. maw: {
  55395. height: math.unit(1.3, "feet"),
  55396. name: "Maw",
  55397. image: {
  55398. source: "./media/characters/fiera/maw.svg"
  55399. }
  55400. },
  55401. paw: {
  55402. height: math.unit(1, "feet"),
  55403. name: "Paw",
  55404. image: {
  55405. source: "./media/characters/fiera/paw.svg"
  55406. }
  55407. },
  55408. shoe: {
  55409. height: math.unit(1.05, "feet"),
  55410. name: "Shoe",
  55411. image: {
  55412. source: "./media/characters/fiera/shoe.svg"
  55413. }
  55414. },
  55415. },
  55416. [
  55417. {
  55418. name: "Normal",
  55419. height: math.unit(6 + 2/12, "feet"),
  55420. default: true
  55421. },
  55422. {
  55423. name: "Size Difference",
  55424. height: math.unit(13, "feet")
  55425. },
  55426. {
  55427. name: "Macro",
  55428. height: math.unit(60, "feet")
  55429. },
  55430. {
  55431. name: "Mega Macro",
  55432. height: math.unit(200, "feet")
  55433. },
  55434. ]
  55435. ))
  55436. characterMakers.push(() => makeCharacter(
  55437. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55438. {
  55439. back: {
  55440. height: math.unit(6, "feet"),
  55441. name: "Back",
  55442. image: {
  55443. source: "./media/characters/flare/back.svg",
  55444. extra: 1883/1765,
  55445. bottom: 32/1915
  55446. }
  55447. },
  55448. },
  55449. [
  55450. {
  55451. name: "Normal",
  55452. height: math.unit(6 + 2/12, "feet"),
  55453. default: true
  55454. },
  55455. {
  55456. name: "Size Difference",
  55457. height: math.unit(13, "feet")
  55458. },
  55459. {
  55460. name: "Macro",
  55461. height: math.unit(60, "feet")
  55462. },
  55463. {
  55464. name: "Macro 2",
  55465. height: math.unit(100, "feet")
  55466. },
  55467. {
  55468. name: "Mega Macro",
  55469. height: math.unit(200, "feet")
  55470. },
  55471. ]
  55472. ))
  55473. characterMakers.push(() => makeCharacter(
  55474. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55475. {
  55476. front: {
  55477. height: math.unit(2.2, "m"),
  55478. weight: math.unit(300, "kg"),
  55479. name: "Front",
  55480. image: {
  55481. source: "./media/characters/hanna/front.svg",
  55482. extra: 1696/1502,
  55483. bottom: 206/1902
  55484. }
  55485. },
  55486. },
  55487. [
  55488. {
  55489. name: "Humanoid",
  55490. height: math.unit(2.2, "meters")
  55491. },
  55492. {
  55493. name: "Normal",
  55494. height: math.unit(4.8, "meters"),
  55495. default: true
  55496. },
  55497. ]
  55498. ))
  55499. characterMakers.push(() => makeCharacter(
  55500. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55501. {
  55502. front: {
  55503. height: math.unit(2.8, "meters"),
  55504. name: "Front",
  55505. image: {
  55506. source: "./media/characters/argo/front.svg",
  55507. extra: 731/518,
  55508. bottom: 84/815
  55509. }
  55510. },
  55511. },
  55512. [
  55513. {
  55514. name: "Normal",
  55515. height: math.unit(3, "meters"),
  55516. default: true
  55517. },
  55518. ]
  55519. ))
  55520. characterMakers.push(() => makeCharacter(
  55521. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55522. {
  55523. side: {
  55524. height: math.unit(3.8, "meters"),
  55525. name: "Side",
  55526. image: {
  55527. source: "./media/characters/sybil/side.svg",
  55528. extra: 382/361,
  55529. bottom: 25/407
  55530. }
  55531. },
  55532. },
  55533. [
  55534. {
  55535. name: "Normal",
  55536. height: math.unit(3.8, "meters"),
  55537. default: true
  55538. },
  55539. ]
  55540. ))
  55541. characterMakers.push(() => makeCharacter(
  55542. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55543. {
  55544. side: {
  55545. height: math.unit(6, "meters"),
  55546. name: "Side",
  55547. image: {
  55548. source: "./media/characters/plum/side.svg",
  55549. extra: 858/755,
  55550. bottom: 45/903
  55551. },
  55552. form: "taur",
  55553. default: true
  55554. },
  55555. back: {
  55556. height: math.unit(6.3, "meters"),
  55557. name: "Back",
  55558. image: {
  55559. source: "./media/characters/plum/back.svg",
  55560. extra: 887/813,
  55561. bottom: 32/919
  55562. },
  55563. form: "taur",
  55564. },
  55565. feral: {
  55566. height: math.unit(5.5, "meter"),
  55567. name: "Front",
  55568. image: {
  55569. source: "./media/characters/plum/feral.svg",
  55570. extra: 568/403,
  55571. bottom: 51/619
  55572. },
  55573. form: "feral",
  55574. default: true
  55575. },
  55576. head: {
  55577. height: math.unit(1.46, "meter"),
  55578. name: "Head",
  55579. image: {
  55580. source: "./media/characters/plum/head.svg"
  55581. },
  55582. form: "taur"
  55583. },
  55584. tailTop: {
  55585. height: math.unit(5.6, "meter"),
  55586. name: "Tail (Top)",
  55587. image: {
  55588. source: "./media/characters/plum/tail-top.svg"
  55589. },
  55590. form: "taur",
  55591. },
  55592. tailBottom: {
  55593. height: math.unit(5.6, "meter"),
  55594. name: "Tail (Bottom)",
  55595. image: {
  55596. source: "./media/characters/plum/tail-bottom.svg"
  55597. },
  55598. form: "taur",
  55599. },
  55600. feralHead: {
  55601. height: math.unit(2.56549521, "meter"),
  55602. name: "Head",
  55603. image: {
  55604. source: "./media/characters/plum/head.svg"
  55605. },
  55606. form: "feral"
  55607. },
  55608. feralTailTop: {
  55609. height: math.unit(5.44728435, "meter"),
  55610. name: "Tail (Top)",
  55611. image: {
  55612. source: "./media/characters/plum/tail-top.svg"
  55613. },
  55614. form: "feral",
  55615. },
  55616. feralTailBottom: {
  55617. height: math.unit(5.44728435, "meter"),
  55618. name: "Tail (Bottom)",
  55619. image: {
  55620. source: "./media/characters/plum/tail-bottom.svg"
  55621. },
  55622. form: "feral",
  55623. },
  55624. },
  55625. [
  55626. {
  55627. name: "Normal",
  55628. height: math.unit(6, "meters"),
  55629. default: true,
  55630. form: "taur"
  55631. },
  55632. {
  55633. name: "Normal",
  55634. height: math.unit(5.5, "meters"),
  55635. default: true,
  55636. form: "feral"
  55637. },
  55638. ],
  55639. {
  55640. "taur": {
  55641. name: "Taur",
  55642. default: true
  55643. },
  55644. "feral": {
  55645. name: "Feral",
  55646. },
  55647. }
  55648. ))
  55649. characterMakers.push(() => makeCharacter(
  55650. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55651. {
  55652. front: {
  55653. height: math.unit(6, "feet"),
  55654. weight: math.unit(115, "lb"),
  55655. name: "Front",
  55656. image: {
  55657. source: "./media/characters/celeste-kitsune/front.svg",
  55658. extra: 393/366,
  55659. bottom: 7/400
  55660. }
  55661. },
  55662. side: {
  55663. height: math.unit(6, "feet"),
  55664. weight: math.unit(115, "lb"),
  55665. name: "Side",
  55666. image: {
  55667. source: "./media/characters/celeste-kitsune/side.svg",
  55668. extra: 818/765,
  55669. bottom: 40/858
  55670. }
  55671. },
  55672. },
  55673. [
  55674. {
  55675. name: "Megamacro",
  55676. height: math.unit(1500, "miles"),
  55677. default: true
  55678. },
  55679. ]
  55680. ))
  55681. characterMakers.push(() => makeCharacter(
  55682. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55683. {
  55684. front: {
  55685. height: math.unit(8, "meters"),
  55686. name: "Front",
  55687. image: {
  55688. source: "./media/characters/io/front.svg",
  55689. extra: 865/722,
  55690. bottom: 58/923
  55691. }
  55692. },
  55693. back: {
  55694. height: math.unit(8, "meters"),
  55695. name: "Back",
  55696. image: {
  55697. source: "./media/characters/io/back.svg",
  55698. extra: 920/776,
  55699. bottom: 42/962
  55700. }
  55701. },
  55702. head: {
  55703. height: math.unit(5.09, "meters"),
  55704. name: "Head",
  55705. image: {
  55706. source: "./media/characters/io/head.svg"
  55707. }
  55708. },
  55709. hand: {
  55710. height: math.unit(1.6, "meters"),
  55711. name: "Hand",
  55712. image: {
  55713. source: "./media/characters/io/hand.svg"
  55714. }
  55715. },
  55716. foot: {
  55717. height: math.unit(2.4, "meters"),
  55718. name: "Foot",
  55719. image: {
  55720. source: "./media/characters/io/foot.svg"
  55721. }
  55722. },
  55723. },
  55724. [
  55725. {
  55726. name: "Normal",
  55727. height: math.unit(8, "meters"),
  55728. default: true
  55729. },
  55730. ]
  55731. ))
  55732. characterMakers.push(() => makeCharacter(
  55733. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55734. {
  55735. side: {
  55736. height: math.unit(6 + 3/12, "feet"),
  55737. weight: math.unit(225, "lb"),
  55738. name: "Side",
  55739. image: {
  55740. source: "./media/characters/silas/side.svg",
  55741. extra: 703/653,
  55742. bottom: 23/726
  55743. },
  55744. extraAttributes: {
  55745. "pawLength": {
  55746. name: "Paw Length",
  55747. power: 1,
  55748. type: "length",
  55749. base: math.unit(12, "inches")
  55750. },
  55751. "pawWidth": {
  55752. name: "Paw Width",
  55753. power: 1,
  55754. type: "length",
  55755. base: math.unit(4.5, "inches")
  55756. },
  55757. "pawArea": {
  55758. name: "Paw Area",
  55759. power: 2,
  55760. type: "area",
  55761. base: math.unit(12 * 4.5, "inches^2")
  55762. },
  55763. }
  55764. },
  55765. },
  55766. [
  55767. {
  55768. name: "Normal",
  55769. height: math.unit(6 + 3/12, "feet"),
  55770. default: true
  55771. },
  55772. ]
  55773. ))
  55774. characterMakers.push(() => makeCharacter(
  55775. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55776. {
  55777. back: {
  55778. height: math.unit(1.6, "meters"),
  55779. weight: math.unit(150, "lb"),
  55780. name: "Back",
  55781. image: {
  55782. source: "./media/characters/zari/back.svg",
  55783. extra: 424/411,
  55784. bottom: 32/456
  55785. },
  55786. extraAttributes: {
  55787. "bladderCapacity": {
  55788. name: "Bladder Size",
  55789. power: 3,
  55790. type: "volume",
  55791. base: math.unit(500, "mL")
  55792. },
  55793. "bladderFlow": {
  55794. name: "Flow Rate",
  55795. power: 3,
  55796. type: "volume",
  55797. base: math.unit(25, "mL")
  55798. },
  55799. }
  55800. },
  55801. },
  55802. [
  55803. {
  55804. name: "Normal",
  55805. height: math.unit(1.6, "meters"),
  55806. default: true
  55807. },
  55808. ]
  55809. ))
  55810. characterMakers.push(() => makeCharacter(
  55811. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55812. {
  55813. front: {
  55814. height: math.unit(25, "feet"),
  55815. weight: math.unit(5, "tons"),
  55816. name: "Front",
  55817. image: {
  55818. source: "./media/characters/charlie-human/front.svg",
  55819. extra: 1870/1740,
  55820. bottom: 102/1972
  55821. },
  55822. extraAttributes: {
  55823. "dickLength": {
  55824. name: "Dick Length",
  55825. power: 1,
  55826. type: "length",
  55827. base: math.unit(9, "feet")
  55828. },
  55829. }
  55830. },
  55831. back: {
  55832. height: math.unit(25, "feet"),
  55833. weight: math.unit(5, "tons"),
  55834. name: "Back",
  55835. image: {
  55836. source: "./media/characters/charlie-human/back.svg",
  55837. extra: 1858/1733,
  55838. bottom: 105/1963
  55839. },
  55840. extraAttributes: {
  55841. "dickLength": {
  55842. name: "Dick Length",
  55843. power: 1,
  55844. type: "length",
  55845. base: math.unit(9, "feet")
  55846. },
  55847. }
  55848. },
  55849. },
  55850. [
  55851. {
  55852. name: "\"Normal\"",
  55853. height: math.unit(6 + 4/12, "feet")
  55854. },
  55855. {
  55856. name: "Big",
  55857. height: math.unit(25, "feet"),
  55858. default: true
  55859. },
  55860. ]
  55861. ))
  55862. characterMakers.push(() => makeCharacter(
  55863. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55864. {
  55865. front: {
  55866. height: math.unit(6 + 4/12, "feet"),
  55867. weight: math.unit(320, "lb"),
  55868. name: "Front",
  55869. image: {
  55870. source: "./media/characters/ookitsu/front.svg",
  55871. extra: 1160/976,
  55872. bottom: 38/1198
  55873. }
  55874. },
  55875. frontNsfw: {
  55876. height: math.unit(6 + 4/12, "feet"),
  55877. weight: math.unit(320, "lb"),
  55878. name: "Front (NSFW)",
  55879. image: {
  55880. source: "./media/characters/ookitsu/front-nsfw.svg",
  55881. extra: 1160/976,
  55882. bottom: 38/1198
  55883. }
  55884. },
  55885. back: {
  55886. height: math.unit(6 + 4/12, "feet"),
  55887. weight: math.unit(320, "lb"),
  55888. name: "Back",
  55889. image: {
  55890. source: "./media/characters/ookitsu/back.svg",
  55891. extra: 1030/975,
  55892. bottom: 70/1100
  55893. }
  55894. },
  55895. head: {
  55896. height: math.unit(1.79, "feet"),
  55897. name: "Head",
  55898. image: {
  55899. source: "./media/characters/ookitsu/head.svg"
  55900. }
  55901. },
  55902. hand: {
  55903. height: math.unit(0.92, "feet"),
  55904. name: "Hand",
  55905. image: {
  55906. source: "./media/characters/ookitsu/hand.svg"
  55907. }
  55908. },
  55909. tails: {
  55910. height: math.unit(3.3, "feet"),
  55911. name: "Tails",
  55912. image: {
  55913. source: "./media/characters/ookitsu/tails.svg"
  55914. }
  55915. },
  55916. dick: {
  55917. height: math.unit(1.10833, "feet"),
  55918. name: "Dick",
  55919. image: {
  55920. source: "./media/characters/ookitsu/dick.svg"
  55921. }
  55922. },
  55923. },
  55924. [
  55925. {
  55926. name: "Normal",
  55927. height: math.unit(6 + 4/12, "feet"),
  55928. default: true
  55929. },
  55930. {
  55931. name: "Macro",
  55932. height: math.unit(30, "feet")
  55933. },
  55934. ]
  55935. ))
  55936. characterMakers.push(() => makeCharacter(
  55937. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55938. {
  55939. anthroFront: {
  55940. height: math.unit(6, "feet"),
  55941. weight: math.unit(250, "lb"),
  55942. name: "Front",
  55943. image: {
  55944. source: "./media/characters/jhusky/anthro-front.svg",
  55945. extra: 474/439,
  55946. bottom: 7/481
  55947. },
  55948. form: "anthro",
  55949. default: true
  55950. },
  55951. taurSideSfw: {
  55952. height: math.unit(6 + 4/12, "feet"),
  55953. weight: math.unit(500, "lb"),
  55954. name: "Side (SFW)",
  55955. image: {
  55956. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55957. extra: 1741/1629,
  55958. bottom: 196/1937
  55959. },
  55960. form: "taur",
  55961. default: true
  55962. },
  55963. taurSideNsfw: {
  55964. height: math.unit(6 + 4/12, "feet"),
  55965. weight: math.unit(500, "lb"),
  55966. name: "Taur (NSFW)",
  55967. image: {
  55968. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55969. extra: 1741/1629,
  55970. bottom: 196/1937
  55971. },
  55972. form: "taur",
  55973. },
  55974. },
  55975. [
  55976. {
  55977. name: "Huge",
  55978. height: math.unit(500, "feet"),
  55979. form: "anthro"
  55980. },
  55981. {
  55982. name: "Macro",
  55983. height: math.unit(1000, "feet"),
  55984. default: true,
  55985. form: "anthro"
  55986. },
  55987. {
  55988. name: "Megamacro",
  55989. height: math.unit(10000, "feet"),
  55990. form: "anthro"
  55991. },
  55992. {
  55993. name: "Huge",
  55994. height: math.unit(528, "feet"),
  55995. form: "taur"
  55996. },
  55997. {
  55998. name: "Macro",
  55999. height: math.unit(1056, "feet"),
  56000. default: true,
  56001. form: "taur"
  56002. },
  56003. {
  56004. name: "Megamacro",
  56005. height: math.unit(10556, "feet"),
  56006. form: "taur"
  56007. },
  56008. ],
  56009. {
  56010. "anthro": {
  56011. name: "Anthro",
  56012. default: true
  56013. },
  56014. "taur": {
  56015. name: "Taur",
  56016. },
  56017. }
  56018. ))
  56019. characterMakers.push(() => makeCharacter(
  56020. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56021. {
  56022. front: {
  56023. height: math.unit(8, "feet"),
  56024. weight: math.unit(500, "lb"),
  56025. name: "Front",
  56026. image: {
  56027. source: "./media/characters/armail/front.svg",
  56028. extra: 1753/1669,
  56029. bottom: 155/1908
  56030. }
  56031. },
  56032. back: {
  56033. height: math.unit(8, "feet"),
  56034. weight: math.unit(500, "lb"),
  56035. name: "Back",
  56036. image: {
  56037. source: "./media/characters/armail/back.svg",
  56038. extra: 1872/1803,
  56039. bottom: 63/1935
  56040. }
  56041. },
  56042. },
  56043. [
  56044. {
  56045. name: "Micro",
  56046. height: math.unit(0.25, "feet")
  56047. },
  56048. {
  56049. name: "Normal",
  56050. height: math.unit(8, "feet"),
  56051. default: true
  56052. },
  56053. {
  56054. name: "Mini-macro",
  56055. height: math.unit(30, "feet")
  56056. },
  56057. {
  56058. name: "Macro",
  56059. height: math.unit(400, "feet")
  56060. },
  56061. {
  56062. name: "Mega-macro",
  56063. height: math.unit(6000, "feet")
  56064. },
  56065. ]
  56066. ))
  56067. characterMakers.push(() => makeCharacter(
  56068. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56069. {
  56070. front: {
  56071. height: math.unit(6 + 7/12, "feet"),
  56072. weight: math.unit(210, "lb"),
  56073. name: "Front",
  56074. image: {
  56075. source: "./media/characters/wilfred-t-buxton/front.svg",
  56076. extra: 1068/882,
  56077. bottom: 28/1096
  56078. }
  56079. },
  56080. },
  56081. [
  56082. {
  56083. name: "Normal",
  56084. height: math.unit(6 + 7/12, "feet"),
  56085. default: true
  56086. },
  56087. ]
  56088. ))
  56089. characterMakers.push(() => makeCharacter(
  56090. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56091. {
  56092. front: {
  56093. height: math.unit(5 + 2/12, "feet"),
  56094. weight: math.unit(120, "lb"),
  56095. name: "Front",
  56096. image: {
  56097. source: "./media/characters/leighton-marrow/front.svg",
  56098. extra: 441/409,
  56099. bottom: 37/478
  56100. }
  56101. },
  56102. },
  56103. [
  56104. {
  56105. name: "Normal",
  56106. height: math.unit(5 + 2/12, "feet"),
  56107. default: true
  56108. },
  56109. ]
  56110. ))
  56111. characterMakers.push(() => makeCharacter(
  56112. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56113. {
  56114. front: {
  56115. height: math.unit(4, "meters"),
  56116. weight: math.unit(1200, "kg"),
  56117. name: "Front",
  56118. image: {
  56119. source: "./media/characters/licos/front.svg",
  56120. extra: 1727/1604,
  56121. bottom: 101/1828
  56122. },
  56123. form: "anthro",
  56124. default: true
  56125. },
  56126. taur_side: {
  56127. height: math.unit(20, "meters"),
  56128. weight: math.unit(1100000, "kg"),
  56129. name: "Side",
  56130. image: {
  56131. source: "./media/characters/licos/taur.svg",
  56132. extra: 1158/1091,
  56133. bottom: 80/1238
  56134. },
  56135. form: "taur",
  56136. default: true
  56137. },
  56138. },
  56139. [
  56140. {
  56141. name: "Normal",
  56142. height: math.unit(4, "meters"),
  56143. default: true,
  56144. form: "anthro"
  56145. },
  56146. {
  56147. name: "Normal",
  56148. height: math.unit(20, "meters"),
  56149. default: true,
  56150. form: "taur"
  56151. },
  56152. ],
  56153. {
  56154. "anthro": {
  56155. name: "Anthro",
  56156. default: true
  56157. },
  56158. "taur": {
  56159. name: "Taur",
  56160. },
  56161. }
  56162. ))
  56163. characterMakers.push(() => makeCharacter(
  56164. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56165. {
  56166. front: {
  56167. height: math.unit(10 + 3/12, "feet"),
  56168. name: "Front",
  56169. image: {
  56170. source: "./media/characters/theo-monkey/front.svg",
  56171. extra: 1735/1658,
  56172. bottom: 73/1808
  56173. }
  56174. },
  56175. back: {
  56176. height: math.unit(10 + 3/12, "feet"),
  56177. name: "Back",
  56178. image: {
  56179. source: "./media/characters/theo-monkey/back.svg",
  56180. extra: 1742/1664,
  56181. bottom: 33/1775
  56182. }
  56183. },
  56184. head: {
  56185. height: math.unit(2.29, "feet"),
  56186. name: "Head",
  56187. image: {
  56188. source: "./media/characters/theo-monkey/head.svg"
  56189. }
  56190. },
  56191. handPalm: {
  56192. height: math.unit(1.73, "feet"),
  56193. name: "Hand (Palm)",
  56194. image: {
  56195. source: "./media/characters/theo-monkey/hand-palm.svg"
  56196. }
  56197. },
  56198. handBack: {
  56199. height: math.unit(1.63, "feet"),
  56200. name: "Hand (Back)",
  56201. image: {
  56202. source: "./media/characters/theo-monkey/hand-back.svg"
  56203. }
  56204. },
  56205. footSole: {
  56206. height: math.unit(2.15, "feet"),
  56207. name: "Foot (Sole)",
  56208. image: {
  56209. source: "./media/characters/theo-monkey/foot-sole.svg"
  56210. }
  56211. },
  56212. footSide: {
  56213. height: math.unit(1.6, "feet"),
  56214. name: "Foot (Side)",
  56215. image: {
  56216. source: "./media/characters/theo-monkey/foot-side.svg"
  56217. }
  56218. },
  56219. },
  56220. [
  56221. {
  56222. name: "Normal",
  56223. height: math.unit(10 + 3/12, "feet"),
  56224. default: true
  56225. },
  56226. ]
  56227. ))
  56228. characterMakers.push(() => makeCharacter(
  56229. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56230. {
  56231. front: {
  56232. height: math.unit(11, "feet"),
  56233. weight: math.unit(3000, "lb"),
  56234. preyCapacity: math.unit(10, "people"),
  56235. name: "Front",
  56236. image: {
  56237. source: "./media/characters/brook/front.svg",
  56238. extra: 909/835,
  56239. bottom: 108/1017
  56240. }
  56241. },
  56242. back: {
  56243. height: math.unit(11, "feet"),
  56244. weight: math.unit(3000, "lb"),
  56245. preyCapacity: math.unit(10, "people"),
  56246. name: "Back",
  56247. image: {
  56248. source: "./media/characters/brook/back.svg",
  56249. extra: 976/916,
  56250. bottom: 34/1010
  56251. }
  56252. },
  56253. backAlt: {
  56254. height: math.unit(11, "feet"),
  56255. weight: math.unit(3000, "lb"),
  56256. preyCapacity: math.unit(10, "people"),
  56257. name: "Back (Alt)",
  56258. image: {
  56259. source: "./media/characters/brook/back-alt.svg",
  56260. extra: 1283/1213,
  56261. bottom: 35/1318
  56262. }
  56263. },
  56264. bust: {
  56265. height: math.unit(9.0859030837, "feet"),
  56266. weight: math.unit(3000, "lb"),
  56267. preyCapacity: math.unit(10, "people"),
  56268. name: "Bust",
  56269. image: {
  56270. source: "./media/characters/brook/bust.svg",
  56271. extra: 2043/1923,
  56272. bottom: 0/2043
  56273. }
  56274. },
  56275. },
  56276. [
  56277. {
  56278. name: "Small",
  56279. height: math.unit(11, "feet"),
  56280. default: true
  56281. },
  56282. {
  56283. name: "Towering",
  56284. height: math.unit(5, "km")
  56285. },
  56286. {
  56287. name: "Enormous",
  56288. height: math.unit(25, "earths")
  56289. },
  56290. ]
  56291. ))
  56292. characterMakers.push(() => makeCharacter(
  56293. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56294. {
  56295. front: {
  56296. height: math.unit(4, "feet"),
  56297. weight: math.unit(150, "lb"),
  56298. name: "Front",
  56299. image: {
  56300. source: "./media/characters/squishi/front.svg",
  56301. extra: 1428/1271,
  56302. bottom: 30/1458
  56303. },
  56304. extraAttributes: {
  56305. "pawSize": {
  56306. name: "Paw Size",
  56307. power: 1,
  56308. type: "length",
  56309. base: math.unit(14, "ShoeSizeMensUS"),
  56310. defaultUnit: "ShoeSizeMensUS"
  56311. },
  56312. }
  56313. },
  56314. side: {
  56315. height: math.unit(4, "feet"),
  56316. weight: math.unit(150, "lb"),
  56317. name: "Side",
  56318. image: {
  56319. source: "./media/characters/squishi/side.svg",
  56320. extra: 1428/1271,
  56321. bottom: 30/1458
  56322. },
  56323. extraAttributes: {
  56324. "pawSize": {
  56325. name: "Paw Size",
  56326. power: 1,
  56327. type: "length",
  56328. base: math.unit(14, "ShoeSizeMensUS"),
  56329. defaultUnit: "ShoeSizeMensUS"
  56330. },
  56331. }
  56332. },
  56333. back: {
  56334. height: math.unit(4, "feet"),
  56335. weight: math.unit(150, "lb"),
  56336. name: "Back",
  56337. image: {
  56338. source: "./media/characters/squishi/back.svg",
  56339. extra: 1428/1271,
  56340. bottom: 30/1458
  56341. },
  56342. extraAttributes: {
  56343. "pawSize": {
  56344. name: "Paw Size",
  56345. power: 1,
  56346. type: "length",
  56347. base: math.unit(14, "ShoeSizeMensUS"),
  56348. defaultUnit: "ShoeSizeMensUS"
  56349. },
  56350. }
  56351. },
  56352. },
  56353. [
  56354. {
  56355. name: "Normal",
  56356. height: math.unit(4, "feet"),
  56357. default: true
  56358. },
  56359. ]
  56360. ))
  56361. characterMakers.push(() => makeCharacter(
  56362. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56363. {
  56364. front: {
  56365. height: math.unit(7 + 8/12, "feet"),
  56366. weight: math.unit(333, "lb"),
  56367. name: "Front",
  56368. image: {
  56369. source: "./media/characters/vincent-vasroc/front.svg",
  56370. extra: 1962/1860,
  56371. bottom: 41/2003
  56372. }
  56373. },
  56374. back: {
  56375. height: math.unit(7 + 8/12, "feet"),
  56376. weight: math.unit(333, "lb"),
  56377. name: "Back",
  56378. image: {
  56379. source: "./media/characters/vincent-vasroc/back.svg",
  56380. extra: 1952/1815,
  56381. bottom: 33/1985
  56382. }
  56383. },
  56384. paw: {
  56385. height: math.unit(1.24, "feet"),
  56386. name: "Paw",
  56387. image: {
  56388. source: "./media/characters/vincent-vasroc/paw.svg"
  56389. }
  56390. },
  56391. ear: {
  56392. height: math.unit(0.75, "feet"),
  56393. name: "Ear",
  56394. image: {
  56395. source: "./media/characters/vincent-vasroc/ear.svg"
  56396. }
  56397. },
  56398. },
  56399. [
  56400. {
  56401. name: "Nano",
  56402. height: math.unit(92, "micrometers")
  56403. },
  56404. {
  56405. name: "Normal",
  56406. height: math.unit(7 + 8/12, "feet"),
  56407. default: true
  56408. },
  56409. ]
  56410. ))
  56411. characterMakers.push(() => makeCharacter(
  56412. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56413. {
  56414. frontNsfw: {
  56415. height: math.unit(40, "feet"),
  56416. weight: math.unit(58, "tons"),
  56417. name: "Front (NSFW)",
  56418. image: {
  56419. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56420. extra: 1265/965,
  56421. bottom: 155/1420
  56422. }
  56423. },
  56424. frontSfw: {
  56425. height: math.unit(40, "feet"),
  56426. weight: math.unit(58, "tons"),
  56427. name: "Front (SFW)",
  56428. image: {
  56429. source: "./media/characters/ru-kahn/front-sfw.svg",
  56430. extra: 1265/965,
  56431. bottom: 80/1345
  56432. }
  56433. },
  56434. },
  56435. [
  56436. {
  56437. name: "Small",
  56438. height: math.unit(4, "feet")
  56439. },
  56440. {
  56441. name: "Normal",
  56442. height: math.unit(40, "feet"),
  56443. default: true
  56444. },
  56445. {
  56446. name: "Macro",
  56447. height: math.unit(400, "feet")
  56448. },
  56449. ]
  56450. ))
  56451. characterMakers.push(() => makeCharacter(
  56452. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56453. {
  56454. frontNude: {
  56455. height: math.unit(6 + 5/12, "feet"),
  56456. name: "Front (Nude)",
  56457. image: {
  56458. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56459. extra: 1369/1366,
  56460. bottom: 68/1437
  56461. }
  56462. },
  56463. frontDressed: {
  56464. height: math.unit(6 + 5/12, "feet"),
  56465. name: "Front (Dressed)",
  56466. image: {
  56467. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56468. extra: 1369/1366,
  56469. bottom: 68/1437
  56470. }
  56471. },
  56472. },
  56473. [
  56474. {
  56475. name: "Normal",
  56476. height: math.unit(6 + 5/12, "feet"),
  56477. default: true
  56478. },
  56479. {
  56480. name: "Maximum",
  56481. height: math.unit(1930, "feet")
  56482. },
  56483. ]
  56484. ))
  56485. characterMakers.push(() => makeCharacter(
  56486. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56487. {
  56488. front: {
  56489. height: math.unit(5 + 6/12, "feet"),
  56490. name: "Front",
  56491. image: {
  56492. source: "./media/characters/kaja/front.svg",
  56493. extra: 1874/1514,
  56494. bottom: 117/1991
  56495. }
  56496. },
  56497. },
  56498. [
  56499. {
  56500. name: "Normal",
  56501. height: math.unit(5 + 6/12, "feet"),
  56502. default: true
  56503. },
  56504. ]
  56505. ))
  56506. characterMakers.push(() => makeCharacter(
  56507. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56508. {
  56509. front: {
  56510. height: math.unit(5 + 9/12, "feet"),
  56511. weight: math.unit(200, "lb"),
  56512. name: "Front",
  56513. image: {
  56514. source: "./media/characters/mark-smith/front.svg",
  56515. extra: 1004/943,
  56516. bottom: 58/1062
  56517. }
  56518. },
  56519. back: {
  56520. height: math.unit(5 + 9/12, "feet"),
  56521. weight: math.unit(200, "lb"),
  56522. name: "Back",
  56523. image: {
  56524. source: "./media/characters/mark-smith/back.svg",
  56525. extra: 1023/953,
  56526. bottom: 24/1047
  56527. }
  56528. },
  56529. head: {
  56530. height: math.unit(1.82, "feet"),
  56531. name: "Head",
  56532. image: {
  56533. source: "./media/characters/mark-smith/head.svg"
  56534. }
  56535. },
  56536. hand: {
  56537. height: math.unit(1.4, "feet"),
  56538. name: "Hand",
  56539. image: {
  56540. source: "./media/characters/mark-smith/hand.svg"
  56541. }
  56542. },
  56543. paw: {
  56544. height: math.unit(1.69, "feet"),
  56545. name: "Paw",
  56546. image: {
  56547. source: "./media/characters/mark-smith/paw.svg"
  56548. }
  56549. },
  56550. },
  56551. [
  56552. {
  56553. name: "Micro",
  56554. height: math.unit(0.25, "inches")
  56555. },
  56556. {
  56557. name: "Normal",
  56558. height: math.unit(5 + 9/12, "feet"),
  56559. default: true
  56560. },
  56561. {
  56562. name: "Macro",
  56563. height: math.unit(500, "feet")
  56564. },
  56565. ]
  56566. ))
  56567. characterMakers.push(() => makeCharacter(
  56568. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56569. {
  56570. frontNude: {
  56571. height: math.unit(6, "feet"),
  56572. name: "Front (Nude)",
  56573. image: {
  56574. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56575. extra: 1384/1321,
  56576. bottom: 57/1441
  56577. }
  56578. },
  56579. frontDressed: {
  56580. height: math.unit(6, "feet"),
  56581. name: "Front (Dressed)",
  56582. image: {
  56583. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56584. extra: 1384/1321,
  56585. bottom: 57/1441
  56586. }
  56587. },
  56588. },
  56589. [
  56590. {
  56591. name: "Normal",
  56592. height: math.unit(6, "feet"),
  56593. default: true
  56594. },
  56595. {
  56596. name: "Maximum",
  56597. height: math.unit(1776, "feet")
  56598. },
  56599. ]
  56600. ))
  56601. characterMakers.push(() => makeCharacter(
  56602. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56603. {
  56604. front: {
  56605. height: math.unit(2 + 4/12, "feet"),
  56606. weight: math.unit(350, "lb"),
  56607. name: "Front",
  56608. image: {
  56609. source: "./media/characters/devos/front.svg",
  56610. extra: 958/852,
  56611. bottom: 143/1101
  56612. }
  56613. },
  56614. },
  56615. [
  56616. {
  56617. name: "Base",
  56618. height: math.unit(2 + 4/12, "feet"),
  56619. default: true
  56620. },
  56621. ]
  56622. ))
  56623. characterMakers.push(() => makeCharacter(
  56624. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56625. {
  56626. front: {
  56627. height: math.unit(9 + 2/12, "feet"),
  56628. name: "Front",
  56629. image: {
  56630. source: "./media/characters/hiveheart/front.svg",
  56631. extra: 394/364,
  56632. bottom: 65/459
  56633. }
  56634. },
  56635. back: {
  56636. height: math.unit(9 + 2/12, "feet"),
  56637. name: "Back",
  56638. image: {
  56639. source: "./media/characters/hiveheart/back.svg",
  56640. extra: 374/357,
  56641. bottom: 63/437
  56642. }
  56643. },
  56644. },
  56645. [
  56646. {
  56647. name: "Base",
  56648. height: math.unit(9 + 2/12, "feet"),
  56649. default: true
  56650. },
  56651. ]
  56652. ))
  56653. characterMakers.push(() => makeCharacter(
  56654. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56655. {
  56656. front: {
  56657. height: math.unit(2.5, "inches"),
  56658. weight: math.unit(0.6, "oz"),
  56659. name: "Front",
  56660. image: {
  56661. source: "./media/characters/bryn/front.svg",
  56662. extra: 1480/1205,
  56663. bottom: 27/1507
  56664. }
  56665. },
  56666. back: {
  56667. height: math.unit(2.5, "inches"),
  56668. weight: math.unit(0.6, "oz"),
  56669. name: "Back",
  56670. image: {
  56671. source: "./media/characters/bryn/back.svg",
  56672. extra: 1475/1201,
  56673. bottom: 39/1514
  56674. }
  56675. },
  56676. foot: {
  56677. height: math.unit(0.4, "inches"),
  56678. name: "Foot",
  56679. image: {
  56680. source: "./media/characters/bryn/foot.svg"
  56681. }
  56682. },
  56683. },
  56684. [
  56685. {
  56686. name: "Normal",
  56687. height: math.unit(2.5, "inches"),
  56688. default: true
  56689. },
  56690. ]
  56691. ))
  56692. characterMakers.push(() => makeCharacter(
  56693. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56694. {
  56695. side: {
  56696. height: math.unit(7, "feet"),
  56697. weight: math.unit(657, "kg"),
  56698. name: "Side",
  56699. image: {
  56700. source: "./media/characters/delta/side.svg",
  56701. extra: 781/212,
  56702. bottom: 7/788
  56703. },
  56704. extraAttributes: {
  56705. "wingspan": {
  56706. name: "Wingspan",
  56707. power: 1,
  56708. type: "length",
  56709. base: math.unit(48, "feet")
  56710. },
  56711. "length": {
  56712. name: "Length",
  56713. power: 1,
  56714. type: "length",
  56715. base: math.unit(21, "feet")
  56716. },
  56717. "pawSize": {
  56718. name: "Paw Size",
  56719. power: 2,
  56720. type: "area",
  56721. base: math.unit(1.5*1.4, "feet^2")
  56722. },
  56723. }
  56724. },
  56725. },
  56726. [
  56727. {
  56728. name: "Normal",
  56729. height: math.unit(6, "feet"),
  56730. default: true
  56731. },
  56732. ]
  56733. ))
  56734. characterMakers.push(() => makeCharacter(
  56735. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56736. {
  56737. front: {
  56738. height: math.unit(6, "feet"),
  56739. name: "Front",
  56740. image: {
  56741. source: "./media/characters/pyrow/front.svg",
  56742. extra: 513/486,
  56743. bottom: 14/527
  56744. }
  56745. },
  56746. frontWing: {
  56747. height: math.unit(6, "feet"),
  56748. name: "Front (Wing)",
  56749. image: {
  56750. source: "./media/characters/pyrow/front-wing.svg",
  56751. extra: 539/383,
  56752. bottom: 20/559
  56753. }
  56754. },
  56755. back: {
  56756. height: math.unit(6, "feet"),
  56757. name: "Back",
  56758. image: {
  56759. source: "./media/characters/pyrow/back.svg",
  56760. extra: 500/473,
  56761. bottom: 9/509
  56762. }
  56763. },
  56764. },
  56765. [
  56766. {
  56767. name: "Normal",
  56768. height: math.unit(6, "feet"),
  56769. default: true
  56770. },
  56771. ]
  56772. ))
  56773. characterMakers.push(() => makeCharacter(
  56774. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56775. {
  56776. front: {
  56777. height: math.unit(5, "meters"),
  56778. weight: math.unit(3, "tonnes"),
  56779. name: "Front",
  56780. image: {
  56781. source: "./media/characters/velikan/front.svg",
  56782. extra: 867/744,
  56783. bottom: 71/938
  56784. },
  56785. extraAttributes: {
  56786. "shoeSize": {
  56787. name: "Shoe Size",
  56788. power: 1,
  56789. type: "length",
  56790. base: math.unit(135, "ShoeSizeUK"),
  56791. defaultUnit: "ShoeSizeUK"
  56792. },
  56793. }
  56794. },
  56795. },
  56796. [
  56797. {
  56798. name: "Normal",
  56799. height: math.unit(5, "meters"),
  56800. default: true
  56801. },
  56802. {
  56803. name: "Macro",
  56804. height: math.unit(1, "km")
  56805. },
  56806. {
  56807. name: "Mega Macro",
  56808. height: math.unit(100, "km")
  56809. },
  56810. {
  56811. name: "Giga Macro",
  56812. height: math.unit(2, "megameters")
  56813. },
  56814. {
  56815. name: "Planetary",
  56816. height: math.unit(22, "megameters")
  56817. },
  56818. {
  56819. name: "Solar",
  56820. height: math.unit(8, "gigameters")
  56821. },
  56822. {
  56823. name: "Cosmic",
  56824. height: math.unit(10, "zettameters")
  56825. },
  56826. {
  56827. name: "Omni",
  56828. height: math.unit(9e260, "multiverses")
  56829. },
  56830. ]
  56831. ))
  56832. characterMakers.push(() => makeCharacter(
  56833. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56834. {
  56835. front: {
  56836. height: math.unit(4 + 3/12, "feet"),
  56837. weight: math.unit(90, "lb"),
  56838. name: "Front",
  56839. image: {
  56840. source: "./media/characters/sabiki/front.svg",
  56841. extra: 1662/1423,
  56842. bottom: 65/1727
  56843. }
  56844. },
  56845. },
  56846. [
  56847. {
  56848. name: "Normal",
  56849. height: math.unit(4 + 3/12, "feet"),
  56850. default: true
  56851. },
  56852. ]
  56853. ))
  56854. characterMakers.push(() => makeCharacter(
  56855. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56856. {
  56857. frontSfw: {
  56858. height: math.unit(2, "mm"),
  56859. name: "Front (SFW)",
  56860. image: {
  56861. source: "./media/characters/carmel/front-sfw.svg",
  56862. extra: 1131/1006,
  56863. bottom: 66/1197
  56864. }
  56865. },
  56866. frontNsfw: {
  56867. height: math.unit(2, "mm"),
  56868. name: "Front (NSFW)",
  56869. image: {
  56870. source: "./media/characters/carmel/front-nsfw.svg",
  56871. extra: 1131/1006,
  56872. bottom: 66/1197
  56873. }
  56874. },
  56875. foot: {
  56876. height: math.unit(0.3, "mm"),
  56877. name: "Foot",
  56878. image: {
  56879. source: "./media/characters/carmel/foot.svg"
  56880. }
  56881. },
  56882. tongue: {
  56883. height: math.unit(0.71, "mm"),
  56884. name: "Tongue",
  56885. image: {
  56886. source: "./media/characters/carmel/tongue.svg"
  56887. }
  56888. },
  56889. dick: {
  56890. height: math.unit(0.085, "mm"),
  56891. name: "Dick",
  56892. image: {
  56893. source: "./media/characters/carmel/dick.svg"
  56894. }
  56895. },
  56896. },
  56897. [
  56898. {
  56899. name: "Micro",
  56900. height: math.unit(2, "mm"),
  56901. default: true
  56902. },
  56903. {
  56904. name: "Normal",
  56905. height: math.unit(4 + 8/12, "feet")
  56906. },
  56907. {
  56908. name: "Mega Macro",
  56909. height: math.unit(250, "feet")
  56910. },
  56911. {
  56912. name: "BIGGER",
  56913. height: math.unit(1000, "feet")
  56914. },
  56915. {
  56916. name: "BIGGEST",
  56917. height: math.unit(2, "miles")
  56918. },
  56919. ]
  56920. ))
  56921. characterMakers.push(() => makeCharacter(
  56922. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56923. {
  56924. front: {
  56925. height: math.unit(6.5, "feet"),
  56926. weight: math.unit(198, "lb"),
  56927. name: "Front",
  56928. image: {
  56929. source: "./media/characters/tamani/anthro.svg",
  56930. extra: 930/890,
  56931. bottom: 34/964
  56932. },
  56933. form: "anthro",
  56934. default: true
  56935. },
  56936. side: {
  56937. height: math.unit(6, "feet"),
  56938. weight: math.unit(198*2, "lb"),
  56939. name: "Side",
  56940. image: {
  56941. source: "./media/characters/tamani/feral.svg",
  56942. extra: 559/519,
  56943. bottom: 43/602
  56944. },
  56945. form: "feral"
  56946. },
  56947. },
  56948. [
  56949. {
  56950. name: "Normal",
  56951. height: math.unit(6.5, "feet"),
  56952. default: true,
  56953. form: "anthro"
  56954. },
  56955. {
  56956. name: "Normal",
  56957. height: math.unit(6, "feet"),
  56958. default: true,
  56959. form: "feral"
  56960. },
  56961. ],
  56962. {
  56963. "anthro": {
  56964. name: "Anthro",
  56965. default: true
  56966. },
  56967. "feral": {
  56968. name: "Feral",
  56969. },
  56970. }
  56971. ))
  56972. characterMakers.push(() => makeCharacter(
  56973. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56974. {
  56975. front: {
  56976. height: math.unit(4 + 1/12, "feet"),
  56977. weight: math.unit(114, "lb"),
  56978. name: "Front",
  56979. image: {
  56980. source: "./media/characters/dex/front.svg",
  56981. extra: 787/680,
  56982. bottom: 18/805
  56983. }
  56984. },
  56985. side: {
  56986. height: math.unit(4 + 1/12, "feet"),
  56987. weight: math.unit(114, "lb"),
  56988. name: "Side",
  56989. image: {
  56990. source: "./media/characters/dex/side.svg",
  56991. extra: 785/680,
  56992. bottom: 12/797
  56993. }
  56994. },
  56995. back: {
  56996. height: math.unit(4 + 1/12, "feet"),
  56997. weight: math.unit(114, "lb"),
  56998. name: "Back",
  56999. image: {
  57000. source: "./media/characters/dex/back.svg",
  57001. extra: 785/681,
  57002. bottom: 17/802
  57003. }
  57004. },
  57005. loungewear: {
  57006. height: math.unit(4 + 1/12, "feet"),
  57007. weight: math.unit(114, "lb"),
  57008. name: "Loungewear",
  57009. image: {
  57010. source: "./media/characters/dex/loungewear.svg",
  57011. extra: 787/680,
  57012. bottom: 18/805
  57013. }
  57014. },
  57015. workout: {
  57016. height: math.unit(4 + 1/12, "feet"),
  57017. weight: math.unit(114, "lb"),
  57018. name: "Workout",
  57019. image: {
  57020. source: "./media/characters/dex/workout.svg",
  57021. extra: 787/680,
  57022. bottom: 18/805
  57023. }
  57024. },
  57025. schoolUniform: {
  57026. height: math.unit(4 + 1/12, "feet"),
  57027. weight: math.unit(114, "lb"),
  57028. name: "School-uniform",
  57029. image: {
  57030. source: "./media/characters/dex/school-uniform.svg",
  57031. extra: 787/680,
  57032. bottom: 18/805
  57033. }
  57034. },
  57035. maw: {
  57036. height: math.unit(0.55, "feet"),
  57037. name: "Maw",
  57038. image: {
  57039. source: "./media/characters/dex/maw.svg"
  57040. }
  57041. },
  57042. paw: {
  57043. height: math.unit(0.87, "feet"),
  57044. name: "Paw",
  57045. image: {
  57046. source: "./media/characters/dex/paw.svg"
  57047. }
  57048. },
  57049. bust: {
  57050. height: math.unit(1.67, "feet"),
  57051. name: "Bust",
  57052. image: {
  57053. source: "./media/characters/dex/bust.svg"
  57054. }
  57055. },
  57056. },
  57057. [
  57058. {
  57059. name: "Normal",
  57060. height: math.unit(4 + 1/12, "feet"),
  57061. default: true
  57062. },
  57063. ]
  57064. ))
  57065. characterMakers.push(() => makeCharacter(
  57066. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57067. {
  57068. front: {
  57069. height: math.unit(4 + 3/12, "feet"),
  57070. weight: math.unit(60, "lb"),
  57071. name: "Front",
  57072. image: {
  57073. source: "./media/characters/silke/front.svg",
  57074. extra: 1334/1122,
  57075. bottom: 21/1355
  57076. }
  57077. },
  57078. back: {
  57079. height: math.unit(4 + 3/12, "feet"),
  57080. weight: math.unit(60, "lb"),
  57081. name: "Back",
  57082. image: {
  57083. source: "./media/characters/silke/back.svg",
  57084. extra: 1328/1092,
  57085. bottom: 16/1344
  57086. }
  57087. },
  57088. dressed: {
  57089. height: math.unit(4 + 3/12, "feet"),
  57090. weight: math.unit(60, "lb"),
  57091. name: "Dressed",
  57092. image: {
  57093. source: "./media/characters/silke/dressed.svg",
  57094. extra: 1334/1122,
  57095. bottom: 43/1377
  57096. }
  57097. },
  57098. },
  57099. [
  57100. {
  57101. name: "Normal",
  57102. height: math.unit(4 + 3/12, "feet"),
  57103. default: true
  57104. },
  57105. ]
  57106. ))
  57107. characterMakers.push(() => makeCharacter(
  57108. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57109. {
  57110. front: {
  57111. height: math.unit(1.58, "meters"),
  57112. weight: math.unit(47, "kg"),
  57113. name: "Front",
  57114. image: {
  57115. source: "./media/characters/wireshark/front.svg",
  57116. extra: 883/838,
  57117. bottom: 66/949
  57118. }
  57119. },
  57120. },
  57121. [
  57122. {
  57123. name: "Normal",
  57124. height: math.unit(1.58, "meters"),
  57125. default: true
  57126. },
  57127. ]
  57128. ))
  57129. characterMakers.push(() => makeCharacter(
  57130. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57131. {
  57132. front: {
  57133. height: math.unit(6, "meters"),
  57134. weight: math.unit(15000, "kg"),
  57135. name: "Front",
  57136. image: {
  57137. source: "./media/characters/gallagher/front.svg",
  57138. extra: 532/493,
  57139. bottom: 0/532
  57140. }
  57141. },
  57142. },
  57143. [
  57144. {
  57145. name: "Normal",
  57146. height: math.unit(6, "meters"),
  57147. default: true
  57148. },
  57149. ]
  57150. ))
  57151. characterMakers.push(() => makeCharacter(
  57152. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57153. {
  57154. front: {
  57155. height: math.unit(2.4, "meters"),
  57156. weight: math.unit(270, "kg"),
  57157. name: "Front",
  57158. image: {
  57159. source: "./media/characters/alice/front.svg",
  57160. extra: 950/900,
  57161. bottom: 36/986
  57162. }
  57163. },
  57164. side: {
  57165. height: math.unit(2.4, "meters"),
  57166. weight: math.unit(270, "kg"),
  57167. name: "Side",
  57168. image: {
  57169. source: "./media/characters/alice/side.svg",
  57170. extra: 921/876,
  57171. bottom: 19/940
  57172. }
  57173. },
  57174. dressed: {
  57175. height: math.unit(2.4, "meters"),
  57176. weight: math.unit(270, "kg"),
  57177. name: "Dressed",
  57178. image: {
  57179. source: "./media/characters/alice/dressed.svg",
  57180. extra: 905/850,
  57181. bottom: 81/986
  57182. }
  57183. },
  57184. fishnet: {
  57185. height: math.unit(2.4, "meters"),
  57186. weight: math.unit(270, "kg"),
  57187. name: "Fishnet",
  57188. image: {
  57189. source: "./media/characters/alice/fishnet.svg",
  57190. extra: 905/850,
  57191. bottom: 81/986
  57192. }
  57193. },
  57194. },
  57195. [
  57196. {
  57197. name: "Normal",
  57198. height: math.unit(2.4, "meters"),
  57199. default: true
  57200. },
  57201. ]
  57202. ))
  57203. characterMakers.push(() => makeCharacter(
  57204. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57205. {
  57206. front: {
  57207. height: math.unit(175.25, "feet"),
  57208. name: "Front",
  57209. image: {
  57210. source: "./media/characters/fio/front.svg",
  57211. extra: 1883/1591,
  57212. bottom: 34/1917
  57213. }
  57214. },
  57215. },
  57216. [
  57217. {
  57218. name: "Normal",
  57219. height: math.unit(175.25, "cm"),
  57220. default: true
  57221. },
  57222. ]
  57223. ))
  57224. characterMakers.push(() => makeCharacter(
  57225. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57226. {
  57227. side: {
  57228. height: math.unit(6, "meters"),
  57229. weight: math.unit(3400, "kg"),
  57230. preyCapacity: math.unit(1700, "liters"),
  57231. name: "Side",
  57232. image: {
  57233. source: "./media/characters/hass/side.svg",
  57234. extra: 1058/997,
  57235. bottom: 177/1235
  57236. }
  57237. },
  57238. feeding: {
  57239. height: math.unit(6*0.63, "meters"),
  57240. weight: math.unit(3400, "kg"),
  57241. preyCapacity: math.unit(1700, "liters"),
  57242. name: "Feeding",
  57243. image: {
  57244. source: "./media/characters/hass/feeding.svg",
  57245. extra: 689/579,
  57246. bottom: 146/835
  57247. }
  57248. },
  57249. guts: {
  57250. height: math.unit(6, "meters"),
  57251. weight: math.unit(3400, "kg"),
  57252. name: "Guts",
  57253. image: {
  57254. source: "./media/characters/hass/guts.svg",
  57255. extra: 1223/1198,
  57256. bottom: 182/1405
  57257. }
  57258. },
  57259. dickFront: {
  57260. height: math.unit(1.4, "meters"),
  57261. name: "Dick (Front)",
  57262. image: {
  57263. source: "./media/characters/hass/dick-front.svg"
  57264. }
  57265. },
  57266. dickSide: {
  57267. height: math.unit(1.3, "meters"),
  57268. name: "Dick (Side)",
  57269. image: {
  57270. source: "./media/characters/hass/dick-side.svg"
  57271. }
  57272. },
  57273. dickBack: {
  57274. height: math.unit(1.4, "meters"),
  57275. name: "Dick (Back)",
  57276. image: {
  57277. source: "./media/characters/hass/dick-back.svg"
  57278. }
  57279. },
  57280. },
  57281. [
  57282. {
  57283. name: "Normal",
  57284. height: math.unit(6, "meters"),
  57285. default: true
  57286. },
  57287. ]
  57288. ))
  57289. characterMakers.push(() => makeCharacter(
  57290. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57291. {
  57292. front: {
  57293. height: math.unit(4, "feet"),
  57294. weight: math.unit(60, "lb"),
  57295. name: "Front",
  57296. image: {
  57297. source: "./media/characters/hickory-finnegan/front.svg",
  57298. extra: 444/411,
  57299. bottom: 10/454
  57300. }
  57301. },
  57302. side: {
  57303. height: math.unit(4, "feet"),
  57304. weight: math.unit(60, "lb"),
  57305. name: "Side",
  57306. image: {
  57307. source: "./media/characters/hickory-finnegan/side.svg",
  57308. extra: 444/411,
  57309. bottom: 10/454
  57310. }
  57311. },
  57312. back: {
  57313. height: math.unit(4, "feet"),
  57314. weight: math.unit(60, "lb"),
  57315. name: "Back",
  57316. image: {
  57317. source: "./media/characters/hickory-finnegan/back.svg",
  57318. extra: 444/411,
  57319. bottom: 10/454
  57320. }
  57321. },
  57322. },
  57323. [
  57324. {
  57325. name: "Normal",
  57326. height: math.unit(4, "feet"),
  57327. default: true
  57328. },
  57329. ]
  57330. ))
  57331. characterMakers.push(() => makeCharacter(
  57332. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57333. {
  57334. snivy_front: {
  57335. height: math.unit(2, "feet"),
  57336. weight: math.unit(17.9, "lb"),
  57337. name: "Front",
  57338. image: {
  57339. source: "./media/characters/robin-phox/snivy-front.svg",
  57340. extra: 569/504,
  57341. bottom: 33/602
  57342. },
  57343. form: "snivy",
  57344. default: true
  57345. },
  57346. snivy_frontNsfw: {
  57347. height: math.unit(2, "feet"),
  57348. weight: math.unit(17.9, "lb"),
  57349. name: "Front (NSFW)",
  57350. image: {
  57351. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57352. extra: 569/504,
  57353. bottom: 33/602
  57354. },
  57355. form: "snivy",
  57356. },
  57357. snivy_back: {
  57358. height: math.unit(2, "feet"),
  57359. weight: math.unit(17.9, "lb"),
  57360. name: "Back",
  57361. image: {
  57362. source: "./media/characters/robin-phox/snivy-back.svg",
  57363. extra: 577/508,
  57364. bottom: 21/598
  57365. },
  57366. form: "snivy",
  57367. },
  57368. snivy_foot: {
  57369. height: math.unit(0.68, "feet"),
  57370. name: "Foot",
  57371. image: {
  57372. source: "./media/characters/robin-phox/snivy-foot.svg"
  57373. },
  57374. form: "snivy",
  57375. },
  57376. snivy_sole: {
  57377. height: math.unit(0.68, "feet"),
  57378. name: "Sole",
  57379. image: {
  57380. source: "./media/characters/robin-phox/snivy-sole.svg"
  57381. },
  57382. form: "snivy",
  57383. },
  57384. yoshi_front: {
  57385. height: math.unit(6, "feet"),
  57386. weight: math.unit(150, "lb"),
  57387. name: "Front",
  57388. image: {
  57389. source: "./media/characters/robin-phox/yoshi-front.svg",
  57390. extra: 890/792,
  57391. bottom: 29/919
  57392. },
  57393. form: "yoshi",
  57394. default: true
  57395. },
  57396. yoshi_frontNsfw: {
  57397. height: math.unit(6, "feet"),
  57398. weight: math.unit(150, "lb"),
  57399. name: "Front (NSFW)",
  57400. image: {
  57401. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57402. extra: 890/792,
  57403. bottom: 29/919
  57404. },
  57405. form: "yoshi",
  57406. },
  57407. yoshi_back: {
  57408. height: math.unit(6, "feet"),
  57409. weight: math.unit(150, "lb"),
  57410. name: "Back",
  57411. image: {
  57412. source: "./media/characters/robin-phox/yoshi-back.svg",
  57413. extra: 890/792,
  57414. bottom: 29/919
  57415. },
  57416. form: "yoshi",
  57417. },
  57418. yoshi_foot: {
  57419. height: math.unit(1.5, "feet"),
  57420. name: "Foot",
  57421. image: {
  57422. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57423. },
  57424. form: "yoshi",
  57425. },
  57426. delphox_front: {
  57427. height: math.unit(4 + 11/12, "feet"),
  57428. weight: math.unit(86, "lb"),
  57429. name: "Front",
  57430. image: {
  57431. source: "./media/characters/robin-phox/delphox-front.svg",
  57432. extra: 1266/1069,
  57433. bottom: 32/1298
  57434. },
  57435. form: "delphox",
  57436. default: true
  57437. },
  57438. delphox_frontNsfw: {
  57439. height: math.unit(4 + 11/12, "feet"),
  57440. weight: math.unit(86, "lb"),
  57441. name: "Front (NSFW)",
  57442. image: {
  57443. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57444. extra: 1266/1069,
  57445. bottom: 32/1298
  57446. },
  57447. form: "delphox",
  57448. },
  57449. delphox_back: {
  57450. height: math.unit(4 + 11/12, "feet"),
  57451. weight: math.unit(86, "lb"),
  57452. name: "Back",
  57453. image: {
  57454. source: "./media/characters/robin-phox/delphox-back.svg",
  57455. extra: 1269/1083,
  57456. bottom: 15/1284
  57457. },
  57458. form: "delphox",
  57459. },
  57460. mienshao_front: {
  57461. height: math.unit(4 + 7/12, "feet"),
  57462. weight: math.unit(78.3, "lb"),
  57463. name: "Front",
  57464. image: {
  57465. source: "./media/characters/robin-phox/mienshao-front.svg",
  57466. extra: 1052/970,
  57467. bottom: 108/1160
  57468. },
  57469. form: "mienshao",
  57470. default: true
  57471. },
  57472. mienshao_frontNsfw: {
  57473. height: math.unit(4 + 7/12, "feet"),
  57474. weight: math.unit(78.3, "lb"),
  57475. name: "Front (NSFW)",
  57476. image: {
  57477. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57478. extra: 1052/970,
  57479. bottom: 108/1160
  57480. },
  57481. form: "mienshao",
  57482. },
  57483. mienshao_back: {
  57484. height: math.unit(4 + 7/12, "feet"),
  57485. weight: math.unit(78.3, "lb"),
  57486. name: "Back",
  57487. image: {
  57488. source: "./media/characters/robin-phox/mienshao-back.svg",
  57489. extra: 1102/982,
  57490. bottom: 32/1134
  57491. },
  57492. form: "mienshao",
  57493. },
  57494. inteleon_front: {
  57495. height: math.unit(6 + 3/12, "feet"),
  57496. weight: math.unit(99.6, "lb"),
  57497. name: "Front",
  57498. image: {
  57499. source: "./media/characters/robin-phox/inteleon-front.svg",
  57500. extra: 910/799,
  57501. bottom: 76/986
  57502. },
  57503. form: "inteleon",
  57504. default: true
  57505. },
  57506. inteleon_frontNsfw: {
  57507. height: math.unit(6 + 3/12, "feet"),
  57508. weight: math.unit(99.6, "lb"),
  57509. name: "Front (NSFW)",
  57510. image: {
  57511. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57512. extra: 910/799,
  57513. bottom: 76/986
  57514. },
  57515. form: "inteleon",
  57516. },
  57517. inteleon_back: {
  57518. height: math.unit(6 + 3/12, "feet"),
  57519. weight: math.unit(99.6, "lb"),
  57520. name: "Back",
  57521. image: {
  57522. source: "./media/characters/robin-phox/inteleon-back.svg",
  57523. extra: 907/796,
  57524. bottom: 25/932
  57525. },
  57526. form: "inteleon",
  57527. },
  57528. reshiram_front: {
  57529. height: math.unit(10 + 6/12, "feet"),
  57530. weight: math.unit(727.5, "lb"),
  57531. name: "Front",
  57532. image: {
  57533. source: "./media/characters/robin-phox/reshiram-front.svg",
  57534. extra: 1198/940,
  57535. bottom: 123/1321
  57536. },
  57537. form: "reshiram",
  57538. },
  57539. reshiram_frontNsfw: {
  57540. height: math.unit(10 + 6/12, "feet"),
  57541. weight: math.unit(727.5, "lb"),
  57542. name: "Front-nsfw",
  57543. image: {
  57544. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57545. extra: 1198/940,
  57546. bottom: 123/1321
  57547. },
  57548. form: "reshiram",
  57549. },
  57550. reshiram_back: {
  57551. height: math.unit(10 + 6/12, "feet"),
  57552. weight: math.unit(727.5, "lb"),
  57553. name: "Back",
  57554. image: {
  57555. source: "./media/characters/robin-phox/reshiram-back.svg",
  57556. extra: 1024/904,
  57557. bottom: 85/1109
  57558. },
  57559. form: "reshiram",
  57560. },
  57561. samurott_front: {
  57562. height: math.unit(8, "feet"),
  57563. weight: math.unit(208.6, "lb"),
  57564. name: "Front",
  57565. image: {
  57566. source: "./media/characters/robin-phox/samurott-front.svg",
  57567. extra: 1048/984,
  57568. bottom: 100/1148
  57569. },
  57570. form: "samurott",
  57571. },
  57572. samurott_frontNsfw: {
  57573. height: math.unit(8, "feet"),
  57574. weight: math.unit(208.6, "lb"),
  57575. name: "Front-nsfw",
  57576. image: {
  57577. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57578. extra: 1048/984,
  57579. bottom: 100/1148
  57580. },
  57581. form: "samurott",
  57582. },
  57583. samurott_back: {
  57584. height: math.unit(8, "feet"),
  57585. weight: math.unit(208.6, "lb"),
  57586. name: "Back",
  57587. image: {
  57588. source: "./media/characters/robin-phox/samurott-back.svg",
  57589. extra: 1110/1042,
  57590. bottom: 12/1122
  57591. },
  57592. form: "samurott",
  57593. },
  57594. samurott_feral: {
  57595. height: math.unit(4 + 11/12, "feet"),
  57596. weight: math.unit(208.6, "lb"),
  57597. name: "Feral",
  57598. image: {
  57599. source: "./media/characters/robin-phox/samurott-feral.svg",
  57600. extra: 766/681,
  57601. bottom: 108/874
  57602. },
  57603. form: "samurott",
  57604. },
  57605. },
  57606. [
  57607. {
  57608. name: "Normal",
  57609. height: math.unit(2, "feet"),
  57610. default: true,
  57611. form: "snivy"
  57612. },
  57613. {
  57614. name: "Normal",
  57615. height: math.unit(6, "feet"),
  57616. default: true,
  57617. form: "yoshi"
  57618. },
  57619. {
  57620. name: "Normal",
  57621. height: math.unit(4 + 11/12, "feet"),
  57622. default: true,
  57623. form: "delphox"
  57624. },
  57625. {
  57626. name: "Normal",
  57627. height: math.unit(4 + 7/12, "feet"),
  57628. default: true,
  57629. form: "mienshao"
  57630. },
  57631. {
  57632. name: "Normal",
  57633. height: math.unit(6 + 3/12, "feet"),
  57634. default: true,
  57635. form: "inteleon"
  57636. },
  57637. {
  57638. name: "Normal",
  57639. height: math.unit(10 + 6/12, "feet"),
  57640. default: true,
  57641. form: "reshiram"
  57642. },
  57643. {
  57644. name: "Normal",
  57645. height: math.unit(8, "feet"),
  57646. default: true,
  57647. form: "samurott"
  57648. },
  57649. {
  57650. name: "Macro",
  57651. height: math.unit(500, "feet"),
  57652. allForms: true
  57653. },
  57654. {
  57655. name: "Mega Macro",
  57656. height: math.unit(10, "earths"),
  57657. allForms: true
  57658. },
  57659. {
  57660. name: "Giga Macro",
  57661. height: math.unit(1, "galaxy"),
  57662. allForms: true
  57663. },
  57664. {
  57665. name: "Godly Macro",
  57666. height: math.unit(1e10, "multiverses"),
  57667. allForms: true
  57668. },
  57669. ],
  57670. {
  57671. "snivy": {
  57672. name: "Snivy",
  57673. default: true
  57674. },
  57675. "yoshi": {
  57676. name: "Yoshi",
  57677. },
  57678. "delphox": {
  57679. name: "Delphox",
  57680. },
  57681. "mienshao": {
  57682. name: "Mienshao",
  57683. },
  57684. "inteleon": {
  57685. name: "Inteleon",
  57686. },
  57687. "reshiram": {
  57688. name: "Reshiram",
  57689. },
  57690. "samurott": {
  57691. name: "Samurott",
  57692. },
  57693. }
  57694. ))
  57695. characterMakers.push(() => makeCharacter(
  57696. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57697. {
  57698. front: {
  57699. height: math.unit(4, "feet"),
  57700. name: "Front",
  57701. image: {
  57702. source: "./media/characters/ash-leung/front.svg",
  57703. extra: 1916/1792,
  57704. bottom: 50/1966
  57705. }
  57706. },
  57707. },
  57708. [
  57709. {
  57710. name: "Atomic",
  57711. height: math.unit(1, "angstrom")
  57712. },
  57713. {
  57714. name: "Microscopic",
  57715. height: math.unit(4000, "angstroms")
  57716. },
  57717. {
  57718. name: "Speck",
  57719. height: math.unit(1, "mm")
  57720. },
  57721. {
  57722. name: "Small",
  57723. height: math.unit(1, "inch")
  57724. },
  57725. {
  57726. name: "Normal",
  57727. height: math.unit(4, "feet"),
  57728. default: true
  57729. },
  57730. ]
  57731. ))
  57732. characterMakers.push(() => makeCharacter(
  57733. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57734. {
  57735. frontDressed: {
  57736. height: math.unit(2.08, "meters"),
  57737. weight: math.unit(175, "lb"),
  57738. name: "Front (Dressed)",
  57739. image: {
  57740. source: "./media/characters/carie/front-dressed.svg",
  57741. extra: 456/417,
  57742. bottom: 7/463
  57743. }
  57744. },
  57745. backDressed: {
  57746. height: math.unit(2.08, "meters"),
  57747. weight: math.unit(175, "lb"),
  57748. name: "Back (Dressed)",
  57749. image: {
  57750. source: "./media/characters/carie/back-dressed.svg",
  57751. extra: 455/414,
  57752. bottom: 11/466
  57753. }
  57754. },
  57755. front: {
  57756. height: math.unit(2, "meters"),
  57757. weight: math.unit(175, "lb"),
  57758. name: "Front",
  57759. image: {
  57760. source: "./media/characters/carie/front.svg",
  57761. extra: 438/399,
  57762. bottom: 12/450
  57763. }
  57764. },
  57765. back: {
  57766. height: math.unit(2, "meters"),
  57767. weight: math.unit(175, "lb"),
  57768. name: "Back",
  57769. image: {
  57770. source: "./media/characters/carie/back.svg",
  57771. extra: 438/397,
  57772. bottom: 7/445
  57773. }
  57774. },
  57775. },
  57776. [
  57777. {
  57778. name: "Normal",
  57779. height: math.unit(2.08, "meters"),
  57780. default: true
  57781. },
  57782. {
  57783. name: "Macro",
  57784. height: math.unit(2.08e3, "meters")
  57785. },
  57786. {
  57787. name: "Mega Macro",
  57788. height: math.unit(2.08e6, "meters")
  57789. },
  57790. {
  57791. name: "Giga Macro",
  57792. height: math.unit(2.08e9, "meters")
  57793. },
  57794. {
  57795. name: "Tera Macro",
  57796. height: math.unit(2.08e12, "meters")
  57797. },
  57798. {
  57799. name: "Peta Macro",
  57800. height: math.unit(2.08e15, "meters")
  57801. },
  57802. {
  57803. name: "Exa Macro",
  57804. height: math.unit(2.08e18, "meters")
  57805. },
  57806. {
  57807. name: "Zetta Macro",
  57808. height: math.unit(2.08e21, "meters")
  57809. },
  57810. {
  57811. name: "Yotta Macro",
  57812. height: math.unit(2.08e24, "meters")
  57813. },
  57814. ]
  57815. ))
  57816. characterMakers.push(() => makeCharacter(
  57817. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57818. {
  57819. front: {
  57820. height: math.unit(5 + 2/12, "feet"),
  57821. weight: math.unit(120, "lb"),
  57822. name: "Front",
  57823. image: {
  57824. source: "./media/characters/sai-bree/front.svg",
  57825. extra: 1843/1702,
  57826. bottom: 91/1934
  57827. }
  57828. },
  57829. back: {
  57830. height: math.unit(5 + 2/12, "feet"),
  57831. weight: math.unit(120, "lb"),
  57832. name: "Back",
  57833. image: {
  57834. source: "./media/characters/sai-bree/back.svg",
  57835. extra: 1809/1637,
  57836. bottom: 56/1865
  57837. }
  57838. },
  57839. },
  57840. [
  57841. {
  57842. name: "Normal",
  57843. height: math.unit(5 + 2/12, "feet"),
  57844. default: true
  57845. },
  57846. {
  57847. name: "Macro",
  57848. height: math.unit(500, "feet")
  57849. },
  57850. ]
  57851. ))
  57852. characterMakers.push(() => makeCharacter(
  57853. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57854. {
  57855. side: {
  57856. height: math.unit(0.77, "meters"),
  57857. weight: math.unit(120, "lb"),
  57858. name: "Side",
  57859. image: {
  57860. source: "./media/characters/davwyn/side.svg",
  57861. extra: 1557/1225,
  57862. bottom: 131/1688
  57863. }
  57864. },
  57865. front: {
  57866. height: math.unit(0.835410, "meters"),
  57867. weight: math.unit(120, "lb"),
  57868. name: "Front",
  57869. image: {
  57870. source: "./media/characters/davwyn/front.svg",
  57871. extra: 870/843,
  57872. bottom: 175/1045
  57873. }
  57874. },
  57875. },
  57876. [
  57877. {
  57878. name: "Minidrake",
  57879. height: math.unit(0.77/4, "meters")
  57880. },
  57881. {
  57882. name: "Normal",
  57883. height: math.unit(0.77, "meters"),
  57884. default: true
  57885. },
  57886. ]
  57887. ))
  57888. characterMakers.push(() => makeCharacter(
  57889. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57890. {
  57891. front: {
  57892. height: math.unit(10 + 3/12, "feet"),
  57893. weight: math.unit(2857, "lb"),
  57894. name: "Front",
  57895. image: {
  57896. source: "./media/characters/balans/front.svg",
  57897. extra: 427/402,
  57898. bottom: 26/453
  57899. }
  57900. },
  57901. side: {
  57902. height: math.unit(10 + 3/12, "feet"),
  57903. weight: math.unit(2857, "lb"),
  57904. name: "Side",
  57905. image: {
  57906. source: "./media/characters/balans/side.svg",
  57907. extra: 397/371,
  57908. bottom: 17/414
  57909. }
  57910. },
  57911. back: {
  57912. height: math.unit(10 + 3/12, "feet"),
  57913. weight: math.unit(2857, "lb"),
  57914. name: "Back",
  57915. image: {
  57916. source: "./media/characters/balans/back.svg",
  57917. extra: 408/381,
  57918. bottom: 14/422
  57919. }
  57920. },
  57921. hand: {
  57922. height: math.unit(1.15, "feet"),
  57923. name: "Hand",
  57924. image: {
  57925. source: "./media/characters/balans/hand.svg"
  57926. }
  57927. },
  57928. footRest: {
  57929. height: math.unit(3.1, "feet"),
  57930. name: "Foot (Rest)",
  57931. image: {
  57932. source: "./media/characters/balans/foot-rest.svg"
  57933. }
  57934. },
  57935. footActive: {
  57936. height: math.unit(3.5, "feet"),
  57937. name: "Foot (Active)",
  57938. image: {
  57939. source: "./media/characters/balans/foot-active.svg"
  57940. }
  57941. },
  57942. },
  57943. [
  57944. {
  57945. name: "Normal",
  57946. height: math.unit(10 + 3/12, "feet"),
  57947. default: true
  57948. },
  57949. ]
  57950. ))
  57951. characterMakers.push(() => makeCharacter(
  57952. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57953. {
  57954. side: {
  57955. height: math.unit(9, "meters"),
  57956. weight: math.unit(114, "tonnes"),
  57957. name: "Side",
  57958. image: {
  57959. source: "./media/characters/eldkveikir/side.svg",
  57960. extra: 1927/338,
  57961. bottom: 42/1969
  57962. }
  57963. },
  57964. sitting: {
  57965. height: math.unit(13.4, "meters"),
  57966. weight: math.unit(114, "tonnes"),
  57967. name: "Sitting",
  57968. image: {
  57969. source: "./media/characters/eldkveikir/sitting.svg",
  57970. extra: 1108/963,
  57971. bottom: 610/1718
  57972. }
  57973. },
  57974. maw: {
  57975. height: math.unit(8.36, "meters"),
  57976. name: "Maw",
  57977. image: {
  57978. source: "./media/characters/eldkveikir/maw.svg"
  57979. }
  57980. },
  57981. hand: {
  57982. height: math.unit(4.84, "meters"),
  57983. name: "Hand",
  57984. image: {
  57985. source: "./media/characters/eldkveikir/hand.svg"
  57986. }
  57987. },
  57988. foot: {
  57989. height: math.unit(6.9, "meters"),
  57990. name: "Foot",
  57991. image: {
  57992. source: "./media/characters/eldkveikir/foot.svg"
  57993. }
  57994. },
  57995. genitals: {
  57996. height: math.unit(9.6, "meters"),
  57997. name: "Genitals",
  57998. image: {
  57999. source: "./media/characters/eldkveikir/genitals.svg"
  58000. }
  58001. },
  58002. },
  58003. [
  58004. {
  58005. name: "Normal",
  58006. height: math.unit(9, "meters"),
  58007. default: true
  58008. },
  58009. ]
  58010. ))
  58011. characterMakers.push(() => makeCharacter(
  58012. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58013. {
  58014. front: {
  58015. height: math.unit(14, "feet"),
  58016. weight: math.unit(4100, "lb"),
  58017. name: "Front",
  58018. image: {
  58019. source: "./media/characters/arrow/front.svg",
  58020. extra: 330/318,
  58021. bottom: 56/386
  58022. }
  58023. },
  58024. },
  58025. [
  58026. {
  58027. name: "Normal",
  58028. height: math.unit(14, "feet"),
  58029. default: true
  58030. },
  58031. {
  58032. name: "Minimacro",
  58033. height: math.unit(63, "feet")
  58034. },
  58035. {
  58036. name: "Macro",
  58037. height: math.unit(630, "feet")
  58038. },
  58039. {
  58040. name: "Megamacro",
  58041. height: math.unit(12600, "feet")
  58042. },
  58043. {
  58044. name: "Gigamacro",
  58045. height: math.unit(18000, "miles")
  58046. },
  58047. ]
  58048. ))
  58049. characterMakers.push(() => makeCharacter(
  58050. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58051. {
  58052. front: {
  58053. height: math.unit(10, "feet"),
  58054. weight: math.unit(2.4, "tons"),
  58055. name: "Front",
  58056. image: {
  58057. source: "./media/characters/3yk-k0-unit/front.svg",
  58058. extra: 573/561,
  58059. bottom: 33/606
  58060. }
  58061. },
  58062. back: {
  58063. height: math.unit(10, "feet"),
  58064. weight: math.unit(2.4, "tons"),
  58065. name: "Back",
  58066. image: {
  58067. source: "./media/characters/3yk-k0-unit/back.svg",
  58068. extra: 614/573,
  58069. bottom: 32/646
  58070. }
  58071. },
  58072. maw: {
  58073. height: math.unit(2.15, "feet"),
  58074. name: "Maw",
  58075. image: {
  58076. source: "./media/characters/3yk-k0-unit/maw.svg"
  58077. }
  58078. },
  58079. },
  58080. [
  58081. {
  58082. name: "Normal",
  58083. height: math.unit(10, "feet"),
  58084. default: true
  58085. },
  58086. ]
  58087. ))
  58088. characterMakers.push(() => makeCharacter(
  58089. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58090. {
  58091. front: {
  58092. height: math.unit(8 + 8/12, "feet"),
  58093. name: "Front",
  58094. image: {
  58095. source: "./media/characters/nemo/front.svg",
  58096. extra: 1308/1217,
  58097. bottom: 57/1365
  58098. }
  58099. },
  58100. },
  58101. [
  58102. {
  58103. name: "Normal",
  58104. height: math.unit(8 + 8/12, "feet"),
  58105. default: true
  58106. },
  58107. ]
  58108. ))
  58109. characterMakers.push(() => makeCharacter(
  58110. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58111. {
  58112. front: {
  58113. height: math.unit(8, "feet"),
  58114. weight: math.unit(760, "lb"),
  58115. name: "Front",
  58116. image: {
  58117. source: "./media/characters/rexx/front.svg",
  58118. extra: 786/750,
  58119. bottom: 17/803
  58120. },
  58121. extraAttributes: {
  58122. "pawLength": {
  58123. name: "Paw Length",
  58124. power: 1,
  58125. type: "length",
  58126. base: math.unit(27, "inches")
  58127. },
  58128. }
  58129. },
  58130. },
  58131. [
  58132. {
  58133. name: "Micro",
  58134. height: math.unit(2, "inches")
  58135. },
  58136. {
  58137. name: "Normal",
  58138. height: math.unit(8, "feet"),
  58139. default: true
  58140. },
  58141. {
  58142. name: "Macro",
  58143. height: math.unit(150, "feet")
  58144. },
  58145. ]
  58146. ))
  58147. characterMakers.push(() => makeCharacter(
  58148. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58149. {
  58150. front: {
  58151. height: math.unit(18, "feet"),
  58152. weight: math.unit(1975, "lb"),
  58153. name: "Front",
  58154. image: {
  58155. source: "./media/characters/draco/front.svg",
  58156. extra: 1325/1241,
  58157. bottom: 83/1408
  58158. }
  58159. },
  58160. back: {
  58161. height: math.unit(18, "feet"),
  58162. weight: math.unit(1975, "lb"),
  58163. name: "Back",
  58164. image: {
  58165. source: "./media/characters/draco/back.svg",
  58166. extra: 1332/1250,
  58167. bottom: 43/1375
  58168. }
  58169. },
  58170. dick: {
  58171. height: math.unit(7.5, "feet"),
  58172. name: "Dick",
  58173. image: {
  58174. source: "./media/characters/draco/dick.svg"
  58175. }
  58176. },
  58177. },
  58178. [
  58179. {
  58180. name: "Normal",
  58181. height: math.unit(18, "feet"),
  58182. default: true
  58183. },
  58184. ]
  58185. ))
  58186. characterMakers.push(() => makeCharacter(
  58187. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58188. {
  58189. front: {
  58190. height: math.unit(3.2, "meters"),
  58191. name: "Front",
  58192. image: {
  58193. source: "./media/characters/harriett/front.svg",
  58194. extra: 1966/1915,
  58195. bottom: 9/1975
  58196. }
  58197. },
  58198. },
  58199. [
  58200. {
  58201. name: "Normal",
  58202. height: math.unit(3.2, "meters"),
  58203. default: true
  58204. },
  58205. ]
  58206. ))
  58207. characterMakers.push(() => makeCharacter(
  58208. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58209. {
  58210. sitting: {
  58211. height: math.unit(0.8, "meter"),
  58212. name: "Sitting",
  58213. image: {
  58214. source: "./media/characters/serpentus/sitting.svg",
  58215. extra: 293/290,
  58216. bottom: 140/433
  58217. }
  58218. },
  58219. },
  58220. [
  58221. {
  58222. name: "Normal",
  58223. height: math.unit(0.8, "meter"),
  58224. default: true
  58225. },
  58226. ]
  58227. ))
  58228. characterMakers.push(() => makeCharacter(
  58229. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58230. {
  58231. front: {
  58232. height: math.unit(5.7174385736, "feet"),
  58233. name: "Front",
  58234. image: {
  58235. source: "./media/characters/nova-polecat/front.svg",
  58236. extra: 1317/1216,
  58237. bottom: 92/1409
  58238. }
  58239. },
  58240. },
  58241. [
  58242. {
  58243. name: "Normal",
  58244. height: math.unit(5.7174385736, "feet"),
  58245. default: true
  58246. },
  58247. ]
  58248. ))
  58249. characterMakers.push(() => makeCharacter(
  58250. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58251. {
  58252. front: {
  58253. height: math.unit(5 + 4/12, "feet"),
  58254. weight: math.unit(250, "lb"),
  58255. name: "Front",
  58256. image: {
  58257. source: "./media/characters/mook/front.svg",
  58258. extra: 1088/1037,
  58259. bottom: 132/1220
  58260. }
  58261. },
  58262. back: {
  58263. height: math.unit(5 + 1/12, "feet"),
  58264. weight: math.unit(250, "lb"),
  58265. name: "Back",
  58266. image: {
  58267. source: "./media/characters/mook/back.svg",
  58268. extra: 1184/905,
  58269. bottom: 96/1280
  58270. }
  58271. },
  58272. head: {
  58273. height: math.unit(1.85, "feet"),
  58274. name: "Head",
  58275. image: {
  58276. source: "./media/characters/mook/head.svg"
  58277. }
  58278. },
  58279. hand: {
  58280. height: math.unit(1.9, "feet"),
  58281. name: "Hand",
  58282. image: {
  58283. source: "./media/characters/mook/hand.svg"
  58284. }
  58285. },
  58286. palm: {
  58287. height: math.unit(1.84, "feet"),
  58288. name: "Palm",
  58289. image: {
  58290. source: "./media/characters/mook/palm.svg"
  58291. }
  58292. },
  58293. foot: {
  58294. height: math.unit(1.44, "feet"),
  58295. name: "Foot",
  58296. image: {
  58297. source: "./media/characters/mook/foot.svg"
  58298. }
  58299. },
  58300. sole: {
  58301. height: math.unit(1.44, "feet"),
  58302. name: "Sole",
  58303. image: {
  58304. source: "./media/characters/mook/sole.svg"
  58305. }
  58306. },
  58307. },
  58308. [
  58309. {
  58310. name: "Normal",
  58311. height: math.unit(5 + 4/12, "feet"),
  58312. default: true
  58313. },
  58314. {
  58315. name: "Big",
  58316. height: math.unit(12, "feet")
  58317. },
  58318. ]
  58319. ))
  58320. characterMakers.push(() => makeCharacter(
  58321. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58322. {
  58323. front: {
  58324. height: math.unit(6 + 10/12, "feet"),
  58325. weight: math.unit(233, "lb"),
  58326. name: "Front",
  58327. image: {
  58328. source: "./media/characters/kayla/front.svg",
  58329. extra: 1850/1775,
  58330. bottom: 65/1915
  58331. }
  58332. },
  58333. },
  58334. [
  58335. {
  58336. name: "Normal",
  58337. height: math.unit(6 + 10/12, "feet"),
  58338. default: true
  58339. },
  58340. {
  58341. name: "Amazonian",
  58342. height: math.unit(12 + 5/12, "feet")
  58343. },
  58344. {
  58345. name: "Mini Giantess",
  58346. height: math.unit(26, "feet")
  58347. },
  58348. {
  58349. name: "Giantess",
  58350. height: math.unit(200, "feet")
  58351. },
  58352. {
  58353. name: "Mega Giantess",
  58354. height: math.unit(2500, "feet")
  58355. },
  58356. {
  58357. name: "City Sized",
  58358. height: math.unit(50, "miles")
  58359. },
  58360. {
  58361. name: "Country Sized",
  58362. height: math.unit(500, "miles")
  58363. },
  58364. {
  58365. name: "Continent Sized",
  58366. height: math.unit(2500, "miles")
  58367. },
  58368. {
  58369. name: "Planet Sized",
  58370. height: math.unit(10000, "miles")
  58371. },
  58372. {
  58373. name: "Star Sized",
  58374. height: math.unit(5e6, "miles")
  58375. },
  58376. {
  58377. name: "Solar System Sized",
  58378. height: math.unit(125, "AU")
  58379. },
  58380. {
  58381. name: "Galaxy Sized",
  58382. height: math.unit(300e3, "lightyears")
  58383. },
  58384. {
  58385. name: "Universe Sized",
  58386. height: math.unit(200e9, "lightyears")
  58387. },
  58388. {
  58389. name: "Multiverse Sized",
  58390. height: math.unit(20, "exauniverses")
  58391. },
  58392. {
  58393. name: "Mother of Existence",
  58394. height: math.unit(1e6, "yottauniverses")
  58395. },
  58396. ]
  58397. ))
  58398. characterMakers.push(() => makeCharacter(
  58399. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58400. {
  58401. side: {
  58402. height: math.unit(9.5, "meters"),
  58403. name: "Side",
  58404. image: {
  58405. source: "./media/characters/kulve-ragnarok/side.svg",
  58406. extra: 364/326,
  58407. bottom: 50/414
  58408. }
  58409. },
  58410. },
  58411. [
  58412. {
  58413. name: "Normal",
  58414. height: math.unit(9.5, "meters"),
  58415. default: true
  58416. },
  58417. ]
  58418. ))
  58419. characterMakers.push(() => makeCharacter(
  58420. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58421. {
  58422. front: {
  58423. height: math.unit(8 + 9/12, "feet"),
  58424. name: "Front",
  58425. image: {
  58426. source: "./media/characters/atlas-goat/front.svg",
  58427. extra: 1462/1323,
  58428. bottom: 12/1474
  58429. }
  58430. },
  58431. },
  58432. [
  58433. {
  58434. name: "Normal",
  58435. height: math.unit(8 + 9/12, "feet"),
  58436. default: true
  58437. },
  58438. {
  58439. name: "Skyline",
  58440. height: math.unit(845, "feet")
  58441. },
  58442. {
  58443. name: "Orbital",
  58444. height: math.unit(93000, "miles")
  58445. },
  58446. {
  58447. name: "Constellation",
  58448. height: math.unit(27000, "lightyears")
  58449. },
  58450. ]
  58451. ))
  58452. characterMakers.push(() => makeCharacter(
  58453. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58454. {
  58455. side: {
  58456. height: math.unit(1.8, "meters"),
  58457. weight: math.unit(120, "kg"),
  58458. name: "Side",
  58459. image: {
  58460. source: "./media/characters/xie-ling/side.svg",
  58461. extra: 646/574,
  58462. bottom: 44/690
  58463. }
  58464. },
  58465. },
  58466. [
  58467. {
  58468. name: "Tiny",
  58469. height: math.unit(1.80, "meters")
  58470. },
  58471. {
  58472. name: "Small",
  58473. height: math.unit(6, "meters")
  58474. },
  58475. {
  58476. name: "Medium",
  58477. height: math.unit(15, "meters")
  58478. },
  58479. {
  58480. name: "Normal",
  58481. height: math.unit(30, "meters"),
  58482. default: true
  58483. },
  58484. {
  58485. name: "Above Normal",
  58486. height: math.unit(60, "meters")
  58487. },
  58488. {
  58489. name: "Big",
  58490. height: math.unit(220, "meters")
  58491. },
  58492. {
  58493. name: "Giant",
  58494. height: math.unit(2.2, "km")
  58495. },
  58496. {
  58497. name: "Macro",
  58498. height: math.unit(25, "km")
  58499. },
  58500. {
  58501. name: "Mega Macro",
  58502. height: math.unit(350, "km")
  58503. },
  58504. {
  58505. name: "Mega Macro+",
  58506. height: math.unit(5000, "km")
  58507. },
  58508. {
  58509. name: "Goddess",
  58510. height: math.unit(3, "multiverses")
  58511. },
  58512. ]
  58513. ))
  58514. characterMakers.push(() => makeCharacter(
  58515. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58516. {
  58517. frontSfw: {
  58518. height: math.unit(5 + 11/12, "feet"),
  58519. weight: math.unit(210, "lb"),
  58520. name: "Front",
  58521. image: {
  58522. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58523. extra: 1928/1821,
  58524. bottom: 45/1973
  58525. }
  58526. },
  58527. backSfw: {
  58528. height: math.unit(5 + 11/12, "feet"),
  58529. weight: math.unit(210, "lb"),
  58530. name: "Back",
  58531. image: {
  58532. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58533. extra: 1920/1813,
  58534. bottom: 34/1954
  58535. }
  58536. },
  58537. frontNsfw: {
  58538. height: math.unit(5 + 11/12, "feet"),
  58539. weight: math.unit(210, "lb"),
  58540. name: "Front (NSFW)",
  58541. image: {
  58542. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58543. extra: 1928/1821,
  58544. bottom: 45/1973
  58545. }
  58546. },
  58547. backNsfw: {
  58548. height: math.unit(5 + 11/12, "feet"),
  58549. weight: math.unit(210, "lb"),
  58550. name: "Back (NSFW)",
  58551. image: {
  58552. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58553. extra: 1920/1813,
  58554. bottom: 34/1954
  58555. }
  58556. },
  58557. },
  58558. [
  58559. {
  58560. name: "Normal",
  58561. height: math.unit(5 + 11/12, "feet"),
  58562. default: true
  58563. },
  58564. {
  58565. name: "Goddess",
  58566. height: math.unit(20 + 3/12, "feet")
  58567. },
  58568. {
  58569. name: "Breaker of Man",
  58570. height: math.unit(329 + 9/12, "feet")
  58571. },
  58572. {
  58573. name: "Solar Justice",
  58574. height: math.unit(0.6, "solarradii")
  58575. },
  58576. {
  58577. name: "She Who Judges",
  58578. height: math.unit(1, "universe")
  58579. },
  58580. ]
  58581. ))
  58582. characterMakers.push(() => makeCharacter(
  58583. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58584. {
  58585. casual_front: {
  58586. height: math.unit(6 + 1/12, "feet"),
  58587. weight: math.unit(190, "lb"),
  58588. preyCapacity: math.unit(1, "people"),
  58589. name: "Front",
  58590. image: {
  58591. source: "./media/characters/managarmr/casual-front.svg",
  58592. extra: 411/381,
  58593. bottom: 15/426
  58594. },
  58595. extraAttributes: {
  58596. "pawSize": {
  58597. name: "Paw Size",
  58598. power: 1,
  58599. type: "length",
  58600. base: math.unit(0.2, "meters")
  58601. },
  58602. },
  58603. form: "casual",
  58604. },
  58605. casual_back: {
  58606. height: math.unit(6 + 1/12, "feet"),
  58607. weight: math.unit(190, "lb"),
  58608. preyCapacity: math.unit(1, "people"),
  58609. name: "Back",
  58610. image: {
  58611. source: "./media/characters/managarmr/casual-back.svg",
  58612. extra: 413/383,
  58613. bottom: 13/426
  58614. },
  58615. extraAttributes: {
  58616. "pawSize": {
  58617. name: "Paw Size",
  58618. power: 1,
  58619. type: "length",
  58620. base: math.unit(0.2, "meters")
  58621. },
  58622. },
  58623. form: "casual",
  58624. },
  58625. base_front: {
  58626. height: math.unit(7, "feet"),
  58627. weight: math.unit(210, "lb"),
  58628. preyCapacity: math.unit(2, "people"),
  58629. name: "Front",
  58630. image: {
  58631. source: "./media/characters/managarmr/base-front.svg",
  58632. extra: 580/485,
  58633. bottom: 32/612
  58634. },
  58635. extraAttributes: {
  58636. "wingspan": {
  58637. name: "Wingspan",
  58638. power: 1,
  58639. type: "length",
  58640. base: math.unit(4, "meters")
  58641. },
  58642. "pawSize": {
  58643. name: "Paw Size",
  58644. power: 1,
  58645. type: "length",
  58646. base: math.unit(0.2, "meters")
  58647. },
  58648. },
  58649. form: "base",
  58650. },
  58651. "true-divine_front": {
  58652. height: math.unit(40, "feet"),
  58653. weight: math.unit(39000, "lb"),
  58654. preyCapacity: math.unit(375, "people"),
  58655. name: "Front",
  58656. image: {
  58657. source: "./media/characters/managarmr/true-divine-front.svg",
  58658. extra: 725/573,
  58659. bottom: 120/845
  58660. },
  58661. extraAttributes: {
  58662. "wingspan": {
  58663. name: "Wingspan",
  58664. power: 1,
  58665. type: "length",
  58666. base: math.unit(20, "meters")
  58667. },
  58668. "pawSize": {
  58669. name: "Paw Size",
  58670. power: 1,
  58671. type: "length",
  58672. base: math.unit(1.5, "meters")
  58673. },
  58674. },
  58675. form: "true-divine",
  58676. },
  58677. },
  58678. [
  58679. {
  58680. name: "Normal",
  58681. height: math.unit(6 + 1/12, "feet"),
  58682. form: "casual",
  58683. default: true
  58684. },
  58685. {
  58686. name: "Normal",
  58687. height: math.unit(7, "feet"),
  58688. form: "base",
  58689. default: true
  58690. },
  58691. ],
  58692. {
  58693. "casual": {
  58694. name: "Casual",
  58695. default: true
  58696. },
  58697. "base": {
  58698. name: "Base",
  58699. },
  58700. "true-divine": {
  58701. name: "True Divine",
  58702. },
  58703. }
  58704. ))
  58705. characterMakers.push(() => makeCharacter(
  58706. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58707. {
  58708. front: {
  58709. height: math.unit(1.8, "meters"),
  58710. weight: math.unit(110, "kg"),
  58711. name: "Front",
  58712. image: {
  58713. source: "./media/characters/mystra/front.svg",
  58714. extra: 529/442,
  58715. bottom: 31/560
  58716. }
  58717. },
  58718. frontLewd: {
  58719. height: math.unit(1.8, "meters"),
  58720. weight: math.unit(110, "kg"),
  58721. name: "Front (Lewd)",
  58722. image: {
  58723. source: "./media/characters/mystra/front-lewd.svg",
  58724. extra: 529/442,
  58725. bottom: 31/560
  58726. }
  58727. },
  58728. head: {
  58729. height: math.unit(1.63, "feet"),
  58730. name: "Head",
  58731. image: {
  58732. source: "./media/characters/mystra/head.svg"
  58733. }
  58734. },
  58735. paw: {
  58736. height: math.unit(1.9, "feet"),
  58737. name: "Paw",
  58738. image: {
  58739. source: "./media/characters/mystra/paw.svg"
  58740. }
  58741. },
  58742. },
  58743. [
  58744. {
  58745. name: "Incognito",
  58746. height: math.unit(2.3, "meters")
  58747. },
  58748. {
  58749. name: "Small Macro",
  58750. height: math.unit(300, "meters")
  58751. },
  58752. {
  58753. name: "Small Mega",
  58754. height: math.unit(2, "km")
  58755. },
  58756. {
  58757. name: "Mega",
  58758. height: math.unit(30, "km")
  58759. },
  58760. {
  58761. name: "Small Giga",
  58762. height: math.unit(100, "km")
  58763. },
  58764. {
  58765. name: "Giga",
  58766. height: math.unit(1000, "km"),
  58767. default: true
  58768. },
  58769. {
  58770. name: "Continental",
  58771. height: math.unit(5000, "km")
  58772. },
  58773. {
  58774. name: "Terra",
  58775. height: math.unit(20000, "km")
  58776. },
  58777. {
  58778. name: "Solar",
  58779. height: math.unit(2e6, "km")
  58780. },
  58781. {
  58782. name: "Galactic",
  58783. height: math.unit(528502, "lightyears")
  58784. },
  58785. {
  58786. name: "Universal",
  58787. height: math.unit(20, "universes")
  58788. },
  58789. ]
  58790. ))
  58791. characterMakers.push(() => makeCharacter(
  58792. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58793. {
  58794. front: {
  58795. height: math.unit(2, "meters"),
  58796. weight: math.unit(140, "kg"),
  58797. name: "Front",
  58798. image: {
  58799. source: "./media/characters/caleb/front.svg",
  58800. extra: 873/817,
  58801. bottom: 47/920
  58802. }
  58803. },
  58804. back: {
  58805. height: math.unit(2, "meters"),
  58806. weight: math.unit(140, "kg"),
  58807. name: "Back",
  58808. image: {
  58809. source: "./media/characters/caleb/back.svg",
  58810. extra: 877/828,
  58811. bottom: 24/901
  58812. }
  58813. },
  58814. snakeTail: {
  58815. height: math.unit(1.44, "feet"),
  58816. name: "Snake Tail",
  58817. image: {
  58818. source: "./media/characters/caleb/snake-tail.svg"
  58819. }
  58820. },
  58821. dick: {
  58822. height: math.unit(2.6, "feet"),
  58823. name: "Dick",
  58824. image: {
  58825. source: "./media/characters/caleb/dick.svg"
  58826. }
  58827. },
  58828. },
  58829. [
  58830. {
  58831. name: "Incognito",
  58832. height: math.unit(3, "meters")
  58833. },
  58834. {
  58835. name: "Home Size",
  58836. height: math.unit(200, "meters"),
  58837. default: true
  58838. },
  58839. {
  58840. name: "Macro",
  58841. height: math.unit(500, "meters")
  58842. },
  58843. {
  58844. name: "Big Macro",
  58845. height: math.unit(5, "km")
  58846. },
  58847. {
  58848. name: "Giga",
  58849. height: math.unit(250, "km")
  58850. },
  58851. {
  58852. name: "Giga+",
  58853. height: math.unit(5000, "km")
  58854. },
  58855. {
  58856. name: "Small Terra",
  58857. height: math.unit(35e3, "km")
  58858. },
  58859. {
  58860. name: "Terra",
  58861. height: math.unit(2e6, "km")
  58862. },
  58863. {
  58864. name: "Terra+",
  58865. height: math.unit(1.5e6, "km")
  58866. },
  58867. ]
  58868. ))
  58869. characterMakers.push(() => makeCharacter(
  58870. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58871. {
  58872. front: {
  58873. height: math.unit(2, "meters"),
  58874. weight: math.unit(120, "kg"),
  58875. name: "Front",
  58876. image: {
  58877. source: "./media/characters/gilirian/front.svg",
  58878. extra: 805/737,
  58879. bottom: 13/818
  58880. }
  58881. },
  58882. side: {
  58883. height: math.unit(2, "meters"),
  58884. weight: math.unit(120, "kg"),
  58885. name: "Side",
  58886. image: {
  58887. source: "./media/characters/gilirian/side.svg",
  58888. extra: 810/746,
  58889. bottom: 6/816
  58890. }
  58891. },
  58892. back: {
  58893. height: math.unit(2, "meters"),
  58894. weight: math.unit(120, "kg"),
  58895. name: "Back",
  58896. image: {
  58897. source: "./media/characters/gilirian/back.svg",
  58898. extra: 815/745,
  58899. bottom: 15/830
  58900. }
  58901. },
  58902. frontNsfw: {
  58903. height: math.unit(2, "meters"),
  58904. weight: math.unit(120, "kg"),
  58905. name: "Front (NSFW)",
  58906. image: {
  58907. source: "./media/characters/gilirian/front-nsfw.svg",
  58908. extra: 805/737,
  58909. bottom: 13/818
  58910. }
  58911. },
  58912. sideNsfw: {
  58913. height: math.unit(2, "meters"),
  58914. weight: math.unit(120, "kg"),
  58915. name: "Side (NSFW)",
  58916. image: {
  58917. source: "./media/characters/gilirian/side-nsfw.svg",
  58918. extra: 810/746,
  58919. bottom: 6/816
  58920. }
  58921. },
  58922. },
  58923. [
  58924. {
  58925. name: "Incognito",
  58926. height: math.unit(2, "meters"),
  58927. default: true
  58928. },
  58929. {
  58930. name: "Macro",
  58931. height: math.unit(250, "meters")
  58932. },
  58933. {
  58934. name: "Big Macro",
  58935. height: math.unit(1500, "meters")
  58936. },
  58937. {
  58938. name: "Mega",
  58939. height: math.unit(40, "km")
  58940. },
  58941. {
  58942. name: "Giga",
  58943. height: math.unit(300, "km")
  58944. },
  58945. {
  58946. name: "Extra Giga",
  58947. height: math.unit(5000, "km")
  58948. },
  58949. {
  58950. name: "Small Terra",
  58951. height: math.unit(10e3, "km")
  58952. },
  58953. {
  58954. name: "Terra",
  58955. height: math.unit(3e5, "km")
  58956. },
  58957. {
  58958. name: "Galactic",
  58959. height: math.unit(369950, "lightyears")
  58960. },
  58961. ]
  58962. ))
  58963. characterMakers.push(() => makeCharacter(
  58964. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58965. {
  58966. front: {
  58967. height: math.unit(2.5, "meters"),
  58968. weight: math.unit(230, "lb"),
  58969. name: "Front",
  58970. image: {
  58971. source: "./media/characters/tarken/front.svg",
  58972. extra: 764/720,
  58973. bottom: 49/813
  58974. }
  58975. },
  58976. back: {
  58977. height: math.unit(2.5, "meters"),
  58978. weight: math.unit(230, "lb"),
  58979. name: "Back",
  58980. image: {
  58981. source: "./media/characters/tarken/back.svg",
  58982. extra: 756/720,
  58983. bottom: 35/791
  58984. }
  58985. },
  58986. frontNsfw: {
  58987. height: math.unit(2.5, "meters"),
  58988. weight: math.unit(230, "lb"),
  58989. name: "Front (NSFW)",
  58990. image: {
  58991. source: "./media/characters/tarken/front-nsfw.svg",
  58992. extra: 764/720,
  58993. bottom: 49/813
  58994. }
  58995. },
  58996. backNsfw: {
  58997. height: math.unit(2.5, "meters"),
  58998. weight: math.unit(230, "lb"),
  58999. name: "Back (NSFW)",
  59000. image: {
  59001. source: "./media/characters/tarken/back-nsfw.svg",
  59002. extra: 756/720,
  59003. bottom: 35/791
  59004. }
  59005. },
  59006. head: {
  59007. height: math.unit(2.22, "feet"),
  59008. name: "Head",
  59009. image: {
  59010. source: "./media/characters/tarken/head.svg"
  59011. }
  59012. },
  59013. tail: {
  59014. height: math.unit(5.25, "feet"),
  59015. name: "Tail",
  59016. image: {
  59017. source: "./media/characters/tarken/tail.svg"
  59018. }
  59019. },
  59020. dick: {
  59021. height: math.unit(1.95, "feet"),
  59022. name: "Dick",
  59023. image: {
  59024. source: "./media/characters/tarken/dick.svg"
  59025. }
  59026. },
  59027. hand: {
  59028. height: math.unit(1.78, "feet"),
  59029. name: "Hand",
  59030. image: {
  59031. source: "./media/characters/tarken/hand.svg"
  59032. }
  59033. },
  59034. beam: {
  59035. height: math.unit(1.5, "feet"),
  59036. name: "Beam",
  59037. image: {
  59038. source: "./media/characters/tarken/beam.svg"
  59039. }
  59040. },
  59041. },
  59042. [
  59043. {
  59044. name: "Original Size",
  59045. height: math.unit(2.5, "meters")
  59046. },
  59047. {
  59048. name: "Macro",
  59049. height: math.unit(150, "meters"),
  59050. default: true
  59051. },
  59052. {
  59053. name: "Macro+",
  59054. height: math.unit(300, "meters")
  59055. },
  59056. {
  59057. name: "Mega",
  59058. height: math.unit(2, "km")
  59059. },
  59060. {
  59061. name: "Mega+",
  59062. height: math.unit(35, "km")
  59063. },
  59064.  {
  59065. name: "Mega++",
  59066. height: math.unit(60, "km")
  59067. },
  59068. {
  59069. name: "Giga",
  59070. height: math.unit(200, "km")
  59071. },
  59072. {
  59073. name: "Giga+",
  59074. height: math.unit(2500, "km")
  59075. },
  59076. {
  59077. name: "Giga++",
  59078. height: math.unit(6600, "km")
  59079. },
  59080. {
  59081. name: "Terra",
  59082. height: math.unit(20000, "km")
  59083. },
  59084. {
  59085. name: "Terra+",
  59086. height: math.unit(300000, "km")
  59087. },
  59088. ]
  59089. ))
  59090. characterMakers.push(() => makeCharacter(
  59091. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59092. {
  59093. magpie_dressed: {
  59094. height: math.unit(1.7, "meters"),
  59095. weight: math.unit(70, "kg"),
  59096. name: "Dressed",
  59097. image: {
  59098. source: "./media/characters/otreus/magpie-dressed.svg",
  59099. extra: 691/672,
  59100. bottom: 116/807
  59101. },
  59102. form: "magpie",
  59103. default: true
  59104. },
  59105. magpie_nude: {
  59106. height: math.unit(1.7, "meters"),
  59107. weight: math.unit(70, "kg"),
  59108. name: "Nude",
  59109. image: {
  59110. source: "./media/characters/otreus/magpie-nude.svg",
  59111. extra: 691/672,
  59112. bottom: 116/807
  59113. },
  59114. form: "magpie",
  59115. },
  59116. magpie_dressedLewd: {
  59117. height: math.unit(1.7, "meters"),
  59118. weight: math.unit(70, "kg"),
  59119. name: "Dressed (Lewd)",
  59120. image: {
  59121. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59122. extra: 691/672,
  59123. bottom: 116/807
  59124. },
  59125. form: "magpie",
  59126. },
  59127. magpie_nudeLewd: {
  59128. height: math.unit(1.7, "meters"),
  59129. weight: math.unit(70, "kg"),
  59130. name: "Nude (Lewd)",
  59131. image: {
  59132. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59133. extra: 691/672,
  59134. bottom: 116/807
  59135. },
  59136. form: "magpie",
  59137. },
  59138. magpie_leftFoot: {
  59139. height: math.unit(1.58, "feet"),
  59140. name: "Left Foot",
  59141. image: {
  59142. source: "./media/characters/otreus/magpie-left-foot.svg"
  59143. },
  59144. form: "magpie",
  59145. },
  59146. magpie_rightFoot: {
  59147. height: math.unit(1.58, "feet"),
  59148. name: "Right Foot",
  59149. image: {
  59150. source: "./media/characters/otreus/magpie-right-foot.svg"
  59151. },
  59152. form: "magpie",
  59153. },
  59154. magpie_wingspan: {
  59155. height: math.unit(2, "meters"),
  59156. weight: math.unit(70, "kg"),
  59157. name: "Wingspan",
  59158. image: {
  59159. source: "./media/characters/otreus/magpie-wingspan.svg"
  59160. },
  59161. extraAttributes: {
  59162. "wingspan": {
  59163. name: "Wingspan",
  59164. power: 1,
  59165. type: "length",
  59166. base: math.unit(3.35, "meters")
  59167. },
  59168. },
  59169. form: "magpie",
  59170. },
  59171. hippogriff_dressed: {
  59172. height: math.unit(1.7, "meters"),
  59173. weight: math.unit(70, "kg"),
  59174. name: "Dressed",
  59175. image: {
  59176. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59177. extra: 710/689,
  59178. bottom: 67/777
  59179. },
  59180. form: "hippogriff",
  59181. default: true
  59182. },
  59183. hippogriff_nude: {
  59184. height: math.unit(1.7, "meters"),
  59185. weight: math.unit(70, "kg"),
  59186. name: "Nude",
  59187. image: {
  59188. source: "./media/characters/otreus/hippogriff-nude.svg",
  59189. extra: 710/689,
  59190. bottom: 67/777
  59191. },
  59192. form: "hippogriff",
  59193. },
  59194. hippogriff_dressedLewd: {
  59195. height: math.unit(1.7, "meters"),
  59196. weight: math.unit(70, "kg"),
  59197. name: "Dressed (Lewd)",
  59198. image: {
  59199. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59200. extra: 710/689,
  59201. bottom: 67/777
  59202. },
  59203. form: "hippogriff",
  59204. },
  59205. hippogriff_nudeLewd: {
  59206. height: math.unit(1.7, "meters"),
  59207. weight: math.unit(70, "kg"),
  59208. name: "Nude (Lewd)",
  59209. image: {
  59210. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59211. extra: 710/689,
  59212. bottom: 67/777
  59213. },
  59214. form: "hippogriff",
  59215. },
  59216. },
  59217. [
  59218. {
  59219. name: "Original Size",
  59220. height: math.unit(1.7, "meters"),
  59221. allForms: true
  59222. },
  59223. {
  59224. name: "Incognito Size",
  59225. height: math.unit(2, "meters"),
  59226. allForms: true
  59227. },
  59228. {
  59229. name: "Mega",
  59230. height: math.unit(2, "km"),
  59231. allForms: true
  59232. },
  59233. {
  59234. name: "Mega+",
  59235. height: math.unit(40, "km"),
  59236. allForms: true
  59237. },
  59238. {
  59239. name: "Giga",
  59240. height: math.unit(250, "km"),
  59241. allForms: true
  59242. },
  59243. {
  59244. name: "Giga+",
  59245. height: math.unit(3000, "km"),
  59246. allForms: true
  59247. },
  59248. {
  59249. name: "Terra",
  59250. height: math.unit(20000, "km"),
  59251. allForms: true
  59252. },
  59253. {
  59254. name: "Solar (Home Size)",
  59255. height: math.unit(3e6, "km"),
  59256. allForms: true,
  59257. default: true
  59258. },
  59259. ],
  59260. {
  59261. "magpie": {
  59262. name: "Magpie",
  59263. default: true
  59264. },
  59265. "hippogriff": {
  59266. name: "Hippogriff",
  59267. },
  59268. }
  59269. ))
  59270. characterMakers.push(() => makeCharacter(
  59271. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59272. {
  59273. frontDressed: {
  59274. height: math.unit(1.8, "meters"),
  59275. weight: math.unit(90, "kg"),
  59276. name: "Front (Dressed)",
  59277. image: {
  59278. source: "./media/characters/thalia/front-dressed.svg",
  59279. extra: 478/402,
  59280. bottom: 55/533
  59281. }
  59282. },
  59283. backDressed: {
  59284. height: math.unit(1.8, "meters"),
  59285. weight: math.unit(90, "kg"),
  59286. name: "Back (Dressed)",
  59287. image: {
  59288. source: "./media/characters/thalia/back-dressed.svg",
  59289. extra: 500/424,
  59290. bottom: 15/515
  59291. }
  59292. },
  59293. frontNude: {
  59294. height: math.unit(1.8, "meters"),
  59295. weight: math.unit(90, "kg"),
  59296. name: "Front (Nude)",
  59297. image: {
  59298. source: "./media/characters/thalia/front-nude.svg",
  59299. extra: 478/402,
  59300. bottom: 55/533
  59301. }
  59302. },
  59303. backNude: {
  59304. height: math.unit(1.8, "meters"),
  59305. weight: math.unit(90, "kg"),
  59306. name: "Back (Nude)",
  59307. image: {
  59308. source: "./media/characters/thalia/back-nude.svg",
  59309. extra: 500/424,
  59310. bottom: 15/515
  59311. }
  59312. },
  59313. },
  59314. [
  59315. {
  59316. name: "Incognito",
  59317. height: math.unit(3, "meters")
  59318. },
  59319. {
  59320. name: "Macro",
  59321. height: math.unit(500, "meters")
  59322. },
  59323. {
  59324. name: "Mega",
  59325. height: math.unit(5, "km")
  59326. },
  59327. {
  59328. name: "Mega+",
  59329. height: math.unit(30, "km")
  59330. },
  59331. {
  59332. name: "Giga",
  59333. height: math.unit(350, "km")
  59334. },
  59335. {
  59336. name: "Giga+",
  59337. height: math.unit(4000, "km")
  59338. },
  59339. {
  59340. name: "Terra",
  59341. height: math.unit(35000, "km")
  59342. },
  59343. {
  59344. name: "Original Size",
  59345. height: math.unit(130000, "km")
  59346. },
  59347. {
  59348. name: "Solar (Home Size)",
  59349. height: math.unit(4e6, "km"),
  59350. default: true
  59351. },
  59352. ]
  59353. ))
  59354. characterMakers.push(() => makeCharacter(
  59355. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59356. {
  59357. front: {
  59358. height: math.unit(1.8, "meters"),
  59359. weight: math.unit(95, "kg"),
  59360. name: "Front",
  59361. image: {
  59362. source: "./media/characters/shango/front.svg",
  59363. extra: 1925/1774,
  59364. bottom: 67/1992
  59365. }
  59366. },
  59367. back: {
  59368. height: math.unit(1.8, "meters"),
  59369. weight: math.unit(95, "kg"),
  59370. name: "Back",
  59371. image: {
  59372. source: "./media/characters/shango/back.svg",
  59373. extra: 1915/1766,
  59374. bottom: 52/1967
  59375. }
  59376. },
  59377. frontLewd: {
  59378. height: math.unit(1.8, "meters"),
  59379. weight: math.unit(95, "kg"),
  59380. name: "Front (Lewd)",
  59381. image: {
  59382. source: "./media/characters/shango/front-lewd.svg",
  59383. extra: 1925/1774,
  59384. bottom: 67/1992
  59385. }
  59386. },
  59387. backLewd: {
  59388. height: math.unit(1.8, "meters"),
  59389. weight: math.unit(95, "kg"),
  59390. name: "Back (Lewd)",
  59391. image: {
  59392. source: "./media/characters/shango/back-lewd.svg",
  59393. extra: 1915/1766,
  59394. bottom: 52/1967
  59395. }
  59396. },
  59397. maw: {
  59398. height: math.unit(1.64, "feet"),
  59399. name: "Maw",
  59400. image: {
  59401. source: "./media/characters/shango/maw.svg"
  59402. }
  59403. },
  59404. dick: {
  59405. height: math.unit(2.14, "feet"),
  59406. name: "Dick",
  59407. image: {
  59408. source: "./media/characters/shango/dick.svg"
  59409. }
  59410. },
  59411. },
  59412. [
  59413. {
  59414. name: "Incognito",
  59415. height: math.unit(1.8, "meters")
  59416. },
  59417. {
  59418. name: "Home Size",
  59419. height: math.unit(60, "meters"),
  59420. default: true
  59421. },
  59422. {
  59423. name: "Macro",
  59424. height: math.unit(450, "meters")
  59425. },
  59426. {
  59427. name: "Mega",
  59428. height: math.unit(6, "km")
  59429. },
  59430. {
  59431. name: "Mega+",
  59432. height: math.unit(35, "km")
  59433. },
  59434. {
  59435. name: "Giga",
  59436. height: math.unit(500, "km")
  59437. },
  59438. {
  59439. name: "Giga+",
  59440. height: math.unit(5000, "km")
  59441. },
  59442. {
  59443. name: "Terra",
  59444. height: math.unit(60000, "km")
  59445. },
  59446. {
  59447. name: "Terra+",
  59448. height: math.unit(400000, "km")
  59449. },
  59450. ]
  59451. ))
  59452. characterMakers.push(() => makeCharacter(
  59453. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59454. {
  59455. front: {
  59456. height: math.unit(2, "meters"),
  59457. weight: math.unit(95, "kg"),
  59458. name: "Front",
  59459. image: {
  59460. source: "./media/characters/osiris-gryphon/front.svg",
  59461. extra: 1508/1313,
  59462. bottom: 87/1595
  59463. }
  59464. },
  59465. back: {
  59466. height: math.unit(2, "meters"),
  59467. weight: math.unit(95, "kg"),
  59468. name: "Back",
  59469. image: {
  59470. source: "./media/characters/osiris-gryphon/back.svg",
  59471. extra: 1436/1309,
  59472. bottom: 64/1500
  59473. }
  59474. },
  59475. frontLewd: {
  59476. height: math.unit(2, "meters"),
  59477. weight: math.unit(95, "kg"),
  59478. name: "Front-lewd",
  59479. image: {
  59480. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59481. extra: 1508/1313,
  59482. bottom: 87/1595
  59483. }
  59484. },
  59485. wing: {
  59486. height: math.unit(6.3333, "feet"),
  59487. name: "Wing",
  59488. image: {
  59489. source: "./media/characters/osiris-gryphon/wing.svg"
  59490. }
  59491. },
  59492. },
  59493. [
  59494. {
  59495. name: "Incognito",
  59496. height: math.unit(2, "meters")
  59497. },
  59498. {
  59499. name: "Home Size",
  59500. height: math.unit(30, "meters"),
  59501. default: true
  59502. },
  59503. {
  59504. name: "Macro",
  59505. height: math.unit(100, "meters")
  59506. },
  59507. {
  59508. name: "Macro+",
  59509. height: math.unit(350, "meters")
  59510. },
  59511. {
  59512. name: "Mega",
  59513. height: math.unit(40, "km")
  59514. },
  59515. {
  59516. name: "Giga",
  59517. height: math.unit(300, "km")
  59518. },
  59519. {
  59520. name: "Giga+",
  59521. height: math.unit(2000, "km")
  59522. },
  59523. {
  59524. name: "Terra",
  59525. height: math.unit(30000, "km")
  59526. },
  59527. ]
  59528. ))
  59529. characterMakers.push(() => makeCharacter(
  59530. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59531. {
  59532. front: {
  59533. height: math.unit(2.5, "meters"),
  59534. weight: math.unit(200, "kg"),
  59535. name: "Front",
  59536. image: {
  59537. source: "./media/characters/atlas-dragon/front.svg",
  59538. extra: 745/462,
  59539. bottom: 36/781
  59540. }
  59541. },
  59542. back: {
  59543. height: math.unit(2.5, "meters"),
  59544. weight: math.unit(200, "kg"),
  59545. name: "Back",
  59546. image: {
  59547. source: "./media/characters/atlas-dragon/back.svg",
  59548. extra: 848/822,
  59549. bottom: 57/905
  59550. }
  59551. },
  59552. frontLewd: {
  59553. height: math.unit(2.5, "meters"),
  59554. weight: math.unit(200, "kg"),
  59555. name: "Front (Lewd)",
  59556. image: {
  59557. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59558. extra: 745/462,
  59559. bottom: 36/781
  59560. }
  59561. },
  59562. backLewd: {
  59563. height: math.unit(2.5, "meters"),
  59564. weight: math.unit(200, "kg"),
  59565. name: "Back (Lewd)",
  59566. image: {
  59567. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59568. extra: 848/822,
  59569. bottom: 57/905
  59570. }
  59571. },
  59572. },
  59573. [
  59574. {
  59575. name: "Incognito",
  59576. height: math.unit(2.5, "meters")
  59577. },
  59578. {
  59579. name: "Small Macro",
  59580. height: math.unit(50, "meters")
  59581. },
  59582. {
  59583. name: "Macro",
  59584. height: math.unit(350, "meters")
  59585. },
  59586. {
  59587. name: "Mega",
  59588. height: math.unit(5.5, "kilometers")
  59589. },
  59590. {
  59591. name: "Mega+",
  59592. height: math.unit(50, "km")
  59593. },
  59594. {
  59595. name: "Giga",
  59596. height: math.unit(350, "km")
  59597. },
  59598. {
  59599. name: "Giga+",
  59600. height: math.unit(2000, "km")
  59601. },
  59602. {
  59603. name: "Giga++",
  59604. height: math.unit(6500, "km")
  59605. },
  59606. {
  59607. name: "Terra",
  59608. height: math.unit(30000, "km")
  59609. },
  59610. {
  59611. name: "Terra+",
  59612. height: math.unit(250000, "km")
  59613. },
  59614. {
  59615. name: "True Size",
  59616. height: math.unit(100, "multiverses"),
  59617. default: true
  59618. },
  59619. ]
  59620. ))
  59621. characterMakers.push(() => makeCharacter(
  59622. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59623. {
  59624. front: {
  59625. height: math.unit(1.8, "m"),
  59626. weight: math.unit(120, "kg"),
  59627. name: "Front",
  59628. image: {
  59629. source: "./media/characters/chey/front.svg",
  59630. extra: 1359/1270,
  59631. bottom: 18/1377
  59632. }
  59633. },
  59634. arm: {
  59635. height: math.unit(2.05, "feet"),
  59636. name: "Arm",
  59637. image: {
  59638. source: "./media/characters/chey/arm.svg"
  59639. }
  59640. },
  59641. head: {
  59642. height: math.unit(1.89, "feet"),
  59643. name: "Head",
  59644. image: {
  59645. source: "./media/characters/chey/head.svg"
  59646. }
  59647. },
  59648. },
  59649. [
  59650. {
  59651. name: "Original Size",
  59652. height: math.unit(5, "cm")
  59653. },
  59654. {
  59655. name: "Incognito Size",
  59656. height: math.unit(2.4, "m")
  59657. },
  59658. {
  59659. name: "Home Size",
  59660. height: math.unit(200, "meters"),
  59661. default: true
  59662. },
  59663. {
  59664. name: "Mega",
  59665. height: math.unit(2, "km")
  59666. },
  59667. {
  59668. name: "Giga (Preferred Size)",
  59669. height: math.unit(2000, "km")
  59670. },
  59671. {
  59672. name: "Giga+",
  59673. height: math.unit(6000, "km")
  59674. },
  59675. {
  59676. name: "Terra",
  59677. height: math.unit(17000, "km")
  59678. },
  59679. {
  59680. name: "Terra+",
  59681. height: math.unit(75000, "km")
  59682. },
  59683. {
  59684. name: "Terra++",
  59685. height: math.unit(225000, "km")
  59686. },
  59687. ]
  59688. ))
  59689. characterMakers.push(() => makeCharacter(
  59690. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59691. {
  59692. side: {
  59693. height: math.unit(7.8, "meters"),
  59694. name: "Side",
  59695. image: {
  59696. source: "./media/characters/ragnarok/side.svg",
  59697. extra: 725/621,
  59698. bottom: 72/797
  59699. }
  59700. },
  59701. },
  59702. [
  59703. {
  59704. name: "Normal",
  59705. height: math.unit(7.8, "meters"),
  59706. default: true
  59707. },
  59708. ]
  59709. ))
  59710. characterMakers.push(() => makeCharacter(
  59711. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59712. {
  59713. hyena_front: {
  59714. height: math.unit(2.1, "meters"),
  59715. weight: math.unit(110, "kg"),
  59716. name: "Front",
  59717. image: {
  59718. source: "./media/characters/nima/hyena-front.svg",
  59719. extra: 1904/1796,
  59720. bottom: 67/1971
  59721. },
  59722. form: "hyena",
  59723. },
  59724. hyena_back: {
  59725. height: math.unit(2.1, "meters"),
  59726. weight: math.unit(110, "kg"),
  59727. name: "Back",
  59728. image: {
  59729. source: "./media/characters/nima/hyena-back.svg",
  59730. extra: 1964/1884,
  59731. bottom: 35/1999
  59732. },
  59733. form: "hyena",
  59734. },
  59735. shark_front: {
  59736. height: math.unit(1.95, "meters"),
  59737. weight: math.unit(110, "kg"),
  59738. name: "Front",
  59739. image: {
  59740. source: "./media/characters/nima/shark-front.svg",
  59741. extra: 2238/2013,
  59742. bottom: 0/223
  59743. },
  59744. form: "shark",
  59745. },
  59746. paw: {
  59747. height: math.unit(1, "feet"),
  59748. name: "Paw",
  59749. image: {
  59750. source: "./media/characters/nima/paw.svg"
  59751. }
  59752. },
  59753. circlet: {
  59754. height: math.unit(0.3, "feet"),
  59755. name: "Circlet",
  59756. image: {
  59757. source: "./media/characters/nima/circlet.svg"
  59758. }
  59759. },
  59760. necklace: {
  59761. height: math.unit(1.2, "feet"),
  59762. name: "Necklace",
  59763. image: {
  59764. source: "./media/characters/nima/necklace.svg"
  59765. }
  59766. },
  59767. bracelet: {
  59768. height: math.unit(0.51, "feet"),
  59769. name: "Bracelet",
  59770. image: {
  59771. source: "./media/characters/nima/bracelet.svg"
  59772. }
  59773. },
  59774. armband: {
  59775. height: math.unit(1.3, "feet"),
  59776. name: "Armband",
  59777. image: {
  59778. source: "./media/characters/nima/armband.svg"
  59779. }
  59780. },
  59781. },
  59782. [
  59783. {
  59784. name: "Incognito",
  59785. height: math.unit(2.1, "meters"),
  59786. allForms: true
  59787. },
  59788. {
  59789. name: "Small Macro",
  59790. height: math.unit(50, "meters"),
  59791. allForms: true
  59792. },
  59793. {
  59794. name: "Macro",
  59795. height: math.unit(200, "meters"),
  59796. allForms: true
  59797. },
  59798. {
  59799. name: "Mega",
  59800. height: math.unit(2.5, "km"),
  59801. allForms: true
  59802. },
  59803. {
  59804. name: "Mega+",
  59805. height: math.unit(30, "km"),
  59806. allForms: true
  59807. },
  59808. {
  59809. name: "Giga (Home Size)",
  59810. height: math.unit(400, "km"),
  59811. allForms: true,
  59812. default: true
  59813. },
  59814. {
  59815. name: "Giga+",
  59816. height: math.unit(2500, "km"),
  59817. allForms: true
  59818. },
  59819. {
  59820. name: "Giga++",
  59821. height: math.unit(8000, "km"),
  59822. allForms: true
  59823. },
  59824. {
  59825. name: "Terra",
  59826. height: math.unit(20000, "km"),
  59827. allForms: true
  59828. },
  59829. {
  59830. name: "Terra+",
  59831. height: math.unit(70000, "km"),
  59832. allForms: true
  59833. },
  59834. {
  59835. name: "Terra++",
  59836. height: math.unit(600000, "km"),
  59837. allForms: true
  59838. },
  59839. {
  59840. name: "Galactic",
  59841. height: math.unit(40, "galaxies"),
  59842. allForms: true
  59843. },
  59844. {
  59845. name: "Universal",
  59846. height: math.unit(40, "universes"),
  59847. allForms: true
  59848. },
  59849. ],
  59850. {
  59851. "hyena": {
  59852. name: "Hyena",
  59853. default: true
  59854. },
  59855. "shark": {
  59856. name: "Shark",
  59857. },
  59858. }
  59859. ))
  59860. characterMakers.push(() => makeCharacter(
  59861. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59862. {
  59863. anthro_front: {
  59864. height: math.unit(1.5, "meters"),
  59865. name: "Front",
  59866. image: {
  59867. source: "./media/characters/adelaide/anthro-front.svg",
  59868. extra: 860/783,
  59869. bottom: 60/920
  59870. },
  59871. form: "anthro",
  59872. default: true
  59873. },
  59874. hand: {
  59875. height: math.unit(0.65, "feet"),
  59876. name: "Hand",
  59877. image: {
  59878. source: "./media/characters/adelaide/hand.svg"
  59879. },
  59880. form: "anthro"
  59881. },
  59882. foot: {
  59883. height: math.unit(1.38 * 259 / 314, "feet"),
  59884. name: "Foot",
  59885. image: {
  59886. source: "./media/characters/adelaide/foot.svg",
  59887. extra: 259/259,
  59888. bottom: 55/314
  59889. },
  59890. form: "anthro"
  59891. },
  59892. feather: {
  59893. height: math.unit(0.85, "feet"),
  59894. name: "Feather",
  59895. image: {
  59896. source: "./media/characters/adelaide/feather.svg"
  59897. },
  59898. form: "anthro"
  59899. },
  59900. feral_side: {
  59901. height: math.unit(1, "meters"),
  59902. name: "Side",
  59903. image: {
  59904. source: "./media/characters/adelaide/feral-side.svg",
  59905. extra: 550/467,
  59906. bottom: 37/587
  59907. },
  59908. form: "feral",
  59909. default: true
  59910. },
  59911. feral_hand: {
  59912. height: math.unit(0.58, "feet"),
  59913. name: "Hand",
  59914. image: {
  59915. source: "./media/characters/adelaide/hand.svg"
  59916. },
  59917. form: "feral"
  59918. },
  59919. feral_foot: {
  59920. height: math.unit(1.2 * 259 / 314, "feet"),
  59921. name: "Foot",
  59922. image: {
  59923. source: "./media/characters/adelaide/foot.svg",
  59924. extra: 259/259,
  59925. bottom: 55/314
  59926. },
  59927. form: "feral"
  59928. },
  59929. feral_feather: {
  59930. height: math.unit(0.63, "feet"),
  59931. name: "Feather",
  59932. image: {
  59933. source: "./media/characters/adelaide/feather.svg"
  59934. },
  59935. form: "feral"
  59936. },
  59937. },
  59938. [
  59939. {
  59940. name: "Normal",
  59941. height: math.unit(1.5, "meters"),
  59942. form: "anthro",
  59943. default: true
  59944. },
  59945. {
  59946. name: "Normal",
  59947. height: math.unit(1, "meters"),
  59948. form: "feral",
  59949. default: true
  59950. },
  59951. ],
  59952. {
  59953. "anthro": {
  59954. name: "Anthro",
  59955. default: true
  59956. },
  59957. "feral": {
  59958. name: "Feral",
  59959. },
  59960. }
  59961. ))
  59962. characterMakers.push(() => makeCharacter(
  59963. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59964. {
  59965. front: {
  59966. height: math.unit(2.5, "meters"),
  59967. name: "Front",
  59968. image: {
  59969. source: "./media/characters/goa/front.svg",
  59970. extra: 1109/1013,
  59971. bottom: 150/1259
  59972. }
  59973. },
  59974. },
  59975. [
  59976. {
  59977. name: "Normal",
  59978. height: math.unit(2.5, "meters"),
  59979. default: true
  59980. },
  59981. ]
  59982. ))
  59983. characterMakers.push(() => makeCharacter(
  59984. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59985. {
  59986. front: {
  59987. height: math.unit(2, "meters"),
  59988. weight: math.unit(100, "kg"),
  59989. name: "Front",
  59990. image: {
  59991. source: "./media/characters/kiki-weavile/front.svg",
  59992. extra: 357/332,
  59993. bottom: 60/417
  59994. }
  59995. },
  59996. },
  59997. [
  59998. {
  59999. name: "Normal",
  60000. height: math.unit(2, "meters"),
  60001. default: true
  60002. },
  60003. ]
  60004. ))
  60005. characterMakers.push(() => makeCharacter(
  60006. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60007. {
  60008. side: {
  60009. height: math.unit(1.6, "meters"),
  60010. name: "Side",
  60011. image: {
  60012. source: "./media/characters/liza/side.svg",
  60013. extra: 943/915,
  60014. bottom: 72/1015
  60015. }
  60016. },
  60017. },
  60018. [
  60019. {
  60020. name: "Normal",
  60021. height: math.unit(1.6, "meters"),
  60022. default: true
  60023. },
  60024. ]
  60025. ))
  60026. characterMakers.push(() => makeCharacter(
  60027. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60028. {
  60029. side: {
  60030. height: math.unit(2.5, "meters"),
  60031. preyCapacity: math.unit(1, "people"),
  60032. name: "Side",
  60033. image: {
  60034. source: "./media/characters/persephone-sweetbreath/side.svg",
  60035. extra: 796/700,
  60036. bottom: 44/840
  60037. }
  60038. },
  60039. sideVore: {
  60040. height: math.unit(2.5, "meters"),
  60041. preyCapacity: math.unit(1, "people"),
  60042. name: "Side (Full)",
  60043. image: {
  60044. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60045. extra: 796/700,
  60046. bottom: 44/840
  60047. }
  60048. },
  60049. },
  60050. [
  60051. {
  60052. name: "Normal",
  60053. height: math.unit(2.5, "meters"),
  60054. default: true
  60055. },
  60056. ]
  60057. ))
  60058. characterMakers.push(() => makeCharacter(
  60059. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60060. {
  60061. front: {
  60062. height: math.unit(32, "meters"),
  60063. name: "Front",
  60064. image: {
  60065. source: "./media/characters/pierce/front.svg",
  60066. extra: 1695/1475,
  60067. bottom: 185/1880
  60068. }
  60069. },
  60070. side: {
  60071. height: math.unit(32, "meters"),
  60072. name: "Side",
  60073. image: {
  60074. source: "./media/characters/pierce/side.svg",
  60075. extra: 974/859,
  60076. bottom: 43/1017
  60077. }
  60078. },
  60079. frontWingless: {
  60080. height: math.unit(32, "meters"),
  60081. name: "Front (Wingless)",
  60082. image: {
  60083. source: "./media/characters/pierce/front-wingless.svg",
  60084. extra: 1695/1475,
  60085. bottom: 185/1880
  60086. }
  60087. },
  60088. sideWingless: {
  60089. height: math.unit(32, "meters"),
  60090. name: "Side (Wingless)",
  60091. image: {
  60092. source: "./media/characters/pierce/side-wingless.svg",
  60093. extra: 974/859,
  60094. bottom: 43/1017
  60095. }
  60096. },
  60097. maw: {
  60098. height: math.unit(19.3, "meters"),
  60099. name: "Maw",
  60100. image: {
  60101. source: "./media/characters/pierce/maw.svg"
  60102. }
  60103. },
  60104. },
  60105. [
  60106. {
  60107. name: "Small",
  60108. height: math.unit(8.5, "meters")
  60109. },
  60110. {
  60111. name: "Normal",
  60112. height: math.unit(32, "meters"),
  60113. default: true
  60114. },
  60115. ]
  60116. ))
  60117. characterMakers.push(() => makeCharacter(
  60118. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60119. {
  60120. front: {
  60121. height: math.unit(2.3, "meters"),
  60122. weight: math.unit(165, "kg"),
  60123. name: "Front",
  60124. image: {
  60125. source: "./media/characters/shira/front.svg",
  60126. extra: 924/919,
  60127. bottom: 17/941
  60128. },
  60129. form: "cobra",
  60130. default: true
  60131. },
  60132. back: {
  60133. height: math.unit(2.3, "meters"),
  60134. weight: math.unit(165, "kg"),
  60135. name: "Back",
  60136. image: {
  60137. source: "./media/characters/shira/back.svg",
  60138. extra: 928/922,
  60139. bottom: 18/946
  60140. },
  60141. form: "cobra"
  60142. },
  60143. frontLewd: {
  60144. height: math.unit(2.3, "meters"),
  60145. weight: math.unit(165, "kg"),
  60146. name: "Front (Lewd)",
  60147. image: {
  60148. source: "./media/characters/shira/front-lewd.svg",
  60149. extra: 924/919,
  60150. bottom: 17/941
  60151. },
  60152. form: "cobra"
  60153. },
  60154. backLewd: {
  60155. height: math.unit(2.3, "meters"),
  60156. weight: math.unit(165, "kg"),
  60157. name: "Back (Lewd)",
  60158. image: {
  60159. source: "./media/characters/shira/back-lewd.svg",
  60160. extra: 928/922,
  60161. bottom: 18/946
  60162. },
  60163. form: "cobra"
  60164. },
  60165. maw: {
  60166. height: math.unit(1.14, "feet"),
  60167. name: "Maw",
  60168. image: {
  60169. source: "./media/characters/shira/maw.svg"
  60170. },
  60171. form: "cobra"
  60172. },
  60173. magma_front: {
  60174. height: math.unit(2.3, "meters"),
  60175. weight: math.unit(165, "kg"),
  60176. name: "Front",
  60177. image: {
  60178. source: "./media/characters/shira/magma-front.svg",
  60179. extra: 1870/1693,
  60180. bottom: 24/1894
  60181. },
  60182. form: "magma",
  60183. },
  60184. magma_back: {
  60185. height: math.unit(2.3, "meters"),
  60186. weight: math.unit(165, "kg"),
  60187. name: "Back",
  60188. image: {
  60189. source: "./media/characters/shira/magma-back.svg",
  60190. extra: 1918/1756,
  60191. bottom: 46/1964
  60192. },
  60193. form: "magma",
  60194. },
  60195. },
  60196. [
  60197. {
  60198. name: "Incognito",
  60199. height: math.unit(2.3, "meters"),
  60200. allForms: true
  60201. },
  60202. {
  60203. name: "Home Size",
  60204. height: math.unit(150, "meters"),
  60205. default: true,
  60206. allForms: true
  60207. },
  60208. {
  60209. name: "Macro",
  60210. height: math.unit(2, "km"),
  60211. allForms: true
  60212. },
  60213. {
  60214. name: "Mega",
  60215. height: math.unit(30, "km"),
  60216. allForms: true
  60217. },
  60218. {
  60219. name: "Giga",
  60220. height: math.unit(450, "km"),
  60221. allForms: true
  60222. },
  60223. {
  60224. name: "Giga+",
  60225. height: math.unit(3000, "km"),
  60226. allForms: true
  60227. },
  60228. {
  60229. name: "Giga++",
  60230. height: math.unit(6000, "km"),
  60231. allForms: true
  60232. },
  60233. {
  60234. name: "Terra",
  60235. height: math.unit(80000, "km"),
  60236. allForms: true
  60237. },
  60238. {
  60239. name: "Terra+",
  60240. height: math.unit(350000, "km"),
  60241. allForms: true
  60242. },
  60243. {
  60244. name: "Solar",
  60245. height: math.unit(1e6, "km"),
  60246. allForms: true
  60247. },
  60248. ],
  60249. {
  60250. "cobra": {
  60251. name: "Cobra",
  60252. default: true
  60253. },
  60254. "magma": {
  60255. name: "Magma Dragon",
  60256. },
  60257. }
  60258. ))
  60259. characterMakers.push(() => makeCharacter(
  60260. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60261. {
  60262. front: {
  60263. height: math.unit(2, "meters"),
  60264. weight: math.unit(160, "kg"),
  60265. name: "Front",
  60266. image: {
  60267. source: "./media/characters/daxerios/front.svg",
  60268. extra: 1334/1277,
  60269. bottom: 45/1379
  60270. }
  60271. },
  60272. frontLewd: {
  60273. height: math.unit(2, "meters"),
  60274. weight: math.unit(160, "kg"),
  60275. name: "Front (Lewd)",
  60276. image: {
  60277. source: "./media/characters/daxerios/front-lewd.svg",
  60278. extra: 1334/1277,
  60279. bottom: 45/1379
  60280. }
  60281. },
  60282. dick: {
  60283. height: math.unit(2.35, "feet"),
  60284. name: "Dick",
  60285. image: {
  60286. source: "./media/characters/daxerios/dick.svg"
  60287. }
  60288. },
  60289. },
  60290. [
  60291. {
  60292. name: "\"Small\"",
  60293. height: math.unit(5, "meters")
  60294. },
  60295. {
  60296. name: "Original Size",
  60297. height: math.unit(500, "meters"),
  60298. default: true
  60299. },
  60300. {
  60301. name: "Mega",
  60302. height: math.unit(2, "km")
  60303. },
  60304. {
  60305. name: "Mega+",
  60306. height: math.unit(35, "km")
  60307. },
  60308. {
  60309. name: "Giga",
  60310. height: math.unit(250, "km")
  60311. },
  60312. {
  60313. name: "Giga+",
  60314. height: math.unit(3000, "km")
  60315. },
  60316. {
  60317. name: "Terra",
  60318. height: math.unit(25000, "km")
  60319. },
  60320. {
  60321. name: "Terra+",
  60322. height: math.unit(300000, "km")
  60323. },
  60324. {
  60325. name: "Solar",
  60326. height: math.unit(1e6, "km")
  60327. },
  60328. ]
  60329. ))
  60330. characterMakers.push(() => makeCharacter(
  60331. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60332. {
  60333. front: {
  60334. height: math.unit(8 + 4/12, "feet"),
  60335. weight: math.unit(464, "lb"),
  60336. name: "Front",
  60337. image: {
  60338. source: "./media/characters/caveat/front.svg",
  60339. extra: 1861/1678,
  60340. bottom: 40/1901
  60341. }
  60342. },
  60343. },
  60344. [
  60345. {
  60346. name: "Normal",
  60347. height: math.unit(8 + 4/12, "feet"),
  60348. default: true
  60349. },
  60350. ]
  60351. ))
  60352. characterMakers.push(() => makeCharacter(
  60353. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60354. {
  60355. front: {
  60356. height: math.unit(12, "feet"),
  60357. weight: math.unit(1800, "lb"),
  60358. name: "Front",
  60359. image: {
  60360. source: "./media/characters/centbair/front.svg",
  60361. extra: 781/663,
  60362. bottom: 25/806
  60363. }
  60364. },
  60365. frontNsfw: {
  60366. height: math.unit(12, "feet"),
  60367. weight: math.unit(1800, "lb"),
  60368. name: "Front (NSFW)",
  60369. image: {
  60370. source: "./media/characters/centbair/front-nsfw.svg",
  60371. extra: 781/663,
  60372. bottom: 25/806
  60373. }
  60374. },
  60375. back: {
  60376. height: math.unit(12, "feet"),
  60377. weight: math.unit(1800, "lb"),
  60378. name: "Back",
  60379. image: {
  60380. source: "./media/characters/centbair/back.svg",
  60381. extra: 808/761,
  60382. bottom: 19/827
  60383. }
  60384. },
  60385. dick: {
  60386. height: math.unit(6.5, "feet"),
  60387. name: "Dick",
  60388. image: {
  60389. source: "./media/characters/centbair/dick.svg"
  60390. }
  60391. },
  60392. slit: {
  60393. height: math.unit(3.25, "feet"),
  60394. name: "Slit",
  60395. image: {
  60396. source: "./media/characters/centbair/slit.svg"
  60397. }
  60398. },
  60399. },
  60400. [
  60401. {
  60402. name: "Normal",
  60403. height: math.unit(12, "feet"),
  60404. default: true
  60405. },
  60406. ]
  60407. ))
  60408. characterMakers.push(() => makeCharacter(
  60409. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60410. {
  60411. front: {
  60412. height: math.unit(5 + 7/12, "feet"),
  60413. name: "Front",
  60414. image: {
  60415. source: "./media/characters/andy/front.svg",
  60416. extra: 634/588,
  60417. bottom: 36/670
  60418. },
  60419. extraAttributes: {
  60420. "pawLength": {
  60421. name: "Paw Length",
  60422. power: 1,
  60423. type: "length",
  60424. base: math.unit(1, "feet")
  60425. },
  60426. }
  60427. },
  60428. side: {
  60429. height: math.unit(5 + 7/12, "feet"),
  60430. name: "Side",
  60431. image: {
  60432. source: "./media/characters/andy/side.svg",
  60433. extra: 641/596,
  60434. bottom: 34/675
  60435. },
  60436. extraAttributes: {
  60437. "pawLength": {
  60438. name: "Paw Length",
  60439. power: 1,
  60440. type: "length",
  60441. base: math.unit(1, "feet")
  60442. },
  60443. }
  60444. },
  60445. back: {
  60446. height: math.unit(5 + 7/12, "feet"),
  60447. name: "Back",
  60448. image: {
  60449. source: "./media/characters/andy/back.svg",
  60450. extra: 618/583,
  60451. bottom: 39/657
  60452. },
  60453. extraAttributes: {
  60454. "pawLength": {
  60455. name: "Paw Length",
  60456. power: 1,
  60457. type: "length",
  60458. base: math.unit(1, "feet")
  60459. },
  60460. }
  60461. },
  60462. paw: {
  60463. height: math.unit(1.13, "feet"),
  60464. name: "Paw",
  60465. image: {
  60466. source: "./media/characters/andy/paw.svg"
  60467. }
  60468. },
  60469. },
  60470. [
  60471. {
  60472. name: "Micro",
  60473. height: math.unit(4, "inches")
  60474. },
  60475. {
  60476. name: "Normal",
  60477. height: math.unit(5 + 7/12, "feet"),
  60478. default: true
  60479. },
  60480. {
  60481. name: "Macro",
  60482. height: math.unit(390.42, "feet")
  60483. },
  60484. ]
  60485. ))
  60486. characterMakers.push(() => makeCharacter(
  60487. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60488. {
  60489. front: {
  60490. height: math.unit(7, "feet"),
  60491. weight: math.unit(250, "lb"),
  60492. name: "Front",
  60493. image: {
  60494. source: "./media/characters/vix-titan/front.svg",
  60495. extra: 460/428,
  60496. bottom: 15/475
  60497. },
  60498. extraAttributes: {
  60499. "pawWidth": {
  60500. name: "Paw Width",
  60501. power: 1,
  60502. type: "length",
  60503. base: math.unit(0.75, "feet")
  60504. },
  60505. }
  60506. },
  60507. },
  60508. [
  60509. {
  60510. name: "Normal",
  60511. height: math.unit(7, "feet"),
  60512. default: true
  60513. },
  60514. {
  60515. name: "Giant",
  60516. height: math.unit(1500, "feet")
  60517. },
  60518. {
  60519. name: "Mega",
  60520. height: math.unit(10, "miles")
  60521. },
  60522. {
  60523. name: "Giga",
  60524. height: math.unit(150, "miles")
  60525. },
  60526. {
  60527. name: "Tera",
  60528. height: math.unit(144000, "miles")
  60529. },
  60530. ]
  60531. ))
  60532. characterMakers.push(() => makeCharacter(
  60533. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60534. {
  60535. front: {
  60536. height: math.unit(6 + 2/12, "feet"),
  60537. name: "Front",
  60538. image: {
  60539. source: "./media/characters/reiku/front.svg",
  60540. extra: 1910/1757,
  60541. bottom: 103/2013
  60542. },
  60543. extraAttributes: {
  60544. "thighThickness": {
  60545. name: "Thigh Thickness",
  60546. power: 1,
  60547. type: "length",
  60548. base: math.unit(1.12, "feet")
  60549. },
  60550. "assThickness": {
  60551. name: "Ass Thickness",
  60552. power: 1,
  60553. type: "length",
  60554. base: math.unit(1.12*2, "feet")
  60555. },
  60556. }
  60557. },
  60558. side: {
  60559. height: math.unit(6 + 2/12, "feet"),
  60560. name: "Side",
  60561. image: {
  60562. source: "./media/characters/reiku/side.svg",
  60563. extra: 1846/1748,
  60564. bottom: 99/1945
  60565. },
  60566. extraAttributes: {
  60567. "thighThickness": {
  60568. name: "Thigh Thickness",
  60569. power: 1,
  60570. type: "length",
  60571. base: math.unit(1.12, "feet")
  60572. },
  60573. "assThickness": {
  60574. name: "Ass Thickness",
  60575. power: 1,
  60576. type: "length",
  60577. base: math.unit(1.12*2, "feet")
  60578. },
  60579. }
  60580. },
  60581. back: {
  60582. height: math.unit(6 + 2/12, "feet"),
  60583. name: "Back",
  60584. image: {
  60585. source: "./media/characters/reiku/back.svg",
  60586. extra: 1941/1786,
  60587. bottom: 34/1975
  60588. },
  60589. extraAttributes: {
  60590. "thighThickness": {
  60591. name: "Thigh Thickness",
  60592. power: 1,
  60593. type: "length",
  60594. base: math.unit(1.12, "feet")
  60595. },
  60596. "assThickness": {
  60597. name: "Ass Thickness",
  60598. power: 1,
  60599. type: "length",
  60600. base: math.unit(1.12*2, "feet")
  60601. },
  60602. }
  60603. },
  60604. head: {
  60605. height: math.unit(1.8, "feet"),
  60606. name: "Head",
  60607. image: {
  60608. source: "./media/characters/reiku/head.svg"
  60609. }
  60610. },
  60611. tailTop: {
  60612. height: math.unit(8.4, "feet"),
  60613. name: "Tail (Top)",
  60614. image: {
  60615. source: "./media/characters/reiku/tail-top.svg"
  60616. }
  60617. },
  60618. tailBottom: {
  60619. height: math.unit(8.4, "feet"),
  60620. name: "Tail (Bottom)",
  60621. image: {
  60622. source: "./media/characters/reiku/tail-bottom.svg"
  60623. }
  60624. },
  60625. foot: {
  60626. height: math.unit(2.6, "feet"),
  60627. name: "Foot",
  60628. image: {
  60629. source: "./media/characters/reiku/foot.svg"
  60630. }
  60631. },
  60632. footCurled: {
  60633. height: math.unit(2.3, "feet"),
  60634. name: "Foot (Curled)",
  60635. image: {
  60636. source: "./media/characters/reiku/foot-curled.svg"
  60637. }
  60638. },
  60639. footSide: {
  60640. height: math.unit(1.26, "feet"),
  60641. name: "Foot (Side)",
  60642. image: {
  60643. source: "./media/characters/reiku/foot-side.svg"
  60644. }
  60645. },
  60646. },
  60647. [
  60648. {
  60649. name: "Normal",
  60650. height: math.unit(6 + 2/12, "feet"),
  60651. default: true
  60652. },
  60653. ]
  60654. ))
  60655. characterMakers.push(() => makeCharacter(
  60656. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60657. {
  60658. front: {
  60659. height: math.unit(7, "feet"),
  60660. weight: math.unit(500, "kg"),
  60661. name: "Front",
  60662. image: {
  60663. source: "./media/characters/cialda/front.svg",
  60664. extra: 912/745,
  60665. bottom: 55/967
  60666. }
  60667. },
  60668. },
  60669. [
  60670. {
  60671. name: "Normal",
  60672. height: math.unit(7, "feet"),
  60673. default: true
  60674. },
  60675. ]
  60676. ))
  60677. characterMakers.push(() => makeCharacter(
  60678. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60679. {
  60680. side: {
  60681. height: math.unit(6, "feet"),
  60682. weight: math.unit(600, "lb"),
  60683. preyCapacity: math.unit(25, "liters"),
  60684. name: "Side",
  60685. image: {
  60686. source: "./media/characters/darkkin/side.svg",
  60687. extra: 1597/1447,
  60688. bottom: 101/1698
  60689. }
  60690. },
  60691. },
  60692. [
  60693. {
  60694. name: "Canon Height",
  60695. height: math.unit(568, "feet"),
  60696. default: true
  60697. },
  60698. ]
  60699. ))
  60700. characterMakers.push(() => makeCharacter(
  60701. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60702. {
  60703. front: {
  60704. height: math.unit(6, "feet"),
  60705. weight: math.unit(1500, "lb"),
  60706. preyCapacity: math.unit(3, "people"),
  60707. name: "Front",
  60708. image: {
  60709. source: "./media/characters/livnia/front.svg",
  60710. extra: 934/932,
  60711. bottom: 83/1017
  60712. }
  60713. },
  60714. back: {
  60715. height: math.unit(6, "feet"),
  60716. weight: math.unit(1500, "lb"),
  60717. preyCapacity: math.unit(3, "people"),
  60718. name: "Back",
  60719. image: {
  60720. source: "./media/characters/livnia/back.svg",
  60721. extra: 916/915,
  60722. bottom: 58/974
  60723. }
  60724. },
  60725. head: {
  60726. height: math.unit(1.53, "feet"),
  60727. name: "Head",
  60728. image: {
  60729. source: "./media/characters/livnia/head.svg"
  60730. }
  60731. },
  60732. maw: {
  60733. height: math.unit(0.78, "feet"),
  60734. name: "Maw",
  60735. image: {
  60736. source: "./media/characters/livnia/maw.svg"
  60737. }
  60738. },
  60739. genitals: {
  60740. height: math.unit(0.35, "feet"),
  60741. name: "Genitals",
  60742. image: {
  60743. source: "./media/characters/livnia/genitals.svg"
  60744. }
  60745. },
  60746. },
  60747. [
  60748. {
  60749. name: "Normal",
  60750. height: math.unit(1000, "feet"),
  60751. default: true
  60752. },
  60753. ]
  60754. ))
  60755. characterMakers.push(() => makeCharacter(
  60756. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60757. {
  60758. front: {
  60759. height: math.unit(4, "feet"),
  60760. weight: math.unit(73, "lb"),
  60761. name: "Front",
  60762. image: {
  60763. source: "./media/characters/hayaku/front.svg",
  60764. extra: 1011/888,
  60765. bottom: 33/1044
  60766. }
  60767. },
  60768. back: {
  60769. height: math.unit(4, "feet"),
  60770. weight: math.unit(73, "lb"),
  60771. name: "Back",
  60772. image: {
  60773. source: "./media/characters/hayaku/back.svg",
  60774. extra: 1040/930,
  60775. bottom: 20/1060
  60776. }
  60777. },
  60778. },
  60779. [
  60780. {
  60781. name: "Normal",
  60782. height: math.unit(4, "feet"),
  60783. default: true
  60784. },
  60785. ]
  60786. ))
  60787. characterMakers.push(() => makeCharacter(
  60788. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60789. {
  60790. front: {
  60791. height: math.unit(6 + 7/12, "feet"),
  60792. weight: math.unit(300, "lb"),
  60793. name: "Front",
  60794. image: {
  60795. source: "./media/characters/athena-bryzant/front.svg",
  60796. extra: 870/835,
  60797. bottom: 33/903
  60798. }
  60799. },
  60800. back: {
  60801. height: math.unit(6 + 7/12, "feet"),
  60802. weight: math.unit(300, "lb"),
  60803. name: "Back",
  60804. image: {
  60805. source: "./media/characters/athena-bryzant/back.svg",
  60806. extra: 858/823,
  60807. bottom: 30/888
  60808. }
  60809. },
  60810. head: {
  60811. height: math.unit(2.38, "feet"),
  60812. name: "Head",
  60813. image: {
  60814. source: "./media/characters/athena-bryzant/head.svg"
  60815. }
  60816. },
  60817. wings: {
  60818. height: math.unit(2.85, "feet"),
  60819. name: "Wings",
  60820. image: {
  60821. source: "./media/characters/athena-bryzant/wings.svg"
  60822. }
  60823. },
  60824. },
  60825. [
  60826. {
  60827. name: "Normal",
  60828. height: math.unit(6 + 7/12, "feet"),
  60829. default: true
  60830. },
  60831. {
  60832. name: "Big",
  60833. height: math.unit(8, "feet")
  60834. },
  60835. {
  60836. name: "Very Big",
  60837. height: math.unit(11, "feet")
  60838. },
  60839. ]
  60840. ))
  60841. characterMakers.push(() => makeCharacter(
  60842. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60843. {
  60844. side: {
  60845. height: math.unit(3, "meters"),
  60846. weight: math.unit(7500, "kg"),
  60847. preyCapacity: math.unit(1e12, "people"),
  60848. name: "Side",
  60849. image: {
  60850. source: "./media/characters/zel-kesh/side.svg",
  60851. extra: 910/407,
  60852. bottom: 147/1057
  60853. }
  60854. },
  60855. },
  60856. [
  60857. {
  60858. name: "Normal",
  60859. height: math.unit(3, "meters"),
  60860. default: true
  60861. },
  60862. ]
  60863. ))
  60864. characterMakers.push(() => makeCharacter(
  60865. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60866. {
  60867. front: {
  60868. height: math.unit(2, "meters"),
  60869. weight: math.unit(95, "kg"),
  60870. name: "Front",
  60871. image: {
  60872. source: "./media/characters/kane-fox/front.svg",
  60873. extra: 945/888,
  60874. bottom: 27/972
  60875. }
  60876. },
  60877. back: {
  60878. height: math.unit(2, "meters"),
  60879. weight: math.unit(95, "kg"),
  60880. name: "Back",
  60881. image: {
  60882. source: "./media/characters/kane-fox/back.svg",
  60883. extra: 959/914,
  60884. bottom: 15/974
  60885. }
  60886. },
  60887. frontLewd: {
  60888. height: math.unit(2, "meters"),
  60889. weight: math.unit(95, "kg"),
  60890. name: "Front (Lewd)",
  60891. image: {
  60892. source: "./media/characters/kane-fox/front-lewd.svg",
  60893. extra: 945/888,
  60894. bottom: 27/972
  60895. }
  60896. },
  60897. },
  60898. [
  60899. {
  60900. name: "Home Size",
  60901. height: math.unit(2, "meters"),
  60902. default: true
  60903. },
  60904. {
  60905. name: "Macro",
  60906. height: math.unit(200, "meters")
  60907. },
  60908. {
  60909. name: "Small Mega",
  60910. height: math.unit(3, "km")
  60911. },
  60912. {
  60913. name: "Mega",
  60914. height: math.unit(50, "km")
  60915. },
  60916. {
  60917. name: "Giga",
  60918. height: math.unit(200, "km")
  60919. },
  60920. {
  60921. name: "Giga+",
  60922. height: math.unit(2500, "km")
  60923. },
  60924. {
  60925. name: "Terra",
  60926. height: math.unit(70000, "km")
  60927. },
  60928. {
  60929. name: "Terra+",
  60930. height: math.unit(150000, "km")
  60931. },
  60932. {
  60933. name: "Terra++",
  60934. height: math.unit(400000, "km")
  60935. },
  60936. ]
  60937. ))
  60938. characterMakers.push(() => makeCharacter(
  60939. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60940. {
  60941. otter_front: {
  60942. height: math.unit(1.8, "meters"),
  60943. weight: math.unit(90, "kg"),
  60944. name: "Front",
  60945. image: {
  60946. source: "./media/characters/ayranus/otter-front.svg",
  60947. extra: 468/452,
  60948. bottom: 43/511
  60949. },
  60950. form: "otter",
  60951. },
  60952. otter_frontLewd: {
  60953. height: math.unit(1.8, "meters"),
  60954. weight: math.unit(90, "kg"),
  60955. name: "Front (Lewd)",
  60956. image: {
  60957. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60958. extra: 468/452,
  60959. bottom: 43/511
  60960. },
  60961. form: "otter",
  60962. },
  60963. lionbat_front: {
  60964. height: math.unit(1.8, "meters"),
  60965. weight: math.unit(90, "kg"),
  60966. name: "Front (Lewd)",
  60967. image: {
  60968. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60969. extra: 797/740,
  60970. bottom: 78/875
  60971. },
  60972. form: "lionbat",
  60973. },
  60974. paw: {
  60975. height: math.unit(1.5, "feet"),
  60976. name: "Paw",
  60977. image: {
  60978. source: "./media/characters/ayranus/paw.svg"
  60979. },
  60980. },
  60981. },
  60982. [
  60983. {
  60984. name: "Incognito",
  60985. height: math.unit(1.8, "meters"),
  60986. allForms: true
  60987. },
  60988. {
  60989. name: "Macro",
  60990. height: math.unit(60, "meters"),
  60991. allForms: true
  60992. },
  60993. {
  60994. name: "Macro+",
  60995. height: math.unit(200, "meters"),
  60996. allForms: true
  60997. },
  60998. {
  60999. name: "Mega",
  61000. height: math.unit(35, "km"),
  61001. allForms: true
  61002. },
  61003. {
  61004. name: "Giga",
  61005. height: math.unit(220, "km"),
  61006. allForms: true
  61007. },
  61008. {
  61009. name: "Giga+",
  61010. height: math.unit(1500, "km"),
  61011. allForms: true
  61012. },
  61013. {
  61014. name: "Terra",
  61015. height: math.unit(13000, "km"),
  61016. allForms: true
  61017. },
  61018. {
  61019. name: "Terra+",
  61020. height: math.unit(500000, "km"),
  61021. allForms: true
  61022. },
  61023. {
  61024. name: "Galactic",
  61025. height: math.unit(486080, "parsecs"),
  61026. default: true,
  61027. allForms: true
  61028. },
  61029. ],
  61030. {
  61031. "otter": {
  61032. name: "Otter",
  61033. default: true
  61034. },
  61035. "lionbat": {
  61036. name: "Lionbat",
  61037. },
  61038. }
  61039. ))
  61040. characterMakers.push(() => makeCharacter(
  61041. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61042. {
  61043. front: {
  61044. height: math.unit(7 + 4/12, "feet"),
  61045. weight: math.unit(400, "lb"),
  61046. name: "Front",
  61047. image: {
  61048. source: "./media/characters/proxy/front.svg",
  61049. extra: 1605/1542,
  61050. bottom: 55/1660
  61051. }
  61052. },
  61053. side: {
  61054. height: math.unit(7 + 4/12, "feet"),
  61055. weight: math.unit(400, "lb"),
  61056. name: "Side",
  61057. image: {
  61058. source: "./media/characters/proxy/side.svg",
  61059. extra: 794/759,
  61060. bottom: 6/800
  61061. }
  61062. },
  61063. hand: {
  61064. height: math.unit(1.54, "feet"),
  61065. name: "Hand",
  61066. image: {
  61067. source: "./media/characters/proxy/hand.svg"
  61068. }
  61069. },
  61070. paw: {
  61071. height: math.unit(1.53, "feet"),
  61072. name: "Paw",
  61073. image: {
  61074. source: "./media/characters/proxy/paw.svg"
  61075. }
  61076. },
  61077. maw: {
  61078. height: math.unit(1.9, "feet"),
  61079. name: "Maw",
  61080. image: {
  61081. source: "./media/characters/proxy/maw.svg"
  61082. }
  61083. },
  61084. },
  61085. [
  61086. {
  61087. name: "Normal",
  61088. height: math.unit(7 + 4/12, "feet"),
  61089. default: true
  61090. },
  61091. ]
  61092. ))
  61093. characterMakers.push(() => makeCharacter(
  61094. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61095. {
  61096. front: {
  61097. height: math.unit(4, "meters"),
  61098. name: "Front",
  61099. image: {
  61100. source: "./media/characters/crocozilla/front.svg",
  61101. extra: 1790/1742,
  61102. bottom: 78/1868
  61103. }
  61104. },
  61105. },
  61106. [
  61107. {
  61108. name: "Normal",
  61109. height: math.unit(4, "meters"),
  61110. default: true
  61111. },
  61112. ]
  61113. ))
  61114. characterMakers.push(() => makeCharacter(
  61115. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61116. {
  61117. front: {
  61118. height: math.unit(1.8, "meters"),
  61119. weight: math.unit(120, "kg"),
  61120. name: "Front",
  61121. image: {
  61122. source: "./media/characters/kurz/front.svg",
  61123. extra: 1960/1824,
  61124. bottom: 41/2001
  61125. }
  61126. },
  61127. back: {
  61128. height: math.unit(1.8, "meters"),
  61129. weight: math.unit(120, "kg"),
  61130. name: "Back",
  61131. image: {
  61132. source: "./media/characters/kurz/back.svg",
  61133. extra: 1906/1787,
  61134. bottom: 60/1966
  61135. }
  61136. },
  61137. frontLewd: {
  61138. height: math.unit(1.8, "meters"),
  61139. weight: math.unit(120, "kg"),
  61140. name: "Front (Lewd)",
  61141. image: {
  61142. source: "./media/characters/kurz/front-lewd.svg",
  61143. extra: 1960/1824,
  61144. bottom: 41/2001
  61145. }
  61146. },
  61147. maw: {
  61148. height: math.unit(0.69, "meters"),
  61149. name: "Maw",
  61150. image: {
  61151. source: "./media/characters/kurz/maw.svg"
  61152. }
  61153. },
  61154. },
  61155. [
  61156. {
  61157. name: "Original Size",
  61158. height: math.unit(1.8, "meters")
  61159. },
  61160. {
  61161. name: "Incognito Size",
  61162. height: math.unit(2.4, "meters"),
  61163. default: true
  61164. },
  61165. {
  61166. name: "Macro",
  61167. height: math.unit(30, "meters")
  61168. },
  61169. {
  61170. name: "Macro+",
  61171. height: math.unit(250, "meters")
  61172. },
  61173. {
  61174. name: "Mega",
  61175. height: math.unit(2, "km")
  61176. },
  61177. {
  61178. name: "Mega+",
  61179. height: math.unit(35, "km")
  61180. },
  61181. {
  61182. name: "Mega++",
  61183. height: math.unit(75, "km")
  61184. },
  61185. {
  61186. name: "Giga",
  61187. height: math.unit(250, "km")
  61188. },
  61189. {
  61190. name: "Terra",
  61191. height: math.unit(15000, "km")
  61192. },
  61193. {
  61194. name: "Terra+",
  61195. height: math.unit(2250000, "km")
  61196. },
  61197. ]
  61198. ))
  61199. characterMakers.push(() => makeCharacter(
  61200. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61201. {
  61202. front: {
  61203. height: math.unit(16 + 3/12, "feet"),
  61204. weight: math.unit(3575, "lb"),
  61205. name: "Front",
  61206. image: {
  61207. source: "./media/characters/nikita/front.svg",
  61208. extra: 1064/955,
  61209. bottom: 47/1111
  61210. }
  61211. },
  61212. },
  61213. [
  61214. {
  61215. name: "Normal",
  61216. height: math.unit(16 + 3/12, "feet"),
  61217. default: true
  61218. },
  61219. {
  61220. name: "Big",
  61221. height: math.unit(21, "feet")
  61222. },
  61223. {
  61224. name: "Biggest",
  61225. height: math.unit(50, "feet")
  61226. },
  61227. ]
  61228. ))
  61229. characterMakers.push(() => makeCharacter(
  61230. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61231. {
  61232. front: {
  61233. height: math.unit(1.92, "m"),
  61234. weight: math.unit(76, "kg"),
  61235. name: "Front",
  61236. image: {
  61237. source: "./media/characters/kyara/front.svg",
  61238. extra: 1550/1438,
  61239. bottom: 139/1689
  61240. }
  61241. },
  61242. back: {
  61243. height: math.unit(1.92, "m"),
  61244. weight: math.unit(76, "kg"),
  61245. name: "Back",
  61246. image: {
  61247. source: "./media/characters/kyara/back.svg",
  61248. extra: 1523/1427,
  61249. bottom: 83/1606
  61250. }
  61251. },
  61252. head: {
  61253. height: math.unit(1.22, "feet"),
  61254. name: "Head",
  61255. image: {
  61256. source: "./media/characters/kyara/head.svg"
  61257. }
  61258. },
  61259. maw: {
  61260. height: math.unit(0.73, "feet"),
  61261. name: "Maw",
  61262. image: {
  61263. source: "./media/characters/kyara/maw.svg"
  61264. }
  61265. },
  61266. paws: {
  61267. height: math.unit(0.95, "feet"),
  61268. name: "Paws",
  61269. image: {
  61270. source: "./media/characters/kyara/paws.svg"
  61271. }
  61272. },
  61273. },
  61274. [
  61275. {
  61276. name: "Normal",
  61277. height: math.unit(1.92, "meters"),
  61278. default: true
  61279. },
  61280. {
  61281. name: "Mini Macro",
  61282. height: math.unit(192, "meters")
  61283. },
  61284. {
  61285. name: "Macro",
  61286. height: math.unit(480, "meters")
  61287. },
  61288. {
  61289. name: "Mega Macro",
  61290. height: math.unit(1440, "meters")
  61291. },
  61292. ]
  61293. ))
  61294. characterMakers.push(() => makeCharacter(
  61295. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61296. {
  61297. front: {
  61298. height: math.unit(6, "feet"),
  61299. weight: math.unit(160, "lbs"),
  61300. preyCapacity: math.unit(0.05, "people"),
  61301. name: "Front",
  61302. image: {
  61303. source: "./media/characters/layla-amari/front.svg",
  61304. extra: 1922/1723,
  61305. bottom: 90/2012
  61306. }
  61307. },
  61308. back: {
  61309. height: math.unit(6, "feet"),
  61310. weight: math.unit(160, "lbs"),
  61311. preyCapacity: math.unit(0.05, "people"),
  61312. name: "Back",
  61313. image: {
  61314. source: "./media/characters/layla-amari/back.svg",
  61315. extra: 1917/1718,
  61316. bottom: 50/1967
  61317. }
  61318. },
  61319. frontDressed: {
  61320. height: math.unit(6, "feet"),
  61321. weight: math.unit(160, "lbs"),
  61322. preyCapacity: math.unit(0.05, "people"),
  61323. name: "Front (Dressed)",
  61324. image: {
  61325. source: "./media/characters/layla-amari/front-dressed.svg",
  61326. extra: 1922/1723,
  61327. bottom: 90/2012
  61328. }
  61329. },
  61330. face: {
  61331. height: math.unit(0.93, "feet"),
  61332. name: "Face",
  61333. image: {
  61334. source: "./media/characters/layla-amari/face.svg"
  61335. }
  61336. },
  61337. hand: {
  61338. height: math.unit(0.66 , "feet"),
  61339. name: "Hand",
  61340. image: {
  61341. source: "./media/characters/layla-amari/hand.svg"
  61342. }
  61343. },
  61344. foot: {
  61345. height: math.unit(1, "feet"),
  61346. name: "Foot",
  61347. image: {
  61348. source: "./media/characters/layla-amari/foot.svg"
  61349. }
  61350. },
  61351. necklace: {
  61352. height: math.unit(0.32, "feet"),
  61353. name: "Necklace",
  61354. image: {
  61355. source: "./media/characters/layla-amari/necklace.svg"
  61356. }
  61357. },
  61358. nipple: {
  61359. height: math.unit(0.2, "feet"),
  61360. name: "Nipple",
  61361. image: {
  61362. source: "./media/characters/layla-amari/nipple.svg"
  61363. }
  61364. },
  61365. slit: {
  61366. height: math.unit(0.26, "feet"),
  61367. name: "Slit",
  61368. image: {
  61369. source: "./media/characters/layla-amari/slit.svg"
  61370. }
  61371. },
  61372. },
  61373. [
  61374. {
  61375. name: "Natural",
  61376. height: math.unit(825, "feet"),
  61377. default: true
  61378. },
  61379. {
  61380. name: "Enhanced",
  61381. height: math.unit(8250, "feet")
  61382. },
  61383. {
  61384. name: "Apparent Size",
  61385. height: math.unit(9.04363e+8, "meters")
  61386. },
  61387. ]
  61388. ))
  61389. characterMakers.push(() => makeCharacter(
  61390. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61391. {
  61392. front: {
  61393. height: math.unit(1.3, "meters"),
  61394. name: "Front",
  61395. image: {
  61396. source: "./media/characters/percy/front.svg",
  61397. extra: 1444/1289,
  61398. bottom: 54/1498
  61399. }
  61400. },
  61401. },
  61402. [
  61403. {
  61404. name: "Normal",
  61405. height: math.unit(1.3, "meters"),
  61406. default: true
  61407. },
  61408. ]
  61409. ))
  61410. characterMakers.push(() => makeCharacter(
  61411. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61412. {
  61413. side: {
  61414. height: math.unit(10, "meters"),
  61415. name: "Side",
  61416. image: {
  61417. source: "./media/characters/grev/side.svg",
  61418. extra: 653/266,
  61419. bottom: 77/730
  61420. }
  61421. },
  61422. head: {
  61423. height: math.unit(16.2, "m"),
  61424. name: "Head",
  61425. image: {
  61426. source: "./media/characters/grev/head.svg"
  61427. }
  61428. },
  61429. dick: {
  61430. height: math.unit(2.8135932034, "m"),
  61431. name: "Dick",
  61432. image: {
  61433. source: "./media/characters/grev/dick.svg"
  61434. }
  61435. },
  61436. },
  61437. [
  61438. {
  61439. name: "Friend-Sized",
  61440. height: math.unit(80, "cm")
  61441. },
  61442. {
  61443. name: "Normal",
  61444. height: math.unit(10, "meters"),
  61445. default: true
  61446. },
  61447. {
  61448. name: "Macro",
  61449. height: math.unit(200, "meters")
  61450. },
  61451. ]
  61452. ))
  61453. characterMakers.push(() => makeCharacter(
  61454. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61455. {
  61456. front: {
  61457. height: math.unit(19.75, "feet"),
  61458. weight: math.unit(20000, "lb"),
  61459. name: "Front",
  61460. image: {
  61461. source: "./media/characters/azuuca/front.svg",
  61462. extra: 1593/1511,
  61463. bottom: 55/1648
  61464. }
  61465. },
  61466. },
  61467. [
  61468. {
  61469. name: "Normal",
  61470. height: math.unit(19.75, "feet"),
  61471. default: true
  61472. },
  61473. ]
  61474. ))
  61475. characterMakers.push(() => makeCharacter(
  61476. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61477. {
  61478. front: {
  61479. height: math.unit(15, "feet"),
  61480. weight: math.unit(1500, "lb"),
  61481. name: "Front",
  61482. image: {
  61483. source: "./media/characters/valuria/front.svg",
  61484. extra: 1588/1486,
  61485. bottom: 31/1619
  61486. }
  61487. },
  61488. },
  61489. [
  61490. {
  61491. name: "Normal",
  61492. height: math.unit(15, "feet"),
  61493. default: true
  61494. },
  61495. {
  61496. name: "Small",
  61497. height: math.unit(500, "feet")
  61498. },
  61499. {
  61500. name: "Macro",
  61501. height: math.unit(4000, "feet")
  61502. },
  61503. {
  61504. name: "Mega Macro",
  61505. height: math.unit(2000, "miles")
  61506. },
  61507. {
  61508. name: "Giga Macro",
  61509. height: math.unit(3e6, "miles")
  61510. },
  61511. ]
  61512. ))
  61513. characterMakers.push(() => makeCharacter(
  61514. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61515. {
  61516. front: {
  61517. height: math.unit(3500, "solarradii"),
  61518. name: "Front",
  61519. image: {
  61520. source: "./media/characters/terigaia/front.svg",
  61521. extra: 1531/1451,
  61522. bottom: 98/1629
  61523. }
  61524. },
  61525. },
  61526. [
  61527. {
  61528. name: "Normal",
  61529. height: math.unit(3500, "solarradii"),
  61530. default: true
  61531. },
  61532. ]
  61533. ))
  61534. characterMakers.push(() => makeCharacter(
  61535. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61536. {
  61537. front: {
  61538. height: math.unit(9.34, "feet"),
  61539. weight: math.unit(600, "lb"),
  61540. name: "Front",
  61541. image: {
  61542. source: "./media/characters/blair-blaziken/front.svg",
  61543. extra: 1557/1462,
  61544. bottom: 55/1612
  61545. }
  61546. },
  61547. },
  61548. [
  61549. {
  61550. name: "Normal",
  61551. height: math.unit(9.34, "feet"),
  61552. default: true
  61553. },
  61554. ]
  61555. ))
  61556. characterMakers.push(() => makeCharacter(
  61557. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61558. {
  61559. pistrogre_front: {
  61560. height: math.unit(10, "feet"),
  61561. weight: math.unit(10, "tons"),
  61562. name: "Front",
  61563. image: {
  61564. source: "./media/characters/braxia/pistrogre-front.svg",
  61565. extra: 1531/1334,
  61566. bottom: 114/1645
  61567. },
  61568. form: "pistrogre",
  61569. default: true
  61570. },
  61571. human_front: {
  61572. height: math.unit(10, "feet"),
  61573. weight: math.unit(10, "tons"),
  61574. name: "Front",
  61575. image: {
  61576. source: "./media/characters/braxia/human-front.svg",
  61577. extra: 1574/1501,
  61578. bottom: 37/1611
  61579. },
  61580. form: "human",
  61581. default: true
  61582. },
  61583. },
  61584. [
  61585. {
  61586. name: "Normal",
  61587. height: math.unit(10, "feet"),
  61588. default: true,
  61589. allForms: true
  61590. },
  61591. {
  61592. name: "Macro",
  61593. height: math.unit(1000, "feet"),
  61594. allForms: true
  61595. },
  61596. {
  61597. name: "Mega Macro",
  61598. height: math.unit(100, "miles"),
  61599. allForms: true
  61600. },
  61601. {
  61602. name: "Cosmic",
  61603. height: math.unit(1000000, "lightyears"),
  61604. allForms: true
  61605. },
  61606. {
  61607. name: "ϐѮԆԬӁꭍϞԢ",
  61608. height: math.unit(1000, "multiverses"),
  61609. allForms: true
  61610. },
  61611. ],
  61612. {
  61613. "pistrogre": {
  61614. name: "Pistrogre",
  61615. default: true
  61616. },
  61617. "human": {
  61618. name: "Human",
  61619. },
  61620. }
  61621. ))
  61622. characterMakers.push(() => makeCharacter(
  61623. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61624. {
  61625. front: {
  61626. height: math.unit(6 + 1/12, "feet"),
  61627. weight: math.unit(280, "lb"),
  61628. name: "Front",
  61629. image: {
  61630. source: "./media/characters/kiriga-yato/front.svg",
  61631. extra: 445/394,
  61632. bottom: 11/456
  61633. }
  61634. },
  61635. },
  61636. [
  61637. {
  61638. name: "Descended",
  61639. height: math.unit(3, "feet")
  61640. },
  61641. {
  61642. name: "Average",
  61643. height: math.unit(6 + 1/12, "feet"),
  61644. default: true
  61645. },
  61646. {
  61647. name: "Ascended",
  61648. height: math.unit(9 + 2/12, "feet")
  61649. },
  61650. ]
  61651. ))
  61652. characterMakers.push(() => makeCharacter(
  61653. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61654. {
  61655. front: {
  61656. height: math.unit(6, "feet"),
  61657. weight: math.unit(150, "lb"),
  61658. name: "Front",
  61659. image: {
  61660. source: "./media/characters/kylie/front.svg",
  61661. extra: 1114/1046,
  61662. bottom: 65/1179
  61663. },
  61664. extraAttributes: {
  61665. "hoofSize": {
  61666. name: "Hoof Size",
  61667. power: 2,
  61668. type: "area",
  61669. base: math.unit(0.034, "m^2")
  61670. },
  61671. "footSize": {
  61672. name: "Foot Size",
  61673. power: 2,
  61674. type: "area",
  61675. base: math.unit(0.75, "m^2")
  61676. },
  61677. }
  61678. },
  61679. side: {
  61680. height: math.unit(6, "feet"),
  61681. weight: math.unit(150, "lb"),
  61682. name: "Side",
  61683. image: {
  61684. source: "./media/characters/kylie/side.svg",
  61685. extra: 1178/1110,
  61686. bottom: 21/1199
  61687. },
  61688. extraAttributes: {
  61689. "hoofSize": {
  61690. name: "Hoof Size",
  61691. power: 2,
  61692. type: "area",
  61693. base: math.unit(0.034, "m^2")
  61694. },
  61695. "footSize": {
  61696. name: "Foot Size",
  61697. power: 2,
  61698. type: "area",
  61699. base: math.unit(0.75, "m^2")
  61700. },
  61701. }
  61702. },
  61703. back: {
  61704. height: math.unit(6, "feet"),
  61705. weight: math.unit(150, "lb"),
  61706. name: "Back",
  61707. image: {
  61708. source: "./media/characters/kylie/back.svg",
  61709. extra: 1115/1047,
  61710. bottom: 66/1181
  61711. },
  61712. extraAttributes: {
  61713. "hoofSize": {
  61714. name: "Hoof Size",
  61715. power: 2,
  61716. type: "area",
  61717. base: math.unit(0.034, "m^2")
  61718. },
  61719. "footSize": {
  61720. name: "Foot Size",
  61721. power: 2,
  61722. type: "area",
  61723. base: math.unit(0.75, "m^2")
  61724. },
  61725. }
  61726. },
  61727. head: {
  61728. height: math.unit(1.85, "feet"),
  61729. name: "Head",
  61730. image: {
  61731. source: "./media/characters/kylie/head.svg"
  61732. }
  61733. },
  61734. },
  61735. [
  61736. {
  61737. name: "Normal",
  61738. height: math.unit(90, "meters"),
  61739. default: true
  61740. },
  61741. ]
  61742. ))
  61743. characterMakers.push(() => makeCharacter(
  61744. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61745. {
  61746. front: {
  61747. height: math.unit(245, "feet"),
  61748. weight: math.unit(400000, "lb"),
  61749. name: "Front",
  61750. image: {
  61751. source: "./media/characters/sabado/front.svg",
  61752. extra: 1309/1164,
  61753. bottom: 29/1338
  61754. }
  61755. },
  61756. },
  61757. [
  61758. {
  61759. name: "Normal",
  61760. height: math.unit(245, "feet"),
  61761. default: true
  61762. },
  61763. ]
  61764. ))
  61765. characterMakers.push(() => makeCharacter(
  61766. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61767. {
  61768. shark_front: {
  61769. height: math.unit(2, "meters"),
  61770. weight: math.unit(200, "kg"),
  61771. name: "Front",
  61772. image: {
  61773. source: "./media/characters/zechal/shark-front.svg",
  61774. extra: 969/925,
  61775. bottom: 74/1043
  61776. },
  61777. form: "shark",
  61778. },
  61779. shark_back: {
  61780. height: math.unit(2, "meters"),
  61781. weight: math.unit(200, "kg"),
  61782. name: "Back",
  61783. image: {
  61784. source: "./media/characters/zechal/shark-back.svg",
  61785. extra: 994/949,
  61786. bottom: 176/1170
  61787. },
  61788. form: "shark",
  61789. },
  61790. shark_frontLewd: {
  61791. height: math.unit(2, "meters"),
  61792. weight: math.unit(200, "kg"),
  61793. name: "Front (Lewd)",
  61794. image: {
  61795. source: "./media/characters/zechal/shark-front-lewd.svg",
  61796. extra: 969/925,
  61797. bottom: 74/1043
  61798. },
  61799. form: "shark",
  61800. },
  61801. shark_side: {
  61802. height: math.unit(1.56, "meters"),
  61803. weight: math.unit(200, "kg"),
  61804. name: "Side",
  61805. image: {
  61806. source: "./media/characters/zechal/shark-side.svg"
  61807. },
  61808. form: "shark",
  61809. },
  61810. dragon_front: {
  61811. height: math.unit(2, "meters"),
  61812. weight: math.unit(200, "kg"),
  61813. name: "Front",
  61814. image: {
  61815. source: "./media/characters/zechal/dragon-front.svg",
  61816. extra: 1041/925,
  61817. bottom: 74/1115
  61818. },
  61819. form: "dragon",
  61820. },
  61821. dragon_back: {
  61822. height: math.unit(2, "meters"),
  61823. weight: math.unit(200, "kg"),
  61824. name: "Back",
  61825. image: {
  61826. source: "./media/characters/zechal/dragon-back.svg",
  61827. extra: 1061/949,
  61828. bottom: 176/1237
  61829. },
  61830. form: "dragon",
  61831. },
  61832. dragon_frontLewd: {
  61833. height: math.unit(2, "meters"),
  61834. weight: math.unit(200, "kg"),
  61835. name: "Front (Lewd)",
  61836. image: {
  61837. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61838. extra: 1041/925,
  61839. bottom: 74/1115
  61840. },
  61841. form: "dragon",
  61842. },
  61843. dragon_side: {
  61844. height: math.unit(1.56, "meters"),
  61845. weight: math.unit(200, "kg"),
  61846. name: "Side",
  61847. image: {
  61848. source: "./media/characters/zechal/dragon-side.svg"
  61849. },
  61850. form: "dragon",
  61851. },
  61852. foot: {
  61853. height: math.unit(0.5, "meters"),
  61854. name: "Foot",
  61855. image: {
  61856. source: "./media/characters/zechal/foot.svg"
  61857. }
  61858. },
  61859. sheathFront: {
  61860. height: math.unit(0.45, "meters"),
  61861. name: "Sheath (Front)",
  61862. image: {
  61863. source: "./media/characters/zechal/sheath-front.svg"
  61864. }
  61865. },
  61866. sheathSide: {
  61867. height: math.unit(0.45, "meters"),
  61868. name: "Sheath (Side)",
  61869. image: {
  61870. source: "./media/characters/zechal/sheath-side.svg"
  61871. }
  61872. },
  61873. },
  61874. [
  61875. {
  61876. name: "Incognito",
  61877. height: math.unit(2, "meters"),
  61878. allForms: true
  61879. },
  61880. {
  61881. name: "Small Rampage",
  61882. height: math.unit(25, "meters"),
  61883. allForms: true
  61884. },
  61885. {
  61886. name: "Home Size",
  61887. height: math.unit(250, "meters"),
  61888. allForms: true,
  61889. default: true
  61890. },
  61891. {
  61892. name: "Macro+",
  61893. height: math.unit(700, "meters"),
  61894. allForms: true
  61895. },
  61896. {
  61897. name: "Small Mega",
  61898. height: math.unit(3, "km"),
  61899. allForms: true
  61900. },
  61901. {
  61902. name: "Mega",
  61903. height: math.unit(15, "km"),
  61904. allForms: true
  61905. },
  61906. {
  61907. name: "Giga",
  61908. height: math.unit(300, "km"),
  61909. allForms: true
  61910. },
  61911. {
  61912. name: "Giga+",
  61913. height: math.unit(1750, "km"),
  61914. allForms: true
  61915. },
  61916. {
  61917. name: "Continental",
  61918. height: math.unit(5000, "km"),
  61919. allForms: true
  61920. },
  61921. {
  61922. name: "Terra",
  61923. height: math.unit(20000, "km"),
  61924. allForms: true
  61925. },
  61926. {
  61927. name: "Terra+",
  61928. height: math.unit(300000, "km"),
  61929. allForms: true
  61930. },
  61931. {
  61932. name: "Solar",
  61933. height: math.unit(40000000, "km"),
  61934. allForms: true
  61935. },
  61936. {
  61937. name: "Galactic",
  61938. height: math.unit(810133, "parsecs"),
  61939. allForms: true
  61940. },
  61941. {
  61942. name: "Universal",
  61943. height: math.unit(25, "universes"),
  61944. allForms: true
  61945. },
  61946. ],
  61947. {
  61948. "shark": {
  61949. name: "Shark",
  61950. default: true
  61951. },
  61952. "dragon": {
  61953. name: "Dragon",
  61954. },
  61955. }
  61956. ))
  61957. characterMakers.push(() => makeCharacter(
  61958. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61959. {
  61960. front: {
  61961. height: math.unit(2.2, "meters"),
  61962. weight: math.unit(150, "kg"),
  61963. name: "Front",
  61964. image: {
  61965. source: "./media/characters/sergis/front.svg",
  61966. extra: 1314/1312,
  61967. bottom: 112/1426
  61968. }
  61969. },
  61970. back: {
  61971. height: math.unit(2.2, "meters"),
  61972. weight: math.unit(150, "kg"),
  61973. name: "Back",
  61974. image: {
  61975. source: "./media/characters/sergis/back.svg",
  61976. extra: 1335/1333,
  61977. bottom: 19/1354
  61978. }
  61979. },
  61980. frontLewd: {
  61981. height: math.unit(2.2, "meters"),
  61982. weight: math.unit(150, "kg"),
  61983. name: "Front (Lewd)",
  61984. image: {
  61985. source: "./media/characters/sergis/front-lewd.svg",
  61986. extra: 1314/1312,
  61987. bottom: 112/1426
  61988. }
  61989. },
  61990. frontDressed: {
  61991. height: math.unit(2.2, "meters"),
  61992. weight: math.unit(150, "kg"),
  61993. name: "Front (Dressed)",
  61994. image: {
  61995. source: "./media/characters/sergis/front-dressed.svg",
  61996. extra: 1330/1328,
  61997. bottom: 95/1425
  61998. }
  61999. },
  62000. frontDressedLewd: {
  62001. height: math.unit(2.2, "meters"),
  62002. weight: math.unit(150, "kg"),
  62003. name: "Front (Dressed, Lewd)",
  62004. image: {
  62005. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62006. extra: 1330/1328,
  62007. bottom: 95/1425
  62008. }
  62009. },
  62010. maw: {
  62011. height: math.unit(0.48, "meters"),
  62012. name: "Maw",
  62013. image: {
  62014. source: "./media/characters/sergis/maw.svg"
  62015. }
  62016. },
  62017. sheath: {
  62018. height: math.unit(0.38, "meters"),
  62019. name: "Sheath",
  62020. image: {
  62021. source: "./media/characters/sergis/sheath.svg"
  62022. }
  62023. },
  62024. },
  62025. [
  62026. {
  62027. name: "Incognito Size",
  62028. height: math.unit(2.2, "meters")
  62029. },
  62030. {
  62031. name: "Small Macro",
  62032. height: math.unit(40, "meters")
  62033. },
  62034. {
  62035. name: "Macro",
  62036. height: math.unit(150, "meters")
  62037. },
  62038. {
  62039. name: "Macro+",
  62040. height: math.unit(300, "meters")
  62041. },
  62042. {
  62043. name: "Mega",
  62044. height: math.unit(2.5, "km")
  62045. },
  62046. {
  62047. name: "Mega+",
  62048. height: math.unit(30, "km")
  62049. },
  62050. {
  62051. name: "Home Size",
  62052. height: math.unit(300, "km"),
  62053. default: true
  62054. },
  62055. {
  62056. name: "Giga+",
  62057. height: math.unit(1000, "km")
  62058. },
  62059. {
  62060. name: "Giga++",
  62061. height: math.unit(6000, "km")
  62062. },
  62063. {
  62064. name: "Terra",
  62065. height: math.unit(70000, "km")
  62066. },
  62067. {
  62068. name: "Terra+",
  62069. height: math.unit(200000, "km")
  62070. },
  62071. {
  62072. name: "Galactic",
  62073. height: math.unit(634200, "lightyears")
  62074. },
  62075. ]
  62076. ))
  62077. characterMakers.push(() => makeCharacter(
  62078. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62079. {
  62080. standard: {
  62081. height: math.unit(1 + 5/12, "feet"),
  62082. name: "Standard",
  62083. image: {
  62084. source: "./media/characters/spade/standard.svg",
  62085. extra: 1794/1703,
  62086. bottom: 115/1909
  62087. }
  62088. },
  62089. disguised: {
  62090. height: math.unit(1 + 5/12, "feet"),
  62091. name: "Disguised",
  62092. image: {
  62093. source: "./media/characters/spade/disguised.svg",
  62094. extra: 1794/1700,
  62095. bottom: 98/1892
  62096. }
  62097. },
  62098. },
  62099. [
  62100. {
  62101. name: "Normal",
  62102. height: math.unit(1 + 5/12, "feet"),
  62103. default: true
  62104. },
  62105. ]
  62106. ))
  62107. characterMakers.push(() => makeCharacter(
  62108. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62109. {
  62110. frontNsfw: {
  62111. height: math.unit(5, "meters"),
  62112. weight: math.unit(2000, "kg"),
  62113. preyCapacity: math.unit(5, "people"),
  62114. name: "Front (NSFW)",
  62115. image: {
  62116. source: "./media/characters/zeanlain/front-nsfw.svg",
  62117. extra: 1087/938,
  62118. bottom: 93/1180
  62119. },
  62120. extraAttributes: {
  62121. "wingspan": {
  62122. name: "Wingspan",
  62123. power: 1,
  62124. type: "length",
  62125. base: math.unit(10, "meters")
  62126. },
  62127. "footSize": {
  62128. name: "Foot Size",
  62129. power: 1,
  62130. type: "length",
  62131. base: math.unit(0.68, "meters")
  62132. },
  62133. "cockLength": {
  62134. name: "Cock Length",
  62135. power: 1,
  62136. type: "length",
  62137. base: math.unit(1.69, "meters")
  62138. },
  62139. "ballVolume": {
  62140. name: "Ball Volume",
  62141. power: 3,
  62142. type: "volume",
  62143. base: math.unit(0.028, "m^3")
  62144. },
  62145. }
  62146. },
  62147. front: {
  62148. height: math.unit(5, "meters"),
  62149. weight: math.unit(2000, "kg"),
  62150. preyCapacity: math.unit(3, "people"),
  62151. name: "Front",
  62152. image: {
  62153. source: "./media/characters/zeanlain/front.svg",
  62154. extra: 1087/938,
  62155. bottom: 93/1180
  62156. },
  62157. extraAttributes: {
  62158. "wingspan": {
  62159. name: "Wingspan",
  62160. power: 1,
  62161. type: "length",
  62162. base: math.unit(10, "meters")
  62163. },
  62164. "footSize": {
  62165. name: "Foot Size",
  62166. power: 1,
  62167. type: "length",
  62168. base: math.unit(0.68, "meters")
  62169. },
  62170. }
  62171. },
  62172. },
  62173. [
  62174. {
  62175. name: "Normal",
  62176. height: math.unit(5, "meters"),
  62177. default: true
  62178. },
  62179. ]
  62180. ))
  62181. characterMakers.push(() => makeCharacter(
  62182. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62183. {
  62184. front: {
  62185. height: math.unit(10, "meters"),
  62186. weight: math.unit(250000, "kg"),
  62187. name: "Front",
  62188. image: {
  62189. source: "./media/characters/airamis/front.svg",
  62190. extra: 865/835,
  62191. bottom: 13/878
  62192. }
  62193. },
  62194. },
  62195. [
  62196. {
  62197. name: "Normal",
  62198. height: math.unit(10, "meters"),
  62199. default: true
  62200. },
  62201. ]
  62202. ))
  62203. characterMakers.push(() => makeCharacter(
  62204. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62205. {
  62206. front: {
  62207. height: math.unit(3 + 3/12, "feet"),
  62208. weight: math.unit(75, "lb"),
  62209. name: "Front",
  62210. image: {
  62211. source: "./media/characters/corra-tourmaline/front.svg",
  62212. extra: 1037/864,
  62213. bottom: 39/1076
  62214. }
  62215. },
  62216. back: {
  62217. height: math.unit(3 + 3/12, "feet"),
  62218. weight: math.unit(75, "lb"),
  62219. name: "Back",
  62220. image: {
  62221. source: "./media/characters/corra-tourmaline/back.svg",
  62222. extra: 1022/849,
  62223. bottom: 26/1048
  62224. }
  62225. },
  62226. dressed: {
  62227. height: math.unit(3 + 3/12, "feet"),
  62228. weight: math.unit(75, "lb"),
  62229. name: "Dressed",
  62230. image: {
  62231. source: "./media/characters/corra-tourmaline/dressed.svg",
  62232. extra: 1037/864,
  62233. bottom: 39/1076
  62234. }
  62235. },
  62236. beans: {
  62237. height: math.unit(0.37, "feet"),
  62238. name: "Beans",
  62239. image: {
  62240. source: "./media/characters/corra-tourmaline/beans.svg"
  62241. }
  62242. },
  62243. },
  62244. [
  62245. {
  62246. name: "Normal",
  62247. height: math.unit(3 + 3/12, "feet"),
  62248. default: true
  62249. },
  62250. {
  62251. name: "Macro",
  62252. height: math.unit(32, "feet")
  62253. },
  62254. ]
  62255. ))
  62256. characterMakers.push(() => makeCharacter(
  62257. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62258. {
  62259. front: {
  62260. height: math.unit(6 + 2/12, "feet"),
  62261. weight: math.unit(203, "lb"),
  62262. name: "Front",
  62263. image: {
  62264. source: "./media/characters/maki-kawa/front.svg",
  62265. extra: 950/890,
  62266. bottom: 62/1012
  62267. }
  62268. },
  62269. back: {
  62270. height: math.unit(6 + 2/12, "feet"),
  62271. weight: math.unit(203, "lb"),
  62272. name: "Back",
  62273. image: {
  62274. source: "./media/characters/maki-kawa/back.svg",
  62275. extra: 953/878,
  62276. bottom: 49/1002
  62277. }
  62278. },
  62279. frontBarista: {
  62280. height: math.unit(6 + 2/12, "feet"),
  62281. weight: math.unit(203, "lb"),
  62282. name: "Front (Barista)",
  62283. image: {
  62284. source: "./media/characters/maki-kawa/front-barista.svg",
  62285. extra: 943/883,
  62286. bottom: 69/1012
  62287. }
  62288. },
  62289. backBarista: {
  62290. height: math.unit(6 + 2/12, "feet"),
  62291. weight: math.unit(203, "lb"),
  62292. name: "Back (Barista)",
  62293. image: {
  62294. source: "./media/characters/maki-kawa/back-barista.svg",
  62295. extra: 953/878,
  62296. bottom: 49/1002
  62297. }
  62298. },
  62299. frontWrestler: {
  62300. height: math.unit(6 + 2/12, "feet"),
  62301. weight: math.unit(203, "lb"),
  62302. name: "Front (Wrestler)",
  62303. image: {
  62304. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62305. extra: 950/890,
  62306. bottom: 62/1012
  62307. }
  62308. },
  62309. backWrestler: {
  62310. height: math.unit(6 + 2/12, "feet"),
  62311. weight: math.unit(203, "lb"),
  62312. name: "Back (Wrestler)",
  62313. image: {
  62314. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62315. extra: 953/878,
  62316. bottom: 49/1002
  62317. }
  62318. },
  62319. headFront: {
  62320. height: math.unit(1.64, "feet"),
  62321. name: "Head (Front)",
  62322. image: {
  62323. source: "./media/characters/maki-kawa/head-front.svg"
  62324. }
  62325. },
  62326. headSide: {
  62327. height: math.unit(1.59, "feet"),
  62328. name: "Head (Side)",
  62329. image: {
  62330. source: "./media/characters/maki-kawa/head-side.svg"
  62331. }
  62332. },
  62333. paw: {
  62334. height: math.unit(0.9, "feet"),
  62335. name: "Paw",
  62336. image: {
  62337. source: "./media/characters/maki-kawa/paw.svg"
  62338. }
  62339. },
  62340. },
  62341. [
  62342. {
  62343. name: "Normal",
  62344. height: math.unit(6 + 2/12, "feet"),
  62345. default: true
  62346. },
  62347. {
  62348. name: "Macro",
  62349. height: math.unit(617, "feet")
  62350. },
  62351. ]
  62352. ))
  62353. characterMakers.push(() => makeCharacter(
  62354. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62355. {
  62356. front: {
  62357. height: math.unit(10, "feet"),
  62358. weight: math.unit(1500, "lb"),
  62359. name: "Front",
  62360. image: {
  62361. source: "./media/characters/lennox/front.svg",
  62362. extra: 1623/1496,
  62363. bottom: 18/1641
  62364. }
  62365. },
  62366. back: {
  62367. height: math.unit(10, "feet"),
  62368. weight: math.unit(1500, "lb"),
  62369. name: "Back",
  62370. image: {
  62371. source: "./media/characters/lennox/back.svg",
  62372. extra: 1641/1481,
  62373. bottom: 13/1654
  62374. }
  62375. },
  62376. maw: {
  62377. height: math.unit(2.94, "feet"),
  62378. name: "Maw",
  62379. image: {
  62380. source: "./media/characters/lennox/maw.svg"
  62381. }
  62382. },
  62383. },
  62384. [
  62385. {
  62386. name: "Micro",
  62387. height: math.unit(1, "inch")
  62388. },
  62389. {
  62390. name: "Normal",
  62391. height: math.unit(10, "feet"),
  62392. default: true
  62393. },
  62394. {
  62395. name: "Macro",
  62396. height: math.unit(200, "feet")
  62397. },
  62398. ]
  62399. ))
  62400. characterMakers.push(() => makeCharacter(
  62401. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62402. {
  62403. frontDressed: {
  62404. height: math.unit(15 + 7/12, "feet"),
  62405. weight: math.unit(5000, "lb"),
  62406. name: "Front (Dressed)",
  62407. image: {
  62408. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62409. extra: 1136/1023,
  62410. bottom: 51/1187
  62411. }
  62412. },
  62413. backDressed: {
  62414. height: math.unit(15 + 7/12, "feet"),
  62415. weight: math.unit(5000, "lb"),
  62416. name: "Back (Dressed)",
  62417. image: {
  62418. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62419. extra: 2359/2143,
  62420. bottom: 103/2462
  62421. }
  62422. },
  62423. front: {
  62424. height: math.unit(15 + 7/12, "feet"),
  62425. weight: math.unit(5000, "lb"),
  62426. name: "Front",
  62427. image: {
  62428. source: "./media/characters/vyse-iron-thunder/front.svg",
  62429. extra: 1136/1023,
  62430. bottom: 51/1187
  62431. }
  62432. },
  62433. hand: {
  62434. height: math.unit(2.36, "feet"),
  62435. name: "Hand",
  62436. image: {
  62437. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62438. }
  62439. },
  62440. foot: {
  62441. height: math.unit(1.72, "feet"),
  62442. name: "Foot",
  62443. image: {
  62444. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62445. }
  62446. },
  62447. mouth: {
  62448. height: math.unit(2, "feet"),
  62449. name: "Mouth",
  62450. image: {
  62451. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62452. }
  62453. },
  62454. eye: {
  62455. height: math.unit(0.58, "feet"),
  62456. name: "Eye",
  62457. image: {
  62458. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62459. }
  62460. },
  62461. },
  62462. [
  62463. {
  62464. name: "Normal",
  62465. height: math.unit(15 + 7/12, "feet"),
  62466. default: true
  62467. },
  62468. {
  62469. name: "Macro",
  62470. height: math.unit(157, "feet")
  62471. },
  62472. {
  62473. name: "Macro+",
  62474. height: math.unit(1570, "feet")
  62475. },
  62476. {
  62477. name: "Macro++",
  62478. height: math.unit(15700, "feet")
  62479. },
  62480. {
  62481. name: "Macro+++",
  62482. height: math.unit(157000, "feet")
  62483. },
  62484. {
  62485. name: "Macro++++",
  62486. height: math.unit(1570000, "feet")
  62487. },
  62488. ]
  62489. ))
  62490. characterMakers.push(() => makeCharacter(
  62491. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62492. {
  62493. side: {
  62494. height: math.unit(6, "feet"),
  62495. weight: math.unit(115, "lb"),
  62496. name: "Side",
  62497. image: {
  62498. source: "./media/characters/moonbeam/side.svg",
  62499. extra: 839/485,
  62500. bottom: 60/899
  62501. }
  62502. },
  62503. },
  62504. [
  62505. {
  62506. name: "Normal",
  62507. height: math.unit(6, "feet"),
  62508. default: true
  62509. },
  62510. ]
  62511. ))
  62512. characterMakers.push(() => makeCharacter(
  62513. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62514. {
  62515. front: {
  62516. height: math.unit(3500, "miles"),
  62517. weight: math.unit(1659, "petatonnes"),
  62518. name: "Front",
  62519. image: {
  62520. source: "./media/characters/baltica/front.svg",
  62521. extra: 429/428,
  62522. bottom: 41/470
  62523. }
  62524. },
  62525. back: {
  62526. height: math.unit(3500, "miles"),
  62527. weight: math.unit(1659, "petatonnes"),
  62528. name: "Back",
  62529. image: {
  62530. source: "./media/characters/baltica/back.svg",
  62531. extra: 452/451,
  62532. bottom: 8/460
  62533. }
  62534. },
  62535. },
  62536. [
  62537. {
  62538. name: "Gigamacro",
  62539. height: math.unit(3500, "miles"),
  62540. default: true
  62541. },
  62542. ]
  62543. ))
  62544. characterMakers.push(() => makeCharacter(
  62545. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62546. {
  62547. front: {
  62548. height: math.unit(6 + 10/12, "feet"),
  62549. weight: math.unit(200, "lb"),
  62550. name: "Front",
  62551. image: {
  62552. source: "./media/characters/shadow-wolf/front.svg",
  62553. extra: 1931/1760,
  62554. bottom: 88/2019
  62555. }
  62556. },
  62557. },
  62558. [
  62559. {
  62560. name: "Normal",
  62561. height: math.unit(6 + 10/12, "feet"),
  62562. default: true
  62563. },
  62564. ]
  62565. ))
  62566. characterMakers.push(() => makeCharacter(
  62567. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62568. {
  62569. front: {
  62570. height: math.unit(5 + 10/12, "feet"),
  62571. name: "Front",
  62572. image: {
  62573. source: "./media/characters/quincy-praying-mantis/front.svg",
  62574. extra: 1055/891,
  62575. bottom: 92/1147
  62576. }
  62577. },
  62578. soles: {
  62579. height: math.unit(0.85, "feet"),
  62580. name: "Soles",
  62581. image: {
  62582. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62583. extra: 429/324,
  62584. bottom: 89/518
  62585. },
  62586. extraAttributes: {
  62587. "shoeSize": {
  62588. name: "Shoe Size",
  62589. power: 1,
  62590. type: "length",
  62591. base: math.unit(23, "ShoeSizeMensUS"),
  62592. defaultUnit: "ShoeSizeMensUS"
  62593. },
  62594. }
  62595. },
  62596. foot: {
  62597. height: math.unit(0.72, "feet"),
  62598. name: "Foot",
  62599. image: {
  62600. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62601. extra: 349/349,
  62602. bottom: 76/425
  62603. }
  62604. },
  62605. },
  62606. [
  62607. {
  62608. name: "Normal",
  62609. height: math.unit(5 + 10/12, "feet"),
  62610. default: true
  62611. },
  62612. ]
  62613. ))
  62614. characterMakers.push(() => makeCharacter(
  62615. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62616. {
  62617. front: {
  62618. height: math.unit(6, "feet"),
  62619. name: "Front",
  62620. image: {
  62621. source: "./media/characters/christopher-redwood/front.svg",
  62622. extra: 1402/1341,
  62623. bottom: 23/1425
  62624. }
  62625. },
  62626. back: {
  62627. height: math.unit(6, "feet"),
  62628. name: "Back",
  62629. image: {
  62630. source: "./media/characters/christopher-redwood/back.svg",
  62631. extra: 1406/1345,
  62632. bottom: 36/1442
  62633. }
  62634. },
  62635. head: {
  62636. height: math.unit(1.685, "feet"),
  62637. name: "Head",
  62638. image: {
  62639. source: "./media/characters/christopher-redwood/head.svg"
  62640. }
  62641. },
  62642. },
  62643. [
  62644. {
  62645. name: "Normal",
  62646. height: math.unit(6, "feet"),
  62647. default: true
  62648. },
  62649. ]
  62650. ))
  62651. characterMakers.push(() => makeCharacter(
  62652. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62653. {
  62654. front: {
  62655. height: math.unit(1.9, "meters"),
  62656. weight: math.unit(140, "lb"),
  62657. name: "Front",
  62658. image: {
  62659. source: "./media/characters/kara-fox/front.svg",
  62660. extra: 766/711,
  62661. bottom: 41/807
  62662. }
  62663. },
  62664. back: {
  62665. height: math.unit(1.9, "meters"),
  62666. weight: math.unit(140, "lb"),
  62667. name: "Back",
  62668. image: {
  62669. source: "./media/characters/kara-fox/back.svg",
  62670. extra: 766/596,
  62671. bottom: 29/795
  62672. }
  62673. },
  62674. maw: {
  62675. height: math.unit(0.78, "feet"),
  62676. name: "Maw",
  62677. image: {
  62678. source: "./media/characters/kara-fox/maw.svg"
  62679. }
  62680. },
  62681. pawpads: {
  62682. height: math.unit(0.96, "feet"),
  62683. name: "Pawpads",
  62684. image: {
  62685. source: "./media/characters/kara-fox/pawpads.svg"
  62686. }
  62687. },
  62688. },
  62689. [
  62690. {
  62691. name: "Normal",
  62692. height: math.unit(1.9, "meters"),
  62693. default: true
  62694. },
  62695. {
  62696. name: "Giantess",
  62697. height: math.unit(80, "meters")
  62698. },
  62699. ]
  62700. ))
  62701. characterMakers.push(() => makeCharacter(
  62702. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62703. {
  62704. front: {
  62705. height: math.unit(12, "feet"),
  62706. name: "Front",
  62707. image: {
  62708. source: "./media/characters/naomi-espeon/front.svg",
  62709. extra: 892/797,
  62710. bottom: 5/897
  62711. }
  62712. },
  62713. back: {
  62714. height: math.unit(12, "feet"),
  62715. name: "Back",
  62716. image: {
  62717. source: "./media/characters/naomi-espeon/back.svg",
  62718. extra: 890/785,
  62719. bottom: 12/902
  62720. }
  62721. },
  62722. },
  62723. [
  62724. {
  62725. name: "Normal",
  62726. height: math.unit(12, "feet"),
  62727. default: true
  62728. },
  62729. ]
  62730. ))
  62731. characterMakers.push(() => makeCharacter(
  62732. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62733. {
  62734. anthro_front: {
  62735. height: math.unit(8, "feet"),
  62736. weight: math.unit(625, "lb"),
  62737. name: "Front",
  62738. image: {
  62739. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62740. extra: 638/574,
  62741. bottom: 73/711
  62742. },
  62743. form: "anthro",
  62744. default: true
  62745. },
  62746. anthro_back: {
  62747. height: math.unit(8, "feet"),
  62748. weight: math.unit(625, "lb"),
  62749. name: "Back",
  62750. image: {
  62751. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62752. extra: 674/614,
  62753. bottom: 7/681
  62754. },
  62755. form: "anthro",
  62756. },
  62757. taur_side: {
  62758. height: math.unit(16, "feet"),
  62759. weight: math.unit(4.5, "tons"),
  62760. name: "Side",
  62761. image: {
  62762. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62763. extra: 704/646,
  62764. bottom: 132/836
  62765. },
  62766. form: "taur",
  62767. default: true
  62768. },
  62769. },
  62770. [
  62771. {
  62772. name: "Normal",
  62773. height: math.unit(8, "feet"),
  62774. default: true,
  62775. form: "anthro"
  62776. },
  62777. {
  62778. name: "Normal",
  62779. height: math.unit(16, "feet"),
  62780. default: true,
  62781. form: "taur"
  62782. },
  62783. ],
  62784. {
  62785. "anthro": {
  62786. name: "Anthro",
  62787. default: true
  62788. },
  62789. "taur": {
  62790. name: "Taur",
  62791. },
  62792. }
  62793. ))
  62794. characterMakers.push(() => makeCharacter(
  62795. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62796. {
  62797. front: {
  62798. height: math.unit(190, "cm"),
  62799. weight: math.unit(110, "kg"),
  62800. name: "Front",
  62801. image: {
  62802. source: "./media/characters/amelie/front.svg",
  62803. extra: 530/442,
  62804. bottom: 35/565
  62805. }
  62806. },
  62807. },
  62808. [
  62809. {
  62810. name: "Normal",
  62811. height: math.unit(190, "cm"),
  62812. default: true
  62813. },
  62814. ]
  62815. ))
  62816. characterMakers.push(() => makeCharacter(
  62817. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62818. {
  62819. front: {
  62820. height: math.unit(21, "feet"),
  62821. weight: math.unit(30000, "lb"),
  62822. name: "Front",
  62823. image: {
  62824. source: "./media/characters/valence/front.svg",
  62825. extra: 1430/1306,
  62826. bottom: 51/1481
  62827. }
  62828. },
  62829. },
  62830. [
  62831. {
  62832. name: "Normal",
  62833. height: math.unit(21, "feet"),
  62834. default: true
  62835. },
  62836. ]
  62837. ))
  62838. characterMakers.push(() => makeCharacter(
  62839. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62840. {
  62841. front: {
  62842. height: math.unit(5 + 9/12, "feet"),
  62843. weight: math.unit(170, "lb"),
  62844. name: "Front",
  62845. image: {
  62846. source: "./media/characters/aurora-adkins/front.svg",
  62847. extra: 1141/1089,
  62848. bottom: 41/1182
  62849. }
  62850. },
  62851. },
  62852. [
  62853. {
  62854. name: "Tiny",
  62855. height: math.unit(7, "mm")
  62856. },
  62857. {
  62858. name: "Small",
  62859. height: math.unit(3.4, "inches")
  62860. },
  62861. {
  62862. name: "Normal",
  62863. height: math.unit(5 + 9/12, "feet"),
  62864. default: true
  62865. },
  62866. {
  62867. name: "Big",
  62868. height: math.unit(31, "feet")
  62869. },
  62870. {
  62871. name: "Giant",
  62872. height: math.unit(300, "feet")
  62873. },
  62874. ]
  62875. ))
  62876. characterMakers.push(() => makeCharacter(
  62877. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62878. {
  62879. front: {
  62880. height: math.unit(5 + 6/12, "feet"),
  62881. weight: math.unit(210, "lb"),
  62882. name: "Front",
  62883. image: {
  62884. source: "./media/characters/cyber/front.svg",
  62885. extra: 1968/1798,
  62886. bottom: 10/1978
  62887. },
  62888. extraAttributes: {
  62889. "shoeSize": {
  62890. name: "Shoe Size",
  62891. power: 1,
  62892. type: "length",
  62893. base: math.unit(30, "ShoeSizeMensUS")
  62894. },
  62895. }
  62896. },
  62897. },
  62898. [
  62899. {
  62900. name: "Normal",
  62901. height: math.unit(5 + 6/12, "feet"),
  62902. default: true
  62903. },
  62904. ]
  62905. ))
  62906. characterMakers.push(() => makeCharacter(
  62907. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62908. {
  62909. front: {
  62910. height: math.unit(6 + 6/12, "feet"),
  62911. weight: math.unit(140, "lb"),
  62912. name: "Front",
  62913. image: {
  62914. source: "./media/characters/sapphire-wairimea/front.svg",
  62915. extra: 475/458,
  62916. bottom: 14/489
  62917. }
  62918. },
  62919. },
  62920. [
  62921. {
  62922. name: "Normal",
  62923. height: math.unit(6 + 6/12, "feet")
  62924. },
  62925. {
  62926. name: "Macro",
  62927. height: math.unit(132, "feet"),
  62928. default: true
  62929. },
  62930. ]
  62931. ))
  62932. characterMakers.push(() => makeCharacter(
  62933. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  62934. {
  62935. front: {
  62936. height: math.unit(1.6, "meters"),
  62937. weight: math.unit(100, "lb"),
  62938. name: "Front",
  62939. image: {
  62940. source: "./media/characters/cirkazi/front.svg",
  62941. extra: 489/477,
  62942. bottom: 0/489
  62943. }
  62944. },
  62945. },
  62946. [
  62947. {
  62948. name: "Normal",
  62949. height: math.unit(1.6, "meters")
  62950. },
  62951. {
  62952. name: "Macro",
  62953. height: math.unit(800, "feet"),
  62954. default: true
  62955. },
  62956. ]
  62957. ))
  62958. characterMakers.push(() => makeCharacter(
  62959. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  62960. {
  62961. front: {
  62962. height: math.unit(5 + 10/12, "feet"),
  62963. weight: math.unit(145, "lb"),
  62964. name: "Front",
  62965. image: {
  62966. source: "./media/characters/corrin-cavelli/front.svg",
  62967. extra: 483/464,
  62968. bottom: 6/489
  62969. }
  62970. },
  62971. },
  62972. [
  62973. {
  62974. name: "Human",
  62975. height: math.unit(5 + 10/12, "feet")
  62976. },
  62977. {
  62978. name: "Giant",
  62979. height: math.unit(210, "feet"),
  62980. default: true
  62981. },
  62982. ]
  62983. ))
  62984. characterMakers.push(() => makeCharacter(
  62985. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  62986. {
  62987. back: {
  62988. height: math.unit(5 + 6/12, "feet"),
  62989. weight: math.unit(115, "lb"),
  62990. name: "Back",
  62991. image: {
  62992. source: "./media/characters/lori-lopez/back.svg",
  62993. extra: 483/474,
  62994. bottom: 6/489
  62995. }
  62996. },
  62997. },
  62998. [
  62999. {
  63000. name: "Human",
  63001. height: math.unit(5 + 6/12, "feet")
  63002. },
  63003. {
  63004. name: "Macro",
  63005. height: math.unit(198, "feet"),
  63006. default: true
  63007. },
  63008. ]
  63009. ))
  63010. characterMakers.push(() => makeCharacter(
  63011. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63012. {
  63013. front: {
  63014. height: math.unit(6, "feet"),
  63015. weight: math.unit(220, "lb"),
  63016. name: "Front",
  63017. image: {
  63018. source: "./media/characters/sylvia-beauregard/front.svg",
  63019. extra: 483/479,
  63020. bottom: 6/489
  63021. }
  63022. },
  63023. },
  63024. [
  63025. {
  63026. name: "Macro",
  63027. height: math.unit(2071, "feet"),
  63028. default: true
  63029. },
  63030. ]
  63031. ))
  63032. characterMakers.push(() => makeCharacter(
  63033. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63034. {
  63035. back: {
  63036. height: math.unit(5 + 6/12, "feet"),
  63037. weight: math.unit(160, "lb"),
  63038. name: "Back",
  63039. image: {
  63040. source: "./media/characters/akiko-takahashi/back.svg",
  63041. extra: 459/454,
  63042. bottom: 27/486
  63043. }
  63044. },
  63045. },
  63046. [
  63047. {
  63048. name: "Human",
  63049. height: math.unit(5 + 6/12, "feet")
  63050. },
  63051. {
  63052. name: "Macro",
  63053. height: math.unit(198, "feet"),
  63054. default: true
  63055. },
  63056. {
  63057. name: "Megamacro",
  63058. height: math.unit(7128, "feet")
  63059. },
  63060. ]
  63061. ))
  63062. characterMakers.push(() => makeCharacter(
  63063. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63064. {
  63065. front: {
  63066. height: math.unit(6, "feet"),
  63067. weight: math.unit(140, "lb"),
  63068. name: "Front",
  63069. image: {
  63070. source: "./media/characters/velvet-garza/front.svg",
  63071. extra: 480/462,
  63072. bottom: 7/487
  63073. }
  63074. },
  63075. },
  63076. [
  63077. {
  63078. name: "Macro",
  63079. height: math.unit(37, "feet"),
  63080. default: true
  63081. },
  63082. ]
  63083. ))
  63084. characterMakers.push(() => makeCharacter(
  63085. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63086. {
  63087. front: {
  63088. height: math.unit(7 + 6/12, "feet"),
  63089. weight: math.unit(400, "lb"),
  63090. name: "Front",
  63091. image: {
  63092. source: "./media/characters/gaia/front.svg",
  63093. extra: 474/463,
  63094. bottom: 13/487
  63095. }
  63096. },
  63097. },
  63098. [
  63099. {
  63100. name: "MiniMacro",
  63101. height: math.unit(7 + 6/12, "feet")
  63102. },
  63103. {
  63104. name: "GigaMacro",
  63105. height: math.unit(14500, "feet"),
  63106. default: true
  63107. },
  63108. ]
  63109. ))
  63110. characterMakers.push(() => makeCharacter(
  63111. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63112. {
  63113. front: {
  63114. height: math.unit(6, "feet"),
  63115. weight: math.unit(150, "lb"),
  63116. name: "Front",
  63117. image: {
  63118. source: "./media/characters/tim/front.svg",
  63119. extra: 1878/1743,
  63120. bottom: 9/1887
  63121. }
  63122. },
  63123. frontDressed: {
  63124. height: math.unit(6, "feet"),
  63125. weight: math.unit(150, "lb"),
  63126. name: "Front (Dressed)",
  63127. image: {
  63128. source: "./media/characters/tim/front-dressed.svg",
  63129. extra: 1765/1485,
  63130. bottom: 48/1813
  63131. }
  63132. },
  63133. backDressed: {
  63134. height: math.unit(6, "feet"),
  63135. weight: math.unit(150, "lb"),
  63136. name: "Back (Dressed)",
  63137. image: {
  63138. source: "./media/characters/tim/back-dressed.svg",
  63139. extra: 1750/1465,
  63140. bottom: 25/1775
  63141. }
  63142. },
  63143. dick: {
  63144. height: math.unit(1.5, "feet"),
  63145. weight: math.unit(6, "lb"),
  63146. name: "Dick",
  63147. image: {
  63148. source: "./media/characters/tim/dick.svg"
  63149. }
  63150. },
  63151. hand: {
  63152. height: math.unit(0.522, "feet"),
  63153. name: "Hand",
  63154. image: {
  63155. source: "./media/characters/tim/hand.svg"
  63156. }
  63157. },
  63158. palm: {
  63159. height: math.unit(0.48, "feet"),
  63160. name: "Palm",
  63161. image: {
  63162. source: "./media/characters/tim/palm.svg"
  63163. }
  63164. },
  63165. paw: {
  63166. height: math.unit(0.9, "feet"),
  63167. name: "Paw",
  63168. image: {
  63169. source: "./media/characters/tim/paw.svg"
  63170. }
  63171. },
  63172. sole: {
  63173. height: math.unit(0.88, "feet"),
  63174. name: "Sole",
  63175. image: {
  63176. source: "./media/characters/tim/sole.svg"
  63177. }
  63178. },
  63179. },
  63180. [
  63181. {
  63182. name: "Macro",
  63183. height: math.unit(1000, "feet")
  63184. },
  63185. {
  63186. name: "Megamacro",
  63187. height: math.unit(10000, "feet"),
  63188. default: true
  63189. },
  63190. {
  63191. name: "Megamacro+",
  63192. height: math.unit(50000, "feet")
  63193. },
  63194. {
  63195. name: "Gigamacro",
  63196. height: math.unit(150000, "km")
  63197. },
  63198. ]
  63199. ))
  63200. characterMakers.push(() => makeCharacter(
  63201. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63202. {
  63203. front: {
  63204. height: math.unit(5 + 8/12, "feet"),
  63205. weight: math.unit(170, "lb"),
  63206. name: "Front",
  63207. image: {
  63208. source: "./media/characters/abel-delreoux/front.svg",
  63209. extra: 1615/1500,
  63210. bottom: 82/1697
  63211. }
  63212. },
  63213. back: {
  63214. height: math.unit(5 + 8/12, "feet"),
  63215. weight: math.unit(170, "lb"),
  63216. name: "Back",
  63217. image: {
  63218. source: "./media/characters/abel-delreoux/back.svg",
  63219. extra: 1644/1534,
  63220. bottom: 24/1668
  63221. }
  63222. },
  63223. casual: {
  63224. height: math.unit(5 + 8/12, "feet"),
  63225. weight: math.unit(170, "lb"),
  63226. name: "Casual",
  63227. image: {
  63228. source: "./media/characters/abel-delreoux/casual.svg",
  63229. extra: 1716/1598,
  63230. bottom: 29/1745
  63231. }
  63232. },
  63233. sleepy: {
  63234. height: math.unit(5 + 8/12, "feet"),
  63235. weight: math.unit(170, "lb"),
  63236. name: "Sleepy",
  63237. image: {
  63238. source: "./media/characters/abel-delreoux/sleepy.svg",
  63239. extra: 1649/1573,
  63240. bottom: 22/1671
  63241. }
  63242. },
  63243. fem: {
  63244. height: math.unit(5 + 8/12, "feet"),
  63245. weight: math.unit(170, "lb"),
  63246. name: "Fem",
  63247. image: {
  63248. source: "./media/characters/abel-delreoux/fem.svg",
  63249. extra: 1680/1564,
  63250. bottom: 17/1697
  63251. }
  63252. },
  63253. hand: {
  63254. height: math.unit(0.78, "feet"),
  63255. name: "Hand",
  63256. image: {
  63257. source: "./media/characters/abel-delreoux/hand.svg"
  63258. }
  63259. },
  63260. paw: {
  63261. height: math.unit(0.78, "feet"),
  63262. name: "Paw",
  63263. image: {
  63264. source: "./media/characters/abel-delreoux/paw.svg"
  63265. }
  63266. },
  63267. },
  63268. [
  63269. {
  63270. name: "Normal",
  63271. height: math.unit(5 + 8/12, "feet"),
  63272. default: true
  63273. },
  63274. ]
  63275. ))
  63276. characterMakers.push(() => makeCharacter(
  63277. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63278. {
  63279. front: {
  63280. height: math.unit(6, "feet"),
  63281. weight: math.unit(159, "lb"),
  63282. name: "Front",
  63283. image: {
  63284. source: "./media/characters/meus/front.svg",
  63285. extra: 938/843,
  63286. bottom: 37/975
  63287. }
  63288. },
  63289. back: {
  63290. height: math.unit(6, "feet"),
  63291. weight: math.unit(159, "lb"),
  63292. name: "Back",
  63293. image: {
  63294. source: "./media/characters/meus/back.svg",
  63295. extra: 967/873,
  63296. bottom: 12/979
  63297. }
  63298. },
  63299. },
  63300. [
  63301. {
  63302. name: "Micro",
  63303. height: math.unit(2, "inches")
  63304. },
  63305. {
  63306. name: "Mini",
  63307. height: math.unit(6, "inches")
  63308. },
  63309. {
  63310. name: "Normal",
  63311. height: math.unit(6, "feet"),
  63312. default: true
  63313. },
  63314. {
  63315. name: "Macro",
  63316. height: math.unit(84, "feet")
  63317. },
  63318. ]
  63319. ))
  63320. characterMakers.push(() => makeCharacter(
  63321. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63322. {
  63323. front: {
  63324. height: math.unit(60, "cm"),
  63325. weight: math.unit(18, "kg"),
  63326. name: "Front",
  63327. image: {
  63328. source: "./media/characters/yamato/front.svg",
  63329. extra: 733/688,
  63330. bottom: 29/762
  63331. }
  63332. },
  63333. },
  63334. [
  63335. {
  63336. name: "Micro",
  63337. height: math.unit(6, "cm")
  63338. },
  63339. {
  63340. name: "Normal",
  63341. height: math.unit(60, "cm"),
  63342. default: true
  63343. },
  63344. ]
  63345. ))
  63346. characterMakers.push(() => makeCharacter(
  63347. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63348. {
  63349. front: {
  63350. height: math.unit(9, "feet"),
  63351. weight: math.unit(518, "lb"),
  63352. name: "Front",
  63353. image: {
  63354. source: "./media/characters/barus/front.svg",
  63355. extra: 1877/1795,
  63356. bottom: 55/1932
  63357. }
  63358. },
  63359. },
  63360. [
  63361. {
  63362. name: "Base Height",
  63363. height: math.unit(9, "feet"),
  63364. default: true
  63365. },
  63366. {
  63367. name: "Large",
  63368. height: math.unit(18, "feet")
  63369. },
  63370. {
  63371. name: "Giant",
  63372. height: math.unit(100, "feet")
  63373. },
  63374. {
  63375. name: "Huge",
  63376. height: math.unit(500, "feet")
  63377. },
  63378. {
  63379. name: "Enormous",
  63380. height: math.unit(300, "meters")
  63381. },
  63382. {
  63383. name: "Deity Among Man",
  63384. height: math.unit(3000, "meters")
  63385. },
  63386. ]
  63387. ))
  63388. characterMakers.push(() => makeCharacter(
  63389. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63390. {
  63391. front: {
  63392. height: math.unit(1.7, "meters"),
  63393. name: "Front",
  63394. image: {
  63395. source: "./media/characters/yari/front.svg",
  63396. extra: 1210/1125,
  63397. bottom: 283/1493
  63398. }
  63399. },
  63400. back: {
  63401. height: math.unit(1.7, "meters"),
  63402. name: "Back",
  63403. image: {
  63404. source: "./media/characters/yari/back.svg",
  63405. extra: 1240/1195,
  63406. bottom: 180/1420
  63407. }
  63408. },
  63409. head: {
  63410. height: math.unit(1.26, "feet"),
  63411. name: "Head",
  63412. image: {
  63413. source: "./media/characters/yari/head.svg"
  63414. }
  63415. },
  63416. },
  63417. [
  63418. {
  63419. name: "Nano",
  63420. height: math.unit(0.5, "mm")
  63421. },
  63422. {
  63423. name: "Micro",
  63424. height: math.unit(3, "inches")
  63425. },
  63426. {
  63427. name: "Short",
  63428. height: math.unit(1.5, "meters")
  63429. },
  63430. {
  63431. name: "Norm",
  63432. height: math.unit(1.7, "meters"),
  63433. default: true
  63434. },
  63435. ]
  63436. ))
  63437. characterMakers.push(() => makeCharacter(
  63438. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63439. {
  63440. front: {
  63441. height: math.unit(5 + 2/12, "feet"),
  63442. weight: math.unit(110, "lb"),
  63443. name: "Front",
  63444. image: {
  63445. source: "./media/characters/salem/front.svg",
  63446. extra: 1895/1800,
  63447. bottom: 23/1918
  63448. }
  63449. },
  63450. back: {
  63451. height: math.unit(5 + 2/12, "feet"),
  63452. weight: math.unit(110, "lb"),
  63453. name: "Back",
  63454. image: {
  63455. source: "./media/characters/salem/back.svg",
  63456. extra: 1875/1802,
  63457. bottom: 20/1895
  63458. }
  63459. },
  63460. head: {
  63461. height: math.unit(1, "feet"),
  63462. name: "Head",
  63463. image: {
  63464. source: "./media/characters/salem/head.svg"
  63465. }
  63466. },
  63467. paw: {
  63468. height: math.unit(0.59, "feet"),
  63469. name: "Paw",
  63470. image: {
  63471. source: "./media/characters/salem/paw.svg"
  63472. }
  63473. },
  63474. beans: {
  63475. height: math.unit(0.66, "feet"),
  63476. name: "Beans",
  63477. image: {
  63478. source: "./media/characters/salem/beans.svg"
  63479. }
  63480. },
  63481. eye: {
  63482. height: math.unit(0.224, "feet"),
  63483. name: "Eye",
  63484. image: {
  63485. source: "./media/characters/salem/eye.svg"
  63486. }
  63487. },
  63488. semiferal: {
  63489. height: math.unit(2.3, "feet"),
  63490. name: "Semiferal",
  63491. image: {
  63492. source: "./media/characters/salem/semiferal.svg",
  63493. extra: 914/839,
  63494. bottom: 32/946
  63495. }
  63496. },
  63497. },
  63498. [
  63499. {
  63500. name: "Micro",
  63501. height: math.unit(4, "inches")
  63502. },
  63503. {
  63504. name: "Normal",
  63505. height: math.unit(5 + 2/12, "feet"),
  63506. default: true
  63507. },
  63508. {
  63509. name: "Macro",
  63510. height: math.unit(108, "feet")
  63511. },
  63512. {
  63513. name: "Macro+",
  63514. height: math.unit(1500, "feet")
  63515. },
  63516. ]
  63517. ))
  63518. characterMakers.push(() => makeCharacter(
  63519. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63520. {
  63521. front: {
  63522. height: math.unit(7 + 6/12, "feet"),
  63523. weight: math.unit(600, "kg"),
  63524. preyCapacity: math.unit(10, "people"),
  63525. name: "Front",
  63526. image: {
  63527. source: "./media/characters/kii/front.svg",
  63528. extra: 3296/3087,
  63529. bottom: 130/3426
  63530. }
  63531. },
  63532. },
  63533. [
  63534. {
  63535. name: "Normal",
  63536. height: math.unit(7 + 6/12, "feet"),
  63537. default: true
  63538. },
  63539. ]
  63540. ))
  63541. characterMakers.push(() => makeCharacter(
  63542. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63543. {
  63544. front: {
  63545. height: math.unit(2, "meters"),
  63546. weight: math.unit(200, "lb"),
  63547. name: "Front",
  63548. image: {
  63549. source: "./media/characters/taffy/front.svg",
  63550. extra: 1666/1618,
  63551. bottom: 157/1823
  63552. }
  63553. },
  63554. back: {
  63555. height: math.unit(2, "meters"),
  63556. weight: math.unit(200, "lb"),
  63557. name: "Back",
  63558. image: {
  63559. source: "./media/characters/taffy/back.svg",
  63560. extra: 1635/1583,
  63561. bottom: 153/1788
  63562. }
  63563. },
  63564. },
  63565. [
  63566. {
  63567. name: "Normal",
  63568. height: math.unit(2, "meters"),
  63569. default: true
  63570. },
  63571. ]
  63572. ))
  63573. characterMakers.push(() => makeCharacter(
  63574. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63575. {
  63576. front: {
  63577. height: math.unit(1.55, "meters"),
  63578. weight: math.unit(60, "kg"),
  63579. name: "Front",
  63580. image: {
  63581. source: "./media/characters/barley/front.svg",
  63582. extra: 1520/1340,
  63583. bottom: 47/1567
  63584. }
  63585. },
  63586. back: {
  63587. height: math.unit(1.55, "meters"),
  63588. weight: math.unit(60, "kg"),
  63589. name: "Back",
  63590. image: {
  63591. source: "./media/characters/barley/back.svg",
  63592. extra: 1543/1341,
  63593. bottom: 12/1555
  63594. }
  63595. },
  63596. feet: {
  63597. height: math.unit(2.18, "feet"),
  63598. name: "Feet",
  63599. image: {
  63600. source: "./media/characters/barley/feet.svg"
  63601. }
  63602. },
  63603. },
  63604. [
  63605. {
  63606. name: "Normal",
  63607. height: math.unit(1.55, "meters"),
  63608. default: true
  63609. },
  63610. ]
  63611. ))
  63612. characterMakers.push(() => makeCharacter(
  63613. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63614. {
  63615. dressed: {
  63616. height: math.unit(6, "feet"),
  63617. name: "Dressed",
  63618. image: {
  63619. source: "./media/characters/lydia-lopez/dressed.svg",
  63620. extra: 1319/1277,
  63621. bottom: 90/1409
  63622. }
  63623. },
  63624. nude: {
  63625. height: math.unit(6, "feet"),
  63626. name: "Nude",
  63627. image: {
  63628. source: "./media/characters/lydia-lopez/nude.svg",
  63629. extra: 1319/1277,
  63630. bottom: 90/1409
  63631. }
  63632. },
  63633. },
  63634. [
  63635. {
  63636. name: "Normal",
  63637. height: math.unit(6, "feet"),
  63638. default: true
  63639. },
  63640. {
  63641. name: "Maximum",
  63642. height: math.unit(2101, "feet")
  63643. },
  63644. ]
  63645. ))
  63646. characterMakers.push(() => makeCharacter(
  63647. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63648. {
  63649. front: {
  63650. height: math.unit(5 + 4/12, "feet"),
  63651. weight: math.unit(250, "lb"),
  63652. volume: math.unit(20, "gallons"),
  63653. name: "Front",
  63654. image: {
  63655. source: "./media/characters/kira-slime/front.svg",
  63656. extra: 442/403,
  63657. bottom: 18/460
  63658. }
  63659. },
  63660. frontNsfw: {
  63661. height: math.unit(5 + 4/12, "feet"),
  63662. weight: math.unit(250, "lb"),
  63663. volume: math.unit(20, "gallons"),
  63664. name: "Front (NSFW)",
  63665. image: {
  63666. source: "./media/characters/kira-slime/front-nsfw.svg",
  63667. extra: 442/403,
  63668. bottom: 18/460
  63669. }
  63670. },
  63671. },
  63672. [
  63673. {
  63674. name: "Droplet",
  63675. height: math.unit(0.0464452, "feet")
  63676. },
  63677. {
  63678. name: "Pint",
  63679. height: math.unit(0.9824, "feet")
  63680. },
  63681. {
  63682. name: "Bucket",
  63683. height: math.unit(2.83, "feet")
  63684. },
  63685. {
  63686. name: "Normal",
  63687. height: math.unit(5 + 4/12, "feet"),
  63688. default: true
  63689. },
  63690. {
  63691. name: "Tub",
  63692. height: math.unit(8.46614, "feet")
  63693. },
  63694. {
  63695. name: "Pool",
  63696. height: math.unit(31.1895, "feet")
  63697. },
  63698. {
  63699. name: "Pond",
  63700. height: math.unit(170.349, "feet")
  63701. },
  63702. {
  63703. name: "Lake",
  63704. height: math.unit(289334, "feet")
  63705. },
  63706. {
  63707. name: "Ocean",
  63708. height: math.unit(1.11940e+7, "feet")
  63709. },
  63710. ]
  63711. ))
  63712. characterMakers.push(() => makeCharacter(
  63713. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  63714. {
  63715. front: {
  63716. height: math.unit(5 + 6/12, "feet"),
  63717. weight: math.unit(120, "lb"),
  63718. name: "Front",
  63719. image: {
  63720. source: "./media/characters/holiday/front.svg",
  63721. extra: 456/403,
  63722. bottom: 4/460
  63723. }
  63724. },
  63725. back: {
  63726. height: math.unit(5 + 6/12, "feet"),
  63727. weight: math.unit(120, "lb"),
  63728. name: "Back",
  63729. image: {
  63730. source: "./media/characters/holiday/back.svg",
  63731. extra: 450/404,
  63732. bottom: 12/462
  63733. }
  63734. },
  63735. head: {
  63736. height: math.unit(2.3, "feet"),
  63737. name: "Head",
  63738. image: {
  63739. source: "./media/characters/holiday/head.svg"
  63740. }
  63741. },
  63742. },
  63743. [
  63744. {
  63745. name: "Normal",
  63746. height: math.unit(5 + 6/12, "feet"),
  63747. default: true
  63748. },
  63749. {
  63750. name: "Macro",
  63751. height: math.unit(6574.25, "feet")
  63752. },
  63753. ]
  63754. ))
  63755. characterMakers.push(() => makeCharacter(
  63756. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  63757. {
  63758. front: {
  63759. height: math.unit(6 + 2/12, "feet"),
  63760. weight: math.unit(200, "lb"),
  63761. name: "Front",
  63762. image: {
  63763. source: "./media/characters/camina/front.svg",
  63764. extra: 1048/985,
  63765. bottom: 30/1078
  63766. }
  63767. },
  63768. },
  63769. [
  63770. {
  63771. name: "Normal",
  63772. height: math.unit(6 + 2/12, "feet"),
  63773. default: true
  63774. },
  63775. ]
  63776. ))
  63777. characterMakers.push(() => makeCharacter(
  63778. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  63779. {
  63780. front: {
  63781. height: math.unit(30, "cm"),
  63782. weight: math.unit(420, "grams"),
  63783. name: "Front",
  63784. image: {
  63785. source: "./media/characters/smuck/front.svg",
  63786. extra: 379/345,
  63787. bottom: 36/415
  63788. }
  63789. },
  63790. },
  63791. [
  63792. {
  63793. name: "Smuck-Sized",
  63794. height: math.unit(30, "cm"),
  63795. default: true
  63796. },
  63797. ]
  63798. ))
  63799. characterMakers.push(() => makeCharacter(
  63800. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  63801. {
  63802. frontSfw: {
  63803. height: math.unit(10, "feet"),
  63804. weight: math.unit(1000, "kg"),
  63805. preyCapacity: math.unit(2, "people"),
  63806. name: "Front (SFW)",
  63807. image: {
  63808. source: "./media/characters/bylur/front-sfw.svg",
  63809. extra: 419/343,
  63810. bottom: 3/422
  63811. },
  63812. default: true
  63813. },
  63814. frontSheath: {
  63815. height: math.unit(10, "feet"),
  63816. weight: math.unit(1000, "kg"),
  63817. preyCapacity: math.unit(2, "people"),
  63818. name: "Front (Sheath)",
  63819. image: {
  63820. source: "./media/characters/bylur/front-sheath.svg",
  63821. extra: 419/343,
  63822. bottom: 3/422
  63823. }
  63824. },
  63825. frontErect: {
  63826. height: math.unit(10, "feet"),
  63827. weight: math.unit(1000, "kg"),
  63828. preyCapacity: math.unit(2, "people"),
  63829. name: "Front (Erect)",
  63830. image: {
  63831. source: "./media/characters/bylur/front-erect.svg",
  63832. extra: 419/343,
  63833. bottom: 3/422
  63834. }
  63835. },
  63836. back: {
  63837. height: math.unit(10, "feet"),
  63838. weight: math.unit(1000, "kg"),
  63839. preyCapacity: math.unit(2, "people"),
  63840. name: "Back",
  63841. image: {
  63842. source: "./media/characters/bylur/back.svg",
  63843. extra: 392/315,
  63844. bottom: 3/395
  63845. }
  63846. },
  63847. maw: {
  63848. height: math.unit(3.65, "feet"),
  63849. name: "Maw",
  63850. image: {
  63851. source: "./media/characters/bylur/maw.svg"
  63852. }
  63853. },
  63854. },
  63855. [
  63856. {
  63857. name: "Slightly Human Sized",
  63858. height: math.unit(10, "feet")
  63859. },
  63860. {
  63861. name: "Normal",
  63862. height: math.unit(35, "feet"),
  63863. default: true
  63864. },
  63865. {
  63866. name: "Macro",
  63867. height: math.unit(130, "feet")
  63868. },
  63869. ]
  63870. ))
  63871. characterMakers.push(() => makeCharacter(
  63872. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  63873. {
  63874. frontNsfw: {
  63875. height: math.unit(6, "feet"),
  63876. weight: math.unit(250, "lb"),
  63877. preyCapacity: math.unit(0.05, "people"),
  63878. name: "Front (NSFW)",
  63879. image: {
  63880. source: "./media/characters/oarven/front-nsfw.svg",
  63881. extra: 1795/1783,
  63882. bottom: 142/1937
  63883. }
  63884. },
  63885. frontSfw: {
  63886. height: math.unit(6, "feet"),
  63887. weight: math.unit(250, "lb"),
  63888. preyCapacity: math.unit(0.05, "people"),
  63889. name: "Front (SFW)",
  63890. image: {
  63891. source: "./media/characters/oarven/front-sfw.svg",
  63892. extra: 1795/1783,
  63893. bottom: 142/1937
  63894. }
  63895. },
  63896. },
  63897. [
  63898. {
  63899. name: "Megamacro",
  63900. height: math.unit(5, "miles"),
  63901. default: true
  63902. },
  63903. {
  63904. name: "Maximum Height",
  63905. height: math.unit(5, "AUs")
  63906. },
  63907. ]
  63908. ))
  63909. characterMakers.push(() => makeCharacter(
  63910. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  63911. {
  63912. side: {
  63913. height: math.unit(1065, "meters"),
  63914. weight: math.unit(1e12, "kg"),
  63915. volume: math.unit(3265000000, "m^3"),
  63916. name: "Side",
  63917. image: {
  63918. source: "./media/characters/solidarity/side.svg"
  63919. }
  63920. },
  63921. front: {
  63922. height: math.unit(1065, "meters"),
  63923. weight: math.unit(3265000000000, "kg"),
  63924. volume: math.unit(3265000000, "m^3"),
  63925. name: "Front",
  63926. image: {
  63927. source: "./media/characters/solidarity/front.svg"
  63928. }
  63929. },
  63930. top: {
  63931. height: math.unit(5823, "meters"),
  63932. weight: math.unit(3265000000000, "kg"),
  63933. volume: math.unit(3265000000, "m^3"),
  63934. name: "Top",
  63935. image: {
  63936. source: "./media/characters/solidarity/top.svg"
  63937. }
  63938. },
  63939. },
  63940. [
  63941. {
  63942. name: "Normal",
  63943. height: math.unit(1065, "meters"),
  63944. default: true
  63945. },
  63946. ]
  63947. ))
  63948. characterMakers.push(() => makeCharacter(
  63949. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  63950. {
  63951. side: {
  63952. height: math.unit(18 + 4/12, "feet"),
  63953. weight: math.unit(13000, "kg"),
  63954. name: "Side",
  63955. image: {
  63956. source: "./media/characters/ani'szi/side.svg",
  63957. extra: 468/459,
  63958. bottom: 60/528
  63959. }
  63960. },
  63961. head: {
  63962. height: math.unit(4.8, "feet"),
  63963. name: "Head",
  63964. image: {
  63965. source: "./media/characters/ani'szi/head.svg"
  63966. }
  63967. },
  63968. jaws: {
  63969. height: math.unit(2.25, "feet"),
  63970. name: "Jaws",
  63971. image: {
  63972. source: "./media/characters/ani'szi/jaws.svg"
  63973. }
  63974. },
  63975. bust: {
  63976. height: math.unit(8.9, "feet"),
  63977. name: "Bust",
  63978. image: {
  63979. source: "./media/characters/ani'szi/bust.svg"
  63980. }
  63981. },
  63982. back: {
  63983. height: math.unit(13.53, "feet"),
  63984. name: "Back",
  63985. image: {
  63986. source: "./media/characters/ani'szi/back.svg"
  63987. }
  63988. },
  63989. eye: {
  63990. height: math.unit(0.44, "feet"),
  63991. name: "Eye",
  63992. image: {
  63993. source: "./media/characters/ani'szi/eye.svg"
  63994. }
  63995. },
  63996. },
  63997. [
  63998. {
  63999. name: "Normal",
  64000. height: math.unit(18 + 4/12, "feet"),
  64001. default: true
  64002. },
  64003. ]
  64004. ))
  64005. characterMakers.push(() => makeCharacter(
  64006. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64007. {
  64008. front: {
  64009. height: math.unit(7 + 6/12, "feet"),
  64010. weight: math.unit(300, "lb"),
  64011. name: "Front",
  64012. image: {
  64013. source: "./media/characters/rain/front.svg",
  64014. extra: 2955/2698,
  64015. bottom: 235/3190
  64016. }
  64017. },
  64018. dressed: {
  64019. height: math.unit(7 + 6/12, "feet"),
  64020. weight: math.unit(300, "lb"),
  64021. name: "Dressed",
  64022. image: {
  64023. source: "./media/characters/rain/dressed.svg",
  64024. extra: 2783/2572,
  64025. bottom: 430/3213
  64026. }
  64027. },
  64028. },
  64029. [
  64030. {
  64031. name: "Normal",
  64032. height: math.unit(7 + 6/12, "feet"),
  64033. default: true
  64034. },
  64035. {
  64036. name: "Macro",
  64037. height: math.unit(200, "feet")
  64038. },
  64039. {
  64040. name: "Macro+",
  64041. height: math.unit(500, "feet")
  64042. },
  64043. {
  64044. name: "Megamacro",
  64045. height: math.unit(5, "miles")
  64046. },
  64047. ]
  64048. ))
  64049. characterMakers.push(() => makeCharacter(
  64050. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64051. {
  64052. taur_side: {
  64053. height: math.unit(3, "meters"),
  64054. name: "Side",
  64055. image: {
  64056. source: "./media/characters/anise/taur-side.svg",
  64057. extra: 1833/926,
  64058. bottom: 134/1967
  64059. },
  64060. form: "taur",
  64061. default: true
  64062. },
  64063. feral_side: {
  64064. height: math.unit(3, "meters"),
  64065. name: "Side",
  64066. image: {
  64067. source: "./media/characters/anise/feral-side.svg",
  64068. extra: 681/349,
  64069. bottom: 26/707
  64070. },
  64071. form: "feral"
  64072. },
  64073. },
  64074. [
  64075. {
  64076. name: "Normal",
  64077. height: math.unit(3, "meters"),
  64078. default: true,
  64079. allForms: true
  64080. },
  64081. ],
  64082. {
  64083. "taur": {
  64084. name: "Taur",
  64085. default: true
  64086. },
  64087. "feral": {
  64088. name: "Feral",
  64089. },
  64090. }
  64091. ))
  64092. characterMakers.push(() => makeCharacter(
  64093. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64094. {
  64095. front: {
  64096. height: math.unit(1.9, "meters"),
  64097. weight: math.unit(75, "kg"),
  64098. name: "Front",
  64099. image: {
  64100. source: "./media/characters/sarina/front.svg",
  64101. extra: 1275/1200,
  64102. bottom: 49/1324
  64103. }
  64104. },
  64105. back: {
  64106. height: math.unit(1.9, "meters"),
  64107. weight: math.unit(75, "kg"),
  64108. name: "Back",
  64109. image: {
  64110. source: "./media/characters/sarina/back.svg",
  64111. extra: 1279/1209,
  64112. bottom: 14/1293
  64113. }
  64114. },
  64115. dressed: {
  64116. height: math.unit(1.9, "meters"),
  64117. weight: math.unit(75, "kg"),
  64118. name: "Dressed",
  64119. image: {
  64120. source: "./media/characters/sarina/dressed.svg",
  64121. extra: 1256/1187,
  64122. bottom: 56/1312
  64123. }
  64124. },
  64125. paw: {
  64126. height: math.unit(0.57, "feet"),
  64127. name: "Paw",
  64128. image: {
  64129. source: "./media/characters/sarina/paw.svg"
  64130. }
  64131. },
  64132. toering: {
  64133. height: math.unit(0.27, "feet"),
  64134. name: "Toering",
  64135. image: {
  64136. source: "./media/characters/sarina/toering.svg"
  64137. }
  64138. },
  64139. },
  64140. [
  64141. {
  64142. name: "Incognito",
  64143. height: math.unit(1.9, "meters")
  64144. },
  64145. {
  64146. name: "Home Size",
  64147. height: math.unit(160, "meters"),
  64148. default: true
  64149. },
  64150. {
  64151. name: "Mega",
  64152. height: math.unit(50, "km")
  64153. },
  64154. {
  64155. name: "Small Giga",
  64156. height: math.unit(250, "km")
  64157. },
  64158. {
  64159. name: "Giga (Preferred Size)",
  64160. height: math.unit(3000, "km")
  64161. },
  64162. {
  64163. name: "Terra",
  64164. height: math.unit(40000, "km")
  64165. },
  64166. {
  64167. name: "Terra+",
  64168. height: math.unit(400000, "km")
  64169. },
  64170. {
  64171. name: "Solar",
  64172. height: math.unit(35e6, "km")
  64173. },
  64174. {
  64175. name: "Galactic",
  64176. height: math.unit(648106, "parsecs")
  64177. },
  64178. {
  64179. name: "Universal",
  64180. height: math.unit(7, "universes")
  64181. },
  64182. {
  64183. name: "Universal+",
  64184. height: math.unit(30, "universes")
  64185. },
  64186. ]
  64187. ))
  64188. //characters
  64189. function makeCharacters() {
  64190. const results = [];
  64191. characterMakers.forEach(character => {
  64192. results.push(character());
  64193. });
  64194. return results;
  64195. }