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.
 
 
 

65694 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. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. }
  2415. //species
  2416. function getSpeciesInfo(speciesList) {
  2417. let result = new Set();
  2418. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2419. result.add(entry)
  2420. });
  2421. return Array.from(result);
  2422. };
  2423. function getSpeciesInfoHelper(species) {
  2424. if (!speciesData[species]) {
  2425. console.warn(species + " doesn't exist");
  2426. return [];
  2427. }
  2428. if (speciesData[species].parents) {
  2429. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2430. } else {
  2431. return [species];
  2432. }
  2433. }
  2434. characterMakers.push(() => makeCharacter(
  2435. {
  2436. name: "Fen",
  2437. species: ["crux"],
  2438. description: {
  2439. title: "Bio",
  2440. text: "Very furry. Sheds on everything."
  2441. },
  2442. tags: [
  2443. "anthro",
  2444. "goo"
  2445. ]
  2446. },
  2447. {
  2448. front: {
  2449. height: math.unit(12, "feet"),
  2450. weight: math.unit(2400, "lb"),
  2451. preyCapacity: math.unit(1, "people"),
  2452. name: "Front",
  2453. image: {
  2454. source: "./media/characters/fen/front.svg",
  2455. extra: 1804/1562,
  2456. bottom: 205/2009
  2457. },
  2458. extraAttributes: {
  2459. pawSize: {
  2460. name: "Paw Size",
  2461. power: 2,
  2462. type: "area",
  2463. base: math.unit(0.35, "m^2")
  2464. }
  2465. }
  2466. },
  2467. diving: {
  2468. height: math.unit(4.9, "meters"),
  2469. weight: math.unit(2400, "lb"),
  2470. name: "Diving",
  2471. image: {
  2472. source: "./media/characters/fen/diving.svg"
  2473. }
  2474. },
  2475. sleeby: {
  2476. height: math.unit(3.45, "meters"),
  2477. weight: math.unit(2400, "lb"),
  2478. name: "Sleeby",
  2479. image: {
  2480. source: "./media/characters/fen/sleeby.svg"
  2481. }
  2482. },
  2483. goo: {
  2484. height: math.unit(12, "feet"),
  2485. weight: math.unit(3600, "lb"),
  2486. volume: math.unit(1000, "liters"),
  2487. preyCapacity: math.unit(6, "people"),
  2488. name: "Goo",
  2489. image: {
  2490. source: "./media/characters/fen/goo.svg",
  2491. extra: 1307/1071,
  2492. bottom: 134/1441
  2493. }
  2494. },
  2495. horror: {
  2496. height: math.unit(13.6, "feet"),
  2497. weight: math.unit(2400, "lb"),
  2498. preyCapacity: math.unit(1, "people"),
  2499. name: "Horror",
  2500. image: {
  2501. source: "./media/characters/fen/horror.svg",
  2502. extra: 893/797,
  2503. bottom: 0/893
  2504. }
  2505. },
  2506. gooNsfw: {
  2507. height: math.unit(12, "feet"),
  2508. weight: math.unit(3750, "lb"),
  2509. volume: math.unit(1000, "liters"),
  2510. preyCapacity: math.unit(6, "people"),
  2511. name: "Goo (NSFW)",
  2512. image: {
  2513. source: "./media/characters/fen/goo-nsfw.svg",
  2514. extra: 1875/1734,
  2515. bottom: 122/1997
  2516. }
  2517. },
  2518. maw: {
  2519. height: math.unit(5.03, "feet"),
  2520. name: "Maw",
  2521. image: {
  2522. source: "./media/characters/fen/maw.svg"
  2523. }
  2524. },
  2525. gooCeiling: {
  2526. height: math.unit(6.6, "feet"),
  2527. weight: math.unit(3000, "lb"),
  2528. volume: math.unit(1000, "liters"),
  2529. preyCapacity: math.unit(6, "people"),
  2530. name: "Maw (Goo)",
  2531. image: {
  2532. source: "./media/characters/fen/goo-maw.svg"
  2533. }
  2534. },
  2535. paw: {
  2536. height: math.unit(3.77, "feet"),
  2537. name: "Paw",
  2538. image: {
  2539. source: "./media/characters/fen/paw.svg"
  2540. },
  2541. extraAttributes: {
  2542. "toeSize": {
  2543. name: "Toe Size",
  2544. power: 2,
  2545. type: "area",
  2546. base: math.unit(0.02875, "m^2")
  2547. },
  2548. "pawSize": {
  2549. name: "Paw Size",
  2550. power: 2,
  2551. type: "area",
  2552. base: math.unit(0.378, "m^2")
  2553. },
  2554. }
  2555. },
  2556. tail: {
  2557. height: math.unit(12.1, "feet"),
  2558. name: "Tail",
  2559. image: {
  2560. source: "./media/characters/fen/tail.svg"
  2561. }
  2562. },
  2563. tailFull: {
  2564. height: math.unit(12.1, "feet"),
  2565. name: "Full Tail",
  2566. image: {
  2567. source: "./media/characters/fen/tail-full.svg"
  2568. }
  2569. },
  2570. back: {
  2571. height: math.unit(12, "feet"),
  2572. weight: math.unit(2400, "lb"),
  2573. name: "Back",
  2574. image: {
  2575. source: "./media/characters/fen/back.svg",
  2576. },
  2577. info: {
  2578. description: {
  2579. mode: "append",
  2580. text: "\n\nHe is not currently looking at you."
  2581. }
  2582. }
  2583. },
  2584. full: {
  2585. height: math.unit(1.85, "meter"),
  2586. weight: math.unit(3200, "lb"),
  2587. preyCapacity: math.unit(3, "people"),
  2588. name: "Full",
  2589. image: {
  2590. source: "./media/characters/fen/full.svg",
  2591. extra: 1133/859,
  2592. bottom: 145/1278
  2593. },
  2594. info: {
  2595. description: {
  2596. mode: "append",
  2597. text: "\n\nMunch."
  2598. }
  2599. }
  2600. },
  2601. gooLounging: {
  2602. height: math.unit(4.53, "feet"),
  2603. weight: math.unit(3000, "lb"),
  2604. preyCapacity: math.unit(6, "people"),
  2605. name: "Goo (Lounging)",
  2606. image: {
  2607. source: "./media/characters/fen/goo-lounging.svg",
  2608. bottom: 116 / 613
  2609. }
  2610. },
  2611. lounging: {
  2612. height: math.unit(10.52, "feet"),
  2613. weight: math.unit(2400, "lb"),
  2614. name: "Lounging",
  2615. image: {
  2616. source: "./media/characters/fen/lounging.svg"
  2617. }
  2618. },
  2619. },
  2620. [
  2621. {
  2622. name: "Small",
  2623. height: math.unit(2.2428, "meter")
  2624. },
  2625. {
  2626. name: "Normal",
  2627. height: math.unit(12, "feet"),
  2628. default: true,
  2629. },
  2630. {
  2631. name: "Big",
  2632. height: math.unit(20, "feet")
  2633. },
  2634. {
  2635. name: "Minimacro",
  2636. height: math.unit(40, "feet"),
  2637. info: {
  2638. description: {
  2639. mode: "append",
  2640. text: "\n\nTOO DAMN BIG"
  2641. }
  2642. }
  2643. },
  2644. {
  2645. name: "Macro",
  2646. height: math.unit(100, "feet"),
  2647. info: {
  2648. description: {
  2649. mode: "append",
  2650. text: "\n\nTOO DAMN BIG"
  2651. }
  2652. }
  2653. },
  2654. {
  2655. name: "Megamacro",
  2656. height: math.unit(2, "miles")
  2657. },
  2658. {
  2659. name: "Gigamacro",
  2660. height: math.unit(10, "earths")
  2661. },
  2662. ]
  2663. ))
  2664. characterMakers.push(() => makeCharacter(
  2665. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2666. {
  2667. front: {
  2668. height: math.unit(183, "cm"),
  2669. weight: math.unit(80, "kg"),
  2670. name: "Front",
  2671. image: {
  2672. source: "./media/characters/sofia-fluttertail/front.svg",
  2673. bottom: 0.01,
  2674. extra: 2154 / 2081
  2675. }
  2676. },
  2677. frontAlt: {
  2678. height: math.unit(183, "cm"),
  2679. weight: math.unit(80, "kg"),
  2680. name: "Front (alt)",
  2681. image: {
  2682. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2683. }
  2684. },
  2685. back: {
  2686. height: math.unit(183, "cm"),
  2687. weight: math.unit(80, "kg"),
  2688. name: "Back",
  2689. image: {
  2690. source: "./media/characters/sofia-fluttertail/back.svg"
  2691. }
  2692. },
  2693. kneeling: {
  2694. height: math.unit(125, "cm"),
  2695. weight: math.unit(80, "kg"),
  2696. name: "Kneeling",
  2697. image: {
  2698. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2699. extra: 1033 / 977,
  2700. bottom: 23.7 / 1057
  2701. }
  2702. },
  2703. maw: {
  2704. height: math.unit(183 / 5, "cm"),
  2705. name: "Maw",
  2706. image: {
  2707. source: "./media/characters/sofia-fluttertail/maw.svg"
  2708. }
  2709. },
  2710. mawcloseup: {
  2711. height: math.unit(183 / 5 * 0.41, "cm"),
  2712. name: "Maw (Closeup)",
  2713. image: {
  2714. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2715. }
  2716. },
  2717. paws: {
  2718. height: math.unit(1.17, "feet"),
  2719. name: "Paws",
  2720. image: {
  2721. source: "./media/characters/sofia-fluttertail/paws.svg",
  2722. extra: 851 / 851,
  2723. bottom: 17 / 868
  2724. }
  2725. },
  2726. },
  2727. [
  2728. {
  2729. name: "Normal",
  2730. height: math.unit(1.83, "meter")
  2731. },
  2732. {
  2733. name: "Size Thief",
  2734. height: math.unit(18, "feet")
  2735. },
  2736. {
  2737. name: "50 Foot Collie",
  2738. height: math.unit(50, "feet")
  2739. },
  2740. {
  2741. name: "Macro",
  2742. height: math.unit(96, "feet"),
  2743. default: true
  2744. },
  2745. {
  2746. name: "Megamerger",
  2747. height: math.unit(650, "feet")
  2748. },
  2749. ]
  2750. ))
  2751. characterMakers.push(() => makeCharacter(
  2752. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2753. {
  2754. front: {
  2755. height: math.unit(7, "feet"),
  2756. weight: math.unit(100, "kg"),
  2757. name: "Front",
  2758. image: {
  2759. source: "./media/characters/march/front.svg",
  2760. extra: 1992/1851,
  2761. bottom: 39/2031
  2762. }
  2763. },
  2764. foot: {
  2765. height: math.unit(0.9, "feet"),
  2766. name: "Foot",
  2767. image: {
  2768. source: "./media/characters/march/foot.svg"
  2769. }
  2770. },
  2771. },
  2772. [
  2773. {
  2774. name: "Normal",
  2775. height: math.unit(7.9, "feet")
  2776. },
  2777. {
  2778. name: "Macro",
  2779. height: math.unit(220, "meters")
  2780. },
  2781. {
  2782. name: "Megamacro",
  2783. height: math.unit(2.98, "km"),
  2784. default: true
  2785. },
  2786. {
  2787. name: "Gigamacro",
  2788. height: math.unit(15963, "km")
  2789. },
  2790. {
  2791. name: "Teramacro",
  2792. height: math.unit(2980000000, "km")
  2793. },
  2794. {
  2795. name: "Examacro",
  2796. height: math.unit(250, "parsecs")
  2797. },
  2798. ]
  2799. ))
  2800. characterMakers.push(() => makeCharacter(
  2801. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2802. {
  2803. front: {
  2804. height: math.unit(6, "feet"),
  2805. weight: math.unit(60, "kg"),
  2806. name: "Front",
  2807. image: {
  2808. source: "./media/characters/noir/front.svg",
  2809. extra: 1,
  2810. bottom: 0.032
  2811. }
  2812. },
  2813. },
  2814. [
  2815. {
  2816. name: "Normal",
  2817. height: math.unit(6.6, "feet")
  2818. },
  2819. {
  2820. name: "Macro",
  2821. height: math.unit(500, "feet")
  2822. },
  2823. {
  2824. name: "Megamacro",
  2825. height: math.unit(2.5, "km"),
  2826. default: true
  2827. },
  2828. {
  2829. name: "Gigamacro",
  2830. height: math.unit(22500, "km")
  2831. },
  2832. {
  2833. name: "Teramacro",
  2834. height: math.unit(2500000000, "km")
  2835. },
  2836. {
  2837. name: "Examacro",
  2838. height: math.unit(200, "parsecs")
  2839. },
  2840. ]
  2841. ))
  2842. characterMakers.push(() => makeCharacter(
  2843. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2844. {
  2845. front: {
  2846. height: math.unit(7, "feet"),
  2847. weight: math.unit(100, "kg"),
  2848. name: "Front",
  2849. image: {
  2850. source: "./media/characters/okuri/front.svg",
  2851. extra: 739/665,
  2852. bottom: 39/778
  2853. }
  2854. },
  2855. back: {
  2856. height: math.unit(7, "feet"),
  2857. weight: math.unit(100, "kg"),
  2858. name: "Back",
  2859. image: {
  2860. source: "./media/characters/okuri/back.svg",
  2861. extra: 734/653,
  2862. bottom: 13/747
  2863. }
  2864. },
  2865. sitting: {
  2866. height: math.unit(2.95, "feet"),
  2867. weight: math.unit(100, "kg"),
  2868. name: "Sitting",
  2869. image: {
  2870. source: "./media/characters/okuri/sitting.svg",
  2871. extra: 370/318,
  2872. bottom: 99/469
  2873. }
  2874. },
  2875. },
  2876. [
  2877. {
  2878. name: "Smallest",
  2879. height: math.unit(5 + 2/12, "feet")
  2880. },
  2881. {
  2882. name: "Smaller",
  2883. height: math.unit(300, "feet")
  2884. },
  2885. {
  2886. name: "Small",
  2887. height: math.unit(1000, "feet")
  2888. },
  2889. {
  2890. name: "Macro",
  2891. height: math.unit(1, "mile")
  2892. },
  2893. {
  2894. name: "Mega Macro (Small)",
  2895. height: math.unit(20, "km")
  2896. },
  2897. {
  2898. name: "Mega Macro (Large)",
  2899. height: math.unit(600, "km")
  2900. },
  2901. {
  2902. name: "Giga Macro",
  2903. height: math.unit(10000, "km")
  2904. },
  2905. {
  2906. name: "Normal",
  2907. height: math.unit(577560, "km"),
  2908. default: true
  2909. },
  2910. {
  2911. name: "Large",
  2912. height: math.unit(4, "galaxies")
  2913. },
  2914. {
  2915. name: "Largest",
  2916. height: math.unit(15, "multiverses")
  2917. },
  2918. ]
  2919. ))
  2920. characterMakers.push(() => makeCharacter(
  2921. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2922. {
  2923. front: {
  2924. height: math.unit(7, "feet"),
  2925. weight: math.unit(100, "kg"),
  2926. name: "Front",
  2927. image: {
  2928. source: "./media/characters/manny/front.svg",
  2929. extra: 1,
  2930. bottom: 0.06
  2931. }
  2932. },
  2933. back: {
  2934. height: math.unit(7, "feet"),
  2935. weight: math.unit(100, "kg"),
  2936. name: "Back",
  2937. image: {
  2938. source: "./media/characters/manny/back.svg",
  2939. extra: 1,
  2940. bottom: 0.014
  2941. }
  2942. },
  2943. },
  2944. [
  2945. {
  2946. name: "Normal",
  2947. height: math.unit(7, "feet"),
  2948. },
  2949. {
  2950. name: "Macro",
  2951. height: math.unit(78, "feet"),
  2952. default: true
  2953. },
  2954. {
  2955. name: "Macro+",
  2956. height: math.unit(300, "meters")
  2957. },
  2958. {
  2959. name: "Macro++",
  2960. height: math.unit(2400, "meters")
  2961. },
  2962. {
  2963. name: "Megamacro",
  2964. height: math.unit(5167, "meters")
  2965. },
  2966. {
  2967. name: "Gigamacro",
  2968. height: math.unit(41769, "miles")
  2969. },
  2970. ]
  2971. ))
  2972. characterMakers.push(() => makeCharacter(
  2973. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2974. {
  2975. front: {
  2976. height: math.unit(7, "feet"),
  2977. weight: math.unit(100, "kg"),
  2978. name: "Front",
  2979. image: {
  2980. source: "./media/characters/adake/front-1.svg"
  2981. }
  2982. },
  2983. frontAlt: {
  2984. height: math.unit(7, "feet"),
  2985. weight: math.unit(100, "kg"),
  2986. name: "Front (Alt)",
  2987. image: {
  2988. source: "./media/characters/adake/front-2.svg",
  2989. extra: 1,
  2990. bottom: 0.01
  2991. }
  2992. },
  2993. back: {
  2994. height: math.unit(7, "feet"),
  2995. weight: math.unit(100, "kg"),
  2996. name: "Back",
  2997. image: {
  2998. source: "./media/characters/adake/back.svg",
  2999. }
  3000. },
  3001. kneel: {
  3002. height: math.unit(5.385, "feet"),
  3003. weight: math.unit(100, "kg"),
  3004. name: "Kneeling",
  3005. image: {
  3006. source: "./media/characters/adake/kneel.svg",
  3007. bottom: 0.052
  3008. }
  3009. },
  3010. },
  3011. [
  3012. {
  3013. name: "Normal",
  3014. height: math.unit(7, "feet"),
  3015. },
  3016. {
  3017. name: "Macro",
  3018. height: math.unit(78, "feet"),
  3019. default: true
  3020. },
  3021. {
  3022. name: "Macro+",
  3023. height: math.unit(300, "meters")
  3024. },
  3025. {
  3026. name: "Macro++",
  3027. height: math.unit(2400, "meters")
  3028. },
  3029. {
  3030. name: "Megamacro",
  3031. height: math.unit(5167, "meters")
  3032. },
  3033. {
  3034. name: "Gigamacro",
  3035. height: math.unit(41769, "miles")
  3036. },
  3037. ]
  3038. ))
  3039. characterMakers.push(() => makeCharacter(
  3040. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3041. {
  3042. front: {
  3043. height: math.unit(1.65, "meters"),
  3044. weight: math.unit(50, "kg"),
  3045. name: "Front",
  3046. image: {
  3047. source: "./media/characters/elijah/front.svg",
  3048. extra: 858 / 830,
  3049. bottom: 95.5 / 953.8559
  3050. }
  3051. },
  3052. back: {
  3053. height: math.unit(1.65, "meters"),
  3054. weight: math.unit(50, "kg"),
  3055. name: "Back",
  3056. image: {
  3057. source: "./media/characters/elijah/back.svg",
  3058. extra: 895 / 850,
  3059. bottom: 5.3 / 897.956
  3060. }
  3061. },
  3062. frontNsfw: {
  3063. height: math.unit(1.65, "meters"),
  3064. weight: math.unit(50, "kg"),
  3065. name: "Front (NSFW)",
  3066. image: {
  3067. source: "./media/characters/elijah/front-nsfw.svg",
  3068. extra: 858 / 830,
  3069. bottom: 95.5 / 953.8559
  3070. }
  3071. },
  3072. backNsfw: {
  3073. height: math.unit(1.65, "meters"),
  3074. weight: math.unit(50, "kg"),
  3075. name: "Back (NSFW)",
  3076. image: {
  3077. source: "./media/characters/elijah/back-nsfw.svg",
  3078. extra: 895 / 850,
  3079. bottom: 5.3 / 897.956
  3080. }
  3081. },
  3082. dick: {
  3083. height: math.unit(1, "feet"),
  3084. name: "Dick",
  3085. image: {
  3086. source: "./media/characters/elijah/dick.svg"
  3087. }
  3088. },
  3089. beakOpen: {
  3090. height: math.unit(1.25, "feet"),
  3091. name: "Beak (Open)",
  3092. image: {
  3093. source: "./media/characters/elijah/beak-open.svg"
  3094. }
  3095. },
  3096. beakShut: {
  3097. height: math.unit(1.25, "feet"),
  3098. name: "Beak (Shut)",
  3099. image: {
  3100. source: "./media/characters/elijah/beak-shut.svg"
  3101. }
  3102. },
  3103. footFlexing: {
  3104. height: math.unit(1.61, "feet"),
  3105. name: "Foot (Flexing)",
  3106. image: {
  3107. source: "./media/characters/elijah/foot-flexing.svg"
  3108. }
  3109. },
  3110. footStepping: {
  3111. height: math.unit(1.44, "feet"),
  3112. name: "Foot (Stepping)",
  3113. image: {
  3114. source: "./media/characters/elijah/foot-stepping.svg"
  3115. }
  3116. },
  3117. plantigradeLeg: {
  3118. height: math.unit(2.34, "feet"),
  3119. name: "Plantigrade Leg",
  3120. image: {
  3121. source: "./media/characters/elijah/plantigrade-leg.svg"
  3122. }
  3123. },
  3124. plantigradeFootLeft: {
  3125. height: math.unit(0.9, "feet"),
  3126. name: "Plantigrade Foot (Left)",
  3127. image: {
  3128. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3129. }
  3130. },
  3131. plantigradeFootRight: {
  3132. height: math.unit(0.9, "feet"),
  3133. name: "Plantigrade Foot (Right)",
  3134. image: {
  3135. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3136. }
  3137. },
  3138. },
  3139. [
  3140. {
  3141. name: "Normal",
  3142. height: math.unit(1.65, "meters")
  3143. },
  3144. {
  3145. name: "Macro",
  3146. height: math.unit(55, "meters"),
  3147. default: true
  3148. },
  3149. {
  3150. name: "Macro+",
  3151. height: math.unit(105, "meters")
  3152. },
  3153. ]
  3154. ))
  3155. characterMakers.push(() => makeCharacter(
  3156. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3157. {
  3158. front: {
  3159. height: math.unit(7 + 2/12, "feet"),
  3160. weight: math.unit(320, "kg"),
  3161. preyCapacity: math.unit(0.276549935, "people"),
  3162. name: "Front",
  3163. image: {
  3164. source: "./media/characters/rai/front.svg",
  3165. extra: 1802/1696,
  3166. bottom: 68/1870
  3167. },
  3168. form: "anthro",
  3169. default: true
  3170. },
  3171. frontDressed: {
  3172. height: math.unit(7 + 2/12, "feet"),
  3173. weight: math.unit(320, "kg"),
  3174. preyCapacity: math.unit(0.276549935, "people"),
  3175. name: "Front (Dressed)",
  3176. image: {
  3177. source: "./media/characters/rai/front-dressed.svg",
  3178. extra: 1802/1696,
  3179. bottom: 68/1870
  3180. },
  3181. form: "anthro"
  3182. },
  3183. side: {
  3184. height: math.unit(7 + 2/12, "feet"),
  3185. weight: math.unit(320, "kg"),
  3186. preyCapacity: math.unit(0.276549935, "people"),
  3187. name: "Side",
  3188. image: {
  3189. source: "./media/characters/rai/side.svg",
  3190. extra: 1789/1710,
  3191. bottom: 115/1904
  3192. },
  3193. form: "anthro"
  3194. },
  3195. back: {
  3196. height: math.unit(7 + 2/12, "feet"),
  3197. weight: math.unit(320, "kg"),
  3198. preyCapacity: math.unit(0.276549935, "people"),
  3199. name: "Back",
  3200. image: {
  3201. source: "./media/characters/rai/back.svg",
  3202. extra: 1770/1707,
  3203. bottom: 28/1798
  3204. },
  3205. form: "anthro"
  3206. },
  3207. feral: {
  3208. height: math.unit(9.5, "feet"),
  3209. weight: math.unit(640, "kg"),
  3210. preyCapacity: math.unit(4, "people"),
  3211. name: "Feral",
  3212. image: {
  3213. source: "./media/characters/rai/feral.svg",
  3214. extra: 945/553,
  3215. bottom: 176/1121
  3216. },
  3217. form: "feral",
  3218. default: true
  3219. },
  3220. dragon: {
  3221. height: math.unit(23, "feet"),
  3222. weight: math.unit(50000, "lb"),
  3223. name: "Dragon",
  3224. image: {
  3225. source: "./media/characters/rai/dragon.svg",
  3226. extra: 2498 / 2030,
  3227. bottom: 85.2 / 2584
  3228. },
  3229. form: "dragon",
  3230. default: true
  3231. },
  3232. maw: {
  3233. height: math.unit(1.69, "feet"),
  3234. name: "Maw",
  3235. image: {
  3236. source: "./media/characters/rai/maw.svg"
  3237. },
  3238. form: "anthro"
  3239. },
  3240. },
  3241. [
  3242. {
  3243. name: "Normal",
  3244. height: math.unit(7 + 2/12, "feet"),
  3245. form: "anthro"
  3246. },
  3247. {
  3248. name: "Big",
  3249. height: math.unit(11, "feet"),
  3250. form: "anthro"
  3251. },
  3252. {
  3253. name: "Minimacro",
  3254. height: math.unit(77, "feet"),
  3255. form: "anthro"
  3256. },
  3257. {
  3258. name: "Macro",
  3259. height: math.unit(302, "feet"),
  3260. default: true,
  3261. form: "anthro"
  3262. },
  3263. {
  3264. name: "Normal",
  3265. height: math.unit(9.5, "feet"),
  3266. form: "feral",
  3267. default: true
  3268. },
  3269. {
  3270. name: "Normal",
  3271. height: math.unit(23, "feet"),
  3272. form: "dragon",
  3273. default: true
  3274. }
  3275. ],
  3276. {
  3277. "anthro": {
  3278. name: "Anthro",
  3279. default: true
  3280. },
  3281. "feral": {
  3282. name: "Feral",
  3283. },
  3284. "dragon": {
  3285. name: "Dragon",
  3286. },
  3287. }
  3288. ))
  3289. characterMakers.push(() => makeCharacter(
  3290. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3291. {
  3292. frontDressed: {
  3293. height: math.unit(216, "feet"),
  3294. weight: math.unit(7000000, "lb"),
  3295. preyCapacity: math.unit(1321, "people"),
  3296. name: "Front (Dressed)",
  3297. image: {
  3298. source: "./media/characters/jazzy/front-dressed.svg",
  3299. extra: 2738 / 2651,
  3300. bottom: 41.8 / 2786
  3301. }
  3302. },
  3303. backDressed: {
  3304. height: math.unit(216, "feet"),
  3305. weight: math.unit(7000000, "lb"),
  3306. preyCapacity: math.unit(1321, "people"),
  3307. name: "Back (Dressed)",
  3308. image: {
  3309. source: "./media/characters/jazzy/back-dressed.svg",
  3310. extra: 2775 / 2673,
  3311. bottom: 36.8 / 2817
  3312. }
  3313. },
  3314. front: {
  3315. height: math.unit(216, "feet"),
  3316. weight: math.unit(7000000, "lb"),
  3317. preyCapacity: math.unit(1321, "people"),
  3318. name: "Front",
  3319. image: {
  3320. source: "./media/characters/jazzy/front.svg",
  3321. extra: 2738 / 2651,
  3322. bottom: 41.8 / 2786
  3323. }
  3324. },
  3325. back: {
  3326. height: math.unit(216, "feet"),
  3327. weight: math.unit(7000000, "lb"),
  3328. preyCapacity: math.unit(1321, "people"),
  3329. name: "Back",
  3330. image: {
  3331. source: "./media/characters/jazzy/back.svg",
  3332. extra: 2775 / 2673,
  3333. bottom: 36.8 / 2817
  3334. }
  3335. },
  3336. maw: {
  3337. height: math.unit(20, "feet"),
  3338. name: "Maw",
  3339. image: {
  3340. source: "./media/characters/jazzy/maw.svg"
  3341. }
  3342. },
  3343. paws: {
  3344. height: math.unit(27.5, "feet"),
  3345. name: "Paws",
  3346. image: {
  3347. source: "./media/characters/jazzy/paws.svg"
  3348. }
  3349. },
  3350. eye: {
  3351. height: math.unit(4.4, "feet"),
  3352. name: "Eye",
  3353. image: {
  3354. source: "./media/characters/jazzy/eye.svg"
  3355. }
  3356. },
  3357. droneOffense: {
  3358. height: math.unit(9.5, "inches"),
  3359. name: "Drone (Offense)",
  3360. image: {
  3361. source: "./media/characters/jazzy/drone-offense.svg"
  3362. }
  3363. },
  3364. droneRecon: {
  3365. height: math.unit(9.5, "inches"),
  3366. name: "Drone (Recon)",
  3367. image: {
  3368. source: "./media/characters/jazzy/drone-recon.svg"
  3369. }
  3370. },
  3371. droneDefense: {
  3372. height: math.unit(9.5, "inches"),
  3373. name: "Drone (Defense)",
  3374. image: {
  3375. source: "./media/characters/jazzy/drone-defense.svg"
  3376. }
  3377. },
  3378. },
  3379. [
  3380. {
  3381. name: "Macro",
  3382. height: math.unit(216, "feet"),
  3383. default: true
  3384. },
  3385. ]
  3386. ))
  3387. characterMakers.push(() => makeCharacter(
  3388. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3389. {
  3390. front: {
  3391. height: math.unit(9 + 6/12, "feet"),
  3392. weight: math.unit(700, "lb"),
  3393. name: "Front",
  3394. image: {
  3395. source: "./media/characters/flamm/front.svg",
  3396. extra: 1736/1596,
  3397. bottom: 93/1829
  3398. }
  3399. },
  3400. buff: {
  3401. height: math.unit(9 + 6/12, "feet"),
  3402. weight: math.unit(950, "lb"),
  3403. name: "Buff",
  3404. image: {
  3405. source: "./media/characters/flamm/buff.svg",
  3406. extra: 3018/2874,
  3407. bottom: 221/3239
  3408. }
  3409. },
  3410. },
  3411. [
  3412. {
  3413. name: "Normal",
  3414. height: math.unit(9.5, "feet")
  3415. },
  3416. {
  3417. name: "Macro",
  3418. height: math.unit(200, "feet"),
  3419. default: true
  3420. },
  3421. ]
  3422. ))
  3423. characterMakers.push(() => makeCharacter(
  3424. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3425. {
  3426. front: {
  3427. height: math.unit(5 + 3/12, "feet"),
  3428. weight: math.unit(60, "kg"),
  3429. name: "Front",
  3430. image: {
  3431. source: "./media/characters/zephiro/front.svg",
  3432. extra: 1873/1761,
  3433. bottom: 147/2020
  3434. }
  3435. },
  3436. side: {
  3437. height: math.unit(5 + 3/12, "feet"),
  3438. weight: math.unit(60, "kg"),
  3439. name: "Side",
  3440. image: {
  3441. source: "./media/characters/zephiro/side.svg",
  3442. extra: 1929/1827,
  3443. bottom: 65/1994
  3444. }
  3445. },
  3446. back: {
  3447. height: math.unit(5 + 3/12, "feet"),
  3448. weight: math.unit(60, "kg"),
  3449. name: "Back",
  3450. image: {
  3451. source: "./media/characters/zephiro/back.svg",
  3452. extra: 1926/1816,
  3453. bottom: 41/1967
  3454. }
  3455. },
  3456. hand: {
  3457. height: math.unit(0.68, "feet"),
  3458. name: "Hand",
  3459. image: {
  3460. source: "./media/characters/zephiro/hand.svg"
  3461. }
  3462. },
  3463. paw: {
  3464. height: math.unit(1, "feet"),
  3465. name: "Paw",
  3466. image: {
  3467. source: "./media/characters/zephiro/paw.svg"
  3468. }
  3469. },
  3470. beans: {
  3471. height: math.unit(0.93, "feet"),
  3472. name: "Beans",
  3473. image: {
  3474. source: "./media/characters/zephiro/beans.svg"
  3475. }
  3476. },
  3477. },
  3478. [
  3479. {
  3480. name: "Micro",
  3481. height: math.unit(3, "inches")
  3482. },
  3483. {
  3484. name: "Normal",
  3485. height: math.unit(5 + 3 / 12, "feet"),
  3486. default: true
  3487. },
  3488. {
  3489. name: "Macro",
  3490. height: math.unit(118, "feet")
  3491. },
  3492. ]
  3493. ))
  3494. characterMakers.push(() => makeCharacter(
  3495. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3496. {
  3497. front: {
  3498. height: math.unit(5, "feet"),
  3499. weight: math.unit(90, "kg"),
  3500. preyCapacity: math.unit(14, "people"),
  3501. name: "Front",
  3502. image: {
  3503. source: "./media/characters/fory/front.svg",
  3504. extra: 2862 / 2674,
  3505. bottom: 180 / 3043.8
  3506. },
  3507. form: "weaselbun",
  3508. default: true,
  3509. extraAttributes: {
  3510. "pawSize": {
  3511. name: "Paw Size",
  3512. power: 2,
  3513. type: "area",
  3514. base: math.unit(0.1596, "m^2")
  3515. },
  3516. "pawLength": {
  3517. name: "Paw Length",
  3518. power: 1,
  3519. type: "length",
  3520. base: math.unit(0.7, "m")
  3521. }
  3522. }
  3523. },
  3524. back: {
  3525. height: math.unit(5, "feet"),
  3526. weight: math.unit(90, "kg"),
  3527. preyCapacity: math.unit(14, "people"),
  3528. name: "Back",
  3529. image: {
  3530. source: "./media/characters/fory/back.svg",
  3531. extra: 1790/1672,
  3532. bottom: 84/1874
  3533. },
  3534. form: "weaselbun",
  3535. extraAttributes: {
  3536. "pawSize": {
  3537. name: "Paw Size",
  3538. power: 2,
  3539. type: "area",
  3540. base: math.unit(0.1596, "m^2")
  3541. },
  3542. "pawLength": {
  3543. name: "Paw Length",
  3544. power: 1,
  3545. type: "length",
  3546. base: math.unit(0.7, "m")
  3547. }
  3548. }
  3549. },
  3550. paw: {
  3551. height: math.unit(2.14, "feet"),
  3552. name: "Paw",
  3553. image: {
  3554. source: "./media/characters/fory/paw.svg"
  3555. },
  3556. form: "weaselbun",
  3557. extraAttributes: {
  3558. "pawSize": {
  3559. name: "Paw Size",
  3560. power: 2,
  3561. type: "area",
  3562. base: math.unit(0.1596, "m^2")
  3563. },
  3564. "pawLength": {
  3565. name: "Paw Length",
  3566. power: 1,
  3567. type: "length",
  3568. base: math.unit(0.48, "m")
  3569. }
  3570. }
  3571. },
  3572. bunBack: {
  3573. height: math.unit(3, "feet"),
  3574. weight: math.unit(20, "kg"),
  3575. preyCapacity: math.unit(3, "people"),
  3576. name: "Back",
  3577. image: {
  3578. source: "./media/characters/fory/bun-back.svg",
  3579. extra: 1749/1564,
  3580. bottom: 246/1995
  3581. },
  3582. form: "bun",
  3583. default: true,
  3584. extraAttributes: {
  3585. "pawSize": {
  3586. name: "Paw Size",
  3587. power: 2,
  3588. type: "area",
  3589. base: math.unit(0.072, "m^2")
  3590. },
  3591. "pawLength": {
  3592. name: "Paw Length",
  3593. power: 1,
  3594. type: "length",
  3595. base: math.unit(0.45, "m")
  3596. }
  3597. }
  3598. },
  3599. },
  3600. [
  3601. {
  3602. name: "Normal",
  3603. height: math.unit(5, "feet"),
  3604. form: "weaselbun"
  3605. },
  3606. {
  3607. name: "Macro",
  3608. height: math.unit(50, "feet"),
  3609. default: true,
  3610. form: "weaselbun"
  3611. },
  3612. {
  3613. name: "Megamacro",
  3614. height: math.unit(10, "miles"),
  3615. form: "weaselbun"
  3616. },
  3617. {
  3618. name: "Gigamacro",
  3619. height: math.unit(5, "earths"),
  3620. form: "weaselbun"
  3621. },
  3622. {
  3623. name: "Normal",
  3624. height: math.unit(3, "feet"),
  3625. default: true,
  3626. form: "bun"
  3627. },
  3628. {
  3629. name: "Fun-Size",
  3630. height: math.unit(12, "feet"),
  3631. form: "bun"
  3632. },
  3633. {
  3634. name: "Macro",
  3635. height: math.unit(100, "feet"),
  3636. form: "bun"
  3637. },
  3638. {
  3639. name: "Planetary",
  3640. height: math.unit(3, "earths"),
  3641. form: "bun"
  3642. },
  3643. ],
  3644. {
  3645. "weaselbun": {
  3646. name: "Weaselbun",
  3647. default: true
  3648. },
  3649. "bun": {
  3650. name: "Bun",
  3651. },
  3652. }
  3653. ))
  3654. characterMakers.push(() => makeCharacter(
  3655. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3656. {
  3657. front: {
  3658. height: math.unit(7, "feet"),
  3659. weight: math.unit(90, "kg"),
  3660. name: "Front",
  3661. image: {
  3662. source: "./media/characters/kurrikage/front.svg",
  3663. extra: 1845/1733,
  3664. bottom: 119/1964
  3665. }
  3666. },
  3667. back: {
  3668. height: math.unit(7, "feet"),
  3669. weight: math.unit(90, "kg"),
  3670. name: "Back",
  3671. image: {
  3672. source: "./media/characters/kurrikage/back.svg",
  3673. extra: 1790/1677,
  3674. bottom: 61/1851
  3675. }
  3676. },
  3677. dressed: {
  3678. height: math.unit(7, "feet"),
  3679. weight: math.unit(90, "kg"),
  3680. name: "Dressed",
  3681. image: {
  3682. source: "./media/characters/kurrikage/dressed.svg",
  3683. extra: 1845/1733,
  3684. bottom: 119/1964
  3685. }
  3686. },
  3687. foot: {
  3688. height: math.unit(1.5, "feet"),
  3689. name: "Foot",
  3690. image: {
  3691. source: "./media/characters/kurrikage/foot.svg"
  3692. }
  3693. },
  3694. staff: {
  3695. height: math.unit(6.7, "feet"),
  3696. name: "Staff",
  3697. image: {
  3698. source: "./media/characters/kurrikage/staff.svg"
  3699. }
  3700. },
  3701. peek: {
  3702. height: math.unit(1.05, "feet"),
  3703. name: "Peeking",
  3704. image: {
  3705. source: "./media/characters/kurrikage/peek.svg",
  3706. bottom: 0.08
  3707. }
  3708. },
  3709. },
  3710. [
  3711. {
  3712. name: "Normal",
  3713. height: math.unit(12, "feet"),
  3714. default: true
  3715. },
  3716. {
  3717. name: "Big",
  3718. height: math.unit(20, "feet")
  3719. },
  3720. {
  3721. name: "Macro",
  3722. height: math.unit(500, "feet")
  3723. },
  3724. {
  3725. name: "Megamacro",
  3726. height: math.unit(20, "miles")
  3727. },
  3728. ]
  3729. ))
  3730. characterMakers.push(() => makeCharacter(
  3731. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3732. {
  3733. front: {
  3734. height: math.unit(6, "feet"),
  3735. weight: math.unit(75, "kg"),
  3736. name: "Front",
  3737. image: {
  3738. source: "./media/characters/shingo/front.svg",
  3739. extra: 1900/1825,
  3740. bottom: 82/1982
  3741. }
  3742. },
  3743. side: {
  3744. height: math.unit(6, "feet"),
  3745. weight: math.unit(75, "kg"),
  3746. name: "Side",
  3747. image: {
  3748. source: "./media/characters/shingo/side.svg",
  3749. extra: 1930/1865,
  3750. bottom: 16/1946
  3751. }
  3752. },
  3753. back: {
  3754. height: math.unit(6, "feet"),
  3755. weight: math.unit(75, "kg"),
  3756. name: "Back",
  3757. image: {
  3758. source: "./media/characters/shingo/back.svg",
  3759. extra: 1922/1852,
  3760. bottom: 16/1938
  3761. }
  3762. },
  3763. frontDressed: {
  3764. height: math.unit(6, "feet"),
  3765. weight: math.unit(150, "lb"),
  3766. name: "Front-dressed",
  3767. image: {
  3768. source: "./media/characters/shingo/front-dressed.svg",
  3769. extra: 1900/1825,
  3770. bottom: 82/1982
  3771. }
  3772. },
  3773. paw: {
  3774. height: math.unit(1.29, "feet"),
  3775. name: "Paw",
  3776. image: {
  3777. source: "./media/characters/shingo/paw.svg"
  3778. }
  3779. },
  3780. hand: {
  3781. height: math.unit(1.07, "feet"),
  3782. name: "Hand",
  3783. image: {
  3784. source: "./media/characters/shingo/hand.svg"
  3785. }
  3786. },
  3787. frontAlt: {
  3788. height: math.unit(6, "feet"),
  3789. weight: math.unit(75, "kg"),
  3790. name: "Front (Alt)",
  3791. image: {
  3792. source: "./media/characters/shingo/front-alt.svg",
  3793. extra: 3511 / 3338,
  3794. bottom: 0.005
  3795. }
  3796. },
  3797. frontAlt2: {
  3798. height: math.unit(6, "feet"),
  3799. weight: math.unit(75, "kg"),
  3800. name: "Front (Alt 2)",
  3801. image: {
  3802. source: "./media/characters/shingo/front-alt-2.svg",
  3803. extra: 706/681,
  3804. bottom: 11/717
  3805. }
  3806. },
  3807. pawAlt: {
  3808. height: math.unit(1, "feet"),
  3809. name: "Paw (Alt)",
  3810. image: {
  3811. source: "./media/characters/shingo/paw-alt.svg"
  3812. }
  3813. },
  3814. },
  3815. [
  3816. {
  3817. name: "Micro",
  3818. height: math.unit(4, "inches")
  3819. },
  3820. {
  3821. name: "Normal",
  3822. height: math.unit(6, "feet"),
  3823. default: true
  3824. },
  3825. {
  3826. name: "Macro",
  3827. height: math.unit(108, "feet")
  3828. },
  3829. {
  3830. name: "Macro+",
  3831. height: math.unit(1500, "feet")
  3832. },
  3833. ]
  3834. ))
  3835. characterMakers.push(() => makeCharacter(
  3836. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3837. {
  3838. side: {
  3839. height: math.unit(6, "feet"),
  3840. weight: math.unit(75, "kg"),
  3841. name: "Side",
  3842. image: {
  3843. source: "./media/characters/aigey/side.svg"
  3844. }
  3845. },
  3846. },
  3847. [
  3848. {
  3849. name: "Macro",
  3850. height: math.unit(200, "feet"),
  3851. default: true
  3852. },
  3853. {
  3854. name: "Megamacro",
  3855. height: math.unit(100, "miles")
  3856. },
  3857. ]
  3858. )
  3859. )
  3860. characterMakers.push(() => makeCharacter(
  3861. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3862. {
  3863. front: {
  3864. height: math.unit(13, "feet"),
  3865. weight: math.unit(1036.80, "kg"),
  3866. name: "Front",
  3867. image: {
  3868. source: "./media/characters/natasha/front.svg",
  3869. extra: 1301/1210,
  3870. bottom: 39/1340
  3871. }
  3872. },
  3873. back: {
  3874. height: math.unit(13, "feet"),
  3875. weight: math.unit(1036.80, "kg"),
  3876. name: "Back",
  3877. image: {
  3878. source: "./media/characters/natasha/back.svg",
  3879. extra: 1342/1252,
  3880. bottom: 20/1362
  3881. }
  3882. },
  3883. head: {
  3884. height: math.unit(3.48, "feet"),
  3885. name: "Head",
  3886. image: {
  3887. source: "./media/characters/natasha/head.svg"
  3888. }
  3889. },
  3890. jaws: {
  3891. height: math.unit(3.52, "feet"),
  3892. name: "Jaws",
  3893. image: {
  3894. source: "./media/characters/natasha/jaws.svg"
  3895. }
  3896. },
  3897. paws: {
  3898. height: math.unit(2.7, "feet"),
  3899. name: "Paws",
  3900. image: {
  3901. source: "./media/characters/natasha/paws.svg"
  3902. }
  3903. },
  3904. collar: {
  3905. height: math.unit(0.89, "feet"),
  3906. name: "Collar",
  3907. image: {
  3908. source: "./media/characters/natasha/collar.svg"
  3909. }
  3910. },
  3911. gauge: {
  3912. height: math.unit(0.36, "feet"),
  3913. name: "Gauge",
  3914. image: {
  3915. source: "./media/characters/natasha/gauge.svg"
  3916. }
  3917. },
  3918. },
  3919. [
  3920. {
  3921. name: "Shortstack",
  3922. height: math.unit(3, "feet")
  3923. },
  3924. {
  3925. name: "Normal",
  3926. height: math.unit(13, "feet"),
  3927. default: true
  3928. },
  3929. {
  3930. name: "Macro",
  3931. height: math.unit(100, "feet")
  3932. },
  3933. {
  3934. name: "Macro+",
  3935. height: math.unit(260, "feet")
  3936. },
  3937. {
  3938. name: "Macro++",
  3939. height: math.unit(1, "mile")
  3940. },
  3941. ]
  3942. ))
  3943. characterMakers.push(() => makeCharacter(
  3944. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3945. {
  3946. front: {
  3947. height: math.unit(6, "feet"),
  3948. weight: math.unit(75, "kg"),
  3949. name: "Front",
  3950. image: {
  3951. source: "./media/characters/malik/front.svg",
  3952. extra: 1750/1561,
  3953. bottom: 80/1830
  3954. },
  3955. extraAttributes: {
  3956. "toeSize": {
  3957. name: "Toe Size",
  3958. power: 2,
  3959. type: "area",
  3960. base: math.unit(0.0159, "m^2")
  3961. },
  3962. "pawSize": {
  3963. name: "Paw Size",
  3964. power: 2,
  3965. type: "area",
  3966. base: math.unit(0.09834, "m^2")
  3967. },
  3968. }
  3969. },
  3970. side: {
  3971. height: math.unit(6, "feet"),
  3972. weight: math.unit(75, "kg"),
  3973. name: "Side",
  3974. image: {
  3975. source: "./media/characters/malik/side.svg",
  3976. extra: 1802/1685,
  3977. bottom: 42/1844
  3978. },
  3979. extraAttributes: {
  3980. "toeSize": {
  3981. name: "Toe Size",
  3982. power: 2,
  3983. type: "area",
  3984. base: math.unit(0.0159, "m^2")
  3985. },
  3986. "pawSize": {
  3987. name: "Paw Size",
  3988. power: 2,
  3989. type: "area",
  3990. base: math.unit(0.09834, "m^2")
  3991. },
  3992. }
  3993. },
  3994. back: {
  3995. height: math.unit(6, "feet"),
  3996. weight: math.unit(75, "kg"),
  3997. name: "Back",
  3998. image: {
  3999. source: "./media/characters/malik/back.svg",
  4000. extra: 1803/1607,
  4001. bottom: 33/1836
  4002. },
  4003. extraAttributes: {
  4004. "toeSize": {
  4005. name: "Toe Size",
  4006. power: 2,
  4007. type: "area",
  4008. base: math.unit(0.0159, "m^2")
  4009. },
  4010. "pawSize": {
  4011. name: "Paw Size",
  4012. power: 2,
  4013. type: "area",
  4014. base: math.unit(0.09834, "m^2")
  4015. },
  4016. }
  4017. },
  4018. },
  4019. [
  4020. {
  4021. name: "Macro",
  4022. height: math.unit(156, "feet"),
  4023. default: true
  4024. },
  4025. {
  4026. name: "Macro+",
  4027. height: math.unit(1188, "feet")
  4028. },
  4029. ]
  4030. ))
  4031. characterMakers.push(() => makeCharacter(
  4032. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4033. {
  4034. front: {
  4035. height: math.unit(6, "feet"),
  4036. weight: math.unit(75, "kg"),
  4037. name: "Front",
  4038. image: {
  4039. source: "./media/characters/sefer/front.svg",
  4040. extra: 848 / 659,
  4041. bottom: 28.3 / 876.442
  4042. }
  4043. },
  4044. back: {
  4045. height: math.unit(6, "feet"),
  4046. weight: math.unit(75, "kg"),
  4047. name: "Back",
  4048. image: {
  4049. source: "./media/characters/sefer/back.svg",
  4050. extra: 864 / 695,
  4051. bottom: 10 / 871
  4052. }
  4053. },
  4054. frontDressed: {
  4055. height: math.unit(6, "feet"),
  4056. weight: math.unit(75, "kg"),
  4057. name: "Dressed",
  4058. image: {
  4059. source: "./media/characters/sefer/dressed.svg",
  4060. extra: 839 / 653,
  4061. bottom: 37.6 / 878
  4062. }
  4063. },
  4064. },
  4065. [
  4066. {
  4067. name: "Normal",
  4068. height: math.unit(6, "feet"),
  4069. default: true
  4070. },
  4071. {
  4072. name: "Big",
  4073. height: math.unit(8, "meters")
  4074. },
  4075. ]
  4076. ))
  4077. characterMakers.push(() => makeCharacter(
  4078. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4079. {
  4080. body: {
  4081. height: math.unit(2.2428, "meter"),
  4082. weight: math.unit(124.738, "kg"),
  4083. name: "Body",
  4084. image: {
  4085. extra: 1225 / 1050,
  4086. source: "./media/characters/north/front.svg"
  4087. }
  4088. }
  4089. },
  4090. [
  4091. {
  4092. name: "Micro",
  4093. height: math.unit(4, "inches")
  4094. },
  4095. {
  4096. name: "Macro",
  4097. height: math.unit(63, "meters")
  4098. },
  4099. {
  4100. name: "Megamacro",
  4101. height: math.unit(101, "miles"),
  4102. default: true
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4108. {
  4109. angled: {
  4110. height: math.unit(4, "meter"),
  4111. weight: math.unit(150, "kg"),
  4112. name: "Angled",
  4113. image: {
  4114. source: "./media/characters/talan/angled-sfw.svg",
  4115. bottom: 29 / 3734
  4116. }
  4117. },
  4118. angledNsfw: {
  4119. height: math.unit(4, "meter"),
  4120. weight: math.unit(150, "kg"),
  4121. name: "Angled (NSFW)",
  4122. image: {
  4123. source: "./media/characters/talan/angled-nsfw.svg",
  4124. bottom: 29 / 3734
  4125. }
  4126. },
  4127. frontNsfw: {
  4128. height: math.unit(4, "meter"),
  4129. weight: math.unit(150, "kg"),
  4130. name: "Front (NSFW)",
  4131. image: {
  4132. source: "./media/characters/talan/front-nsfw.svg",
  4133. bottom: 29 / 3734
  4134. }
  4135. },
  4136. sideNsfw: {
  4137. height: math.unit(4, "meter"),
  4138. weight: math.unit(150, "kg"),
  4139. name: "Side (NSFW)",
  4140. image: {
  4141. source: "./media/characters/talan/side-nsfw.svg",
  4142. bottom: 29 / 3734
  4143. }
  4144. },
  4145. back: {
  4146. height: math.unit(4, "meter"),
  4147. weight: math.unit(150, "kg"),
  4148. name: "Back",
  4149. image: {
  4150. source: "./media/characters/talan/back.svg"
  4151. }
  4152. },
  4153. dickBottom: {
  4154. height: math.unit(0.621, "meter"),
  4155. name: "Dick (Bottom)",
  4156. image: {
  4157. source: "./media/characters/talan/dick-bottom.svg"
  4158. }
  4159. },
  4160. dickTop: {
  4161. height: math.unit(0.621, "meter"),
  4162. name: "Dick (Top)",
  4163. image: {
  4164. source: "./media/characters/talan/dick-top.svg"
  4165. }
  4166. },
  4167. dickSide: {
  4168. height: math.unit(0.305, "meter"),
  4169. name: "Dick (Side)",
  4170. image: {
  4171. source: "./media/characters/talan/dick-side.svg"
  4172. }
  4173. },
  4174. dickFront: {
  4175. height: math.unit(0.305, "meter"),
  4176. name: "Dick (Front)",
  4177. image: {
  4178. source: "./media/characters/talan/dick-front.svg"
  4179. }
  4180. },
  4181. },
  4182. [
  4183. {
  4184. name: "Normal",
  4185. height: math.unit(4, "meters")
  4186. },
  4187. {
  4188. name: "Macro",
  4189. height: math.unit(100, "meters")
  4190. },
  4191. {
  4192. name: "Megamacro",
  4193. height: math.unit(2, "miles"),
  4194. default: true
  4195. },
  4196. {
  4197. name: "Gigamacro",
  4198. height: math.unit(5000, "miles")
  4199. },
  4200. {
  4201. name: "Teramacro",
  4202. height: math.unit(100, "parsecs")
  4203. }
  4204. ]
  4205. ))
  4206. characterMakers.push(() => makeCharacter(
  4207. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4208. {
  4209. front: {
  4210. height: math.unit(2, "meter"),
  4211. weight: math.unit(90, "kg"),
  4212. name: "Front",
  4213. image: {
  4214. source: "./media/characters/gael'rathus/front.svg"
  4215. }
  4216. },
  4217. frontAlt: {
  4218. height: math.unit(2, "meter"),
  4219. weight: math.unit(90, "kg"),
  4220. name: "Front (alt)",
  4221. image: {
  4222. source: "./media/characters/gael'rathus/front-alt.svg"
  4223. }
  4224. },
  4225. frontAlt2: {
  4226. height: math.unit(2, "meter"),
  4227. weight: math.unit(90, "kg"),
  4228. name: "Front (alt 2)",
  4229. image: {
  4230. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4231. }
  4232. }
  4233. },
  4234. [
  4235. {
  4236. name: "Normal",
  4237. height: math.unit(9, "feet"),
  4238. default: true
  4239. },
  4240. {
  4241. name: "Large",
  4242. height: math.unit(25, "feet")
  4243. },
  4244. {
  4245. name: "Macro",
  4246. height: math.unit(0.25, "miles")
  4247. },
  4248. {
  4249. name: "Megamacro",
  4250. height: math.unit(10, "miles")
  4251. }
  4252. ]
  4253. ))
  4254. characterMakers.push(() => makeCharacter(
  4255. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4256. {
  4257. side: {
  4258. height: math.unit(2, "meter"),
  4259. weight: math.unit(140, "kg"),
  4260. name: "Side",
  4261. image: {
  4262. source: "./media/characters/sosha/side.svg",
  4263. extra: 1170/1006,
  4264. bottom: 94/1264
  4265. }
  4266. },
  4267. maw: {
  4268. height: math.unit(2.87, "feet"),
  4269. name: "Maw",
  4270. image: {
  4271. source: "./media/characters/sosha/maw.svg",
  4272. extra: 966/865,
  4273. bottom: 0/966
  4274. }
  4275. },
  4276. cooch: {
  4277. height: math.unit(5.6, "feet"),
  4278. name: "Cooch",
  4279. image: {
  4280. source: "./media/characters/sosha/cooch.svg"
  4281. }
  4282. },
  4283. },
  4284. [
  4285. {
  4286. name: "Normal",
  4287. height: math.unit(12, "feet"),
  4288. default: true
  4289. }
  4290. ]
  4291. ))
  4292. characterMakers.push(() => makeCharacter(
  4293. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4294. {
  4295. side: {
  4296. height: math.unit(5 + 5 / 12, "feet"),
  4297. weight: math.unit(170, "kg"),
  4298. name: "Side",
  4299. image: {
  4300. source: "./media/characters/runnola/side.svg",
  4301. extra: 741 / 448,
  4302. bottom: 0.05
  4303. }
  4304. },
  4305. },
  4306. [
  4307. {
  4308. name: "Small",
  4309. height: math.unit(3, "feet")
  4310. },
  4311. {
  4312. name: "Normal",
  4313. height: math.unit(5 + 5 / 12, "feet"),
  4314. default: true
  4315. },
  4316. {
  4317. name: "Big",
  4318. height: math.unit(10, "feet")
  4319. },
  4320. ]
  4321. ))
  4322. characterMakers.push(() => makeCharacter(
  4323. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4324. {
  4325. front: {
  4326. height: math.unit(2, "meter"),
  4327. weight: math.unit(50, "kg"),
  4328. name: "Front",
  4329. image: {
  4330. source: "./media/characters/kurribird/front.svg",
  4331. bottom: 0.015
  4332. }
  4333. },
  4334. frontAlt: {
  4335. height: math.unit(1.5, "meter"),
  4336. weight: math.unit(50, "kg"),
  4337. name: "Front (Alt)",
  4338. image: {
  4339. source: "./media/characters/kurribird/front-alt.svg",
  4340. extra: 1.45
  4341. }
  4342. },
  4343. },
  4344. [
  4345. {
  4346. name: "Normal",
  4347. height: math.unit(7, "feet")
  4348. },
  4349. {
  4350. name: "Big",
  4351. height: math.unit(12, "feet"),
  4352. default: true
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(1500, "feet")
  4357. },
  4358. {
  4359. name: "Megamacro",
  4360. height: math.unit(2, "miles")
  4361. }
  4362. ]
  4363. ))
  4364. characterMakers.push(() => makeCharacter(
  4365. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4366. {
  4367. front: {
  4368. height: math.unit(2, "meter"),
  4369. weight: math.unit(80, "kg"),
  4370. name: "Front",
  4371. image: {
  4372. source: "./media/characters/elbial/front.svg",
  4373. extra: 1643 / 1556,
  4374. bottom: 60.2 / 1696
  4375. }
  4376. },
  4377. side: {
  4378. height: math.unit(2, "meter"),
  4379. weight: math.unit(80, "kg"),
  4380. name: "Side",
  4381. image: {
  4382. source: "./media/characters/elbial/side.svg",
  4383. extra: 1601/1528,
  4384. bottom: 97/1698
  4385. }
  4386. },
  4387. back: {
  4388. height: math.unit(2, "meter"),
  4389. weight: math.unit(80, "kg"),
  4390. name: "Back",
  4391. image: {
  4392. source: "./media/characters/elbial/back.svg",
  4393. extra: 1653/1569,
  4394. bottom: 20/1673
  4395. }
  4396. },
  4397. frontDressed: {
  4398. height: math.unit(2, "meter"),
  4399. weight: math.unit(80, "kg"),
  4400. name: "Front (Dressed)",
  4401. image: {
  4402. source: "./media/characters/elbial/front-dressed.svg",
  4403. extra: 1638/1569,
  4404. bottom: 70/1708
  4405. }
  4406. },
  4407. genitals: {
  4408. height: math.unit(2 / 3.367, "meter"),
  4409. name: "Genitals",
  4410. image: {
  4411. source: "./media/characters/elbial/genitals.svg"
  4412. }
  4413. },
  4414. },
  4415. [
  4416. {
  4417. name: "Large",
  4418. height: math.unit(100, "feet")
  4419. },
  4420. {
  4421. name: "Macro",
  4422. height: math.unit(500, "feet"),
  4423. default: true
  4424. },
  4425. {
  4426. name: "Megamacro",
  4427. height: math.unit(10, "miles")
  4428. },
  4429. {
  4430. name: "Gigamacro",
  4431. height: math.unit(25000, "miles")
  4432. },
  4433. {
  4434. name: "Full-Size",
  4435. height: math.unit(8000000, "gigaparsecs")
  4436. }
  4437. ]
  4438. ))
  4439. characterMakers.push(() => makeCharacter(
  4440. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4441. {
  4442. front: {
  4443. height: math.unit(2, "meter"),
  4444. weight: math.unit(60, "kg"),
  4445. name: "Front",
  4446. image: {
  4447. source: "./media/characters/noah/front.svg",
  4448. extra: 1383/1313,
  4449. bottom: 104/1487
  4450. }
  4451. },
  4452. hand: {
  4453. height: math.unit(0.6, "feet"),
  4454. name: "Hand",
  4455. image: {
  4456. source: "./media/characters/noah/hand.svg"
  4457. }
  4458. },
  4459. talons: {
  4460. height: math.unit(1.385, "feet"),
  4461. name: "Talons",
  4462. image: {
  4463. source: "./media/characters/noah/talons.svg"
  4464. }
  4465. },
  4466. beak: {
  4467. height: math.unit(0.43, "feet"),
  4468. name: "Beak",
  4469. image: {
  4470. source: "./media/characters/noah/beak.svg"
  4471. }
  4472. },
  4473. collar: {
  4474. height: math.unit(0.88, "feet"),
  4475. name: "Collar",
  4476. image: {
  4477. source: "./media/characters/noah/collar.svg"
  4478. }
  4479. },
  4480. eyeNarrow: {
  4481. height: math.unit(0.18, "feet"),
  4482. name: "Eye (Narrow)",
  4483. image: {
  4484. source: "./media/characters/noah/eye-narrow.svg"
  4485. }
  4486. },
  4487. eyeNormal: {
  4488. height: math.unit(0.18, "feet"),
  4489. name: "Eye (Normal)",
  4490. image: {
  4491. source: "./media/characters/noah/eye-normal.svg"
  4492. }
  4493. },
  4494. eyeWide: {
  4495. height: math.unit(0.18, "feet"),
  4496. name: "Eye (Wide)",
  4497. image: {
  4498. source: "./media/characters/noah/eye-wide.svg"
  4499. }
  4500. },
  4501. ear: {
  4502. height: math.unit(0.64, "feet"),
  4503. name: "Ear",
  4504. image: {
  4505. source: "./media/characters/noah/ear.svg"
  4506. }
  4507. },
  4508. },
  4509. [
  4510. {
  4511. name: "Large",
  4512. height: math.unit(50, "feet")
  4513. },
  4514. {
  4515. name: "Macro",
  4516. height: math.unit(750, "feet"),
  4517. default: true
  4518. },
  4519. {
  4520. name: "Megamacro",
  4521. height: math.unit(50, "miles")
  4522. },
  4523. {
  4524. name: "Gigamacro",
  4525. height: math.unit(100000, "miles")
  4526. },
  4527. {
  4528. name: "Full-Size",
  4529. height: math.unit(3000000000, "miles")
  4530. }
  4531. ]
  4532. ))
  4533. characterMakers.push(() => makeCharacter(
  4534. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4535. {
  4536. front: {
  4537. height: math.unit(2, "meter"),
  4538. weight: math.unit(80, "kg"),
  4539. name: "Front",
  4540. image: {
  4541. source: "./media/characters/natalya/front.svg"
  4542. }
  4543. },
  4544. back: {
  4545. height: math.unit(2, "meter"),
  4546. weight: math.unit(80, "kg"),
  4547. name: "Back",
  4548. image: {
  4549. source: "./media/characters/natalya/back.svg"
  4550. }
  4551. }
  4552. },
  4553. [
  4554. {
  4555. name: "Normal",
  4556. height: math.unit(150, "feet"),
  4557. default: true
  4558. },
  4559. {
  4560. name: "Megamacro",
  4561. height: math.unit(5, "miles")
  4562. },
  4563. {
  4564. name: "Full-Size",
  4565. height: math.unit(600, "kiloparsecs")
  4566. }
  4567. ]
  4568. ))
  4569. characterMakers.push(() => makeCharacter(
  4570. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4571. {
  4572. front: {
  4573. height: math.unit(2, "meter"),
  4574. weight: math.unit(50, "kg"),
  4575. name: "Front",
  4576. image: {
  4577. source: "./media/characters/erestrebah/front.svg",
  4578. extra: 1262/1162,
  4579. bottom: 96/1358
  4580. }
  4581. },
  4582. back: {
  4583. height: math.unit(2, "meter"),
  4584. weight: math.unit(50, "kg"),
  4585. name: "Back",
  4586. image: {
  4587. source: "./media/characters/erestrebah/back.svg",
  4588. extra: 1257/1139,
  4589. bottom: 13/1270
  4590. }
  4591. },
  4592. wing: {
  4593. height: math.unit(2, "meter"),
  4594. weight: math.unit(50, "kg"),
  4595. name: "Wing",
  4596. image: {
  4597. source: "./media/characters/erestrebah/wing.svg",
  4598. extra: 1262/1162,
  4599. bottom: 96/1358
  4600. }
  4601. },
  4602. mouth: {
  4603. height: math.unit(0.39, "feet"),
  4604. name: "Mouth",
  4605. image: {
  4606. source: "./media/characters/erestrebah/mouth.svg"
  4607. }
  4608. }
  4609. },
  4610. [
  4611. {
  4612. name: "Normal",
  4613. height: math.unit(10, "feet")
  4614. },
  4615. {
  4616. name: "Large",
  4617. height: math.unit(50, "feet"),
  4618. default: true
  4619. },
  4620. {
  4621. name: "Macro",
  4622. height: math.unit(300, "feet")
  4623. },
  4624. {
  4625. name: "Macro+",
  4626. height: math.unit(750, "feet")
  4627. },
  4628. {
  4629. name: "Megamacro",
  4630. height: math.unit(3, "miles")
  4631. }
  4632. ]
  4633. ))
  4634. characterMakers.push(() => makeCharacter(
  4635. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4636. {
  4637. front: {
  4638. height: math.unit(2, "meter"),
  4639. weight: math.unit(80, "kg"),
  4640. name: "Front",
  4641. image: {
  4642. source: "./media/characters/jennifer/front.svg",
  4643. bottom: 0.11,
  4644. extra: 1.16
  4645. }
  4646. },
  4647. frontAlt: {
  4648. height: math.unit(2, "meter"),
  4649. weight: math.unit(80, "kg"),
  4650. name: "Front (Alt)",
  4651. image: {
  4652. source: "./media/characters/jennifer/front-alt.svg"
  4653. }
  4654. }
  4655. },
  4656. [
  4657. {
  4658. name: "Canon Height",
  4659. height: math.unit(120, "feet"),
  4660. default: true
  4661. },
  4662. {
  4663. name: "Macro+",
  4664. height: math.unit(300, "feet")
  4665. },
  4666. {
  4667. name: "Megamacro",
  4668. height: math.unit(20000, "feet")
  4669. }
  4670. ]
  4671. ))
  4672. characterMakers.push(() => makeCharacter(
  4673. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4674. {
  4675. front: {
  4676. height: math.unit(2, "meter"),
  4677. weight: math.unit(50, "kg"),
  4678. name: "Front",
  4679. image: {
  4680. source: "./media/characters/kalista/front.svg",
  4681. extra: 1314/1145,
  4682. bottom: 101/1415
  4683. }
  4684. },
  4685. back: {
  4686. height: math.unit(2, "meter"),
  4687. weight: math.unit(50, "kg"),
  4688. name: "Back",
  4689. image: {
  4690. source: "./media/characters/kalista/back.svg",
  4691. extra: 1366 / 1156,
  4692. bottom: 33.9 / 1362.78
  4693. }
  4694. }
  4695. },
  4696. [
  4697. {
  4698. name: "Uncomfortably Small",
  4699. height: math.unit(10, "feet")
  4700. },
  4701. {
  4702. name: "Small",
  4703. height: math.unit(30, "feet")
  4704. },
  4705. {
  4706. name: "Macro",
  4707. height: math.unit(100, "feet"),
  4708. default: true
  4709. },
  4710. {
  4711. name: "Macro+",
  4712. height: math.unit(2000, "feet")
  4713. },
  4714. {
  4715. name: "True Form",
  4716. height: math.unit(8924, "miles")
  4717. }
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4722. {
  4723. front: {
  4724. height: math.unit(2, "meter"),
  4725. weight: math.unit(120, "kg"),
  4726. name: "Front",
  4727. image: {
  4728. source: "./media/characters/ggv/front.svg"
  4729. }
  4730. },
  4731. side: {
  4732. height: math.unit(2, "meter"),
  4733. weight: math.unit(120, "kg"),
  4734. name: "Side",
  4735. image: {
  4736. source: "./media/characters/ggv/side.svg"
  4737. }
  4738. }
  4739. },
  4740. [
  4741. {
  4742. name: "Extremely Puny",
  4743. height: math.unit(9 + 5 / 12, "feet")
  4744. },
  4745. {
  4746. name: "Horribly Small",
  4747. height: math.unit(47.7, "miles"),
  4748. default: true
  4749. },
  4750. {
  4751. name: "Reasonably Sized",
  4752. height: math.unit(25000, "parsecs")
  4753. },
  4754. {
  4755. name: "Slightly Uncompressed",
  4756. height: math.unit(7.77e31, "parsecs")
  4757. },
  4758. {
  4759. name: "Omniversal",
  4760. height: math.unit(1e300, "meters")
  4761. },
  4762. ]
  4763. ))
  4764. characterMakers.push(() => makeCharacter(
  4765. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4766. {
  4767. front: {
  4768. height: math.unit(2, "meter"),
  4769. weight: math.unit(75, "lb"),
  4770. name: "Front",
  4771. image: {
  4772. source: "./media/characters/napalm/front.svg"
  4773. }
  4774. },
  4775. back: {
  4776. height: math.unit(2, "meter"),
  4777. weight: math.unit(75, "lb"),
  4778. name: "Back",
  4779. image: {
  4780. source: "./media/characters/napalm/back.svg"
  4781. }
  4782. }
  4783. },
  4784. [
  4785. {
  4786. name: "Standard",
  4787. height: math.unit(55, "feet"),
  4788. default: true
  4789. }
  4790. ]
  4791. ))
  4792. characterMakers.push(() => makeCharacter(
  4793. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4794. {
  4795. front: {
  4796. height: math.unit(7 + 5 / 6, "feet"),
  4797. weight: math.unit(325, "lb"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/asana/front.svg",
  4801. extra: 1133 / 1060,
  4802. bottom: 15.2 / 1148.6
  4803. }
  4804. },
  4805. back: {
  4806. height: math.unit(7 + 5 / 6, "feet"),
  4807. weight: math.unit(325, "lb"),
  4808. name: "Back",
  4809. image: {
  4810. source: "./media/characters/asana/back.svg",
  4811. extra: 1114 / 1043,
  4812. bottom: 5 / 1120
  4813. }
  4814. },
  4815. dressedDark: {
  4816. height: math.unit(7 + 5 / 6, "feet"),
  4817. weight: math.unit(325, "lb"),
  4818. name: "Dressed (Dark)",
  4819. image: {
  4820. source: "./media/characters/asana/dressed-dark.svg",
  4821. extra: 1133 / 1060,
  4822. bottom: 15.2 / 1148.6
  4823. }
  4824. },
  4825. dressedLight: {
  4826. height: math.unit(7 + 5 / 6, "feet"),
  4827. weight: math.unit(325, "lb"),
  4828. name: "Dressed (Light)",
  4829. image: {
  4830. source: "./media/characters/asana/dressed-light.svg",
  4831. extra: 1133 / 1060,
  4832. bottom: 15.2 / 1148.6
  4833. }
  4834. },
  4835. },
  4836. [
  4837. {
  4838. name: "Standard",
  4839. height: math.unit(7 + 5 / 6, "feet"),
  4840. default: true
  4841. },
  4842. {
  4843. name: "Large",
  4844. height: math.unit(10, "meters")
  4845. },
  4846. {
  4847. name: "Macro",
  4848. height: math.unit(2500, "meters")
  4849. },
  4850. {
  4851. name: "Megamacro",
  4852. height: math.unit(5e6, "meters")
  4853. },
  4854. {
  4855. name: "Examacro",
  4856. height: math.unit(5e12, "lightyears")
  4857. },
  4858. {
  4859. name: "Max Size",
  4860. height: math.unit(1e31, "lightyears")
  4861. }
  4862. ]
  4863. ))
  4864. characterMakers.push(() => makeCharacter(
  4865. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4866. {
  4867. front: {
  4868. height: math.unit(2, "meter"),
  4869. weight: math.unit(60, "kg"),
  4870. name: "Front",
  4871. image: {
  4872. source: "./media/characters/ebony/front.svg",
  4873. bottom: 0.03,
  4874. extra: 1045 / 810 + 0.03
  4875. }
  4876. },
  4877. side: {
  4878. height: math.unit(2, "meter"),
  4879. weight: math.unit(60, "kg"),
  4880. name: "Side",
  4881. image: {
  4882. source: "./media/characters/ebony/side.svg",
  4883. bottom: 0.03,
  4884. extra: 1045 / 810 + 0.03
  4885. }
  4886. },
  4887. back: {
  4888. height: math.unit(2, "meter"),
  4889. weight: math.unit(60, "kg"),
  4890. name: "Back",
  4891. image: {
  4892. source: "./media/characters/ebony/back.svg",
  4893. bottom: 0.01,
  4894. extra: 1045 / 810 + 0.01
  4895. }
  4896. },
  4897. },
  4898. [
  4899. // TODO check why I did this lol
  4900. {
  4901. name: "Standard",
  4902. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4903. default: true
  4904. },
  4905. {
  4906. name: "Macro",
  4907. height: math.unit(200, "feet")
  4908. },
  4909. {
  4910. name: "Gigamacro",
  4911. height: math.unit(13000, "km")
  4912. }
  4913. ]
  4914. ))
  4915. characterMakers.push(() => makeCharacter(
  4916. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4917. {
  4918. front: {
  4919. height: math.unit(6, "feet"),
  4920. weight: math.unit(175, "lb"),
  4921. name: "Front",
  4922. image: {
  4923. source: "./media/characters/mountain/front.svg",
  4924. extra: 972 / 955,
  4925. bottom: 64 / 1036.6
  4926. }
  4927. },
  4928. back: {
  4929. height: math.unit(6, "feet"),
  4930. weight: math.unit(175, "lb"),
  4931. name: "Back",
  4932. image: {
  4933. source: "./media/characters/mountain/back.svg",
  4934. extra: 970 / 950,
  4935. bottom: 28.25 / 999
  4936. }
  4937. },
  4938. },
  4939. [
  4940. {
  4941. name: "Large",
  4942. height: math.unit(20, "meters")
  4943. },
  4944. {
  4945. name: "Macro",
  4946. height: math.unit(300, "meters")
  4947. },
  4948. {
  4949. name: "Gigamacro",
  4950. height: math.unit(10000, "km"),
  4951. default: true
  4952. },
  4953. {
  4954. name: "Examacro",
  4955. height: math.unit(10e9, "lightyears")
  4956. }
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4961. {
  4962. front: {
  4963. height: math.unit(8, "feet"),
  4964. weight: math.unit(500, "lb"),
  4965. name: "Front",
  4966. image: {
  4967. source: "./media/characters/rick/front.svg"
  4968. }
  4969. }
  4970. },
  4971. [
  4972. {
  4973. name: "Normal",
  4974. height: math.unit(8, "feet"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Macro",
  4979. height: math.unit(5, "km")
  4980. }
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4985. {
  4986. front: {
  4987. height: math.unit(8, "feet"),
  4988. weight: math.unit(120, "lb"),
  4989. name: "Front",
  4990. image: {
  4991. source: "./media/characters/ona/front.svg"
  4992. }
  4993. },
  4994. frontAlt: {
  4995. height: math.unit(8, "feet"),
  4996. weight: math.unit(120, "lb"),
  4997. name: "Front (Alt)",
  4998. image: {
  4999. source: "./media/characters/ona/front-alt.svg"
  5000. }
  5001. },
  5002. back: {
  5003. height: math.unit(8, "feet"),
  5004. weight: math.unit(120, "lb"),
  5005. name: "Back",
  5006. image: {
  5007. source: "./media/characters/ona/back.svg"
  5008. }
  5009. },
  5010. foot: {
  5011. height: math.unit(1.1, "feet"),
  5012. name: "Foot",
  5013. image: {
  5014. source: "./media/characters/ona/foot.svg"
  5015. }
  5016. }
  5017. },
  5018. [
  5019. {
  5020. name: "Megamacro",
  5021. height: math.unit(70, "km"),
  5022. default: true
  5023. },
  5024. {
  5025. name: "Gigamacro",
  5026. height: math.unit(681818, "miles")
  5027. },
  5028. {
  5029. name: "Examacro",
  5030. height: math.unit(3800000, "lightyears")
  5031. },
  5032. ]
  5033. ))
  5034. characterMakers.push(() => makeCharacter(
  5035. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5036. {
  5037. front: {
  5038. height: math.unit(12, "feet"),
  5039. weight: math.unit(3000, "lb"),
  5040. name: "Front",
  5041. image: {
  5042. source: "./media/characters/mech/front.svg",
  5043. extra: 2900 / 2770,
  5044. bottom: 110 / 3010
  5045. }
  5046. },
  5047. back: {
  5048. height: math.unit(12, "feet"),
  5049. weight: math.unit(3000, "lb"),
  5050. name: "Back",
  5051. image: {
  5052. source: "./media/characters/mech/back.svg",
  5053. extra: 3011 / 2890,
  5054. bottom: 94 / 3105
  5055. }
  5056. },
  5057. maw: {
  5058. height: math.unit(3.07, "feet"),
  5059. name: "Maw",
  5060. image: {
  5061. source: "./media/characters/mech/maw.svg"
  5062. }
  5063. },
  5064. head: {
  5065. height: math.unit(3.07, "feet"),
  5066. name: "Head",
  5067. image: {
  5068. source: "./media/characters/mech/head.svg"
  5069. }
  5070. },
  5071. dick: {
  5072. height: math.unit(1.43, "feet"),
  5073. name: "Dick",
  5074. image: {
  5075. source: "./media/characters/mech/dick.svg"
  5076. }
  5077. },
  5078. },
  5079. [
  5080. {
  5081. name: "Normal",
  5082. height: math.unit(12, "feet")
  5083. },
  5084. {
  5085. name: "Macro",
  5086. height: math.unit(300, "feet"),
  5087. default: true
  5088. },
  5089. {
  5090. name: "Macro+",
  5091. height: math.unit(1500, "feet")
  5092. },
  5093. ]
  5094. ))
  5095. characterMakers.push(() => makeCharacter(
  5096. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5097. {
  5098. front: {
  5099. height: math.unit(1.3, "meter"),
  5100. weight: math.unit(30, "kg"),
  5101. name: "Front",
  5102. image: {
  5103. source: "./media/characters/gregory/front.svg",
  5104. }
  5105. }
  5106. },
  5107. [
  5108. {
  5109. name: "Normal",
  5110. height: math.unit(1.3, "meter"),
  5111. default: true
  5112. },
  5113. {
  5114. name: "Macro",
  5115. height: math.unit(20, "meter")
  5116. }
  5117. ]
  5118. ))
  5119. characterMakers.push(() => makeCharacter(
  5120. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5121. {
  5122. front: {
  5123. height: math.unit(2.8, "meter"),
  5124. weight: math.unit(200, "kg"),
  5125. name: "Front",
  5126. image: {
  5127. source: "./media/characters/elory/front.svg",
  5128. }
  5129. }
  5130. },
  5131. [
  5132. {
  5133. name: "Normal",
  5134. height: math.unit(2.8, "meter"),
  5135. default: true
  5136. },
  5137. {
  5138. name: "Macro",
  5139. height: math.unit(38, "meter")
  5140. }
  5141. ]
  5142. ))
  5143. characterMakers.push(() => makeCharacter(
  5144. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5145. {
  5146. front: {
  5147. height: math.unit(470, "feet"),
  5148. weight: math.unit(924, "tons"),
  5149. name: "Front",
  5150. image: {
  5151. source: "./media/characters/angelpatamon/front.svg",
  5152. }
  5153. }
  5154. },
  5155. [
  5156. {
  5157. name: "Normal",
  5158. height: math.unit(470, "feet"),
  5159. default: true
  5160. },
  5161. {
  5162. name: "Deity Size I",
  5163. height: math.unit(28651.2, "km")
  5164. },
  5165. {
  5166. name: "Deity Size II",
  5167. height: math.unit(171907.2, "km")
  5168. }
  5169. ]
  5170. ))
  5171. characterMakers.push(() => makeCharacter(
  5172. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5173. {
  5174. side: {
  5175. height: math.unit(7.2, "meter"),
  5176. weight: math.unit(8.2, "tons"),
  5177. name: "Side",
  5178. image: {
  5179. source: "./media/characters/cryae/side.svg",
  5180. extra: 3500 / 1500
  5181. }
  5182. }
  5183. },
  5184. [
  5185. {
  5186. name: "Normal",
  5187. height: math.unit(7.2, "meter"),
  5188. default: true
  5189. }
  5190. ]
  5191. ))
  5192. characterMakers.push(() => makeCharacter(
  5193. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5194. {
  5195. front: {
  5196. height: math.unit(6, "feet"),
  5197. weight: math.unit(175, "lb"),
  5198. name: "Front",
  5199. image: {
  5200. source: "./media/characters/xera/front.svg",
  5201. extra: 2377 / 1972,
  5202. bottom: 75.5 / 2452
  5203. }
  5204. },
  5205. side: {
  5206. height: math.unit(6, "feet"),
  5207. weight: math.unit(175, "lb"),
  5208. name: "Side",
  5209. image: {
  5210. source: "./media/characters/xera/side.svg",
  5211. extra: 2345 / 2019,
  5212. bottom: 39.7 / 2384
  5213. }
  5214. },
  5215. back: {
  5216. height: math.unit(6, "feet"),
  5217. weight: math.unit(175, "lb"),
  5218. name: "Back",
  5219. image: {
  5220. source: "./media/characters/xera/back.svg",
  5221. extra: 2095 / 1984,
  5222. bottom: 67 / 2166
  5223. }
  5224. },
  5225. },
  5226. [
  5227. {
  5228. name: "Small",
  5229. height: math.unit(10, "feet")
  5230. },
  5231. {
  5232. name: "Macro",
  5233. height: math.unit(500, "meters"),
  5234. default: true
  5235. },
  5236. {
  5237. name: "Macro+",
  5238. height: math.unit(10, "km")
  5239. },
  5240. {
  5241. name: "Gigamacro",
  5242. height: math.unit(25000, "km")
  5243. },
  5244. {
  5245. name: "Teramacro",
  5246. height: math.unit(3e6, "km")
  5247. }
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5252. {
  5253. front: {
  5254. height: math.unit(6, "feet"),
  5255. weight: math.unit(175, "lb"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/nebula/front.svg",
  5259. extra: 2566 / 2362,
  5260. bottom: 81 / 2644
  5261. }
  5262. }
  5263. },
  5264. [
  5265. {
  5266. name: "Small",
  5267. height: math.unit(4.5, "meters")
  5268. },
  5269. {
  5270. name: "Macro",
  5271. height: math.unit(1500, "meters"),
  5272. default: true
  5273. },
  5274. {
  5275. name: "Megamacro",
  5276. height: math.unit(150, "km")
  5277. },
  5278. {
  5279. name: "Gigamacro",
  5280. height: math.unit(27000, "km")
  5281. }
  5282. ]
  5283. ))
  5284. characterMakers.push(() => makeCharacter(
  5285. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5286. {
  5287. front: {
  5288. height: math.unit(6, "feet"),
  5289. weight: math.unit(225, "lb"),
  5290. name: "Front",
  5291. image: {
  5292. source: "./media/characters/abysgar/front.svg",
  5293. extra: 1739/1614,
  5294. bottom: 71/1810
  5295. }
  5296. },
  5297. frontNsfw: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(225, "lb"),
  5300. name: "Front (NSFW)",
  5301. image: {
  5302. source: "./media/characters/abysgar/front-nsfw.svg",
  5303. extra: 1739/1614,
  5304. bottom: 71/1810
  5305. }
  5306. },
  5307. back: {
  5308. height: math.unit(4.6, "feet"),
  5309. weight: math.unit(225, "lb"),
  5310. name: "Back",
  5311. image: {
  5312. source: "./media/characters/abysgar/back.svg",
  5313. extra: 1384/1327,
  5314. bottom: 0/1384
  5315. }
  5316. },
  5317. head: {
  5318. height: math.unit(1.25, "feet"),
  5319. name: "Head",
  5320. image: {
  5321. source: "./media/characters/abysgar/head.svg",
  5322. extra: 669/569,
  5323. bottom: 0/669
  5324. }
  5325. },
  5326. },
  5327. [
  5328. {
  5329. name: "Small",
  5330. height: math.unit(4.5, "meters")
  5331. },
  5332. {
  5333. name: "Macro",
  5334. height: math.unit(1250, "meters"),
  5335. default: true
  5336. },
  5337. {
  5338. name: "Megamacro",
  5339. height: math.unit(125, "km")
  5340. },
  5341. {
  5342. name: "Gigamacro",
  5343. height: math.unit(26000, "km")
  5344. }
  5345. ]
  5346. ))
  5347. characterMakers.push(() => makeCharacter(
  5348. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5349. {
  5350. front: {
  5351. height: math.unit(6, "feet"),
  5352. weight: math.unit(180, "lb"),
  5353. name: "Front",
  5354. image: {
  5355. source: "./media/characters/yakuz/front.svg"
  5356. }
  5357. }
  5358. },
  5359. [
  5360. {
  5361. name: "Small",
  5362. height: math.unit(5, "meters")
  5363. },
  5364. {
  5365. name: "Macro",
  5366. height: math.unit(1500, "meters"),
  5367. default: true
  5368. },
  5369. {
  5370. name: "Megamacro",
  5371. height: math.unit(200, "km")
  5372. },
  5373. {
  5374. name: "Gigamacro",
  5375. height: math.unit(100000, "km")
  5376. }
  5377. ]
  5378. ))
  5379. characterMakers.push(() => makeCharacter(
  5380. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5381. {
  5382. front: {
  5383. height: math.unit(6, "feet"),
  5384. weight: math.unit(175, "lb"),
  5385. name: "Front",
  5386. image: {
  5387. source: "./media/characters/mirova/front.svg",
  5388. extra: 3334 / 3071,
  5389. bottom: 42 / 3375.6
  5390. }
  5391. }
  5392. },
  5393. [
  5394. {
  5395. name: "Small",
  5396. height: math.unit(5, "meters")
  5397. },
  5398. {
  5399. name: "Macro",
  5400. height: math.unit(900, "meters"),
  5401. default: true
  5402. },
  5403. {
  5404. name: "Megamacro",
  5405. height: math.unit(135, "km")
  5406. },
  5407. {
  5408. name: "Gigamacro",
  5409. height: math.unit(20000, "km")
  5410. }
  5411. ]
  5412. ))
  5413. characterMakers.push(() => makeCharacter(
  5414. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5415. {
  5416. side: {
  5417. height: math.unit(28.35, "feet"),
  5418. weight: math.unit(99.75, "tons"),
  5419. name: "Side",
  5420. image: {
  5421. source: "./media/characters/asana-mech/side.svg",
  5422. extra: 923 / 699,
  5423. bottom: 50 / 975
  5424. }
  5425. },
  5426. chaingun: {
  5427. height: math.unit(7, "feet"),
  5428. weight: math.unit(2400, "lb"),
  5429. name: "Chaingun",
  5430. image: {
  5431. source: "./media/characters/asana-mech/chaingun.svg"
  5432. }
  5433. },
  5434. laser: {
  5435. height: math.unit(7.12, "feet"),
  5436. weight: math.unit(2000, "lb"),
  5437. name: "Laser",
  5438. image: {
  5439. source: "./media/characters/asana-mech/laser.svg"
  5440. }
  5441. },
  5442. },
  5443. [
  5444. {
  5445. name: "Normal",
  5446. height: math.unit(28.35, "feet"),
  5447. default: true
  5448. },
  5449. {
  5450. name: "Macro",
  5451. height: math.unit(2500, "feet")
  5452. },
  5453. {
  5454. name: "Megamacro",
  5455. height: math.unit(25, "miles")
  5456. },
  5457. {
  5458. name: "Examacro",
  5459. height: math.unit(6e8, "lightyears")
  5460. },
  5461. ]
  5462. ))
  5463. characterMakers.push(() => makeCharacter(
  5464. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5465. {
  5466. front: {
  5467. height: math.unit(5, "meters"),
  5468. weight: math.unit(1000, "kg"),
  5469. name: "Front",
  5470. image: {
  5471. source: "./media/characters/asche/front.svg",
  5472. extra: 1258 / 1190,
  5473. bottom: 47 / 1305
  5474. }
  5475. },
  5476. frontUnderwear: {
  5477. height: math.unit(5, "meters"),
  5478. weight: math.unit(1000, "kg"),
  5479. name: "Front (Underwear)",
  5480. image: {
  5481. source: "./media/characters/asche/front-underwear.svg",
  5482. extra: 1258 / 1190,
  5483. bottom: 47 / 1305
  5484. }
  5485. },
  5486. frontDressed: {
  5487. height: math.unit(5, "meters"),
  5488. weight: math.unit(1000, "kg"),
  5489. name: "Front (Dressed)",
  5490. image: {
  5491. source: "./media/characters/asche/front-dressed.svg",
  5492. extra: 1258 / 1190,
  5493. bottom: 47 / 1305
  5494. }
  5495. },
  5496. frontArmor: {
  5497. height: math.unit(5, "meters"),
  5498. weight: math.unit(1000, "kg"),
  5499. name: "Front (Armored)",
  5500. image: {
  5501. source: "./media/characters/asche/front-armored.svg",
  5502. extra: 1374 / 1308,
  5503. bottom: 23 / 1397
  5504. }
  5505. },
  5506. mp724: {
  5507. height: math.unit(0.96, "meters"),
  5508. weight: math.unit(38, "kg"),
  5509. name: "H&K MP724",
  5510. image: {
  5511. source: "./media/characters/asche/h&k-mp724.svg"
  5512. }
  5513. },
  5514. side: {
  5515. height: math.unit(5, "meters"),
  5516. weight: math.unit(1000, "kg"),
  5517. name: "Side",
  5518. image: {
  5519. source: "./media/characters/asche/side.svg",
  5520. extra: 1717 / 1609,
  5521. bottom: 0.005
  5522. }
  5523. },
  5524. back: {
  5525. height: math.unit(5, "meters"),
  5526. weight: math.unit(1000, "kg"),
  5527. name: "Back",
  5528. image: {
  5529. source: "./media/characters/asche/back.svg",
  5530. extra: 1570 / 1501
  5531. }
  5532. },
  5533. },
  5534. [
  5535. {
  5536. name: "DEFCON 5",
  5537. height: math.unit(5, "meters")
  5538. },
  5539. {
  5540. name: "DEFCON 4",
  5541. height: math.unit(500, "meters"),
  5542. default: true
  5543. },
  5544. {
  5545. name: "DEFCON 3",
  5546. height: math.unit(5, "km")
  5547. },
  5548. {
  5549. name: "DEFCON 2",
  5550. height: math.unit(500, "km")
  5551. },
  5552. {
  5553. name: "DEFCON 1",
  5554. height: math.unit(500000, "km")
  5555. },
  5556. {
  5557. name: "DEFCON 0",
  5558. height: math.unit(3, "gigaparsecs")
  5559. },
  5560. ]
  5561. ))
  5562. characterMakers.push(() => makeCharacter(
  5563. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5564. {
  5565. front: {
  5566. height: math.unit(7, "feet"),
  5567. weight: math.unit(92.7, "kg"),
  5568. name: "Front",
  5569. image: {
  5570. source: "./media/characters/gale/front.svg",
  5571. extra: 977/919,
  5572. bottom: 105/1082
  5573. }
  5574. },
  5575. side: {
  5576. height: math.unit(6.7, "feet"),
  5577. weight: math.unit(92.7, "kg"),
  5578. name: "Side",
  5579. image: {
  5580. source: "./media/characters/gale/side.svg",
  5581. extra: 978/922,
  5582. bottom: 140/1118
  5583. }
  5584. },
  5585. back: {
  5586. height: math.unit(7, "feet"),
  5587. weight: math.unit(92.7, "kg"),
  5588. name: "Back",
  5589. image: {
  5590. source: "./media/characters/gale/back.svg",
  5591. extra: 966/920,
  5592. bottom: 61/1027
  5593. }
  5594. },
  5595. maw: {
  5596. height: math.unit(2.23, "feet"),
  5597. name: "Maw",
  5598. image: {
  5599. source: "./media/characters/gale/maw.svg"
  5600. }
  5601. },
  5602. foot: {
  5603. height: math.unit(2.1, "feet"),
  5604. name: "Foot",
  5605. image: {
  5606. source: "./media/characters/gale/foot.svg"
  5607. }
  5608. },
  5609. },
  5610. [
  5611. {
  5612. name: "Normal",
  5613. height: math.unit(7, "feet")
  5614. },
  5615. {
  5616. name: "Macro",
  5617. height: math.unit(150, "feet"),
  5618. default: true
  5619. },
  5620. {
  5621. name: "Macro+",
  5622. height: math.unit(300, "feet")
  5623. },
  5624. ]
  5625. ))
  5626. characterMakers.push(() => makeCharacter(
  5627. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5628. {
  5629. front: {
  5630. height: math.unit(5 + 10/12, "feet"),
  5631. weight: math.unit(67, "kg"),
  5632. name: "Front",
  5633. image: {
  5634. source: "./media/characters/draylen/front.svg",
  5635. extra: 832/777,
  5636. bottom: 85/917
  5637. }
  5638. }
  5639. },
  5640. [
  5641. {
  5642. name: "Normal",
  5643. height: math.unit(5 + 10/12, "feet")
  5644. },
  5645. {
  5646. name: "Macro",
  5647. height: math.unit(150, "feet"),
  5648. default: true
  5649. }
  5650. ]
  5651. ))
  5652. characterMakers.push(() => makeCharacter(
  5653. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5654. {
  5655. front: {
  5656. height: math.unit(7 + 9 / 12, "feet"),
  5657. weight: math.unit(379, "lbs"),
  5658. name: "Front",
  5659. image: {
  5660. source: "./media/characters/chez/front.svg"
  5661. }
  5662. },
  5663. side: {
  5664. height: math.unit(7 + 9 / 12, "feet"),
  5665. weight: math.unit(379, "lbs"),
  5666. name: "Side",
  5667. image: {
  5668. source: "./media/characters/chez/side.svg"
  5669. }
  5670. }
  5671. },
  5672. [
  5673. {
  5674. name: "Normal",
  5675. height: math.unit(7 + 9 / 12, "feet"),
  5676. default: true
  5677. },
  5678. {
  5679. name: "God King",
  5680. height: math.unit(9750000, "meters")
  5681. }
  5682. ]
  5683. ))
  5684. characterMakers.push(() => makeCharacter(
  5685. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5686. {
  5687. front: {
  5688. height: math.unit(6, "feet"),
  5689. weight: math.unit(275, "lbs"),
  5690. name: "Front",
  5691. image: {
  5692. source: "./media/characters/kaylum/front.svg",
  5693. bottom: 0.01,
  5694. extra: 1166 / 1031
  5695. }
  5696. },
  5697. frontWingless: {
  5698. height: math.unit(6, "feet"),
  5699. weight: math.unit(275, "lbs"),
  5700. name: "Front (Wingless)",
  5701. image: {
  5702. source: "./media/characters/kaylum/front-wingless.svg",
  5703. bottom: 0.01,
  5704. extra: 1117 / 1031
  5705. }
  5706. }
  5707. },
  5708. [
  5709. {
  5710. name: "Normal",
  5711. height: math.unit(3.05, "meters")
  5712. },
  5713. {
  5714. name: "Master",
  5715. height: math.unit(5.5, "meters")
  5716. },
  5717. {
  5718. name: "Rampage",
  5719. height: math.unit(19, "meters")
  5720. },
  5721. {
  5722. name: "Macro Lite",
  5723. height: math.unit(37, "meters")
  5724. },
  5725. {
  5726. name: "Hyper Predator",
  5727. height: math.unit(61, "meters")
  5728. },
  5729. {
  5730. name: "Macro",
  5731. height: math.unit(138, "meters"),
  5732. default: true
  5733. }
  5734. ]
  5735. ))
  5736. characterMakers.push(() => makeCharacter(
  5737. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5738. {
  5739. front: {
  5740. height: math.unit(5 + 5 / 12, "feet"),
  5741. weight: math.unit(120, "lbs"),
  5742. name: "Front",
  5743. image: {
  5744. source: "./media/characters/geta/front.svg",
  5745. extra: 1003/933,
  5746. bottom: 21/1024
  5747. }
  5748. },
  5749. paw: {
  5750. height: math.unit(0.35, "feet"),
  5751. name: "Paw",
  5752. image: {
  5753. source: "./media/characters/geta/paw.svg"
  5754. }
  5755. },
  5756. },
  5757. [
  5758. {
  5759. name: "Micro",
  5760. height: math.unit(3, "inches"),
  5761. default: true
  5762. },
  5763. {
  5764. name: "Normal",
  5765. height: math.unit(5 + 5 / 12, "feet")
  5766. }
  5767. ]
  5768. ))
  5769. characterMakers.push(() => makeCharacter(
  5770. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5771. {
  5772. front: {
  5773. height: math.unit(6, "feet"),
  5774. weight: math.unit(300, "lbs"),
  5775. name: "Front",
  5776. image: {
  5777. source: "./media/characters/tyrnn/front.svg"
  5778. }
  5779. }
  5780. },
  5781. [
  5782. {
  5783. name: "Main Height",
  5784. height: math.unit(355, "feet"),
  5785. default: true
  5786. },
  5787. {
  5788. name: "Fave. Height",
  5789. height: math.unit(2400, "feet")
  5790. }
  5791. ]
  5792. ))
  5793. characterMakers.push(() => makeCharacter(
  5794. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5795. {
  5796. front: {
  5797. height: math.unit(6, "feet"),
  5798. weight: math.unit(300, "lbs"),
  5799. name: "Front",
  5800. image: {
  5801. source: "./media/characters/appledectomy/front.svg"
  5802. }
  5803. }
  5804. },
  5805. [
  5806. {
  5807. name: "Macro",
  5808. height: math.unit(2500, "feet")
  5809. },
  5810. {
  5811. name: "Megamacro",
  5812. height: math.unit(50, "miles"),
  5813. default: true
  5814. },
  5815. {
  5816. name: "Gigamacro",
  5817. height: math.unit(5000, "miles")
  5818. },
  5819. {
  5820. name: "Teramacro",
  5821. height: math.unit(250000, "miles")
  5822. },
  5823. ]
  5824. ))
  5825. characterMakers.push(() => makeCharacter(
  5826. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5827. {
  5828. front: {
  5829. height: math.unit(6, "feet"),
  5830. weight: math.unit(200, "lbs"),
  5831. name: "Front",
  5832. image: {
  5833. source: "./media/characters/vulpes/front.svg",
  5834. extra: 573 / 543,
  5835. bottom: 0.033
  5836. }
  5837. },
  5838. side: {
  5839. height: math.unit(6, "feet"),
  5840. weight: math.unit(200, "lbs"),
  5841. name: "Side",
  5842. image: {
  5843. source: "./media/characters/vulpes/side.svg",
  5844. extra: 577 / 549,
  5845. bottom: 11 / 588
  5846. }
  5847. },
  5848. back: {
  5849. height: math.unit(6, "feet"),
  5850. weight: math.unit(200, "lbs"),
  5851. name: "Back",
  5852. image: {
  5853. source: "./media/characters/vulpes/back.svg",
  5854. extra: 573 / 549,
  5855. bottom: 20 / 593
  5856. }
  5857. },
  5858. feet: {
  5859. height: math.unit(1.276, "feet"),
  5860. name: "Feet",
  5861. image: {
  5862. source: "./media/characters/vulpes/feet.svg"
  5863. }
  5864. },
  5865. maw: {
  5866. height: math.unit(1.18, "feet"),
  5867. name: "Maw",
  5868. image: {
  5869. source: "./media/characters/vulpes/maw.svg"
  5870. }
  5871. },
  5872. },
  5873. [
  5874. {
  5875. name: "Micro",
  5876. height: math.unit(2, "inches")
  5877. },
  5878. {
  5879. name: "Normal",
  5880. height: math.unit(6.3, "feet")
  5881. },
  5882. {
  5883. name: "Macro",
  5884. height: math.unit(850, "feet")
  5885. },
  5886. {
  5887. name: "Megamacro",
  5888. height: math.unit(7500, "feet"),
  5889. default: true
  5890. },
  5891. {
  5892. name: "Gigamacro",
  5893. height: math.unit(570000, "miles")
  5894. }
  5895. ]
  5896. ))
  5897. characterMakers.push(() => makeCharacter(
  5898. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5899. {
  5900. front: {
  5901. height: math.unit(6, "feet"),
  5902. weight: math.unit(210, "lbs"),
  5903. name: "Front",
  5904. image: {
  5905. source: "./media/characters/rain-fallen/front.svg"
  5906. }
  5907. },
  5908. side: {
  5909. height: math.unit(6, "feet"),
  5910. weight: math.unit(210, "lbs"),
  5911. name: "Side",
  5912. image: {
  5913. source: "./media/characters/rain-fallen/side.svg"
  5914. }
  5915. },
  5916. back: {
  5917. height: math.unit(6, "feet"),
  5918. weight: math.unit(210, "lbs"),
  5919. name: "Back",
  5920. image: {
  5921. source: "./media/characters/rain-fallen/back.svg"
  5922. }
  5923. },
  5924. feral: {
  5925. height: math.unit(9, "feet"),
  5926. weight: math.unit(700, "lbs"),
  5927. name: "Feral",
  5928. image: {
  5929. source: "./media/characters/rain-fallen/feral.svg"
  5930. }
  5931. },
  5932. },
  5933. [
  5934. {
  5935. name: "Meddling with Mortals",
  5936. height: math.unit(8 + 8/12, "feet")
  5937. },
  5938. {
  5939. name: "Normal",
  5940. height: math.unit(5, "meter")
  5941. },
  5942. {
  5943. name: "Macro",
  5944. height: math.unit(150, "meter"),
  5945. default: true
  5946. },
  5947. {
  5948. name: "Megamacro",
  5949. height: math.unit(278e6, "meter")
  5950. },
  5951. {
  5952. name: "Gigamacro",
  5953. height: math.unit(2e9, "meter")
  5954. },
  5955. {
  5956. name: "Teramacro",
  5957. height: math.unit(8e12, "meter")
  5958. },
  5959. {
  5960. name: "Devourer",
  5961. height: math.unit(14, "zettameters")
  5962. },
  5963. {
  5964. name: "Scarlet King",
  5965. height: math.unit(18, "yottameters")
  5966. },
  5967. {
  5968. name: "Void",
  5969. height: math.unit(1e88, "yottameters")
  5970. }
  5971. ]
  5972. ))
  5973. characterMakers.push(() => makeCharacter(
  5974. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5975. {
  5976. standing: {
  5977. height: math.unit(6, "feet"),
  5978. weight: math.unit(180, "lbs"),
  5979. name: "Standing",
  5980. image: {
  5981. source: "./media/characters/zaakira/standing.svg",
  5982. extra: 1599/1504,
  5983. bottom: 39/1638
  5984. }
  5985. },
  5986. laying: {
  5987. height: math.unit(3.3, "feet"),
  5988. weight: math.unit(180, "lbs"),
  5989. name: "Laying",
  5990. image: {
  5991. source: "./media/characters/zaakira/laying.svg"
  5992. }
  5993. },
  5994. },
  5995. [
  5996. {
  5997. name: "Normal",
  5998. height: math.unit(12, "feet")
  5999. },
  6000. {
  6001. name: "Macro",
  6002. height: math.unit(279, "feet"),
  6003. default: true
  6004. }
  6005. ]
  6006. ))
  6007. characterMakers.push(() => makeCharacter(
  6008. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6009. {
  6010. femSfw: {
  6011. height: math.unit(8, "feet"),
  6012. weight: math.unit(350, "lb"),
  6013. name: "Fem",
  6014. image: {
  6015. source: "./media/characters/sigvald/fem-sfw.svg",
  6016. extra: 182 / 164,
  6017. bottom: 8.7 / 190.5
  6018. }
  6019. },
  6020. femNsfw: {
  6021. height: math.unit(8, "feet"),
  6022. weight: math.unit(350, "lb"),
  6023. name: "Fem (NSFW)",
  6024. image: {
  6025. source: "./media/characters/sigvald/fem-nsfw.svg",
  6026. extra: 182 / 164,
  6027. bottom: 8.7 / 190.5
  6028. }
  6029. },
  6030. maleNsfw: {
  6031. height: math.unit(8, "feet"),
  6032. weight: math.unit(350, "lb"),
  6033. name: "Male (NSFW)",
  6034. image: {
  6035. source: "./media/characters/sigvald/male-nsfw.svg",
  6036. extra: 182 / 164,
  6037. bottom: 8.7 / 190.5
  6038. }
  6039. },
  6040. hermNsfw: {
  6041. height: math.unit(8, "feet"),
  6042. weight: math.unit(350, "lb"),
  6043. name: "Herm (NSFW)",
  6044. image: {
  6045. source: "./media/characters/sigvald/herm-nsfw.svg",
  6046. extra: 182 / 164,
  6047. bottom: 8.7 / 190.5
  6048. }
  6049. },
  6050. dick: {
  6051. height: math.unit(2.36, "feet"),
  6052. name: "Dick",
  6053. image: {
  6054. source: "./media/characters/sigvald/dick.svg"
  6055. }
  6056. },
  6057. eye: {
  6058. height: math.unit(0.31, "feet"),
  6059. name: "Eye",
  6060. image: {
  6061. source: "./media/characters/sigvald/eye.svg"
  6062. }
  6063. },
  6064. mouth: {
  6065. height: math.unit(0.92, "feet"),
  6066. name: "Mouth",
  6067. image: {
  6068. source: "./media/characters/sigvald/mouth.svg"
  6069. }
  6070. },
  6071. paws: {
  6072. height: math.unit(2.2, "feet"),
  6073. name: "Paws",
  6074. image: {
  6075. source: "./media/characters/sigvald/paws.svg"
  6076. }
  6077. }
  6078. },
  6079. [
  6080. {
  6081. name: "Normal",
  6082. height: math.unit(8, "feet")
  6083. },
  6084. {
  6085. name: "Large",
  6086. height: math.unit(12, "feet")
  6087. },
  6088. {
  6089. name: "Larger",
  6090. height: math.unit(20, "feet")
  6091. },
  6092. {
  6093. name: "Macro",
  6094. height: math.unit(150, "feet")
  6095. },
  6096. {
  6097. name: "Macro+",
  6098. height: math.unit(200, "feet"),
  6099. default: true
  6100. },
  6101. ]
  6102. ))
  6103. characterMakers.push(() => makeCharacter(
  6104. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6105. {
  6106. side: {
  6107. height: math.unit(12, "feet"),
  6108. weight: math.unit(2000, "kg"),
  6109. name: "Side",
  6110. image: {
  6111. source: "./media/characters/scott/side.svg",
  6112. extra: 754 / 724,
  6113. bottom: 0.069
  6114. }
  6115. },
  6116. upright: {
  6117. height: math.unit(12, "feet"),
  6118. weight: math.unit(2000, "kg"),
  6119. name: "Upright",
  6120. image: {
  6121. source: "./media/characters/scott/upright.svg",
  6122. extra: 3881 / 3722,
  6123. bottom: 0.05
  6124. }
  6125. },
  6126. },
  6127. [
  6128. {
  6129. name: "Normal",
  6130. height: math.unit(12, "feet"),
  6131. default: true
  6132. },
  6133. ]
  6134. ))
  6135. characterMakers.push(() => makeCharacter(
  6136. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6137. {
  6138. side: {
  6139. height: math.unit(8, "meters"),
  6140. weight: math.unit(84755, "lbs"),
  6141. name: "Side",
  6142. image: {
  6143. source: "./media/characters/tobias/side.svg",
  6144. extra: 1474 / 1096,
  6145. bottom: 38.9 / 1513.1235
  6146. }
  6147. },
  6148. maw: {
  6149. height: math.unit(2.3, "meters"),
  6150. name: "Maw",
  6151. image: {
  6152. source: "./media/characters/tobias/maw.svg"
  6153. }
  6154. },
  6155. burp: {
  6156. height: math.unit(2.85, "meters"),
  6157. name: "Burp",
  6158. image: {
  6159. source: "./media/characters/tobias/burp.svg"
  6160. }
  6161. },
  6162. },
  6163. [
  6164. {
  6165. name: "Normal",
  6166. height: math.unit(8, "meters"),
  6167. default: true
  6168. },
  6169. ]
  6170. ))
  6171. characterMakers.push(() => makeCharacter(
  6172. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6173. {
  6174. front: {
  6175. height: math.unit(5.5, "feet"),
  6176. weight: math.unit(400, "lbs"),
  6177. name: "Front",
  6178. image: {
  6179. source: "./media/characters/kieran/front.svg",
  6180. extra: 2694 / 2364,
  6181. bottom: 217 / 2908
  6182. }
  6183. },
  6184. side: {
  6185. height: math.unit(5.5, "feet"),
  6186. weight: math.unit(400, "lbs"),
  6187. name: "Side",
  6188. image: {
  6189. source: "./media/characters/kieran/side.svg",
  6190. extra: 875 / 777,
  6191. bottom: 84.6 / 959
  6192. }
  6193. },
  6194. },
  6195. [
  6196. {
  6197. name: "Normal",
  6198. height: math.unit(5.5, "feet"),
  6199. default: true
  6200. },
  6201. ]
  6202. ))
  6203. characterMakers.push(() => makeCharacter(
  6204. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6205. {
  6206. side: {
  6207. height: math.unit(2, "meters"),
  6208. weight: math.unit(70, "kg"),
  6209. name: "Side",
  6210. image: {
  6211. source: "./media/characters/sanya/side.svg",
  6212. bottom: 0.02,
  6213. extra: 1.02
  6214. }
  6215. },
  6216. },
  6217. [
  6218. {
  6219. name: "Small",
  6220. height: math.unit(2, "meters")
  6221. },
  6222. {
  6223. name: "Normal",
  6224. height: math.unit(3, "meters")
  6225. },
  6226. {
  6227. name: "Macro",
  6228. height: math.unit(16, "meters"),
  6229. default: true
  6230. },
  6231. ]
  6232. ))
  6233. characterMakers.push(() => makeCharacter(
  6234. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6235. {
  6236. front: {
  6237. height: math.unit(2, "meters"),
  6238. weight: math.unit(120, "kg"),
  6239. name: "Front",
  6240. image: {
  6241. source: "./media/characters/miranda/front.svg",
  6242. extra: 195 / 185,
  6243. bottom: 10.9 / 206.5
  6244. }
  6245. },
  6246. back: {
  6247. height: math.unit(2, "meters"),
  6248. weight: math.unit(120, "kg"),
  6249. name: "Back",
  6250. image: {
  6251. source: "./media/characters/miranda/back.svg",
  6252. extra: 201 / 193,
  6253. bottom: 2.3 / 203.7
  6254. }
  6255. },
  6256. },
  6257. [
  6258. {
  6259. name: "Normal",
  6260. height: math.unit(10, "feet"),
  6261. default: true
  6262. }
  6263. ]
  6264. ))
  6265. characterMakers.push(() => makeCharacter(
  6266. { name: "James", species: ["deer"], tags: ["anthro"] },
  6267. {
  6268. side: {
  6269. height: math.unit(2, "meters"),
  6270. weight: math.unit(100, "kg"),
  6271. name: "Front",
  6272. image: {
  6273. source: "./media/characters/james/front.svg",
  6274. extra: 10 / 8.5
  6275. }
  6276. },
  6277. },
  6278. [
  6279. {
  6280. name: "Normal",
  6281. height: math.unit(8.5, "feet"),
  6282. default: true
  6283. }
  6284. ]
  6285. ))
  6286. characterMakers.push(() => makeCharacter(
  6287. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6288. {
  6289. side: {
  6290. height: math.unit(9.5, "feet"),
  6291. weight: math.unit(2500, "lbs"),
  6292. name: "Side",
  6293. image: {
  6294. source: "./media/characters/heather/side.svg"
  6295. }
  6296. },
  6297. },
  6298. [
  6299. {
  6300. name: "Normal",
  6301. height: math.unit(9.5, "feet"),
  6302. default: true
  6303. }
  6304. ]
  6305. ))
  6306. characterMakers.push(() => makeCharacter(
  6307. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6308. {
  6309. side: {
  6310. height: math.unit(6.5, "feet"),
  6311. weight: math.unit(400, "lbs"),
  6312. name: "Side",
  6313. image: {
  6314. source: "./media/characters/lukas/side.svg",
  6315. extra: 7.25 / 6.5
  6316. }
  6317. },
  6318. },
  6319. [
  6320. {
  6321. name: "Normal",
  6322. height: math.unit(6.5, "feet"),
  6323. default: true
  6324. }
  6325. ]
  6326. ))
  6327. characterMakers.push(() => makeCharacter(
  6328. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6329. {
  6330. side: {
  6331. height: math.unit(5, "feet"),
  6332. weight: math.unit(3000, "lbs"),
  6333. name: "Side",
  6334. image: {
  6335. source: "./media/characters/louise/side.svg"
  6336. }
  6337. },
  6338. },
  6339. [
  6340. {
  6341. name: "Normal",
  6342. height: math.unit(5, "feet"),
  6343. default: true
  6344. }
  6345. ]
  6346. ))
  6347. characterMakers.push(() => makeCharacter(
  6348. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6349. {
  6350. side: {
  6351. height: math.unit(6, "feet"),
  6352. weight: math.unit(150, "lbs"),
  6353. name: "Side",
  6354. image: {
  6355. source: "./media/characters/ramona/side.svg",
  6356. extra: 871/854,
  6357. bottom: 41/912
  6358. }
  6359. },
  6360. },
  6361. [
  6362. {
  6363. name: "Normal",
  6364. height: math.unit(6 + 4/12, "feet")
  6365. },
  6366. {
  6367. name: "Minimacro",
  6368. height: math.unit(5.3, "meters"),
  6369. default: true
  6370. },
  6371. {
  6372. name: "Macro",
  6373. height: math.unit(20, "stories")
  6374. },
  6375. {
  6376. name: "Macro+",
  6377. height: math.unit(50, "stories")
  6378. },
  6379. ]
  6380. ))
  6381. characterMakers.push(() => makeCharacter(
  6382. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6383. {
  6384. standing: {
  6385. height: math.unit(5.75, "feet"),
  6386. weight: math.unit(160, "lbs"),
  6387. name: "Standing",
  6388. image: {
  6389. source: "./media/characters/deerpuff/standing.svg",
  6390. extra: 682 / 624
  6391. }
  6392. },
  6393. sitting: {
  6394. height: math.unit(5.75 / 1.79, "feet"),
  6395. weight: math.unit(160, "lbs"),
  6396. name: "Sitting",
  6397. image: {
  6398. source: "./media/characters/deerpuff/sitting.svg",
  6399. bottom: 44 / 400,
  6400. extra: 1
  6401. }
  6402. },
  6403. taurLaying: {
  6404. height: math.unit(6, "feet"),
  6405. weight: math.unit(400, "lbs"),
  6406. name: "Taur (Laying)",
  6407. image: {
  6408. source: "./media/characters/deerpuff/taur-laying.svg"
  6409. }
  6410. },
  6411. },
  6412. [
  6413. {
  6414. name: "Puffball",
  6415. height: math.unit(6, "inches")
  6416. },
  6417. {
  6418. name: "Normalpuff",
  6419. height: math.unit(5.75, "feet")
  6420. },
  6421. {
  6422. name: "Macropuff",
  6423. height: math.unit(1500, "feet"),
  6424. default: true
  6425. },
  6426. {
  6427. name: "Megapuff",
  6428. height: math.unit(500, "miles")
  6429. },
  6430. {
  6431. name: "Gigapuff",
  6432. height: math.unit(250000, "miles")
  6433. },
  6434. {
  6435. name: "Omegapuff",
  6436. height: math.unit(1000, "lightyears")
  6437. },
  6438. ]
  6439. ))
  6440. characterMakers.push(() => makeCharacter(
  6441. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6442. {
  6443. stomping: {
  6444. height: math.unit(6, "feet"),
  6445. weight: math.unit(170, "lbs"),
  6446. name: "Stomping",
  6447. image: {
  6448. source: "./media/characters/vivian/stomping.svg"
  6449. }
  6450. },
  6451. sitting: {
  6452. height: math.unit(6 / 1.75, "feet"),
  6453. weight: math.unit(170, "lbs"),
  6454. name: "Sitting",
  6455. image: {
  6456. source: "./media/characters/vivian/sitting.svg",
  6457. bottom: 1 / 6.4,
  6458. extra: 1,
  6459. }
  6460. },
  6461. },
  6462. [
  6463. {
  6464. name: "Normal",
  6465. height: math.unit(7, "feet"),
  6466. default: true
  6467. },
  6468. {
  6469. name: "Macro",
  6470. height: math.unit(10, "stories")
  6471. },
  6472. {
  6473. name: "Macro+",
  6474. height: math.unit(30, "stories")
  6475. },
  6476. {
  6477. name: "Megamacro",
  6478. height: math.unit(10, "miles")
  6479. },
  6480. {
  6481. name: "Megamacro+",
  6482. height: math.unit(2750000, "meters")
  6483. },
  6484. ]
  6485. ))
  6486. characterMakers.push(() => makeCharacter(
  6487. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6488. {
  6489. front: {
  6490. height: math.unit(6, "feet"),
  6491. weight: math.unit(160, "lbs"),
  6492. name: "Front",
  6493. image: {
  6494. source: "./media/characters/prince/front.svg",
  6495. extra: 1938/1682,
  6496. bottom: 45/1983
  6497. }
  6498. },
  6499. back: {
  6500. height: math.unit(6, "feet"),
  6501. weight: math.unit(160, "lbs"),
  6502. name: "Back",
  6503. image: {
  6504. source: "./media/characters/prince/back.svg",
  6505. extra: 1955/1726,
  6506. bottom: 6/1961
  6507. }
  6508. },
  6509. },
  6510. [
  6511. {
  6512. name: "Normal",
  6513. height: math.unit(7.75, "feet"),
  6514. default: true
  6515. },
  6516. {
  6517. name: "Not cute",
  6518. height: math.unit(17, "feet")
  6519. },
  6520. {
  6521. name: "I said NOT",
  6522. height: math.unit(91, "feet")
  6523. },
  6524. {
  6525. name: "Please stop",
  6526. height: math.unit(560, "feet")
  6527. },
  6528. {
  6529. name: "What have you done",
  6530. height: math.unit(2200, "feet")
  6531. },
  6532. {
  6533. name: "Deer God",
  6534. height: math.unit(3.6, "miles")
  6535. },
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6540. {
  6541. standing: {
  6542. height: math.unit(6, "feet"),
  6543. weight: math.unit(300, "lbs"),
  6544. name: "Standing",
  6545. image: {
  6546. source: "./media/characters/psymon/standing.svg",
  6547. extra: 1888 / 1810,
  6548. bottom: 0.05
  6549. }
  6550. },
  6551. slithering: {
  6552. height: math.unit(6, "feet"),
  6553. weight: math.unit(300, "lbs"),
  6554. name: "Slithering",
  6555. image: {
  6556. source: "./media/characters/psymon/slithering.svg",
  6557. extra: 1330 / 1224
  6558. }
  6559. },
  6560. slitheringAlt: {
  6561. height: math.unit(6, "feet"),
  6562. weight: math.unit(300, "lbs"),
  6563. name: "Slithering (Alt)",
  6564. image: {
  6565. source: "./media/characters/psymon/slithering-alt.svg",
  6566. extra: 1330 / 1224
  6567. }
  6568. },
  6569. },
  6570. [
  6571. {
  6572. name: "Normal",
  6573. height: math.unit(11.25, "feet"),
  6574. default: true
  6575. },
  6576. {
  6577. name: "Large",
  6578. height: math.unit(27, "feet")
  6579. },
  6580. {
  6581. name: "Giant",
  6582. height: math.unit(87, "feet")
  6583. },
  6584. {
  6585. name: "Macro",
  6586. height: math.unit(365, "feet")
  6587. },
  6588. {
  6589. name: "Megamacro",
  6590. height: math.unit(3, "miles")
  6591. },
  6592. {
  6593. name: "World Serpent",
  6594. height: math.unit(8000, "miles")
  6595. },
  6596. ]
  6597. ))
  6598. characterMakers.push(() => makeCharacter(
  6599. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6600. {
  6601. front: {
  6602. height: math.unit(6, "feet"),
  6603. weight: math.unit(180, "lbs"),
  6604. name: "Front",
  6605. image: {
  6606. source: "./media/characters/daimos/front.svg",
  6607. extra: 4160 / 3897,
  6608. bottom: 0.021
  6609. }
  6610. }
  6611. },
  6612. [
  6613. {
  6614. name: "Normal",
  6615. height: math.unit(8, "feet"),
  6616. default: true
  6617. },
  6618. {
  6619. name: "Big Dog",
  6620. height: math.unit(22, "feet")
  6621. },
  6622. {
  6623. name: "Macro",
  6624. height: math.unit(127, "feet")
  6625. },
  6626. {
  6627. name: "Megamacro",
  6628. height: math.unit(3600, "feet")
  6629. },
  6630. ]
  6631. ))
  6632. characterMakers.push(() => makeCharacter(
  6633. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6634. {
  6635. side: {
  6636. height: math.unit(6, "feet"),
  6637. weight: math.unit(180, "lbs"),
  6638. name: "Side",
  6639. image: {
  6640. source: "./media/characters/blake/side.svg",
  6641. extra: 1212 / 1120,
  6642. bottom: 0.05
  6643. }
  6644. },
  6645. crouched: {
  6646. height: math.unit(6 * 0.57, "feet"),
  6647. weight: math.unit(180, "lbs"),
  6648. name: "Crouched",
  6649. image: {
  6650. source: "./media/characters/blake/crouched.svg",
  6651. extra: 840 / 587,
  6652. bottom: 0.04
  6653. }
  6654. },
  6655. bent: {
  6656. height: math.unit(6 * 0.75, "feet"),
  6657. weight: math.unit(180, "lbs"),
  6658. name: "Bent",
  6659. image: {
  6660. source: "./media/characters/blake/bent.svg",
  6661. extra: 592 / 544,
  6662. bottom: 0.035
  6663. }
  6664. },
  6665. },
  6666. [
  6667. {
  6668. name: "Normal",
  6669. height: math.unit(8 + 1 / 6, "feet"),
  6670. default: true
  6671. },
  6672. {
  6673. name: "Big Backside",
  6674. height: math.unit(37, "feet")
  6675. },
  6676. {
  6677. name: "Subway Shredder",
  6678. height: math.unit(72, "feet")
  6679. },
  6680. {
  6681. name: "City Carver",
  6682. height: math.unit(1675, "feet")
  6683. },
  6684. {
  6685. name: "Tectonic Tweaker",
  6686. height: math.unit(2300, "miles")
  6687. },
  6688. ]
  6689. ))
  6690. characterMakers.push(() => makeCharacter(
  6691. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6692. {
  6693. front: {
  6694. height: math.unit(6, "feet"),
  6695. weight: math.unit(180, "lbs"),
  6696. name: "Front",
  6697. image: {
  6698. source: "./media/characters/guisetto/front.svg",
  6699. extra: 856 / 817,
  6700. bottom: 0.06
  6701. }
  6702. },
  6703. airborne: {
  6704. height: math.unit(6, "feet"),
  6705. weight: math.unit(180, "lbs"),
  6706. name: "Airborne",
  6707. image: {
  6708. source: "./media/characters/guisetto/airborne.svg",
  6709. extra: 584 / 525
  6710. }
  6711. },
  6712. },
  6713. [
  6714. {
  6715. name: "Normal",
  6716. height: math.unit(10 + 11 / 12, "feet"),
  6717. default: true
  6718. },
  6719. {
  6720. name: "Large",
  6721. height: math.unit(35, "feet")
  6722. },
  6723. {
  6724. name: "Macro",
  6725. height: math.unit(475, "feet")
  6726. },
  6727. ]
  6728. ))
  6729. characterMakers.push(() => makeCharacter(
  6730. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6731. {
  6732. front: {
  6733. height: math.unit(6, "feet"),
  6734. weight: math.unit(180, "lbs"),
  6735. name: "Front",
  6736. image: {
  6737. source: "./media/characters/luxor/front.svg",
  6738. extra: 2940 / 2152
  6739. }
  6740. },
  6741. back: {
  6742. height: math.unit(6, "feet"),
  6743. weight: math.unit(180, "lbs"),
  6744. name: "Back",
  6745. image: {
  6746. source: "./media/characters/luxor/back.svg",
  6747. extra: 1083 / 960
  6748. }
  6749. },
  6750. },
  6751. [
  6752. {
  6753. name: "Normal",
  6754. height: math.unit(5 + 5 / 6, "feet"),
  6755. default: true
  6756. },
  6757. {
  6758. name: "Lamp",
  6759. height: math.unit(50, "feet")
  6760. },
  6761. {
  6762. name: "Lämp",
  6763. height: math.unit(300, "feet")
  6764. },
  6765. {
  6766. name: "The sun is a lamp",
  6767. height: math.unit(250000, "miles")
  6768. },
  6769. ]
  6770. ))
  6771. characterMakers.push(() => makeCharacter(
  6772. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6773. {
  6774. front: {
  6775. height: math.unit(6, "feet"),
  6776. weight: math.unit(50, "lbs"),
  6777. name: "Front",
  6778. image: {
  6779. source: "./media/characters/huoyan/front.svg"
  6780. }
  6781. },
  6782. side: {
  6783. height: math.unit(6, "feet"),
  6784. weight: math.unit(180, "lbs"),
  6785. name: "Side",
  6786. image: {
  6787. source: "./media/characters/huoyan/side.svg"
  6788. }
  6789. },
  6790. },
  6791. [
  6792. {
  6793. name: "Chef",
  6794. height: math.unit(9, "feet")
  6795. },
  6796. {
  6797. name: "Normal",
  6798. height: math.unit(65, "feet"),
  6799. default: true
  6800. },
  6801. {
  6802. name: "Macro",
  6803. height: math.unit(780, "feet")
  6804. },
  6805. {
  6806. name: "Flaming Mountain",
  6807. height: math.unit(4.8, "miles")
  6808. },
  6809. {
  6810. name: "Celestial",
  6811. height: math.unit(765000, "miles")
  6812. },
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6817. {
  6818. front: {
  6819. height: math.unit(5 + 3 / 4, "feet"),
  6820. weight: math.unit(120, "lbs"),
  6821. name: "Front",
  6822. image: {
  6823. source: "./media/characters/tails/front.svg"
  6824. }
  6825. }
  6826. },
  6827. [
  6828. {
  6829. name: "Normal",
  6830. height: math.unit(5 + 3 / 4, "feet"),
  6831. default: true
  6832. }
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6837. {
  6838. front: {
  6839. height: math.unit(4, "feet"),
  6840. weight: math.unit(50, "lbs"),
  6841. name: "Front",
  6842. image: {
  6843. source: "./media/characters/rainy/front.svg"
  6844. }
  6845. }
  6846. },
  6847. [
  6848. {
  6849. name: "Macro",
  6850. height: math.unit(800, "feet"),
  6851. default: true
  6852. }
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6857. {
  6858. front: {
  6859. height: math.unit(6, "feet"),
  6860. weight: math.unit(150, "lbs"),
  6861. name: "Front",
  6862. image: {
  6863. source: "./media/characters/rainier/front.svg"
  6864. }
  6865. }
  6866. },
  6867. [
  6868. {
  6869. name: "Micro",
  6870. height: math.unit(2, "mm"),
  6871. default: true
  6872. }
  6873. ]
  6874. ))
  6875. characterMakers.push(() => makeCharacter(
  6876. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6877. {
  6878. front: {
  6879. height: math.unit(8 + 4/12, "feet"),
  6880. weight: math.unit(450, "kilograms"),
  6881. name: "Front",
  6882. image: {
  6883. source: "./media/characters/andy-renard/front.svg",
  6884. extra: 862/809,
  6885. bottom: 85/947
  6886. },
  6887. extraAttributes: {
  6888. "pawSize": {
  6889. name: "Paw Size",
  6890. power: 2,
  6891. type: "area",
  6892. base: math.unit(0.45*0.3, "meters^2")
  6893. },
  6894. "handSize": {
  6895. name: "Hand Size",
  6896. power: 2,
  6897. type: "area",
  6898. base: math.unit(0.4 * 0.3, "meters^2")
  6899. },
  6900. "cockSize": {
  6901. name: "Cock Length",
  6902. power: 1,
  6903. type: "length",
  6904. base: math.unit(0.75, "meters")
  6905. },
  6906. "ballDiameter": {
  6907. name: "Ball Diameter",
  6908. power: 1,
  6909. type: "length",
  6910. base: math.unit(0.3, "meters")
  6911. },
  6912. "ballVolume": {
  6913. name: "Ball Volume",
  6914. power: 3,
  6915. type: "volume",
  6916. base: math.unit(0.01413716694, "meters^3")
  6917. },
  6918. }
  6919. },
  6920. back: {
  6921. height: math.unit(8 + 4/12, "feet"),
  6922. weight: math.unit(450, "kilograms"),
  6923. name: "Back",
  6924. image: {
  6925. source: "./media/characters/andy-renard/back.svg",
  6926. extra: 1112/1033,
  6927. bottom: 64/1176
  6928. },
  6929. extraAttributes: {
  6930. "pawSize": {
  6931. name: "Paw Size",
  6932. power: 2,
  6933. type: "area",
  6934. base: math.unit(0.45*0.3, "meters^2")
  6935. },
  6936. "handSize": {
  6937. name: "Hand Size",
  6938. power: 2,
  6939. type: "area",
  6940. base: math.unit(0.4 * 0.3, "meters^2")
  6941. },
  6942. "cockSize": {
  6943. name: "Cock Length",
  6944. power: 1,
  6945. type: "length",
  6946. base: math.unit(0.75, "meters")
  6947. },
  6948. "ballDiameter": {
  6949. name: "Ball Diameter",
  6950. power: 1,
  6951. type: "length",
  6952. base: math.unit(0.3, "meters")
  6953. },
  6954. "ballVolume": {
  6955. name: "Ball Volume",
  6956. power: 3,
  6957. type: "volume",
  6958. base: math.unit(0.01413716694, "meters^3")
  6959. },
  6960. }
  6961. },
  6962. },
  6963. [
  6964. {
  6965. name: "Tall",
  6966. height: math.unit(6 + 8/12, "feet")
  6967. },
  6968. {
  6969. name: "Very Tall",
  6970. height: math.unit(8 + 4/12, "feet")
  6971. },
  6972. {
  6973. name: "Mini Macro",
  6974. height: math.unit(15, "feet"),
  6975. default: true
  6976. },
  6977. {
  6978. name: "Giant",
  6979. height: math.unit(50, "feet")
  6980. },
  6981. {
  6982. name: "Nice",
  6983. height: math.unit(69, "feet")
  6984. },
  6985. {
  6986. name: "Macro",
  6987. height: math.unit(100, "feet")
  6988. },
  6989. {
  6990. name: "Enormous",
  6991. height: math.unit(500, "feet")
  6992. },
  6993. {
  6994. name: "Gargantuan",
  6995. height: math.unit(1000, "feet")
  6996. },
  6997. {
  6998. name: "Mega",
  6999. height: math.unit(1, "mile")
  7000. },
  7001. {
  7002. name: "Giga",
  7003. height: math.unit(50, "miles")
  7004. },
  7005. {
  7006. name: "Tera",
  7007. height: math.unit(1000, "miles")
  7008. },
  7009. {
  7010. name: "Cosmic",
  7011. height: math.unit(1.5, "galaxies")
  7012. },
  7013. {
  7014. name: "God",
  7015. height: math.unit(1.5, "universes")
  7016. },
  7017. {
  7018. name: "Chief Execute God",
  7019. height: math.unit(1.5, "multiverses")
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(6, "feet"),
  7028. weight: math.unit(210, "lbs"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/cimmaron/front-sfw.svg",
  7032. extra: 701 / 676,
  7033. bottom: 0.046
  7034. }
  7035. },
  7036. back: {
  7037. height: math.unit(6, "feet"),
  7038. weight: math.unit(210, "lbs"),
  7039. name: "Back",
  7040. image: {
  7041. source: "./media/characters/cimmaron/back-sfw.svg",
  7042. extra: 701 / 676,
  7043. bottom: 0.046
  7044. }
  7045. },
  7046. frontNsfw: {
  7047. height: math.unit(6, "feet"),
  7048. weight: math.unit(210, "lbs"),
  7049. name: "Front (NSFW)",
  7050. image: {
  7051. source: "./media/characters/cimmaron/front-nsfw.svg",
  7052. extra: 701 / 676,
  7053. bottom: 0.046
  7054. }
  7055. },
  7056. backNsfw: {
  7057. height: math.unit(6, "feet"),
  7058. weight: math.unit(210, "lbs"),
  7059. name: "Back (NSFW)",
  7060. image: {
  7061. source: "./media/characters/cimmaron/back-nsfw.svg",
  7062. extra: 701 / 676,
  7063. bottom: 0.046
  7064. }
  7065. },
  7066. dick: {
  7067. height: math.unit(1.714, "feet"),
  7068. name: "Dick",
  7069. image: {
  7070. source: "./media/characters/cimmaron/dick.svg"
  7071. }
  7072. },
  7073. },
  7074. [
  7075. {
  7076. name: "Normal",
  7077. height: math.unit(6, "feet"),
  7078. default: true
  7079. },
  7080. {
  7081. name: "Macro Mayor",
  7082. height: math.unit(350, "meters")
  7083. },
  7084. ]
  7085. ))
  7086. characterMakers.push(() => makeCharacter(
  7087. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7088. {
  7089. front: {
  7090. height: math.unit(6, "feet"),
  7091. weight: math.unit(200, "lbs"),
  7092. name: "Front",
  7093. image: {
  7094. source: "./media/characters/akari/front.svg",
  7095. extra: 962 / 901,
  7096. bottom: 0.04
  7097. }
  7098. }
  7099. },
  7100. [
  7101. {
  7102. name: "Micro",
  7103. height: math.unit(5, "inches"),
  7104. default: true
  7105. },
  7106. {
  7107. name: "Normal",
  7108. height: math.unit(7, "feet")
  7109. },
  7110. ]
  7111. ))
  7112. characterMakers.push(() => makeCharacter(
  7113. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7114. {
  7115. front: {
  7116. height: math.unit(6, "feet"),
  7117. weight: math.unit(140, "lbs"),
  7118. name: "Front",
  7119. image: {
  7120. source: "./media/characters/cynosura/front.svg",
  7121. extra: 437/410,
  7122. bottom: 9/446
  7123. }
  7124. },
  7125. back: {
  7126. height: math.unit(6, "feet"),
  7127. weight: math.unit(140, "lbs"),
  7128. name: "Back",
  7129. image: {
  7130. source: "./media/characters/cynosura/back.svg",
  7131. extra: 1304/1160,
  7132. bottom: 71/1375
  7133. }
  7134. },
  7135. },
  7136. [
  7137. {
  7138. name: "Micro",
  7139. height: math.unit(4, "inches")
  7140. },
  7141. {
  7142. name: "Normal",
  7143. height: math.unit(5.75, "feet"),
  7144. default: true
  7145. },
  7146. {
  7147. name: "Tall",
  7148. height: math.unit(10, "feet")
  7149. },
  7150. {
  7151. name: "Big",
  7152. height: math.unit(20, "feet")
  7153. },
  7154. {
  7155. name: "Macro",
  7156. height: math.unit(50, "feet")
  7157. },
  7158. ]
  7159. ))
  7160. characterMakers.push(() => makeCharacter(
  7161. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7162. {
  7163. front: {
  7164. height: math.unit(13 + 2/12, "feet"),
  7165. weight: math.unit(800, "kg"),
  7166. name: "Front",
  7167. image: {
  7168. source: "./media/characters/gin/front.svg",
  7169. extra: 1312/1191,
  7170. bottom: 45/1357
  7171. }
  7172. },
  7173. mouth: {
  7174. height: math.unit(2.39 * 1.8, "feet"),
  7175. name: "Mouth",
  7176. image: {
  7177. source: "./media/characters/gin/mouth.svg"
  7178. }
  7179. },
  7180. hand: {
  7181. height: math.unit(1.57 * 2.19, "feet"),
  7182. name: "Hand",
  7183. image: {
  7184. source: "./media/characters/gin/hand.svg"
  7185. }
  7186. },
  7187. foot: {
  7188. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7189. name: "Foot",
  7190. image: {
  7191. source: "./media/characters/gin/foot.svg"
  7192. }
  7193. },
  7194. sole: {
  7195. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7196. name: "Sole",
  7197. image: {
  7198. source: "./media/characters/gin/sole.svg"
  7199. }
  7200. },
  7201. },
  7202. [
  7203. {
  7204. name: "Very Small",
  7205. height: math.unit(13 + 2 / 12, "feet")
  7206. },
  7207. {
  7208. name: "Micro",
  7209. height: math.unit(600, "miles")
  7210. },
  7211. {
  7212. name: "Regular",
  7213. height: math.unit(20, "earths"),
  7214. default: true
  7215. },
  7216. {
  7217. name: "Macro",
  7218. height: math.unit(2.2, "solarradii")
  7219. },
  7220. {
  7221. name: "Teramacro",
  7222. height: math.unit(1.2, "galaxies")
  7223. },
  7224. {
  7225. name: "Omegamacro",
  7226. height: math.unit(200, "universes")
  7227. },
  7228. ]
  7229. ))
  7230. characterMakers.push(() => makeCharacter(
  7231. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7232. {
  7233. front: {
  7234. height: math.unit(6 + 1 / 6, "feet"),
  7235. weight: math.unit(178, "lbs"),
  7236. name: "Front",
  7237. image: {
  7238. source: "./media/characters/guy/front.svg"
  7239. }
  7240. }
  7241. },
  7242. [
  7243. {
  7244. name: "Normal",
  7245. height: math.unit(6 + 1 / 6, "feet"),
  7246. default: true
  7247. },
  7248. {
  7249. name: "Large",
  7250. height: math.unit(25 + 7 / 12, "feet")
  7251. },
  7252. {
  7253. name: "Macro",
  7254. height: math.unit(60 + 9 / 12, "feet")
  7255. },
  7256. {
  7257. name: "Macro+",
  7258. height: math.unit(246, "feet")
  7259. },
  7260. {
  7261. name: "Macro++",
  7262. height: math.unit(878, "feet")
  7263. }
  7264. ]
  7265. ))
  7266. characterMakers.push(() => makeCharacter(
  7267. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7268. {
  7269. front: {
  7270. height: math.unit(9, "feet"),
  7271. weight: math.unit(800, "lbs"),
  7272. name: "Front",
  7273. image: {
  7274. source: "./media/characters/tiberius/front.svg",
  7275. extra: 2295 / 2071
  7276. }
  7277. },
  7278. back: {
  7279. height: math.unit(9, "feet"),
  7280. weight: math.unit(800, "lbs"),
  7281. name: "Back",
  7282. image: {
  7283. source: "./media/characters/tiberius/back.svg",
  7284. extra: 2373 / 2160
  7285. }
  7286. },
  7287. },
  7288. [
  7289. {
  7290. name: "Normal",
  7291. height: math.unit(9, "feet"),
  7292. default: true
  7293. }
  7294. ]
  7295. ))
  7296. characterMakers.push(() => makeCharacter(
  7297. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7298. {
  7299. front: {
  7300. height: math.unit(6, "feet"),
  7301. weight: math.unit(600, "lbs"),
  7302. name: "Front",
  7303. image: {
  7304. source: "./media/characters/surgo/front.svg",
  7305. extra: 3591 / 2227
  7306. }
  7307. },
  7308. back: {
  7309. height: math.unit(6, "feet"),
  7310. weight: math.unit(600, "lbs"),
  7311. name: "Back",
  7312. image: {
  7313. source: "./media/characters/surgo/back.svg",
  7314. extra: 3557 / 2228
  7315. }
  7316. },
  7317. laying: {
  7318. height: math.unit(6 * 0.85, "feet"),
  7319. weight: math.unit(600, "lbs"),
  7320. name: "Laying",
  7321. image: {
  7322. source: "./media/characters/surgo/laying.svg"
  7323. }
  7324. },
  7325. },
  7326. [
  7327. {
  7328. name: "Normal",
  7329. height: math.unit(6, "feet"),
  7330. default: true
  7331. }
  7332. ]
  7333. ))
  7334. characterMakers.push(() => makeCharacter(
  7335. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7336. {
  7337. side: {
  7338. height: math.unit(6, "feet"),
  7339. weight: math.unit(150, "lbs"),
  7340. name: "Side",
  7341. image: {
  7342. source: "./media/characters/cibus/side.svg",
  7343. extra: 800 / 400
  7344. }
  7345. },
  7346. },
  7347. [
  7348. {
  7349. name: "Normal",
  7350. height: math.unit(6, "feet"),
  7351. default: true
  7352. }
  7353. ]
  7354. ))
  7355. characterMakers.push(() => makeCharacter(
  7356. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7357. {
  7358. front: {
  7359. height: math.unit(6, "feet"),
  7360. weight: math.unit(240, "lbs"),
  7361. name: "Front",
  7362. image: {
  7363. source: "./media/characters/nibbles/front.svg"
  7364. }
  7365. },
  7366. side: {
  7367. height: math.unit(6, "feet"),
  7368. weight: math.unit(240, "lbs"),
  7369. name: "Side",
  7370. image: {
  7371. source: "./media/characters/nibbles/side.svg"
  7372. }
  7373. },
  7374. },
  7375. [
  7376. {
  7377. name: "Normal",
  7378. height: math.unit(9, "feet"),
  7379. default: true
  7380. }
  7381. ]
  7382. ))
  7383. characterMakers.push(() => makeCharacter(
  7384. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7385. {
  7386. side: {
  7387. height: math.unit(5 + 1 / 6, "feet"),
  7388. weight: math.unit(130, "lbs"),
  7389. name: "Side",
  7390. image: {
  7391. source: "./media/characters/rikky/side.svg",
  7392. extra: 851 / 801
  7393. }
  7394. },
  7395. },
  7396. [
  7397. {
  7398. name: "Normal",
  7399. height: math.unit(5 + 1 / 6, "feet")
  7400. },
  7401. {
  7402. name: "Macro",
  7403. height: math.unit(152, "feet"),
  7404. default: true
  7405. },
  7406. {
  7407. name: "Megamacro",
  7408. height: math.unit(7, "miles")
  7409. }
  7410. ]
  7411. ))
  7412. characterMakers.push(() => makeCharacter(
  7413. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7414. {
  7415. side: {
  7416. height: math.unit(370, "cm"),
  7417. weight: math.unit(350, "lbs"),
  7418. name: "Side",
  7419. image: {
  7420. source: "./media/characters/malfressa/side.svg"
  7421. }
  7422. },
  7423. walking: {
  7424. height: math.unit(370, "cm"),
  7425. weight: math.unit(350, "lbs"),
  7426. name: "Walking",
  7427. image: {
  7428. source: "./media/characters/malfressa/walking.svg"
  7429. }
  7430. },
  7431. feral: {
  7432. height: math.unit(2500, "cm"),
  7433. weight: math.unit(100000, "lbs"),
  7434. name: "Feral",
  7435. image: {
  7436. source: "./media/characters/malfressa/feral.svg",
  7437. extra: 2108 / 837,
  7438. bottom: 0.02
  7439. }
  7440. },
  7441. },
  7442. [
  7443. {
  7444. name: "Normal",
  7445. height: math.unit(370, "cm")
  7446. },
  7447. {
  7448. name: "Macro",
  7449. height: math.unit(300, "meters"),
  7450. default: true
  7451. }
  7452. ]
  7453. ))
  7454. characterMakers.push(() => makeCharacter(
  7455. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7456. {
  7457. front: {
  7458. height: math.unit(6, "feet"),
  7459. weight: math.unit(60, "kg"),
  7460. name: "Front",
  7461. image: {
  7462. source: "./media/characters/jaro/front.svg",
  7463. extra: 845/817,
  7464. bottom: 45/890
  7465. }
  7466. },
  7467. back: {
  7468. height: math.unit(6, "feet"),
  7469. weight: math.unit(60, "kg"),
  7470. name: "Back",
  7471. image: {
  7472. source: "./media/characters/jaro/back.svg",
  7473. extra: 847/817,
  7474. bottom: 34/881
  7475. }
  7476. },
  7477. },
  7478. [
  7479. {
  7480. name: "Micro",
  7481. height: math.unit(7, "inches")
  7482. },
  7483. {
  7484. name: "Normal",
  7485. height: math.unit(5.5, "feet"),
  7486. default: true
  7487. },
  7488. {
  7489. name: "Minimacro",
  7490. height: math.unit(20, "feet")
  7491. },
  7492. {
  7493. name: "Macro",
  7494. height: math.unit(200, "meters")
  7495. }
  7496. ]
  7497. ))
  7498. characterMakers.push(() => makeCharacter(
  7499. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7500. {
  7501. front: {
  7502. height: math.unit(6, "feet"),
  7503. weight: math.unit(195, "lb"),
  7504. name: "Front",
  7505. image: {
  7506. source: "./media/characters/rogue/front.svg"
  7507. }
  7508. },
  7509. },
  7510. [
  7511. {
  7512. name: "Macro",
  7513. height: math.unit(90, "feet"),
  7514. default: true
  7515. },
  7516. ]
  7517. ))
  7518. characterMakers.push(() => makeCharacter(
  7519. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7520. {
  7521. standing: {
  7522. height: math.unit(5 + 8 / 12, "feet"),
  7523. weight: math.unit(140, "lb"),
  7524. name: "Standing",
  7525. image: {
  7526. source: "./media/characters/piper/standing.svg",
  7527. extra: 1440/1284,
  7528. bottom: 66/1506
  7529. }
  7530. },
  7531. running: {
  7532. height: math.unit(5 + 8 / 12, "feet"),
  7533. weight: math.unit(140, "lb"),
  7534. name: "Running",
  7535. image: {
  7536. source: "./media/characters/piper/running.svg",
  7537. extra: 3948/3655,
  7538. bottom: 0/3948
  7539. }
  7540. },
  7541. sole: {
  7542. height: math.unit(0.81, "feet"),
  7543. weight: math.unit(2, "kg"),
  7544. name: "Sole",
  7545. image: {
  7546. source: "./media/characters/piper/sole.svg"
  7547. }
  7548. },
  7549. nipple: {
  7550. height: math.unit(0.25, "feet"),
  7551. weight: math.unit(1.5, "lb"),
  7552. name: "Nipple",
  7553. image: {
  7554. source: "./media/characters/piper/nipple.svg"
  7555. }
  7556. },
  7557. head: {
  7558. height: math.unit(1.1, "feet"),
  7559. name: "Head",
  7560. image: {
  7561. source: "./media/characters/piper/head.svg"
  7562. }
  7563. },
  7564. },
  7565. [
  7566. {
  7567. name: "Micro",
  7568. height: math.unit(2, "inches")
  7569. },
  7570. {
  7571. name: "Normal",
  7572. height: math.unit(5 + 8 / 12, "feet")
  7573. },
  7574. {
  7575. name: "Macro",
  7576. height: math.unit(250, "feet"),
  7577. default: true
  7578. },
  7579. {
  7580. name: "Megamacro",
  7581. height: math.unit(7, "miles")
  7582. },
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(6, "feet"),
  7590. weight: math.unit(220, "lb"),
  7591. name: "Front",
  7592. image: {
  7593. source: "./media/characters/gemini/front.svg"
  7594. }
  7595. },
  7596. back: {
  7597. height: math.unit(6, "feet"),
  7598. weight: math.unit(220, "lb"),
  7599. name: "Back",
  7600. image: {
  7601. source: "./media/characters/gemini/back.svg"
  7602. }
  7603. },
  7604. kneeling: {
  7605. height: math.unit(6 / 1.5, "feet"),
  7606. weight: math.unit(220, "lb"),
  7607. name: "Kneeling",
  7608. image: {
  7609. source: "./media/characters/gemini/kneeling.svg",
  7610. bottom: 0.02
  7611. }
  7612. },
  7613. },
  7614. [
  7615. {
  7616. name: "Macro",
  7617. height: math.unit(300, "meters"),
  7618. default: true
  7619. },
  7620. {
  7621. name: "Megamacro",
  7622. height: math.unit(6900, "meters")
  7623. },
  7624. ]
  7625. ))
  7626. characterMakers.push(() => makeCharacter(
  7627. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7628. {
  7629. anthro: {
  7630. height: math.unit(2.35, "meters"),
  7631. weight: math.unit(73, "kg"),
  7632. name: "Anthro",
  7633. image: {
  7634. source: "./media/characters/alicia/anthro.svg",
  7635. extra: 2571 / 2385,
  7636. bottom: 75 / 2648
  7637. }
  7638. },
  7639. paw: {
  7640. height: math.unit(1.32, "feet"),
  7641. name: "Paw",
  7642. image: {
  7643. source: "./media/characters/alicia/paw.svg"
  7644. }
  7645. },
  7646. feral: {
  7647. height: math.unit(1.69, "meters"),
  7648. weight: math.unit(73, "kg"),
  7649. name: "Feral",
  7650. image: {
  7651. source: "./media/characters/alicia/feral.svg",
  7652. extra: 2123 / 1715,
  7653. bottom: 222 / 2349
  7654. }
  7655. },
  7656. },
  7657. [
  7658. {
  7659. name: "Normal",
  7660. height: math.unit(2.35, "meters")
  7661. },
  7662. {
  7663. name: "Macro",
  7664. height: math.unit(60, "meters"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Megamacro",
  7669. height: math.unit(10000, "kilometers")
  7670. },
  7671. ]
  7672. ))
  7673. characterMakers.push(() => makeCharacter(
  7674. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7675. {
  7676. front: {
  7677. height: math.unit(7, "feet"),
  7678. weight: math.unit(250, "lbs"),
  7679. name: "Front",
  7680. image: {
  7681. source: "./media/characters/archy/front.svg"
  7682. }
  7683. }
  7684. },
  7685. [
  7686. {
  7687. name: "Micro",
  7688. height: math.unit(1, "inch")
  7689. },
  7690. {
  7691. name: "Shorty",
  7692. height: math.unit(5, "feet")
  7693. },
  7694. {
  7695. name: "Normal",
  7696. height: math.unit(7, "feet")
  7697. },
  7698. {
  7699. name: "Macro",
  7700. height: math.unit(600, "meters"),
  7701. default: true
  7702. },
  7703. {
  7704. name: "Megamacro",
  7705. height: math.unit(1, "mile")
  7706. },
  7707. ]
  7708. ))
  7709. characterMakers.push(() => makeCharacter(
  7710. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7711. {
  7712. front: {
  7713. height: math.unit(1.65, "meters"),
  7714. weight: math.unit(74, "kg"),
  7715. name: "Front",
  7716. image: {
  7717. source: "./media/characters/berri/front.svg",
  7718. extra: 857 / 837,
  7719. bottom: 18 / 877
  7720. }
  7721. },
  7722. bum: {
  7723. height: math.unit(1.46, "feet"),
  7724. name: "Bum",
  7725. image: {
  7726. source: "./media/characters/berri/bum.svg"
  7727. }
  7728. },
  7729. mouth: {
  7730. height: math.unit(0.44, "feet"),
  7731. name: "Mouth",
  7732. image: {
  7733. source: "./media/characters/berri/mouth.svg"
  7734. }
  7735. },
  7736. paw: {
  7737. height: math.unit(0.826, "feet"),
  7738. name: "Paw",
  7739. image: {
  7740. source: "./media/characters/berri/paw.svg"
  7741. }
  7742. },
  7743. },
  7744. [
  7745. {
  7746. name: "Normal",
  7747. height: math.unit(1.65, "meters")
  7748. },
  7749. {
  7750. name: "Macro",
  7751. height: math.unit(60, "m"),
  7752. default: true
  7753. },
  7754. {
  7755. name: "Megamacro",
  7756. height: math.unit(9.213, "km")
  7757. },
  7758. {
  7759. name: "Planet Eater",
  7760. height: math.unit(489, "megameters")
  7761. },
  7762. {
  7763. name: "Teramacro",
  7764. height: math.unit(2471635000000, "meters")
  7765. },
  7766. {
  7767. name: "Examacro",
  7768. height: math.unit(8.0624e+26, "meters")
  7769. }
  7770. ]
  7771. ))
  7772. characterMakers.push(() => makeCharacter(
  7773. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7774. {
  7775. front: {
  7776. height: math.unit(1.72, "meters"),
  7777. weight: math.unit(68, "kg"),
  7778. name: "Front",
  7779. image: {
  7780. source: "./media/characters/lexi/front.svg"
  7781. }
  7782. }
  7783. },
  7784. [
  7785. {
  7786. name: "Very Smol",
  7787. height: math.unit(10, "mm")
  7788. },
  7789. {
  7790. name: "Micro",
  7791. height: math.unit(6.8, "cm"),
  7792. default: true
  7793. },
  7794. {
  7795. name: "Normal",
  7796. height: math.unit(1.72, "m")
  7797. }
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7802. {
  7803. front: {
  7804. height: math.unit(1.69, "meters"),
  7805. weight: math.unit(68, "kg"),
  7806. name: "Front",
  7807. image: {
  7808. source: "./media/characters/martin/front.svg",
  7809. extra: 596 / 581
  7810. }
  7811. }
  7812. },
  7813. [
  7814. {
  7815. name: "Micro",
  7816. height: math.unit(6.85, "cm"),
  7817. default: true
  7818. },
  7819. {
  7820. name: "Normal",
  7821. height: math.unit(1.69, "m")
  7822. }
  7823. ]
  7824. ))
  7825. characterMakers.push(() => makeCharacter(
  7826. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7827. {
  7828. front: {
  7829. height: math.unit(1.69, "meters"),
  7830. weight: math.unit(68, "kg"),
  7831. name: "Front",
  7832. image: {
  7833. source: "./media/characters/juno/front.svg"
  7834. }
  7835. }
  7836. },
  7837. [
  7838. {
  7839. name: "Micro",
  7840. height: math.unit(7, "cm")
  7841. },
  7842. {
  7843. name: "Normal",
  7844. height: math.unit(1.89, "m")
  7845. },
  7846. {
  7847. name: "Macro",
  7848. height: math.unit(353, "meters"),
  7849. default: true
  7850. }
  7851. ]
  7852. ))
  7853. characterMakers.push(() => makeCharacter(
  7854. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7855. {
  7856. front: {
  7857. height: math.unit(1.93, "meters"),
  7858. weight: math.unit(83, "kg"),
  7859. name: "Front",
  7860. image: {
  7861. source: "./media/characters/samantha/front.svg"
  7862. }
  7863. },
  7864. frontClothed: {
  7865. height: math.unit(1.93, "meters"),
  7866. weight: math.unit(83, "kg"),
  7867. name: "Front (Clothed)",
  7868. image: {
  7869. source: "./media/characters/samantha/front-clothed.svg"
  7870. }
  7871. },
  7872. back: {
  7873. height: math.unit(1.93, "meters"),
  7874. weight: math.unit(83, "kg"),
  7875. name: "Back",
  7876. image: {
  7877. source: "./media/characters/samantha/back.svg"
  7878. }
  7879. },
  7880. },
  7881. [
  7882. {
  7883. name: "Normal",
  7884. height: math.unit(1.93, "m")
  7885. },
  7886. {
  7887. name: "Macro",
  7888. height: math.unit(74, "meters"),
  7889. default: true
  7890. },
  7891. {
  7892. name: "Macro+",
  7893. height: math.unit(223, "meters"),
  7894. },
  7895. {
  7896. name: "Megamacro",
  7897. height: math.unit(8381, "meters"),
  7898. },
  7899. {
  7900. name: "Megamacro+",
  7901. height: math.unit(12000, "kilometers")
  7902. },
  7903. ]
  7904. ))
  7905. characterMakers.push(() => makeCharacter(
  7906. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7907. {
  7908. front: {
  7909. height: math.unit(1.92, "meters"),
  7910. weight: math.unit(80, "kg"),
  7911. name: "Front",
  7912. image: {
  7913. source: "./media/characters/dr-clay/front.svg"
  7914. }
  7915. },
  7916. frontClothed: {
  7917. height: math.unit(1.92, "meters"),
  7918. weight: math.unit(80, "kg"),
  7919. name: "Front (Clothed)",
  7920. image: {
  7921. source: "./media/characters/dr-clay/front-clothed.svg"
  7922. }
  7923. }
  7924. },
  7925. [
  7926. {
  7927. name: "Normal",
  7928. height: math.unit(1.92, "m")
  7929. },
  7930. {
  7931. name: "Macro",
  7932. height: math.unit(214, "meters"),
  7933. default: true
  7934. },
  7935. {
  7936. name: "Macro+",
  7937. height: math.unit(12.237, "meters"),
  7938. },
  7939. {
  7940. name: "Megamacro",
  7941. height: math.unit(557, "megameters"),
  7942. },
  7943. {
  7944. name: "Unimaginable",
  7945. height: math.unit(120e9, "lightyears")
  7946. },
  7947. ]
  7948. ))
  7949. characterMakers.push(() => makeCharacter(
  7950. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7951. {
  7952. front: {
  7953. height: math.unit(2, "meters"),
  7954. weight: math.unit(80, "kg"),
  7955. name: "Front",
  7956. image: {
  7957. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7958. }
  7959. }
  7960. },
  7961. [
  7962. {
  7963. name: "Teramacro",
  7964. height: math.unit(500000, "lightyears"),
  7965. default: true
  7966. },
  7967. ]
  7968. ))
  7969. characterMakers.push(() => makeCharacter(
  7970. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7971. {
  7972. crux: {
  7973. height: math.unit(2, "meters"),
  7974. weight: math.unit(150, "kg"),
  7975. name: "Crux",
  7976. image: {
  7977. source: "./media/characters/vemus/crux.svg",
  7978. extra: 1074/936,
  7979. bottom: 23/1097
  7980. }
  7981. },
  7982. skunkTanuki: {
  7983. height: math.unit(2, "meters"),
  7984. weight: math.unit(150, "kg"),
  7985. name: "Skunk-Tanuki",
  7986. image: {
  7987. source: "./media/characters/vemus/skunk-tanuki.svg",
  7988. extra: 926/893,
  7989. bottom: 20/946
  7990. }
  7991. },
  7992. },
  7993. [
  7994. {
  7995. name: "Normal",
  7996. height: math.unit(4, "meters"),
  7997. default: true
  7998. },
  7999. {
  8000. name: "Big",
  8001. height: math.unit(8, "meters")
  8002. },
  8003. {
  8004. name: "Macro",
  8005. height: math.unit(100, "meters")
  8006. },
  8007. {
  8008. name: "Macro+",
  8009. height: math.unit(1500, "meters")
  8010. },
  8011. {
  8012. name: "Stellar",
  8013. height: math.unit(14e8, "meters")
  8014. },
  8015. ]
  8016. ))
  8017. characterMakers.push(() => makeCharacter(
  8018. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8019. {
  8020. front: {
  8021. height: math.unit(2, "meters"),
  8022. weight: math.unit(70, "kg"),
  8023. name: "Front",
  8024. image: {
  8025. source: "./media/characters/beherit/front.svg",
  8026. extra: 1234/1109,
  8027. bottom: 55/1289
  8028. }
  8029. }
  8030. },
  8031. [
  8032. {
  8033. name: "Normal",
  8034. height: math.unit(6, "feet")
  8035. },
  8036. {
  8037. name: "Lorg",
  8038. height: math.unit(25, "feet"),
  8039. default: true
  8040. },
  8041. {
  8042. name: "Lorger",
  8043. height: math.unit(75, "feet")
  8044. },
  8045. {
  8046. name: "Macro",
  8047. height: math.unit(200, "meters")
  8048. },
  8049. ]
  8050. ))
  8051. characterMakers.push(() => makeCharacter(
  8052. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8053. {
  8054. front: {
  8055. height: math.unit(2, "meters"),
  8056. weight: math.unit(150, "kg"),
  8057. name: "Front",
  8058. image: {
  8059. source: "./media/characters/everett/front.svg",
  8060. extra: 1017/866,
  8061. bottom: 86/1103
  8062. }
  8063. },
  8064. paw: {
  8065. height: math.unit(2 / 3.6, "meters"),
  8066. name: "Paw",
  8067. image: {
  8068. source: "./media/characters/everett/paw.svg"
  8069. }
  8070. },
  8071. },
  8072. [
  8073. {
  8074. name: "Normal",
  8075. height: math.unit(15, "feet"),
  8076. default: true
  8077. },
  8078. {
  8079. name: "Lorg",
  8080. height: math.unit(70, "feet"),
  8081. default: true
  8082. },
  8083. {
  8084. name: "Lorger",
  8085. height: math.unit(250, "feet")
  8086. },
  8087. {
  8088. name: "Macro",
  8089. height: math.unit(500, "meters")
  8090. },
  8091. ]
  8092. ))
  8093. characterMakers.push(() => makeCharacter(
  8094. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8095. {
  8096. front: {
  8097. height: math.unit(2, "meters"),
  8098. weight: math.unit(86, "kg"),
  8099. name: "Front",
  8100. image: {
  8101. source: "./media/characters/rose/front.svg",
  8102. extra: 1785/1636,
  8103. bottom: 30/1815
  8104. },
  8105. form: "liom",
  8106. default: true
  8107. },
  8108. frontSporty: {
  8109. height: math.unit(2, "meters"),
  8110. weight: math.unit(86, "kg"),
  8111. name: "Front (Sporty)",
  8112. image: {
  8113. source: "./media/characters/rose/front-sporty.svg",
  8114. extra: 350/335,
  8115. bottom: 10/360
  8116. },
  8117. form: "liom"
  8118. },
  8119. frontAlt: {
  8120. height: math.unit(1.6, "meters"),
  8121. weight: math.unit(86, "kg"),
  8122. name: "Front (Alt)",
  8123. image: {
  8124. source: "./media/characters/rose/front-alt.svg",
  8125. extra: 299/283,
  8126. bottom: 3/302
  8127. },
  8128. form: "liom"
  8129. },
  8130. plush: {
  8131. height: math.unit(2, "meters"),
  8132. weight: math.unit(86/3, "kg"),
  8133. name: "Plush",
  8134. image: {
  8135. source: "./media/characters/rose/plush.svg",
  8136. extra: 361/337,
  8137. bottom: 11/372
  8138. },
  8139. form: "plush",
  8140. default: true
  8141. },
  8142. faeStanding: {
  8143. height: math.unit(10, "cm"),
  8144. weight: math.unit(10, "grams"),
  8145. name: "Standing",
  8146. image: {
  8147. source: "./media/characters/rose/fae-standing.svg",
  8148. extra: 1189/1060,
  8149. bottom: 27/1216
  8150. },
  8151. form: "fae",
  8152. default: true
  8153. },
  8154. faeSitting: {
  8155. height: math.unit(5, "cm"),
  8156. weight: math.unit(10, "grams"),
  8157. name: "Sitting",
  8158. image: {
  8159. source: "./media/characters/rose/fae-sitting.svg",
  8160. extra: 737/577,
  8161. bottom: 356/1093
  8162. },
  8163. form: "fae"
  8164. },
  8165. faePaw: {
  8166. height: math.unit(1.35, "cm"),
  8167. name: "Paw",
  8168. image: {
  8169. source: "./media/characters/rose/fae-paw.svg"
  8170. },
  8171. form: "fae"
  8172. },
  8173. },
  8174. [
  8175. {
  8176. name: "True Micro",
  8177. height: math.unit(9, "cm"),
  8178. form: "liom"
  8179. },
  8180. {
  8181. name: "Micro",
  8182. height: math.unit(16, "cm"),
  8183. form: "liom"
  8184. },
  8185. {
  8186. name: "Normal",
  8187. height: math.unit(1.85, "meters"),
  8188. default: true,
  8189. form: "liom"
  8190. },
  8191. {
  8192. name: "Mini-Macro",
  8193. height: math.unit(5, "meters"),
  8194. form: "liom"
  8195. },
  8196. {
  8197. name: "Macro",
  8198. height: math.unit(15, "meters"),
  8199. form: "liom"
  8200. },
  8201. {
  8202. name: "True Macro",
  8203. height: math.unit(40, "meters"),
  8204. form: "liom"
  8205. },
  8206. {
  8207. name: "City Scale",
  8208. height: math.unit(1, "km"),
  8209. form: "liom"
  8210. },
  8211. {
  8212. name: "Plushie",
  8213. height: math.unit(9, "cm"),
  8214. form: "plush",
  8215. default: true
  8216. },
  8217. {
  8218. name: "Fae",
  8219. height: math.unit(10, "cm"),
  8220. form: "fae",
  8221. default: true
  8222. },
  8223. ],
  8224. {
  8225. "liom": {
  8226. name: "Liom"
  8227. },
  8228. "plush": {
  8229. name: "Plush"
  8230. },
  8231. "fae": {
  8232. name: "Fae Fox",
  8233. default: true
  8234. }
  8235. }
  8236. ))
  8237. characterMakers.push(() => makeCharacter(
  8238. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8239. {
  8240. front: {
  8241. height: math.unit(2, "meters"),
  8242. weight: math.unit(350, "lbs"),
  8243. name: "Front",
  8244. image: {
  8245. source: "./media/characters/regal/front.svg"
  8246. }
  8247. },
  8248. back: {
  8249. height: math.unit(2, "meters"),
  8250. weight: math.unit(350, "lbs"),
  8251. name: "Back",
  8252. image: {
  8253. source: "./media/characters/regal/back.svg"
  8254. }
  8255. },
  8256. },
  8257. [
  8258. {
  8259. name: "Macro",
  8260. height: math.unit(350, "feet"),
  8261. default: true
  8262. }
  8263. ]
  8264. ))
  8265. characterMakers.push(() => makeCharacter(
  8266. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8267. {
  8268. standing: {
  8269. height: math.unit(4 + 11/12, "feet"),
  8270. weight: math.unit(100, "lb"),
  8271. name: "Standing",
  8272. image: {
  8273. source: "./media/characters/opal/standing.svg",
  8274. extra: 1588/1513,
  8275. bottom: 23/1611
  8276. }
  8277. },
  8278. sitting: {
  8279. height: math.unit(2.3, "feet"),
  8280. weight: math.unit(100, "lb"),
  8281. name: "Sitting",
  8282. image: {
  8283. source: "./media/characters/opal/sitting.svg",
  8284. extra: 1031/892,
  8285. bottom: 142/1173
  8286. }
  8287. },
  8288. hand: {
  8289. height: math.unit(0.59, "feet"),
  8290. name: "Hand",
  8291. image: {
  8292. source: "./media/characters/opal/hand.svg"
  8293. }
  8294. },
  8295. foot: {
  8296. height: math.unit(0.61, "feet"),
  8297. name: "Foot",
  8298. image: {
  8299. source: "./media/characters/opal/foot.svg"
  8300. }
  8301. },
  8302. },
  8303. [
  8304. {
  8305. name: "Small",
  8306. height: math.unit(4 + 11 / 12, "feet")
  8307. },
  8308. {
  8309. name: "Normal",
  8310. height: math.unit(20, "feet"),
  8311. default: true
  8312. },
  8313. {
  8314. name: "Macro",
  8315. height: math.unit(120, "feet")
  8316. },
  8317. {
  8318. name: "Megamacro",
  8319. height: math.unit(80, "miles")
  8320. },
  8321. {
  8322. name: "True Size",
  8323. height: math.unit(100000, "lightyears")
  8324. },
  8325. ]
  8326. ))
  8327. characterMakers.push(() => makeCharacter(
  8328. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8329. {
  8330. front: {
  8331. height: math.unit(6, "feet"),
  8332. weight: math.unit(200, "lbs"),
  8333. name: "Front",
  8334. image: {
  8335. source: "./media/characters/vector-wuff/front.svg"
  8336. }
  8337. }
  8338. },
  8339. [
  8340. {
  8341. name: "Normal",
  8342. height: math.unit(2.8, "meters")
  8343. },
  8344. {
  8345. name: "Macro",
  8346. height: math.unit(450, "meters"),
  8347. default: true
  8348. },
  8349. {
  8350. name: "Megamacro",
  8351. height: math.unit(15, "kilometers")
  8352. }
  8353. ]
  8354. ))
  8355. characterMakers.push(() => makeCharacter(
  8356. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8357. {
  8358. front: {
  8359. height: math.unit(6, "feet"),
  8360. weight: math.unit(256, "lbs"),
  8361. name: "Front",
  8362. image: {
  8363. source: "./media/characters/dannik/front.svg"
  8364. }
  8365. }
  8366. },
  8367. [
  8368. {
  8369. name: "Macro",
  8370. height: math.unit(69.57, "meters"),
  8371. default: true
  8372. },
  8373. ]
  8374. ))
  8375. characterMakers.push(() => makeCharacter(
  8376. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8377. {
  8378. front: {
  8379. height: math.unit(6, "feet"),
  8380. weight: math.unit(120, "lbs"),
  8381. name: "Front",
  8382. image: {
  8383. source: "./media/characters/azura-saharah/front.svg"
  8384. }
  8385. },
  8386. back: {
  8387. height: math.unit(6, "feet"),
  8388. weight: math.unit(120, "lbs"),
  8389. name: "Back",
  8390. image: {
  8391. source: "./media/characters/azura-saharah/back.svg"
  8392. }
  8393. },
  8394. },
  8395. [
  8396. {
  8397. name: "Macro",
  8398. height: math.unit(100, "feet"),
  8399. default: true
  8400. },
  8401. ]
  8402. ))
  8403. characterMakers.push(() => makeCharacter(
  8404. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8405. {
  8406. side: {
  8407. height: math.unit(5 + 4 / 12, "feet"),
  8408. weight: math.unit(163, "lbs"),
  8409. name: "Side",
  8410. image: {
  8411. source: "./media/characters/kennedy/side.svg"
  8412. }
  8413. }
  8414. },
  8415. [
  8416. {
  8417. name: "Standard Doggo",
  8418. height: math.unit(5 + 4 / 12, "feet")
  8419. },
  8420. {
  8421. name: "Big Doggo",
  8422. height: math.unit(25 + 3 / 12, "feet"),
  8423. default: true
  8424. },
  8425. ]
  8426. ))
  8427. characterMakers.push(() => makeCharacter(
  8428. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8429. {
  8430. front: {
  8431. height: math.unit(5 + 5/12, "feet"),
  8432. weight: math.unit(100, "lbs"),
  8433. name: "Front",
  8434. image: {
  8435. source: "./media/characters/odios-de-lunar/front.svg",
  8436. extra: 1468/1323,
  8437. bottom: 22/1490
  8438. }
  8439. }
  8440. },
  8441. [
  8442. {
  8443. name: "Micro",
  8444. height: math.unit(3, "inches")
  8445. },
  8446. {
  8447. name: "Normal",
  8448. height: math.unit(5.5, "feet"),
  8449. default: true
  8450. },
  8451. {
  8452. name: "Macro",
  8453. height: math.unit(100, "feet")
  8454. },
  8455. ]
  8456. ))
  8457. characterMakers.push(() => makeCharacter(
  8458. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8459. {
  8460. back: {
  8461. height: math.unit(6, "feet"),
  8462. weight: math.unit(220, "lbs"),
  8463. name: "Back",
  8464. image: {
  8465. source: "./media/characters/mandake/back.svg"
  8466. }
  8467. }
  8468. },
  8469. [
  8470. {
  8471. name: "Normal",
  8472. height: math.unit(7, "feet"),
  8473. default: true
  8474. },
  8475. {
  8476. name: "Macro",
  8477. height: math.unit(78, "feet")
  8478. },
  8479. {
  8480. name: "Macro+",
  8481. height: math.unit(300, "meters")
  8482. },
  8483. {
  8484. name: "Macro++",
  8485. height: math.unit(2400, "feet")
  8486. },
  8487. {
  8488. name: "Megamacro",
  8489. height: math.unit(5167, "meters")
  8490. },
  8491. {
  8492. name: "Gigamacro",
  8493. height: math.unit(41769, "miles")
  8494. },
  8495. ]
  8496. ))
  8497. characterMakers.push(() => makeCharacter(
  8498. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8499. {
  8500. front: {
  8501. height: math.unit(6, "feet"),
  8502. weight: math.unit(120, "lbs"),
  8503. name: "Front",
  8504. image: {
  8505. source: "./media/characters/yozey/front.svg"
  8506. }
  8507. },
  8508. frontAlt: {
  8509. height: math.unit(6, "feet"),
  8510. weight: math.unit(120, "lbs"),
  8511. name: "Front (Alt)",
  8512. image: {
  8513. source: "./media/characters/yozey/front-alt.svg"
  8514. }
  8515. },
  8516. side: {
  8517. height: math.unit(6, "feet"),
  8518. weight: math.unit(120, "lbs"),
  8519. name: "Side",
  8520. image: {
  8521. source: "./media/characters/yozey/side.svg"
  8522. }
  8523. },
  8524. },
  8525. [
  8526. {
  8527. name: "Micro",
  8528. height: math.unit(3, "inches"),
  8529. default: true
  8530. },
  8531. {
  8532. name: "Normal",
  8533. height: math.unit(6, "feet")
  8534. }
  8535. ]
  8536. ))
  8537. characterMakers.push(() => makeCharacter(
  8538. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8539. {
  8540. front: {
  8541. height: math.unit(6, "feet"),
  8542. weight: math.unit(103, "lbs"),
  8543. name: "Front",
  8544. image: {
  8545. source: "./media/characters/valeska-voss/front.svg"
  8546. }
  8547. }
  8548. },
  8549. [
  8550. {
  8551. name: "Mini-Sized Sub",
  8552. height: math.unit(3.1, "inches")
  8553. },
  8554. {
  8555. name: "Mid-Sized Sub",
  8556. height: math.unit(6.2, "inches")
  8557. },
  8558. {
  8559. name: "Full-Sized Sub",
  8560. height: math.unit(9.3, "inches")
  8561. },
  8562. {
  8563. name: "Normal",
  8564. height: math.unit(5 + 2 / 12, "foot"),
  8565. default: true
  8566. },
  8567. ]
  8568. ))
  8569. characterMakers.push(() => makeCharacter(
  8570. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8571. {
  8572. front: {
  8573. height: math.unit(6, "feet"),
  8574. weight: math.unit(160, "lbs"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/gene-zeta/front.svg",
  8578. extra: 3006 / 2826,
  8579. bottom: 182 / 3188
  8580. }
  8581. }
  8582. },
  8583. [
  8584. {
  8585. name: "Micro",
  8586. height: math.unit(6, "inches")
  8587. },
  8588. {
  8589. name: "Normal",
  8590. height: math.unit(5 + 11 / 12, "foot"),
  8591. default: true
  8592. },
  8593. {
  8594. name: "Macro",
  8595. height: math.unit(140, "feet")
  8596. },
  8597. {
  8598. name: "Supercharged",
  8599. height: math.unit(2500, "feet")
  8600. },
  8601. ]
  8602. ))
  8603. characterMakers.push(() => makeCharacter(
  8604. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8605. {
  8606. front: {
  8607. height: math.unit(6, "feet"),
  8608. weight: math.unit(350, "lbs"),
  8609. name: "Front",
  8610. image: {
  8611. source: "./media/characters/razinox/front.svg",
  8612. extra: 1686 / 1548,
  8613. bottom: 28.2 / 1868
  8614. }
  8615. },
  8616. back: {
  8617. height: math.unit(6, "feet"),
  8618. weight: math.unit(350, "lbs"),
  8619. name: "Back",
  8620. image: {
  8621. source: "./media/characters/razinox/back.svg",
  8622. extra: 1660 / 1590,
  8623. bottom: 15 / 1665
  8624. }
  8625. },
  8626. },
  8627. [
  8628. {
  8629. name: "Normal",
  8630. height: math.unit(10 + 8 / 12, "foot")
  8631. },
  8632. {
  8633. name: "Minimacro",
  8634. height: math.unit(15, "foot")
  8635. },
  8636. {
  8637. name: "Macro",
  8638. height: math.unit(60, "foot"),
  8639. default: true
  8640. },
  8641. {
  8642. name: "Megamacro",
  8643. height: math.unit(5, "miles")
  8644. },
  8645. {
  8646. name: "Gigamacro",
  8647. height: math.unit(6000, "miles")
  8648. },
  8649. ]
  8650. ))
  8651. characterMakers.push(() => makeCharacter(
  8652. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8653. {
  8654. front: {
  8655. height: math.unit(6, "feet"),
  8656. weight: math.unit(150, "lbs"),
  8657. name: "Front",
  8658. image: {
  8659. source: "./media/characters/cobalt/front.svg"
  8660. }
  8661. }
  8662. },
  8663. [
  8664. {
  8665. name: "Normal",
  8666. height: math.unit(8 + 1 / 12, "foot")
  8667. },
  8668. {
  8669. name: "Macro",
  8670. height: math.unit(111, "foot"),
  8671. default: true
  8672. },
  8673. {
  8674. name: "Supracosmic",
  8675. height: math.unit(1e42, "feet")
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8681. {
  8682. front: {
  8683. height: math.unit(5, "inches"),
  8684. name: "Front",
  8685. image: {
  8686. source: "./media/characters/amanda/front.svg",
  8687. extra: 926/791,
  8688. bottom: 38/964
  8689. }
  8690. },
  8691. back: {
  8692. height: math.unit(5, "inches"),
  8693. name: "Back",
  8694. image: {
  8695. source: "./media/characters/amanda/back.svg",
  8696. extra: 909/805,
  8697. bottom: 43/952
  8698. }
  8699. },
  8700. },
  8701. [
  8702. {
  8703. name: "Micro",
  8704. height: math.unit(5, "inches"),
  8705. default: true
  8706. },
  8707. ]
  8708. ))
  8709. characterMakers.push(() => makeCharacter(
  8710. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8711. {
  8712. front: {
  8713. height: math.unit(2.75, "meters"),
  8714. weight: math.unit(1200, "lb"),
  8715. name: "Front",
  8716. image: {
  8717. source: "./media/characters/teal/front.svg",
  8718. extra: 2463 / 2320,
  8719. bottom: 166 / 2629
  8720. }
  8721. },
  8722. back: {
  8723. height: math.unit(2.75, "meters"),
  8724. weight: math.unit(1200, "lb"),
  8725. name: "Back",
  8726. image: {
  8727. source: "./media/characters/teal/back.svg",
  8728. extra: 2580 / 2489,
  8729. bottom: 151 / 2731
  8730. }
  8731. },
  8732. sitting: {
  8733. height: math.unit(1.9, "meters"),
  8734. weight: math.unit(1200, "lb"),
  8735. name: "Sitting",
  8736. image: {
  8737. source: "./media/characters/teal/sitting.svg",
  8738. extra: 623 / 590,
  8739. bottom: 121 / 744
  8740. }
  8741. },
  8742. standing: {
  8743. height: math.unit(2.75, "meters"),
  8744. weight: math.unit(1200, "lb"),
  8745. name: "Standing",
  8746. image: {
  8747. source: "./media/characters/teal/standing.svg",
  8748. extra: 923 / 893,
  8749. bottom: 60 / 983
  8750. }
  8751. },
  8752. stretching: {
  8753. height: math.unit(3.65, "meters"),
  8754. weight: math.unit(1200, "lb"),
  8755. name: "Stretching",
  8756. image: {
  8757. source: "./media/characters/teal/stretching.svg",
  8758. extra: 1276 / 1244,
  8759. bottom: 0 / 1276
  8760. }
  8761. },
  8762. legged: {
  8763. height: math.unit(1.3, "meters"),
  8764. weight: math.unit(100, "lb"),
  8765. name: "Legged",
  8766. image: {
  8767. source: "./media/characters/teal/legged.svg",
  8768. extra: 462 / 437,
  8769. bottom: 24 / 486
  8770. }
  8771. },
  8772. naga: {
  8773. height: math.unit(5.4, "meters"),
  8774. weight: math.unit(4000, "lb"),
  8775. name: "Naga",
  8776. image: {
  8777. source: "./media/characters/teal/naga.svg",
  8778. extra: 1902 / 1858,
  8779. bottom: 0 / 1902
  8780. }
  8781. },
  8782. hand: {
  8783. height: math.unit(0.52, "meters"),
  8784. name: "Hand",
  8785. image: {
  8786. source: "./media/characters/teal/hand.svg"
  8787. }
  8788. },
  8789. maw: {
  8790. height: math.unit(0.43, "meters"),
  8791. name: "Maw",
  8792. image: {
  8793. source: "./media/characters/teal/maw.svg"
  8794. }
  8795. },
  8796. slit: {
  8797. height: math.unit(0.25, "meters"),
  8798. name: "Slit",
  8799. image: {
  8800. source: "./media/characters/teal/slit.svg"
  8801. }
  8802. },
  8803. },
  8804. [
  8805. {
  8806. name: "Normal",
  8807. height: math.unit(2.75, "meters"),
  8808. default: true
  8809. },
  8810. {
  8811. name: "Macro",
  8812. height: math.unit(300, "feet")
  8813. },
  8814. {
  8815. name: "Macro+",
  8816. height: math.unit(2000, "feet")
  8817. },
  8818. ]
  8819. ))
  8820. characterMakers.push(() => makeCharacter(
  8821. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8822. {
  8823. frontCat: {
  8824. height: math.unit(6, "feet"),
  8825. weight: math.unit(180, "lbs"),
  8826. name: "Front (Cat)",
  8827. image: {
  8828. source: "./media/characters/ravin-amulet/front-cat.svg"
  8829. }
  8830. },
  8831. frontCatAlt: {
  8832. height: math.unit(6, "feet"),
  8833. weight: math.unit(180, "lbs"),
  8834. name: "Front (Alt, Cat)",
  8835. image: {
  8836. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8837. }
  8838. },
  8839. frontWerewolf: {
  8840. height: math.unit(6 * 1.2, "feet"),
  8841. weight: math.unit(225, "lbs"),
  8842. name: "Front (Werewolf)",
  8843. image: {
  8844. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8845. }
  8846. },
  8847. backWerewolf: {
  8848. height: math.unit(6 * 1.2, "feet"),
  8849. weight: math.unit(225, "lbs"),
  8850. name: "Back (Werewolf)",
  8851. image: {
  8852. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8853. }
  8854. },
  8855. },
  8856. [
  8857. {
  8858. name: "Nano",
  8859. height: math.unit(1, "micrometer")
  8860. },
  8861. {
  8862. name: "Micro",
  8863. height: math.unit(1, "inch")
  8864. },
  8865. {
  8866. name: "Normal",
  8867. height: math.unit(6, "feet"),
  8868. default: true
  8869. },
  8870. {
  8871. name: "Macro",
  8872. height: math.unit(60, "feet")
  8873. }
  8874. ]
  8875. ))
  8876. characterMakers.push(() => makeCharacter(
  8877. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8878. {
  8879. front: {
  8880. height: math.unit(6, "feet"),
  8881. weight: math.unit(165, "lbs"),
  8882. name: "Front",
  8883. image: {
  8884. source: "./media/characters/fluoresce/front.svg"
  8885. }
  8886. }
  8887. },
  8888. [
  8889. {
  8890. name: "Micro",
  8891. height: math.unit(6, "cm")
  8892. },
  8893. {
  8894. name: "Normal",
  8895. height: math.unit(5 + 7 / 12, "feet"),
  8896. default: true
  8897. },
  8898. {
  8899. name: "Macro",
  8900. height: math.unit(56, "feet")
  8901. },
  8902. {
  8903. name: "Megamacro",
  8904. height: math.unit(1.9, "miles")
  8905. },
  8906. ]
  8907. ))
  8908. characterMakers.push(() => makeCharacter(
  8909. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8910. {
  8911. front: {
  8912. height: math.unit(9 + 6 / 12, "feet"),
  8913. weight: math.unit(523, "lbs"),
  8914. name: "Side",
  8915. image: {
  8916. source: "./media/characters/aurora/side.svg",
  8917. extra: 474/393,
  8918. bottom: 5/479
  8919. }
  8920. }
  8921. },
  8922. [
  8923. {
  8924. name: "Normal",
  8925. height: math.unit(9 + 6 / 12, "feet")
  8926. },
  8927. {
  8928. name: "Macro",
  8929. height: math.unit(96, "feet"),
  8930. default: true
  8931. },
  8932. {
  8933. name: "Macro+",
  8934. height: math.unit(243, "feet")
  8935. },
  8936. ]
  8937. ))
  8938. characterMakers.push(() => makeCharacter(
  8939. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8940. {
  8941. front: {
  8942. height: math.unit(194, "cm"),
  8943. weight: math.unit(90, "kg"),
  8944. name: "Front",
  8945. image: {
  8946. source: "./media/characters/ranek/front.svg",
  8947. extra: 1862/1791,
  8948. bottom: 80/1942
  8949. }
  8950. },
  8951. back: {
  8952. height: math.unit(194, "cm"),
  8953. weight: math.unit(90, "kg"),
  8954. name: "Back",
  8955. image: {
  8956. source: "./media/characters/ranek/back.svg",
  8957. extra: 1853/1787,
  8958. bottom: 74/1927
  8959. }
  8960. },
  8961. feral: {
  8962. height: math.unit(30, "cm"),
  8963. weight: math.unit(1.6, "lbs"),
  8964. name: "Feral",
  8965. image: {
  8966. source: "./media/characters/ranek/feral.svg",
  8967. extra: 990/631,
  8968. bottom: 29/1019
  8969. }
  8970. },
  8971. },
  8972. [
  8973. {
  8974. name: "Normal",
  8975. height: math.unit(194, "cm"),
  8976. default: true
  8977. },
  8978. {
  8979. name: "Macro",
  8980. height: math.unit(100, "meters")
  8981. },
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8986. {
  8987. front: {
  8988. height: math.unit(5 + 6 / 12, "feet"),
  8989. weight: math.unit(153, "lbs"),
  8990. name: "Front",
  8991. image: {
  8992. source: "./media/characters/andrew-cooper/front.svg"
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Nano",
  8999. height: math.unit(1, "mm")
  9000. },
  9001. {
  9002. name: "Micro",
  9003. height: math.unit(2, "inches")
  9004. },
  9005. {
  9006. name: "Normal",
  9007. height: math.unit(5 + 6 / 12, "feet"),
  9008. default: true
  9009. }
  9010. ]
  9011. ))
  9012. characterMakers.push(() => makeCharacter(
  9013. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9014. {
  9015. front: {
  9016. height: math.unit(6, "feet"),
  9017. weight: math.unit(180, "lbs"),
  9018. name: "Front",
  9019. image: {
  9020. source: "./media/characters/akane-sato/front.svg",
  9021. extra: 1219 / 1140
  9022. }
  9023. },
  9024. back: {
  9025. height: math.unit(6, "feet"),
  9026. weight: math.unit(180, "lbs"),
  9027. name: "Back",
  9028. image: {
  9029. source: "./media/characters/akane-sato/back.svg",
  9030. extra: 1219 / 1170
  9031. }
  9032. },
  9033. },
  9034. [
  9035. {
  9036. name: "Normal",
  9037. height: math.unit(2.5, "meters")
  9038. },
  9039. {
  9040. name: "Macro",
  9041. height: math.unit(250, "meters"),
  9042. default: true
  9043. },
  9044. {
  9045. name: "Megamacro",
  9046. height: math.unit(25, "km")
  9047. },
  9048. ]
  9049. ))
  9050. characterMakers.push(() => makeCharacter(
  9051. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9052. {
  9053. front: {
  9054. height: math.unit(6, "feet"),
  9055. weight: math.unit(65, "kg"),
  9056. name: "Front",
  9057. image: {
  9058. source: "./media/characters/rook/front.svg",
  9059. extra: 960 / 950
  9060. }
  9061. }
  9062. },
  9063. [
  9064. {
  9065. name: "Normal",
  9066. height: math.unit(8.8, "feet")
  9067. },
  9068. {
  9069. name: "Macro",
  9070. height: math.unit(88, "feet"),
  9071. default: true
  9072. },
  9073. {
  9074. name: "Megamacro",
  9075. height: math.unit(8, "miles")
  9076. },
  9077. ]
  9078. ))
  9079. characterMakers.push(() => makeCharacter(
  9080. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9081. {
  9082. front: {
  9083. height: math.unit(12 + 2 / 12, "feet"),
  9084. weight: math.unit(808, "lbs"),
  9085. name: "Front",
  9086. image: {
  9087. source: "./media/characters/prodigy/front.svg"
  9088. }
  9089. }
  9090. },
  9091. [
  9092. {
  9093. name: "Normal",
  9094. height: math.unit(12 + 2 / 12, "feet"),
  9095. default: true
  9096. },
  9097. {
  9098. name: "Macro",
  9099. height: math.unit(143, "feet")
  9100. },
  9101. {
  9102. name: "Macro+",
  9103. height: math.unit(400, "feet")
  9104. },
  9105. ]
  9106. ))
  9107. characterMakers.push(() => makeCharacter(
  9108. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9109. {
  9110. front: {
  9111. height: math.unit(6, "feet"),
  9112. weight: math.unit(225, "lbs"),
  9113. name: "Front",
  9114. image: {
  9115. source: "./media/characters/daniel/front.svg"
  9116. }
  9117. },
  9118. leaning: {
  9119. height: math.unit(6, "feet"),
  9120. weight: math.unit(225, "lbs"),
  9121. name: "Leaning",
  9122. image: {
  9123. source: "./media/characters/daniel/leaning.svg"
  9124. }
  9125. },
  9126. },
  9127. [
  9128. {
  9129. name: "Macro",
  9130. height: math.unit(1000, "feet"),
  9131. default: true
  9132. },
  9133. ]
  9134. ))
  9135. characterMakers.push(() => makeCharacter(
  9136. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9137. {
  9138. front: {
  9139. height: math.unit(6, "feet"),
  9140. weight: math.unit(88, "lbs"),
  9141. name: "Front",
  9142. image: {
  9143. source: "./media/characters/chiros/front.svg",
  9144. extra: 306 / 226
  9145. }
  9146. },
  9147. side: {
  9148. height: math.unit(6, "feet"),
  9149. weight: math.unit(88, "lbs"),
  9150. name: "Side",
  9151. image: {
  9152. source: "./media/characters/chiros/side.svg",
  9153. extra: 306 / 226
  9154. }
  9155. },
  9156. },
  9157. [
  9158. {
  9159. name: "Normal",
  9160. height: math.unit(6, "cm"),
  9161. default: true
  9162. },
  9163. ]
  9164. ))
  9165. characterMakers.push(() => makeCharacter(
  9166. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9167. {
  9168. front: {
  9169. height: math.unit(6, "feet"),
  9170. weight: math.unit(100, "lbs"),
  9171. name: "Front",
  9172. image: {
  9173. source: "./media/characters/selka/front.svg",
  9174. extra: 947 / 887
  9175. }
  9176. }
  9177. },
  9178. [
  9179. {
  9180. name: "Normal",
  9181. height: math.unit(5, "cm"),
  9182. default: true
  9183. },
  9184. ]
  9185. ))
  9186. characterMakers.push(() => makeCharacter(
  9187. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9188. {
  9189. front: {
  9190. height: math.unit(8 + 3 / 12, "feet"),
  9191. weight: math.unit(424, "lbs"),
  9192. name: "Front",
  9193. image: {
  9194. source: "./media/characters/verin/front.svg",
  9195. extra: 1845 / 1550
  9196. }
  9197. },
  9198. frontArmored: {
  9199. height: math.unit(8 + 3 / 12, "feet"),
  9200. weight: math.unit(424, "lbs"),
  9201. name: "Front (Armored)",
  9202. image: {
  9203. source: "./media/characters/verin/front-armor.svg",
  9204. extra: 1845 / 1550,
  9205. bottom: 0.01
  9206. }
  9207. },
  9208. back: {
  9209. height: math.unit(8 + 3 / 12, "feet"),
  9210. weight: math.unit(424, "lbs"),
  9211. name: "Back",
  9212. image: {
  9213. source: "./media/characters/verin/back.svg",
  9214. bottom: 0.1,
  9215. extra: 1
  9216. }
  9217. },
  9218. foot: {
  9219. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9220. name: "Foot",
  9221. image: {
  9222. source: "./media/characters/verin/foot.svg"
  9223. }
  9224. },
  9225. },
  9226. [
  9227. {
  9228. name: "Normal",
  9229. height: math.unit(8 + 3 / 12, "feet")
  9230. },
  9231. {
  9232. name: "Minimacro",
  9233. height: math.unit(21, "feet"),
  9234. default: true
  9235. },
  9236. {
  9237. name: "Macro",
  9238. height: math.unit(626, "feet")
  9239. },
  9240. ]
  9241. ))
  9242. characterMakers.push(() => makeCharacter(
  9243. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9244. {
  9245. front: {
  9246. height: math.unit(2.718, "meters"),
  9247. weight: math.unit(150, "lbs"),
  9248. name: "Front",
  9249. image: {
  9250. source: "./media/characters/sovrim-terraquian/front.svg",
  9251. extra: 1752/1689,
  9252. bottom: 36/1788
  9253. }
  9254. },
  9255. back: {
  9256. height: math.unit(2.718, "meters"),
  9257. weight: math.unit(150, "lbs"),
  9258. name: "Back",
  9259. image: {
  9260. source: "./media/characters/sovrim-terraquian/back.svg",
  9261. extra: 1698/1657,
  9262. bottom: 58/1756
  9263. }
  9264. },
  9265. tongue: {
  9266. height: math.unit(2.865, "feet"),
  9267. name: "Tongue",
  9268. image: {
  9269. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9270. }
  9271. },
  9272. hand: {
  9273. height: math.unit(1.61, "feet"),
  9274. name: "Hand",
  9275. image: {
  9276. source: "./media/characters/sovrim-terraquian/hand.svg"
  9277. }
  9278. },
  9279. foot: {
  9280. height: math.unit(1.05, "feet"),
  9281. name: "Foot",
  9282. image: {
  9283. source: "./media/characters/sovrim-terraquian/foot.svg"
  9284. }
  9285. },
  9286. footAlt: {
  9287. height: math.unit(0.88, "feet"),
  9288. name: "Foot (Alt)",
  9289. image: {
  9290. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9291. }
  9292. },
  9293. },
  9294. [
  9295. {
  9296. name: "Micro",
  9297. height: math.unit(2, "inches")
  9298. },
  9299. {
  9300. name: "Small",
  9301. height: math.unit(1, "meter")
  9302. },
  9303. {
  9304. name: "Normal",
  9305. height: math.unit(Math.E, "meters"),
  9306. default: true
  9307. },
  9308. {
  9309. name: "Macro",
  9310. height: math.unit(20, "meters")
  9311. },
  9312. {
  9313. name: "Macro+",
  9314. height: math.unit(400, "meters")
  9315. },
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(7, "feet"),
  9323. weight: math.unit(489, "lbs"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/reece-silvermane/front.svg",
  9327. bottom: 0.02,
  9328. extra: 1
  9329. }
  9330. },
  9331. },
  9332. [
  9333. {
  9334. name: "Macro",
  9335. height: math.unit(1.5, "miles"),
  9336. default: true
  9337. },
  9338. ]
  9339. ))
  9340. characterMakers.push(() => makeCharacter(
  9341. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9342. {
  9343. front: {
  9344. height: math.unit(6, "feet"),
  9345. weight: math.unit(78, "kg"),
  9346. name: "Front",
  9347. image: {
  9348. source: "./media/characters/kane/front.svg",
  9349. extra: 978 / 899
  9350. }
  9351. },
  9352. back: {
  9353. height: math.unit(6, "feet"),
  9354. weight: math.unit(78, "kg"),
  9355. name: "Back",
  9356. image: {
  9357. source: "./media/characters/kane/back.svg",
  9358. extra: 1966/1800,
  9359. bottom: 0/1966
  9360. }
  9361. },
  9362. head: {
  9363. height: math.unit(1.4, "feet"),
  9364. name: "Head",
  9365. image: {
  9366. source: "./media/characters/kane/head.svg"
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Normal",
  9373. height: math.unit(2.1, "m"),
  9374. },
  9375. {
  9376. name: "Macro",
  9377. height: math.unit(1, "km"),
  9378. default: true
  9379. },
  9380. ]
  9381. ))
  9382. characterMakers.push(() => makeCharacter(
  9383. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9384. {
  9385. front: {
  9386. height: math.unit(6, "feet"),
  9387. weight: math.unit(200, "kg"),
  9388. name: "Front",
  9389. image: {
  9390. source: "./media/characters/tegon/front.svg",
  9391. bottom: 0.01,
  9392. extra: 1
  9393. }
  9394. },
  9395. },
  9396. [
  9397. {
  9398. name: "Micro",
  9399. height: math.unit(1, "inch")
  9400. },
  9401. {
  9402. name: "Normal",
  9403. height: math.unit(6 + 3 / 12, "feet"),
  9404. default: true
  9405. },
  9406. {
  9407. name: "Macro",
  9408. height: math.unit(300, "feet")
  9409. },
  9410. {
  9411. name: "Megamacro",
  9412. height: math.unit(69, "miles")
  9413. },
  9414. ]
  9415. ))
  9416. characterMakers.push(() => makeCharacter(
  9417. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9418. {
  9419. side: {
  9420. height: math.unit(6, "feet"),
  9421. weight: math.unit(2304, "lbs"),
  9422. name: "Side",
  9423. image: {
  9424. source: "./media/characters/arcturax/side.svg",
  9425. extra: 790 / 376,
  9426. bottom: 0.01
  9427. }
  9428. },
  9429. },
  9430. [
  9431. {
  9432. name: "Micro",
  9433. height: math.unit(2, "inch")
  9434. },
  9435. {
  9436. name: "Normal",
  9437. height: math.unit(6, "feet")
  9438. },
  9439. {
  9440. name: "Macro",
  9441. height: math.unit(39, "feet"),
  9442. default: true
  9443. },
  9444. {
  9445. name: "Megamacro",
  9446. height: math.unit(7, "miles")
  9447. },
  9448. ]
  9449. ))
  9450. characterMakers.push(() => makeCharacter(
  9451. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9452. {
  9453. front: {
  9454. height: math.unit(6, "feet"),
  9455. weight: math.unit(50, "lbs"),
  9456. name: "Front",
  9457. image: {
  9458. source: "./media/characters/sentri/front.svg",
  9459. extra: 1750 / 1570,
  9460. bottom: 0.025
  9461. }
  9462. },
  9463. frontAlt: {
  9464. height: math.unit(6, "feet"),
  9465. weight: math.unit(50, "lbs"),
  9466. name: "Front (Alt)",
  9467. image: {
  9468. source: "./media/characters/sentri/front-alt.svg",
  9469. extra: 1750 / 1570,
  9470. bottom: 0.025
  9471. }
  9472. },
  9473. },
  9474. [
  9475. {
  9476. name: "Normal",
  9477. height: math.unit(15, "feet"),
  9478. default: true
  9479. },
  9480. {
  9481. name: "Macro",
  9482. height: math.unit(2500, "feet")
  9483. }
  9484. ]
  9485. ))
  9486. characterMakers.push(() => makeCharacter(
  9487. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9488. {
  9489. front: {
  9490. height: math.unit(5 + 8 / 12, "feet"),
  9491. weight: math.unit(130, "lbs"),
  9492. name: "Front",
  9493. image: {
  9494. source: "./media/characters/corvin/front.svg",
  9495. extra: 1803 / 1629
  9496. }
  9497. },
  9498. frontShirt: {
  9499. height: math.unit(5 + 8 / 12, "feet"),
  9500. weight: math.unit(130, "lbs"),
  9501. name: "Front (Shirt)",
  9502. image: {
  9503. source: "./media/characters/corvin/front-shirt.svg",
  9504. extra: 1803 / 1629
  9505. }
  9506. },
  9507. frontPoncho: {
  9508. height: math.unit(5 + 8 / 12, "feet"),
  9509. weight: math.unit(130, "lbs"),
  9510. name: "Front (Poncho)",
  9511. image: {
  9512. source: "./media/characters/corvin/front-poncho.svg",
  9513. extra: 1803 / 1629
  9514. }
  9515. },
  9516. side: {
  9517. height: math.unit(5 + 8 / 12, "feet"),
  9518. weight: math.unit(130, "lbs"),
  9519. name: "Side",
  9520. image: {
  9521. source: "./media/characters/corvin/side.svg",
  9522. extra: 1012 / 945
  9523. }
  9524. },
  9525. back: {
  9526. height: math.unit(5 + 8 / 12, "feet"),
  9527. weight: math.unit(130, "lbs"),
  9528. name: "Back",
  9529. image: {
  9530. source: "./media/characters/corvin/back.svg",
  9531. extra: 1803 / 1629
  9532. }
  9533. },
  9534. },
  9535. [
  9536. {
  9537. name: "Micro",
  9538. height: math.unit(3, "inches")
  9539. },
  9540. {
  9541. name: "Normal",
  9542. height: math.unit(5 + 8 / 12, "feet")
  9543. },
  9544. {
  9545. name: "Macro",
  9546. height: math.unit(300, "feet"),
  9547. default: true
  9548. },
  9549. {
  9550. name: "Megamacro",
  9551. height: math.unit(500, "miles")
  9552. }
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9557. {
  9558. front: {
  9559. height: math.unit(6, "feet"),
  9560. weight: math.unit(135, "lbs"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/q/front.svg",
  9564. extra: 854 / 752,
  9565. bottom: 0.005
  9566. }
  9567. },
  9568. back: {
  9569. height: math.unit(6, "feet"),
  9570. weight: math.unit(130, "lbs"),
  9571. name: "Back",
  9572. image: {
  9573. source: "./media/characters/q/back.svg",
  9574. extra: 854 / 752
  9575. }
  9576. },
  9577. },
  9578. [
  9579. {
  9580. name: "Macro",
  9581. height: math.unit(90, "feet"),
  9582. default: true
  9583. },
  9584. {
  9585. name: "Extra Macro",
  9586. height: math.unit(300, "feet"),
  9587. },
  9588. {
  9589. name: "BIG WALF",
  9590. height: math.unit(750, "feet"),
  9591. },
  9592. ]
  9593. ))
  9594. characterMakers.push(() => makeCharacter(
  9595. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9596. {
  9597. front: {
  9598. height: math.unit(3, "feet"),
  9599. weight: math.unit(28, "lbs"),
  9600. name: "Front",
  9601. image: {
  9602. source: "./media/characters/citrine/front.svg"
  9603. }
  9604. }
  9605. },
  9606. [
  9607. {
  9608. name: "Normal",
  9609. height: math.unit(3, "feet"),
  9610. default: true
  9611. }
  9612. ]
  9613. ))
  9614. characterMakers.push(() => makeCharacter(
  9615. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9616. {
  9617. front: {
  9618. height: math.unit(14, "feet"),
  9619. weight: math.unit(1450, "kg"),
  9620. preyCapacity: math.unit(15, "people"),
  9621. name: "Front",
  9622. image: {
  9623. source: "./media/characters/aura-starwind/front.svg",
  9624. extra: 1440/1327,
  9625. bottom: 11/1451
  9626. }
  9627. },
  9628. side: {
  9629. height: math.unit(14, "feet"),
  9630. weight: math.unit(1450, "kg"),
  9631. preyCapacity: math.unit(15, "people"),
  9632. name: "Side",
  9633. image: {
  9634. source: "./media/characters/aura-starwind/side.svg",
  9635. extra: 1654 / 1497
  9636. }
  9637. },
  9638. taur: {
  9639. height: math.unit(18, "feet"),
  9640. weight: math.unit(5500, "kg"),
  9641. preyCapacity: math.unit(50, "people"),
  9642. name: "Taur",
  9643. image: {
  9644. source: "./media/characters/aura-starwind/taur.svg",
  9645. extra: 1760 / 1650
  9646. }
  9647. },
  9648. feral: {
  9649. height: math.unit(46, "feet"),
  9650. weight: math.unit(25000, "kg"),
  9651. preyCapacity: math.unit(120, "people"),
  9652. name: "Feral",
  9653. image: {
  9654. source: "./media/characters/aura-starwind/feral.svg"
  9655. }
  9656. },
  9657. },
  9658. [
  9659. {
  9660. name: "Normal",
  9661. height: math.unit(14, "feet"),
  9662. default: true
  9663. },
  9664. {
  9665. name: "Macro",
  9666. height: math.unit(50, "meters")
  9667. },
  9668. {
  9669. name: "Megamacro",
  9670. height: math.unit(5000, "meters")
  9671. },
  9672. {
  9673. name: "Gigamacro",
  9674. height: math.unit(100000, "kilometers")
  9675. },
  9676. ]
  9677. ))
  9678. characterMakers.push(() => makeCharacter(
  9679. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9680. {
  9681. front: {
  9682. height: math.unit(2 + 7 / 12, "feet"),
  9683. weight: math.unit(32, "lbs"),
  9684. name: "Front",
  9685. image: {
  9686. source: "./media/characters/rivet/front.svg",
  9687. extra: 1716 / 1658,
  9688. bottom: 0.03
  9689. }
  9690. },
  9691. foot: {
  9692. height: math.unit(0.551, "feet"),
  9693. name: "Rivet's Foot",
  9694. image: {
  9695. source: "./media/characters/rivet/foot.svg"
  9696. },
  9697. rename: true
  9698. }
  9699. },
  9700. [
  9701. {
  9702. name: "Micro",
  9703. height: math.unit(1.5, "inches"),
  9704. },
  9705. {
  9706. name: "Normal",
  9707. height: math.unit(2 + 7 / 12, "feet"),
  9708. default: true
  9709. },
  9710. {
  9711. name: "Macro",
  9712. height: math.unit(85, "feet")
  9713. },
  9714. {
  9715. name: "Megamacro",
  9716. height: math.unit(2.2, "km")
  9717. }
  9718. ]
  9719. ))
  9720. characterMakers.push(() => makeCharacter(
  9721. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9722. {
  9723. front: {
  9724. height: math.unit(5 + 9 / 12, "feet"),
  9725. weight: math.unit(150, "lbs"),
  9726. name: "Front",
  9727. image: {
  9728. source: "./media/characters/coffee/front.svg",
  9729. extra: 946/880,
  9730. bottom: 66/1012
  9731. }
  9732. },
  9733. foot: {
  9734. height: math.unit(1.29, "feet"),
  9735. name: "Foot",
  9736. image: {
  9737. source: "./media/characters/coffee/foot.svg"
  9738. }
  9739. },
  9740. },
  9741. [
  9742. {
  9743. name: "Micro",
  9744. height: math.unit(2, "inches"),
  9745. },
  9746. {
  9747. name: "Normal",
  9748. height: math.unit(5 + 9 / 12, "feet"),
  9749. default: true
  9750. },
  9751. {
  9752. name: "Macro",
  9753. height: math.unit(800, "feet")
  9754. },
  9755. {
  9756. name: "Megamacro",
  9757. height: math.unit(25, "miles")
  9758. }
  9759. ]
  9760. ))
  9761. characterMakers.push(() => makeCharacter(
  9762. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9763. {
  9764. front: {
  9765. height: math.unit(6, "feet"),
  9766. weight: math.unit(200, "lbs"),
  9767. name: "Front",
  9768. image: {
  9769. source: "./media/characters/chari-gal/front.svg",
  9770. extra: 735/649,
  9771. bottom: 55/790
  9772. },
  9773. form: "normal",
  9774. default: true
  9775. },
  9776. back: {
  9777. height: math.unit(6, "feet"),
  9778. weight: math.unit(200, "lb"),
  9779. name: "Back",
  9780. image: {
  9781. source: "./media/characters/chari-gal/back.svg",
  9782. extra: 762/666,
  9783. bottom: 31/793
  9784. },
  9785. form: "normal"
  9786. },
  9787. mouth: {
  9788. height: math.unit(1.35, "feet"),
  9789. name: "Mouth",
  9790. image: {
  9791. source: "./media/characters/chari-gal/mouth.svg"
  9792. },
  9793. form: "normal"
  9794. },
  9795. gigantamax: {
  9796. height: math.unit(6 * 16, "feet"),
  9797. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9798. name: "Gigantamax",
  9799. image: {
  9800. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9801. extra: 1507/1149,
  9802. bottom: 254/1761
  9803. },
  9804. form: "gigantamax",
  9805. default: true
  9806. },
  9807. },
  9808. [
  9809. {
  9810. name: "Normal",
  9811. height: math.unit(5 + 7 / 12, "feet"),
  9812. form: "normal",
  9813. },
  9814. {
  9815. name: "Macro",
  9816. height: math.unit(200, "feet"),
  9817. default: true,
  9818. form: "normal"
  9819. },
  9820. {
  9821. name: "Normal",
  9822. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9823. form: "gigantamax",
  9824. },
  9825. {
  9826. name: "Macro",
  9827. height: math.unit(16 * 200, "feet"),
  9828. default: true,
  9829. form: "gigantamax"
  9830. },
  9831. ],
  9832. {
  9833. "normal": {
  9834. name: "Normal",
  9835. default: true
  9836. },
  9837. "gigantamax": {
  9838. name: "Gigantamax",
  9839. },
  9840. }
  9841. ))
  9842. characterMakers.push(() => makeCharacter(
  9843. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9844. {
  9845. front: {
  9846. height: math.unit(6, "feet"),
  9847. weight: math.unit(150, "lbs"),
  9848. name: "Front",
  9849. image: {
  9850. source: "./media/characters/nova/front.svg",
  9851. extra: 5000 / 4722,
  9852. bottom: 0.02
  9853. }
  9854. }
  9855. },
  9856. [
  9857. {
  9858. name: "Micro-",
  9859. height: math.unit(0.8, "inches")
  9860. },
  9861. {
  9862. name: "Micro",
  9863. height: math.unit(2, "inches"),
  9864. default: true
  9865. },
  9866. ]
  9867. ))
  9868. characterMakers.push(() => makeCharacter(
  9869. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9870. {
  9871. koboldFront: {
  9872. height: math.unit(3 + 1 / 12, "feet"),
  9873. weight: math.unit(21.7, "lbs"),
  9874. name: "Front",
  9875. image: {
  9876. source: "./media/characters/argent/kobold-front.svg",
  9877. extra: 1471 / 1331,
  9878. bottom: 100.8 / 1575.5
  9879. },
  9880. form: "kobold",
  9881. default: true
  9882. },
  9883. dragonFront: {
  9884. height: math.unit(75, "inches"),
  9885. name: "Front",
  9886. image: {
  9887. source: "./media/characters/argent/dragon-front.svg",
  9888. extra: 1389/1248,
  9889. bottom: 54/1443
  9890. },
  9891. form: "dragon",
  9892. },
  9893. dragonBack: {
  9894. height: math.unit(75, "inches"),
  9895. name: "Back",
  9896. image: {
  9897. source: "./media/characters/argent/dragon-back.svg",
  9898. extra: 1399/1271,
  9899. bottom: 23/1422
  9900. },
  9901. form: "dragon",
  9902. },
  9903. dragonDressed: {
  9904. height: math.unit(75, "inches"),
  9905. name: "Dressed",
  9906. image: {
  9907. source: "./media/characters/argent/dragon-dressed.svg",
  9908. extra: 1350/1215,
  9909. bottom: 26/1376
  9910. },
  9911. form: "dragon"
  9912. },
  9913. dragonHead: {
  9914. height: math.unit(23.5, "inches"),
  9915. name: "Head",
  9916. image: {
  9917. source: "./media/characters/argent/dragon-head.svg"
  9918. },
  9919. form: "dragon",
  9920. },
  9921. },
  9922. [
  9923. {
  9924. name: "Micro",
  9925. height: math.unit(2, "inches"),
  9926. form: "kobold",
  9927. },
  9928. {
  9929. name: "Normal",
  9930. height: math.unit(3 + 1 / 12, "feet"),
  9931. form: "kobold",
  9932. default: true
  9933. },
  9934. {
  9935. name: "Macro",
  9936. height: math.unit(120, "feet"),
  9937. form: "kobold",
  9938. },
  9939. {
  9940. name: "Speck",
  9941. height: math.unit(1, "mm"),
  9942. form: "dragon",
  9943. },
  9944. {
  9945. name: "Tiny",
  9946. height: math.unit(1, "cm"),
  9947. form: "dragon",
  9948. },
  9949. {
  9950. name: "Micro",
  9951. height: math.unit(5, "cm"),
  9952. form: "dragon",
  9953. },
  9954. {
  9955. name: "Normal",
  9956. height: math.unit(75, "inches"),
  9957. form: "dragon",
  9958. default: true
  9959. },
  9960. {
  9961. name: "Extra Tall",
  9962. height: math.unit(9, "feet"),
  9963. form: "dragon",
  9964. },
  9965. {
  9966. name: "Inconvenient",
  9967. height: math.unit(5, "meters"),
  9968. form: "dragon",
  9969. },
  9970. {
  9971. name: "Macro",
  9972. height: math.unit(70, "meters"),
  9973. form: "dragon",
  9974. },
  9975. {
  9976. name: "Macro+",
  9977. height: math.unit(250, "meters"),
  9978. form: "dragon",
  9979. },
  9980. {
  9981. name: "Megamacro",
  9982. height: math.unit(20, "km"),
  9983. form: "dragon",
  9984. },
  9985. {
  9986. name: "Mountainous",
  9987. height: math.unit(100, "km"),
  9988. form: "dragon",
  9989. },
  9990. {
  9991. name: "Continental",
  9992. height: math.unit(2, "megameters"),
  9993. form: "dragon",
  9994. },
  9995. {
  9996. name: "Too Big",
  9997. height: math.unit(900, "megameters"),
  9998. form: "dragon",
  9999. },
  10000. ],
  10001. {
  10002. "kobold": {
  10003. name: "Kobold",
  10004. default: true
  10005. },
  10006. "dragon": {
  10007. name: "Dragon",
  10008. },
  10009. }
  10010. ))
  10011. characterMakers.push(() => makeCharacter(
  10012. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10013. {
  10014. lamp: {
  10015. height: math.unit(7 * 1559 / 989, "feet"),
  10016. name: "Magic Lamp",
  10017. image: {
  10018. source: "./media/characters/mira-al-cul/lamp.svg",
  10019. extra: 1617 / 1559
  10020. }
  10021. },
  10022. front: {
  10023. height: math.unit(7, "feet"),
  10024. name: "Front",
  10025. image: {
  10026. source: "./media/characters/mira-al-cul/front.svg",
  10027. extra: 1044 / 990
  10028. }
  10029. },
  10030. },
  10031. [
  10032. {
  10033. name: "Heavily Restricted",
  10034. height: math.unit(7 * 1559 / 989, "feet")
  10035. },
  10036. {
  10037. name: "Freshly Freed",
  10038. height: math.unit(50 * 1559 / 989, "feet")
  10039. },
  10040. {
  10041. name: "World Encompassing",
  10042. height: math.unit(10000 * 1559 / 989, "miles")
  10043. },
  10044. {
  10045. name: "Galactic",
  10046. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10047. },
  10048. {
  10049. name: "Palmed Universe",
  10050. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10051. default: true
  10052. },
  10053. {
  10054. name: "Multiversal Matriarch",
  10055. height: math.unit(8.87e10, "yottameters")
  10056. },
  10057. {
  10058. name: "Void Mother",
  10059. height: math.unit(3.14e110, "yottaparsecs")
  10060. },
  10061. {
  10062. name: "Toying with Transcendence",
  10063. height: math.unit(1e307, "meters")
  10064. },
  10065. ]
  10066. ))
  10067. characterMakers.push(() => makeCharacter(
  10068. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10069. {
  10070. front: {
  10071. height: math.unit(17 + 1 / 12, "feet"),
  10072. weight: math.unit(476.2 * 5, "lbs"),
  10073. name: "Front",
  10074. image: {
  10075. source: "./media/characters/kuro-shi-uchū/front.svg",
  10076. extra: 2329 / 1835,
  10077. bottom: 0.02
  10078. }
  10079. },
  10080. },
  10081. [
  10082. {
  10083. name: "Micro",
  10084. height: math.unit(2, "inches")
  10085. },
  10086. {
  10087. name: "Normal",
  10088. height: math.unit(12, "meters")
  10089. },
  10090. {
  10091. name: "Planetary",
  10092. height: math.unit(0.00929, "AU"),
  10093. default: true
  10094. },
  10095. {
  10096. name: "Universal",
  10097. height: math.unit(20, "gigaparsecs")
  10098. },
  10099. ]
  10100. ))
  10101. characterMakers.push(() => makeCharacter(
  10102. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10103. {
  10104. front: {
  10105. height: math.unit(5 + 2 / 12, "feet"),
  10106. weight: math.unit(120, "lbs"),
  10107. name: "Front",
  10108. image: {
  10109. source: "./media/characters/katherine/front.svg",
  10110. extra: 2075 / 1969
  10111. }
  10112. },
  10113. dress: {
  10114. height: math.unit(5 + 2 / 12, "feet"),
  10115. weight: math.unit(120, "lbs"),
  10116. name: "Dress",
  10117. image: {
  10118. source: "./media/characters/katherine/dress.svg",
  10119. extra: 2258 / 2064
  10120. }
  10121. },
  10122. },
  10123. [
  10124. {
  10125. name: "Micro",
  10126. height: math.unit(1, "inches"),
  10127. default: true
  10128. },
  10129. {
  10130. name: "Normal",
  10131. height: math.unit(5 + 2 / 12, "feet")
  10132. },
  10133. {
  10134. name: "Macro",
  10135. height: math.unit(100, "meters")
  10136. },
  10137. {
  10138. name: "Megamacro",
  10139. height: math.unit(80, "miles")
  10140. },
  10141. ]
  10142. ))
  10143. characterMakers.push(() => makeCharacter(
  10144. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10145. {
  10146. front: {
  10147. height: math.unit(7 + 8 / 12, "feet"),
  10148. weight: math.unit(250, "lbs"),
  10149. name: "Front",
  10150. image: {
  10151. source: "./media/characters/yevis/front.svg",
  10152. extra: 1938 / 1755
  10153. }
  10154. }
  10155. },
  10156. [
  10157. {
  10158. name: "Mortal",
  10159. height: math.unit(7 + 8 / 12, "feet")
  10160. },
  10161. {
  10162. name: "Battle",
  10163. height: math.unit(25 + 11 / 12, "feet")
  10164. },
  10165. {
  10166. name: "Wrath",
  10167. height: math.unit(1654 + 11 / 12, "feet")
  10168. },
  10169. {
  10170. name: "Planet Destroyer",
  10171. height: math.unit(12000, "miles")
  10172. },
  10173. {
  10174. name: "Galaxy Conqueror",
  10175. height: math.unit(1.45, "zettameters"),
  10176. default: true
  10177. },
  10178. {
  10179. name: "Universal War",
  10180. height: math.unit(184, "gigaparsecs")
  10181. },
  10182. {
  10183. name: "Eternity War",
  10184. height: math.unit(1.98e55, "yottaparsecs")
  10185. },
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10190. {
  10191. front: {
  10192. height: math.unit(5 + 8 / 12, "feet"),
  10193. weight: math.unit(63, "kg"),
  10194. name: "Front",
  10195. image: {
  10196. source: "./media/characters/xavier/front.svg",
  10197. extra: 944 / 883
  10198. }
  10199. },
  10200. frontStretch: {
  10201. height: math.unit(5 + 8 / 12, "feet"),
  10202. weight: math.unit(63, "kg"),
  10203. name: "Stretching",
  10204. image: {
  10205. source: "./media/characters/xavier/front-stretch.svg",
  10206. extra: 962 / 820
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Normal",
  10213. height: math.unit(5 + 8 / 12, "feet")
  10214. },
  10215. {
  10216. name: "Macro",
  10217. height: math.unit(100, "meters"),
  10218. default: true
  10219. },
  10220. {
  10221. name: "McLargeHuge",
  10222. height: math.unit(10, "miles")
  10223. },
  10224. ]
  10225. ))
  10226. characterMakers.push(() => makeCharacter(
  10227. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10228. {
  10229. front: {
  10230. height: math.unit(5 + 5 / 12, "feet"),
  10231. weight: math.unit(150, "lb"),
  10232. name: "Front",
  10233. image: {
  10234. source: "./media/characters/joshii/front.svg",
  10235. extra: 765 / 653,
  10236. bottom: 51 / 816
  10237. }
  10238. },
  10239. foot: {
  10240. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10241. name: "Foot",
  10242. image: {
  10243. source: "./media/characters/joshii/foot.svg"
  10244. }
  10245. },
  10246. },
  10247. [
  10248. {
  10249. name: "Micro",
  10250. height: math.unit(2, "inches")
  10251. },
  10252. {
  10253. name: "Normal",
  10254. height: math.unit(5 + 5 / 12, "feet")
  10255. },
  10256. {
  10257. name: "Macro",
  10258. height: math.unit(785, "feet"),
  10259. default: true
  10260. },
  10261. {
  10262. name: "Megamacro",
  10263. height: math.unit(24.5, "miles")
  10264. },
  10265. ]
  10266. ))
  10267. characterMakers.push(() => makeCharacter(
  10268. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10269. {
  10270. front: {
  10271. height: math.unit(6, "feet"),
  10272. weight: math.unit(150, "lb"),
  10273. name: "Front",
  10274. image: {
  10275. source: "./media/characters/goddess-elizabeth/front.svg",
  10276. extra: 1800 / 1525,
  10277. bottom: 0.005
  10278. }
  10279. },
  10280. foot: {
  10281. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10282. name: "Foot",
  10283. image: {
  10284. source: "./media/characters/goddess-elizabeth/foot.svg"
  10285. }
  10286. },
  10287. mouth: {
  10288. height: math.unit(6, "feet"),
  10289. name: "Mouth",
  10290. image: {
  10291. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10292. }
  10293. },
  10294. },
  10295. [
  10296. {
  10297. name: "Micro",
  10298. height: math.unit(12, "feet")
  10299. },
  10300. {
  10301. name: "Normal",
  10302. height: math.unit(80, "miles"),
  10303. default: true
  10304. },
  10305. {
  10306. name: "Macro",
  10307. height: math.unit(15000, "parsecs")
  10308. },
  10309. ]
  10310. ))
  10311. characterMakers.push(() => makeCharacter(
  10312. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10313. {
  10314. front: {
  10315. height: math.unit(5 + 9 / 12, "feet"),
  10316. weight: math.unit(144, "lb"),
  10317. name: "Front",
  10318. image: {
  10319. source: "./media/characters/kara/front.svg"
  10320. }
  10321. },
  10322. feet: {
  10323. height: math.unit(6 / 6.765, "feet"),
  10324. name: "Kara's Feet",
  10325. rename: true,
  10326. image: {
  10327. source: "./media/characters/kara/feet.svg"
  10328. }
  10329. },
  10330. },
  10331. [
  10332. {
  10333. name: "Normal",
  10334. height: math.unit(5 + 9 / 12, "feet")
  10335. },
  10336. {
  10337. name: "Macro",
  10338. height: math.unit(174, "feet"),
  10339. default: true
  10340. },
  10341. ]
  10342. ))
  10343. characterMakers.push(() => makeCharacter(
  10344. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10345. {
  10346. front: {
  10347. height: math.unit(18, "feet"),
  10348. weight: math.unit(4050, "lb"),
  10349. name: "Front",
  10350. image: {
  10351. source: "./media/characters/tyrone/front.svg",
  10352. extra: 2405 / 2270,
  10353. bottom: 182 / 2587
  10354. }
  10355. },
  10356. },
  10357. [
  10358. {
  10359. name: "Normal",
  10360. height: math.unit(18, "feet"),
  10361. default: true
  10362. },
  10363. {
  10364. name: "Macro",
  10365. height: math.unit(300, "feet")
  10366. },
  10367. {
  10368. name: "Megamacro",
  10369. height: math.unit(15, "km")
  10370. },
  10371. {
  10372. name: "Gigamacro",
  10373. height: math.unit(500, "km")
  10374. },
  10375. {
  10376. name: "Teramacro",
  10377. height: math.unit(0.5, "gigameters")
  10378. },
  10379. {
  10380. name: "Omnimacro",
  10381. height: math.unit(1e252, "yottauniverse")
  10382. },
  10383. ]
  10384. ))
  10385. characterMakers.push(() => makeCharacter(
  10386. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10387. {
  10388. front: {
  10389. height: math.unit(7 + 8 / 12, "feet"),
  10390. weight: math.unit(120, "lb"),
  10391. name: "Front",
  10392. image: {
  10393. source: "./media/characters/danny/front.svg",
  10394. extra: 1490 / 1350
  10395. }
  10396. },
  10397. back: {
  10398. height: math.unit(7 + 8 / 12, "feet"),
  10399. weight: math.unit(120, "lb"),
  10400. name: "Back",
  10401. image: {
  10402. source: "./media/characters/danny/back.svg",
  10403. extra: 1490 / 1350
  10404. }
  10405. },
  10406. },
  10407. [
  10408. {
  10409. name: "Normal",
  10410. height: math.unit(7 + 8 / 12, "feet"),
  10411. default: true
  10412. },
  10413. ]
  10414. ))
  10415. characterMakers.push(() => makeCharacter(
  10416. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10417. {
  10418. front: {
  10419. height: math.unit(3.5, "inches"),
  10420. weight: math.unit(19, "grams"),
  10421. name: "Front",
  10422. image: {
  10423. source: "./media/characters/mallow/front.svg",
  10424. extra: 471 / 431
  10425. }
  10426. },
  10427. back: {
  10428. height: math.unit(3.5, "inches"),
  10429. weight: math.unit(19, "grams"),
  10430. name: "Back",
  10431. image: {
  10432. source: "./media/characters/mallow/back.svg",
  10433. extra: 471 / 431
  10434. }
  10435. },
  10436. },
  10437. [
  10438. {
  10439. name: "Normal",
  10440. height: math.unit(3.5, "inches"),
  10441. default: true
  10442. },
  10443. ]
  10444. ))
  10445. characterMakers.push(() => makeCharacter(
  10446. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10447. {
  10448. front: {
  10449. height: math.unit(9, "feet"),
  10450. weight: math.unit(230, "kg"),
  10451. name: "Front",
  10452. image: {
  10453. source: "./media/characters/starry-aqua/front.svg"
  10454. }
  10455. },
  10456. back: {
  10457. height: math.unit(9, "feet"),
  10458. weight: math.unit(230, "kg"),
  10459. name: "Back",
  10460. image: {
  10461. source: "./media/characters/starry-aqua/back.svg"
  10462. }
  10463. },
  10464. hand: {
  10465. height: math.unit(9 * 0.1168, "feet"),
  10466. name: "Hand",
  10467. image: {
  10468. source: "./media/characters/starry-aqua/hand.svg"
  10469. }
  10470. },
  10471. foot: {
  10472. height: math.unit(9 * 0.18, "feet"),
  10473. name: "Foot",
  10474. image: {
  10475. source: "./media/characters/starry-aqua/foot.svg"
  10476. }
  10477. }
  10478. },
  10479. [
  10480. {
  10481. name: "Micro",
  10482. height: math.unit(3, "inches")
  10483. },
  10484. {
  10485. name: "Normal",
  10486. height: math.unit(9, "feet")
  10487. },
  10488. {
  10489. name: "Macro",
  10490. height: math.unit(300, "feet"),
  10491. default: true
  10492. },
  10493. {
  10494. name: "Megamacro",
  10495. height: math.unit(3200, "feet")
  10496. }
  10497. ]
  10498. ))
  10499. characterMakers.push(() => makeCharacter(
  10500. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10501. {
  10502. front: {
  10503. height: math.unit(15, "feet"),
  10504. weight: math.unit(5026, "lb"),
  10505. name: "Front",
  10506. image: {
  10507. source: "./media/characters/luka-towers/front.svg",
  10508. extra: 1269/1133,
  10509. bottom: 51/1320
  10510. }
  10511. },
  10512. },
  10513. [
  10514. {
  10515. name: "Normal",
  10516. height: math.unit(15, "feet"),
  10517. default: true
  10518. },
  10519. {
  10520. name: "Minimacro",
  10521. height: math.unit(25, "feet")
  10522. },
  10523. {
  10524. name: "Macro",
  10525. height: math.unit(320, "feet")
  10526. },
  10527. {
  10528. name: "Megamacro",
  10529. height: math.unit(35000, "feet")
  10530. },
  10531. {
  10532. name: "Gigamacro",
  10533. height: math.unit(4000, "miles")
  10534. },
  10535. {
  10536. name: "Teramacro",
  10537. height: math.unit(15000, "miles")
  10538. },
  10539. ]
  10540. ))
  10541. characterMakers.push(() => makeCharacter(
  10542. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10543. {
  10544. front: {
  10545. height: math.unit(6, "feet"),
  10546. weight: math.unit(150, "lb"),
  10547. name: "Front",
  10548. image: {
  10549. source: "./media/characters/natalie-nightring/front.svg",
  10550. extra: 1,
  10551. bottom: 0.06
  10552. }
  10553. },
  10554. },
  10555. [
  10556. {
  10557. name: "Uh Oh",
  10558. height: math.unit(0.1, "mm")
  10559. },
  10560. {
  10561. name: "Small",
  10562. height: math.unit(3, "inches")
  10563. },
  10564. {
  10565. name: "Human Scale",
  10566. height: math.unit(6, "feet")
  10567. },
  10568. {
  10569. name: "Librarian",
  10570. height: math.unit(50, "feet"),
  10571. default: true
  10572. },
  10573. {
  10574. name: "Immense",
  10575. height: math.unit(200, "miles")
  10576. },
  10577. ]
  10578. ))
  10579. characterMakers.push(() => makeCharacter(
  10580. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10581. {
  10582. front: {
  10583. height: math.unit(6, "feet"),
  10584. weight: math.unit(180, "lbs"),
  10585. name: "Front",
  10586. image: {
  10587. source: "./media/characters/danni-rosie/front.svg",
  10588. extra: 1260 / 1128,
  10589. bottom: 0.022
  10590. }
  10591. },
  10592. },
  10593. [
  10594. {
  10595. name: "Micro",
  10596. height: math.unit(2, "inches"),
  10597. default: true
  10598. },
  10599. ]
  10600. ))
  10601. characterMakers.push(() => makeCharacter(
  10602. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10603. {
  10604. front: {
  10605. height: math.unit(5 + 9 / 12, "feet"),
  10606. weight: math.unit(220, "lb"),
  10607. name: "Front",
  10608. image: {
  10609. source: "./media/characters/samantha-kruse/front.svg",
  10610. extra: (985 / 935),
  10611. bottom: 0.03
  10612. }
  10613. },
  10614. frontUndressed: {
  10615. height: math.unit(5 + 9 / 12, "feet"),
  10616. weight: math.unit(220, "lb"),
  10617. name: "Front (Undressed)",
  10618. image: {
  10619. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10620. extra: (973 / 923),
  10621. bottom: 0.025
  10622. }
  10623. },
  10624. fat: {
  10625. height: math.unit(5 + 9 / 12, "feet"),
  10626. weight: math.unit(900, "lb"),
  10627. name: "Front (Fat)",
  10628. image: {
  10629. source: "./media/characters/samantha-kruse/fat.svg",
  10630. extra: 2688 / 2561
  10631. }
  10632. },
  10633. },
  10634. [
  10635. {
  10636. name: "Normal",
  10637. height: math.unit(5 + 9 / 12, "feet"),
  10638. default: true
  10639. }
  10640. ]
  10641. ))
  10642. characterMakers.push(() => makeCharacter(
  10643. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10644. {
  10645. back: {
  10646. height: math.unit(5 + 4 / 12, "feet"),
  10647. weight: math.unit(4963, "lb"),
  10648. name: "Back",
  10649. image: {
  10650. source: "./media/characters/amelia-rosie/back.svg",
  10651. extra: 1113 / 963,
  10652. bottom: 0.01
  10653. }
  10654. },
  10655. },
  10656. [
  10657. {
  10658. name: "Level 0",
  10659. height: math.unit(5 + 4 / 12, "feet")
  10660. },
  10661. {
  10662. name: "Level 1",
  10663. height: math.unit(164597, "feet"),
  10664. default: true
  10665. },
  10666. {
  10667. name: "Level 2",
  10668. height: math.unit(956243, "miles")
  10669. },
  10670. {
  10671. name: "Level 3",
  10672. height: math.unit(29421709423, "miles")
  10673. },
  10674. {
  10675. name: "Level 4",
  10676. height: math.unit(154, "lightyears")
  10677. },
  10678. {
  10679. name: "Level 5",
  10680. height: math.unit(4738272, "lightyears")
  10681. },
  10682. {
  10683. name: "Level 6",
  10684. height: math.unit(145787152896, "lightyears")
  10685. },
  10686. ]
  10687. ))
  10688. characterMakers.push(() => makeCharacter(
  10689. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10690. {
  10691. front: {
  10692. height: math.unit(5 + 11 / 12, "feet"),
  10693. weight: math.unit(65, "kg"),
  10694. name: "Front",
  10695. image: {
  10696. source: "./media/characters/rook-kitara/front.svg",
  10697. extra: 1347 / 1274,
  10698. bottom: 0.005
  10699. }
  10700. },
  10701. },
  10702. [
  10703. {
  10704. name: "Totally Unfair",
  10705. height: math.unit(1.8, "mm")
  10706. },
  10707. {
  10708. name: "Lap Rookie",
  10709. height: math.unit(1.4, "feet")
  10710. },
  10711. {
  10712. name: "Normal",
  10713. height: math.unit(5 + 11 / 12, "feet"),
  10714. default: true
  10715. },
  10716. {
  10717. name: "How Did This Happen",
  10718. height: math.unit(80, "miles")
  10719. }
  10720. ]
  10721. ))
  10722. characterMakers.push(() => makeCharacter(
  10723. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10724. {
  10725. front: {
  10726. height: math.unit(7, "feet"),
  10727. weight: math.unit(300, "lb"),
  10728. name: "Front",
  10729. image: {
  10730. source: "./media/characters/pisces/front.svg",
  10731. extra: 2255 / 2115,
  10732. bottom: 0.03
  10733. }
  10734. },
  10735. back: {
  10736. height: math.unit(7, "feet"),
  10737. weight: math.unit(300, "lb"),
  10738. name: "Back",
  10739. image: {
  10740. source: "./media/characters/pisces/back.svg",
  10741. extra: 2146 / 2055,
  10742. bottom: 0.04
  10743. }
  10744. },
  10745. },
  10746. [
  10747. {
  10748. name: "Normal",
  10749. height: math.unit(7, "feet"),
  10750. default: true
  10751. },
  10752. {
  10753. name: "Swimming Pool",
  10754. height: math.unit(12.2, "meters")
  10755. },
  10756. {
  10757. name: "Olympic Swimming Pool",
  10758. height: math.unit(56.3, "meters")
  10759. },
  10760. {
  10761. name: "Lake Superior",
  10762. height: math.unit(93900, "meters")
  10763. },
  10764. {
  10765. name: "Mediterranean Sea",
  10766. height: math.unit(644457, "meters")
  10767. },
  10768. {
  10769. name: "World's Oceans",
  10770. height: math.unit(4567491, "meters")
  10771. },
  10772. ]
  10773. ))
  10774. characterMakers.push(() => makeCharacter(
  10775. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10776. {
  10777. front: {
  10778. height: math.unit(2.3, "meters"),
  10779. weight: math.unit(120, "kg"),
  10780. name: "Front",
  10781. image: {
  10782. source: "./media/characters/zelas/front.svg"
  10783. }
  10784. },
  10785. side: {
  10786. height: math.unit(2.3, "meters"),
  10787. weight: math.unit(120, "kg"),
  10788. name: "Side",
  10789. image: {
  10790. source: "./media/characters/zelas/side.svg"
  10791. }
  10792. },
  10793. back: {
  10794. height: math.unit(2.3, "meters"),
  10795. weight: math.unit(120, "kg"),
  10796. name: "Back",
  10797. image: {
  10798. source: "./media/characters/zelas/back.svg"
  10799. }
  10800. },
  10801. foot: {
  10802. height: math.unit(1.116, "feet"),
  10803. name: "Foot",
  10804. image: {
  10805. source: "./media/characters/zelas/foot.svg"
  10806. }
  10807. },
  10808. },
  10809. [
  10810. {
  10811. name: "Normal",
  10812. height: math.unit(2.3, "meters")
  10813. },
  10814. {
  10815. name: "Macro",
  10816. height: math.unit(30, "meters"),
  10817. default: true
  10818. },
  10819. ]
  10820. ))
  10821. characterMakers.push(() => makeCharacter(
  10822. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10823. {
  10824. front: {
  10825. height: math.unit(1, "inch"),
  10826. weight: math.unit(0.21, "grams"),
  10827. name: "Front",
  10828. image: {
  10829. source: "./media/characters/talbot/front.svg",
  10830. extra: 594 / 544
  10831. }
  10832. },
  10833. },
  10834. [
  10835. {
  10836. name: "Micro",
  10837. height: math.unit(1, "inch"),
  10838. default: true
  10839. },
  10840. ]
  10841. ))
  10842. characterMakers.push(() => makeCharacter(
  10843. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10844. {
  10845. front: {
  10846. height: math.unit(3 + 3 / 12, "feet"),
  10847. weight: math.unit(51.8, "lb"),
  10848. name: "Front",
  10849. image: {
  10850. source: "./media/characters/fliss/front.svg",
  10851. extra: 840 / 640
  10852. }
  10853. },
  10854. },
  10855. [
  10856. {
  10857. name: "Teeny Tiny",
  10858. height: math.unit(1, "mm")
  10859. },
  10860. {
  10861. name: "Small",
  10862. height: math.unit(1, "inch"),
  10863. default: true
  10864. },
  10865. {
  10866. name: "Standard Sylveon",
  10867. height: math.unit(3 + 3 / 12, "feet")
  10868. },
  10869. {
  10870. name: "Large Nuisance",
  10871. height: math.unit(33, "feet")
  10872. },
  10873. {
  10874. name: "City Filler",
  10875. height: math.unit(3000, "feet")
  10876. },
  10877. {
  10878. name: "New Horizon",
  10879. height: math.unit(6000, "miles")
  10880. },
  10881. ]
  10882. ))
  10883. characterMakers.push(() => makeCharacter(
  10884. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10885. {
  10886. front: {
  10887. height: math.unit(5, "cm"),
  10888. weight: math.unit(1.94, "g"),
  10889. name: "Front",
  10890. image: {
  10891. source: "./media/characters/fleta/front.svg",
  10892. extra: 835 / 803
  10893. }
  10894. },
  10895. back: {
  10896. height: math.unit(5, "cm"),
  10897. weight: math.unit(1.94, "g"),
  10898. name: "Back",
  10899. image: {
  10900. source: "./media/characters/fleta/back.svg",
  10901. extra: 835 / 803
  10902. }
  10903. },
  10904. },
  10905. [
  10906. {
  10907. name: "Micro",
  10908. height: math.unit(5, "cm"),
  10909. default: true
  10910. },
  10911. ]
  10912. ))
  10913. characterMakers.push(() => makeCharacter(
  10914. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10915. {
  10916. front: {
  10917. height: math.unit(6, "feet"),
  10918. weight: math.unit(225, "lb"),
  10919. name: "Front",
  10920. image: {
  10921. source: "./media/characters/dominic/front.svg",
  10922. extra: 1770 / 1620,
  10923. bottom: 0.025
  10924. }
  10925. },
  10926. back: {
  10927. height: math.unit(6, "feet"),
  10928. weight: math.unit(225, "lb"),
  10929. name: "Back",
  10930. image: {
  10931. source: "./media/characters/dominic/back.svg",
  10932. extra: 1745 / 1620,
  10933. bottom: 0.065
  10934. }
  10935. },
  10936. },
  10937. [
  10938. {
  10939. name: "Nano",
  10940. height: math.unit(0.1, "mm")
  10941. },
  10942. {
  10943. name: "Micro-",
  10944. height: math.unit(1, "mm")
  10945. },
  10946. {
  10947. name: "Micro",
  10948. height: math.unit(4, "inches")
  10949. },
  10950. {
  10951. name: "Normal",
  10952. height: math.unit(6 + 4 / 12, "feet"),
  10953. default: true
  10954. },
  10955. {
  10956. name: "Macro",
  10957. height: math.unit(115, "feet")
  10958. },
  10959. {
  10960. name: "Macro+",
  10961. height: math.unit(955, "feet")
  10962. },
  10963. {
  10964. name: "Megamacro",
  10965. height: math.unit(8990, "feet")
  10966. },
  10967. {
  10968. name: "Gigmacro",
  10969. height: math.unit(9310, "miles")
  10970. },
  10971. {
  10972. name: "Teramacro",
  10973. height: math.unit(1567005010, "miles")
  10974. },
  10975. {
  10976. name: "Examacro",
  10977. height: math.unit(1425, "parsecs")
  10978. },
  10979. ]
  10980. ))
  10981. characterMakers.push(() => makeCharacter(
  10982. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10983. {
  10984. front: {
  10985. height: math.unit(400, "feet"),
  10986. weight: math.unit(44444444, "lb"),
  10987. name: "Front",
  10988. image: {
  10989. source: "./media/characters/major-colonel/front.svg"
  10990. }
  10991. },
  10992. back: {
  10993. height: math.unit(400, "feet"),
  10994. weight: math.unit(44444444, "lb"),
  10995. name: "Back",
  10996. image: {
  10997. source: "./media/characters/major-colonel/back.svg"
  10998. }
  10999. },
  11000. },
  11001. [
  11002. {
  11003. name: "Macro",
  11004. height: math.unit(400, "feet"),
  11005. default: true
  11006. },
  11007. ]
  11008. ))
  11009. characterMakers.push(() => makeCharacter(
  11010. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11011. {
  11012. catFront: {
  11013. height: math.unit(6, "feet"),
  11014. weight: math.unit(120, "lb"),
  11015. name: "Front (Cat Side)",
  11016. image: {
  11017. source: "./media/characters/axel-lycan/cat-front.svg",
  11018. extra: 430 / 402,
  11019. bottom: 43 / 472.35
  11020. }
  11021. },
  11022. catBack: {
  11023. height: math.unit(6, "feet"),
  11024. weight: math.unit(120, "lb"),
  11025. name: "Back (Cat Side)",
  11026. image: {
  11027. source: "./media/characters/axel-lycan/cat-back.svg",
  11028. extra: 447 / 419,
  11029. bottom: 23.3 / 469
  11030. }
  11031. },
  11032. wolfFront: {
  11033. height: math.unit(6, "feet"),
  11034. weight: math.unit(120, "lb"),
  11035. name: "Front (Wolf Side)",
  11036. image: {
  11037. source: "./media/characters/axel-lycan/wolf-front.svg",
  11038. extra: 485 / 456,
  11039. bottom: 19 / 504
  11040. }
  11041. },
  11042. wolfBack: {
  11043. height: math.unit(6, "feet"),
  11044. weight: math.unit(120, "lb"),
  11045. name: "Back (Wolf Side)",
  11046. image: {
  11047. source: "./media/characters/axel-lycan/wolf-back.svg",
  11048. extra: 475 / 438,
  11049. bottom: 39.2 / 514
  11050. }
  11051. },
  11052. },
  11053. [
  11054. {
  11055. name: "Macro",
  11056. height: math.unit(1, "km"),
  11057. default: true
  11058. },
  11059. ]
  11060. ))
  11061. characterMakers.push(() => makeCharacter(
  11062. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11063. {
  11064. front: {
  11065. height: math.unit(5 + 9 / 12, "feet"),
  11066. weight: math.unit(175, "lb"),
  11067. name: "Front",
  11068. image: {
  11069. source: "./media/characters/vanrel-hyena/front.svg",
  11070. extra: 1086 / 1010,
  11071. bottom: 0.04
  11072. }
  11073. },
  11074. },
  11075. [
  11076. {
  11077. name: "Normal",
  11078. height: math.unit(5 + 9 / 12, "feet"),
  11079. default: true
  11080. },
  11081. ]
  11082. ))
  11083. characterMakers.push(() => makeCharacter(
  11084. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11085. {
  11086. front: {
  11087. height: math.unit(6, "feet"),
  11088. weight: math.unit(103, "lb"),
  11089. name: "Front",
  11090. image: {
  11091. source: "./media/characters/abbott-absol/front.svg",
  11092. extra: 765/694,
  11093. bottom: 47/812
  11094. }
  11095. },
  11096. },
  11097. [
  11098. {
  11099. name: "Megamicro",
  11100. height: math.unit(0.1, "mm")
  11101. },
  11102. {
  11103. name: "Micro",
  11104. height: math.unit(1, "inch")
  11105. },
  11106. {
  11107. name: "Normal",
  11108. height: math.unit(6, "feet"),
  11109. default: true
  11110. },
  11111. ]
  11112. ))
  11113. characterMakers.push(() => makeCharacter(
  11114. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11115. {
  11116. front: {
  11117. height: math.unit(6, "feet"),
  11118. weight: math.unit(264, "lb"),
  11119. name: "Front",
  11120. image: {
  11121. source: "./media/characters/hector/front.svg",
  11122. extra: 2280 / 2130,
  11123. bottom: 0.07
  11124. }
  11125. },
  11126. },
  11127. [
  11128. {
  11129. name: "Normal",
  11130. height: math.unit(12.25, "foot"),
  11131. default: true
  11132. },
  11133. {
  11134. name: "Macro",
  11135. height: math.unit(160, "feet")
  11136. },
  11137. ]
  11138. ))
  11139. characterMakers.push(() => makeCharacter(
  11140. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11141. {
  11142. front: {
  11143. height: math.unit(6, "feet"),
  11144. weight: math.unit(150, "lb"),
  11145. name: "Front",
  11146. image: {
  11147. source: "./media/characters/sal/front.svg",
  11148. extra: 1846 / 1699,
  11149. bottom: 0.04
  11150. }
  11151. },
  11152. },
  11153. [
  11154. {
  11155. name: "Megamacro",
  11156. height: math.unit(10, "miles"),
  11157. default: true
  11158. },
  11159. ]
  11160. ))
  11161. characterMakers.push(() => makeCharacter(
  11162. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11163. {
  11164. front: {
  11165. height: math.unit(3, "meters"),
  11166. weight: math.unit(450, "kg"),
  11167. name: "front",
  11168. image: {
  11169. source: "./media/characters/ranger/front.svg",
  11170. extra: 2401 / 2243,
  11171. bottom: 0.05
  11172. }
  11173. },
  11174. },
  11175. [
  11176. {
  11177. name: "Normal",
  11178. height: math.unit(3, "meters"),
  11179. default: true
  11180. },
  11181. ]
  11182. ))
  11183. characterMakers.push(() => makeCharacter(
  11184. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11185. {
  11186. front: {
  11187. height: math.unit(14, "feet"),
  11188. weight: math.unit(800, "kg"),
  11189. name: "Front",
  11190. image: {
  11191. source: "./media/characters/theresa/front.svg",
  11192. extra: 3575 / 3346,
  11193. bottom: 0.03
  11194. }
  11195. },
  11196. },
  11197. [
  11198. {
  11199. name: "Normal",
  11200. height: math.unit(14, "feet"),
  11201. default: true
  11202. },
  11203. ]
  11204. ))
  11205. characterMakers.push(() => makeCharacter(
  11206. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11207. {
  11208. front: {
  11209. height: math.unit(6, "feet"),
  11210. weight: math.unit(3, "kg"),
  11211. name: "Front",
  11212. image: {
  11213. source: "./media/characters/ine/front.svg",
  11214. extra: 678 / 539,
  11215. bottom: 0.023
  11216. }
  11217. },
  11218. },
  11219. [
  11220. {
  11221. name: "Normal",
  11222. height: math.unit(2.265, "feet"),
  11223. default: true
  11224. },
  11225. ]
  11226. ))
  11227. characterMakers.push(() => makeCharacter(
  11228. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11229. {
  11230. front: {
  11231. height: math.unit(5, "feet"),
  11232. weight: math.unit(30, "kg"),
  11233. name: "Front",
  11234. image: {
  11235. source: "./media/characters/vial/front.svg",
  11236. extra: 1365 / 1277,
  11237. bottom: 0.04
  11238. }
  11239. },
  11240. },
  11241. [
  11242. {
  11243. name: "Normal",
  11244. height: math.unit(5, "feet"),
  11245. default: true
  11246. },
  11247. ]
  11248. ))
  11249. characterMakers.push(() => makeCharacter(
  11250. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11251. {
  11252. side: {
  11253. height: math.unit(3.4, "meters"),
  11254. weight: math.unit(1000, "lb"),
  11255. name: "Side",
  11256. image: {
  11257. source: "./media/characters/rovoska/side.svg",
  11258. extra: 4403 / 1515
  11259. }
  11260. },
  11261. },
  11262. [
  11263. {
  11264. name: "Normal",
  11265. height: math.unit(3.4, "meters"),
  11266. default: true
  11267. },
  11268. ]
  11269. ))
  11270. characterMakers.push(() => makeCharacter(
  11271. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11272. {
  11273. front: {
  11274. height: math.unit(8, "feet"),
  11275. weight: math.unit(315, "lb"),
  11276. name: "Front",
  11277. image: {
  11278. source: "./media/characters/gunner-rotthbauer/front.svg"
  11279. }
  11280. },
  11281. back: {
  11282. height: math.unit(8, "feet"),
  11283. weight: math.unit(315, "lb"),
  11284. name: "Back",
  11285. image: {
  11286. source: "./media/characters/gunner-rotthbauer/back.svg"
  11287. }
  11288. },
  11289. },
  11290. [
  11291. {
  11292. name: "Micro",
  11293. height: math.unit(3.5, "inches")
  11294. },
  11295. {
  11296. name: "Normal",
  11297. height: math.unit(8, "feet"),
  11298. default: true
  11299. },
  11300. {
  11301. name: "Macro",
  11302. height: math.unit(250, "feet")
  11303. },
  11304. {
  11305. name: "Megamacro",
  11306. height: math.unit(1, "AU")
  11307. },
  11308. ]
  11309. ))
  11310. characterMakers.push(() => makeCharacter(
  11311. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11312. {
  11313. front: {
  11314. height: math.unit(5 + 5 / 12, "feet"),
  11315. weight: math.unit(140, "lb"),
  11316. name: "Front",
  11317. image: {
  11318. source: "./media/characters/allatia/front.svg",
  11319. extra: 1227 / 1180,
  11320. bottom: 0.027
  11321. }
  11322. },
  11323. },
  11324. [
  11325. {
  11326. name: "Normal",
  11327. height: math.unit(5 + 5 / 12, "feet")
  11328. },
  11329. {
  11330. name: "Macro",
  11331. height: math.unit(250, "feet"),
  11332. default: true
  11333. },
  11334. {
  11335. name: "Megamacro",
  11336. height: math.unit(8, "miles")
  11337. }
  11338. ]
  11339. ))
  11340. characterMakers.push(() => makeCharacter(
  11341. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11342. {
  11343. front: {
  11344. height: math.unit(6, "feet"),
  11345. weight: math.unit(120, "lb"),
  11346. name: "Front",
  11347. image: {
  11348. source: "./media/characters/tene/front.svg",
  11349. extra: 814/750,
  11350. bottom: 36/850
  11351. }
  11352. },
  11353. stomping: {
  11354. height: math.unit(2.025, "meters"),
  11355. weight: math.unit(120, "lb"),
  11356. name: "Stomping",
  11357. image: {
  11358. source: "./media/characters/tene/stomping.svg",
  11359. extra: 885/821,
  11360. bottom: 15/900
  11361. }
  11362. },
  11363. sitting: {
  11364. height: math.unit(1, "meter"),
  11365. weight: math.unit(120, "lb"),
  11366. name: "Sitting",
  11367. image: {
  11368. source: "./media/characters/tene/sitting.svg",
  11369. extra: 396/366,
  11370. bottom: 79/475
  11371. }
  11372. },
  11373. smiling: {
  11374. height: math.unit(1.2, "feet"),
  11375. name: "Smiling",
  11376. image: {
  11377. source: "./media/characters/tene/smiling.svg",
  11378. extra: 1364/1071,
  11379. bottom: 0/1364
  11380. }
  11381. },
  11382. smug: {
  11383. height: math.unit(1.3, "feet"),
  11384. name: "Smug",
  11385. image: {
  11386. source: "./media/characters/tene/smug.svg",
  11387. extra: 1323/1082,
  11388. bottom: 0/1323
  11389. }
  11390. },
  11391. feral: {
  11392. height: math.unit(3.9, "feet"),
  11393. weight: math.unit(250, "lb"),
  11394. name: "Feral",
  11395. image: {
  11396. source: "./media/characters/tene/feral.svg",
  11397. extra: 717 / 458,
  11398. bottom: 0.179
  11399. }
  11400. },
  11401. },
  11402. [
  11403. {
  11404. name: "Normal",
  11405. height: math.unit(6, "feet")
  11406. },
  11407. {
  11408. name: "Macro",
  11409. height: math.unit(300, "feet"),
  11410. default: true
  11411. },
  11412. {
  11413. name: "Megamacro",
  11414. height: math.unit(5, "miles")
  11415. },
  11416. ]
  11417. ))
  11418. characterMakers.push(() => makeCharacter(
  11419. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11420. {
  11421. side: {
  11422. height: math.unit(6, "feet"),
  11423. name: "Side",
  11424. image: {
  11425. source: "./media/characters/evander/side.svg",
  11426. extra: 877 / 477
  11427. }
  11428. },
  11429. },
  11430. [
  11431. {
  11432. name: "Normal",
  11433. height: math.unit(0.83, "meters"),
  11434. default: true
  11435. },
  11436. ]
  11437. ))
  11438. characterMakers.push(() => makeCharacter(
  11439. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11440. {
  11441. front: {
  11442. height: math.unit(12, "feet"),
  11443. weight: math.unit(1000, "lb"),
  11444. name: "Front",
  11445. image: {
  11446. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11447. extra: 1762 / 1611
  11448. }
  11449. },
  11450. back: {
  11451. height: math.unit(12, "feet"),
  11452. weight: math.unit(1000, "lb"),
  11453. name: "Back",
  11454. image: {
  11455. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11456. extra: 1762 / 1611
  11457. }
  11458. },
  11459. },
  11460. [
  11461. {
  11462. name: "Normal",
  11463. height: math.unit(12, "feet"),
  11464. default: true
  11465. },
  11466. {
  11467. name: "Kaiju",
  11468. height: math.unit(150, "feet")
  11469. },
  11470. ]
  11471. ))
  11472. characterMakers.push(() => makeCharacter(
  11473. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11474. {
  11475. front: {
  11476. height: math.unit(6, "feet"),
  11477. weight: math.unit(150, "lb"),
  11478. name: "Front",
  11479. image: {
  11480. source: "./media/characters/zero-alurus/front.svg"
  11481. }
  11482. },
  11483. back: {
  11484. height: math.unit(6, "feet"),
  11485. weight: math.unit(150, "lb"),
  11486. name: "Back",
  11487. image: {
  11488. source: "./media/characters/zero-alurus/back.svg"
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Normal",
  11495. height: math.unit(5 + 10 / 12, "feet")
  11496. },
  11497. {
  11498. name: "Macro",
  11499. height: math.unit(60, "feet"),
  11500. default: true
  11501. },
  11502. {
  11503. name: "Macro+",
  11504. height: math.unit(450, "feet")
  11505. },
  11506. ]
  11507. ))
  11508. characterMakers.push(() => makeCharacter(
  11509. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11510. {
  11511. front: {
  11512. height: math.unit(6, "feet"),
  11513. weight: math.unit(200, "lb"),
  11514. name: "Front",
  11515. image: {
  11516. source: "./media/characters/mega-shi/front.svg",
  11517. extra: 1279 / 1250,
  11518. bottom: 0.02
  11519. }
  11520. },
  11521. back: {
  11522. height: math.unit(6, "feet"),
  11523. weight: math.unit(200, "lb"),
  11524. name: "Back",
  11525. image: {
  11526. source: "./media/characters/mega-shi/back.svg",
  11527. extra: 1279 / 1250,
  11528. bottom: 0.02
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Micro",
  11535. height: math.unit(16 + 6 / 12, "feet")
  11536. },
  11537. {
  11538. name: "Third Dimension",
  11539. height: math.unit(40, "meters")
  11540. },
  11541. {
  11542. name: "Normal",
  11543. height: math.unit(660, "feet"),
  11544. default: true
  11545. },
  11546. {
  11547. name: "Megamacro",
  11548. height: math.unit(10, "miles")
  11549. },
  11550. {
  11551. name: "Planetary Launch",
  11552. height: math.unit(500, "miles")
  11553. },
  11554. {
  11555. name: "Interstellar",
  11556. height: math.unit(1e9, "miles")
  11557. },
  11558. {
  11559. name: "Leaving the Universe",
  11560. height: math.unit(1, "gigaparsec")
  11561. },
  11562. {
  11563. name: "Travelling Universes",
  11564. height: math.unit(30e15, "parsecs")
  11565. },
  11566. ]
  11567. ))
  11568. characterMakers.push(() => makeCharacter(
  11569. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11570. {
  11571. front: {
  11572. height: math.unit(5 + 4/12, "feet"),
  11573. weight: math.unit(120, "lb"),
  11574. name: "Front",
  11575. image: {
  11576. source: "./media/characters/odyssey/front.svg",
  11577. extra: 1747/1571,
  11578. bottom: 47/1794
  11579. }
  11580. },
  11581. side: {
  11582. height: math.unit(5.1, "feet"),
  11583. weight: math.unit(120, "lb"),
  11584. name: "Side",
  11585. image: {
  11586. source: "./media/characters/odyssey/side.svg",
  11587. extra: 1847/1619,
  11588. bottom: 47/1894
  11589. }
  11590. },
  11591. lounging: {
  11592. height: math.unit(1.464, "feet"),
  11593. weight: math.unit(120, "lb"),
  11594. name: "Lounging",
  11595. image: {
  11596. source: "./media/characters/odyssey/lounging.svg",
  11597. extra: 1235/837,
  11598. bottom: 551/1786
  11599. }
  11600. },
  11601. },
  11602. [
  11603. {
  11604. name: "Normal",
  11605. height: math.unit(5 + 4 / 12, "feet")
  11606. },
  11607. {
  11608. name: "Macro",
  11609. height: math.unit(1, "km")
  11610. },
  11611. {
  11612. name: "Megamacro",
  11613. height: math.unit(3000, "km")
  11614. },
  11615. {
  11616. name: "Gigamacro",
  11617. height: math.unit(1, "AU"),
  11618. default: true
  11619. },
  11620. {
  11621. name: "Omniversal",
  11622. height: math.unit(100e14, "lightyears")
  11623. },
  11624. ]
  11625. ))
  11626. characterMakers.push(() => makeCharacter(
  11627. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11628. {
  11629. front: {
  11630. height: math.unit(5 + 10/12, "feet"),
  11631. name: "Front",
  11632. image: {
  11633. source: "./media/characters/mekuto/front.svg",
  11634. extra: 875/835,
  11635. bottom: 46/921
  11636. }
  11637. },
  11638. },
  11639. [
  11640. {
  11641. name: "Minimicro",
  11642. height: math.unit(0.2, "inches")
  11643. },
  11644. {
  11645. name: "Micro",
  11646. height: math.unit(1.5, "inches")
  11647. },
  11648. {
  11649. name: "Normal",
  11650. height: math.unit(5 + 10 / 12, "feet"),
  11651. default: true
  11652. },
  11653. {
  11654. name: "Minimacro",
  11655. height: math.unit(17 + 9 / 12, "feet")
  11656. },
  11657. {
  11658. name: "Macro",
  11659. height: math.unit(177.5, "feet")
  11660. },
  11661. {
  11662. name: "Megamacro",
  11663. height: math.unit(152, "miles")
  11664. },
  11665. ]
  11666. ))
  11667. characterMakers.push(() => makeCharacter(
  11668. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11669. {
  11670. front: {
  11671. height: math.unit(6.5, "inches"),
  11672. weight: math.unit(13, "oz"),
  11673. name: "Front",
  11674. image: {
  11675. source: "./media/characters/dafydd-tomos/front.svg",
  11676. extra: 2990 / 2603,
  11677. bottom: 0.03
  11678. }
  11679. },
  11680. },
  11681. [
  11682. {
  11683. name: "Micro",
  11684. height: math.unit(6.5, "inches"),
  11685. default: true
  11686. },
  11687. ]
  11688. ))
  11689. characterMakers.push(() => makeCharacter(
  11690. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11691. {
  11692. front: {
  11693. height: math.unit(6, "feet"),
  11694. weight: math.unit(150, "lb"),
  11695. name: "Front",
  11696. image: {
  11697. source: "./media/characters/splinter/front.svg",
  11698. extra: 2990 / 2882,
  11699. bottom: 0.04
  11700. }
  11701. },
  11702. back: {
  11703. height: math.unit(6, "feet"),
  11704. weight: math.unit(150, "lb"),
  11705. name: "Back",
  11706. image: {
  11707. source: "./media/characters/splinter/back.svg",
  11708. extra: 2990 / 2882,
  11709. bottom: 0.04
  11710. }
  11711. },
  11712. },
  11713. [
  11714. {
  11715. name: "Normal",
  11716. height: math.unit(6, "feet")
  11717. },
  11718. {
  11719. name: "Macro",
  11720. height: math.unit(230, "meters"),
  11721. default: true
  11722. },
  11723. ]
  11724. ))
  11725. characterMakers.push(() => makeCharacter(
  11726. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11727. {
  11728. front: {
  11729. height: math.unit(4 + 10 / 12, "feet"),
  11730. weight: math.unit(480, "lb"),
  11731. name: "Front",
  11732. image: {
  11733. source: "./media/characters/snow-gabumon/front.svg",
  11734. extra: 1140 / 963,
  11735. bottom: 0.058
  11736. }
  11737. },
  11738. back: {
  11739. height: math.unit(4 + 10 / 12, "feet"),
  11740. weight: math.unit(480, "lb"),
  11741. name: "Back",
  11742. image: {
  11743. source: "./media/characters/snow-gabumon/back.svg",
  11744. extra: 1115 / 962,
  11745. bottom: 0.041
  11746. }
  11747. },
  11748. frontUndresed: {
  11749. height: math.unit(4 + 10 / 12, "feet"),
  11750. weight: math.unit(480, "lb"),
  11751. name: "Front (Undressed)",
  11752. image: {
  11753. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11754. extra: 1061 / 960,
  11755. bottom: 0.045
  11756. }
  11757. },
  11758. },
  11759. [
  11760. {
  11761. name: "Micro",
  11762. height: math.unit(1, "inch")
  11763. },
  11764. {
  11765. name: "Normal",
  11766. height: math.unit(4 + 10 / 12, "feet"),
  11767. default: true
  11768. },
  11769. {
  11770. name: "Macro",
  11771. height: math.unit(200, "feet")
  11772. },
  11773. {
  11774. name: "Megamacro",
  11775. height: math.unit(120, "miles")
  11776. },
  11777. {
  11778. name: "Gigamacro",
  11779. height: math.unit(9800, "miles")
  11780. },
  11781. ]
  11782. ))
  11783. characterMakers.push(() => makeCharacter(
  11784. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11785. {
  11786. front: {
  11787. height: math.unit(1.7, "meters"),
  11788. weight: math.unit(140, "lb"),
  11789. name: "Front",
  11790. image: {
  11791. source: "./media/characters/moody/front.svg",
  11792. extra: 3226 / 3007,
  11793. bottom: 0.087
  11794. }
  11795. },
  11796. },
  11797. [
  11798. {
  11799. name: "Micro",
  11800. height: math.unit(1, "mm")
  11801. },
  11802. {
  11803. name: "Normal",
  11804. height: math.unit(1.7, "meters"),
  11805. default: true
  11806. },
  11807. {
  11808. name: "Macro",
  11809. height: math.unit(80, "meters")
  11810. },
  11811. {
  11812. name: "Macro+",
  11813. height: math.unit(500, "meters")
  11814. },
  11815. ]
  11816. ))
  11817. characterMakers.push(() => makeCharacter(
  11818. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11819. {
  11820. front: {
  11821. height: math.unit(6, "feet"),
  11822. weight: math.unit(150, "lb"),
  11823. name: "Front",
  11824. image: {
  11825. source: "./media/characters/zyas/front.svg",
  11826. extra: 1180 / 1120,
  11827. bottom: 0.045
  11828. }
  11829. },
  11830. },
  11831. [
  11832. {
  11833. name: "Normal",
  11834. height: math.unit(10, "feet"),
  11835. default: true
  11836. },
  11837. {
  11838. name: "Macro",
  11839. height: math.unit(500, "feet")
  11840. },
  11841. {
  11842. name: "Megamacro",
  11843. height: math.unit(5, "miles")
  11844. },
  11845. {
  11846. name: "Teramacro",
  11847. height: math.unit(150000, "miles")
  11848. },
  11849. ]
  11850. ))
  11851. characterMakers.push(() => makeCharacter(
  11852. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11853. {
  11854. front: {
  11855. height: math.unit(6, "feet"),
  11856. weight: math.unit(150, "lb"),
  11857. name: "Front",
  11858. image: {
  11859. source: "./media/characters/cuon/front.svg",
  11860. extra: 1390 / 1320,
  11861. bottom: 0.008
  11862. }
  11863. },
  11864. },
  11865. [
  11866. {
  11867. name: "Micro",
  11868. height: math.unit(3, "inches")
  11869. },
  11870. {
  11871. name: "Normal",
  11872. height: math.unit(18 + 9 / 12, "feet"),
  11873. default: true
  11874. },
  11875. {
  11876. name: "Macro",
  11877. height: math.unit(360, "feet")
  11878. },
  11879. {
  11880. name: "Megamacro",
  11881. height: math.unit(360, "miles")
  11882. },
  11883. ]
  11884. ))
  11885. characterMakers.push(() => makeCharacter(
  11886. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11887. {
  11888. front: {
  11889. height: math.unit(2.4, "meters"),
  11890. weight: math.unit(70, "kg"),
  11891. name: "Front",
  11892. image: {
  11893. source: "./media/characters/nyanuxk/front.svg",
  11894. extra: 1172 / 1084,
  11895. bottom: 0.065
  11896. }
  11897. },
  11898. side: {
  11899. height: math.unit(2.4, "meters"),
  11900. weight: math.unit(70, "kg"),
  11901. name: "Side",
  11902. image: {
  11903. source: "./media/characters/nyanuxk/side.svg",
  11904. extra: 1190 / 1132,
  11905. bottom: 0.007
  11906. }
  11907. },
  11908. back: {
  11909. height: math.unit(2.4, "meters"),
  11910. weight: math.unit(70, "kg"),
  11911. name: "Back",
  11912. image: {
  11913. source: "./media/characters/nyanuxk/back.svg",
  11914. extra: 1200 / 1141,
  11915. bottom: 0.015
  11916. }
  11917. },
  11918. foot: {
  11919. height: math.unit(0.52, "meters"),
  11920. name: "Foot",
  11921. image: {
  11922. source: "./media/characters/nyanuxk/foot.svg"
  11923. }
  11924. },
  11925. },
  11926. [
  11927. {
  11928. name: "Micro",
  11929. height: math.unit(2, "cm")
  11930. },
  11931. {
  11932. name: "Normal",
  11933. height: math.unit(2.4, "meters"),
  11934. default: true
  11935. },
  11936. {
  11937. name: "Smaller Macro",
  11938. height: math.unit(120, "meters")
  11939. },
  11940. {
  11941. name: "Bigger Macro",
  11942. height: math.unit(1.2, "km")
  11943. },
  11944. {
  11945. name: "Megamacro",
  11946. height: math.unit(15, "kilometers")
  11947. },
  11948. {
  11949. name: "Gigamacro",
  11950. height: math.unit(2000, "km")
  11951. },
  11952. {
  11953. name: "Teramacro",
  11954. height: math.unit(500000, "km")
  11955. },
  11956. ]
  11957. ))
  11958. characterMakers.push(() => makeCharacter(
  11959. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11960. {
  11961. side: {
  11962. height: math.unit(6, "feet"),
  11963. name: "Side",
  11964. image: {
  11965. source: "./media/characters/ailbhe/side.svg",
  11966. extra: 757 / 464,
  11967. bottom: 0.041
  11968. }
  11969. },
  11970. },
  11971. [
  11972. {
  11973. name: "Normal",
  11974. height: math.unit(1.07, "meters"),
  11975. default: true
  11976. },
  11977. ]
  11978. ))
  11979. characterMakers.push(() => makeCharacter(
  11980. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11981. {
  11982. front: {
  11983. height: math.unit(6, "feet"),
  11984. weight: math.unit(120, "kg"),
  11985. name: "Front",
  11986. image: {
  11987. source: "./media/characters/zevulfius/front.svg",
  11988. extra: 965 / 903
  11989. }
  11990. },
  11991. side: {
  11992. height: math.unit(6, "feet"),
  11993. weight: math.unit(120, "kg"),
  11994. name: "Side",
  11995. image: {
  11996. source: "./media/characters/zevulfius/side.svg",
  11997. extra: 939 / 900
  11998. }
  11999. },
  12000. back: {
  12001. height: math.unit(6, "feet"),
  12002. weight: math.unit(120, "kg"),
  12003. name: "Back",
  12004. image: {
  12005. source: "./media/characters/zevulfius/back.svg",
  12006. extra: 918 / 854,
  12007. bottom: 0.005
  12008. }
  12009. },
  12010. foot: {
  12011. height: math.unit(6 / 3.72, "feet"),
  12012. name: "Foot",
  12013. image: {
  12014. source: "./media/characters/zevulfius/foot.svg"
  12015. }
  12016. },
  12017. },
  12018. [
  12019. {
  12020. name: "Macro",
  12021. height: math.unit(750, "meters")
  12022. },
  12023. {
  12024. name: "Megamacro",
  12025. height: math.unit(20, "km"),
  12026. default: true
  12027. },
  12028. {
  12029. name: "Gigamacro",
  12030. height: math.unit(2000, "km")
  12031. },
  12032. {
  12033. name: "Teramacro",
  12034. height: math.unit(250000, "km")
  12035. },
  12036. ]
  12037. ))
  12038. characterMakers.push(() => makeCharacter(
  12039. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12040. {
  12041. front: {
  12042. height: math.unit(100, "feet"),
  12043. weight: math.unit(350, "kg"),
  12044. name: "Front",
  12045. image: {
  12046. source: "./media/characters/rikes/front.svg",
  12047. extra: 1565 / 1483,
  12048. bottom: 0.017
  12049. }
  12050. },
  12051. },
  12052. [
  12053. {
  12054. name: "Macro",
  12055. height: math.unit(100, "feet"),
  12056. default: true
  12057. },
  12058. ]
  12059. ))
  12060. characterMakers.push(() => makeCharacter(
  12061. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12062. {
  12063. front: {
  12064. height: math.unit(8, "feet"),
  12065. weight: math.unit(356, "lb"),
  12066. name: "Front",
  12067. image: {
  12068. source: "./media/characters/adam-silver-mane/front.svg",
  12069. extra: 1036/937,
  12070. bottom: 63/1099
  12071. }
  12072. },
  12073. side: {
  12074. height: math.unit(8, "feet"),
  12075. weight: math.unit(356, "lb"),
  12076. name: "Side",
  12077. image: {
  12078. source: "./media/characters/adam-silver-mane/side.svg",
  12079. extra: 997/901,
  12080. bottom: 59/1056
  12081. }
  12082. },
  12083. frontNsfw: {
  12084. height: math.unit(8, "feet"),
  12085. weight: math.unit(356, "lb"),
  12086. name: "Front (NSFW)",
  12087. image: {
  12088. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12089. extra: 1036/937,
  12090. bottom: 63/1099
  12091. }
  12092. },
  12093. sideNsfw: {
  12094. height: math.unit(8, "feet"),
  12095. weight: math.unit(356, "lb"),
  12096. name: "Side (NSFW)",
  12097. image: {
  12098. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12099. extra: 997/901,
  12100. bottom: 59/1056
  12101. }
  12102. },
  12103. dick: {
  12104. height: math.unit(2.1, "feet"),
  12105. name: "Dick",
  12106. image: {
  12107. source: "./media/characters/adam-silver-mane/dick.svg"
  12108. }
  12109. },
  12110. taur: {
  12111. height: math.unit(16, "feet"),
  12112. weight: math.unit(1500, "kg"),
  12113. name: "Taur",
  12114. image: {
  12115. source: "./media/characters/adam-silver-mane/taur.svg",
  12116. extra: 1713 / 1571,
  12117. bottom: 0.01
  12118. }
  12119. },
  12120. },
  12121. [
  12122. {
  12123. name: "Normal",
  12124. height: math.unit(8, "feet")
  12125. },
  12126. {
  12127. name: "Minimacro",
  12128. height: math.unit(80, "feet")
  12129. },
  12130. {
  12131. name: "MDA",
  12132. height: math.unit(80, "meters")
  12133. },
  12134. {
  12135. name: "Macro",
  12136. height: math.unit(800, "feet"),
  12137. default: true
  12138. },
  12139. {
  12140. name: "Megamacro",
  12141. height: math.unit(8000, "feet")
  12142. },
  12143. {
  12144. name: "Gigamacro",
  12145. height: math.unit(800, "miles")
  12146. },
  12147. {
  12148. name: "Teramacro",
  12149. height: math.unit(80000, "miles")
  12150. },
  12151. {
  12152. name: "Celestial",
  12153. height: math.unit(8e6, "miles")
  12154. },
  12155. {
  12156. name: "Star Dragon",
  12157. height: math.unit(800000, "parsecs")
  12158. },
  12159. {
  12160. name: "Godly",
  12161. height: math.unit(800, "teraparsecs")
  12162. },
  12163. ]
  12164. ))
  12165. characterMakers.push(() => makeCharacter(
  12166. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12167. {
  12168. front: {
  12169. height: math.unit(6, "feet"),
  12170. weight: math.unit(150, "lb"),
  12171. name: "Front",
  12172. image: {
  12173. source: "./media/characters/ky'owin/front.svg",
  12174. extra: 3862/3053,
  12175. bottom: 74/3936
  12176. }
  12177. },
  12178. },
  12179. [
  12180. {
  12181. name: "Normal",
  12182. height: math.unit(6 + 8 / 12, "feet")
  12183. },
  12184. {
  12185. name: "Large",
  12186. height: math.unit(68, "feet")
  12187. },
  12188. {
  12189. name: "Macro",
  12190. height: math.unit(132, "feet")
  12191. },
  12192. {
  12193. name: "Macro+",
  12194. height: math.unit(340, "feet")
  12195. },
  12196. {
  12197. name: "Macro++",
  12198. height: math.unit(680, "feet"),
  12199. default: true
  12200. },
  12201. {
  12202. name: "Megamacro",
  12203. height: math.unit(1, "mile")
  12204. },
  12205. {
  12206. name: "Megamacro+",
  12207. height: math.unit(10, "miles")
  12208. },
  12209. ]
  12210. ))
  12211. characterMakers.push(() => makeCharacter(
  12212. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12213. {
  12214. front: {
  12215. height: math.unit(4, "feet"),
  12216. weight: math.unit(50, "lb"),
  12217. name: "Front",
  12218. image: {
  12219. source: "./media/characters/mal/front.svg",
  12220. extra: 785 / 724,
  12221. bottom: 0.07
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Micro",
  12228. height: math.unit(4, "inches")
  12229. },
  12230. {
  12231. name: "Normal",
  12232. height: math.unit(4, "feet"),
  12233. default: true
  12234. },
  12235. {
  12236. name: "Macro",
  12237. height: math.unit(200, "feet")
  12238. },
  12239. ]
  12240. ))
  12241. characterMakers.push(() => makeCharacter(
  12242. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12243. {
  12244. front: {
  12245. height: math.unit(6, "feet"),
  12246. weight: math.unit(150, "lb"),
  12247. name: "Front",
  12248. image: {
  12249. source: "./media/characters/jordan-deware/front.svg",
  12250. extra: 1191 / 1012
  12251. }
  12252. },
  12253. },
  12254. [
  12255. {
  12256. name: "Nano",
  12257. height: math.unit(0.01, "mm")
  12258. },
  12259. {
  12260. name: "Minimicro",
  12261. height: math.unit(1, "mm")
  12262. },
  12263. {
  12264. name: "Micro",
  12265. height: math.unit(0.5, "inches")
  12266. },
  12267. {
  12268. name: "Normal",
  12269. height: math.unit(4, "feet"),
  12270. default: true
  12271. },
  12272. {
  12273. name: "Minimacro",
  12274. height: math.unit(40, "meters")
  12275. },
  12276. {
  12277. name: "Small Macro",
  12278. height: math.unit(400, "meters")
  12279. },
  12280. {
  12281. name: "Macro",
  12282. height: math.unit(4, "miles")
  12283. },
  12284. {
  12285. name: "Megamacro",
  12286. height: math.unit(40, "miles")
  12287. },
  12288. {
  12289. name: "Megamacro+",
  12290. height: math.unit(400, "miles")
  12291. },
  12292. {
  12293. name: "Gigamacro",
  12294. height: math.unit(400000, "miles")
  12295. },
  12296. ]
  12297. ))
  12298. characterMakers.push(() => makeCharacter(
  12299. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12300. {
  12301. side: {
  12302. height: math.unit(6, "feet"),
  12303. weight: math.unit(150, "lb"),
  12304. name: "Side",
  12305. image: {
  12306. source: "./media/characters/kimiko/side.svg",
  12307. extra: 600 / 358
  12308. }
  12309. },
  12310. },
  12311. [
  12312. {
  12313. name: "Normal",
  12314. height: math.unit(15, "feet"),
  12315. default: true
  12316. },
  12317. {
  12318. name: "Macro",
  12319. height: math.unit(220, "feet")
  12320. },
  12321. {
  12322. name: "Macro+",
  12323. height: math.unit(1450, "feet")
  12324. },
  12325. {
  12326. name: "Megamacro",
  12327. height: math.unit(11500, "feet")
  12328. },
  12329. {
  12330. name: "Gigamacro",
  12331. height: math.unit(9500, "miles")
  12332. },
  12333. {
  12334. name: "Teramacro",
  12335. height: math.unit(2208005005, "miles")
  12336. },
  12337. {
  12338. name: "Examacro",
  12339. height: math.unit(2750, "parsecs")
  12340. },
  12341. {
  12342. name: "Zettamacro",
  12343. height: math.unit(101500, "parsecs")
  12344. },
  12345. ]
  12346. ))
  12347. characterMakers.push(() => makeCharacter(
  12348. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12349. {
  12350. front: {
  12351. height: math.unit(6, "feet"),
  12352. weight: math.unit(70, "kg"),
  12353. name: "Front",
  12354. image: {
  12355. source: "./media/characters/andrew-sleepy/front.svg"
  12356. }
  12357. },
  12358. side: {
  12359. height: math.unit(6, "feet"),
  12360. weight: math.unit(70, "kg"),
  12361. name: "Side",
  12362. image: {
  12363. source: "./media/characters/andrew-sleepy/side.svg"
  12364. }
  12365. },
  12366. },
  12367. [
  12368. {
  12369. name: "Micro",
  12370. height: math.unit(1, "mm"),
  12371. default: true
  12372. },
  12373. ]
  12374. ))
  12375. characterMakers.push(() => makeCharacter(
  12376. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12377. {
  12378. front: {
  12379. height: math.unit(6, "feet"),
  12380. weight: math.unit(150, "lb"),
  12381. name: "Front",
  12382. image: {
  12383. source: "./media/characters/judio/front.svg",
  12384. extra: 1258 / 1110
  12385. }
  12386. },
  12387. },
  12388. [
  12389. {
  12390. name: "Normal",
  12391. height: math.unit(5 + 6 / 12, "feet")
  12392. },
  12393. {
  12394. name: "Macro",
  12395. height: math.unit(1000, "feet"),
  12396. default: true
  12397. },
  12398. {
  12399. name: "Megamacro",
  12400. height: math.unit(10, "miles")
  12401. },
  12402. ]
  12403. ))
  12404. characterMakers.push(() => makeCharacter(
  12405. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12406. {
  12407. frontDressed: {
  12408. height: math.unit(6, "feet"),
  12409. weight: math.unit(68, "kg"),
  12410. name: "Front (Dressed)",
  12411. image: {
  12412. source: "./media/characters/nomaxice/front-dressed.svg",
  12413. extra: 1137/824,
  12414. bottom: 74/1211
  12415. }
  12416. },
  12417. frontShorts: {
  12418. height: math.unit(6, "feet"),
  12419. weight: math.unit(68, "kg"),
  12420. name: "Front (Shorts)",
  12421. image: {
  12422. source: "./media/characters/nomaxice/front-shorts.svg",
  12423. extra: 1137/824,
  12424. bottom: 74/1211
  12425. }
  12426. },
  12427. back: {
  12428. height: math.unit(6, "feet"),
  12429. weight: math.unit(68, "kg"),
  12430. name: "Back",
  12431. image: {
  12432. source: "./media/characters/nomaxice/back.svg",
  12433. extra: 822/786,
  12434. bottom: 39/861
  12435. }
  12436. },
  12437. hand: {
  12438. height: math.unit(0.565, "feet"),
  12439. name: "Hand",
  12440. image: {
  12441. source: "./media/characters/nomaxice/hand.svg"
  12442. }
  12443. },
  12444. foot: {
  12445. height: math.unit(1, "feet"),
  12446. name: "Foot",
  12447. image: {
  12448. source: "./media/characters/nomaxice/foot.svg"
  12449. }
  12450. },
  12451. },
  12452. [
  12453. {
  12454. name: "Micro",
  12455. height: math.unit(8, "cm")
  12456. },
  12457. {
  12458. name: "Norm",
  12459. height: math.unit(1.82, "m")
  12460. },
  12461. {
  12462. name: "Norm+",
  12463. height: math.unit(8.8, "feet"),
  12464. default: true
  12465. },
  12466. {
  12467. name: "Big",
  12468. height: math.unit(8, "meters")
  12469. },
  12470. {
  12471. name: "Macro",
  12472. height: math.unit(18, "meters")
  12473. },
  12474. {
  12475. name: "Macro+",
  12476. height: math.unit(88, "meters")
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12482. {
  12483. front: {
  12484. height: math.unit(12, "feet"),
  12485. weight: math.unit(1.5, "tons"),
  12486. name: "Front",
  12487. image: {
  12488. source: "./media/characters/dydros/front.svg",
  12489. extra: 863 / 800,
  12490. bottom: 0.015
  12491. }
  12492. },
  12493. back: {
  12494. height: math.unit(12, "feet"),
  12495. weight: math.unit(1.5, "tons"),
  12496. name: "Back",
  12497. image: {
  12498. source: "./media/characters/dydros/back.svg",
  12499. extra: 900 / 843,
  12500. bottom: 0.005
  12501. }
  12502. },
  12503. },
  12504. [
  12505. {
  12506. name: "Normal",
  12507. height: math.unit(12, "feet"),
  12508. default: true
  12509. },
  12510. ]
  12511. ))
  12512. characterMakers.push(() => makeCharacter(
  12513. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12514. {
  12515. front: {
  12516. height: math.unit(6, "feet"),
  12517. weight: math.unit(100, "kg"),
  12518. name: "Front",
  12519. image: {
  12520. source: "./media/characters/riggi/front.svg",
  12521. extra: 5787 / 5303
  12522. }
  12523. },
  12524. hyper: {
  12525. height: math.unit(6 * 5 / 3, "feet"),
  12526. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12527. name: "Hyper",
  12528. image: {
  12529. source: "./media/characters/riggi/hyper.svg",
  12530. extra: 3595 / 3485
  12531. }
  12532. },
  12533. },
  12534. [
  12535. {
  12536. name: "Small Macro",
  12537. height: math.unit(50, "feet")
  12538. },
  12539. {
  12540. name: "Default",
  12541. height: math.unit(200, "feet"),
  12542. default: true
  12543. },
  12544. {
  12545. name: "Loom",
  12546. height: math.unit(10000, "feet")
  12547. },
  12548. {
  12549. name: "Cruising Altitude",
  12550. height: math.unit(30000, "feet")
  12551. },
  12552. {
  12553. name: "Megamacro",
  12554. height: math.unit(100, "miles")
  12555. },
  12556. {
  12557. name: "Continent Sized",
  12558. height: math.unit(2800, "miles")
  12559. },
  12560. {
  12561. name: "Earth Sized",
  12562. height: math.unit(8000, "miles")
  12563. },
  12564. ]
  12565. ))
  12566. characterMakers.push(() => makeCharacter(
  12567. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12568. {
  12569. front: {
  12570. height: math.unit(6, "feet"),
  12571. weight: math.unit(250, "lb"),
  12572. name: "Front",
  12573. image: {
  12574. source: "./media/characters/alexi/front.svg",
  12575. extra: 3483 / 3291,
  12576. bottom: 0.04
  12577. }
  12578. },
  12579. back: {
  12580. height: math.unit(6, "feet"),
  12581. weight: math.unit(250, "lb"),
  12582. name: "Back",
  12583. image: {
  12584. source: "./media/characters/alexi/back.svg",
  12585. extra: 3533 / 3356,
  12586. bottom: 0.021
  12587. }
  12588. },
  12589. frontTransforming: {
  12590. height: math.unit(8.58, "feet"),
  12591. weight: math.unit(1300, "lb"),
  12592. name: "Transforming",
  12593. image: {
  12594. source: "./media/characters/alexi/front-transforming.svg",
  12595. extra: 437 / 409,
  12596. bottom: 19 / 458.66
  12597. }
  12598. },
  12599. frontTransformed: {
  12600. height: math.unit(12.5, "feet"),
  12601. weight: math.unit(4000, "lb"),
  12602. name: "Transformed",
  12603. image: {
  12604. source: "./media/characters/alexi/front-transformed.svg",
  12605. extra: 639 / 614,
  12606. bottom: 30.55 / 671
  12607. }
  12608. },
  12609. },
  12610. [
  12611. {
  12612. name: "Normal",
  12613. height: math.unit(14, "feet"),
  12614. default: true
  12615. },
  12616. {
  12617. name: "Minimacro",
  12618. height: math.unit(30, "meters")
  12619. },
  12620. {
  12621. name: "Macro",
  12622. height: math.unit(500, "meters")
  12623. },
  12624. {
  12625. name: "Megamacro",
  12626. height: math.unit(9000, "km")
  12627. },
  12628. {
  12629. name: "Teramacro",
  12630. height: math.unit(384000, "km")
  12631. },
  12632. ]
  12633. ))
  12634. characterMakers.push(() => makeCharacter(
  12635. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12636. {
  12637. front: {
  12638. height: math.unit(6, "feet"),
  12639. weight: math.unit(150, "lb"),
  12640. name: "Front",
  12641. image: {
  12642. source: "./media/characters/kayroo/front.svg",
  12643. extra: 1153 / 1038,
  12644. bottom: 0.06
  12645. }
  12646. },
  12647. foot: {
  12648. height: math.unit(6, "feet"),
  12649. weight: math.unit(150, "lb"),
  12650. name: "Foot",
  12651. image: {
  12652. source: "./media/characters/kayroo/foot.svg"
  12653. }
  12654. },
  12655. },
  12656. [
  12657. {
  12658. name: "Normal",
  12659. height: math.unit(8, "feet"),
  12660. default: true
  12661. },
  12662. {
  12663. name: "Minimacro",
  12664. height: math.unit(250, "feet")
  12665. },
  12666. {
  12667. name: "Macro",
  12668. height: math.unit(2800, "feet")
  12669. },
  12670. {
  12671. name: "Megamacro",
  12672. height: math.unit(5200, "feet")
  12673. },
  12674. {
  12675. name: "Gigamacro",
  12676. height: math.unit(27000, "feet")
  12677. },
  12678. {
  12679. name: "Omega",
  12680. height: math.unit(45000, "feet")
  12681. },
  12682. ]
  12683. ))
  12684. characterMakers.push(() => makeCharacter(
  12685. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12686. {
  12687. front: {
  12688. height: math.unit(18, "feet"),
  12689. weight: math.unit(5800, "lb"),
  12690. name: "Front",
  12691. image: {
  12692. source: "./media/characters/rhys/front.svg",
  12693. extra: 3386 / 3090,
  12694. bottom: 0.07
  12695. }
  12696. },
  12697. },
  12698. [
  12699. {
  12700. name: "Normal",
  12701. height: math.unit(18, "feet"),
  12702. default: true
  12703. },
  12704. {
  12705. name: "Working Size",
  12706. height: math.unit(200, "feet")
  12707. },
  12708. {
  12709. name: "Demolition Size",
  12710. height: math.unit(2000, "feet")
  12711. },
  12712. {
  12713. name: "Maximum Licensed Size",
  12714. height: math.unit(5, "miles")
  12715. },
  12716. {
  12717. name: "Maximum Observed Size",
  12718. height: math.unit(10, "yottameters")
  12719. },
  12720. ]
  12721. ))
  12722. characterMakers.push(() => makeCharacter(
  12723. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12724. {
  12725. front: {
  12726. height: math.unit(6, "feet"),
  12727. weight: math.unit(250, "lb"),
  12728. name: "Front",
  12729. image: {
  12730. source: "./media/characters/toto/front.svg",
  12731. extra: 527 / 479,
  12732. bottom: 0.05
  12733. }
  12734. },
  12735. },
  12736. [
  12737. {
  12738. name: "Micro",
  12739. height: math.unit(3, "feet")
  12740. },
  12741. {
  12742. name: "Normal",
  12743. height: math.unit(10, "feet")
  12744. },
  12745. {
  12746. name: "Macro",
  12747. height: math.unit(150, "feet"),
  12748. default: true
  12749. },
  12750. {
  12751. name: "Megamacro",
  12752. height: math.unit(1200, "feet")
  12753. },
  12754. ]
  12755. ))
  12756. characterMakers.push(() => makeCharacter(
  12757. { name: "King", species: ["lion"], tags: ["anthro"] },
  12758. {
  12759. back: {
  12760. height: math.unit(6, "feet"),
  12761. weight: math.unit(150, "lb"),
  12762. name: "Back",
  12763. image: {
  12764. source: "./media/characters/king/back.svg"
  12765. }
  12766. },
  12767. },
  12768. [
  12769. {
  12770. name: "Micro",
  12771. height: math.unit(2, "inches")
  12772. },
  12773. {
  12774. name: "Normal",
  12775. height: math.unit(8, "feet")
  12776. },
  12777. {
  12778. name: "Macro",
  12779. height: math.unit(200, "feet"),
  12780. default: true
  12781. },
  12782. {
  12783. name: "Megamacro",
  12784. height: math.unit(50, "miles")
  12785. },
  12786. ]
  12787. ))
  12788. characterMakers.push(() => makeCharacter(
  12789. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12790. {
  12791. front: {
  12792. height: math.unit(11, "feet"),
  12793. weight: math.unit(1400, "lb"),
  12794. name: "Front",
  12795. image: {
  12796. source: "./media/characters/cordite/front.svg",
  12797. extra: 1919/1827,
  12798. bottom: 40/1959
  12799. }
  12800. },
  12801. side: {
  12802. height: math.unit(11, "feet"),
  12803. weight: math.unit(1400, "lb"),
  12804. name: "Side",
  12805. image: {
  12806. source: "./media/characters/cordite/side.svg",
  12807. extra: 1908/1793,
  12808. bottom: 38/1946
  12809. }
  12810. },
  12811. back: {
  12812. height: math.unit(11, "feet"),
  12813. weight: math.unit(1400, "lb"),
  12814. name: "Back",
  12815. image: {
  12816. source: "./media/characters/cordite/back.svg",
  12817. extra: 1938/1837,
  12818. bottom: 10/1948
  12819. }
  12820. },
  12821. feral: {
  12822. height: math.unit(2, "feet"),
  12823. weight: math.unit(90, "lb"),
  12824. name: "Feral",
  12825. image: {
  12826. source: "./media/characters/cordite/feral.svg",
  12827. extra: 1260 / 755,
  12828. bottom: 0.05
  12829. }
  12830. },
  12831. },
  12832. [
  12833. {
  12834. name: "Normal",
  12835. height: math.unit(11, "feet"),
  12836. default: true
  12837. },
  12838. ]
  12839. ))
  12840. characterMakers.push(() => makeCharacter(
  12841. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12842. {
  12843. front: {
  12844. height: math.unit(6, "feet"),
  12845. weight: math.unit(150, "lb"),
  12846. name: "Front",
  12847. image: {
  12848. source: "./media/characters/pianostrong/front.svg",
  12849. extra: 6577 / 6254,
  12850. bottom: 0.02
  12851. }
  12852. },
  12853. side: {
  12854. height: math.unit(6, "feet"),
  12855. weight: math.unit(150, "lb"),
  12856. name: "Side",
  12857. image: {
  12858. source: "./media/characters/pianostrong/side.svg",
  12859. extra: 6106 / 5730
  12860. }
  12861. },
  12862. back: {
  12863. height: math.unit(6, "feet"),
  12864. weight: math.unit(150, "lb"),
  12865. name: "Back",
  12866. image: {
  12867. source: "./media/characters/pianostrong/back.svg",
  12868. extra: 6085 / 5733,
  12869. bottom: 0.01
  12870. }
  12871. },
  12872. },
  12873. [
  12874. {
  12875. name: "Macro",
  12876. height: math.unit(100, "feet")
  12877. },
  12878. {
  12879. name: "Macro+",
  12880. height: math.unit(300, "feet"),
  12881. default: true
  12882. },
  12883. {
  12884. name: "Macro++",
  12885. height: math.unit(1000, "feet")
  12886. },
  12887. ]
  12888. ))
  12889. characterMakers.push(() => makeCharacter(
  12890. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12891. {
  12892. front: {
  12893. height: math.unit(6, "feet"),
  12894. weight: math.unit(150, "lb"),
  12895. name: "Front",
  12896. image: {
  12897. source: "./media/characters/kona/front.svg",
  12898. extra: 2960 / 2629,
  12899. bottom: 0.005
  12900. }
  12901. },
  12902. },
  12903. [
  12904. {
  12905. name: "Normal",
  12906. height: math.unit(11 + 8 / 12, "feet")
  12907. },
  12908. {
  12909. name: "Macro",
  12910. height: math.unit(850, "feet"),
  12911. default: true
  12912. },
  12913. {
  12914. name: "Macro+",
  12915. height: math.unit(1.5, "km"),
  12916. default: true
  12917. },
  12918. {
  12919. name: "Megamacro",
  12920. height: math.unit(80, "miles")
  12921. },
  12922. {
  12923. name: "Gigamacro",
  12924. height: math.unit(3500, "miles")
  12925. },
  12926. ]
  12927. ))
  12928. characterMakers.push(() => makeCharacter(
  12929. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12930. {
  12931. side: {
  12932. height: math.unit(1.9, "meters"),
  12933. weight: math.unit(326, "kg"),
  12934. name: "Side",
  12935. image: {
  12936. source: "./media/characters/levi/side.svg",
  12937. extra: 1704 / 1334,
  12938. bottom: 0.02
  12939. }
  12940. },
  12941. },
  12942. [
  12943. {
  12944. name: "Normal",
  12945. height: math.unit(1.9, "meters"),
  12946. default: true
  12947. },
  12948. {
  12949. name: "Macro",
  12950. height: math.unit(20, "meters")
  12951. },
  12952. {
  12953. name: "Macro+",
  12954. height: math.unit(200, "meters")
  12955. },
  12956. {
  12957. name: "Megamacro",
  12958. height: math.unit(2, "km")
  12959. },
  12960. {
  12961. name: "Megamacro+",
  12962. height: math.unit(20, "km")
  12963. },
  12964. {
  12965. name: "Gigamacro",
  12966. height: math.unit(2500, "km")
  12967. },
  12968. {
  12969. name: "Gigamacro+",
  12970. height: math.unit(120000, "km")
  12971. },
  12972. {
  12973. name: "Teramacro",
  12974. height: math.unit(7.77e6, "km")
  12975. },
  12976. ]
  12977. ))
  12978. characterMakers.push(() => makeCharacter(
  12979. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12980. {
  12981. front: {
  12982. height: math.unit(6 + 4/12, "feet"),
  12983. weight: math.unit(190, "lb"),
  12984. name: "Front",
  12985. image: {
  12986. source: "./media/characters/bmc/front.svg",
  12987. extra: 1626/1472,
  12988. bottom: 79/1705
  12989. }
  12990. },
  12991. back: {
  12992. height: math.unit(6 + 4/12, "feet"),
  12993. weight: math.unit(190, "lb"),
  12994. name: "Back",
  12995. image: {
  12996. source: "./media/characters/bmc/back.svg",
  12997. extra: 1640/1479,
  12998. bottom: 45/1685
  12999. }
  13000. },
  13001. frontArmor: {
  13002. height: math.unit(6 + 4/12, "feet"),
  13003. weight: math.unit(190, "lb"),
  13004. name: "Front-armor",
  13005. image: {
  13006. source: "./media/characters/bmc/front-armor.svg",
  13007. extra: 1538/1468,
  13008. bottom: 79/1617
  13009. }
  13010. },
  13011. },
  13012. [
  13013. {
  13014. name: "Human-sized",
  13015. height: math.unit(6 + 4 / 12, "feet")
  13016. },
  13017. {
  13018. name: "Interactive Size",
  13019. height: math.unit(25, "feet")
  13020. },
  13021. {
  13022. name: "Small",
  13023. height: math.unit(250, "feet")
  13024. },
  13025. {
  13026. name: "Normal",
  13027. height: math.unit(1250, "feet"),
  13028. default: true
  13029. },
  13030. {
  13031. name: "Good Day",
  13032. height: math.unit(88, "miles")
  13033. },
  13034. {
  13035. name: "Largest Measured Size",
  13036. height: math.unit(105.960, "galaxies")
  13037. },
  13038. ]
  13039. ))
  13040. characterMakers.push(() => makeCharacter(
  13041. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13042. {
  13043. front: {
  13044. height: math.unit(20, "feet"),
  13045. weight: math.unit(2016, "kg"),
  13046. name: "Front",
  13047. image: {
  13048. source: "./media/characters/sven-the-kaiju/front.svg",
  13049. extra: 1277/1250,
  13050. bottom: 35/1312
  13051. }
  13052. },
  13053. mouth: {
  13054. height: math.unit(1.85, "feet"),
  13055. name: "Mouth",
  13056. image: {
  13057. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13058. }
  13059. },
  13060. },
  13061. [
  13062. {
  13063. name: "Fairy",
  13064. height: math.unit(6, "inches")
  13065. },
  13066. {
  13067. name: "Normal",
  13068. height: math.unit(20, "feet"),
  13069. default: true
  13070. },
  13071. {
  13072. name: "Rampage",
  13073. height: math.unit(200, "feet")
  13074. },
  13075. {
  13076. name: "Archfey Forest Guardian",
  13077. height: math.unit(1, "mile")
  13078. },
  13079. ]
  13080. ))
  13081. characterMakers.push(() => makeCharacter(
  13082. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13083. {
  13084. front: {
  13085. height: math.unit(4, "meters"),
  13086. weight: math.unit(2, "tons"),
  13087. name: "Front",
  13088. image: {
  13089. source: "./media/characters/marik/front.svg",
  13090. extra: 1057 / 1003,
  13091. bottom: 0.08
  13092. }
  13093. },
  13094. },
  13095. [
  13096. {
  13097. name: "Normal",
  13098. height: math.unit(4, "meters"),
  13099. default: true
  13100. },
  13101. {
  13102. name: "Macro",
  13103. height: math.unit(20, "meters")
  13104. },
  13105. {
  13106. name: "Megamacro",
  13107. height: math.unit(50, "km")
  13108. },
  13109. {
  13110. name: "Gigamacro",
  13111. height: math.unit(100, "km")
  13112. },
  13113. {
  13114. name: "Alpha Macro",
  13115. height: math.unit(7.88e7, "yottameters")
  13116. },
  13117. ]
  13118. ))
  13119. characterMakers.push(() => makeCharacter(
  13120. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13121. {
  13122. front: {
  13123. height: math.unit(6, "feet"),
  13124. weight: math.unit(110, "lb"),
  13125. name: "Front",
  13126. image: {
  13127. source: "./media/characters/mel/front.svg",
  13128. extra: 736 / 617,
  13129. bottom: 0.017
  13130. }
  13131. },
  13132. },
  13133. [
  13134. {
  13135. name: "Pico",
  13136. height: math.unit(3, "pm")
  13137. },
  13138. {
  13139. name: "Nano",
  13140. height: math.unit(3, "nm")
  13141. },
  13142. {
  13143. name: "Micro",
  13144. height: math.unit(0.3, "mm"),
  13145. default: true
  13146. },
  13147. {
  13148. name: "Micro+",
  13149. height: math.unit(3, "mm")
  13150. },
  13151. {
  13152. name: "Normal",
  13153. height: math.unit(5 + 10.5 / 12, "feet")
  13154. },
  13155. ]
  13156. ))
  13157. characterMakers.push(() => makeCharacter(
  13158. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13159. {
  13160. kaiju: {
  13161. height: math.unit(1.75, "meters"),
  13162. weight: math.unit(55, "kg"),
  13163. name: "Kaiju",
  13164. image: {
  13165. source: "./media/characters/lykonous/kaiju.svg",
  13166. extra: 1055 / 946,
  13167. bottom: 0.135
  13168. }
  13169. },
  13170. },
  13171. [
  13172. {
  13173. name: "Normal",
  13174. height: math.unit(2.5, "meters"),
  13175. default: true
  13176. },
  13177. {
  13178. name: "Kaiju Dragon",
  13179. height: math.unit(60, "meters")
  13180. },
  13181. {
  13182. name: "Mega Kaiju",
  13183. height: math.unit(120, "km")
  13184. },
  13185. {
  13186. name: "Giga Kaiju",
  13187. height: math.unit(200, "megameters")
  13188. },
  13189. {
  13190. name: "Terra Kaiju",
  13191. height: math.unit(400, "gigameters")
  13192. },
  13193. {
  13194. name: "Kaiju Dragon God",
  13195. height: math.unit(13000, "exaparsecs")
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13201. {
  13202. front: {
  13203. height: math.unit(6, "feet"),
  13204. weight: math.unit(150, "lb"),
  13205. name: "Front",
  13206. image: {
  13207. source: "./media/characters/blü/front.svg",
  13208. extra: 1883 / 1564,
  13209. bottom: 0.031
  13210. }
  13211. },
  13212. },
  13213. [
  13214. {
  13215. name: "Normal",
  13216. height: math.unit(13, "feet"),
  13217. default: true
  13218. },
  13219. {
  13220. name: "Big Boi",
  13221. height: math.unit(150, "meters")
  13222. },
  13223. {
  13224. name: "Mini Stomper",
  13225. height: math.unit(300, "meters")
  13226. },
  13227. {
  13228. name: "Macro",
  13229. height: math.unit(1000, "meters")
  13230. },
  13231. {
  13232. name: "Megamacro",
  13233. height: math.unit(11000, "meters")
  13234. },
  13235. {
  13236. name: "Gigamacro",
  13237. height: math.unit(11000, "km")
  13238. },
  13239. {
  13240. name: "Teramacro",
  13241. height: math.unit(420000, "km")
  13242. },
  13243. {
  13244. name: "Examacro",
  13245. height: math.unit(120, "parsecs")
  13246. },
  13247. {
  13248. name: "God Tho",
  13249. height: math.unit(98000000000, "parsecs")
  13250. },
  13251. ]
  13252. ))
  13253. characterMakers.push(() => makeCharacter(
  13254. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13255. {
  13256. taurFront: {
  13257. height: math.unit(6, "feet"),
  13258. weight: math.unit(200, "lb"),
  13259. name: "Taur (Front)",
  13260. image: {
  13261. source: "./media/characters/scales/taur-front.svg",
  13262. extra: 1,
  13263. bottom: 0.05
  13264. }
  13265. },
  13266. taurBack: {
  13267. height: math.unit(6, "feet"),
  13268. weight: math.unit(200, "lb"),
  13269. name: "Taur (Back)",
  13270. image: {
  13271. source: "./media/characters/scales/taur-back.svg",
  13272. extra: 1,
  13273. bottom: 0.08
  13274. }
  13275. },
  13276. anthro: {
  13277. height: math.unit(6 * 7 / 12, "feet"),
  13278. weight: math.unit(100, "lb"),
  13279. name: "Anthro",
  13280. image: {
  13281. source: "./media/characters/scales/anthro.svg",
  13282. extra: 1,
  13283. bottom: 0.06
  13284. }
  13285. },
  13286. },
  13287. [
  13288. {
  13289. name: "Normal",
  13290. height: math.unit(12, "feet"),
  13291. default: true
  13292. },
  13293. ]
  13294. ))
  13295. characterMakers.push(() => makeCharacter(
  13296. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13297. {
  13298. front: {
  13299. height: math.unit(6, "feet"),
  13300. weight: math.unit(150, "lb"),
  13301. name: "Front",
  13302. image: {
  13303. source: "./media/characters/koragos/front.svg",
  13304. extra: 841 / 794,
  13305. bottom: 0.035
  13306. }
  13307. },
  13308. back: {
  13309. height: math.unit(6, "feet"),
  13310. weight: math.unit(150, "lb"),
  13311. name: "Back",
  13312. image: {
  13313. source: "./media/characters/koragos/back.svg",
  13314. extra: 841 / 810,
  13315. bottom: 0.022
  13316. }
  13317. },
  13318. },
  13319. [
  13320. {
  13321. name: "Normal",
  13322. height: math.unit(6 + 11 / 12, "feet"),
  13323. default: true
  13324. },
  13325. {
  13326. name: "Macro",
  13327. height: math.unit(490, "feet")
  13328. },
  13329. {
  13330. name: "Megamacro",
  13331. height: math.unit(10, "miles")
  13332. },
  13333. {
  13334. name: "Gigamacro",
  13335. height: math.unit(50, "miles")
  13336. },
  13337. ]
  13338. ))
  13339. characterMakers.push(() => makeCharacter(
  13340. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13341. {
  13342. front: {
  13343. height: math.unit(6, "feet"),
  13344. weight: math.unit(250, "lb"),
  13345. name: "Front",
  13346. image: {
  13347. source: "./media/characters/xylrem/front.svg",
  13348. extra: 3323 / 3050,
  13349. bottom: 0.065
  13350. }
  13351. },
  13352. },
  13353. [
  13354. {
  13355. name: "Micro",
  13356. height: math.unit(4, "feet")
  13357. },
  13358. {
  13359. name: "Normal",
  13360. height: math.unit(16, "feet"),
  13361. default: true
  13362. },
  13363. {
  13364. name: "Macro",
  13365. height: math.unit(2720, "feet")
  13366. },
  13367. {
  13368. name: "Megamacro",
  13369. height: math.unit(25000, "miles")
  13370. },
  13371. ]
  13372. ))
  13373. characterMakers.push(() => makeCharacter(
  13374. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13375. {
  13376. front: {
  13377. height: math.unit(8, "feet"),
  13378. weight: math.unit(250, "kg"),
  13379. name: "Front",
  13380. image: {
  13381. source: "./media/characters/ikideru/front.svg",
  13382. extra: 930 / 870,
  13383. bottom: 0.087
  13384. }
  13385. },
  13386. back: {
  13387. height: math.unit(8, "feet"),
  13388. weight: math.unit(250, "kg"),
  13389. name: "Back",
  13390. image: {
  13391. source: "./media/characters/ikideru/back.svg",
  13392. extra: 919 / 852,
  13393. bottom: 0.055
  13394. }
  13395. },
  13396. },
  13397. [
  13398. {
  13399. name: "Rare",
  13400. height: math.unit(8, "feet"),
  13401. default: true
  13402. },
  13403. {
  13404. name: "Playful Loom",
  13405. height: math.unit(80, "feet")
  13406. },
  13407. {
  13408. name: "City Leaner",
  13409. height: math.unit(230, "feet")
  13410. },
  13411. {
  13412. name: "Megamacro",
  13413. height: math.unit(2500, "feet")
  13414. },
  13415. {
  13416. name: "Gigamacro",
  13417. height: math.unit(26400, "feet")
  13418. },
  13419. {
  13420. name: "Tectonic Shifter",
  13421. height: math.unit(1.7, "megameters")
  13422. },
  13423. {
  13424. name: "Planet Carer",
  13425. height: math.unit(21, "megameters")
  13426. },
  13427. {
  13428. name: "God",
  13429. height: math.unit(11157.22, "parsecs")
  13430. },
  13431. ]
  13432. ))
  13433. characterMakers.push(() => makeCharacter(
  13434. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13435. {
  13436. front: {
  13437. height: math.unit(6, "feet"),
  13438. weight: math.unit(120, "lb"),
  13439. name: "Front",
  13440. image: {
  13441. source: "./media/characters/neo/front.svg"
  13442. }
  13443. },
  13444. },
  13445. [
  13446. {
  13447. name: "Micro",
  13448. height: math.unit(2, "inches"),
  13449. default: true
  13450. },
  13451. {
  13452. name: "Human Size",
  13453. height: math.unit(5 + 8 / 12, "feet")
  13454. },
  13455. ]
  13456. ))
  13457. characterMakers.push(() => makeCharacter(
  13458. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13459. {
  13460. front: {
  13461. height: math.unit(13 + 10 / 12, "feet"),
  13462. weight: math.unit(5320, "lb"),
  13463. name: "Front",
  13464. image: {
  13465. source: "./media/characters/chauncey-chantz/front.svg",
  13466. extra: 1587 / 1435,
  13467. bottom: 0.02
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Normal",
  13474. height: math.unit(13 + 10 / 12, "feet"),
  13475. default: true
  13476. },
  13477. {
  13478. name: "Macro",
  13479. height: math.unit(45, "feet")
  13480. },
  13481. {
  13482. name: "Megamacro",
  13483. height: math.unit(250, "miles")
  13484. },
  13485. {
  13486. name: "Planetary",
  13487. height: math.unit(10000, "miles")
  13488. },
  13489. {
  13490. name: "Galactic",
  13491. height: math.unit(40000, "parsecs")
  13492. },
  13493. {
  13494. name: "Universal",
  13495. height: math.unit(1, "yottameter")
  13496. },
  13497. ]
  13498. ))
  13499. characterMakers.push(() => makeCharacter(
  13500. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13501. {
  13502. front: {
  13503. height: math.unit(6, "feet"),
  13504. weight: math.unit(150, "lb"),
  13505. name: "Front",
  13506. image: {
  13507. source: "./media/characters/epifox/front.svg",
  13508. extra: 1,
  13509. bottom: 0.075
  13510. }
  13511. },
  13512. },
  13513. [
  13514. {
  13515. name: "Micro",
  13516. height: math.unit(6, "inches")
  13517. },
  13518. {
  13519. name: "Normal",
  13520. height: math.unit(12, "feet"),
  13521. default: true
  13522. },
  13523. {
  13524. name: "Macro",
  13525. height: math.unit(3810, "feet")
  13526. },
  13527. {
  13528. name: "Megamacro",
  13529. height: math.unit(500, "miles")
  13530. },
  13531. ]
  13532. ))
  13533. characterMakers.push(() => makeCharacter(
  13534. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13535. {
  13536. front: {
  13537. height: math.unit(1.8796, "m"),
  13538. weight: math.unit(230, "lb"),
  13539. name: "Front",
  13540. image: {
  13541. source: "./media/characters/colin-t/front.svg",
  13542. extra: 1272 / 1193,
  13543. bottom: 0.07
  13544. }
  13545. },
  13546. },
  13547. [
  13548. {
  13549. name: "Micro",
  13550. height: math.unit(0.571, "meters")
  13551. },
  13552. {
  13553. name: "Normal",
  13554. height: math.unit(1.8796, "meters"),
  13555. default: true
  13556. },
  13557. {
  13558. name: "Tall",
  13559. height: math.unit(4, "meters")
  13560. },
  13561. {
  13562. name: "Macro",
  13563. height: math.unit(67.241, "meters")
  13564. },
  13565. {
  13566. name: "Megamacro",
  13567. height: math.unit(371.856, "meters")
  13568. },
  13569. {
  13570. name: "Planetary",
  13571. height: math.unit(12631.5689, "km")
  13572. },
  13573. ]
  13574. ))
  13575. characterMakers.push(() => makeCharacter(
  13576. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13577. {
  13578. front: {
  13579. height: math.unit(1.85, "meters"),
  13580. weight: math.unit(80, "kg"),
  13581. name: "Front",
  13582. image: {
  13583. source: "./media/characters/matvei/front.svg",
  13584. extra: 456/447,
  13585. bottom: 8/464
  13586. }
  13587. },
  13588. back: {
  13589. height: math.unit(1.85, "meters"),
  13590. weight: math.unit(80, "kg"),
  13591. name: "Back",
  13592. image: {
  13593. source: "./media/characters/matvei/back.svg",
  13594. extra: 434/427,
  13595. bottom: 11/445
  13596. }
  13597. },
  13598. },
  13599. [
  13600. {
  13601. name: "Normal",
  13602. height: math.unit(1.85, "meters"),
  13603. default: true
  13604. },
  13605. ]
  13606. ))
  13607. characterMakers.push(() => makeCharacter(
  13608. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13609. {
  13610. front: {
  13611. height: math.unit(5 + 9 / 12, "feet"),
  13612. weight: math.unit(70, "lb"),
  13613. name: "Front",
  13614. image: {
  13615. source: "./media/characters/quincy/front.svg",
  13616. extra: 3041 / 2751
  13617. }
  13618. },
  13619. back: {
  13620. height: math.unit(5 + 9 / 12, "feet"),
  13621. weight: math.unit(70, "lb"),
  13622. name: "Back",
  13623. image: {
  13624. source: "./media/characters/quincy/back.svg",
  13625. extra: 3041 / 2751
  13626. }
  13627. },
  13628. flying: {
  13629. height: math.unit(5 + 4 / 12, "feet"),
  13630. weight: math.unit(70, "lb"),
  13631. name: "Flying",
  13632. image: {
  13633. source: "./media/characters/quincy/flying.svg",
  13634. extra: 1044 / 930
  13635. }
  13636. },
  13637. },
  13638. [
  13639. {
  13640. name: "Micro",
  13641. height: math.unit(3, "cm")
  13642. },
  13643. {
  13644. name: "Normal",
  13645. height: math.unit(5 + 9 / 12, "feet")
  13646. },
  13647. {
  13648. name: "Macro",
  13649. height: math.unit(200, "meters"),
  13650. default: true
  13651. },
  13652. {
  13653. name: "Megamacro",
  13654. height: math.unit(1000, "meters")
  13655. },
  13656. ]
  13657. ))
  13658. characterMakers.push(() => makeCharacter(
  13659. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13660. {
  13661. front: {
  13662. height: math.unit(3 + 11/12, "feet"),
  13663. weight: math.unit(50, "lb"),
  13664. name: "Front",
  13665. image: {
  13666. source: "./media/characters/vanrel/front.svg",
  13667. extra: 1104/949,
  13668. bottom: 52/1156
  13669. }
  13670. },
  13671. back: {
  13672. height: math.unit(3 + 11/12, "feet"),
  13673. weight: math.unit(50, "lb"),
  13674. name: "Back",
  13675. image: {
  13676. source: "./media/characters/vanrel/back.svg",
  13677. extra: 1119/976,
  13678. bottom: 37/1156
  13679. }
  13680. },
  13681. tome: {
  13682. height: math.unit(1.35, "feet"),
  13683. weight: math.unit(10, "lb"),
  13684. name: "Vanrel's Tome",
  13685. rename: true,
  13686. image: {
  13687. source: "./media/characters/vanrel/tome.svg"
  13688. }
  13689. },
  13690. beans: {
  13691. height: math.unit(0.89, "feet"),
  13692. name: "Beans",
  13693. image: {
  13694. source: "./media/characters/vanrel/beans.svg"
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Normal",
  13701. height: math.unit(3 + 11/12, "feet"),
  13702. default: true
  13703. },
  13704. ]
  13705. ))
  13706. characterMakers.push(() => makeCharacter(
  13707. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13708. {
  13709. front: {
  13710. height: math.unit(7 + 5 / 12, "feet"),
  13711. name: "Front",
  13712. image: {
  13713. source: "./media/characters/kuiper-vanrel/front.svg",
  13714. extra: 1219/1169,
  13715. bottom: 69/1288
  13716. }
  13717. },
  13718. back: {
  13719. height: math.unit(7 + 5 / 12, "feet"),
  13720. name: "Back",
  13721. image: {
  13722. source: "./media/characters/kuiper-vanrel/back.svg",
  13723. extra: 1236/1193,
  13724. bottom: 27/1263
  13725. }
  13726. },
  13727. foot: {
  13728. height: math.unit(0.55, "meters"),
  13729. name: "Foot",
  13730. image: {
  13731. source: "./media/characters/kuiper-vanrel/foot.svg",
  13732. }
  13733. },
  13734. battle: {
  13735. height: math.unit(6.824, "feet"),
  13736. name: "Battle",
  13737. image: {
  13738. source: "./media/characters/kuiper-vanrel/battle.svg",
  13739. extra: 1466 / 1327,
  13740. bottom: 29 / 1492.5
  13741. }
  13742. },
  13743. meerkui: {
  13744. height: math.unit(18, "inches"),
  13745. name: "Meerkui",
  13746. image: {
  13747. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13748. extra: 1354/1289,
  13749. bottom: 69/1423
  13750. }
  13751. },
  13752. },
  13753. [
  13754. {
  13755. name: "Normal",
  13756. height: math.unit(7 + 5 / 12, "feet"),
  13757. default: true
  13758. },
  13759. ]
  13760. ))
  13761. characterMakers.push(() => makeCharacter(
  13762. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13763. {
  13764. front: {
  13765. height: math.unit(8 + 5 / 12, "feet"),
  13766. name: "Front",
  13767. image: {
  13768. source: "./media/characters/keset-vanrel/front.svg",
  13769. extra: 1231/1148,
  13770. bottom: 82/1313
  13771. }
  13772. },
  13773. back: {
  13774. height: math.unit(8 + 5 / 12, "feet"),
  13775. name: "Back",
  13776. image: {
  13777. source: "./media/characters/keset-vanrel/back.svg",
  13778. extra: 1240/1174,
  13779. bottom: 33/1273
  13780. }
  13781. },
  13782. hand: {
  13783. height: math.unit(0.6, "meters"),
  13784. name: "Hand",
  13785. image: {
  13786. source: "./media/characters/keset-vanrel/hand.svg"
  13787. }
  13788. },
  13789. foot: {
  13790. height: math.unit(0.94978, "meters"),
  13791. name: "Foot",
  13792. image: {
  13793. source: "./media/characters/keset-vanrel/foot.svg"
  13794. }
  13795. },
  13796. battle: {
  13797. height: math.unit(7.408, "feet"),
  13798. name: "Battle",
  13799. image: {
  13800. source: "./media/characters/keset-vanrel/battle.svg",
  13801. extra: 1890 / 1386,
  13802. bottom: 73.28 / 1970
  13803. }
  13804. },
  13805. },
  13806. [
  13807. {
  13808. name: "Normal",
  13809. height: math.unit(8 + 5 / 12, "feet"),
  13810. default: true
  13811. },
  13812. ]
  13813. ))
  13814. characterMakers.push(() => makeCharacter(
  13815. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13816. {
  13817. front: {
  13818. height: math.unit(6, "feet"),
  13819. weight: math.unit(150, "lb"),
  13820. name: "Front",
  13821. image: {
  13822. source: "./media/characters/neos/front.svg",
  13823. extra: 1696 / 992,
  13824. bottom: 0.14
  13825. }
  13826. },
  13827. },
  13828. [
  13829. {
  13830. name: "Normal",
  13831. height: math.unit(54, "cm"),
  13832. default: true
  13833. },
  13834. {
  13835. name: "Macro",
  13836. height: math.unit(100, "m")
  13837. },
  13838. {
  13839. name: "Megamacro",
  13840. height: math.unit(10, "km")
  13841. },
  13842. {
  13843. name: "Megamacro+",
  13844. height: math.unit(100, "km")
  13845. },
  13846. {
  13847. name: "Gigamacro",
  13848. height: math.unit(100, "Mm")
  13849. },
  13850. {
  13851. name: "Teramacro",
  13852. height: math.unit(100, "Gm")
  13853. },
  13854. {
  13855. name: "Examacro",
  13856. height: math.unit(100, "Em")
  13857. },
  13858. {
  13859. name: "Godly",
  13860. height: math.unit(10000, "Ym")
  13861. },
  13862. {
  13863. name: "Beyond Godly",
  13864. height: math.unit(25, "multiverses")
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13870. {
  13871. fluide_tame: {
  13872. height: math.unit(5, "feet"),
  13873. name: "Tame",
  13874. image: {
  13875. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13876. extra: 1655/1574,
  13877. bottom: 231/1886
  13878. },
  13879. form: "fluide",
  13880. default: true
  13881. },
  13882. fluide_nude: {
  13883. height: math.unit(5, "feet"),
  13884. name: "Nude",
  13885. image: {
  13886. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  13887. extra: 1655/1574,
  13888. bottom: 231/1886
  13889. },
  13890. form: "fluide",
  13891. },
  13892. male_tame: {
  13893. height: math.unit(5, "feet"),
  13894. name: "Tame",
  13895. image: {
  13896. source: "./media/characters/sammy-mouse/male-tame.svg",
  13897. extra: 1655/1574,
  13898. bottom: 231/1886
  13899. },
  13900. form: "male",
  13901. default: true
  13902. },
  13903. male_nude: {
  13904. height: math.unit(5, "feet"),
  13905. name: "Nude",
  13906. image: {
  13907. source: "./media/characters/sammy-mouse/male-nude.svg",
  13908. extra: 1655/1574,
  13909. bottom: 231/1886
  13910. },
  13911. form: "male",
  13912. },
  13913. female_nude: {
  13914. height: math.unit(5, "feet"),
  13915. name: "Nude",
  13916. image: {
  13917. source: "./media/characters/sammy-mouse/female-nude.svg",
  13918. extra: 1655/1574,
  13919. bottom: 231/1886
  13920. },
  13921. form: "female",
  13922. default: true
  13923. },
  13924. mouth: {
  13925. height: math.unit(0.32, "feet"),
  13926. name: "Mouth",
  13927. image: {
  13928. source: "./media/characters/sammy-mouse/mouth.svg"
  13929. },
  13930. allForms: true
  13931. },
  13932. paw: {
  13933. height: math.unit(0.42, "feet"),
  13934. name: "Paw",
  13935. image: {
  13936. source: "./media/characters/sammy-mouse/paw.svg"
  13937. },
  13938. allForms: true
  13939. },
  13940. },
  13941. [
  13942. {
  13943. name: "Micro",
  13944. height: math.unit(5, "inches"),
  13945. allForms: true
  13946. },
  13947. {
  13948. name: "Normal",
  13949. height: math.unit(5, "feet"),
  13950. default: true,
  13951. allForms: true
  13952. },
  13953. {
  13954. name: "Macro",
  13955. height: math.unit(60, "feet"),
  13956. allForms: true
  13957. },
  13958. ],
  13959. {
  13960. "fluide": {
  13961. name: "Fluide",
  13962. default: true
  13963. },
  13964. "male": {
  13965. name: "Male",
  13966. },
  13967. "female": {
  13968. name: "Female",
  13969. },
  13970. }
  13971. ))
  13972. characterMakers.push(() => makeCharacter(
  13973. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13974. {
  13975. front: {
  13976. height: math.unit(4, "feet"),
  13977. weight: math.unit(50, "lb"),
  13978. name: "Front",
  13979. image: {
  13980. source: "./media/characters/kole/front.svg",
  13981. extra: 1423 / 1303,
  13982. bottom: 0.025
  13983. }
  13984. },
  13985. back: {
  13986. height: math.unit(4, "feet"),
  13987. weight: math.unit(50, "lb"),
  13988. name: "Back",
  13989. image: {
  13990. source: "./media/characters/kole/back.svg",
  13991. extra: 1426 / 1280,
  13992. bottom: 0.02
  13993. }
  13994. },
  13995. },
  13996. [
  13997. {
  13998. name: "Normal",
  13999. height: math.unit(4, "feet"),
  14000. default: true
  14001. },
  14002. ]
  14003. ))
  14004. characterMakers.push(() => makeCharacter(
  14005. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14006. {
  14007. front: {
  14008. height: math.unit(2.5, "feet"),
  14009. weight: math.unit(32, "lb"),
  14010. name: "Front",
  14011. image: {
  14012. source: "./media/characters/rufran/front.svg",
  14013. extra: 1313/885,
  14014. bottom: 94/1407
  14015. }
  14016. },
  14017. side: {
  14018. height: math.unit(2.5, "feet"),
  14019. weight: math.unit(32, "lb"),
  14020. name: "Side",
  14021. image: {
  14022. source: "./media/characters/rufran/side.svg",
  14023. extra: 1109/852,
  14024. bottom: 118/1227
  14025. }
  14026. },
  14027. back: {
  14028. height: math.unit(2.5, "feet"),
  14029. weight: math.unit(32, "lb"),
  14030. name: "Back",
  14031. image: {
  14032. source: "./media/characters/rufran/back.svg",
  14033. extra: 1280/878,
  14034. bottom: 131/1411
  14035. }
  14036. },
  14037. mouth: {
  14038. height: math.unit(1.13, "feet"),
  14039. name: "Mouth",
  14040. image: {
  14041. source: "./media/characters/rufran/mouth.svg"
  14042. }
  14043. },
  14044. foot: {
  14045. height: math.unit(1.33, "feet"),
  14046. name: "Foot",
  14047. image: {
  14048. source: "./media/characters/rufran/foot.svg"
  14049. }
  14050. },
  14051. koboldFront: {
  14052. height: math.unit(2 + 6 / 12, "feet"),
  14053. weight: math.unit(20, "lb"),
  14054. name: "Front (Kobold)",
  14055. image: {
  14056. source: "./media/characters/rufran/kobold-front.svg",
  14057. extra: 2041 / 1839,
  14058. bottom: 0.055
  14059. }
  14060. },
  14061. koboldBack: {
  14062. height: math.unit(2 + 6 / 12, "feet"),
  14063. weight: math.unit(20, "lb"),
  14064. name: "Back (Kobold)",
  14065. image: {
  14066. source: "./media/characters/rufran/kobold-back.svg",
  14067. extra: 2054 / 1839,
  14068. bottom: 0.01
  14069. }
  14070. },
  14071. koboldHand: {
  14072. height: math.unit(0.2166, "meters"),
  14073. name: "Hand (Kobold)",
  14074. image: {
  14075. source: "./media/characters/rufran/kobold-hand.svg"
  14076. }
  14077. },
  14078. koboldFoot: {
  14079. height: math.unit(0.185, "meters"),
  14080. name: "Foot (Kobold)",
  14081. image: {
  14082. source: "./media/characters/rufran/kobold-foot.svg"
  14083. }
  14084. },
  14085. },
  14086. [
  14087. {
  14088. name: "Micro",
  14089. height: math.unit(1, "inch")
  14090. },
  14091. {
  14092. name: "Normal",
  14093. height: math.unit(2 + 6 / 12, "feet"),
  14094. default: true
  14095. },
  14096. {
  14097. name: "Big",
  14098. height: math.unit(60, "feet")
  14099. },
  14100. {
  14101. name: "Macro",
  14102. height: math.unit(325, "feet")
  14103. },
  14104. ]
  14105. ))
  14106. characterMakers.push(() => makeCharacter(
  14107. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14108. {
  14109. front: {
  14110. height: math.unit(0.3, "meters"),
  14111. weight: math.unit(3.5, "kg"),
  14112. name: "Front",
  14113. image: {
  14114. source: "./media/characters/chip/front.svg",
  14115. extra: 748 / 674
  14116. }
  14117. },
  14118. },
  14119. [
  14120. {
  14121. name: "Micro",
  14122. height: math.unit(1, "inch"),
  14123. default: true
  14124. },
  14125. ]
  14126. ))
  14127. characterMakers.push(() => makeCharacter(
  14128. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14129. {
  14130. side: {
  14131. height: math.unit(2.3, "meters"),
  14132. weight: math.unit(3500, "lb"),
  14133. name: "Side",
  14134. image: {
  14135. source: "./media/characters/torvid/side.svg",
  14136. extra: 1972 / 722,
  14137. bottom: 0.035
  14138. }
  14139. },
  14140. },
  14141. [
  14142. {
  14143. name: "Normal",
  14144. height: math.unit(2.3, "meters"),
  14145. default: true
  14146. },
  14147. ]
  14148. ))
  14149. characterMakers.push(() => makeCharacter(
  14150. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14151. {
  14152. front: {
  14153. height: math.unit(2, "meters"),
  14154. weight: math.unit(150.5, "kg"),
  14155. name: "Front",
  14156. image: {
  14157. source: "./media/characters/susan/front.svg",
  14158. extra: 693 / 635,
  14159. bottom: 0.05
  14160. }
  14161. },
  14162. },
  14163. [
  14164. {
  14165. name: "Megamacro",
  14166. height: math.unit(505, "miles"),
  14167. default: true
  14168. },
  14169. ]
  14170. ))
  14171. characterMakers.push(() => makeCharacter(
  14172. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14173. {
  14174. front: {
  14175. height: math.unit(6, "feet"),
  14176. weight: math.unit(150, "lb"),
  14177. name: "Front",
  14178. image: {
  14179. source: "./media/characters/raindrops/front.svg",
  14180. extra: 2655 / 2461,
  14181. bottom: 49 / 2705
  14182. }
  14183. },
  14184. back: {
  14185. height: math.unit(6, "feet"),
  14186. weight: math.unit(150, "lb"),
  14187. name: "Back",
  14188. image: {
  14189. source: "./media/characters/raindrops/back.svg",
  14190. extra: 2574 / 2400,
  14191. bottom: 65 / 2634
  14192. }
  14193. },
  14194. },
  14195. [
  14196. {
  14197. name: "Micro",
  14198. height: math.unit(6, "inches")
  14199. },
  14200. {
  14201. name: "Normal",
  14202. height: math.unit(6 + 2 / 12, "feet")
  14203. },
  14204. {
  14205. name: "Macro",
  14206. height: math.unit(131, "feet"),
  14207. default: true
  14208. },
  14209. {
  14210. name: "Megamacro",
  14211. height: math.unit(15, "miles")
  14212. },
  14213. {
  14214. name: "Gigamacro",
  14215. height: math.unit(4000, "miles")
  14216. },
  14217. {
  14218. name: "Teramacro",
  14219. height: math.unit(315000, "miles")
  14220. },
  14221. ]
  14222. ))
  14223. characterMakers.push(() => makeCharacter(
  14224. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14225. {
  14226. front: {
  14227. height: math.unit(2.794, "meters"),
  14228. weight: math.unit(325, "kg"),
  14229. name: "Front",
  14230. image: {
  14231. source: "./media/characters/tezwa/front.svg",
  14232. extra: 2083 / 1906,
  14233. bottom: 0.031
  14234. }
  14235. },
  14236. foot: {
  14237. height: math.unit(0.687, "meters"),
  14238. name: "Foot",
  14239. image: {
  14240. source: "./media/characters/tezwa/foot.svg"
  14241. }
  14242. },
  14243. },
  14244. [
  14245. {
  14246. name: "Normal",
  14247. height: math.unit(9 + 2 / 12, "feet"),
  14248. default: true
  14249. },
  14250. ]
  14251. ))
  14252. characterMakers.push(() => makeCharacter(
  14253. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14254. {
  14255. front: {
  14256. height: math.unit(58, "feet"),
  14257. weight: math.unit(89000, "lb"),
  14258. name: "Front",
  14259. image: {
  14260. source: "./media/characters/typhus/front.svg",
  14261. extra: 816 / 800,
  14262. bottom: 0.065
  14263. }
  14264. },
  14265. },
  14266. [
  14267. {
  14268. name: "Macro",
  14269. height: math.unit(58, "feet"),
  14270. default: true
  14271. },
  14272. ]
  14273. ))
  14274. characterMakers.push(() => makeCharacter(
  14275. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14276. {
  14277. front: {
  14278. height: math.unit(12, "feet"),
  14279. weight: math.unit(6, "tonnes"),
  14280. name: "Front",
  14281. image: {
  14282. source: "./media/characters/lyra-von-wulf/front.svg",
  14283. extra: 1,
  14284. bottom: 0.10
  14285. }
  14286. },
  14287. frontMecha: {
  14288. height: math.unit(12, "feet"),
  14289. weight: math.unit(12, "tonnes"),
  14290. name: "Front (Mecha)",
  14291. image: {
  14292. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14293. extra: 1,
  14294. bottom: 0.042
  14295. }
  14296. },
  14297. maw: {
  14298. height: math.unit(2.2, "feet"),
  14299. name: "Maw",
  14300. image: {
  14301. source: "./media/characters/lyra-von-wulf/maw.svg"
  14302. }
  14303. },
  14304. },
  14305. [
  14306. {
  14307. name: "Normal",
  14308. height: math.unit(12, "feet"),
  14309. default: true
  14310. },
  14311. {
  14312. name: "Classic",
  14313. height: math.unit(50, "feet")
  14314. },
  14315. {
  14316. name: "Macro",
  14317. height: math.unit(500, "feet")
  14318. },
  14319. {
  14320. name: "Megamacro",
  14321. height: math.unit(1, "mile")
  14322. },
  14323. {
  14324. name: "Gigamacro",
  14325. height: math.unit(400, "miles")
  14326. },
  14327. {
  14328. name: "Teramacro",
  14329. height: math.unit(22000, "miles")
  14330. },
  14331. {
  14332. name: "Solarmacro",
  14333. height: math.unit(8600000, "miles")
  14334. },
  14335. {
  14336. name: "Galactic",
  14337. height: math.unit(1057000, "lightyears")
  14338. },
  14339. ]
  14340. ))
  14341. characterMakers.push(() => makeCharacter(
  14342. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14343. {
  14344. front: {
  14345. height: math.unit(6 + 10 / 12, "feet"),
  14346. weight: math.unit(150, "lb"),
  14347. name: "Front",
  14348. image: {
  14349. source: "./media/characters/dixon/front.svg",
  14350. extra: 3361 / 3209,
  14351. bottom: 0.01
  14352. }
  14353. },
  14354. },
  14355. [
  14356. {
  14357. name: "Normal",
  14358. height: math.unit(6 + 10 / 12, "feet"),
  14359. default: true
  14360. },
  14361. {
  14362. name: "Big",
  14363. height: math.unit(12, "meters")
  14364. },
  14365. {
  14366. name: "Macro",
  14367. height: math.unit(500, "meters")
  14368. },
  14369. {
  14370. name: "Megamacro",
  14371. height: math.unit(2, "km")
  14372. },
  14373. ]
  14374. ))
  14375. characterMakers.push(() => makeCharacter(
  14376. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14377. {
  14378. front: {
  14379. height: math.unit(185, "cm"),
  14380. weight: math.unit(68, "kg"),
  14381. name: "Front",
  14382. image: {
  14383. source: "./media/characters/kauko/front.svg",
  14384. extra: 1455 / 1421,
  14385. bottom: 0.03
  14386. }
  14387. },
  14388. back: {
  14389. height: math.unit(185, "cm"),
  14390. weight: math.unit(68, "kg"),
  14391. name: "Back",
  14392. image: {
  14393. source: "./media/characters/kauko/back.svg",
  14394. extra: 1455 / 1421,
  14395. bottom: 0.004
  14396. }
  14397. },
  14398. },
  14399. [
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(185, "cm"),
  14403. default: true
  14404. },
  14405. ]
  14406. ))
  14407. characterMakers.push(() => makeCharacter(
  14408. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14409. {
  14410. frontSfw: {
  14411. height: math.unit(5, "meters"),
  14412. weight: math.unit(4250, "lb"),
  14413. name: "Front",
  14414. image: {
  14415. source: "./media/characters/varg/front-sfw.svg",
  14416. extra: 1103/1010,
  14417. bottom: 50/1153
  14418. },
  14419. form: "anthro",
  14420. default: true
  14421. },
  14422. backSfw: {
  14423. height: math.unit(5, "meters"),
  14424. weight: math.unit(4250, "lb"),
  14425. name: "Back",
  14426. image: {
  14427. source: "./media/characters/varg/back-sfw.svg",
  14428. extra: 1038/1022,
  14429. bottom: 36/1074
  14430. },
  14431. form: "anthro"
  14432. },
  14433. frontNsfw: {
  14434. height: math.unit(5, "meters"),
  14435. weight: math.unit(4250, "lb"),
  14436. name: "Front (NSFW)",
  14437. image: {
  14438. source: "./media/characters/varg/front-nsfw.svg",
  14439. extra: 1103/1010,
  14440. bottom: 50/1153
  14441. },
  14442. form: "anthro"
  14443. },
  14444. sheath: {
  14445. height: math.unit(3.8, "feet"),
  14446. weight: math.unit(90, "kilograms"),
  14447. name: "Sheath",
  14448. image: {
  14449. source: "./media/characters/varg/sheath.svg"
  14450. },
  14451. form: "anthro"
  14452. },
  14453. dick: {
  14454. height: math.unit(4.6, "feet"),
  14455. weight: math.unit(451, "kilograms"),
  14456. name: "Dick",
  14457. image: {
  14458. source: "./media/characters/varg/dick.svg"
  14459. },
  14460. form: "anthro"
  14461. },
  14462. feralSfw: {
  14463. height: math.unit(5, "meters"),
  14464. weight: math.unit(100000, "lb"),
  14465. name: "Side",
  14466. image: {
  14467. source: "./media/characters/varg/feral-sfw.svg",
  14468. extra: 1065/511,
  14469. bottom: 211/1276
  14470. },
  14471. form: "feral",
  14472. default: true
  14473. },
  14474. feralNsfw: {
  14475. height: math.unit(5, "meters"),
  14476. weight: math.unit(100000, "lb"),
  14477. name: "Side (NSFW)",
  14478. image: {
  14479. source: "./media/characters/varg/feral-nsfw.svg",
  14480. extra: 1065/511,
  14481. bottom: 211/1276
  14482. },
  14483. form: "feral",
  14484. },
  14485. feralSheath: {
  14486. height: math.unit(9.8, "feet"),
  14487. weight: math.unit(2000, "kilograms"),
  14488. name: "Sheath",
  14489. image: {
  14490. source: "./media/characters/varg/sheath.svg"
  14491. },
  14492. form: "feral"
  14493. },
  14494. feralDick: {
  14495. height: math.unit(13.11, "feet"),
  14496. weight: math.unit(10440, "kilograms"),
  14497. name: "Dick",
  14498. image: {
  14499. source: "./media/characters/varg/dick.svg"
  14500. },
  14501. form: "feral"
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Normal",
  14507. height: math.unit(5, "meters"),
  14508. form: "anthro"
  14509. },
  14510. {
  14511. name: "Macro",
  14512. height: math.unit(200, "meters"),
  14513. form: "anthro"
  14514. },
  14515. {
  14516. name: "Megamacro",
  14517. height: math.unit(20, "kilometers"),
  14518. form: "anthro"
  14519. },
  14520. {
  14521. name: "True Size",
  14522. height: math.unit(211, "km"),
  14523. form: "anthro",
  14524. default: true
  14525. },
  14526. {
  14527. name: "Gigamacro",
  14528. height: math.unit(1000, "km"),
  14529. form: "anthro"
  14530. },
  14531. {
  14532. name: "Gigamacro+",
  14533. height: math.unit(8000, "km"),
  14534. form: "anthro"
  14535. },
  14536. {
  14537. name: "Teramacro",
  14538. height: math.unit(1000000, "km"),
  14539. form: "anthro"
  14540. },
  14541. {
  14542. name: "Normal",
  14543. height: math.unit(5, "meters"),
  14544. form: "feral"
  14545. },
  14546. {
  14547. name: "Macro",
  14548. height: math.unit(200, "meters"),
  14549. form: "feral"
  14550. },
  14551. {
  14552. name: "Megamacro",
  14553. height: math.unit(20, "kilometers"),
  14554. form: "feral"
  14555. },
  14556. {
  14557. name: "True Size",
  14558. height: math.unit(211, "km"),
  14559. form: "feral",
  14560. default: true
  14561. },
  14562. {
  14563. name: "Gigamacro",
  14564. height: math.unit(1000, "km"),
  14565. form: "feral"
  14566. },
  14567. {
  14568. name: "Gigamacro+",
  14569. height: math.unit(8000, "km"),
  14570. form: "feral"
  14571. },
  14572. {
  14573. name: "Teramacro",
  14574. height: math.unit(1000000, "km"),
  14575. form: "feral"
  14576. },
  14577. ],
  14578. {
  14579. "anthro": {
  14580. name: "Anthro",
  14581. default: true
  14582. },
  14583. "feral": {
  14584. name: "Feral",
  14585. },
  14586. }
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(7 + 7 / 12, "feet"),
  14593. weight: math.unit(267, "lb"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/dayza/front.svg",
  14597. extra: 1262 / 1200,
  14598. bottom: 0.035
  14599. }
  14600. },
  14601. side: {
  14602. height: math.unit(7 + 7 / 12, "feet"),
  14603. weight: math.unit(267, "lb"),
  14604. name: "Side",
  14605. image: {
  14606. source: "./media/characters/dayza/side.svg",
  14607. extra: 1295 / 1245,
  14608. bottom: 0.05
  14609. }
  14610. },
  14611. back: {
  14612. height: math.unit(7 + 7 / 12, "feet"),
  14613. weight: math.unit(267, "lb"),
  14614. name: "Back",
  14615. image: {
  14616. source: "./media/characters/dayza/back.svg",
  14617. extra: 1241 / 1170
  14618. }
  14619. },
  14620. },
  14621. [
  14622. {
  14623. name: "Normal",
  14624. height: math.unit(7 + 7 / 12, "feet"),
  14625. default: true
  14626. },
  14627. {
  14628. name: "Macro",
  14629. height: math.unit(155, "feet")
  14630. },
  14631. ]
  14632. ))
  14633. characterMakers.push(() => makeCharacter(
  14634. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14635. {
  14636. front: {
  14637. height: math.unit(6 + 5 / 12, "feet"),
  14638. weight: math.unit(160, "lb"),
  14639. name: "Front",
  14640. image: {
  14641. source: "./media/characters/xanthos/front.svg",
  14642. extra: 1,
  14643. bottom: 0.04
  14644. }
  14645. },
  14646. back: {
  14647. height: math.unit(6 + 5 / 12, "feet"),
  14648. weight: math.unit(160, "lb"),
  14649. name: "Back",
  14650. image: {
  14651. source: "./media/characters/xanthos/back.svg",
  14652. extra: 1,
  14653. bottom: 0.03
  14654. }
  14655. },
  14656. hand: {
  14657. height: math.unit(0.928, "feet"),
  14658. name: "Hand",
  14659. image: {
  14660. source: "./media/characters/xanthos/hand.svg"
  14661. }
  14662. },
  14663. foot: {
  14664. height: math.unit(1.286, "feet"),
  14665. name: "Foot",
  14666. image: {
  14667. source: "./media/characters/xanthos/foot.svg"
  14668. }
  14669. },
  14670. },
  14671. [
  14672. {
  14673. name: "Normal",
  14674. height: math.unit(6 + 5 / 12, "feet"),
  14675. default: true
  14676. },
  14677. {
  14678. name: "Normal+",
  14679. height: math.unit(6, "meters")
  14680. },
  14681. {
  14682. name: "Macro",
  14683. height: math.unit(40, "feet")
  14684. },
  14685. {
  14686. name: "Macro+",
  14687. height: math.unit(200, "meters")
  14688. },
  14689. {
  14690. name: "Megamacro",
  14691. height: math.unit(20, "km")
  14692. },
  14693. {
  14694. name: "Megamacro+",
  14695. height: math.unit(100, "km")
  14696. },
  14697. {
  14698. name: "Gigamacro",
  14699. height: math.unit(200, "megameters")
  14700. },
  14701. {
  14702. name: "Gigamacro+",
  14703. height: math.unit(1.5, "gigameters")
  14704. },
  14705. ]
  14706. ))
  14707. characterMakers.push(() => makeCharacter(
  14708. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14709. {
  14710. front: {
  14711. height: math.unit(6 + 3 / 12, "feet"),
  14712. weight: math.unit(215, "lb"),
  14713. name: "Front",
  14714. image: {
  14715. source: "./media/characters/grynn/front.svg",
  14716. extra: 4627 / 4209,
  14717. bottom: 0.047
  14718. }
  14719. },
  14720. },
  14721. [
  14722. {
  14723. name: "Micro",
  14724. height: math.unit(6, "inches")
  14725. },
  14726. {
  14727. name: "Normal",
  14728. height: math.unit(6 + 3 / 12, "feet"),
  14729. default: true
  14730. },
  14731. {
  14732. name: "Big",
  14733. height: math.unit(104, "feet")
  14734. },
  14735. {
  14736. name: "Macro",
  14737. height: math.unit(944, "feet")
  14738. },
  14739. {
  14740. name: "Macro+",
  14741. height: math.unit(9480, "feet")
  14742. },
  14743. {
  14744. name: "Megamacro",
  14745. height: math.unit(78752, "feet")
  14746. },
  14747. {
  14748. name: "Megamacro+",
  14749. height: math.unit(630128, "feet")
  14750. },
  14751. {
  14752. name: "Megamacro++",
  14753. height: math.unit(3150695, "feet")
  14754. },
  14755. ]
  14756. ))
  14757. characterMakers.push(() => makeCharacter(
  14758. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14759. {
  14760. front: {
  14761. height: math.unit(7 + 5 / 12, "feet"),
  14762. weight: math.unit(450, "lb"),
  14763. name: "Front",
  14764. image: {
  14765. source: "./media/characters/mocha-aura/front.svg",
  14766. extra: 1907 / 1817,
  14767. bottom: 0.04
  14768. }
  14769. },
  14770. back: {
  14771. height: math.unit(7 + 5 / 12, "feet"),
  14772. weight: math.unit(450, "lb"),
  14773. name: "Back",
  14774. image: {
  14775. source: "./media/characters/mocha-aura/back.svg",
  14776. extra: 1900 / 1825,
  14777. bottom: 0.045
  14778. }
  14779. },
  14780. },
  14781. [
  14782. {
  14783. name: "Nano",
  14784. height: math.unit(1, "nm")
  14785. },
  14786. {
  14787. name: "Megamicro",
  14788. height: math.unit(1, "mm")
  14789. },
  14790. {
  14791. name: "Micro",
  14792. height: math.unit(3, "inches")
  14793. },
  14794. {
  14795. name: "Normal",
  14796. height: math.unit(7 + 5 / 12, "feet"),
  14797. default: true
  14798. },
  14799. {
  14800. name: "Macro",
  14801. height: math.unit(30, "feet")
  14802. },
  14803. {
  14804. name: "Megamacro",
  14805. height: math.unit(3500, "feet")
  14806. },
  14807. {
  14808. name: "Teramacro",
  14809. height: math.unit(500000, "miles")
  14810. },
  14811. {
  14812. name: "Petamacro",
  14813. height: math.unit(50000000000000000, "parsecs")
  14814. },
  14815. ]
  14816. ))
  14817. characterMakers.push(() => makeCharacter(
  14818. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14819. {
  14820. front: {
  14821. height: math.unit(6, "feet"),
  14822. weight: math.unit(150, "lb"),
  14823. name: "Front",
  14824. image: {
  14825. source: "./media/characters/ilisha-devya/front.svg",
  14826. extra: 1053/1049,
  14827. bottom: 270/1323
  14828. }
  14829. },
  14830. back: {
  14831. height: math.unit(6, "feet"),
  14832. weight: math.unit(150, "lb"),
  14833. name: "Back",
  14834. image: {
  14835. source: "./media/characters/ilisha-devya/back.svg",
  14836. extra: 1131/1128,
  14837. bottom: 39/1170
  14838. }
  14839. },
  14840. },
  14841. [
  14842. {
  14843. name: "Macro",
  14844. height: math.unit(500, "feet"),
  14845. default: true
  14846. },
  14847. {
  14848. name: "Megamacro",
  14849. height: math.unit(10, "miles")
  14850. },
  14851. {
  14852. name: "Gigamacro",
  14853. height: math.unit(100000, "miles")
  14854. },
  14855. {
  14856. name: "Examacro",
  14857. height: math.unit(1e9, "lightyears")
  14858. },
  14859. {
  14860. name: "Omniversal",
  14861. height: math.unit(1e33, "lightyears")
  14862. },
  14863. {
  14864. name: "Beyond Infinite",
  14865. height: math.unit(1e100, "lightyears")
  14866. },
  14867. ]
  14868. ))
  14869. characterMakers.push(() => makeCharacter(
  14870. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14871. {
  14872. Side: {
  14873. height: math.unit(6, "feet"),
  14874. weight: math.unit(150, "lb"),
  14875. name: "Side",
  14876. image: {
  14877. source: "./media/characters/mira/side.svg",
  14878. extra: 900 / 799,
  14879. bottom: 0.02
  14880. }
  14881. },
  14882. },
  14883. [
  14884. {
  14885. name: "Human Size",
  14886. height: math.unit(6, "feet")
  14887. },
  14888. {
  14889. name: "Macro",
  14890. height: math.unit(100, "feet"),
  14891. default: true
  14892. },
  14893. {
  14894. name: "Megamacro",
  14895. height: math.unit(10, "miles")
  14896. },
  14897. {
  14898. name: "Gigamacro",
  14899. height: math.unit(25000, "miles")
  14900. },
  14901. {
  14902. name: "Teramacro",
  14903. height: math.unit(300, "AU")
  14904. },
  14905. {
  14906. name: "Full Size",
  14907. height: math.unit(4.5e10, "lightyears")
  14908. },
  14909. ]
  14910. ))
  14911. characterMakers.push(() => makeCharacter(
  14912. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14913. {
  14914. front: {
  14915. height: math.unit(6, "feet"),
  14916. weight: math.unit(150, "lb"),
  14917. name: "Front",
  14918. image: {
  14919. source: "./media/characters/holly/front.svg",
  14920. extra: 639 / 606
  14921. }
  14922. },
  14923. back: {
  14924. height: math.unit(6, "feet"),
  14925. weight: math.unit(150, "lb"),
  14926. name: "Back",
  14927. image: {
  14928. source: "./media/characters/holly/back.svg",
  14929. extra: 623 / 598
  14930. }
  14931. },
  14932. frontWorking: {
  14933. height: math.unit(6, "feet"),
  14934. weight: math.unit(150, "lb"),
  14935. name: "Front (Working)",
  14936. image: {
  14937. source: "./media/characters/holly/front-working.svg",
  14938. extra: 607 / 577,
  14939. bottom: 0.048
  14940. }
  14941. },
  14942. },
  14943. [
  14944. {
  14945. name: "Normal",
  14946. height: math.unit(12 + 3 / 12, "feet"),
  14947. default: true
  14948. },
  14949. ]
  14950. ))
  14951. characterMakers.push(() => makeCharacter(
  14952. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14953. {
  14954. front: {
  14955. height: math.unit(6, "feet"),
  14956. weight: math.unit(150, "lb"),
  14957. name: "Front",
  14958. image: {
  14959. source: "./media/characters/porter/front.svg",
  14960. extra: 1,
  14961. bottom: 0.01
  14962. }
  14963. },
  14964. frontRobes: {
  14965. height: math.unit(6, "feet"),
  14966. weight: math.unit(150, "lb"),
  14967. name: "Front (Robes)",
  14968. image: {
  14969. source: "./media/characters/porter/front-robes.svg",
  14970. extra: 1.01,
  14971. bottom: 0.01
  14972. }
  14973. },
  14974. },
  14975. [
  14976. {
  14977. name: "Normal",
  14978. height: math.unit(11 + 9 / 12, "feet"),
  14979. default: true
  14980. },
  14981. ]
  14982. ))
  14983. characterMakers.push(() => makeCharacter(
  14984. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14985. {
  14986. legendary: {
  14987. height: math.unit(6, "feet"),
  14988. weight: math.unit(150, "lb"),
  14989. name: "Legendary",
  14990. image: {
  14991. source: "./media/characters/lucy/legendary.svg",
  14992. extra: 1355 / 1100,
  14993. bottom: 0.045
  14994. }
  14995. },
  14996. },
  14997. [
  14998. {
  14999. name: "Legendary",
  15000. height: math.unit(86882 * 2, "miles"),
  15001. default: true
  15002. },
  15003. ]
  15004. ))
  15005. characterMakers.push(() => makeCharacter(
  15006. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15007. {
  15008. front: {
  15009. height: math.unit(6, "feet"),
  15010. weight: math.unit(150, "lb"),
  15011. name: "Front",
  15012. image: {
  15013. source: "./media/characters/drusilla/front.svg",
  15014. extra: 678 / 635,
  15015. bottom: 0.03
  15016. }
  15017. },
  15018. back: {
  15019. height: math.unit(6, "feet"),
  15020. weight: math.unit(150, "lb"),
  15021. name: "Back",
  15022. image: {
  15023. source: "./media/characters/drusilla/back.svg",
  15024. extra: 678 / 635,
  15025. bottom: 0.005
  15026. }
  15027. },
  15028. },
  15029. [
  15030. {
  15031. name: "Macro",
  15032. height: math.unit(100, "feet")
  15033. },
  15034. {
  15035. name: "Canon Height",
  15036. height: math.unit(2000, "feet"),
  15037. default: true
  15038. },
  15039. ]
  15040. ))
  15041. characterMakers.push(() => makeCharacter(
  15042. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15043. {
  15044. front: {
  15045. height: math.unit(6, "feet"),
  15046. weight: math.unit(180, "lb"),
  15047. name: "Front",
  15048. image: {
  15049. source: "./media/characters/renard-thatch/front.svg",
  15050. extra: 2411 / 2275,
  15051. bottom: 0.01
  15052. }
  15053. },
  15054. frontPosing: {
  15055. height: math.unit(6, "feet"),
  15056. weight: math.unit(180, "lb"),
  15057. name: "Front (Posing)",
  15058. image: {
  15059. source: "./media/characters/renard-thatch/front-posing.svg",
  15060. extra: 2381 / 2261,
  15061. bottom: 0.01
  15062. }
  15063. },
  15064. back: {
  15065. height: math.unit(6, "feet"),
  15066. weight: math.unit(180, "lb"),
  15067. name: "Back",
  15068. image: {
  15069. source: "./media/characters/renard-thatch/back.svg",
  15070. extra: 2428 / 2288
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Micro",
  15077. height: math.unit(3, "inches")
  15078. },
  15079. {
  15080. name: "Default",
  15081. height: math.unit(6, "feet"),
  15082. default: true
  15083. },
  15084. {
  15085. name: "Macro",
  15086. height: math.unit(75, "feet")
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(1450, "feet"),
  15095. weight: math.unit(1.21e6, "tons"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/sekvra/front.svg",
  15099. extra: 1193/1190,
  15100. bottom: 78/1271
  15101. }
  15102. },
  15103. side: {
  15104. height: math.unit(1450, "feet"),
  15105. weight: math.unit(1.21e6, "tons"),
  15106. name: "Side",
  15107. image: {
  15108. source: "./media/characters/sekvra/side.svg",
  15109. extra: 1193/1190,
  15110. bottom: 52/1245
  15111. }
  15112. },
  15113. back: {
  15114. height: math.unit(1450, "feet"),
  15115. weight: math.unit(1.21e6, "tons"),
  15116. name: "Back",
  15117. image: {
  15118. source: "./media/characters/sekvra/back.svg",
  15119. extra: 1219/1216,
  15120. bottom: 21/1240
  15121. }
  15122. },
  15123. frontClothed: {
  15124. height: math.unit(1450, "feet"),
  15125. weight: math.unit(1.21e6, "tons"),
  15126. name: "Front (Clothed)",
  15127. image: {
  15128. source: "./media/characters/sekvra/front-clothed.svg",
  15129. extra: 1192/1189,
  15130. bottom: 79/1271
  15131. }
  15132. },
  15133. },
  15134. [
  15135. {
  15136. name: "Macro",
  15137. height: math.unit(1450, "feet"),
  15138. default: true
  15139. },
  15140. {
  15141. name: "Megamacro",
  15142. height: math.unit(15000, "feet")
  15143. },
  15144. ]
  15145. ))
  15146. characterMakers.push(() => makeCharacter(
  15147. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15148. {
  15149. front: {
  15150. height: math.unit(6, "feet"),
  15151. weight: math.unit(150, "lb"),
  15152. name: "Front",
  15153. image: {
  15154. source: "./media/characters/carmine/front.svg",
  15155. extra: 1557/1538,
  15156. bottom: 68/1625
  15157. }
  15158. },
  15159. frontArmor: {
  15160. height: math.unit(6, "feet"),
  15161. weight: math.unit(150, "lb"),
  15162. name: "Front (Armor)",
  15163. image: {
  15164. source: "./media/characters/carmine/front-armor.svg",
  15165. extra: 1549/1530,
  15166. bottom: 82/1631
  15167. }
  15168. },
  15169. mouth: {
  15170. height: math.unit(0.55, "feet"),
  15171. name: "Mouth",
  15172. image: {
  15173. source: "./media/characters/carmine/mouth.svg"
  15174. }
  15175. },
  15176. hand: {
  15177. height: math.unit(1.05, "feet"),
  15178. name: "Hand",
  15179. image: {
  15180. source: "./media/characters/carmine/hand.svg"
  15181. }
  15182. },
  15183. foot: {
  15184. height: math.unit(0.6, "feet"),
  15185. name: "Foot",
  15186. image: {
  15187. source: "./media/characters/carmine/foot.svg"
  15188. }
  15189. },
  15190. },
  15191. [
  15192. {
  15193. name: "Large",
  15194. height: math.unit(1, "mile")
  15195. },
  15196. {
  15197. name: "Huge",
  15198. height: math.unit(40, "miles"),
  15199. default: true
  15200. },
  15201. {
  15202. name: "Colossal",
  15203. height: math.unit(2500, "miles")
  15204. },
  15205. ]
  15206. ))
  15207. characterMakers.push(() => makeCharacter(
  15208. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15209. {
  15210. front: {
  15211. height: math.unit(6, "feet"),
  15212. weight: math.unit(150, "lb"),
  15213. name: "Front",
  15214. image: {
  15215. source: "./media/characters/elyssia/front.svg",
  15216. extra: 2201 / 2035,
  15217. bottom: 0.05
  15218. }
  15219. },
  15220. frontClothed: {
  15221. height: math.unit(6, "feet"),
  15222. weight: math.unit(150, "lb"),
  15223. name: "Front (Clothed)",
  15224. image: {
  15225. source: "./media/characters/elyssia/front-clothed.svg",
  15226. extra: 2201 / 2035,
  15227. bottom: 0.05
  15228. }
  15229. },
  15230. back: {
  15231. height: math.unit(6, "feet"),
  15232. weight: math.unit(150, "lb"),
  15233. name: "Back",
  15234. image: {
  15235. source: "./media/characters/elyssia/back.svg",
  15236. extra: 2201 / 2035,
  15237. bottom: 0.013
  15238. }
  15239. },
  15240. },
  15241. [
  15242. {
  15243. name: "Smaller",
  15244. height: math.unit(150, "feet")
  15245. },
  15246. {
  15247. name: "Standard",
  15248. height: math.unit(1400, "feet"),
  15249. default: true
  15250. },
  15251. {
  15252. name: "Distracted",
  15253. height: math.unit(15000, "feet")
  15254. },
  15255. ]
  15256. ))
  15257. characterMakers.push(() => makeCharacter(
  15258. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15259. {
  15260. front: {
  15261. height: math.unit(7 + 4/12, "feet"),
  15262. weight: math.unit(690, "lb"),
  15263. name: "Front",
  15264. image: {
  15265. source: "./media/characters/geno-maxwell/front.svg",
  15266. extra: 984/856,
  15267. bottom: 87/1071
  15268. }
  15269. },
  15270. back: {
  15271. height: math.unit(7 + 4/12, "feet"),
  15272. weight: math.unit(690, "lb"),
  15273. name: "Back",
  15274. image: {
  15275. source: "./media/characters/geno-maxwell/back.svg",
  15276. extra: 981/854,
  15277. bottom: 57/1038
  15278. }
  15279. },
  15280. frontCostume: {
  15281. height: math.unit(7 + 4/12, "feet"),
  15282. weight: math.unit(690, "lb"),
  15283. name: "Front (Costume)",
  15284. image: {
  15285. source: "./media/characters/geno-maxwell/front-costume.svg",
  15286. extra: 984/856,
  15287. bottom: 87/1071
  15288. }
  15289. },
  15290. backcostume: {
  15291. height: math.unit(7 + 4/12, "feet"),
  15292. weight: math.unit(690, "lb"),
  15293. name: "Back (Costume)",
  15294. image: {
  15295. source: "./media/characters/geno-maxwell/back-costume.svg",
  15296. extra: 981/854,
  15297. bottom: 57/1038
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Micro",
  15304. height: math.unit(3, "inches")
  15305. },
  15306. {
  15307. name: "Normal",
  15308. height: math.unit(7 + 4 / 12, "feet"),
  15309. default: true
  15310. },
  15311. {
  15312. name: "Macro",
  15313. height: math.unit(220, "feet")
  15314. },
  15315. {
  15316. name: "Megamacro",
  15317. height: math.unit(11, "miles")
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15323. {
  15324. front: {
  15325. height: math.unit(7 + 4/12, "feet"),
  15326. weight: math.unit(750, "lb"),
  15327. name: "Front",
  15328. image: {
  15329. source: "./media/characters/regena-maxwell/front.svg",
  15330. extra: 984/856,
  15331. bottom: 87/1071
  15332. }
  15333. },
  15334. back: {
  15335. height: math.unit(7 + 4/12, "feet"),
  15336. weight: math.unit(750, "lb"),
  15337. name: "Back",
  15338. image: {
  15339. source: "./media/characters/regena-maxwell/back.svg",
  15340. extra: 981/854,
  15341. bottom: 57/1038
  15342. }
  15343. },
  15344. frontCostume: {
  15345. height: math.unit(7 + 4/12, "feet"),
  15346. weight: math.unit(750, "lb"),
  15347. name: "Front (Costume)",
  15348. image: {
  15349. source: "./media/characters/regena-maxwell/front-costume.svg",
  15350. extra: 984/856,
  15351. bottom: 87/1071
  15352. }
  15353. },
  15354. backcostume: {
  15355. height: math.unit(7 + 4/12, "feet"),
  15356. weight: math.unit(750, "lb"),
  15357. name: "Back (Costume)",
  15358. image: {
  15359. source: "./media/characters/regena-maxwell/back-costume.svg",
  15360. extra: 981/854,
  15361. bottom: 57/1038
  15362. }
  15363. },
  15364. },
  15365. [
  15366. {
  15367. name: "Normal",
  15368. height: math.unit(7 + 4 / 12, "feet"),
  15369. default: true
  15370. },
  15371. {
  15372. name: "Macro",
  15373. height: math.unit(220, "feet")
  15374. },
  15375. {
  15376. name: "Megamacro",
  15377. height: math.unit(11, "miles")
  15378. },
  15379. ]
  15380. ))
  15381. characterMakers.push(() => makeCharacter(
  15382. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15383. {
  15384. front: {
  15385. height: math.unit(6, "feet"),
  15386. weight: math.unit(150, "lb"),
  15387. name: "Front",
  15388. image: {
  15389. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15390. extra: 860 / 690,
  15391. bottom: 0.03
  15392. }
  15393. },
  15394. },
  15395. [
  15396. {
  15397. name: "Normal",
  15398. height: math.unit(1.7, "meters"),
  15399. default: true
  15400. },
  15401. ]
  15402. ))
  15403. characterMakers.push(() => makeCharacter(
  15404. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15405. {
  15406. front: {
  15407. height: math.unit(6, "feet"),
  15408. weight: math.unit(150, "lb"),
  15409. name: "Front",
  15410. image: {
  15411. source: "./media/characters/quilly/front.svg",
  15412. extra: 890 / 776
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Gigamacro",
  15419. height: math.unit(404090, "miles"),
  15420. default: true
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15426. {
  15427. front: {
  15428. height: math.unit(7 + 8 / 12, "feet"),
  15429. weight: math.unit(350, "lb"),
  15430. name: "Front",
  15431. image: {
  15432. source: "./media/characters/tempest/front.svg",
  15433. extra: 1175 / 1086,
  15434. bottom: 0.02
  15435. }
  15436. },
  15437. },
  15438. [
  15439. {
  15440. name: "Normal",
  15441. height: math.unit(7 + 8 / 12, "feet"),
  15442. default: true
  15443. },
  15444. ]
  15445. ))
  15446. characterMakers.push(() => makeCharacter(
  15447. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15448. {
  15449. side: {
  15450. height: math.unit(4 + 5 / 12, "feet"),
  15451. weight: math.unit(80, "lb"),
  15452. name: "Side",
  15453. image: {
  15454. source: "./media/characters/rodger/side.svg",
  15455. extra: 1235 / 1118
  15456. }
  15457. },
  15458. },
  15459. [
  15460. {
  15461. name: "Micro",
  15462. height: math.unit(1, "inch")
  15463. },
  15464. {
  15465. name: "Normal",
  15466. height: math.unit(4 + 5 / 12, "feet"),
  15467. default: true
  15468. },
  15469. {
  15470. name: "Macro",
  15471. height: math.unit(120, "feet")
  15472. },
  15473. ]
  15474. ))
  15475. characterMakers.push(() => makeCharacter(
  15476. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15477. {
  15478. front: {
  15479. height: math.unit(6, "feet"),
  15480. weight: math.unit(150, "lb"),
  15481. name: "Front",
  15482. image: {
  15483. source: "./media/characters/danyel/front.svg",
  15484. extra: 1185 / 1123,
  15485. bottom: 0.05
  15486. }
  15487. },
  15488. },
  15489. [
  15490. {
  15491. name: "Shrunken",
  15492. height: math.unit(0.5, "mm")
  15493. },
  15494. {
  15495. name: "Micro",
  15496. height: math.unit(1, "mm"),
  15497. default: true
  15498. },
  15499. {
  15500. name: "Upsized",
  15501. height: math.unit(5 + 5 / 12, "feet")
  15502. },
  15503. ]
  15504. ))
  15505. characterMakers.push(() => makeCharacter(
  15506. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15507. {
  15508. front: {
  15509. height: math.unit(5 + 6 / 12, "feet"),
  15510. weight: math.unit(200, "lb"),
  15511. name: "Front",
  15512. image: {
  15513. source: "./media/characters/vivian-bijoux/front.svg",
  15514. extra: 1217/1209,
  15515. bottom: 76/1293
  15516. }
  15517. },
  15518. back: {
  15519. height: math.unit(5 + 6 / 12, "feet"),
  15520. weight: math.unit(200, "lb"),
  15521. name: "Back",
  15522. image: {
  15523. source: "./media/characters/vivian-bijoux/back.svg",
  15524. extra: 1214/1208,
  15525. bottom: 51/1265
  15526. }
  15527. },
  15528. dressed: {
  15529. height: math.unit(5 + 6 / 12, "feet"),
  15530. weight: math.unit(200, "lb"),
  15531. name: "Dressed",
  15532. image: {
  15533. source: "./media/characters/vivian-bijoux/dressed.svg",
  15534. extra: 1217/1209,
  15535. bottom: 76/1293
  15536. }
  15537. },
  15538. },
  15539. [
  15540. {
  15541. name: "Normal",
  15542. height: math.unit(5 + 6 / 12, "feet"),
  15543. default: true
  15544. },
  15545. {
  15546. name: "Bad Dream",
  15547. height: math.unit(500, "feet")
  15548. },
  15549. {
  15550. name: "Nightmare",
  15551. height: math.unit(500, "miles")
  15552. },
  15553. ]
  15554. ))
  15555. characterMakers.push(() => makeCharacter(
  15556. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15557. {
  15558. front: {
  15559. height: math.unit(6 + 1 / 12, "feet"),
  15560. weight: math.unit(260, "lb"),
  15561. name: "Front",
  15562. image: {
  15563. source: "./media/characters/zeta/front.svg",
  15564. extra: 1968 / 1889,
  15565. bottom: 0.06
  15566. }
  15567. },
  15568. back: {
  15569. height: math.unit(6 + 1 / 12, "feet"),
  15570. weight: math.unit(260, "lb"),
  15571. name: "Back",
  15572. image: {
  15573. source: "./media/characters/zeta/back.svg",
  15574. extra: 1944 / 1858,
  15575. bottom: 0.03
  15576. }
  15577. },
  15578. hand: {
  15579. height: math.unit(1.112, "feet"),
  15580. name: "Hand",
  15581. image: {
  15582. source: "./media/characters/zeta/hand.svg"
  15583. }
  15584. },
  15585. foot: {
  15586. height: math.unit(1.48, "feet"),
  15587. name: "Foot",
  15588. image: {
  15589. source: "./media/characters/zeta/foot.svg"
  15590. }
  15591. },
  15592. },
  15593. [
  15594. {
  15595. name: "Micro",
  15596. height: math.unit(6, "inches")
  15597. },
  15598. {
  15599. name: "Normal",
  15600. height: math.unit(6 + 1 / 12, "feet"),
  15601. default: true
  15602. },
  15603. {
  15604. name: "Macro",
  15605. height: math.unit(20, "feet")
  15606. },
  15607. ]
  15608. ))
  15609. characterMakers.push(() => makeCharacter(
  15610. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15611. {
  15612. front: {
  15613. height: math.unit(6, "feet"),
  15614. weight: math.unit(150, "lb"),
  15615. name: "Front",
  15616. image: {
  15617. source: "./media/characters/jamie-larsen/front.svg",
  15618. extra: 962 / 933,
  15619. bottom: 0.02
  15620. }
  15621. },
  15622. back: {
  15623. height: math.unit(6, "feet"),
  15624. weight: math.unit(150, "lb"),
  15625. name: "Back",
  15626. image: {
  15627. source: "./media/characters/jamie-larsen/back.svg",
  15628. extra: 997 / 946
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Macro",
  15635. height: math.unit(28 + 7 / 12, "feet"),
  15636. default: true
  15637. },
  15638. {
  15639. name: "Macro+",
  15640. height: math.unit(180, "feet")
  15641. },
  15642. {
  15643. name: "Megamacro",
  15644. height: math.unit(10, "miles")
  15645. },
  15646. {
  15647. name: "Gigamacro",
  15648. height: math.unit(200000, "miles")
  15649. },
  15650. ]
  15651. ))
  15652. characterMakers.push(() => makeCharacter(
  15653. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15654. {
  15655. front: {
  15656. height: math.unit(6, "feet"),
  15657. weight: math.unit(120, "lb"),
  15658. name: "Front",
  15659. image: {
  15660. source: "./media/characters/vance/front.svg",
  15661. extra: 1980 / 1890,
  15662. bottom: 0.09
  15663. }
  15664. },
  15665. back: {
  15666. height: math.unit(6, "feet"),
  15667. weight: math.unit(120, "lb"),
  15668. name: "Back",
  15669. image: {
  15670. source: "./media/characters/vance/back.svg",
  15671. extra: 2081 / 1994,
  15672. bottom: 0.014
  15673. }
  15674. },
  15675. hand: {
  15676. height: math.unit(0.88, "feet"),
  15677. name: "Hand",
  15678. image: {
  15679. source: "./media/characters/vance/hand.svg"
  15680. }
  15681. },
  15682. foot: {
  15683. height: math.unit(0.64, "feet"),
  15684. name: "Foot",
  15685. image: {
  15686. source: "./media/characters/vance/foot.svg"
  15687. }
  15688. },
  15689. },
  15690. [
  15691. {
  15692. name: "Small",
  15693. height: math.unit(90, "feet"),
  15694. default: true
  15695. },
  15696. {
  15697. name: "Macro",
  15698. height: math.unit(100, "meters")
  15699. },
  15700. {
  15701. name: "Megamacro",
  15702. height: math.unit(15, "miles")
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15708. {
  15709. front: {
  15710. height: math.unit(6, "feet"),
  15711. weight: math.unit(180, "lb"),
  15712. name: "Front",
  15713. image: {
  15714. source: "./media/characters/xochitl/front.svg",
  15715. extra: 2297 / 2261,
  15716. bottom: 0.065
  15717. }
  15718. },
  15719. back: {
  15720. height: math.unit(6, "feet"),
  15721. weight: math.unit(180, "lb"),
  15722. name: "Back",
  15723. image: {
  15724. source: "./media/characters/xochitl/back.svg",
  15725. extra: 2386 / 2354,
  15726. bottom: 0.01
  15727. }
  15728. },
  15729. foot: {
  15730. height: math.unit(6 / 5 * 1.15, "feet"),
  15731. weight: math.unit(150, "lb"),
  15732. name: "Foot",
  15733. image: {
  15734. source: "./media/characters/xochitl/foot.svg"
  15735. }
  15736. },
  15737. },
  15738. [
  15739. {
  15740. name: "Macro",
  15741. height: math.unit(80, "feet")
  15742. },
  15743. {
  15744. name: "Macro+",
  15745. height: math.unit(400, "feet"),
  15746. default: true
  15747. },
  15748. {
  15749. name: "Gigamacro",
  15750. height: math.unit(80000, "miles")
  15751. },
  15752. {
  15753. name: "Gigamacro+",
  15754. height: math.unit(400000, "miles")
  15755. },
  15756. {
  15757. name: "Teramacro",
  15758. height: math.unit(300, "AU")
  15759. },
  15760. ]
  15761. ))
  15762. characterMakers.push(() => makeCharacter(
  15763. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15764. {
  15765. front: {
  15766. height: math.unit(6, "feet"),
  15767. weight: math.unit(150, "lb"),
  15768. name: "Front",
  15769. image: {
  15770. source: "./media/characters/vincent/front.svg",
  15771. extra: 1130 / 1080,
  15772. bottom: 0.055
  15773. }
  15774. },
  15775. beak: {
  15776. height: math.unit(6 * 0.1, "feet"),
  15777. name: "Beak",
  15778. image: {
  15779. source: "./media/characters/vincent/beak.svg"
  15780. }
  15781. },
  15782. hand: {
  15783. height: math.unit(6 * 0.85, "feet"),
  15784. weight: math.unit(150, "lb"),
  15785. name: "Hand",
  15786. image: {
  15787. source: "./media/characters/vincent/hand.svg"
  15788. }
  15789. },
  15790. foot: {
  15791. height: math.unit(6 * 0.19, "feet"),
  15792. weight: math.unit(150, "lb"),
  15793. name: "Foot",
  15794. image: {
  15795. source: "./media/characters/vincent/foot.svg"
  15796. }
  15797. },
  15798. },
  15799. [
  15800. {
  15801. name: "Base",
  15802. height: math.unit(6 + 5 / 12, "feet"),
  15803. default: true
  15804. },
  15805. {
  15806. name: "Macro",
  15807. height: math.unit(300, "feet")
  15808. },
  15809. {
  15810. name: "Megamacro",
  15811. height: math.unit(2, "miles")
  15812. },
  15813. {
  15814. name: "Gigamacro",
  15815. height: math.unit(1000, "miles")
  15816. },
  15817. ]
  15818. ))
  15819. characterMakers.push(() => makeCharacter(
  15820. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15821. {
  15822. front: {
  15823. height: math.unit(2, "meters"),
  15824. weight: math.unit(500, "kg"),
  15825. name: "Front",
  15826. image: {
  15827. source: "./media/characters/coatl/front.svg",
  15828. extra: 3948 / 3500,
  15829. bottom: 0.082
  15830. }
  15831. },
  15832. },
  15833. [
  15834. {
  15835. name: "Normal",
  15836. height: math.unit(4, "meters")
  15837. },
  15838. {
  15839. name: "Macro",
  15840. height: math.unit(100, "meters"),
  15841. default: true
  15842. },
  15843. {
  15844. name: "Macro+",
  15845. height: math.unit(300, "meters")
  15846. },
  15847. {
  15848. name: "Megamacro",
  15849. height: math.unit(3, "gigameters")
  15850. },
  15851. {
  15852. name: "Megamacro+",
  15853. height: math.unit(300, "terameters")
  15854. },
  15855. {
  15856. name: "Megamacro++",
  15857. height: math.unit(3, "lightyears")
  15858. },
  15859. ]
  15860. ))
  15861. characterMakers.push(() => makeCharacter(
  15862. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15863. {
  15864. front: {
  15865. height: math.unit(6, "feet"),
  15866. weight: math.unit(50, "kg"),
  15867. name: "front",
  15868. image: {
  15869. source: "./media/characters/shiroryu/front.svg",
  15870. extra: 1990 / 1935
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Mortal Mingling",
  15877. height: math.unit(3, "meters")
  15878. },
  15879. {
  15880. name: "Kaiju-ish",
  15881. height: math.unit(250, "meters")
  15882. },
  15883. {
  15884. name: "Somewhat Godly",
  15885. height: math.unit(400, "km"),
  15886. default: true
  15887. },
  15888. {
  15889. name: "Planetary",
  15890. height: math.unit(300, "megameters")
  15891. },
  15892. {
  15893. name: "Galaxy-dwarfing",
  15894. height: math.unit(450, "kiloparsecs")
  15895. },
  15896. {
  15897. name: "Universe Eater",
  15898. height: math.unit(150, "gigaparsecs")
  15899. },
  15900. {
  15901. name: "Almost Immeasurable",
  15902. height: math.unit(1.3e266, "yottaparsecs")
  15903. },
  15904. ]
  15905. ))
  15906. characterMakers.push(() => makeCharacter(
  15907. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15908. {
  15909. front: {
  15910. height: math.unit(6, "feet"),
  15911. weight: math.unit(150, "lb"),
  15912. name: "Front",
  15913. image: {
  15914. source: "./media/characters/umeko/front.svg",
  15915. extra: 1,
  15916. bottom: 0.019
  15917. }
  15918. },
  15919. frontArmored: {
  15920. height: math.unit(6, "feet"),
  15921. weight: math.unit(150, "lb"),
  15922. name: "Front (Armored)",
  15923. image: {
  15924. source: "./media/characters/umeko/front-armored.svg",
  15925. extra: 1,
  15926. bottom: 0.021
  15927. }
  15928. },
  15929. },
  15930. [
  15931. {
  15932. name: "Macro",
  15933. height: math.unit(220, "feet"),
  15934. default: true
  15935. },
  15936. {
  15937. name: "Guardian Dragon",
  15938. height: math.unit(50, "miles")
  15939. },
  15940. {
  15941. name: "Cosmic",
  15942. height: math.unit(800000, "miles")
  15943. },
  15944. ]
  15945. ))
  15946. characterMakers.push(() => makeCharacter(
  15947. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15948. {
  15949. front: {
  15950. height: math.unit(6, "feet"),
  15951. weight: math.unit(150, "lb"),
  15952. name: "Front",
  15953. image: {
  15954. source: "./media/characters/cassidy/front.svg",
  15955. extra: 810/808,
  15956. bottom: 41/851
  15957. }
  15958. },
  15959. },
  15960. [
  15961. {
  15962. name: "Canon Height",
  15963. height: math.unit(120, "feet"),
  15964. default: true
  15965. },
  15966. {
  15967. name: "Macro+",
  15968. height: math.unit(400, "feet")
  15969. },
  15970. {
  15971. name: "Macro++",
  15972. height: math.unit(4000, "feet")
  15973. },
  15974. {
  15975. name: "Megamacro",
  15976. height: math.unit(3, "miles")
  15977. },
  15978. ]
  15979. ))
  15980. characterMakers.push(() => makeCharacter(
  15981. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15982. {
  15983. front: {
  15984. height: math.unit(6, "feet"),
  15985. weight: math.unit(150, "lb"),
  15986. name: "Front",
  15987. image: {
  15988. source: "./media/characters/isaac/front.svg",
  15989. extra: 896 / 815,
  15990. bottom: 0.11
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "Human Size",
  15997. height: math.unit(8, "feet"),
  15998. default: true
  15999. },
  16000. {
  16001. name: "Macro",
  16002. height: math.unit(400, "feet")
  16003. },
  16004. {
  16005. name: "Megamacro",
  16006. height: math.unit(50, "miles")
  16007. },
  16008. {
  16009. name: "Canon Height",
  16010. height: math.unit(200, "AU")
  16011. },
  16012. ]
  16013. ))
  16014. characterMakers.push(() => makeCharacter(
  16015. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16016. {
  16017. front: {
  16018. height: math.unit(6, "feet"),
  16019. weight: math.unit(72, "kg"),
  16020. name: "Front",
  16021. image: {
  16022. source: "./media/characters/sleekit/front.svg",
  16023. extra: 4693 / 4487,
  16024. bottom: 0.012
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Minimum Height",
  16031. height: math.unit(10, "meters")
  16032. },
  16033. {
  16034. name: "Smaller",
  16035. height: math.unit(25, "meters")
  16036. },
  16037. {
  16038. name: "Larger",
  16039. height: math.unit(38, "meters"),
  16040. default: true
  16041. },
  16042. {
  16043. name: "Maximum height",
  16044. height: math.unit(100, "meters")
  16045. },
  16046. ]
  16047. ))
  16048. characterMakers.push(() => makeCharacter(
  16049. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16050. {
  16051. front: {
  16052. height: math.unit(6, "feet"),
  16053. weight: math.unit(150, "lb"),
  16054. name: "Front",
  16055. image: {
  16056. source: "./media/characters/nillia/front.svg",
  16057. extra: 719/665,
  16058. bottom: 6/725
  16059. }
  16060. },
  16061. back: {
  16062. height: math.unit(6, "feet"),
  16063. weight: math.unit(150, "lb"),
  16064. name: "Back",
  16065. image: {
  16066. source: "./media/characters/nillia/back.svg",
  16067. extra: 705/651,
  16068. bottom: 5/710
  16069. }
  16070. },
  16071. },
  16072. [
  16073. {
  16074. name: "Canon Height",
  16075. height: math.unit(489, "feet"),
  16076. default: true
  16077. }
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16082. {
  16083. front: {
  16084. height: math.unit(6, "feet"),
  16085. weight: math.unit(150, "lb"),
  16086. name: "Front",
  16087. image: {
  16088. source: "./media/characters/mesmyriza/front.svg",
  16089. extra: 1541/1291,
  16090. bottom: 87/1628
  16091. }
  16092. },
  16093. foot: {
  16094. height: math.unit(6 / (250 / 35), "feet"),
  16095. name: "Foot",
  16096. image: {
  16097. source: "./media/characters/mesmyriza/foot.svg"
  16098. }
  16099. },
  16100. },
  16101. [
  16102. {
  16103. name: "Macro",
  16104. height: math.unit(457, "meters"),
  16105. default: true
  16106. },
  16107. {
  16108. name: "Megamacro",
  16109. height: math.unit(8, "megameters")
  16110. },
  16111. ]
  16112. ))
  16113. characterMakers.push(() => makeCharacter(
  16114. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16115. {
  16116. front: {
  16117. height: math.unit(6, "feet"),
  16118. weight: math.unit(250, "lb"),
  16119. name: "Front",
  16120. image: {
  16121. source: "./media/characters/saudade/front.svg",
  16122. extra: 1172 / 1139,
  16123. bottom: 0.035
  16124. }
  16125. },
  16126. },
  16127. [
  16128. {
  16129. name: "Micro",
  16130. height: math.unit(3, "inches")
  16131. },
  16132. {
  16133. name: "Normal",
  16134. height: math.unit(6, "feet"),
  16135. default: true
  16136. },
  16137. {
  16138. name: "Macro",
  16139. height: math.unit(50, "feet")
  16140. },
  16141. {
  16142. name: "Megamacro",
  16143. height: math.unit(2800, "feet")
  16144. },
  16145. ]
  16146. ))
  16147. characterMakers.push(() => makeCharacter(
  16148. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16149. {
  16150. front: {
  16151. height: math.unit(5 + 4 / 12, "feet"),
  16152. weight: math.unit(100, "lb"),
  16153. name: "Front",
  16154. image: {
  16155. source: "./media/characters/keireer/front.svg",
  16156. extra: 716 / 666,
  16157. bottom: 0.05
  16158. }
  16159. },
  16160. },
  16161. [
  16162. {
  16163. name: "Normal",
  16164. height: math.unit(5 + 4 / 12, "feet"),
  16165. default: true
  16166. },
  16167. ]
  16168. ))
  16169. characterMakers.push(() => makeCharacter(
  16170. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16171. {
  16172. front: {
  16173. height: math.unit(5.5, "feet"),
  16174. weight: math.unit(90, "kg"),
  16175. name: "Front",
  16176. image: {
  16177. source: "./media/characters/mirja/front.svg",
  16178. extra: 1452/1262,
  16179. bottom: 67/1519
  16180. }
  16181. },
  16182. frontDressed: {
  16183. height: math.unit(5.5, "feet"),
  16184. weight: math.unit(90, "lb"),
  16185. name: "Front (Dressed)",
  16186. image: {
  16187. source: "./media/characters/mirja/dressed.svg",
  16188. extra: 1452/1262,
  16189. bottom: 67/1519
  16190. }
  16191. },
  16192. back: {
  16193. height: math.unit(6, "feet"),
  16194. weight: math.unit(90, "lb"),
  16195. name: "Back",
  16196. image: {
  16197. source: "./media/characters/mirja/back.svg",
  16198. extra: 1892/1795,
  16199. bottom: 48/1940
  16200. }
  16201. },
  16202. maw: {
  16203. height: math.unit(1.312, "feet"),
  16204. name: "Maw",
  16205. image: {
  16206. source: "./media/characters/mirja/maw.svg"
  16207. }
  16208. },
  16209. paw: {
  16210. height: math.unit(1.15, "feet"),
  16211. name: "Paw",
  16212. image: {
  16213. source: "./media/characters/mirja/paw.svg"
  16214. }
  16215. },
  16216. },
  16217. [
  16218. {
  16219. name: "\"Incognito\"",
  16220. height: math.unit(3, "meters")
  16221. },
  16222. {
  16223. name: "Strolling Size",
  16224. height: math.unit(15, "km")
  16225. },
  16226. {
  16227. name: "Larger Strolling Size",
  16228. height: math.unit(400, "km")
  16229. },
  16230. {
  16231. name: "Preferred Size",
  16232. height: math.unit(5000, "km"),
  16233. default: true
  16234. },
  16235. {
  16236. name: "True Size",
  16237. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16238. },
  16239. ]
  16240. ))
  16241. characterMakers.push(() => makeCharacter(
  16242. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16243. {
  16244. front: {
  16245. height: math.unit(15, "feet"),
  16246. weight: math.unit(880, "kg"),
  16247. name: "Front",
  16248. image: {
  16249. source: "./media/characters/nightraver/front.svg",
  16250. extra: 2444 / 2160,
  16251. bottom: 0.027
  16252. }
  16253. },
  16254. back: {
  16255. height: math.unit(15, "feet"),
  16256. weight: math.unit(880, "kg"),
  16257. name: "Back",
  16258. image: {
  16259. source: "./media/characters/nightraver/back.svg",
  16260. extra: 2309 / 2180,
  16261. bottom: 0.005
  16262. }
  16263. },
  16264. sole: {
  16265. height: math.unit(2.878, "feet"),
  16266. name: "Sole",
  16267. image: {
  16268. source: "./media/characters/nightraver/sole.svg"
  16269. }
  16270. },
  16271. foot: {
  16272. height: math.unit(2.285, "feet"),
  16273. name: "Foot",
  16274. image: {
  16275. source: "./media/characters/nightraver/foot.svg"
  16276. }
  16277. },
  16278. maw: {
  16279. height: math.unit(2.67, "feet"),
  16280. name: "Maw",
  16281. image: {
  16282. source: "./media/characters/nightraver/maw.svg"
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Micro",
  16289. height: math.unit(1, "cm")
  16290. },
  16291. {
  16292. name: "Normal",
  16293. height: math.unit(15, "feet"),
  16294. default: true
  16295. },
  16296. {
  16297. name: "Macro",
  16298. height: math.unit(300, "feet")
  16299. },
  16300. {
  16301. name: "Megamacro",
  16302. height: math.unit(300, "miles")
  16303. },
  16304. {
  16305. name: "Gigamacro",
  16306. height: math.unit(10000, "miles")
  16307. },
  16308. ]
  16309. ))
  16310. characterMakers.push(() => makeCharacter(
  16311. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16312. {
  16313. side: {
  16314. height: math.unit(2, "inches"),
  16315. weight: math.unit(5, "grams"),
  16316. name: "Side",
  16317. image: {
  16318. source: "./media/characters/arc/side.svg"
  16319. }
  16320. },
  16321. },
  16322. [
  16323. {
  16324. name: "Micro",
  16325. height: math.unit(2, "inches"),
  16326. default: true
  16327. },
  16328. ]
  16329. ))
  16330. characterMakers.push(() => makeCharacter(
  16331. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16332. {
  16333. front: {
  16334. height: math.unit(1.1938, "meters"),
  16335. weight: math.unit(54, "kg"),
  16336. name: "Front",
  16337. image: {
  16338. source: "./media/characters/nebula-shahar/front.svg",
  16339. extra: 1642 / 1436,
  16340. bottom: 0.06
  16341. }
  16342. },
  16343. },
  16344. [
  16345. {
  16346. name: "Megamicro",
  16347. height: math.unit(0.3, "mm")
  16348. },
  16349. {
  16350. name: "Micro",
  16351. height: math.unit(3, "cm")
  16352. },
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(138, "cm"),
  16356. default: true
  16357. },
  16358. {
  16359. name: "Macro",
  16360. height: math.unit(30, "m")
  16361. },
  16362. ]
  16363. ))
  16364. characterMakers.push(() => makeCharacter(
  16365. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16366. {
  16367. front: {
  16368. height: math.unit(5.24, "feet"),
  16369. weight: math.unit(150, "lb"),
  16370. name: "Front",
  16371. image: {
  16372. source: "./media/characters/shayla/front.svg",
  16373. extra: 1512 / 1414,
  16374. bottom: 0.01
  16375. }
  16376. },
  16377. back: {
  16378. height: math.unit(5.24, "feet"),
  16379. weight: math.unit(150, "lb"),
  16380. name: "Back",
  16381. image: {
  16382. source: "./media/characters/shayla/back.svg",
  16383. extra: 1512 / 1414
  16384. }
  16385. },
  16386. hand: {
  16387. height: math.unit(0.7781496062992126, "feet"),
  16388. name: "Hand",
  16389. image: {
  16390. source: "./media/characters/shayla/hand.svg"
  16391. }
  16392. },
  16393. foot: {
  16394. height: math.unit(1.4206036745406823, "feet"),
  16395. name: "Foot",
  16396. image: {
  16397. source: "./media/characters/shayla/foot.svg"
  16398. }
  16399. },
  16400. },
  16401. [
  16402. {
  16403. name: "Micro",
  16404. height: math.unit(0.32, "feet")
  16405. },
  16406. {
  16407. name: "Normal",
  16408. height: math.unit(5.24, "feet"),
  16409. default: true
  16410. },
  16411. {
  16412. name: "Macro",
  16413. height: math.unit(492.12, "feet")
  16414. },
  16415. {
  16416. name: "Megamacro",
  16417. height: math.unit(186.41, "miles")
  16418. },
  16419. ]
  16420. ))
  16421. characterMakers.push(() => makeCharacter(
  16422. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16423. {
  16424. front: {
  16425. height: math.unit(2.2, "m"),
  16426. weight: math.unit(120, "kg"),
  16427. name: "Front",
  16428. image: {
  16429. source: "./media/characters/pia-jr/front.svg",
  16430. extra: 1000 / 970,
  16431. bottom: 0.035
  16432. }
  16433. },
  16434. hand: {
  16435. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16436. name: "Hand",
  16437. image: {
  16438. source: "./media/characters/pia-jr/hand.svg"
  16439. }
  16440. },
  16441. paw: {
  16442. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16443. name: "Paw",
  16444. image: {
  16445. source: "./media/characters/pia-jr/paw.svg"
  16446. }
  16447. },
  16448. },
  16449. [
  16450. {
  16451. name: "Micro",
  16452. height: math.unit(1.2, "cm")
  16453. },
  16454. {
  16455. name: "Normal",
  16456. height: math.unit(2.2, "m"),
  16457. default: true
  16458. },
  16459. {
  16460. name: "Macro",
  16461. height: math.unit(180, "m")
  16462. },
  16463. {
  16464. name: "Megamacro",
  16465. height: math.unit(420, "km")
  16466. },
  16467. ]
  16468. ))
  16469. characterMakers.push(() => makeCharacter(
  16470. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16471. {
  16472. front: {
  16473. height: math.unit(2, "m"),
  16474. weight: math.unit(115, "kg"),
  16475. name: "Front",
  16476. image: {
  16477. source: "./media/characters/pia-sr/front.svg",
  16478. extra: 760 / 730,
  16479. bottom: 0.015
  16480. }
  16481. },
  16482. back: {
  16483. height: math.unit(2, "m"),
  16484. weight: math.unit(115, "kg"),
  16485. name: "Back",
  16486. image: {
  16487. source: "./media/characters/pia-sr/back.svg",
  16488. extra: 760 / 730,
  16489. bottom: 0.01
  16490. }
  16491. },
  16492. hand: {
  16493. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16494. name: "Hand",
  16495. image: {
  16496. source: "./media/characters/pia-sr/hand.svg"
  16497. }
  16498. },
  16499. foot: {
  16500. height: math.unit(1.83, "feet"),
  16501. name: "Foot",
  16502. image: {
  16503. source: "./media/characters/pia-sr/foot.svg"
  16504. }
  16505. },
  16506. },
  16507. [
  16508. {
  16509. name: "Micro",
  16510. height: math.unit(88, "mm")
  16511. },
  16512. {
  16513. name: "Normal",
  16514. height: math.unit(2, "m"),
  16515. default: true
  16516. },
  16517. {
  16518. name: "Macro",
  16519. height: math.unit(200, "m")
  16520. },
  16521. {
  16522. name: "Megamacro",
  16523. height: math.unit(420, "km")
  16524. },
  16525. ]
  16526. ))
  16527. characterMakers.push(() => makeCharacter(
  16528. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16529. {
  16530. front: {
  16531. height: math.unit(8 + 2 / 12, "feet"),
  16532. weight: math.unit(300, "lb"),
  16533. name: "Front",
  16534. image: {
  16535. source: "./media/characters/kibibyte/front.svg",
  16536. extra: 2221 / 2098,
  16537. bottom: 0.04
  16538. }
  16539. },
  16540. },
  16541. [
  16542. {
  16543. name: "Normal",
  16544. height: math.unit(8 + 2 / 12, "feet"),
  16545. default: true
  16546. },
  16547. {
  16548. name: "Socialable Macro",
  16549. height: math.unit(50, "feet")
  16550. },
  16551. {
  16552. name: "Macro",
  16553. height: math.unit(300, "feet")
  16554. },
  16555. {
  16556. name: "Megamacro",
  16557. height: math.unit(500, "miles")
  16558. },
  16559. ]
  16560. ))
  16561. characterMakers.push(() => makeCharacter(
  16562. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16563. {
  16564. front: {
  16565. height: math.unit(6, "feet"),
  16566. weight: math.unit(150, "lb"),
  16567. name: "Front",
  16568. image: {
  16569. source: "./media/characters/felix/front.svg",
  16570. extra: 762 / 722,
  16571. bottom: 0.02
  16572. }
  16573. },
  16574. frontClothed: {
  16575. height: math.unit(6, "feet"),
  16576. weight: math.unit(150, "lb"),
  16577. name: "Front (Clothed)",
  16578. image: {
  16579. source: "./media/characters/felix/front-clothed.svg",
  16580. extra: 762 / 722,
  16581. bottom: 0.02
  16582. }
  16583. },
  16584. },
  16585. [
  16586. {
  16587. name: "Normal",
  16588. height: math.unit(6 + 8 / 12, "feet"),
  16589. default: true
  16590. },
  16591. {
  16592. name: "Macro",
  16593. height: math.unit(2600, "feet")
  16594. },
  16595. {
  16596. name: "Megamacro",
  16597. height: math.unit(450, "miles")
  16598. },
  16599. ]
  16600. ))
  16601. characterMakers.push(() => makeCharacter(
  16602. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16603. {
  16604. front: {
  16605. height: math.unit(6 + 1 / 12, "feet"),
  16606. weight: math.unit(250, "lb"),
  16607. name: "Front",
  16608. image: {
  16609. source: "./media/characters/tobo/front.svg",
  16610. extra: 608 / 586,
  16611. bottom: 0.023
  16612. }
  16613. },
  16614. back: {
  16615. height: math.unit(6 + 1 / 12, "feet"),
  16616. weight: math.unit(250, "lb"),
  16617. name: "Back",
  16618. image: {
  16619. source: "./media/characters/tobo/back.svg",
  16620. extra: 608 / 586
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Nano",
  16627. height: math.unit(2, "nm")
  16628. },
  16629. {
  16630. name: "Megamicro",
  16631. height: math.unit(0.1, "mm")
  16632. },
  16633. {
  16634. name: "Micro",
  16635. height: math.unit(1, "inch"),
  16636. default: true
  16637. },
  16638. {
  16639. name: "Human-sized",
  16640. height: math.unit(6 + 1 / 12, "feet")
  16641. },
  16642. {
  16643. name: "Macro",
  16644. height: math.unit(250, "feet")
  16645. },
  16646. {
  16647. name: "Megamacro",
  16648. height: math.unit(75, "miles")
  16649. },
  16650. {
  16651. name: "Texas-sized",
  16652. height: math.unit(750, "miles")
  16653. },
  16654. {
  16655. name: "Teramacro",
  16656. height: math.unit(50000, "miles")
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16662. {
  16663. front: {
  16664. height: math.unit(6, "feet"),
  16665. weight: math.unit(269, "lb"),
  16666. name: "Front",
  16667. image: {
  16668. source: "./media/characters/danny-kapowsky/front.svg",
  16669. extra: 766 / 736,
  16670. bottom: 0.044
  16671. }
  16672. },
  16673. back: {
  16674. height: math.unit(6, "feet"),
  16675. weight: math.unit(269, "lb"),
  16676. name: "Back",
  16677. image: {
  16678. source: "./media/characters/danny-kapowsky/back.svg",
  16679. extra: 797 / 760,
  16680. bottom: 0.025
  16681. }
  16682. },
  16683. },
  16684. [
  16685. {
  16686. name: "Macro",
  16687. height: math.unit(150, "feet"),
  16688. default: true
  16689. },
  16690. {
  16691. name: "Macro+",
  16692. height: math.unit(200, "feet")
  16693. },
  16694. {
  16695. name: "Macro++",
  16696. height: math.unit(300, "feet")
  16697. },
  16698. {
  16699. name: "Macro+++",
  16700. height: math.unit(400, "feet")
  16701. },
  16702. ]
  16703. ))
  16704. characterMakers.push(() => makeCharacter(
  16705. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16706. {
  16707. side: {
  16708. height: math.unit(6, "feet"),
  16709. weight: math.unit(170, "lb"),
  16710. name: "Side",
  16711. image: {
  16712. source: "./media/characters/finn/side.svg",
  16713. extra: 1953 / 1807,
  16714. bottom: 0.057
  16715. }
  16716. },
  16717. },
  16718. [
  16719. {
  16720. name: "Megamacro",
  16721. height: math.unit(14445, "feet"),
  16722. default: true
  16723. },
  16724. ]
  16725. ))
  16726. characterMakers.push(() => makeCharacter(
  16727. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16728. {
  16729. front: {
  16730. height: math.unit(5 + 6 / 12, "feet"),
  16731. weight: math.unit(125, "lb"),
  16732. name: "Front",
  16733. image: {
  16734. source: "./media/characters/roy/front.svg",
  16735. extra: 1,
  16736. bottom: 0.11
  16737. }
  16738. },
  16739. },
  16740. [
  16741. {
  16742. name: "Micro",
  16743. height: math.unit(3, "inches"),
  16744. default: true
  16745. },
  16746. {
  16747. name: "Normal",
  16748. height: math.unit(5 + 6 / 12, "feet")
  16749. },
  16750. {
  16751. name: "Lesser Macro",
  16752. height: math.unit(60, "feet")
  16753. },
  16754. {
  16755. name: "Greater Macro",
  16756. height: math.unit(120, "feet")
  16757. },
  16758. ]
  16759. ))
  16760. characterMakers.push(() => makeCharacter(
  16761. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16762. {
  16763. front: {
  16764. height: math.unit(6, "feet"),
  16765. weight: math.unit(100, "lb"),
  16766. name: "Front",
  16767. image: {
  16768. source: "./media/characters/aevsivs/front.svg",
  16769. extra: 1,
  16770. bottom: 0.03
  16771. }
  16772. },
  16773. back: {
  16774. height: math.unit(6, "feet"),
  16775. weight: math.unit(100, "lb"),
  16776. name: "Back",
  16777. image: {
  16778. source: "./media/characters/aevsivs/back.svg"
  16779. }
  16780. },
  16781. },
  16782. [
  16783. {
  16784. name: "Micro",
  16785. height: math.unit(2, "inches"),
  16786. default: true
  16787. },
  16788. {
  16789. name: "Normal",
  16790. height: math.unit(5, "feet")
  16791. },
  16792. ]
  16793. ))
  16794. characterMakers.push(() => makeCharacter(
  16795. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16796. {
  16797. front: {
  16798. height: math.unit(5 + 7 / 12, "feet"),
  16799. weight: math.unit(159, "lb"),
  16800. name: "Front",
  16801. image: {
  16802. source: "./media/characters/hildegard/front.svg",
  16803. extra: 289 / 269,
  16804. bottom: 7.63 / 297.8
  16805. }
  16806. },
  16807. back: {
  16808. height: math.unit(5 + 7 / 12, "feet"),
  16809. weight: math.unit(159, "lb"),
  16810. name: "Back",
  16811. image: {
  16812. source: "./media/characters/hildegard/back.svg",
  16813. extra: 280 / 260,
  16814. bottom: 2.3 / 282
  16815. }
  16816. },
  16817. },
  16818. [
  16819. {
  16820. name: "Normal",
  16821. height: math.unit(5 + 7 / 12, "feet"),
  16822. default: true
  16823. },
  16824. ]
  16825. ))
  16826. characterMakers.push(() => makeCharacter(
  16827. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16828. {
  16829. bernard: {
  16830. height: math.unit(2 + 7 / 12, "feet"),
  16831. weight: math.unit(66, "lb"),
  16832. name: "Bernard",
  16833. rename: true,
  16834. image: {
  16835. source: "./media/characters/bernard-wilder/bernard.svg",
  16836. extra: 192 / 128,
  16837. bottom: 0.05
  16838. }
  16839. },
  16840. wilder: {
  16841. height: math.unit(5 + 8 / 12, "feet"),
  16842. weight: math.unit(143, "lb"),
  16843. name: "Wilder",
  16844. rename: true,
  16845. image: {
  16846. source: "./media/characters/bernard-wilder/wilder.svg",
  16847. extra: 361 / 312,
  16848. bottom: 0.02
  16849. }
  16850. },
  16851. },
  16852. [
  16853. {
  16854. name: "Normal",
  16855. height: math.unit(2 + 7 / 12, "feet"),
  16856. default: true
  16857. },
  16858. ]
  16859. ))
  16860. characterMakers.push(() => makeCharacter(
  16861. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16862. {
  16863. anthro: {
  16864. height: math.unit(6 + 1 / 12, "feet"),
  16865. weight: math.unit(155, "lb"),
  16866. name: "Anthro",
  16867. image: {
  16868. source: "./media/characters/hearth/anthro.svg",
  16869. extra: 1178/1136,
  16870. bottom: 28/1206
  16871. }
  16872. },
  16873. feral: {
  16874. height: math.unit(3.78, "feet"),
  16875. weight: math.unit(35, "kg"),
  16876. name: "Feral",
  16877. image: {
  16878. source: "./media/characters/hearth/feral.svg",
  16879. extra: 153 / 135,
  16880. bottom: 0.03
  16881. }
  16882. },
  16883. },
  16884. [
  16885. {
  16886. name: "Normal",
  16887. height: math.unit(6 + 1 / 12, "feet"),
  16888. default: true
  16889. },
  16890. ]
  16891. ))
  16892. characterMakers.push(() => makeCharacter(
  16893. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16894. {
  16895. front: {
  16896. height: math.unit(6, "feet"),
  16897. weight: math.unit(182, "lb"),
  16898. name: "Front",
  16899. image: {
  16900. source: "./media/characters/ingrid/front.svg",
  16901. extra: 294 / 268,
  16902. bottom: 0.027
  16903. }
  16904. },
  16905. },
  16906. [
  16907. {
  16908. name: "Normal",
  16909. height: math.unit(6, "feet"),
  16910. default: true
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16916. {
  16917. eevee: {
  16918. height: math.unit(2 + 10 / 12, "feet"),
  16919. weight: math.unit(86, "lb"),
  16920. name: "Malgam",
  16921. image: {
  16922. source: "./media/characters/malgam/eevee.svg",
  16923. extra: 952/784,
  16924. bottom: 38/990
  16925. }
  16926. },
  16927. sylveon: {
  16928. height: math.unit(4, "feet"),
  16929. weight: math.unit(101, "lb"),
  16930. name: "Future Malgam",
  16931. rename: true,
  16932. image: {
  16933. source: "./media/characters/malgam/sylveon.svg",
  16934. extra: 371 / 325,
  16935. bottom: 0.015
  16936. }
  16937. },
  16938. gigantamax: {
  16939. height: math.unit(50, "feet"),
  16940. name: "Gigantamax Malgam",
  16941. rename: true,
  16942. image: {
  16943. source: "./media/characters/malgam/gigantamax.svg"
  16944. }
  16945. },
  16946. },
  16947. [
  16948. {
  16949. name: "Normal",
  16950. height: math.unit(2 + 10 / 12, "feet"),
  16951. default: true
  16952. },
  16953. ]
  16954. ))
  16955. characterMakers.push(() => makeCharacter(
  16956. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16957. {
  16958. front: {
  16959. height: math.unit(5 + 11 / 12, "feet"),
  16960. weight: math.unit(188, "lb"),
  16961. name: "Front",
  16962. image: {
  16963. source: "./media/characters/fleur/front.svg",
  16964. extra: 309 / 283,
  16965. bottom: 0.007
  16966. }
  16967. },
  16968. },
  16969. [
  16970. {
  16971. name: "Normal",
  16972. height: math.unit(5 + 11 / 12, "feet"),
  16973. default: true
  16974. },
  16975. ]
  16976. ))
  16977. characterMakers.push(() => makeCharacter(
  16978. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16979. {
  16980. front: {
  16981. height: math.unit(5 + 4 / 12, "feet"),
  16982. weight: math.unit(122, "lb"),
  16983. name: "Front",
  16984. image: {
  16985. source: "./media/characters/jude/front.svg",
  16986. extra: 288 / 273,
  16987. bottom: 0.03
  16988. }
  16989. },
  16990. },
  16991. [
  16992. {
  16993. name: "Normal",
  16994. height: math.unit(5 + 4 / 12, "feet"),
  16995. default: true
  16996. },
  16997. ]
  16998. ))
  16999. characterMakers.push(() => makeCharacter(
  17000. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17001. {
  17002. front: {
  17003. height: math.unit(5 + 11 / 12, "feet"),
  17004. weight: math.unit(190, "lb"),
  17005. name: "Front",
  17006. image: {
  17007. source: "./media/characters/seara/front.svg",
  17008. extra: 1,
  17009. bottom: 0.05
  17010. }
  17011. },
  17012. },
  17013. [
  17014. {
  17015. name: "Normal",
  17016. height: math.unit(5 + 11 / 12, "feet"),
  17017. default: true
  17018. },
  17019. ]
  17020. ))
  17021. characterMakers.push(() => makeCharacter(
  17022. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17023. {
  17024. front: {
  17025. height: math.unit(16 + 5 / 12, "feet"),
  17026. weight: math.unit(524, "lb"),
  17027. name: "Front",
  17028. image: {
  17029. source: "./media/characters/caspian-lugia/front.svg",
  17030. extra: 1,
  17031. bottom: 0.04
  17032. }
  17033. },
  17034. },
  17035. [
  17036. {
  17037. name: "Normal",
  17038. height: math.unit(16 + 5 / 12, "feet"),
  17039. default: true
  17040. },
  17041. ]
  17042. ))
  17043. characterMakers.push(() => makeCharacter(
  17044. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17045. {
  17046. front: {
  17047. height: math.unit(5 + 7 / 12, "feet"),
  17048. weight: math.unit(170, "lb"),
  17049. name: "Front",
  17050. image: {
  17051. source: "./media/characters/mika/front.svg",
  17052. extra: 1,
  17053. bottom: 0.016
  17054. }
  17055. },
  17056. },
  17057. [
  17058. {
  17059. name: "Normal",
  17060. height: math.unit(5 + 7 / 12, "feet"),
  17061. default: true
  17062. },
  17063. ]
  17064. ))
  17065. characterMakers.push(() => makeCharacter(
  17066. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17067. {
  17068. front: {
  17069. height: math.unit(6 + 2 / 12, "feet"),
  17070. weight: math.unit(268, "lb"),
  17071. name: "Front",
  17072. image: {
  17073. source: "./media/characters/sol/front.svg",
  17074. extra: 247 / 231,
  17075. bottom: 0.05
  17076. }
  17077. },
  17078. },
  17079. [
  17080. {
  17081. name: "Normal",
  17082. height: math.unit(6 + 2 / 12, "feet"),
  17083. default: true
  17084. },
  17085. ]
  17086. ))
  17087. characterMakers.push(() => makeCharacter(
  17088. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17089. {
  17090. buizel: {
  17091. height: math.unit(2 + 5 / 12, "feet"),
  17092. weight: math.unit(87, "lb"),
  17093. name: "Front",
  17094. image: {
  17095. source: "./media/characters/umiko/buizel.svg",
  17096. extra: 172 / 157,
  17097. bottom: 0.01
  17098. },
  17099. form: "buizel",
  17100. default: true
  17101. },
  17102. floatzel: {
  17103. height: math.unit(5 + 9 / 12, "feet"),
  17104. weight: math.unit(250, "lb"),
  17105. name: "Front",
  17106. image: {
  17107. source: "./media/characters/umiko/floatzel.svg",
  17108. extra: 1076/1006,
  17109. bottom: 15/1091
  17110. },
  17111. form: "floatzel",
  17112. default: true
  17113. },
  17114. },
  17115. [
  17116. {
  17117. name: "Normal",
  17118. height: math.unit(2 + 5 / 12, "feet"),
  17119. form: "buizel",
  17120. default: true
  17121. },
  17122. {
  17123. name: "Normal",
  17124. height: math.unit(5 + 9 / 12, "feet"),
  17125. form: "floatzel",
  17126. default: true
  17127. },
  17128. ],
  17129. {
  17130. "buizel": {
  17131. name: "Buizel"
  17132. },
  17133. "floatzel": {
  17134. name: "Floatzel",
  17135. default: true
  17136. }
  17137. }
  17138. ))
  17139. characterMakers.push(() => makeCharacter(
  17140. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17141. {
  17142. front: {
  17143. height: math.unit(6 + 2 / 12, "feet"),
  17144. weight: math.unit(146, "lb"),
  17145. name: "Front",
  17146. image: {
  17147. source: "./media/characters/iliac/front.svg",
  17148. extra: 389 / 365,
  17149. bottom: 0.035
  17150. }
  17151. },
  17152. },
  17153. [
  17154. {
  17155. name: "Normal",
  17156. height: math.unit(6 + 2 / 12, "feet"),
  17157. default: true
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17163. {
  17164. front: {
  17165. height: math.unit(6, "feet"),
  17166. weight: math.unit(170, "lb"),
  17167. name: "Front",
  17168. image: {
  17169. source: "./media/characters/topaz/front.svg",
  17170. extra: 317 / 303,
  17171. bottom: 0.055
  17172. }
  17173. },
  17174. },
  17175. [
  17176. {
  17177. name: "Normal",
  17178. height: math.unit(6, "feet"),
  17179. default: true
  17180. },
  17181. ]
  17182. ))
  17183. characterMakers.push(() => makeCharacter(
  17184. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17185. {
  17186. front: {
  17187. height: math.unit(5 + 11 / 12, "feet"),
  17188. weight: math.unit(144, "lb"),
  17189. name: "Front",
  17190. image: {
  17191. source: "./media/characters/gabriel/front.svg",
  17192. extra: 285 / 262,
  17193. bottom: 0.004
  17194. }
  17195. },
  17196. },
  17197. [
  17198. {
  17199. name: "Normal",
  17200. height: math.unit(5 + 11 / 12, "feet"),
  17201. default: true
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17207. {
  17208. side: {
  17209. height: math.unit(6 + 5 / 12, "feet"),
  17210. weight: math.unit(300, "lb"),
  17211. name: "Side",
  17212. image: {
  17213. source: "./media/characters/tempest-suicune/side.svg",
  17214. extra: 195 / 154,
  17215. bottom: 0.04
  17216. }
  17217. },
  17218. },
  17219. [
  17220. {
  17221. name: "Normal",
  17222. height: math.unit(6 + 5 / 12, "feet"),
  17223. default: true
  17224. },
  17225. ]
  17226. ))
  17227. characterMakers.push(() => makeCharacter(
  17228. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17229. {
  17230. front: {
  17231. height: math.unit(7 + 2 / 12, "feet"),
  17232. weight: math.unit(322, "lb"),
  17233. name: "Front",
  17234. image: {
  17235. source: "./media/characters/vulcan/front.svg",
  17236. extra: 154 / 147,
  17237. bottom: 0.04
  17238. }
  17239. },
  17240. },
  17241. [
  17242. {
  17243. name: "Normal",
  17244. height: math.unit(7 + 2 / 12, "feet"),
  17245. default: true
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17251. {
  17252. front: {
  17253. height: math.unit(5 + 10 / 12, "feet"),
  17254. weight: math.unit(264, "lb"),
  17255. name: "Front",
  17256. image: {
  17257. source: "./media/characters/gault/front.svg",
  17258. extra: 161 / 140,
  17259. bottom: 0.028
  17260. }
  17261. },
  17262. },
  17263. [
  17264. {
  17265. name: "Normal",
  17266. height: math.unit(5 + 10 / 12, "feet"),
  17267. default: true
  17268. },
  17269. ]
  17270. ))
  17271. characterMakers.push(() => makeCharacter(
  17272. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17273. {
  17274. front: {
  17275. height: math.unit(6, "feet"),
  17276. weight: math.unit(150, "lb"),
  17277. name: "Front",
  17278. image: {
  17279. source: "./media/characters/shard/front.svg",
  17280. extra: 273 / 238,
  17281. bottom: 0.02
  17282. }
  17283. },
  17284. },
  17285. [
  17286. {
  17287. name: "Normal",
  17288. height: math.unit(3 + 6 / 12, "feet"),
  17289. default: true
  17290. },
  17291. ]
  17292. ))
  17293. characterMakers.push(() => makeCharacter(
  17294. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17295. {
  17296. front: {
  17297. height: math.unit(5 + 11 / 12, "feet"),
  17298. weight: math.unit(146, "lb"),
  17299. name: "Front",
  17300. image: {
  17301. source: "./media/characters/ashe/front.svg",
  17302. extra: 400 / 373,
  17303. bottom: 0.01
  17304. }
  17305. },
  17306. },
  17307. [
  17308. {
  17309. name: "Normal",
  17310. height: math.unit(5 + 11 / 12, "feet"),
  17311. default: true
  17312. },
  17313. ]
  17314. ))
  17315. characterMakers.push(() => makeCharacter(
  17316. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17317. {
  17318. front: {
  17319. height: math.unit(5 + 5 / 12, "feet"),
  17320. weight: math.unit(135, "lb"),
  17321. name: "Front",
  17322. image: {
  17323. source: "./media/characters/beatrix/front.svg",
  17324. extra: 392 / 379,
  17325. bottom: 0.01
  17326. }
  17327. },
  17328. },
  17329. [
  17330. {
  17331. name: "Normal",
  17332. height: math.unit(6, "feet"),
  17333. default: true
  17334. },
  17335. ]
  17336. ))
  17337. characterMakers.push(() => makeCharacter(
  17338. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17339. {
  17340. front: {
  17341. height: math.unit(6 + 2/12, "feet"),
  17342. weight: math.unit(135, "lb"),
  17343. name: "Front",
  17344. image: {
  17345. source: "./media/characters/ignatius/front.svg",
  17346. extra: 1380/1259,
  17347. bottom: 27/1407
  17348. }
  17349. },
  17350. },
  17351. [
  17352. {
  17353. name: "Normal",
  17354. height: math.unit(6 + 2/12, "feet"),
  17355. default: true
  17356. },
  17357. ]
  17358. ))
  17359. characterMakers.push(() => makeCharacter(
  17360. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17361. {
  17362. front: {
  17363. height: math.unit(6 + 2 / 12, "feet"),
  17364. weight: math.unit(138, "lb"),
  17365. name: "Front",
  17366. image: {
  17367. source: "./media/characters/mei-li/front.svg",
  17368. extra: 237 / 229,
  17369. bottom: 0.03
  17370. }
  17371. },
  17372. },
  17373. [
  17374. {
  17375. name: "Normal",
  17376. height: math.unit(6 + 2 / 12, "feet"),
  17377. default: true
  17378. },
  17379. ]
  17380. ))
  17381. characterMakers.push(() => makeCharacter(
  17382. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17383. {
  17384. front: {
  17385. height: math.unit(2 + 4 / 12, "feet"),
  17386. weight: math.unit(62, "lb"),
  17387. name: "Front",
  17388. image: {
  17389. source: "./media/characters/puru/front.svg",
  17390. extra: 206 / 149,
  17391. bottom: 0.06
  17392. }
  17393. },
  17394. },
  17395. [
  17396. {
  17397. name: "Normal",
  17398. height: math.unit(2 + 4 / 12, "feet"),
  17399. default: true
  17400. },
  17401. ]
  17402. ))
  17403. characterMakers.push(() => makeCharacter(
  17404. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17405. {
  17406. anthro: {
  17407. height: math.unit(5 + 8/12, "feet"),
  17408. weight: math.unit(200, "lb"),
  17409. energyNeed: math.unit(2000, "kcal"),
  17410. name: "Anthro",
  17411. image: {
  17412. source: "./media/characters/kee/anthro.svg",
  17413. extra: 3251/3184,
  17414. bottom: 250/3501
  17415. }
  17416. },
  17417. taur: {
  17418. height: math.unit(11, "feet"),
  17419. weight: math.unit(500, "lb"),
  17420. energyNeed: math.unit(5000, "kcal"),
  17421. name: "Taur",
  17422. image: {
  17423. source: "./media/characters/kee/taur.svg",
  17424. extra: 1362/1320,
  17425. bottom: 83/1445
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(5 + 8/12, "feet"),
  17433. default: true
  17434. },
  17435. {
  17436. name: "Macro",
  17437. height: math.unit(35, "feet")
  17438. },
  17439. ]
  17440. ))
  17441. characterMakers.push(() => makeCharacter(
  17442. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17443. {
  17444. anthro: {
  17445. height: math.unit(7, "feet"),
  17446. weight: math.unit(190, "lb"),
  17447. name: "Anthro",
  17448. image: {
  17449. source: "./media/characters/cobalt-dracha/anthro.svg",
  17450. extra: 231 / 225,
  17451. bottom: 0.04
  17452. }
  17453. },
  17454. feral: {
  17455. height: math.unit(9 + 7 / 12, "feet"),
  17456. weight: math.unit(294, "lb"),
  17457. name: "Feral",
  17458. image: {
  17459. source: "./media/characters/cobalt-dracha/feral.svg",
  17460. extra: 692 / 633,
  17461. bottom: 0.05
  17462. }
  17463. },
  17464. },
  17465. [
  17466. {
  17467. name: "Normal",
  17468. height: math.unit(7, "feet"),
  17469. default: true
  17470. },
  17471. ]
  17472. ))
  17473. characterMakers.push(() => makeCharacter(
  17474. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17475. {
  17476. fallen: {
  17477. height: math.unit(11 + 8 / 12, "feet"),
  17478. weight: math.unit(485, "lb"),
  17479. name: "Java (Fallen)",
  17480. rename: true,
  17481. image: {
  17482. source: "./media/characters/java/fallen.svg",
  17483. extra: 226 / 208,
  17484. bottom: 0.005
  17485. }
  17486. },
  17487. godkin: {
  17488. height: math.unit(10 + 6 / 12, "feet"),
  17489. weight: math.unit(328, "lb"),
  17490. name: "Java (Godkin)",
  17491. rename: true,
  17492. image: {
  17493. source: "./media/characters/java/godkin.svg",
  17494. extra: 1104/1068,
  17495. bottom: 36/1140
  17496. }
  17497. },
  17498. },
  17499. [
  17500. {
  17501. name: "Normal",
  17502. height: math.unit(11 + 8 / 12, "feet"),
  17503. default: true
  17504. },
  17505. ]
  17506. ))
  17507. characterMakers.push(() => makeCharacter(
  17508. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17509. {
  17510. front: {
  17511. height: math.unit(5 + 9 / 12, "feet"),
  17512. weight: math.unit(170, "lb"),
  17513. name: "Front",
  17514. image: {
  17515. source: "./media/characters/purna/front.svg",
  17516. extra: 239 / 229,
  17517. bottom: 0.01
  17518. }
  17519. },
  17520. },
  17521. [
  17522. {
  17523. name: "Normal",
  17524. height: math.unit(5 + 9 / 12, "feet"),
  17525. default: true
  17526. },
  17527. ]
  17528. ))
  17529. characterMakers.push(() => makeCharacter(
  17530. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17531. {
  17532. front: {
  17533. height: math.unit(5 + 9 / 12, "feet"),
  17534. weight: math.unit(142, "lb"),
  17535. name: "Front",
  17536. image: {
  17537. source: "./media/characters/kuva/front.svg",
  17538. extra: 281 / 271,
  17539. bottom: 0.006
  17540. }
  17541. },
  17542. },
  17543. [
  17544. {
  17545. name: "Normal",
  17546. height: math.unit(5 + 9 / 12, "feet"),
  17547. default: true
  17548. },
  17549. ]
  17550. ))
  17551. characterMakers.push(() => makeCharacter(
  17552. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17553. {
  17554. anthro: {
  17555. height: math.unit(9 + 2 / 12, "feet"),
  17556. weight: math.unit(270, "lb"),
  17557. name: "Anthro",
  17558. image: {
  17559. source: "./media/characters/embra/anthro.svg",
  17560. extra: 200 / 187,
  17561. bottom: 0.02
  17562. }
  17563. },
  17564. feral: {
  17565. height: math.unit(18 + 8 / 12, "feet"),
  17566. weight: math.unit(576, "lb"),
  17567. name: "Feral",
  17568. image: {
  17569. source: "./media/characters/embra/feral.svg",
  17570. extra: 152 / 137,
  17571. bottom: 0.037
  17572. }
  17573. },
  17574. },
  17575. [
  17576. {
  17577. name: "Normal",
  17578. height: math.unit(9 + 2 / 12, "feet"),
  17579. default: true
  17580. },
  17581. ]
  17582. ))
  17583. characterMakers.push(() => makeCharacter(
  17584. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17585. {
  17586. anthro: {
  17587. height: math.unit(10 + 9 / 12, "feet"),
  17588. weight: math.unit(224, "lb"),
  17589. name: "Anthro",
  17590. image: {
  17591. source: "./media/characters/grottos/anthro.svg",
  17592. extra: 350 / 332,
  17593. bottom: 0.045
  17594. }
  17595. },
  17596. feral: {
  17597. height: math.unit(20 + 7 / 12, "feet"),
  17598. weight: math.unit(629, "lb"),
  17599. name: "Feral",
  17600. image: {
  17601. source: "./media/characters/grottos/feral.svg",
  17602. extra: 207 / 190,
  17603. bottom: 0.05
  17604. }
  17605. },
  17606. },
  17607. [
  17608. {
  17609. name: "Normal",
  17610. height: math.unit(10 + 9 / 12, "feet"),
  17611. default: true
  17612. },
  17613. ]
  17614. ))
  17615. characterMakers.push(() => makeCharacter(
  17616. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17617. {
  17618. anthro: {
  17619. height: math.unit(9 + 6 / 12, "feet"),
  17620. weight: math.unit(298, "lb"),
  17621. name: "Anthro",
  17622. image: {
  17623. source: "./media/characters/frifna/anthro.svg",
  17624. extra: 282 / 269,
  17625. bottom: 0.015
  17626. }
  17627. },
  17628. feral: {
  17629. height: math.unit(16 + 2 / 12, "feet"),
  17630. weight: math.unit(624, "lb"),
  17631. name: "Feral",
  17632. image: {
  17633. source: "./media/characters/frifna/feral.svg"
  17634. }
  17635. },
  17636. },
  17637. [
  17638. {
  17639. name: "Normal",
  17640. height: math.unit(9 + 6 / 12, "feet"),
  17641. default: true
  17642. },
  17643. ]
  17644. ))
  17645. characterMakers.push(() => makeCharacter(
  17646. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17647. {
  17648. front: {
  17649. height: math.unit(6 + 2 / 12, "feet"),
  17650. weight: math.unit(168, "lb"),
  17651. name: "Front",
  17652. image: {
  17653. source: "./media/characters/elise/front.svg",
  17654. extra: 276 / 271
  17655. }
  17656. },
  17657. },
  17658. [
  17659. {
  17660. name: "Normal",
  17661. height: math.unit(6 + 2 / 12, "feet"),
  17662. default: true
  17663. },
  17664. ]
  17665. ))
  17666. characterMakers.push(() => makeCharacter(
  17667. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17668. {
  17669. front: {
  17670. height: math.unit(5 + 10 / 12, "feet"),
  17671. weight: math.unit(210, "lb"),
  17672. name: "Front",
  17673. image: {
  17674. source: "./media/characters/glade/front.svg",
  17675. extra: 258 / 247,
  17676. bottom: 0.008
  17677. }
  17678. },
  17679. },
  17680. [
  17681. {
  17682. name: "Normal",
  17683. height: math.unit(5 + 10 / 12, "feet"),
  17684. default: true
  17685. },
  17686. ]
  17687. ))
  17688. characterMakers.push(() => makeCharacter(
  17689. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17690. {
  17691. front: {
  17692. height: math.unit(5 + 10 / 12, "feet"),
  17693. weight: math.unit(129, "lb"),
  17694. name: "Front",
  17695. image: {
  17696. source: "./media/characters/rina/front.svg",
  17697. extra: 266 / 255,
  17698. bottom: 0.005
  17699. }
  17700. },
  17701. },
  17702. [
  17703. {
  17704. name: "Normal",
  17705. height: math.unit(5 + 10 / 12, "feet"),
  17706. default: true
  17707. },
  17708. ]
  17709. ))
  17710. characterMakers.push(() => makeCharacter(
  17711. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17712. {
  17713. front: {
  17714. height: math.unit(6 + 1 / 12, "feet"),
  17715. weight: math.unit(192, "lb"),
  17716. name: "Front",
  17717. image: {
  17718. source: "./media/characters/veronica/front.svg",
  17719. extra: 319 / 309,
  17720. bottom: 0.005
  17721. }
  17722. },
  17723. },
  17724. [
  17725. {
  17726. name: "Normal",
  17727. height: math.unit(6 + 1 / 12, "feet"),
  17728. default: true
  17729. },
  17730. ]
  17731. ))
  17732. characterMakers.push(() => makeCharacter(
  17733. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17734. {
  17735. front: {
  17736. height: math.unit(9 + 3 / 12, "feet"),
  17737. weight: math.unit(1100, "lb"),
  17738. name: "Front",
  17739. image: {
  17740. source: "./media/characters/braxton/front.svg",
  17741. extra: 1057 / 984,
  17742. bottom: 0.05
  17743. }
  17744. },
  17745. },
  17746. [
  17747. {
  17748. name: "Normal",
  17749. height: math.unit(9 + 3 / 12, "feet")
  17750. },
  17751. {
  17752. name: "Giant",
  17753. height: math.unit(300, "feet"),
  17754. default: true
  17755. },
  17756. {
  17757. name: "Macro",
  17758. height: math.unit(700, "feet")
  17759. },
  17760. {
  17761. name: "Megamacro",
  17762. height: math.unit(6000, "feet")
  17763. },
  17764. ]
  17765. ))
  17766. characterMakers.push(() => makeCharacter(
  17767. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17768. {
  17769. front: {
  17770. height: math.unit(6 + 7 / 12, "feet"),
  17771. weight: math.unit(150, "lb"),
  17772. name: "Front",
  17773. image: {
  17774. source: "./media/characters/blue-feyonics/front.svg",
  17775. extra: 1403 / 1306,
  17776. bottom: 0.047
  17777. }
  17778. },
  17779. },
  17780. [
  17781. {
  17782. name: "Normal",
  17783. height: math.unit(6 + 7 / 12, "feet"),
  17784. default: true
  17785. },
  17786. ]
  17787. ))
  17788. characterMakers.push(() => makeCharacter(
  17789. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17790. {
  17791. front: {
  17792. height: math.unit(1.8, "meters"),
  17793. weight: math.unit(60, "kg"),
  17794. name: "Front",
  17795. image: {
  17796. source: "./media/characters/maxwell/front.svg",
  17797. extra: 2060 / 1873
  17798. }
  17799. },
  17800. },
  17801. [
  17802. {
  17803. name: "Micro",
  17804. height: math.unit(1, "mm")
  17805. },
  17806. {
  17807. name: "Normal",
  17808. height: math.unit(1.8, "meter"),
  17809. default: true
  17810. },
  17811. {
  17812. name: "Macro",
  17813. height: math.unit(30, "meters")
  17814. },
  17815. {
  17816. name: "Megamacro",
  17817. height: math.unit(10, "km")
  17818. },
  17819. ]
  17820. ))
  17821. characterMakers.push(() => makeCharacter(
  17822. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17823. {
  17824. front: {
  17825. height: math.unit(6, "feet"),
  17826. weight: math.unit(150, "lb"),
  17827. name: "Front",
  17828. image: {
  17829. source: "./media/characters/jack/front.svg",
  17830. extra: 1754 / 1640,
  17831. bottom: 0.01
  17832. }
  17833. },
  17834. },
  17835. [
  17836. {
  17837. name: "Normal",
  17838. height: math.unit(80000, "feet"),
  17839. default: true
  17840. },
  17841. {
  17842. name: "Max size",
  17843. height: math.unit(10, "lightyears")
  17844. },
  17845. ]
  17846. ))
  17847. characterMakers.push(() => makeCharacter(
  17848. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17849. {
  17850. urban: {
  17851. height: math.unit(5, "feet"),
  17852. weight: math.unit(240, "lb"),
  17853. name: "Urban",
  17854. image: {
  17855. source: "./media/characters/cafat/urban.svg",
  17856. extra: 1223/1126,
  17857. bottom: 205/1428
  17858. }
  17859. },
  17860. summer: {
  17861. height: math.unit(5, "feet"),
  17862. weight: math.unit(240, "lb"),
  17863. name: "Summer",
  17864. image: {
  17865. source: "./media/characters/cafat/summer.svg",
  17866. extra: 1223/1126,
  17867. bottom: 205/1428
  17868. }
  17869. },
  17870. winter: {
  17871. height: math.unit(5, "feet"),
  17872. weight: math.unit(240, "lb"),
  17873. name: "Winter",
  17874. image: {
  17875. source: "./media/characters/cafat/winter.svg",
  17876. extra: 1223/1126,
  17877. bottom: 205/1428
  17878. }
  17879. },
  17880. lingerie: {
  17881. height: math.unit(5, "feet"),
  17882. weight: math.unit(240, "lb"),
  17883. name: "Lingerie",
  17884. image: {
  17885. source: "./media/characters/cafat/lingerie.svg",
  17886. extra: 1223/1126,
  17887. bottom: 205/1428
  17888. }
  17889. },
  17890. upright: {
  17891. height: math.unit(6.3, "feet"),
  17892. weight: math.unit(240, "lb"),
  17893. name: "Upright",
  17894. image: {
  17895. source: "./media/characters/cafat/upright.svg",
  17896. bottom: 0.01
  17897. }
  17898. },
  17899. uprightFull: {
  17900. height: math.unit(6.3, "feet"),
  17901. weight: math.unit(240, "lb"),
  17902. name: "Upright (Full)",
  17903. image: {
  17904. source: "./media/characters/cafat/upright-full.svg",
  17905. bottom: 0.01
  17906. }
  17907. },
  17908. },
  17909. [
  17910. {
  17911. name: "Small",
  17912. height: math.unit(5, "feet"),
  17913. default: true
  17914. },
  17915. {
  17916. name: "Large",
  17917. height: math.unit(13, "feet")
  17918. },
  17919. ]
  17920. ))
  17921. characterMakers.push(() => makeCharacter(
  17922. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17923. {
  17924. front: {
  17925. height: math.unit(6, "feet"),
  17926. weight: math.unit(150, "lb"),
  17927. name: "Front",
  17928. image: {
  17929. source: "./media/characters/verin-raharra/front.svg",
  17930. extra: 5019 / 4835,
  17931. bottom: 0.023
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Normal",
  17938. height: math.unit(7 + 5 / 12, "feet"),
  17939. default: true
  17940. },
  17941. {
  17942. name: "Upsized",
  17943. height: math.unit(20, "feet")
  17944. },
  17945. ]
  17946. ))
  17947. characterMakers.push(() => makeCharacter(
  17948. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17949. {
  17950. front: {
  17951. height: math.unit(7, "feet"),
  17952. weight: math.unit(230, "lb"),
  17953. name: "Front",
  17954. image: {
  17955. source: "./media/characters/nakata/front.svg",
  17956. extra: 1.005,
  17957. bottom: 0.01
  17958. }
  17959. },
  17960. },
  17961. [
  17962. {
  17963. name: "Normal",
  17964. height: math.unit(7, "feet"),
  17965. default: true
  17966. },
  17967. {
  17968. name: "Big",
  17969. height: math.unit(14, "feet")
  17970. },
  17971. {
  17972. name: "Macro",
  17973. height: math.unit(400, "feet")
  17974. },
  17975. ]
  17976. ))
  17977. characterMakers.push(() => makeCharacter(
  17978. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17979. {
  17980. front: {
  17981. height: math.unit(4.91, "feet"),
  17982. weight: math.unit(100, "lb"),
  17983. name: "Front",
  17984. image: {
  17985. source: "./media/characters/lily/front.svg",
  17986. extra: 1585 / 1415,
  17987. bottom: 0.02
  17988. }
  17989. },
  17990. },
  17991. [
  17992. {
  17993. name: "Normal",
  17994. height: math.unit(4.91, "feet"),
  17995. default: true
  17996. },
  17997. ]
  17998. ))
  17999. characterMakers.push(() => makeCharacter(
  18000. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18001. {
  18002. laying: {
  18003. height: math.unit(4 + 4 / 12, "feet"),
  18004. weight: math.unit(600, "lb"),
  18005. name: "Laying",
  18006. image: {
  18007. source: "./media/characters/sheila/laying.svg",
  18008. extra: 1333 / 1265,
  18009. bottom: 0.16
  18010. }
  18011. },
  18012. },
  18013. [
  18014. {
  18015. name: "Normal",
  18016. height: math.unit(4 + 4 / 12, "feet"),
  18017. default: true
  18018. },
  18019. ]
  18020. ))
  18021. characterMakers.push(() => makeCharacter(
  18022. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18023. {
  18024. front: {
  18025. height: math.unit(6, "feet"),
  18026. weight: math.unit(190, "lb"),
  18027. name: "Front",
  18028. image: {
  18029. source: "./media/characters/sax/front.svg",
  18030. extra: 1187 / 973,
  18031. bottom: 0.042
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Micro",
  18038. height: math.unit(4, "inches"),
  18039. default: true
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18045. {
  18046. front: {
  18047. height: math.unit(6, "feet"),
  18048. weight: math.unit(150, "lb"),
  18049. name: "Front",
  18050. image: {
  18051. source: "./media/characters/pandora/front.svg",
  18052. extra: 2720 / 2556,
  18053. bottom: 0.015
  18054. }
  18055. },
  18056. back: {
  18057. height: math.unit(6, "feet"),
  18058. weight: math.unit(150, "lb"),
  18059. name: "Back",
  18060. image: {
  18061. source: "./media/characters/pandora/back.svg",
  18062. extra: 2720 / 2556,
  18063. bottom: 0.01
  18064. }
  18065. },
  18066. beans: {
  18067. height: math.unit(6 / 8, "feet"),
  18068. name: "Beans",
  18069. image: {
  18070. source: "./media/characters/pandora/beans.svg"
  18071. }
  18072. },
  18073. collar: {
  18074. height: math.unit(0.31, "feet"),
  18075. name: "Collar",
  18076. image: {
  18077. source: "./media/characters/pandora/collar.svg"
  18078. }
  18079. },
  18080. skirt: {
  18081. height: math.unit(6, "feet"),
  18082. weight: math.unit(150, "lb"),
  18083. name: "Skirt",
  18084. image: {
  18085. source: "./media/characters/pandora/skirt.svg",
  18086. extra: 1622 / 1525,
  18087. bottom: 0.015
  18088. }
  18089. },
  18090. hoodie: {
  18091. height: math.unit(6, "feet"),
  18092. weight: math.unit(150, "lb"),
  18093. name: "Hoodie",
  18094. image: {
  18095. source: "./media/characters/pandora/hoodie.svg",
  18096. extra: 1622 / 1525,
  18097. bottom: 0.015
  18098. }
  18099. },
  18100. casual: {
  18101. height: math.unit(6, "feet"),
  18102. weight: math.unit(150, "lb"),
  18103. name: "Casual",
  18104. image: {
  18105. source: "./media/characters/pandora/casual.svg",
  18106. extra: 1622 / 1525,
  18107. bottom: 0.015
  18108. }
  18109. },
  18110. },
  18111. [
  18112. {
  18113. name: "Normal",
  18114. height: math.unit(6, "feet")
  18115. },
  18116. {
  18117. name: "Big Steppy",
  18118. height: math.unit(1, "km"),
  18119. default: true
  18120. },
  18121. {
  18122. name: "Galactic Steppy",
  18123. height: math.unit(2, "gigameters")
  18124. },
  18125. ]
  18126. ))
  18127. characterMakers.push(() => makeCharacter(
  18128. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18129. {
  18130. side: {
  18131. height: math.unit(10, "feet"),
  18132. weight: math.unit(800, "kg"),
  18133. name: "Side",
  18134. image: {
  18135. source: "./media/characters/venio-darcony/side.svg",
  18136. extra: 1373 / 1003,
  18137. bottom: 0.037
  18138. }
  18139. },
  18140. front: {
  18141. height: math.unit(19, "feet"),
  18142. weight: math.unit(800, "kg"),
  18143. name: "Front",
  18144. image: {
  18145. source: "./media/characters/venio-darcony/front.svg"
  18146. }
  18147. },
  18148. back: {
  18149. height: math.unit(19, "feet"),
  18150. weight: math.unit(800, "kg"),
  18151. name: "Back",
  18152. image: {
  18153. source: "./media/characters/venio-darcony/back.svg"
  18154. }
  18155. },
  18156. sideNsfw: {
  18157. height: math.unit(10, "feet"),
  18158. weight: math.unit(800, "kg"),
  18159. name: "Side (NSFW)",
  18160. image: {
  18161. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18162. extra: 1373 / 1003,
  18163. bottom: 0.037
  18164. }
  18165. },
  18166. frontNsfw: {
  18167. height: math.unit(19, "feet"),
  18168. weight: math.unit(800, "kg"),
  18169. name: "Front (NSFW)",
  18170. image: {
  18171. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18172. }
  18173. },
  18174. backNsfw: {
  18175. height: math.unit(19, "feet"),
  18176. weight: math.unit(800, "kg"),
  18177. name: "Back (NSFW)",
  18178. image: {
  18179. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18180. }
  18181. },
  18182. sideArmored: {
  18183. height: math.unit(10, "feet"),
  18184. weight: math.unit(800, "kg"),
  18185. name: "Side (Armored)",
  18186. image: {
  18187. source: "./media/characters/venio-darcony/side-armored.svg",
  18188. extra: 1373 / 1003,
  18189. bottom: 0.037
  18190. }
  18191. },
  18192. frontArmored: {
  18193. height: math.unit(19, "feet"),
  18194. weight: math.unit(900, "kg"),
  18195. name: "Front (Armored)",
  18196. image: {
  18197. source: "./media/characters/venio-darcony/front-armored.svg"
  18198. }
  18199. },
  18200. backArmored: {
  18201. height: math.unit(19, "feet"),
  18202. weight: math.unit(900, "kg"),
  18203. name: "Back (Armored)",
  18204. image: {
  18205. source: "./media/characters/venio-darcony/back-armored.svg"
  18206. }
  18207. },
  18208. sword: {
  18209. height: math.unit(10, "feet"),
  18210. weight: math.unit(50, "lb"),
  18211. name: "Sword",
  18212. image: {
  18213. source: "./media/characters/venio-darcony/sword.svg"
  18214. }
  18215. },
  18216. },
  18217. [
  18218. {
  18219. name: "Normal",
  18220. height: math.unit(10, "feet")
  18221. },
  18222. {
  18223. name: "Macro",
  18224. height: math.unit(130, "feet"),
  18225. default: true
  18226. },
  18227. {
  18228. name: "Macro+",
  18229. height: math.unit(240, "feet")
  18230. },
  18231. ]
  18232. ))
  18233. characterMakers.push(() => makeCharacter(
  18234. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18235. {
  18236. front: {
  18237. height: math.unit(6, "feet"),
  18238. weight: math.unit(150, "lb"),
  18239. name: "Front",
  18240. image: {
  18241. source: "./media/characters/veski/front.svg",
  18242. extra: 1299 / 1225,
  18243. bottom: 0.04
  18244. }
  18245. },
  18246. back: {
  18247. height: math.unit(6, "feet"),
  18248. weight: math.unit(150, "lb"),
  18249. name: "Back",
  18250. image: {
  18251. source: "./media/characters/veski/back.svg",
  18252. extra: 1299 / 1225,
  18253. bottom: 0.008
  18254. }
  18255. },
  18256. maw: {
  18257. height: math.unit(1.5 * 1.21, "feet"),
  18258. name: "Maw",
  18259. image: {
  18260. source: "./media/characters/veski/maw.svg"
  18261. }
  18262. },
  18263. },
  18264. [
  18265. {
  18266. name: "Macro",
  18267. height: math.unit(2, "km"),
  18268. default: true
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18274. {
  18275. front: {
  18276. height: math.unit(5 + 7 / 12, "feet"),
  18277. name: "Front",
  18278. image: {
  18279. source: "./media/characters/isabelle/front.svg",
  18280. extra: 2130 / 1976,
  18281. bottom: 0.05
  18282. }
  18283. },
  18284. },
  18285. [
  18286. {
  18287. name: "Supermicro",
  18288. height: math.unit(10, "micrometers")
  18289. },
  18290. {
  18291. name: "Micro",
  18292. height: math.unit(1, "inch")
  18293. },
  18294. {
  18295. name: "Tiny",
  18296. height: math.unit(5, "inches")
  18297. },
  18298. {
  18299. name: "Standard",
  18300. height: math.unit(5 + 7 / 12, "inches")
  18301. },
  18302. {
  18303. name: "Macro",
  18304. height: math.unit(80, "meters"),
  18305. default: true
  18306. },
  18307. {
  18308. name: "Megamacro",
  18309. height: math.unit(250, "meters")
  18310. },
  18311. {
  18312. name: "Gigamacro",
  18313. height: math.unit(5, "km")
  18314. },
  18315. {
  18316. name: "Cosmic",
  18317. height: math.unit(2.5e6, "miles")
  18318. },
  18319. ]
  18320. ))
  18321. characterMakers.push(() => makeCharacter(
  18322. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18323. {
  18324. front: {
  18325. height: math.unit(6, "feet"),
  18326. weight: math.unit(150, "lb"),
  18327. name: "Front",
  18328. image: {
  18329. source: "./media/characters/hanzo/front.svg",
  18330. extra: 374 / 344,
  18331. bottom: 0.02
  18332. }
  18333. },
  18334. },
  18335. [
  18336. {
  18337. name: "Normal",
  18338. height: math.unit(8, "feet"),
  18339. default: true
  18340. },
  18341. ]
  18342. ))
  18343. characterMakers.push(() => makeCharacter(
  18344. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18345. {
  18346. front: {
  18347. height: math.unit(7, "feet"),
  18348. weight: math.unit(130, "lb"),
  18349. name: "Front",
  18350. image: {
  18351. source: "./media/characters/anna/front.svg",
  18352. extra: 169 / 145,
  18353. bottom: 0.06
  18354. }
  18355. },
  18356. full: {
  18357. height: math.unit(4.96, "feet"),
  18358. weight: math.unit(220, "lb"),
  18359. name: "Full",
  18360. image: {
  18361. source: "./media/characters/anna/full.svg",
  18362. extra: 138 / 114,
  18363. bottom: 0.15
  18364. }
  18365. },
  18366. tongue: {
  18367. height: math.unit(2.53, "feet"),
  18368. name: "Tongue",
  18369. image: {
  18370. source: "./media/characters/anna/tongue.svg"
  18371. }
  18372. },
  18373. },
  18374. [
  18375. {
  18376. name: "Normal",
  18377. height: math.unit(7, "feet"),
  18378. default: true
  18379. },
  18380. ]
  18381. ))
  18382. characterMakers.push(() => makeCharacter(
  18383. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18384. {
  18385. front: {
  18386. height: math.unit(7, "feet"),
  18387. weight: math.unit(150, "lb"),
  18388. name: "Front",
  18389. image: {
  18390. source: "./media/characters/ian-corvid/front.svg",
  18391. extra: 150 / 142,
  18392. bottom: 0.02
  18393. }
  18394. },
  18395. back: {
  18396. height: math.unit(7, "feet"),
  18397. weight: math.unit(150, "lb"),
  18398. name: "Back",
  18399. image: {
  18400. source: "./media/characters/ian-corvid/back.svg",
  18401. extra: 150 / 143,
  18402. bottom: 0.01
  18403. }
  18404. },
  18405. stomping: {
  18406. height: math.unit(7, "feet"),
  18407. weight: math.unit(150, "lb"),
  18408. name: "Stomping",
  18409. image: {
  18410. source: "./media/characters/ian-corvid/stomping.svg",
  18411. extra: 76 / 72
  18412. }
  18413. },
  18414. sitting: {
  18415. height: math.unit(7 / 1.8, "feet"),
  18416. weight: math.unit(150, "lb"),
  18417. name: "Sitting",
  18418. image: {
  18419. source: "./media/characters/ian-corvid/sitting.svg",
  18420. extra: 1400 / 1269,
  18421. bottom: 0.15
  18422. }
  18423. },
  18424. },
  18425. [
  18426. {
  18427. name: "Tiny Microw",
  18428. height: math.unit(1, "inch")
  18429. },
  18430. {
  18431. name: "Microw",
  18432. height: math.unit(6, "inches")
  18433. },
  18434. {
  18435. name: "Crow",
  18436. height: math.unit(7 + 1 / 12, "feet"),
  18437. default: true
  18438. },
  18439. {
  18440. name: "Macrow",
  18441. height: math.unit(176, "feet")
  18442. },
  18443. ]
  18444. ))
  18445. characterMakers.push(() => makeCharacter(
  18446. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18447. {
  18448. front: {
  18449. height: math.unit(5 + 7 / 12, "feet"),
  18450. weight: math.unit(147, "lb"),
  18451. name: "Front",
  18452. image: {
  18453. source: "./media/characters/natalie-kellon/front.svg",
  18454. extra: 1214 / 1141,
  18455. bottom: 0.02
  18456. }
  18457. },
  18458. },
  18459. [
  18460. {
  18461. name: "Micro",
  18462. height: math.unit(1 / 16, "inch")
  18463. },
  18464. {
  18465. name: "Tiny",
  18466. height: math.unit(4, "inches")
  18467. },
  18468. {
  18469. name: "Normal",
  18470. height: math.unit(5 + 7 / 12, "feet"),
  18471. default: true
  18472. },
  18473. {
  18474. name: "Amazon",
  18475. height: math.unit(12, "feet")
  18476. },
  18477. {
  18478. name: "Giantess",
  18479. height: math.unit(160, "meters")
  18480. },
  18481. {
  18482. name: "Titaness",
  18483. height: math.unit(800, "meters")
  18484. },
  18485. ]
  18486. ))
  18487. characterMakers.push(() => makeCharacter(
  18488. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18489. {
  18490. front: {
  18491. height: math.unit(6, "feet"),
  18492. weight: math.unit(150, "lb"),
  18493. name: "Front",
  18494. image: {
  18495. source: "./media/characters/alluria/front.svg",
  18496. extra: 806 / 738,
  18497. bottom: 0.01
  18498. }
  18499. },
  18500. side: {
  18501. height: math.unit(6, "feet"),
  18502. weight: math.unit(150, "lb"),
  18503. name: "Side",
  18504. image: {
  18505. source: "./media/characters/alluria/side.svg",
  18506. extra: 800 / 750,
  18507. }
  18508. },
  18509. back: {
  18510. height: math.unit(6, "feet"),
  18511. weight: math.unit(150, "lb"),
  18512. name: "Back",
  18513. image: {
  18514. source: "./media/characters/alluria/back.svg",
  18515. extra: 806 / 738,
  18516. }
  18517. },
  18518. frontMaid: {
  18519. height: math.unit(6, "feet"),
  18520. weight: math.unit(150, "lb"),
  18521. name: "Front (Maid)",
  18522. image: {
  18523. source: "./media/characters/alluria/front-maid.svg",
  18524. extra: 806 / 738,
  18525. bottom: 0.01
  18526. }
  18527. },
  18528. sideMaid: {
  18529. height: math.unit(6, "feet"),
  18530. weight: math.unit(150, "lb"),
  18531. name: "Side (Maid)",
  18532. image: {
  18533. source: "./media/characters/alluria/side-maid.svg",
  18534. extra: 800 / 750,
  18535. bottom: 0.005
  18536. }
  18537. },
  18538. backMaid: {
  18539. height: math.unit(6, "feet"),
  18540. weight: math.unit(150, "lb"),
  18541. name: "Back (Maid)",
  18542. image: {
  18543. source: "./media/characters/alluria/back-maid.svg",
  18544. extra: 806 / 738,
  18545. }
  18546. },
  18547. },
  18548. [
  18549. {
  18550. name: "Micro",
  18551. height: math.unit(6, "inches"),
  18552. default: true
  18553. },
  18554. ]
  18555. ))
  18556. characterMakers.push(() => makeCharacter(
  18557. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18558. {
  18559. front: {
  18560. height: math.unit(6, "feet"),
  18561. weight: math.unit(150, "lb"),
  18562. name: "Front",
  18563. image: {
  18564. source: "./media/characters/kyle/front.svg",
  18565. extra: 1069 / 962,
  18566. bottom: 77.228 / 1727.45
  18567. }
  18568. },
  18569. },
  18570. [
  18571. {
  18572. name: "Macro",
  18573. height: math.unit(150, "feet"),
  18574. default: true
  18575. },
  18576. ]
  18577. ))
  18578. characterMakers.push(() => makeCharacter(
  18579. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18580. {
  18581. front: {
  18582. height: math.unit(6, "feet"),
  18583. weight: math.unit(300, "lb"),
  18584. name: "Front",
  18585. image: {
  18586. source: "./media/characters/duncan/front.svg",
  18587. extra: 1650 / 1482,
  18588. bottom: 0.05
  18589. }
  18590. },
  18591. },
  18592. [
  18593. {
  18594. name: "Macro",
  18595. height: math.unit(100, "feet"),
  18596. default: true
  18597. },
  18598. ]
  18599. ))
  18600. characterMakers.push(() => makeCharacter(
  18601. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18602. {
  18603. front: {
  18604. height: math.unit(5 + 4 / 12, "feet"),
  18605. weight: math.unit(220, "lb"),
  18606. name: "Front",
  18607. image: {
  18608. source: "./media/characters/memory/front.svg",
  18609. extra: 3641 / 3545,
  18610. bottom: 0.03
  18611. }
  18612. },
  18613. back: {
  18614. height: math.unit(5 + 4 / 12, "feet"),
  18615. weight: math.unit(220, "lb"),
  18616. name: "Back",
  18617. image: {
  18618. source: "./media/characters/memory/back.svg",
  18619. extra: 3641 / 3545,
  18620. bottom: 0.025
  18621. }
  18622. },
  18623. frontSkirt: {
  18624. height: math.unit(5 + 4 / 12, "feet"),
  18625. weight: math.unit(220, "lb"),
  18626. name: "Front (Skirt)",
  18627. image: {
  18628. source: "./media/characters/memory/front-skirt.svg",
  18629. extra: 3641 / 3545,
  18630. bottom: 0.03
  18631. }
  18632. },
  18633. frontDress: {
  18634. height: math.unit(5 + 4 / 12, "feet"),
  18635. weight: math.unit(220, "lb"),
  18636. name: "Front (Dress)",
  18637. image: {
  18638. source: "./media/characters/memory/front-dress.svg",
  18639. extra: 3641 / 3545,
  18640. bottom: 0.03
  18641. }
  18642. },
  18643. },
  18644. [
  18645. {
  18646. name: "Micro",
  18647. height: math.unit(6, "inches"),
  18648. default: true
  18649. },
  18650. {
  18651. name: "Normal",
  18652. height: math.unit(5 + 4 / 12, "feet")
  18653. },
  18654. ]
  18655. ))
  18656. characterMakers.push(() => makeCharacter(
  18657. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18658. {
  18659. front: {
  18660. height: math.unit(4 + 11 / 12, "feet"),
  18661. weight: math.unit(100, "lb"),
  18662. name: "Front",
  18663. image: {
  18664. source: "./media/characters/luno/front.svg",
  18665. extra: 1535 / 1487,
  18666. bottom: 0.03
  18667. }
  18668. },
  18669. },
  18670. [
  18671. {
  18672. name: "Micro",
  18673. height: math.unit(3, "inches")
  18674. },
  18675. {
  18676. name: "Normal",
  18677. height: math.unit(4 + 11 / 12, "feet"),
  18678. default: true
  18679. },
  18680. {
  18681. name: "Macro",
  18682. height: math.unit(300, "feet")
  18683. },
  18684. {
  18685. name: "Megamacro",
  18686. height: math.unit(700, "miles")
  18687. },
  18688. ]
  18689. ))
  18690. characterMakers.push(() => makeCharacter(
  18691. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18692. {
  18693. front: {
  18694. height: math.unit(6 + 2 / 12, "feet"),
  18695. weight: math.unit(170, "lb"),
  18696. name: "Front",
  18697. image: {
  18698. source: "./media/characters/jamesy/front.svg",
  18699. extra: 440 / 382,
  18700. bottom: 0.005
  18701. }
  18702. },
  18703. },
  18704. [
  18705. {
  18706. name: "Micro",
  18707. height: math.unit(3, "inches")
  18708. },
  18709. {
  18710. name: "Normal",
  18711. height: math.unit(6 + 2 / 12, "feet"),
  18712. default: true
  18713. },
  18714. {
  18715. name: "Macro",
  18716. height: math.unit(300, "feet")
  18717. },
  18718. {
  18719. name: "Megamacro",
  18720. height: math.unit(700, "miles")
  18721. },
  18722. ]
  18723. ))
  18724. characterMakers.push(() => makeCharacter(
  18725. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18726. {
  18727. front: {
  18728. height: math.unit(6, "feet"),
  18729. weight: math.unit(160, "lb"),
  18730. name: "Front",
  18731. image: {
  18732. source: "./media/characters/mark/front.svg",
  18733. extra: 3300 / 3100,
  18734. bottom: 136.42 / 3440.47
  18735. }
  18736. },
  18737. },
  18738. [
  18739. {
  18740. name: "Macro",
  18741. height: math.unit(120, "meters")
  18742. },
  18743. {
  18744. name: "Bigger Macro",
  18745. height: math.unit(350, "meters")
  18746. },
  18747. {
  18748. name: "Megamacro",
  18749. height: math.unit(8, "km"),
  18750. default: true
  18751. },
  18752. {
  18753. name: "Continental",
  18754. height: math.unit(4550, "km")
  18755. },
  18756. {
  18757. name: "Planetary",
  18758. height: math.unit(65000, "km")
  18759. },
  18760. ]
  18761. ))
  18762. characterMakers.push(() => makeCharacter(
  18763. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18764. {
  18765. front: {
  18766. height: math.unit(6, "feet"),
  18767. weight: math.unit(400, "lb"),
  18768. name: "Front",
  18769. image: {
  18770. source: "./media/characters/mac/front.svg",
  18771. extra: 1048 / 987.7,
  18772. bottom: 60 / 1107.6,
  18773. }
  18774. },
  18775. },
  18776. [
  18777. {
  18778. name: "Macro",
  18779. height: math.unit(500, "feet"),
  18780. default: true
  18781. },
  18782. ]
  18783. ))
  18784. characterMakers.push(() => makeCharacter(
  18785. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18786. {
  18787. front: {
  18788. height: math.unit(5 + 2 / 12, "feet"),
  18789. weight: math.unit(190, "lb"),
  18790. name: "Front",
  18791. image: {
  18792. source: "./media/characters/bari/front.svg",
  18793. extra: 3156 / 2880,
  18794. bottom: 0.03
  18795. }
  18796. },
  18797. back: {
  18798. height: math.unit(5 + 2 / 12, "feet"),
  18799. weight: math.unit(190, "lb"),
  18800. name: "Back",
  18801. image: {
  18802. source: "./media/characters/bari/back.svg",
  18803. extra: 3260 / 2834,
  18804. bottom: 0.025
  18805. }
  18806. },
  18807. frontPlush: {
  18808. height: math.unit(5 + 2 / 12, "feet"),
  18809. weight: math.unit(190, "lb"),
  18810. name: "Front (Plush)",
  18811. image: {
  18812. source: "./media/characters/bari/front-plush.svg",
  18813. extra: 1112 / 1061,
  18814. bottom: 0.002
  18815. }
  18816. },
  18817. },
  18818. [
  18819. {
  18820. name: "Micro",
  18821. height: math.unit(3, "inches")
  18822. },
  18823. {
  18824. name: "Normal",
  18825. height: math.unit(5 + 2 / 12, "feet"),
  18826. default: true
  18827. },
  18828. {
  18829. name: "Macro",
  18830. height: math.unit(20, "feet")
  18831. },
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18836. {
  18837. front: {
  18838. height: math.unit(6 + 1 / 12, "feet"),
  18839. weight: math.unit(275, "lb"),
  18840. name: "Front",
  18841. image: {
  18842. source: "./media/characters/hunter-misha-raven/front.svg"
  18843. }
  18844. },
  18845. },
  18846. [
  18847. {
  18848. name: "Mortal",
  18849. height: math.unit(6 + 1 / 12, "feet")
  18850. },
  18851. {
  18852. name: "Divine",
  18853. height: math.unit(1.12134e34, "parsecs"),
  18854. default: true
  18855. },
  18856. ]
  18857. ))
  18858. characterMakers.push(() => makeCharacter(
  18859. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18860. {
  18861. front: {
  18862. height: math.unit(6 + 3 / 12, "feet"),
  18863. weight: math.unit(220, "lb"),
  18864. name: "Front",
  18865. image: {
  18866. source: "./media/characters/max-calore/front.svg",
  18867. extra: 1700 / 1648,
  18868. bottom: 0.01
  18869. }
  18870. },
  18871. back: {
  18872. height: math.unit(6 + 3 / 12, "feet"),
  18873. weight: math.unit(220, "lb"),
  18874. name: "Back",
  18875. image: {
  18876. source: "./media/characters/max-calore/back.svg",
  18877. extra: 1700 / 1648,
  18878. bottom: 0.01
  18879. }
  18880. },
  18881. },
  18882. [
  18883. {
  18884. name: "Normal",
  18885. height: math.unit(6 + 3 / 12, "feet"),
  18886. default: true
  18887. },
  18888. ]
  18889. ))
  18890. characterMakers.push(() => makeCharacter(
  18891. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18892. {
  18893. side: {
  18894. height: math.unit(2 + 8 / 12, "feet"),
  18895. weight: math.unit(99, "lb"),
  18896. name: "Side",
  18897. image: {
  18898. source: "./media/characters/aspen/side.svg",
  18899. extra: 152 / 138,
  18900. bottom: 0.032
  18901. }
  18902. },
  18903. },
  18904. [
  18905. {
  18906. name: "Normal",
  18907. height: math.unit(2 + 8 / 12, "feet"),
  18908. default: true
  18909. },
  18910. ]
  18911. ))
  18912. characterMakers.push(() => makeCharacter(
  18913. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18914. {
  18915. side: {
  18916. height: math.unit(3 + 2 / 12, "feet"),
  18917. weight: math.unit(224, "lb"),
  18918. name: "Side",
  18919. image: {
  18920. source: "./media/characters/sheila-feral-wolf/side.svg",
  18921. extra: 179 / 166,
  18922. bottom: 0.03
  18923. }
  18924. },
  18925. },
  18926. [
  18927. {
  18928. name: "Normal",
  18929. height: math.unit(3 + 2 / 12, "feet"),
  18930. default: true
  18931. },
  18932. ]
  18933. ))
  18934. characterMakers.push(() => makeCharacter(
  18935. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18936. {
  18937. side: {
  18938. height: math.unit(1 + 9 / 12, "feet"),
  18939. weight: math.unit(38, "lb"),
  18940. name: "Side",
  18941. image: {
  18942. source: "./media/characters/michelle/side.svg",
  18943. extra: 147 / 136.7,
  18944. bottom: 0.03
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Normal",
  18951. height: math.unit(1 + 9 / 12, "feet"),
  18952. default: true
  18953. },
  18954. ]
  18955. ))
  18956. characterMakers.push(() => makeCharacter(
  18957. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18958. {
  18959. front: {
  18960. height: math.unit(1.54, "feet"),
  18961. weight: math.unit(50, "lb"),
  18962. name: "Front",
  18963. image: {
  18964. source: "./media/characters/nino/front.svg"
  18965. }
  18966. },
  18967. },
  18968. [
  18969. {
  18970. name: "Normal",
  18971. height: math.unit(1.54, "feet"),
  18972. default: true
  18973. },
  18974. ]
  18975. ))
  18976. characterMakers.push(() => makeCharacter(
  18977. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18978. {
  18979. front: {
  18980. height: math.unit(1.49, "feet"),
  18981. weight: math.unit(45, "lb"),
  18982. name: "Front",
  18983. image: {
  18984. source: "./media/characters/viola/front.svg"
  18985. }
  18986. },
  18987. },
  18988. [
  18989. {
  18990. name: "Normal",
  18991. height: math.unit(1.49, "feet"),
  18992. default: true
  18993. },
  18994. ]
  18995. ))
  18996. characterMakers.push(() => makeCharacter(
  18997. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18998. {
  18999. front: {
  19000. height: math.unit(6 + 5 / 12, "feet"),
  19001. weight: math.unit(580, "lb"),
  19002. name: "Front",
  19003. image: {
  19004. source: "./media/characters/atlas/front.svg",
  19005. extra: 298.5 / 290,
  19006. bottom: 0.015
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Normal",
  19013. height: math.unit(6 + 5 / 12, "feet"),
  19014. default: true
  19015. },
  19016. ]
  19017. ))
  19018. characterMakers.push(() => makeCharacter(
  19019. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19020. {
  19021. side: {
  19022. height: math.unit(15.6, "inches"),
  19023. weight: math.unit(10, "lb"),
  19024. name: "Side",
  19025. image: {
  19026. source: "./media/characters/davy/side.svg",
  19027. extra: 200 / 170,
  19028. bottom: 0.01
  19029. }
  19030. },
  19031. },
  19032. [
  19033. {
  19034. name: "Normal",
  19035. height: math.unit(15.6, "inches"),
  19036. default: true
  19037. },
  19038. ]
  19039. ))
  19040. characterMakers.push(() => makeCharacter(
  19041. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19042. {
  19043. side: {
  19044. height: math.unit(4 + 8 / 12, "feet"),
  19045. weight: math.unit(166, "lb"),
  19046. name: "Side",
  19047. image: {
  19048. source: "./media/characters/fiona/side.svg",
  19049. extra: 232 / 220,
  19050. bottom: 0.03
  19051. }
  19052. },
  19053. },
  19054. [
  19055. {
  19056. name: "Normal",
  19057. height: math.unit(4 + 8 / 12, "feet"),
  19058. default: true
  19059. },
  19060. ]
  19061. ))
  19062. characterMakers.push(() => makeCharacter(
  19063. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19064. {
  19065. front: {
  19066. height: math.unit(26, "inches"),
  19067. weight: math.unit(35, "lb"),
  19068. name: "Front",
  19069. image: {
  19070. source: "./media/characters/lyla/front.svg",
  19071. bottom: 0.1
  19072. }
  19073. },
  19074. },
  19075. [
  19076. {
  19077. name: "Normal",
  19078. height: math.unit(3, "feet"),
  19079. default: true
  19080. },
  19081. ]
  19082. ))
  19083. characterMakers.push(() => makeCharacter(
  19084. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19085. {
  19086. side: {
  19087. height: math.unit(1.8, "feet"),
  19088. weight: math.unit(44, "lb"),
  19089. name: "Side",
  19090. image: {
  19091. source: "./media/characters/perseus/side.svg",
  19092. bottom: 0.21
  19093. }
  19094. },
  19095. },
  19096. [
  19097. {
  19098. name: "Normal",
  19099. height: math.unit(1.8, "feet"),
  19100. default: true
  19101. },
  19102. ]
  19103. ))
  19104. characterMakers.push(() => makeCharacter(
  19105. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19106. {
  19107. side: {
  19108. height: math.unit(4 + 2 / 12, "feet"),
  19109. weight: math.unit(20, "lb"),
  19110. name: "Side",
  19111. image: {
  19112. source: "./media/characters/remus/side.svg"
  19113. }
  19114. },
  19115. },
  19116. [
  19117. {
  19118. name: "Normal",
  19119. height: math.unit(4 + 2 / 12, "feet"),
  19120. default: true
  19121. },
  19122. ]
  19123. ))
  19124. characterMakers.push(() => makeCharacter(
  19125. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19126. {
  19127. front: {
  19128. height: math.unit(4 + 11 / 12, "feet"),
  19129. weight: math.unit(114, "lb"),
  19130. name: "Front",
  19131. image: {
  19132. source: "./media/characters/raf/front.svg",
  19133. extra: 1504/1339,
  19134. bottom: 26/1530
  19135. }
  19136. },
  19137. side: {
  19138. height: math.unit(4 + 11 / 12, "feet"),
  19139. weight: math.unit(114, "lb"),
  19140. name: "Side",
  19141. image: {
  19142. source: "./media/characters/raf/side.svg",
  19143. extra: 1466/1316,
  19144. bottom: 29/1495
  19145. }
  19146. },
  19147. paw: {
  19148. height: math.unit(1.45, "feet"),
  19149. name: "Paw",
  19150. image: {
  19151. source: "./media/characters/raf/paw.svg"
  19152. },
  19153. extraAttributes: {
  19154. "toeSize": {
  19155. name: "Toe Size",
  19156. power: 2,
  19157. type: "area",
  19158. base: math.unit(0.004, "m^2")
  19159. },
  19160. "padSize": {
  19161. name: "Pad Size",
  19162. power: 2,
  19163. type: "area",
  19164. base: math.unit(0.04, "m^2")
  19165. },
  19166. "footSize": {
  19167. name: "Foot Size",
  19168. power: 2,
  19169. type: "area",
  19170. base: math.unit(0.08, "m^2")
  19171. },
  19172. }
  19173. },
  19174. },
  19175. [
  19176. {
  19177. name: "Micro",
  19178. height: math.unit(2, "inches")
  19179. },
  19180. {
  19181. name: "Normal",
  19182. height: math.unit(4 + 11 / 12, "feet"),
  19183. default: true
  19184. },
  19185. {
  19186. name: "Macro",
  19187. height: math.unit(70, "feet")
  19188. },
  19189. ]
  19190. ))
  19191. characterMakers.push(() => makeCharacter(
  19192. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19193. {
  19194. front: {
  19195. height: math.unit(1.5, "meters"),
  19196. weight: math.unit(68, "kg"),
  19197. name: "Front",
  19198. image: {
  19199. source: "./media/characters/liam-einarr/front.svg",
  19200. extra: 2822 / 2666
  19201. }
  19202. },
  19203. back: {
  19204. height: math.unit(1.5, "meters"),
  19205. weight: math.unit(68, "kg"),
  19206. name: "Back",
  19207. image: {
  19208. source: "./media/characters/liam-einarr/back.svg",
  19209. extra: 2822 / 2666,
  19210. bottom: 0.015
  19211. }
  19212. },
  19213. },
  19214. [
  19215. {
  19216. name: "Normal",
  19217. height: math.unit(1.5, "meters"),
  19218. default: true
  19219. },
  19220. {
  19221. name: "Macro",
  19222. height: math.unit(150, "meters")
  19223. },
  19224. {
  19225. name: "Megamacro",
  19226. height: math.unit(35, "km")
  19227. },
  19228. ]
  19229. ))
  19230. characterMakers.push(() => makeCharacter(
  19231. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19232. {
  19233. front: {
  19234. height: math.unit(6, "feet"),
  19235. weight: math.unit(75, "kg"),
  19236. name: "Front",
  19237. image: {
  19238. source: "./media/characters/linda/front.svg",
  19239. extra: 930 / 874,
  19240. bottom: 0.004
  19241. }
  19242. },
  19243. },
  19244. [
  19245. {
  19246. name: "Normal",
  19247. height: math.unit(6, "feet"),
  19248. default: true
  19249. },
  19250. ]
  19251. ))
  19252. characterMakers.push(() => makeCharacter(
  19253. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19254. {
  19255. front: {
  19256. height: math.unit(6 + 8 / 12, "feet"),
  19257. weight: math.unit(220, "lb"),
  19258. name: "Front",
  19259. image: {
  19260. source: "./media/characters/caylex/front.svg",
  19261. extra: 821 / 772,
  19262. bottom: 0.07
  19263. }
  19264. },
  19265. back: {
  19266. height: math.unit(6 + 8 / 12, "feet"),
  19267. weight: math.unit(220, "lb"),
  19268. name: "Back",
  19269. image: {
  19270. source: "./media/characters/caylex/back.svg",
  19271. extra: 821 / 772,
  19272. bottom: 0.022
  19273. }
  19274. },
  19275. hand: {
  19276. height: math.unit(1.25, "feet"),
  19277. name: "Hand",
  19278. image: {
  19279. source: "./media/characters/caylex/hand.svg"
  19280. }
  19281. },
  19282. foot: {
  19283. height: math.unit(1.6, "feet"),
  19284. name: "Foot",
  19285. image: {
  19286. source: "./media/characters/caylex/foot.svg"
  19287. }
  19288. },
  19289. armored: {
  19290. height: math.unit(6 + 8 / 12, "feet"),
  19291. weight: math.unit(250, "lb"),
  19292. name: "Armored",
  19293. image: {
  19294. source: "./media/characters/caylex/armored.svg",
  19295. extra: 1420 / 1310,
  19296. bottom: 0.045
  19297. }
  19298. },
  19299. },
  19300. [
  19301. {
  19302. name: "Normal",
  19303. height: math.unit(6 + 8 / 12, "feet"),
  19304. default: true
  19305. },
  19306. {
  19307. name: "Normal+",
  19308. height: math.unit(12, "feet")
  19309. },
  19310. ]
  19311. ))
  19312. characterMakers.push(() => makeCharacter(
  19313. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19314. {
  19315. front: {
  19316. height: math.unit(7 + 6 / 12, "feet"),
  19317. weight: math.unit(288, "lb"),
  19318. name: "Front",
  19319. image: {
  19320. source: "./media/characters/alana/front.svg",
  19321. extra: 679 / 653,
  19322. bottom: 22.5 / 701
  19323. }
  19324. },
  19325. },
  19326. [
  19327. {
  19328. name: "Normal",
  19329. height: math.unit(7 + 6 / 12, "feet")
  19330. },
  19331. {
  19332. name: "Large",
  19333. height: math.unit(50, "feet")
  19334. },
  19335. {
  19336. name: "Macro",
  19337. height: math.unit(100, "feet"),
  19338. default: true
  19339. },
  19340. {
  19341. name: "Macro+",
  19342. height: math.unit(200, "feet")
  19343. },
  19344. ]
  19345. ))
  19346. characterMakers.push(() => makeCharacter(
  19347. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19348. {
  19349. front: {
  19350. height: math.unit(6 + 1 / 12, "feet"),
  19351. weight: math.unit(210, "lb"),
  19352. name: "Front",
  19353. image: {
  19354. source: "./media/characters/hasani/front.svg",
  19355. extra: 244 / 232,
  19356. bottom: 0.01
  19357. }
  19358. },
  19359. back: {
  19360. height: math.unit(6 + 1 / 12, "feet"),
  19361. weight: math.unit(210, "lb"),
  19362. name: "Back",
  19363. image: {
  19364. source: "./media/characters/hasani/back.svg",
  19365. extra: 244 / 232,
  19366. bottom: 0.01
  19367. }
  19368. },
  19369. },
  19370. [
  19371. {
  19372. name: "Normal",
  19373. height: math.unit(6 + 1 / 12, "feet")
  19374. },
  19375. {
  19376. name: "Macro",
  19377. height: math.unit(175, "feet"),
  19378. default: true
  19379. },
  19380. ]
  19381. ))
  19382. characterMakers.push(() => makeCharacter(
  19383. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19384. {
  19385. front: {
  19386. height: math.unit(1.82, "meters"),
  19387. weight: math.unit(140, "lb"),
  19388. name: "Front",
  19389. image: {
  19390. source: "./media/characters/nita/front.svg",
  19391. extra: 2473 / 2363,
  19392. bottom: 0.01
  19393. }
  19394. },
  19395. },
  19396. [
  19397. {
  19398. name: "Normal",
  19399. height: math.unit(1.82, "m")
  19400. },
  19401. {
  19402. name: "Macro",
  19403. height: math.unit(300, "m")
  19404. },
  19405. {
  19406. name: "Mistake Canon",
  19407. height: math.unit(0.5, "miles"),
  19408. default: true
  19409. },
  19410. {
  19411. name: "Big Mistake",
  19412. height: math.unit(13, "miles")
  19413. },
  19414. {
  19415. name: "Playing God",
  19416. height: math.unit(2450, "miles")
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19422. {
  19423. front: {
  19424. height: math.unit(4, "feet"),
  19425. weight: math.unit(120, "lb"),
  19426. name: "Front",
  19427. image: {
  19428. source: "./media/characters/shiriko/front.svg",
  19429. extra: 970/934,
  19430. bottom: 5/975
  19431. }
  19432. },
  19433. },
  19434. [
  19435. {
  19436. name: "Normal",
  19437. height: math.unit(4, "feet"),
  19438. default: true
  19439. },
  19440. ]
  19441. ))
  19442. characterMakers.push(() => makeCharacter(
  19443. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19444. {
  19445. front: {
  19446. height: math.unit(6, "feet"),
  19447. name: "front",
  19448. image: {
  19449. source: "./media/characters/deja/front.svg",
  19450. extra: 926 / 840,
  19451. bottom: 0.07
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Planck Length",
  19458. height: math.unit(1.6e-35, "meters")
  19459. },
  19460. {
  19461. name: "Normal",
  19462. height: math.unit(30.48, "meters"),
  19463. default: true
  19464. },
  19465. {
  19466. name: "Universal",
  19467. height: math.unit(8.8e26, "meters")
  19468. },
  19469. ]
  19470. ))
  19471. characterMakers.push(() => makeCharacter(
  19472. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19473. {
  19474. side: {
  19475. height: math.unit(8, "feet"),
  19476. weight: math.unit(6300, "lb"),
  19477. name: "Side",
  19478. image: {
  19479. source: "./media/characters/anima/side.svg",
  19480. bottom: 0.035
  19481. }
  19482. },
  19483. },
  19484. [
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(8, "feet"),
  19488. default: true
  19489. },
  19490. ]
  19491. ))
  19492. characterMakers.push(() => makeCharacter(
  19493. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19494. {
  19495. front: {
  19496. height: math.unit(8, "feet"),
  19497. weight: math.unit(350, "lb"),
  19498. name: "Front",
  19499. image: {
  19500. source: "./media/characters/bianca/front.svg",
  19501. extra: 234 / 225,
  19502. bottom: 0.03
  19503. }
  19504. },
  19505. },
  19506. [
  19507. {
  19508. name: "Normal",
  19509. height: math.unit(8, "feet"),
  19510. default: true
  19511. },
  19512. ]
  19513. ))
  19514. characterMakers.push(() => makeCharacter(
  19515. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19516. {
  19517. front: {
  19518. height: math.unit(11 + 5/12, "feet"),
  19519. weight: math.unit(1200, "lb"),
  19520. name: "Front",
  19521. image: {
  19522. source: "./media/characters/adinia/front.svg",
  19523. extra: 1767/1641,
  19524. bottom: 44/1811
  19525. },
  19526. extraAttributes: {
  19527. "energyIntake": {
  19528. name: "Energy Intake",
  19529. power: 3,
  19530. type: "energy",
  19531. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19532. },
  19533. }
  19534. },
  19535. back: {
  19536. height: math.unit(11 + 5/12, "feet"),
  19537. weight: math.unit(1200, "lb"),
  19538. name: "Back",
  19539. image: {
  19540. source: "./media/characters/adinia/back.svg",
  19541. extra: 1834/1684,
  19542. bottom: 14/1848
  19543. },
  19544. extraAttributes: {
  19545. "energyIntake": {
  19546. name: "Energy Intake",
  19547. power: 3,
  19548. type: "energy",
  19549. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19550. },
  19551. }
  19552. },
  19553. maw: {
  19554. height: math.unit(3.79, "feet"),
  19555. name: "Maw",
  19556. image: {
  19557. source: "./media/characters/adinia/maw.svg"
  19558. }
  19559. },
  19560. rump: {
  19561. height: math.unit(4.6, "feet"),
  19562. name: "Rump",
  19563. image: {
  19564. source: "./media/characters/adinia/rump.svg"
  19565. }
  19566. },
  19567. },
  19568. [
  19569. {
  19570. name: "Normal",
  19571. height: math.unit(11 + 5 / 12, "feet"),
  19572. default: true
  19573. },
  19574. ]
  19575. ))
  19576. characterMakers.push(() => makeCharacter(
  19577. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19578. {
  19579. front: {
  19580. height: math.unit(3, "meters"),
  19581. weight: math.unit(200, "kg"),
  19582. name: "Front",
  19583. image: {
  19584. source: "./media/characters/lykasa/front.svg",
  19585. extra: 1076 / 976,
  19586. bottom: 0.06
  19587. }
  19588. },
  19589. },
  19590. [
  19591. {
  19592. name: "Normal",
  19593. height: math.unit(3, "meters")
  19594. },
  19595. {
  19596. name: "Kaiju",
  19597. height: math.unit(120, "meters"),
  19598. default: true
  19599. },
  19600. {
  19601. name: "Mega Kaiju",
  19602. height: math.unit(240, "km")
  19603. },
  19604. {
  19605. name: "Giga Kaiju",
  19606. height: math.unit(400, "megameters")
  19607. },
  19608. {
  19609. name: "Tera Kaiju",
  19610. height: math.unit(800, "gigameters")
  19611. },
  19612. {
  19613. name: "Kaiju Dragon Goddess",
  19614. height: math.unit(26, "zettaparsecs")
  19615. },
  19616. ]
  19617. ))
  19618. characterMakers.push(() => makeCharacter(
  19619. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19620. {
  19621. side: {
  19622. height: math.unit(283 / 124 * 6, "feet"),
  19623. weight: math.unit(35000, "lb"),
  19624. name: "Side",
  19625. image: {
  19626. source: "./media/characters/malfaren/side.svg",
  19627. extra: 1310/529,
  19628. bottom: 24/1334
  19629. }
  19630. },
  19631. front: {
  19632. height: math.unit(22.36, "feet"),
  19633. weight: math.unit(35000, "lb"),
  19634. name: "Front",
  19635. image: {
  19636. source: "./media/characters/malfaren/front.svg",
  19637. extra: 1237/1115,
  19638. bottom: 32/1269
  19639. }
  19640. },
  19641. maw: {
  19642. height: math.unit(6.9, "feet"),
  19643. name: "Maw",
  19644. image: {
  19645. source: "./media/characters/malfaren/maw.svg"
  19646. }
  19647. },
  19648. dick: {
  19649. height: math.unit(6.19, "feet"),
  19650. name: "Dick",
  19651. image: {
  19652. source: "./media/characters/malfaren/dick.svg"
  19653. }
  19654. },
  19655. eye: {
  19656. height: math.unit(0.69, "feet"),
  19657. name: "Eye",
  19658. image: {
  19659. source: "./media/characters/malfaren/eye.svg"
  19660. }
  19661. },
  19662. },
  19663. [
  19664. {
  19665. name: "Big",
  19666. height: math.unit(283 / 162 * 6, "feet"),
  19667. },
  19668. {
  19669. name: "Bigger",
  19670. height: math.unit(283 / 124 * 6, "feet")
  19671. },
  19672. {
  19673. name: "Massive",
  19674. height: math.unit(283 / 92 * 6, "feet"),
  19675. default: true
  19676. },
  19677. {
  19678. name: "👀💦",
  19679. height: math.unit(283 / 73 * 6, "feet"),
  19680. },
  19681. ]
  19682. ))
  19683. characterMakers.push(() => makeCharacter(
  19684. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19685. {
  19686. front: {
  19687. height: math.unit(1.7, "m"),
  19688. weight: math.unit(70, "kg"),
  19689. name: "Front",
  19690. image: {
  19691. source: "./media/characters/kernel/front.svg",
  19692. extra: 1960/1821,
  19693. bottom: 17/1977
  19694. }
  19695. },
  19696. },
  19697. [
  19698. {
  19699. name: "Nano",
  19700. height: math.unit(17, "micrometers")
  19701. },
  19702. {
  19703. name: "Micro",
  19704. height: math.unit(1.7, "mm")
  19705. },
  19706. {
  19707. name: "Small",
  19708. height: math.unit(1.7, "cm")
  19709. },
  19710. {
  19711. name: "Normal",
  19712. height: math.unit(1.7, "m"),
  19713. default: true
  19714. },
  19715. ]
  19716. ))
  19717. characterMakers.push(() => makeCharacter(
  19718. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19719. {
  19720. front: {
  19721. height: math.unit(1.75, "meters"),
  19722. weight: math.unit(65, "kg"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/jayne-folest/front.svg",
  19726. extra: 2115 / 2007,
  19727. bottom: 0.02
  19728. }
  19729. },
  19730. back: {
  19731. height: math.unit(1.75, "meters"),
  19732. weight: math.unit(65, "kg"),
  19733. name: "Back",
  19734. image: {
  19735. source: "./media/characters/jayne-folest/back.svg",
  19736. extra: 2115 / 2007,
  19737. bottom: 0.005
  19738. }
  19739. },
  19740. frontClothed: {
  19741. height: math.unit(1.75, "meters"),
  19742. weight: math.unit(65, "kg"),
  19743. name: "Front (Clothed)",
  19744. image: {
  19745. source: "./media/characters/jayne-folest/front-clothed.svg",
  19746. extra: 2115 / 2007,
  19747. bottom: 0.035
  19748. }
  19749. },
  19750. hand: {
  19751. height: math.unit(1 / 1.260, "feet"),
  19752. name: "Hand",
  19753. image: {
  19754. source: "./media/characters/jayne-folest/hand.svg"
  19755. }
  19756. },
  19757. foot: {
  19758. height: math.unit(1 / 0.918, "feet"),
  19759. name: "Foot",
  19760. image: {
  19761. source: "./media/characters/jayne-folest/foot.svg"
  19762. }
  19763. },
  19764. },
  19765. [
  19766. {
  19767. name: "Micro",
  19768. height: math.unit(4, "cm")
  19769. },
  19770. {
  19771. name: "Normal",
  19772. height: math.unit(1.75, "meters")
  19773. },
  19774. {
  19775. name: "Macro",
  19776. height: math.unit(47.5, "meters"),
  19777. default: true
  19778. },
  19779. ]
  19780. ))
  19781. characterMakers.push(() => makeCharacter(
  19782. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19783. {
  19784. front: {
  19785. height: math.unit(180, "cm"),
  19786. weight: math.unit(70, "kg"),
  19787. name: "Front",
  19788. image: {
  19789. source: "./media/characters/algier/front.svg",
  19790. extra: 596 / 572,
  19791. bottom: 0.04
  19792. }
  19793. },
  19794. back: {
  19795. height: math.unit(180, "cm"),
  19796. weight: math.unit(70, "kg"),
  19797. name: "Back",
  19798. image: {
  19799. source: "./media/characters/algier/back.svg",
  19800. extra: 596 / 572,
  19801. bottom: 0.025
  19802. }
  19803. },
  19804. frontdressed: {
  19805. height: math.unit(180, "cm"),
  19806. weight: math.unit(150, "kg"),
  19807. name: "Front-dressed",
  19808. image: {
  19809. source: "./media/characters/algier/front-dressed.svg",
  19810. extra: 596 / 572,
  19811. bottom: 0.038
  19812. }
  19813. },
  19814. },
  19815. [
  19816. {
  19817. name: "Micro",
  19818. height: math.unit(5, "cm")
  19819. },
  19820. {
  19821. name: "Normal",
  19822. height: math.unit(180, "cm"),
  19823. default: true
  19824. },
  19825. {
  19826. name: "Macro",
  19827. height: math.unit(64, "m")
  19828. },
  19829. ]
  19830. ))
  19831. characterMakers.push(() => makeCharacter(
  19832. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19833. {
  19834. upright: {
  19835. height: math.unit(7, "feet"),
  19836. weight: math.unit(300, "lb"),
  19837. name: "Upright",
  19838. image: {
  19839. source: "./media/characters/pretzel/upright.svg",
  19840. extra: 534 / 522,
  19841. bottom: 0.065
  19842. }
  19843. },
  19844. sprawling: {
  19845. height: math.unit(3.75, "feet"),
  19846. weight: math.unit(300, "lb"),
  19847. name: "Sprawling",
  19848. image: {
  19849. source: "./media/characters/pretzel/sprawling.svg",
  19850. extra: 314 / 281,
  19851. bottom: 0.1
  19852. }
  19853. },
  19854. tongue: {
  19855. height: math.unit(2, "feet"),
  19856. name: "Tongue",
  19857. image: {
  19858. source: "./media/characters/pretzel/tongue.svg"
  19859. }
  19860. },
  19861. },
  19862. [
  19863. {
  19864. name: "Normal",
  19865. height: math.unit(7, "feet"),
  19866. default: true
  19867. },
  19868. {
  19869. name: "Oversized",
  19870. height: math.unit(15, "feet")
  19871. },
  19872. {
  19873. name: "Huge",
  19874. height: math.unit(30, "feet")
  19875. },
  19876. {
  19877. name: "Macro",
  19878. height: math.unit(250, "feet")
  19879. },
  19880. ]
  19881. ))
  19882. characterMakers.push(() => makeCharacter(
  19883. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19884. {
  19885. sideFront: {
  19886. height: math.unit(5 + 2 / 12, "feet"),
  19887. weight: math.unit(120, "lb"),
  19888. name: "Front Side",
  19889. image: {
  19890. source: "./media/characters/roxi/side-front.svg",
  19891. extra: 2924 / 2717,
  19892. bottom: 0.08
  19893. }
  19894. },
  19895. sideBack: {
  19896. height: math.unit(5 + 2 / 12, "feet"),
  19897. weight: math.unit(120, "lb"),
  19898. name: "Back Side",
  19899. image: {
  19900. source: "./media/characters/roxi/side-back.svg",
  19901. extra: 2904 / 2693,
  19902. bottom: 0.06
  19903. }
  19904. },
  19905. front: {
  19906. height: math.unit(5 + 2 / 12, "feet"),
  19907. weight: math.unit(120, "lb"),
  19908. name: "Front",
  19909. image: {
  19910. source: "./media/characters/roxi/front.svg",
  19911. extra: 2028 / 1907,
  19912. bottom: 0.01
  19913. }
  19914. },
  19915. frontAlt: {
  19916. height: math.unit(5 + 2 / 12, "feet"),
  19917. weight: math.unit(120, "lb"),
  19918. name: "Front (Alt)",
  19919. image: {
  19920. source: "./media/characters/roxi/front-alt.svg",
  19921. extra: 1828 / 1798,
  19922. bottom: 0.01
  19923. }
  19924. },
  19925. sitting: {
  19926. height: math.unit(2.8, "feet"),
  19927. weight: math.unit(120, "lb"),
  19928. name: "Sitting",
  19929. image: {
  19930. source: "./media/characters/roxi/sitting.svg",
  19931. extra: 2660 / 2462,
  19932. bottom: 0.1
  19933. }
  19934. },
  19935. },
  19936. [
  19937. {
  19938. name: "Normal",
  19939. height: math.unit(5 + 2 / 12, "feet"),
  19940. default: true
  19941. },
  19942. ]
  19943. ))
  19944. characterMakers.push(() => makeCharacter(
  19945. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19946. {
  19947. side: {
  19948. height: math.unit(55, "feet"),
  19949. weight: math.unit(153, "tons"),
  19950. name: "Side",
  19951. image: {
  19952. source: "./media/characters/shadow/side.svg",
  19953. extra: 701 / 628,
  19954. bottom: 0.02
  19955. }
  19956. },
  19957. flying: {
  19958. height: math.unit(145, "feet"),
  19959. weight: math.unit(153, "tons"),
  19960. name: "Flying",
  19961. image: {
  19962. source: "./media/characters/shadow/flying.svg"
  19963. }
  19964. },
  19965. },
  19966. [
  19967. {
  19968. name: "Normal",
  19969. height: math.unit(55, "feet"),
  19970. default: true
  19971. },
  19972. ]
  19973. ))
  19974. characterMakers.push(() => makeCharacter(
  19975. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19976. {
  19977. front: {
  19978. height: math.unit(6, "feet"),
  19979. weight: math.unit(200, "lb"),
  19980. name: "Front",
  19981. image: {
  19982. source: "./media/characters/marcie/front.svg",
  19983. extra: 960 / 876,
  19984. bottom: 58 / 1017.87
  19985. }
  19986. },
  19987. },
  19988. [
  19989. {
  19990. name: "Macro",
  19991. height: math.unit(1, "mile"),
  19992. default: true
  19993. },
  19994. ]
  19995. ))
  19996. characterMakers.push(() => makeCharacter(
  19997. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19998. {
  19999. front: {
  20000. height: math.unit(7, "feet"),
  20001. weight: math.unit(200, "lb"),
  20002. name: "Front",
  20003. image: {
  20004. source: "./media/characters/kachina/front.svg",
  20005. extra: 1290.68 / 1119,
  20006. bottom: 36.5 / 1327.18
  20007. }
  20008. },
  20009. },
  20010. [
  20011. {
  20012. name: "Normal",
  20013. height: math.unit(7, "feet"),
  20014. default: true
  20015. },
  20016. ]
  20017. ))
  20018. characterMakers.push(() => makeCharacter(
  20019. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20020. {
  20021. looking: {
  20022. height: math.unit(2, "meters"),
  20023. weight: math.unit(300, "kg"),
  20024. name: "Looking",
  20025. image: {
  20026. source: "./media/characters/kash/looking.svg",
  20027. extra: 474 / 344,
  20028. bottom: 0.03
  20029. }
  20030. },
  20031. side: {
  20032. height: math.unit(2, "meters"),
  20033. weight: math.unit(300, "kg"),
  20034. name: "Side",
  20035. image: {
  20036. source: "./media/characters/kash/side.svg",
  20037. extra: 302 / 251,
  20038. bottom: 0.03
  20039. }
  20040. },
  20041. front: {
  20042. height: math.unit(2, "meters"),
  20043. weight: math.unit(300, "kg"),
  20044. name: "Front",
  20045. image: {
  20046. source: "./media/characters/kash/front.svg",
  20047. extra: 495 / 360,
  20048. bottom: 0.015
  20049. }
  20050. },
  20051. },
  20052. [
  20053. {
  20054. name: "Normal",
  20055. height: math.unit(2, "meters"),
  20056. default: true
  20057. },
  20058. {
  20059. name: "Big",
  20060. height: math.unit(3, "meters")
  20061. },
  20062. {
  20063. name: "Large",
  20064. height: math.unit(5, "meters")
  20065. },
  20066. ]
  20067. ))
  20068. characterMakers.push(() => makeCharacter(
  20069. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20070. {
  20071. feeding: {
  20072. height: math.unit(6.7, "feet"),
  20073. weight: math.unit(350, "lb"),
  20074. name: "Feeding",
  20075. image: {
  20076. source: "./media/characters/lalim/feeding.svg",
  20077. }
  20078. },
  20079. },
  20080. [
  20081. {
  20082. name: "Normal",
  20083. height: math.unit(6.7, "feet"),
  20084. default: true
  20085. },
  20086. ]
  20087. ))
  20088. characterMakers.push(() => makeCharacter(
  20089. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20090. {
  20091. front: {
  20092. height: math.unit(9.5, "feet"),
  20093. weight: math.unit(600, "lb"),
  20094. name: "Front",
  20095. image: {
  20096. source: "./media/characters/de'vout/front.svg",
  20097. extra: 1443 / 1328,
  20098. bottom: 0.025
  20099. }
  20100. },
  20101. back: {
  20102. height: math.unit(9.5, "feet"),
  20103. weight: math.unit(600, "lb"),
  20104. name: "Back",
  20105. image: {
  20106. source: "./media/characters/de'vout/back.svg",
  20107. extra: 1443 / 1328
  20108. }
  20109. },
  20110. frontDressed: {
  20111. height: math.unit(9.5, "feet"),
  20112. weight: math.unit(600, "lb"),
  20113. name: "Front (Dressed",
  20114. image: {
  20115. source: "./media/characters/de'vout/front-dressed.svg",
  20116. extra: 1443 / 1328,
  20117. bottom: 0.025
  20118. }
  20119. },
  20120. backDressed: {
  20121. height: math.unit(9.5, "feet"),
  20122. weight: math.unit(600, "lb"),
  20123. name: "Back (Dressed",
  20124. image: {
  20125. source: "./media/characters/de'vout/back-dressed.svg",
  20126. extra: 1443 / 1328
  20127. }
  20128. },
  20129. },
  20130. [
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(9.5, "feet"),
  20134. default: true
  20135. },
  20136. ]
  20137. ))
  20138. characterMakers.push(() => makeCharacter(
  20139. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20140. {
  20141. front: {
  20142. height: math.unit(8, "feet"),
  20143. weight: math.unit(225, "lb"),
  20144. name: "Front",
  20145. image: {
  20146. source: "./media/characters/talana/front.svg",
  20147. extra: 1410 / 1300,
  20148. bottom: 0.015
  20149. }
  20150. },
  20151. frontDressed: {
  20152. height: math.unit(8, "feet"),
  20153. weight: math.unit(225, "lb"),
  20154. name: "Front (Dressed",
  20155. image: {
  20156. source: "./media/characters/talana/front-dressed.svg",
  20157. extra: 1410 / 1300,
  20158. bottom: 0.015
  20159. }
  20160. },
  20161. },
  20162. [
  20163. {
  20164. name: "Normal",
  20165. height: math.unit(8, "feet"),
  20166. default: true
  20167. },
  20168. ]
  20169. ))
  20170. characterMakers.push(() => makeCharacter(
  20171. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20172. {
  20173. side: {
  20174. height: math.unit(7.2, "feet"),
  20175. weight: math.unit(150, "lb"),
  20176. name: "Side",
  20177. image: {
  20178. source: "./media/characters/xeauvok/side.svg",
  20179. extra: 1975 / 1523,
  20180. bottom: 0.07
  20181. }
  20182. },
  20183. },
  20184. [
  20185. {
  20186. name: "Normal",
  20187. height: math.unit(7.2, "feet"),
  20188. default: true
  20189. },
  20190. ]
  20191. ))
  20192. characterMakers.push(() => makeCharacter(
  20193. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20194. {
  20195. side: {
  20196. height: math.unit(4, "meters"),
  20197. weight: math.unit(2200, "kg"),
  20198. name: "Side",
  20199. image: {
  20200. source: "./media/characters/zara/side.svg",
  20201. extra: 765/744,
  20202. bottom: 156/921
  20203. }
  20204. },
  20205. },
  20206. [
  20207. {
  20208. name: "Normal",
  20209. height: math.unit(4, "meters"),
  20210. default: true
  20211. },
  20212. ]
  20213. ))
  20214. characterMakers.push(() => makeCharacter(
  20215. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20216. {
  20217. side: {
  20218. height: math.unit(6, "feet"),
  20219. weight: math.unit(150, "lb"),
  20220. name: "Side",
  20221. image: {
  20222. source: "./media/characters/richard-dragon/side.svg",
  20223. extra: 845 / 340,
  20224. bottom: 0.017
  20225. }
  20226. },
  20227. maw: {
  20228. height: math.unit(2.97, "feet"),
  20229. name: "Maw",
  20230. image: {
  20231. source: "./media/characters/richard-dragon/maw.svg"
  20232. }
  20233. },
  20234. },
  20235. [
  20236. ]
  20237. ))
  20238. characterMakers.push(() => makeCharacter(
  20239. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20240. {
  20241. front: {
  20242. height: math.unit(4, "feet"),
  20243. weight: math.unit(100, "lb"),
  20244. name: "Front",
  20245. image: {
  20246. source: "./media/characters/richard-smeargle/front.svg",
  20247. extra: 2952 / 2820,
  20248. bottom: 0.028
  20249. }
  20250. },
  20251. },
  20252. [
  20253. {
  20254. name: "Normal",
  20255. height: math.unit(4, "feet"),
  20256. default: true
  20257. },
  20258. {
  20259. name: "Dynamax",
  20260. height: math.unit(20, "meters")
  20261. },
  20262. ]
  20263. ))
  20264. characterMakers.push(() => makeCharacter(
  20265. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20266. {
  20267. front: {
  20268. height: math.unit(6, "feet"),
  20269. weight: math.unit(110, "lb"),
  20270. name: "Front",
  20271. image: {
  20272. source: "./media/characters/klay/front.svg",
  20273. extra: 962 / 883,
  20274. bottom: 0.04
  20275. }
  20276. },
  20277. back: {
  20278. height: math.unit(6, "feet"),
  20279. weight: math.unit(110, "lb"),
  20280. name: "Back",
  20281. image: {
  20282. source: "./media/characters/klay/back.svg",
  20283. extra: 962 / 883
  20284. }
  20285. },
  20286. beans: {
  20287. height: math.unit(1.15, "feet"),
  20288. name: "Beans",
  20289. image: {
  20290. source: "./media/characters/klay/beans.svg"
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Micro",
  20297. height: math.unit(6, "inches")
  20298. },
  20299. {
  20300. name: "Mini",
  20301. height: math.unit(3, "feet")
  20302. },
  20303. {
  20304. name: "Normal",
  20305. height: math.unit(6, "feet"),
  20306. default: true
  20307. },
  20308. {
  20309. name: "Big",
  20310. height: math.unit(25, "feet")
  20311. },
  20312. {
  20313. name: "Macro",
  20314. height: math.unit(100, "feet")
  20315. },
  20316. {
  20317. name: "Megamacro",
  20318. height: math.unit(400, "feet")
  20319. },
  20320. ]
  20321. ))
  20322. characterMakers.push(() => makeCharacter(
  20323. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20324. {
  20325. front: {
  20326. height: math.unit(6, "feet"),
  20327. weight: math.unit(160, "lb"),
  20328. name: "Front",
  20329. image: {
  20330. source: "./media/characters/marcus/front.svg",
  20331. extra: 734 / 676,
  20332. bottom: 0.03
  20333. }
  20334. },
  20335. },
  20336. [
  20337. {
  20338. name: "Little",
  20339. height: math.unit(6, "feet")
  20340. },
  20341. {
  20342. name: "Normal",
  20343. height: math.unit(110, "feet"),
  20344. default: true
  20345. },
  20346. {
  20347. name: "Macro",
  20348. height: math.unit(250, "feet")
  20349. },
  20350. {
  20351. name: "Megamacro",
  20352. height: math.unit(1000, "feet")
  20353. },
  20354. ]
  20355. ))
  20356. characterMakers.push(() => makeCharacter(
  20357. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20358. {
  20359. front: {
  20360. height: math.unit(7, "feet"),
  20361. weight: math.unit(275, "lb"),
  20362. name: "Front",
  20363. image: {
  20364. source: "./media/characters/claude-delroute/front.svg",
  20365. extra: 902/827,
  20366. bottom: 26/928
  20367. }
  20368. },
  20369. side: {
  20370. height: math.unit(7, "feet"),
  20371. weight: math.unit(275, "lb"),
  20372. name: "Side",
  20373. image: {
  20374. source: "./media/characters/claude-delroute/side.svg",
  20375. extra: 908/853,
  20376. bottom: 16/924
  20377. }
  20378. },
  20379. back: {
  20380. height: math.unit(7, "feet"),
  20381. weight: math.unit(275, "lb"),
  20382. name: "Back",
  20383. image: {
  20384. source: "./media/characters/claude-delroute/back.svg",
  20385. extra: 911/829,
  20386. bottom: 18/929
  20387. }
  20388. },
  20389. maw: {
  20390. height: math.unit(0.6407, "meters"),
  20391. name: "Maw",
  20392. image: {
  20393. source: "./media/characters/claude-delroute/maw.svg"
  20394. }
  20395. },
  20396. },
  20397. [
  20398. {
  20399. name: "Normal",
  20400. height: math.unit(7, "feet"),
  20401. default: true
  20402. },
  20403. {
  20404. name: "Lorge",
  20405. height: math.unit(20, "feet")
  20406. },
  20407. ]
  20408. ))
  20409. characterMakers.push(() => makeCharacter(
  20410. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20411. {
  20412. front: {
  20413. height: math.unit(8 + 4 / 12, "feet"),
  20414. weight: math.unit(600, "lb"),
  20415. name: "Front",
  20416. image: {
  20417. source: "./media/characters/dragonien/front.svg",
  20418. extra: 100 / 94,
  20419. bottom: 3.3 / 103.3445
  20420. }
  20421. },
  20422. back: {
  20423. height: math.unit(8 + 4 / 12, "feet"),
  20424. weight: math.unit(600, "lb"),
  20425. name: "Back",
  20426. image: {
  20427. source: "./media/characters/dragonien/back.svg",
  20428. extra: 776 / 746,
  20429. bottom: 6.4 / 782.0616
  20430. }
  20431. },
  20432. foot: {
  20433. height: math.unit(1.54, "feet"),
  20434. name: "Foot",
  20435. image: {
  20436. source: "./media/characters/dragonien/foot.svg",
  20437. }
  20438. },
  20439. },
  20440. [
  20441. {
  20442. name: "Normal",
  20443. height: math.unit(8 + 4 / 12, "feet"),
  20444. default: true
  20445. },
  20446. {
  20447. name: "Macro",
  20448. height: math.unit(200, "feet")
  20449. },
  20450. {
  20451. name: "Megamacro",
  20452. height: math.unit(1, "mile")
  20453. },
  20454. {
  20455. name: "Gigamacro",
  20456. height: math.unit(1000, "miles")
  20457. },
  20458. ]
  20459. ))
  20460. characterMakers.push(() => makeCharacter(
  20461. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20462. {
  20463. front: {
  20464. height: math.unit(5 + 2 / 12, "feet"),
  20465. weight: math.unit(110, "lb"),
  20466. name: "Front",
  20467. image: {
  20468. source: "./media/characters/desta/front.svg",
  20469. extra: 767 / 726,
  20470. bottom: 11.7 / 779
  20471. }
  20472. },
  20473. back: {
  20474. height: math.unit(5 + 2 / 12, "feet"),
  20475. weight: math.unit(110, "lb"),
  20476. name: "Back",
  20477. image: {
  20478. source: "./media/characters/desta/back.svg",
  20479. extra: 777 / 728,
  20480. bottom: 6 / 784
  20481. }
  20482. },
  20483. frontAlt: {
  20484. height: math.unit(5 + 2 / 12, "feet"),
  20485. weight: math.unit(110, "lb"),
  20486. name: "Front",
  20487. image: {
  20488. source: "./media/characters/desta/front-alt.svg",
  20489. extra: 1482 / 1417
  20490. }
  20491. },
  20492. side: {
  20493. height: math.unit(5 + 2 / 12, "feet"),
  20494. weight: math.unit(110, "lb"),
  20495. name: "Side",
  20496. image: {
  20497. source: "./media/characters/desta/side.svg",
  20498. extra: 2579 / 2491,
  20499. bottom: 0.053
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Micro",
  20506. height: math.unit(6, "inches")
  20507. },
  20508. {
  20509. name: "Normal",
  20510. height: math.unit(5 + 2 / 12, "feet"),
  20511. default: true
  20512. },
  20513. {
  20514. name: "Macro",
  20515. height: math.unit(62, "feet")
  20516. },
  20517. {
  20518. name: "Megamacro",
  20519. height: math.unit(1800, "feet")
  20520. },
  20521. ]
  20522. ))
  20523. characterMakers.push(() => makeCharacter(
  20524. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20525. {
  20526. front: {
  20527. height: math.unit(10, "feet"),
  20528. weight: math.unit(700, "lb"),
  20529. name: "Front",
  20530. image: {
  20531. source: "./media/characters/storm-alystar/front.svg",
  20532. extra: 2112 / 1898,
  20533. bottom: 0.034
  20534. }
  20535. },
  20536. },
  20537. [
  20538. {
  20539. name: "Micro",
  20540. height: math.unit(3.5, "inches")
  20541. },
  20542. {
  20543. name: "Normal",
  20544. height: math.unit(10, "feet"),
  20545. default: true
  20546. },
  20547. {
  20548. name: "Macro",
  20549. height: math.unit(400, "feet")
  20550. },
  20551. {
  20552. name: "Deific",
  20553. height: math.unit(60, "miles")
  20554. },
  20555. ]
  20556. ))
  20557. characterMakers.push(() => makeCharacter(
  20558. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20559. {
  20560. front: {
  20561. height: math.unit(2.35, "meters"),
  20562. weight: math.unit(119, "kg"),
  20563. name: "Front",
  20564. image: {
  20565. source: "./media/characters/ilia/front.svg",
  20566. extra: 1285 / 1255,
  20567. bottom: 0.06
  20568. }
  20569. },
  20570. },
  20571. [
  20572. {
  20573. name: "Normal",
  20574. height: math.unit(2.35, "meters")
  20575. },
  20576. {
  20577. name: "Macro",
  20578. height: math.unit(140, "meters"),
  20579. default: true
  20580. },
  20581. {
  20582. name: "Megamacro",
  20583. height: math.unit(100, "miles")
  20584. },
  20585. ]
  20586. ))
  20587. characterMakers.push(() => makeCharacter(
  20588. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20589. {
  20590. front: {
  20591. height: math.unit(6 + 5 / 12, "feet"),
  20592. weight: math.unit(190, "lb"),
  20593. name: "Front",
  20594. image: {
  20595. source: "./media/characters/kingdead/front.svg",
  20596. extra: 1228 / 1177
  20597. }
  20598. },
  20599. },
  20600. [
  20601. {
  20602. name: "Micro",
  20603. height: math.unit(7, "inches")
  20604. },
  20605. {
  20606. name: "Normal",
  20607. height: math.unit(6 + 5 / 12, "feet")
  20608. },
  20609. {
  20610. name: "Macro",
  20611. height: math.unit(150, "feet"),
  20612. default: true
  20613. },
  20614. {
  20615. name: "Megamacro",
  20616. height: math.unit(200, "miles")
  20617. },
  20618. ]
  20619. ))
  20620. characterMakers.push(() => makeCharacter(
  20621. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20622. {
  20623. front: {
  20624. height: math.unit(8, "feet"),
  20625. weight: math.unit(600, "lb"),
  20626. name: "Front",
  20627. image: {
  20628. source: "./media/characters/kyrehx/front.svg",
  20629. extra: 1195 / 1095,
  20630. bottom: 0.034
  20631. }
  20632. },
  20633. },
  20634. [
  20635. {
  20636. name: "Micro",
  20637. height: math.unit(2, "inches")
  20638. },
  20639. {
  20640. name: "Normal",
  20641. height: math.unit(8, "feet"),
  20642. default: true
  20643. },
  20644. {
  20645. name: "Macro",
  20646. height: math.unit(255, "feet")
  20647. },
  20648. ]
  20649. ))
  20650. characterMakers.push(() => makeCharacter(
  20651. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20652. {
  20653. front: {
  20654. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20655. weight: math.unit(184, "lb"),
  20656. name: "Front",
  20657. image: {
  20658. source: "./media/characters/xang/front.svg",
  20659. extra: 845 / 755
  20660. }
  20661. },
  20662. },
  20663. [
  20664. {
  20665. name: "Normal",
  20666. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20667. default: true
  20668. },
  20669. {
  20670. name: "Macro",
  20671. height: math.unit(0.935 * 146, "feet")
  20672. },
  20673. {
  20674. name: "Megamacro",
  20675. height: math.unit(0.935 * 3, "miles")
  20676. },
  20677. ]
  20678. ))
  20679. characterMakers.push(() => makeCharacter(
  20680. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20681. {
  20682. frontDressed: {
  20683. height: math.unit(5 + 7 / 12, "feet"),
  20684. weight: math.unit(140, "lb"),
  20685. name: "Front (Dressed)",
  20686. image: {
  20687. source: "./media/characters/doc-weardno/front-dressed.svg",
  20688. extra: 263 / 234
  20689. }
  20690. },
  20691. backDressed: {
  20692. height: math.unit(5 + 7 / 12, "feet"),
  20693. weight: math.unit(140, "lb"),
  20694. name: "Back (Dressed)",
  20695. image: {
  20696. source: "./media/characters/doc-weardno/back-dressed.svg",
  20697. extra: 266 / 238
  20698. }
  20699. },
  20700. front: {
  20701. height: math.unit(5 + 7 / 12, "feet"),
  20702. weight: math.unit(140, "lb"),
  20703. name: "Front",
  20704. image: {
  20705. source: "./media/characters/doc-weardno/front.svg",
  20706. extra: 254 / 233
  20707. }
  20708. },
  20709. },
  20710. [
  20711. {
  20712. name: "Micro",
  20713. height: math.unit(3, "inches")
  20714. },
  20715. {
  20716. name: "Normal",
  20717. height: math.unit(5 + 7 / 12, "feet"),
  20718. default: true
  20719. },
  20720. {
  20721. name: "Macro",
  20722. height: math.unit(25, "feet")
  20723. },
  20724. {
  20725. name: "Megamacro",
  20726. height: math.unit(2, "miles")
  20727. },
  20728. ]
  20729. ))
  20730. characterMakers.push(() => makeCharacter(
  20731. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20732. {
  20733. front: {
  20734. height: math.unit(6 + 2 / 12, "feet"),
  20735. weight: math.unit(153, "lb"),
  20736. name: "Front",
  20737. image: {
  20738. source: "./media/characters/seth-whilst/front.svg",
  20739. bottom: 0.07
  20740. }
  20741. },
  20742. },
  20743. [
  20744. {
  20745. name: "Micro",
  20746. height: math.unit(5, "inches")
  20747. },
  20748. {
  20749. name: "Normal",
  20750. height: math.unit(6 + 2 / 12, "feet"),
  20751. default: true
  20752. },
  20753. ]
  20754. ))
  20755. characterMakers.push(() => makeCharacter(
  20756. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20757. {
  20758. front: {
  20759. height: math.unit(3, "inches"),
  20760. weight: math.unit(8, "grams"),
  20761. name: "Front",
  20762. image: {
  20763. source: "./media/characters/pocket-jabari/front.svg",
  20764. extra: 1024 / 974,
  20765. bottom: 0.039
  20766. }
  20767. },
  20768. },
  20769. [
  20770. {
  20771. name: "Minimicro",
  20772. height: math.unit(8, "mm")
  20773. },
  20774. {
  20775. name: "Micro",
  20776. height: math.unit(3, "inches"),
  20777. default: true
  20778. },
  20779. {
  20780. name: "Normal",
  20781. height: math.unit(3, "feet")
  20782. },
  20783. ]
  20784. ))
  20785. characterMakers.push(() => makeCharacter(
  20786. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20787. {
  20788. frontDressed: {
  20789. height: math.unit(15, "feet"),
  20790. weight: math.unit(3280, "lb"),
  20791. name: "Front (Dressed)",
  20792. image: {
  20793. source: "./media/characters/sapphy/front-dressed.svg",
  20794. extra: 1951/1654,
  20795. bottom: 194/2145
  20796. },
  20797. form: "anthro",
  20798. default: true
  20799. },
  20800. backDressed: {
  20801. height: math.unit(15, "feet"),
  20802. weight: math.unit(3280, "lb"),
  20803. name: "Back (Dressed)",
  20804. image: {
  20805. source: "./media/characters/sapphy/back-dressed.svg",
  20806. extra: 2058/1918,
  20807. bottom: 125/2183
  20808. },
  20809. form: "anthro"
  20810. },
  20811. frontNude: {
  20812. height: math.unit(15, "feet"),
  20813. weight: math.unit(3280, "lb"),
  20814. name: "Front (Nude)",
  20815. image: {
  20816. source: "./media/characters/sapphy/front-nude.svg",
  20817. extra: 1951/1654,
  20818. bottom: 194/2145
  20819. },
  20820. form: "anthro"
  20821. },
  20822. backNude: {
  20823. height: math.unit(15, "feet"),
  20824. weight: math.unit(3280, "lb"),
  20825. name: "Back (Nude)",
  20826. image: {
  20827. source: "./media/characters/sapphy/back-nude.svg",
  20828. extra: 2058/1918,
  20829. bottom: 125/2183
  20830. },
  20831. form: "anthro"
  20832. },
  20833. full: {
  20834. height: math.unit(15, "feet"),
  20835. weight: math.unit(3280, "lb"),
  20836. name: "Full",
  20837. image: {
  20838. source: "./media/characters/sapphy/full.svg",
  20839. extra: 1396/1317,
  20840. bottom: 44/1440
  20841. },
  20842. form: "anthro"
  20843. },
  20844. dick: {
  20845. height: math.unit(3.8, "feet"),
  20846. name: "Dick",
  20847. image: {
  20848. source: "./media/characters/sapphy/dick.svg"
  20849. },
  20850. form: "anthro"
  20851. },
  20852. feral: {
  20853. height: math.unit(35, "feet"),
  20854. weight: math.unit(160, "tons"),
  20855. name: "Feral",
  20856. image: {
  20857. source: "./media/characters/sapphy/feral.svg",
  20858. extra: 1050/573,
  20859. bottom: 60/1110
  20860. },
  20861. form: "feral",
  20862. default: true
  20863. },
  20864. },
  20865. [
  20866. {
  20867. name: "Normal",
  20868. height: math.unit(15, "feet"),
  20869. form: "anthro"
  20870. },
  20871. {
  20872. name: "Casual Macro",
  20873. height: math.unit(120, "feet"),
  20874. form: "anthro"
  20875. },
  20876. {
  20877. name: "Macro",
  20878. height: math.unit(2150, "feet"),
  20879. default: true,
  20880. form: "anthro"
  20881. },
  20882. {
  20883. name: "Megamacro",
  20884. height: math.unit(8, "miles"),
  20885. form: "anthro"
  20886. },
  20887. {
  20888. name: "Galaxy Mom",
  20889. height: math.unit(6, "megalightyears"),
  20890. form: "anthro"
  20891. },
  20892. {
  20893. name: "Normal",
  20894. height: math.unit(35, "feet"),
  20895. form: "feral",
  20896. default: true
  20897. },
  20898. {
  20899. name: "Macro",
  20900. height: math.unit(300, "feet"),
  20901. form: "feral"
  20902. },
  20903. {
  20904. name: "Galaxy Mom",
  20905. height: math.unit(10, "megalightyears"),
  20906. form: "feral"
  20907. },
  20908. ],
  20909. {
  20910. "anthro": {
  20911. name: "Anthro",
  20912. default: true
  20913. },
  20914. "feral": {
  20915. name: "Feral"
  20916. }
  20917. }
  20918. ))
  20919. characterMakers.push(() => makeCharacter(
  20920. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20921. {
  20922. hyenaFront: {
  20923. height: math.unit(6, "feet"),
  20924. weight: math.unit(190, "lb"),
  20925. name: "Front",
  20926. image: {
  20927. source: "./media/characters/kiro/hyena-front.svg",
  20928. extra: 927/839,
  20929. bottom: 91/1018
  20930. },
  20931. form: "hyena",
  20932. default: true
  20933. },
  20934. front: {
  20935. height: math.unit(6, "feet"),
  20936. weight: math.unit(170, "lb"),
  20937. name: "Front",
  20938. image: {
  20939. source: "./media/characters/kiro/front.svg",
  20940. extra: 1064 / 1012,
  20941. bottom: 0.052
  20942. },
  20943. form: "folf",
  20944. default: true
  20945. },
  20946. },
  20947. [
  20948. {
  20949. name: "Micro",
  20950. height: math.unit(6, "inches"),
  20951. form: "folf"
  20952. },
  20953. {
  20954. name: "Normal",
  20955. height: math.unit(6, "feet"),
  20956. form: "folf",
  20957. default: true
  20958. },
  20959. {
  20960. name: "Macro",
  20961. height: math.unit(72, "feet"),
  20962. form: "folf"
  20963. },
  20964. {
  20965. name: "Micro",
  20966. height: math.unit(6, "inches"),
  20967. form: "hyena"
  20968. },
  20969. {
  20970. name: "Normal",
  20971. height: math.unit(6, "feet"),
  20972. form: "hyena",
  20973. default: true
  20974. },
  20975. {
  20976. name: "Macro",
  20977. height: math.unit(72, "feet"),
  20978. form: "hyena"
  20979. },
  20980. ],
  20981. {
  20982. "hyena": {
  20983. name: "Hyena",
  20984. default: true
  20985. },
  20986. "folf": {
  20987. name: "Folf",
  20988. },
  20989. }
  20990. ))
  20991. characterMakers.push(() => makeCharacter(
  20992. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20993. {
  20994. front: {
  20995. height: math.unit(5 + 9 / 12, "feet"),
  20996. weight: math.unit(175, "lb"),
  20997. name: "Front",
  20998. image: {
  20999. source: "./media/characters/irishfox/front.svg",
  21000. extra: 1912 / 1680,
  21001. bottom: 0.02
  21002. }
  21003. },
  21004. },
  21005. [
  21006. {
  21007. name: "Nano",
  21008. height: math.unit(1, "mm")
  21009. },
  21010. {
  21011. name: "Micro",
  21012. height: math.unit(2, "inches")
  21013. },
  21014. {
  21015. name: "Normal",
  21016. height: math.unit(5 + 9 / 12, "feet"),
  21017. default: true
  21018. },
  21019. {
  21020. name: "Macro",
  21021. height: math.unit(45, "feet")
  21022. },
  21023. ]
  21024. ))
  21025. characterMakers.push(() => makeCharacter(
  21026. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21027. {
  21028. front: {
  21029. height: math.unit(6 + 1 / 12, "feet"),
  21030. weight: math.unit(75, "lb"),
  21031. name: "Front",
  21032. image: {
  21033. source: "./media/characters/aronai-sieyes/front.svg",
  21034. extra: 1532/1450,
  21035. bottom: 42/1574
  21036. }
  21037. },
  21038. side: {
  21039. height: math.unit(6 + 1 / 12, "feet"),
  21040. weight: math.unit(75, "lb"),
  21041. name: "Side",
  21042. image: {
  21043. source: "./media/characters/aronai-sieyes/side.svg",
  21044. extra: 1422/1365,
  21045. bottom: 148/1570
  21046. }
  21047. },
  21048. back: {
  21049. height: math.unit(6 + 1 / 12, "feet"),
  21050. weight: math.unit(75, "lb"),
  21051. name: "Back",
  21052. image: {
  21053. source: "./media/characters/aronai-sieyes/back.svg",
  21054. extra: 1526/1464,
  21055. bottom: 51/1577
  21056. }
  21057. },
  21058. dressed: {
  21059. height: math.unit(6 + 1 / 12, "feet"),
  21060. weight: math.unit(75, "lb"),
  21061. name: "Dressed",
  21062. image: {
  21063. source: "./media/characters/aronai-sieyes/dressed.svg",
  21064. extra: 1559/1483,
  21065. bottom: 39/1598
  21066. }
  21067. },
  21068. slit: {
  21069. height: math.unit(1.3, "feet"),
  21070. name: "Slit",
  21071. image: {
  21072. source: "./media/characters/aronai-sieyes/slit.svg"
  21073. }
  21074. },
  21075. slitSpread: {
  21076. height: math.unit(0.9, "feet"),
  21077. name: "Slit (Spread)",
  21078. image: {
  21079. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21080. }
  21081. },
  21082. rump: {
  21083. height: math.unit(1.3, "feet"),
  21084. name: "Rump",
  21085. image: {
  21086. source: "./media/characters/aronai-sieyes/rump.svg"
  21087. }
  21088. },
  21089. maw: {
  21090. height: math.unit(1.25, "feet"),
  21091. name: "Maw",
  21092. image: {
  21093. source: "./media/characters/aronai-sieyes/maw.svg"
  21094. }
  21095. },
  21096. feral: {
  21097. height: math.unit(18, "feet"),
  21098. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21099. name: "Feral",
  21100. image: {
  21101. source: "./media/characters/aronai-sieyes/feral.svg",
  21102. extra: 1530 / 1240,
  21103. bottom: 0.035
  21104. }
  21105. },
  21106. },
  21107. [
  21108. {
  21109. name: "Micro",
  21110. height: math.unit(2, "inches")
  21111. },
  21112. {
  21113. name: "Normal",
  21114. height: math.unit(6 + 1 / 12, "feet"),
  21115. default: true
  21116. }
  21117. ]
  21118. ))
  21119. characterMakers.push(() => makeCharacter(
  21120. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21121. {
  21122. front: {
  21123. height: math.unit(12, "feet"),
  21124. weight: math.unit(410, "kg"),
  21125. name: "Front",
  21126. image: {
  21127. source: "./media/characters/xuna/front.svg",
  21128. extra: 2184 / 1980
  21129. }
  21130. },
  21131. side: {
  21132. height: math.unit(12, "feet"),
  21133. weight: math.unit(410, "kg"),
  21134. name: "Side",
  21135. image: {
  21136. source: "./media/characters/xuna/side.svg",
  21137. extra: 2184 / 1980
  21138. }
  21139. },
  21140. back: {
  21141. height: math.unit(12, "feet"),
  21142. weight: math.unit(410, "kg"),
  21143. name: "Back",
  21144. image: {
  21145. source: "./media/characters/xuna/back.svg",
  21146. extra: 2184 / 1980
  21147. }
  21148. },
  21149. },
  21150. [
  21151. {
  21152. name: "Nano glow",
  21153. height: math.unit(10, "nm")
  21154. },
  21155. {
  21156. name: "Micro floof",
  21157. height: math.unit(0.3, "m")
  21158. },
  21159. {
  21160. name: "Huggable softy boi",
  21161. height: math.unit(3.6576, "m"),
  21162. default: true
  21163. },
  21164. {
  21165. name: "Admirable floof",
  21166. height: math.unit(80, "meters")
  21167. },
  21168. {
  21169. name: "Gentle macro",
  21170. height: math.unit(300, "meters")
  21171. },
  21172. {
  21173. name: "Very careful floof",
  21174. height: math.unit(3200, "meters")
  21175. },
  21176. {
  21177. name: "The mega floof",
  21178. height: math.unit(36000, "meters")
  21179. },
  21180. {
  21181. name: "Giga-fur-Wicker",
  21182. height: math.unit(4800000, "meters")
  21183. },
  21184. {
  21185. name: "Licky world",
  21186. height: math.unit(20000000, "meters")
  21187. },
  21188. {
  21189. name: "Floofy cyan sun",
  21190. height: math.unit(1500000000, "meters")
  21191. },
  21192. {
  21193. name: "Milky Wicker",
  21194. height: math.unit(1000000000000000000000, "meters")
  21195. },
  21196. {
  21197. name: "The observing Wicker",
  21198. height: math.unit(999999999999999999999999999, "meters")
  21199. },
  21200. ]
  21201. ))
  21202. characterMakers.push(() => makeCharacter(
  21203. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21204. {
  21205. front: {
  21206. height: math.unit(5 + 9 / 12, "feet"),
  21207. weight: math.unit(150, "lb"),
  21208. name: "Front",
  21209. image: {
  21210. source: "./media/characters/arokha-sieyes/front.svg",
  21211. extra: 1425 / 1284,
  21212. bottom: 0.05
  21213. }
  21214. },
  21215. },
  21216. [
  21217. {
  21218. name: "Normal",
  21219. height: math.unit(5 + 9 / 12, "feet")
  21220. },
  21221. {
  21222. name: "Macro",
  21223. height: math.unit(30, "meters"),
  21224. default: true
  21225. },
  21226. ]
  21227. ))
  21228. characterMakers.push(() => makeCharacter(
  21229. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21230. {
  21231. front: {
  21232. height: math.unit(6, "feet"),
  21233. weight: math.unit(180, "lb"),
  21234. name: "Front",
  21235. image: {
  21236. source: "./media/characters/arokh-sieyes/front.svg",
  21237. extra: 1830 / 1769,
  21238. bottom: 0.01
  21239. }
  21240. },
  21241. },
  21242. [
  21243. {
  21244. name: "Normal",
  21245. height: math.unit(6, "feet")
  21246. },
  21247. {
  21248. name: "Macro",
  21249. height: math.unit(30, "meters"),
  21250. default: true
  21251. },
  21252. ]
  21253. ))
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21256. {
  21257. side: {
  21258. height: math.unit(13 + 1 / 12, "feet"),
  21259. weight: math.unit(8.5, "tonnes"),
  21260. preyCapacity: math.unit(36, "people"),
  21261. name: "Side",
  21262. image: {
  21263. source: "./media/characters/goldeneye/side.svg",
  21264. extra: 1139/741,
  21265. bottom: 98/1237
  21266. }
  21267. },
  21268. front: {
  21269. height: math.unit(5.1, "feet"),
  21270. weight: math.unit(8.5, "tonnes"),
  21271. preyCapacity: math.unit(36, "people"),
  21272. name: "Front",
  21273. image: {
  21274. source: "./media/characters/goldeneye/front.svg",
  21275. extra: 635/365,
  21276. bottom: 598/1233
  21277. }
  21278. },
  21279. maw: {
  21280. height: math.unit(6.6, "feet"),
  21281. name: "Maw",
  21282. image: {
  21283. source: "./media/characters/goldeneye/maw.svg"
  21284. }
  21285. },
  21286. headFront: {
  21287. height: math.unit(8, "feet"),
  21288. name: "Head (Front)",
  21289. image: {
  21290. source: "./media/characters/goldeneye/head-front.svg"
  21291. }
  21292. },
  21293. headSide: {
  21294. height: math.unit(6, "feet"),
  21295. name: "Head (Side)",
  21296. image: {
  21297. source: "./media/characters/goldeneye/head-side.svg"
  21298. }
  21299. },
  21300. headBack: {
  21301. height: math.unit(8, "feet"),
  21302. name: "Head (Back)",
  21303. image: {
  21304. source: "./media/characters/goldeneye/head-back.svg"
  21305. }
  21306. },
  21307. paw: {
  21308. height: math.unit(3.4, "feet"),
  21309. name: "Paw",
  21310. image: {
  21311. source: "./media/characters/goldeneye/paw.svg"
  21312. }
  21313. },
  21314. toering: {
  21315. height: math.unit(0.45, "feet"),
  21316. name: "Toering",
  21317. image: {
  21318. source: "./media/characters/goldeneye/toering.svg"
  21319. }
  21320. },
  21321. eyes: {
  21322. height: math.unit(0.5, "feet"),
  21323. name: "Eyes",
  21324. image: {
  21325. source: "./media/characters/goldeneye/eyes.svg"
  21326. }
  21327. },
  21328. },
  21329. [
  21330. {
  21331. name: "Normal",
  21332. height: math.unit(13 + 1 / 12, "feet"),
  21333. default: true
  21334. },
  21335. ]
  21336. ))
  21337. characterMakers.push(() => makeCharacter(
  21338. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21339. {
  21340. front: {
  21341. height: math.unit(6 + 1 / 12, "feet"),
  21342. weight: math.unit(210, "lb"),
  21343. name: "Front",
  21344. image: {
  21345. source: "./media/characters/leonardo-lycheborne/front.svg",
  21346. extra: 776/723,
  21347. bottom: 34/810
  21348. }
  21349. },
  21350. side: {
  21351. height: math.unit(6 + 1 / 12, "feet"),
  21352. weight: math.unit(210, "lb"),
  21353. name: "Side",
  21354. image: {
  21355. source: "./media/characters/leonardo-lycheborne/side.svg",
  21356. extra: 780/728,
  21357. bottom: 12/792
  21358. }
  21359. },
  21360. back: {
  21361. height: math.unit(6 + 1 / 12, "feet"),
  21362. weight: math.unit(210, "lb"),
  21363. name: "Back",
  21364. image: {
  21365. source: "./media/characters/leonardo-lycheborne/back.svg",
  21366. extra: 775/721,
  21367. bottom: 17/792
  21368. }
  21369. },
  21370. hand: {
  21371. height: math.unit(1.08, "feet"),
  21372. name: "Hand",
  21373. image: {
  21374. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21375. }
  21376. },
  21377. foot: {
  21378. height: math.unit(1.32, "feet"),
  21379. name: "Foot",
  21380. image: {
  21381. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21382. }
  21383. },
  21384. maw: {
  21385. height: math.unit(1, "feet"),
  21386. name: "Maw",
  21387. image: {
  21388. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21389. }
  21390. },
  21391. were: {
  21392. height: math.unit(20, "feet"),
  21393. weight: math.unit(7800, "lb"),
  21394. name: "Were",
  21395. image: {
  21396. source: "./media/characters/leonardo-lycheborne/were.svg",
  21397. extra: 1224/1165,
  21398. bottom: 72/1296
  21399. }
  21400. },
  21401. feral: {
  21402. height: math.unit(7.5, "feet"),
  21403. weight: math.unit(600, "lb"),
  21404. name: "Feral",
  21405. image: {
  21406. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21407. extra: 797/702,
  21408. bottom: 139/936
  21409. }
  21410. },
  21411. taur: {
  21412. height: math.unit(11, "feet"),
  21413. weight: math.unit(3300, "lb"),
  21414. name: "Taur",
  21415. image: {
  21416. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21417. extra: 1271/1197,
  21418. bottom: 47/1318
  21419. }
  21420. },
  21421. barghest: {
  21422. height: math.unit(11, "feet"),
  21423. weight: math.unit(1300, "lb"),
  21424. name: "Barghest",
  21425. image: {
  21426. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21427. extra: 1291/1204,
  21428. bottom: 37/1328
  21429. }
  21430. },
  21431. dick: {
  21432. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21433. name: "Dick",
  21434. image: {
  21435. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21436. }
  21437. },
  21438. dickWere: {
  21439. height: math.unit((20) / 3.8, "feet"),
  21440. name: "Dick (Were)",
  21441. image: {
  21442. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21443. }
  21444. },
  21445. },
  21446. [
  21447. {
  21448. name: "Normal",
  21449. height: math.unit(6 + 1 / 12, "feet"),
  21450. default: true
  21451. },
  21452. ]
  21453. ))
  21454. characterMakers.push(() => makeCharacter(
  21455. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21456. {
  21457. front: {
  21458. height: math.unit(10, "feet"),
  21459. weight: math.unit(350, "lb"),
  21460. name: "Front",
  21461. image: {
  21462. source: "./media/characters/jet/front.svg",
  21463. extra: 2050 / 1980,
  21464. bottom: 0.013
  21465. }
  21466. },
  21467. back: {
  21468. height: math.unit(10, "feet"),
  21469. weight: math.unit(350, "lb"),
  21470. name: "Back",
  21471. image: {
  21472. source: "./media/characters/jet/back.svg",
  21473. extra: 2050 / 1980,
  21474. bottom: 0.013
  21475. }
  21476. },
  21477. },
  21478. [
  21479. {
  21480. name: "Micro",
  21481. height: math.unit(6, "inches")
  21482. },
  21483. {
  21484. name: "Normal",
  21485. height: math.unit(10, "feet"),
  21486. default: true
  21487. },
  21488. {
  21489. name: "Macro",
  21490. height: math.unit(100, "feet")
  21491. },
  21492. ]
  21493. ))
  21494. characterMakers.push(() => makeCharacter(
  21495. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21496. {
  21497. front: {
  21498. height: math.unit(15, "feet"),
  21499. weight: math.unit(2800, "lb"),
  21500. name: "Front",
  21501. image: {
  21502. source: "./media/characters/tanarath/front.svg",
  21503. extra: 2392 / 2220,
  21504. bottom: 0.03
  21505. }
  21506. },
  21507. back: {
  21508. height: math.unit(15, "feet"),
  21509. weight: math.unit(2800, "lb"),
  21510. name: "Back",
  21511. image: {
  21512. source: "./media/characters/tanarath/back.svg",
  21513. extra: 2392 / 2220,
  21514. bottom: 0.03
  21515. }
  21516. },
  21517. },
  21518. [
  21519. {
  21520. name: "Normal",
  21521. height: math.unit(15, "feet"),
  21522. default: true
  21523. },
  21524. ]
  21525. ))
  21526. characterMakers.push(() => makeCharacter(
  21527. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21528. {
  21529. front: {
  21530. height: math.unit(7 + 1 / 12, "feet"),
  21531. weight: math.unit(175, "lb"),
  21532. name: "Front",
  21533. image: {
  21534. source: "./media/characters/patty-cattybatty/front.svg",
  21535. extra: 908 / 874,
  21536. bottom: 0.025
  21537. }
  21538. },
  21539. },
  21540. [
  21541. {
  21542. name: "Micro",
  21543. height: math.unit(1, "inch")
  21544. },
  21545. {
  21546. name: "Normal",
  21547. height: math.unit(7 + 1 / 12, "feet")
  21548. },
  21549. {
  21550. name: "Mini Macro",
  21551. height: math.unit(155, "feet")
  21552. },
  21553. {
  21554. name: "Macro",
  21555. height: math.unit(1077, "feet")
  21556. },
  21557. {
  21558. name: "Mega Macro",
  21559. height: math.unit(47650, "feet"),
  21560. default: true
  21561. },
  21562. {
  21563. name: "Giga Macro",
  21564. height: math.unit(440, "miles")
  21565. },
  21566. {
  21567. name: "Tera Macro",
  21568. height: math.unit(8700, "miles")
  21569. },
  21570. {
  21571. name: "Planetary Macro",
  21572. height: math.unit(32700, "miles")
  21573. },
  21574. {
  21575. name: "Solar Macro",
  21576. height: math.unit(550000, "miles")
  21577. },
  21578. {
  21579. name: "Celestial Macro",
  21580. height: math.unit(2.5, "AU")
  21581. },
  21582. ]
  21583. ))
  21584. characterMakers.push(() => makeCharacter(
  21585. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21586. {
  21587. front: {
  21588. height: math.unit(4 + 5 / 12, "feet"),
  21589. weight: math.unit(90, "lb"),
  21590. name: "Front",
  21591. image: {
  21592. source: "./media/characters/cappu/front.svg",
  21593. extra: 1247 / 1152,
  21594. bottom: 0.012
  21595. }
  21596. },
  21597. },
  21598. [
  21599. {
  21600. name: "Normal",
  21601. height: math.unit(4 + 5 / 12, "feet"),
  21602. default: true
  21603. },
  21604. ]
  21605. ))
  21606. characterMakers.push(() => makeCharacter(
  21607. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21608. {
  21609. frontDressed: {
  21610. height: math.unit(70, "cm"),
  21611. weight: math.unit(6, "kg"),
  21612. name: "Front (Dressed)",
  21613. image: {
  21614. source: "./media/characters/sebi/front-dressed.svg",
  21615. extra: 713.5 / 686.5,
  21616. bottom: 0.003
  21617. }
  21618. },
  21619. front: {
  21620. height: math.unit(70, "cm"),
  21621. weight: math.unit(5, "kg"),
  21622. name: "Front",
  21623. image: {
  21624. source: "./media/characters/sebi/front.svg",
  21625. extra: 713.5 / 686.5,
  21626. bottom: 0.003
  21627. }
  21628. }
  21629. },
  21630. [
  21631. {
  21632. name: "Normal",
  21633. height: math.unit(70, "cm"),
  21634. default: true
  21635. },
  21636. {
  21637. name: "Macro",
  21638. height: math.unit(8, "meters")
  21639. },
  21640. ]
  21641. ))
  21642. characterMakers.push(() => makeCharacter(
  21643. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21644. {
  21645. front: {
  21646. height: math.unit(6, "feet"),
  21647. weight: math.unit(150, "lb"),
  21648. name: "Front",
  21649. image: {
  21650. source: "./media/characters/typhek/front.svg",
  21651. extra: 1948 / 1929,
  21652. bottom: 0.025
  21653. }
  21654. },
  21655. side: {
  21656. height: math.unit(6, "feet"),
  21657. weight: math.unit(150, "lb"),
  21658. name: "Side",
  21659. image: {
  21660. source: "./media/characters/typhek/side.svg",
  21661. extra: 2034 / 2010,
  21662. bottom: 0.003
  21663. }
  21664. },
  21665. back: {
  21666. height: math.unit(6, "feet"),
  21667. weight: math.unit(150, "lb"),
  21668. name: "Back",
  21669. image: {
  21670. source: "./media/characters/typhek/back.svg",
  21671. extra: 2005 / 1978,
  21672. bottom: 0.004
  21673. }
  21674. },
  21675. palm: {
  21676. height: math.unit(1.2, "feet"),
  21677. name: "Palm",
  21678. image: {
  21679. source: "./media/characters/typhek/palm.svg"
  21680. }
  21681. },
  21682. fist: {
  21683. height: math.unit(1.1, "feet"),
  21684. name: "Fist",
  21685. image: {
  21686. source: "./media/characters/typhek/fist.svg"
  21687. }
  21688. },
  21689. foot: {
  21690. height: math.unit(1.57, "feet"),
  21691. name: "Foot",
  21692. image: {
  21693. source: "./media/characters/typhek/foot.svg"
  21694. }
  21695. },
  21696. sole: {
  21697. height: math.unit(2.05, "feet"),
  21698. name: "Sole",
  21699. image: {
  21700. source: "./media/characters/typhek/sole.svg"
  21701. }
  21702. },
  21703. },
  21704. [
  21705. {
  21706. name: "Macro",
  21707. height: math.unit(40, "stories"),
  21708. default: true
  21709. },
  21710. {
  21711. name: "Megamacro",
  21712. height: math.unit(1, "mile")
  21713. },
  21714. {
  21715. name: "Gigamacro",
  21716. height: math.unit(4000, "solarradii")
  21717. },
  21718. {
  21719. name: "Universal",
  21720. height: math.unit(1.1, "universes")
  21721. }
  21722. ]
  21723. ))
  21724. characterMakers.push(() => makeCharacter(
  21725. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21726. {
  21727. side: {
  21728. height: math.unit(5 + 7 / 12, "feet"),
  21729. weight: math.unit(150, "lb"),
  21730. name: "Side",
  21731. image: {
  21732. source: "./media/characters/kassy/side.svg",
  21733. extra: 1280 / 1225,
  21734. bottom: 0.002
  21735. }
  21736. },
  21737. front: {
  21738. height: math.unit(5 + 7 / 12, "feet"),
  21739. weight: math.unit(150, "lb"),
  21740. name: "Front",
  21741. image: {
  21742. source: "./media/characters/kassy/front.svg",
  21743. extra: 1280 / 1225,
  21744. bottom: 0.025
  21745. }
  21746. },
  21747. back: {
  21748. height: math.unit(5 + 7 / 12, "feet"),
  21749. weight: math.unit(150, "lb"),
  21750. name: "Back",
  21751. image: {
  21752. source: "./media/characters/kassy/back.svg",
  21753. extra: 1280 / 1225,
  21754. bottom: 0.002
  21755. }
  21756. },
  21757. foot: {
  21758. height: math.unit(1.266, "feet"),
  21759. name: "Foot",
  21760. image: {
  21761. source: "./media/characters/kassy/foot.svg"
  21762. }
  21763. },
  21764. },
  21765. [
  21766. {
  21767. name: "Normal",
  21768. height: math.unit(5 + 7 / 12, "feet")
  21769. },
  21770. {
  21771. name: "Macro",
  21772. height: math.unit(137, "feet"),
  21773. default: true
  21774. },
  21775. {
  21776. name: "Megamacro",
  21777. height: math.unit(1, "mile")
  21778. },
  21779. ]
  21780. ))
  21781. characterMakers.push(() => makeCharacter(
  21782. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21783. {
  21784. front: {
  21785. height: math.unit(6 + 1 / 12, "feet"),
  21786. weight: math.unit(200, "lb"),
  21787. name: "Front",
  21788. image: {
  21789. source: "./media/characters/neil/front.svg",
  21790. extra: 1326 / 1250,
  21791. bottom: 0.023
  21792. }
  21793. },
  21794. },
  21795. [
  21796. {
  21797. name: "Normal",
  21798. height: math.unit(6 + 1 / 12, "feet"),
  21799. default: true
  21800. },
  21801. {
  21802. name: "Macro",
  21803. height: math.unit(200, "feet")
  21804. },
  21805. ]
  21806. ))
  21807. characterMakers.push(() => makeCharacter(
  21808. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21809. {
  21810. front: {
  21811. height: math.unit(5 + 9 / 12, "feet"),
  21812. weight: math.unit(190, "lb"),
  21813. name: "Front",
  21814. image: {
  21815. source: "./media/characters/atticus/front.svg",
  21816. extra: 2934 / 2785,
  21817. bottom: 0.025
  21818. }
  21819. },
  21820. },
  21821. [
  21822. {
  21823. name: "Normal",
  21824. height: math.unit(5 + 9 / 12, "feet"),
  21825. default: true
  21826. },
  21827. {
  21828. name: "Macro",
  21829. height: math.unit(180, "feet")
  21830. },
  21831. ]
  21832. ))
  21833. characterMakers.push(() => makeCharacter(
  21834. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21835. {
  21836. side: {
  21837. height: math.unit(9, "feet"),
  21838. weight: math.unit(650, "lb"),
  21839. name: "Side",
  21840. image: {
  21841. source: "./media/characters/milo/side.svg",
  21842. extra: 2644 / 2310,
  21843. bottom: 0.032
  21844. }
  21845. },
  21846. },
  21847. [
  21848. {
  21849. name: "Normal",
  21850. height: math.unit(9, "feet"),
  21851. default: true
  21852. },
  21853. {
  21854. name: "Macro",
  21855. height: math.unit(300, "feet")
  21856. },
  21857. ]
  21858. ))
  21859. characterMakers.push(() => makeCharacter(
  21860. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21861. {
  21862. side: {
  21863. height: math.unit(8, "meters"),
  21864. weight: math.unit(90000, "kg"),
  21865. name: "Side",
  21866. image: {
  21867. source: "./media/characters/ijzer/side.svg",
  21868. extra: 2756 / 1600,
  21869. bottom: 0.01
  21870. }
  21871. },
  21872. },
  21873. [
  21874. {
  21875. name: "Small",
  21876. height: math.unit(3, "meters")
  21877. },
  21878. {
  21879. name: "Normal",
  21880. height: math.unit(8, "meters"),
  21881. default: true
  21882. },
  21883. {
  21884. name: "Normal+",
  21885. height: math.unit(10, "meters")
  21886. },
  21887. {
  21888. name: "Bigger",
  21889. height: math.unit(24, "meters")
  21890. },
  21891. {
  21892. name: "Huge",
  21893. height: math.unit(80, "meters")
  21894. },
  21895. ]
  21896. ))
  21897. characterMakers.push(() => makeCharacter(
  21898. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21899. {
  21900. front: {
  21901. height: math.unit(6 + 2 / 12, "feet"),
  21902. weight: math.unit(153, "lb"),
  21903. name: "Front",
  21904. image: {
  21905. source: "./media/characters/luca-cervicum/front.svg",
  21906. extra: 370 / 327,
  21907. bottom: 0.015
  21908. }
  21909. },
  21910. back: {
  21911. height: math.unit(6 + 2 / 12, "feet"),
  21912. weight: math.unit(153, "lb"),
  21913. name: "Back",
  21914. image: {
  21915. source: "./media/characters/luca-cervicum/back.svg",
  21916. extra: 367 / 333,
  21917. bottom: 0.005
  21918. }
  21919. },
  21920. frontGear: {
  21921. height: math.unit(6 + 2 / 12, "feet"),
  21922. weight: math.unit(173, "lb"),
  21923. name: "Front (Gear)",
  21924. image: {
  21925. source: "./media/characters/luca-cervicum/front-gear.svg",
  21926. extra: 377 / 333,
  21927. bottom: 0.006
  21928. }
  21929. },
  21930. },
  21931. [
  21932. {
  21933. name: "Normal",
  21934. height: math.unit(6 + 2 / 12, "feet"),
  21935. default: true
  21936. },
  21937. ]
  21938. ))
  21939. characterMakers.push(() => makeCharacter(
  21940. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21941. {
  21942. front: {
  21943. height: math.unit(6 + 1 / 12, "feet"),
  21944. weight: math.unit(304, "lb"),
  21945. name: "Front",
  21946. image: {
  21947. source: "./media/characters/oliver/front.svg",
  21948. extra: 157 / 143,
  21949. bottom: 0.08
  21950. }
  21951. },
  21952. },
  21953. [
  21954. {
  21955. name: "Normal",
  21956. height: math.unit(6 + 1 / 12, "feet"),
  21957. default: true
  21958. },
  21959. ]
  21960. ))
  21961. characterMakers.push(() => makeCharacter(
  21962. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21963. {
  21964. front: {
  21965. height: math.unit(5 + 7 / 12, "feet"),
  21966. weight: math.unit(140, "lb"),
  21967. name: "Front",
  21968. image: {
  21969. source: "./media/characters/shane/front.svg",
  21970. extra: 304 / 289,
  21971. bottom: 0.005
  21972. }
  21973. },
  21974. },
  21975. [
  21976. {
  21977. name: "Normal",
  21978. height: math.unit(5 + 7 / 12, "feet"),
  21979. default: true
  21980. },
  21981. ]
  21982. ))
  21983. characterMakers.push(() => makeCharacter(
  21984. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21985. {
  21986. front: {
  21987. height: math.unit(5 + 9 / 12, "feet"),
  21988. weight: math.unit(178, "lb"),
  21989. name: "Front",
  21990. image: {
  21991. source: "./media/characters/shin/front.svg",
  21992. extra: 159 / 151,
  21993. bottom: 0.015
  21994. }
  21995. },
  21996. },
  21997. [
  21998. {
  21999. name: "Normal",
  22000. height: math.unit(5 + 9 / 12, "feet"),
  22001. default: true
  22002. },
  22003. ]
  22004. ))
  22005. characterMakers.push(() => makeCharacter(
  22006. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22007. {
  22008. front: {
  22009. height: math.unit(5 + 10 / 12, "feet"),
  22010. weight: math.unit(168, "lb"),
  22011. name: "Front",
  22012. image: {
  22013. source: "./media/characters/xerxes/front.svg",
  22014. extra: 282 / 260,
  22015. bottom: 0.045
  22016. }
  22017. },
  22018. },
  22019. [
  22020. {
  22021. name: "Normal",
  22022. height: math.unit(5 + 10 / 12, "feet"),
  22023. default: true
  22024. },
  22025. ]
  22026. ))
  22027. characterMakers.push(() => makeCharacter(
  22028. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22029. {
  22030. front: {
  22031. height: math.unit(6 + 7 / 12, "feet"),
  22032. weight: math.unit(208, "lb"),
  22033. name: "Front",
  22034. image: {
  22035. source: "./media/characters/chaska/front.svg",
  22036. extra: 332 / 319,
  22037. bottom: 0.015
  22038. }
  22039. },
  22040. },
  22041. [
  22042. {
  22043. name: "Normal",
  22044. height: math.unit(6 + 7 / 12, "feet"),
  22045. default: true
  22046. },
  22047. ]
  22048. ))
  22049. characterMakers.push(() => makeCharacter(
  22050. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22051. {
  22052. front: {
  22053. height: math.unit(5 + 8 / 12, "feet"),
  22054. weight: math.unit(208, "lb"),
  22055. name: "Front",
  22056. image: {
  22057. source: "./media/characters/enuk/front.svg",
  22058. extra: 437 / 406,
  22059. bottom: 0.02
  22060. }
  22061. },
  22062. },
  22063. [
  22064. {
  22065. name: "Normal",
  22066. height: math.unit(5 + 8 / 12, "feet"),
  22067. default: true
  22068. },
  22069. ]
  22070. ))
  22071. characterMakers.push(() => makeCharacter(
  22072. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22073. {
  22074. front: {
  22075. height: math.unit(5 + 10 / 12, "feet"),
  22076. weight: math.unit(252, "lb"),
  22077. name: "Front",
  22078. image: {
  22079. source: "./media/characters/bruun/front.svg",
  22080. extra: 197 / 187,
  22081. bottom: 0.012
  22082. }
  22083. },
  22084. },
  22085. [
  22086. {
  22087. name: "Normal",
  22088. height: math.unit(5 + 10 / 12, "feet"),
  22089. default: true
  22090. },
  22091. ]
  22092. ))
  22093. characterMakers.push(() => makeCharacter(
  22094. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22095. {
  22096. front: {
  22097. height: math.unit(6 + 10 / 12, "feet"),
  22098. weight: math.unit(255, "lb"),
  22099. name: "Front",
  22100. image: {
  22101. source: "./media/characters/alexeev/front.svg",
  22102. extra: 213 / 200,
  22103. bottom: 0.05
  22104. }
  22105. },
  22106. },
  22107. [
  22108. {
  22109. name: "Normal",
  22110. height: math.unit(6 + 10 / 12, "feet"),
  22111. default: true
  22112. },
  22113. ]
  22114. ))
  22115. characterMakers.push(() => makeCharacter(
  22116. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22117. {
  22118. front: {
  22119. height: math.unit(2 + 8 / 12, "feet"),
  22120. weight: math.unit(22, "lb"),
  22121. name: "Front",
  22122. image: {
  22123. source: "./media/characters/evelyn/front.svg",
  22124. extra: 208 / 180
  22125. }
  22126. },
  22127. },
  22128. [
  22129. {
  22130. name: "Normal",
  22131. height: math.unit(2 + 8 / 12, "feet"),
  22132. default: true
  22133. },
  22134. ]
  22135. ))
  22136. characterMakers.push(() => makeCharacter(
  22137. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22138. {
  22139. front: {
  22140. height: math.unit(5 + 9 / 12, "feet"),
  22141. weight: math.unit(139, "lb"),
  22142. name: "Front",
  22143. image: {
  22144. source: "./media/characters/inca/front.svg",
  22145. extra: 294 / 291,
  22146. bottom: 0.03
  22147. }
  22148. },
  22149. },
  22150. [
  22151. {
  22152. name: "Normal",
  22153. height: math.unit(5 + 9 / 12, "feet"),
  22154. default: true
  22155. },
  22156. ]
  22157. ))
  22158. characterMakers.push(() => makeCharacter(
  22159. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22160. {
  22161. front: {
  22162. height: math.unit(6 + 3 / 12, "feet"),
  22163. weight: math.unit(185, "lb"),
  22164. name: "Front",
  22165. image: {
  22166. source: "./media/characters/mera/front.svg",
  22167. extra: 291 / 277,
  22168. bottom: 0.03
  22169. }
  22170. },
  22171. },
  22172. [
  22173. {
  22174. name: "Normal",
  22175. height: math.unit(6 + 3 / 12, "feet"),
  22176. default: true
  22177. },
  22178. ]
  22179. ))
  22180. characterMakers.push(() => makeCharacter(
  22181. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22182. {
  22183. front: {
  22184. height: math.unit(6 + 7 / 12, "feet"),
  22185. weight: math.unit(160, "lb"),
  22186. name: "Front",
  22187. image: {
  22188. source: "./media/characters/ceres/front.svg",
  22189. extra: 1023 / 950,
  22190. bottom: 0.027
  22191. }
  22192. },
  22193. back: {
  22194. height: math.unit(6 + 7 / 12, "feet"),
  22195. weight: math.unit(160, "lb"),
  22196. name: "Back",
  22197. image: {
  22198. source: "./media/characters/ceres/back.svg",
  22199. extra: 1023 / 950
  22200. }
  22201. },
  22202. },
  22203. [
  22204. {
  22205. name: "Normal",
  22206. height: math.unit(6 + 7 / 12, "feet"),
  22207. default: true
  22208. },
  22209. ]
  22210. ))
  22211. characterMakers.push(() => makeCharacter(
  22212. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22213. {
  22214. front: {
  22215. height: math.unit(5 + 10 / 12, "feet"),
  22216. weight: math.unit(150, "lb"),
  22217. name: "Front",
  22218. image: {
  22219. source: "./media/characters/kris/front.svg",
  22220. extra: 885 / 803,
  22221. bottom: 0.03
  22222. }
  22223. },
  22224. },
  22225. [
  22226. {
  22227. name: "Normal",
  22228. height: math.unit(5 + 10 / 12, "feet"),
  22229. default: true
  22230. },
  22231. ]
  22232. ))
  22233. characterMakers.push(() => makeCharacter(
  22234. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22235. {
  22236. dragon_front: {
  22237. height: math.unit(5, "feet"),
  22238. name: "Front",
  22239. image: {
  22240. source: "./media/characters/taluthus/dragon-front.svg",
  22241. extra: 1203/1098,
  22242. bottom: 46/1249
  22243. },
  22244. form: "dragon",
  22245. default: true
  22246. },
  22247. dragon_maw: {
  22248. height: math.unit(2.35, "feet"),
  22249. name: "Maw",
  22250. image: {
  22251. source: "./media/characters/taluthus/dragon-maw.svg"
  22252. },
  22253. form: "dragon",
  22254. },
  22255. kitsune_front: {
  22256. height: math.unit(7, "feet"),
  22257. name: "Front",
  22258. image: {
  22259. source: "./media/characters/taluthus/kitsune-front.svg",
  22260. extra: 900/841,
  22261. bottom: 65/965
  22262. },
  22263. form: "kitsune",
  22264. default: true
  22265. },
  22266. },
  22267. [
  22268. {
  22269. name: "Normal",
  22270. height: math.unit(5, "feet"),
  22271. form: "dragon",
  22272. default: true,
  22273. },
  22274. {
  22275. name: "Normal",
  22276. height: math.unit(7, "feet"),
  22277. form: "kitsune",
  22278. default: true
  22279. },
  22280. {
  22281. name: "Macro",
  22282. height: math.unit(300, "feet"),
  22283. allForms: true
  22284. },
  22285. ],
  22286. {
  22287. "dragon": {
  22288. name: "Dragon",
  22289. default: true
  22290. },
  22291. "kitsune": {
  22292. name: "Kitsune",
  22293. },
  22294. }
  22295. ))
  22296. characterMakers.push(() => makeCharacter(
  22297. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22298. {
  22299. front: {
  22300. height: math.unit(5 + 9 / 12, "feet"),
  22301. weight: math.unit(145, "lb"),
  22302. name: "Front",
  22303. image: {
  22304. source: "./media/characters/dawn/front.svg",
  22305. extra: 2094 / 2016,
  22306. bottom: 0.025
  22307. }
  22308. },
  22309. back: {
  22310. height: math.unit(5 + 9 / 12, "feet"),
  22311. weight: math.unit(160, "lb"),
  22312. name: "Back",
  22313. image: {
  22314. source: "./media/characters/dawn/back.svg",
  22315. extra: 2112 / 2080,
  22316. bottom: 0.005
  22317. }
  22318. },
  22319. },
  22320. [
  22321. {
  22322. name: "Normal",
  22323. height: math.unit(6 + 7 / 12, "feet"),
  22324. default: true
  22325. },
  22326. ]
  22327. ))
  22328. characterMakers.push(() => makeCharacter(
  22329. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22330. {
  22331. anthro: {
  22332. height: math.unit(8 + 3 / 12, "feet"),
  22333. weight: math.unit(450, "lb"),
  22334. name: "Anthro",
  22335. image: {
  22336. source: "./media/characters/arador/anthro.svg",
  22337. extra: 1835 / 1718,
  22338. bottom: 0.025
  22339. }
  22340. },
  22341. feral: {
  22342. height: math.unit(4, "feet"),
  22343. weight: math.unit(200, "lb"),
  22344. name: "Feral",
  22345. image: {
  22346. source: "./media/characters/arador/feral.svg",
  22347. extra: 1683 / 1514,
  22348. bottom: 0.07
  22349. }
  22350. },
  22351. },
  22352. [
  22353. {
  22354. name: "Normal",
  22355. height: math.unit(8 + 3 / 12, "feet")
  22356. },
  22357. {
  22358. name: "Macro",
  22359. height: math.unit(82.5, "feet"),
  22360. default: true
  22361. },
  22362. ]
  22363. ))
  22364. characterMakers.push(() => makeCharacter(
  22365. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22366. {
  22367. front: {
  22368. height: math.unit(5 + 10 / 12, "feet"),
  22369. weight: math.unit(125, "lb"),
  22370. name: "Front",
  22371. image: {
  22372. source: "./media/characters/dharsi/front.svg",
  22373. extra: 716 / 630,
  22374. bottom: 0.035
  22375. }
  22376. },
  22377. },
  22378. [
  22379. {
  22380. name: "Nano",
  22381. height: math.unit(100, "nm")
  22382. },
  22383. {
  22384. name: "Micro",
  22385. height: math.unit(2, "inches")
  22386. },
  22387. {
  22388. name: "Normal",
  22389. height: math.unit(5 + 10 / 12, "feet"),
  22390. default: true
  22391. },
  22392. {
  22393. name: "Macro",
  22394. height: math.unit(1000, "feet")
  22395. },
  22396. {
  22397. name: "Megamacro",
  22398. height: math.unit(10, "miles")
  22399. },
  22400. {
  22401. name: "Gigamacro",
  22402. height: math.unit(3000, "miles")
  22403. },
  22404. {
  22405. name: "Teramacro",
  22406. height: math.unit(500000, "miles")
  22407. },
  22408. {
  22409. name: "Teramacro+",
  22410. height: math.unit(30, "galaxies")
  22411. },
  22412. ]
  22413. ))
  22414. characterMakers.push(() => makeCharacter(
  22415. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22416. {
  22417. front: {
  22418. height: math.unit(6, "feet"),
  22419. weight: math.unit(150, "lb"),
  22420. name: "Front",
  22421. image: {
  22422. source: "./media/characters/deathy/front.svg",
  22423. extra: 1552 / 1463,
  22424. bottom: 0.025
  22425. }
  22426. },
  22427. side: {
  22428. height: math.unit(6, "feet"),
  22429. weight: math.unit(150, "lb"),
  22430. name: "Side",
  22431. image: {
  22432. source: "./media/characters/deathy/side.svg",
  22433. extra: 1604 / 1455,
  22434. bottom: 0.025
  22435. }
  22436. },
  22437. back: {
  22438. height: math.unit(6, "feet"),
  22439. weight: math.unit(150, "lb"),
  22440. name: "Back",
  22441. image: {
  22442. source: "./media/characters/deathy/back.svg",
  22443. extra: 1580 / 1463,
  22444. bottom: 0.005
  22445. }
  22446. },
  22447. },
  22448. [
  22449. {
  22450. name: "Micro",
  22451. height: math.unit(5, "millimeters")
  22452. },
  22453. {
  22454. name: "Normal",
  22455. height: math.unit(6 + 5 / 12, "feet"),
  22456. default: true
  22457. },
  22458. ]
  22459. ))
  22460. characterMakers.push(() => makeCharacter(
  22461. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22462. {
  22463. front: {
  22464. height: math.unit(16, "feet"),
  22465. weight: math.unit(4000, "lb"),
  22466. name: "Front",
  22467. image: {
  22468. source: "./media/characters/juniper/front.svg",
  22469. bottom: 0.04
  22470. }
  22471. },
  22472. },
  22473. [
  22474. {
  22475. name: "Normal",
  22476. height: math.unit(16, "feet"),
  22477. default: true
  22478. },
  22479. ]
  22480. ))
  22481. characterMakers.push(() => makeCharacter(
  22482. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22483. {
  22484. front: {
  22485. height: math.unit(6, "feet"),
  22486. weight: math.unit(150, "lb"),
  22487. name: "Front",
  22488. image: {
  22489. source: "./media/characters/hipster/front.svg",
  22490. extra: 1312 / 1209,
  22491. bottom: 0.025
  22492. }
  22493. },
  22494. back: {
  22495. height: math.unit(6, "feet"),
  22496. weight: math.unit(150, "lb"),
  22497. name: "Back",
  22498. image: {
  22499. source: "./media/characters/hipster/back.svg",
  22500. extra: 1281 / 1196,
  22501. bottom: 0.01
  22502. }
  22503. },
  22504. },
  22505. [
  22506. {
  22507. name: "Micro",
  22508. height: math.unit(1, "mm")
  22509. },
  22510. {
  22511. name: "Normal",
  22512. height: math.unit(4, "inches"),
  22513. default: true
  22514. },
  22515. {
  22516. name: "Macro",
  22517. height: math.unit(500, "feet")
  22518. },
  22519. {
  22520. name: "Megamacro",
  22521. height: math.unit(1000, "miles")
  22522. },
  22523. ]
  22524. ))
  22525. characterMakers.push(() => makeCharacter(
  22526. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22527. {
  22528. front: {
  22529. height: math.unit(6, "feet"),
  22530. weight: math.unit(150, "lb"),
  22531. name: "Front",
  22532. image: {
  22533. source: "./media/characters/tendirmuldr/front.svg",
  22534. extra: 1878 / 1772,
  22535. bottom: 0.015
  22536. }
  22537. },
  22538. },
  22539. [
  22540. {
  22541. name: "Megamacro",
  22542. height: math.unit(1500, "miles"),
  22543. default: true
  22544. },
  22545. ]
  22546. ))
  22547. characterMakers.push(() => makeCharacter(
  22548. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22549. {
  22550. front: {
  22551. height: math.unit(14, "feet"),
  22552. weight: math.unit(12000, "lb"),
  22553. name: "Front",
  22554. image: {
  22555. source: "./media/characters/mort/front.svg",
  22556. extra: 365 / 318,
  22557. bottom: 0.01
  22558. }
  22559. },
  22560. side: {
  22561. height: math.unit(14, "feet"),
  22562. weight: math.unit(12000, "lb"),
  22563. name: "Side",
  22564. image: {
  22565. source: "./media/characters/mort/side.svg",
  22566. extra: 365 / 318,
  22567. bottom: 0.052
  22568. },
  22569. default: true
  22570. },
  22571. back: {
  22572. height: math.unit(14, "feet"),
  22573. weight: math.unit(12000, "lb"),
  22574. name: "Back",
  22575. image: {
  22576. source: "./media/characters/mort/back.svg",
  22577. extra: 371 / 332,
  22578. bottom: 0.18
  22579. }
  22580. },
  22581. },
  22582. [
  22583. {
  22584. name: "Normal",
  22585. height: math.unit(14, "feet"),
  22586. default: true
  22587. },
  22588. ]
  22589. ))
  22590. characterMakers.push(() => makeCharacter(
  22591. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22592. {
  22593. front: {
  22594. height: math.unit(8, "feet"),
  22595. weight: math.unit(1, "ton"),
  22596. name: "Front",
  22597. image: {
  22598. source: "./media/characters/lycoa/front.svg",
  22599. extra: 1836/1728,
  22600. bottom: 81/1917
  22601. }
  22602. },
  22603. back: {
  22604. height: math.unit(8, "feet"),
  22605. weight: math.unit(1, "ton"),
  22606. name: "Back",
  22607. image: {
  22608. source: "./media/characters/lycoa/back.svg",
  22609. extra: 1785/1720,
  22610. bottom: 91/1876
  22611. }
  22612. },
  22613. head: {
  22614. height: math.unit(1.6243, "feet"),
  22615. name: "Head",
  22616. image: {
  22617. source: "./media/characters/lycoa/head.svg",
  22618. extra: 1011/782,
  22619. bottom: 0/1011
  22620. }
  22621. },
  22622. tailmaw: {
  22623. height: math.unit(1.9, "feet"),
  22624. name: "Tailmaw",
  22625. image: {
  22626. source: "./media/characters/lycoa/tailmaw.svg"
  22627. }
  22628. },
  22629. tentacles: {
  22630. height: math.unit(2.1, "feet"),
  22631. name: "Tentacles",
  22632. image: {
  22633. source: "./media/characters/lycoa/tentacles.svg"
  22634. }
  22635. },
  22636. dick: {
  22637. height: math.unit(1.73, "feet"),
  22638. name: "Dick",
  22639. image: {
  22640. source: "./media/characters/lycoa/dick.svg"
  22641. }
  22642. },
  22643. },
  22644. [
  22645. {
  22646. name: "Normal",
  22647. height: math.unit(8, "feet"),
  22648. default: true
  22649. },
  22650. {
  22651. name: "Macro",
  22652. height: math.unit(30, "feet")
  22653. },
  22654. ]
  22655. ))
  22656. characterMakers.push(() => makeCharacter(
  22657. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22658. {
  22659. front: {
  22660. height: math.unit(4 + 2 / 12, "feet"),
  22661. weight: math.unit(70, "lb"),
  22662. name: "Front",
  22663. image: {
  22664. source: "./media/characters/naldara/front.svg",
  22665. extra: 1664/1387,
  22666. bottom: 81/1745
  22667. },
  22668. form: "anthro",
  22669. default: true
  22670. },
  22671. naga: {
  22672. height: math.unit(20, "feet"),
  22673. weight: math.unit(15000, "kg"),
  22674. name: "Front",
  22675. image: {
  22676. source: "./media/characters/naldara/naga.svg",
  22677. extra: 1590/1396,
  22678. bottom: 285/1875
  22679. },
  22680. form: "naga",
  22681. default: true
  22682. },
  22683. },
  22684. [
  22685. {
  22686. name: "Normal",
  22687. height: math.unit(4 + 2 / 12, "feet"),
  22688. form: "anthro",
  22689. default: true
  22690. },
  22691. {
  22692. name: "Normal",
  22693. height: math.unit(20, "feet"),
  22694. form: "naga",
  22695. default: true
  22696. },
  22697. ],
  22698. {
  22699. "anthro": {
  22700. name: "Anthro",
  22701. default: true
  22702. },
  22703. "naga": {
  22704. name: "Naga"
  22705. }
  22706. }
  22707. ))
  22708. characterMakers.push(() => makeCharacter(
  22709. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22710. {
  22711. front: {
  22712. height: math.unit(13 + 7 / 12, "feet"),
  22713. weight: math.unit(1500, "lb"),
  22714. name: "Front",
  22715. image: {
  22716. source: "./media/characters/briar/front.svg",
  22717. extra: 1223/1157,
  22718. bottom: 123/1346
  22719. }
  22720. },
  22721. },
  22722. [
  22723. {
  22724. name: "Normal",
  22725. height: math.unit(13 + 7 / 12, "feet"),
  22726. default: true
  22727. },
  22728. ]
  22729. ))
  22730. characterMakers.push(() => makeCharacter(
  22731. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22732. {
  22733. side: {
  22734. height: math.unit(16, "feet"),
  22735. weight: math.unit(500, "lb"),
  22736. name: "Side",
  22737. image: {
  22738. source: "./media/characters/vanguard/side.svg",
  22739. extra: 1022/914,
  22740. bottom: 30/1052
  22741. }
  22742. },
  22743. sideAlt: {
  22744. height: math.unit(10, "feet"),
  22745. weight: math.unit(500, "lb"),
  22746. name: "Side (Alt)",
  22747. image: {
  22748. source: "./media/characters/vanguard/side-alt.svg",
  22749. extra: 502 / 425,
  22750. bottom: 0.087
  22751. }
  22752. },
  22753. },
  22754. [
  22755. {
  22756. name: "Normal",
  22757. height: math.unit(17.71, "feet"),
  22758. default: true
  22759. },
  22760. ]
  22761. ))
  22762. characterMakers.push(() => makeCharacter(
  22763. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22764. {
  22765. front: {
  22766. height: math.unit(7.5, "feet"),
  22767. weight: math.unit(2, "lb"),
  22768. name: "Front",
  22769. image: {
  22770. source: "./media/characters/artemis/work-safe-front.svg",
  22771. extra: 1192 / 1075,
  22772. bottom: 0.07
  22773. },
  22774. form: "work-safe",
  22775. default: true
  22776. },
  22777. frontNsfw: {
  22778. height: math.unit(7.5, "feet"),
  22779. weight: math.unit(2, "lb"),
  22780. name: "Front",
  22781. image: {
  22782. source: "./media/characters/artemis/calibrating-front.svg",
  22783. extra: 1192 / 1075,
  22784. bottom: 0.07
  22785. },
  22786. form: "calibrating",
  22787. default: true
  22788. },
  22789. frontNsfwer: {
  22790. height: math.unit(7.5, "feet"),
  22791. weight: math.unit(2, "lb"),
  22792. name: "Front",
  22793. image: {
  22794. source: "./media/characters/artemis/oversize-load-front.svg",
  22795. extra: 1192 / 1075,
  22796. bottom: 0.07
  22797. },
  22798. form: "oversize-load",
  22799. default: true
  22800. },
  22801. side: {
  22802. height: math.unit(7.5, "feet"),
  22803. weight: math.unit(2, "lb"),
  22804. name: "Side",
  22805. image: {
  22806. source: "./media/characters/artemis/work-safe-side.svg",
  22807. extra: 1192 / 1075,
  22808. bottom: 0.07
  22809. },
  22810. form: "work-safe"
  22811. },
  22812. sideNsfw: {
  22813. height: math.unit(7.5, "feet"),
  22814. weight: math.unit(2, "lb"),
  22815. name: "Side",
  22816. image: {
  22817. source: "./media/characters/artemis/calibrating-side.svg",
  22818. extra: 1192 / 1075,
  22819. bottom: 0.07
  22820. },
  22821. form: "calibrating"
  22822. },
  22823. sideNsfwer: {
  22824. height: math.unit(7.5, "feet"),
  22825. weight: math.unit(2, "lb"),
  22826. name: "Side",
  22827. image: {
  22828. source: "./media/characters/artemis/oversize-load-side.svg",
  22829. extra: 1192 / 1075,
  22830. bottom: 0.07
  22831. },
  22832. form: "oversize-load"
  22833. },
  22834. maw: {
  22835. height: math.unit(1.1, "feet"),
  22836. name: "Maw",
  22837. image: {
  22838. source: "./media/characters/artemis/maw.svg"
  22839. },
  22840. form: "work-safe"
  22841. },
  22842. stomach: {
  22843. height: math.unit(0.95, "feet"),
  22844. name: "Stomach",
  22845. image: {
  22846. source: "./media/characters/artemis/stomach.svg"
  22847. },
  22848. form: "work-safe"
  22849. },
  22850. dickCanine: {
  22851. height: math.unit(1, "feet"),
  22852. name: "Dick (Canine)",
  22853. image: {
  22854. source: "./media/characters/artemis/dick-canine.svg"
  22855. },
  22856. form: "calibrating"
  22857. },
  22858. dickEquine: {
  22859. height: math.unit(0.85, "feet"),
  22860. name: "Dick (Equine)",
  22861. image: {
  22862. source: "./media/characters/artemis/dick-equine.svg"
  22863. },
  22864. form: "calibrating"
  22865. },
  22866. dickExotic: {
  22867. height: math.unit(0.85, "feet"),
  22868. name: "Dick (Exotic)",
  22869. image: {
  22870. source: "./media/characters/artemis/dick-exotic.svg"
  22871. },
  22872. form: "calibrating"
  22873. },
  22874. dickCanineBigger: {
  22875. height: math.unit(1 * 1.33, "feet"),
  22876. name: "Dick (Canine)",
  22877. image: {
  22878. source: "./media/characters/artemis/dick-canine.svg"
  22879. },
  22880. form: "oversize-load"
  22881. },
  22882. dickEquineBigger: {
  22883. height: math.unit(0.85 * 1.33, "feet"),
  22884. name: "Dick (Equine)",
  22885. image: {
  22886. source: "./media/characters/artemis/dick-equine.svg"
  22887. },
  22888. form: "oversize-load"
  22889. },
  22890. dickExoticBigger: {
  22891. height: math.unit(0.85 * 1.33, "feet"),
  22892. name: "Dick (Exotic)",
  22893. image: {
  22894. source: "./media/characters/artemis/dick-exotic.svg"
  22895. },
  22896. form: "oversize-load"
  22897. },
  22898. },
  22899. [
  22900. {
  22901. name: "Normal",
  22902. height: math.unit(7.5, "feet"),
  22903. form: "work-safe",
  22904. default: true
  22905. },
  22906. {
  22907. name: "Normal",
  22908. height: math.unit(7.5, "feet"),
  22909. form: "calibrating",
  22910. default: true
  22911. },
  22912. {
  22913. name: "Normal",
  22914. height: math.unit(7.5, "feet"),
  22915. form: "oversize-load",
  22916. default: true
  22917. },
  22918. {
  22919. name: "Enlarged",
  22920. height: math.unit(12, "feet"),
  22921. form: "work-safe",
  22922. },
  22923. {
  22924. name: "Enlarged",
  22925. height: math.unit(12, "feet"),
  22926. form: "calibrating",
  22927. },
  22928. {
  22929. name: "Enlarged",
  22930. height: math.unit(12, "feet"),
  22931. form: "oversize-load",
  22932. },
  22933. ],
  22934. {
  22935. "work-safe": {
  22936. name: "Work-Safe",
  22937. default: true
  22938. },
  22939. "calibrating": {
  22940. name: "Calibrating"
  22941. },
  22942. "oversize-load": {
  22943. name: "Oversize Load"
  22944. }
  22945. }
  22946. ))
  22947. characterMakers.push(() => makeCharacter(
  22948. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22949. {
  22950. front: {
  22951. height: math.unit(5 + 3 / 12, "feet"),
  22952. weight: math.unit(160, "lb"),
  22953. name: "Front",
  22954. image: {
  22955. source: "./media/characters/kira/front.svg",
  22956. extra: 906 / 786,
  22957. bottom: 0.01
  22958. }
  22959. },
  22960. back: {
  22961. height: math.unit(5 + 3 / 12, "feet"),
  22962. weight: math.unit(160, "lb"),
  22963. name: "Back",
  22964. image: {
  22965. source: "./media/characters/kira/back.svg",
  22966. extra: 882 / 757,
  22967. bottom: 0.005
  22968. }
  22969. },
  22970. frontDressed: {
  22971. height: math.unit(5 + 3 / 12, "feet"),
  22972. weight: math.unit(160, "lb"),
  22973. name: "Front (Dressed)",
  22974. image: {
  22975. source: "./media/characters/kira/front-dressed.svg",
  22976. extra: 906 / 786,
  22977. bottom: 0.01
  22978. }
  22979. },
  22980. beans: {
  22981. height: math.unit(0.92, "feet"),
  22982. name: "Beans",
  22983. image: {
  22984. source: "./media/characters/kira/beans.svg"
  22985. }
  22986. },
  22987. },
  22988. [
  22989. {
  22990. name: "Normal",
  22991. height: math.unit(5 + 3 / 12, "feet"),
  22992. default: true
  22993. },
  22994. ]
  22995. ))
  22996. characterMakers.push(() => makeCharacter(
  22997. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22998. {
  22999. front: {
  23000. height: math.unit(5 + 4 / 12, "feet"),
  23001. weight: math.unit(145, "lb"),
  23002. name: "Front",
  23003. image: {
  23004. source: "./media/characters/scramble/front.svg",
  23005. extra: 763 / 727,
  23006. bottom: 0.05
  23007. }
  23008. },
  23009. back: {
  23010. height: math.unit(5 + 4 / 12, "feet"),
  23011. weight: math.unit(145, "lb"),
  23012. name: "Back",
  23013. image: {
  23014. source: "./media/characters/scramble/back.svg",
  23015. extra: 826 / 737,
  23016. bottom: 0.002
  23017. }
  23018. },
  23019. },
  23020. [
  23021. {
  23022. name: "Normal",
  23023. height: math.unit(5 + 4 / 12, "feet"),
  23024. default: true
  23025. },
  23026. ]
  23027. ))
  23028. characterMakers.push(() => makeCharacter(
  23029. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23030. {
  23031. side: {
  23032. height: math.unit(6 + 2 / 12, "feet"),
  23033. weight: math.unit(190, "lb"),
  23034. name: "Side",
  23035. image: {
  23036. source: "./media/characters/biscuit/side.svg",
  23037. extra: 858 / 791,
  23038. bottom: 0.044
  23039. }
  23040. },
  23041. },
  23042. [
  23043. {
  23044. name: "Normal",
  23045. height: math.unit(6 + 2 / 12, "feet"),
  23046. default: true
  23047. },
  23048. ]
  23049. ))
  23050. characterMakers.push(() => makeCharacter(
  23051. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23052. {
  23053. front: {
  23054. height: math.unit(5 + 2 / 12, "feet"),
  23055. weight: math.unit(120, "lb"),
  23056. name: "Front",
  23057. image: {
  23058. source: "./media/characters/poffin/front.svg",
  23059. extra: 786 / 680,
  23060. bottom: 0.005
  23061. }
  23062. },
  23063. },
  23064. [
  23065. {
  23066. name: "Normal",
  23067. height: math.unit(5 + 2 / 12, "feet"),
  23068. default: true
  23069. },
  23070. ]
  23071. ))
  23072. characterMakers.push(() => makeCharacter(
  23073. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23074. {
  23075. front: {
  23076. height: math.unit(6 + 3 / 12, "feet"),
  23077. weight: math.unit(519, "lb"),
  23078. name: "Front",
  23079. image: {
  23080. source: "./media/characters/dhari/front.svg",
  23081. extra: 1048 / 946,
  23082. bottom: 0.015
  23083. }
  23084. },
  23085. back: {
  23086. height: math.unit(6 + 3 / 12, "feet"),
  23087. weight: math.unit(519, "lb"),
  23088. name: "Back",
  23089. image: {
  23090. source: "./media/characters/dhari/back.svg",
  23091. extra: 1048 / 931,
  23092. bottom: 0.005
  23093. }
  23094. },
  23095. frontDressed: {
  23096. height: math.unit(6 + 3 / 12, "feet"),
  23097. weight: math.unit(519, "lb"),
  23098. name: "Front (Dressed)",
  23099. image: {
  23100. source: "./media/characters/dhari/front-dressed.svg",
  23101. extra: 1713 / 1546,
  23102. bottom: 0.02
  23103. }
  23104. },
  23105. backDressed: {
  23106. height: math.unit(6 + 3 / 12, "feet"),
  23107. weight: math.unit(519, "lb"),
  23108. name: "Back (Dressed)",
  23109. image: {
  23110. source: "./media/characters/dhari/back-dressed.svg",
  23111. extra: 1699 / 1537,
  23112. bottom: 0.01
  23113. }
  23114. },
  23115. maw: {
  23116. height: math.unit(0.95, "feet"),
  23117. name: "Maw",
  23118. image: {
  23119. source: "./media/characters/dhari/maw.svg"
  23120. }
  23121. },
  23122. wereFront: {
  23123. height: math.unit(12 + 8 / 12, "feet"),
  23124. weight: math.unit(4000, "lb"),
  23125. name: "Front (Were)",
  23126. image: {
  23127. source: "./media/characters/dhari/were-front.svg",
  23128. extra: 1065 / 969,
  23129. bottom: 0.015
  23130. }
  23131. },
  23132. wereBack: {
  23133. height: math.unit(12 + 8 / 12, "feet"),
  23134. weight: math.unit(4000, "lb"),
  23135. name: "Back (Were)",
  23136. image: {
  23137. source: "./media/characters/dhari/were-back.svg",
  23138. extra: 1065 / 969,
  23139. bottom: 0.012
  23140. }
  23141. },
  23142. wereMaw: {
  23143. height: math.unit(0.625, "meters"),
  23144. name: "Maw (Were)",
  23145. image: {
  23146. source: "./media/characters/dhari/were-maw.svg"
  23147. }
  23148. },
  23149. },
  23150. [
  23151. {
  23152. name: "Normal",
  23153. height: math.unit(6 + 3 / 12, "feet"),
  23154. default: true
  23155. },
  23156. ]
  23157. ))
  23158. characterMakers.push(() => makeCharacter(
  23159. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23160. {
  23161. anthro: {
  23162. height: math.unit(5 + 7 / 12, "feet"),
  23163. weight: math.unit(175, "lb"),
  23164. name: "Anthro",
  23165. image: {
  23166. source: "./media/characters/rena-dyne/anthro.svg",
  23167. extra: 1849 / 1785,
  23168. bottom: 0.005
  23169. }
  23170. },
  23171. taur: {
  23172. height: math.unit(15 + 6 / 12, "feet"),
  23173. weight: math.unit(8000, "lb"),
  23174. name: "Taur",
  23175. image: {
  23176. source: "./media/characters/rena-dyne/taur.svg",
  23177. extra: 2315 / 2234,
  23178. bottom: 0.033
  23179. }
  23180. },
  23181. },
  23182. [
  23183. {
  23184. name: "Normal",
  23185. height: math.unit(5 + 7 / 12, "feet"),
  23186. default: true
  23187. },
  23188. ]
  23189. ))
  23190. characterMakers.push(() => makeCharacter(
  23191. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23192. {
  23193. front: {
  23194. height: math.unit(8, "feet"),
  23195. weight: math.unit(600, "lb"),
  23196. name: "Front",
  23197. image: {
  23198. source: "./media/characters/weremeep/front.svg",
  23199. extra: 970/849,
  23200. bottom: 7/977
  23201. }
  23202. },
  23203. },
  23204. [
  23205. {
  23206. name: "Normal",
  23207. height: math.unit(8, "feet"),
  23208. default: true
  23209. },
  23210. {
  23211. name: "Lorg",
  23212. height: math.unit(12, "feet")
  23213. },
  23214. {
  23215. name: "Oh Lawd She Comin'",
  23216. height: math.unit(20, "feet")
  23217. },
  23218. ]
  23219. ))
  23220. characterMakers.push(() => makeCharacter(
  23221. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23222. {
  23223. front: {
  23224. height: math.unit(4, "feet"),
  23225. weight: math.unit(90, "lb"),
  23226. name: "Front",
  23227. image: {
  23228. source: "./media/characters/reza/front.svg",
  23229. extra: 1183 / 1111,
  23230. bottom: 0.017
  23231. }
  23232. },
  23233. back: {
  23234. height: math.unit(4, "feet"),
  23235. weight: math.unit(90, "lb"),
  23236. name: "Back",
  23237. image: {
  23238. source: "./media/characters/reza/back.svg",
  23239. extra: 1183 / 1111,
  23240. bottom: 0.01
  23241. }
  23242. },
  23243. drake: {
  23244. height: math.unit(30, "feet"),
  23245. weight: math.unit(246960, "lb"),
  23246. name: "Drake",
  23247. image: {
  23248. source: "./media/characters/reza/drake.svg",
  23249. extra: 2350 / 2024,
  23250. bottom: 60.7 / 2403
  23251. }
  23252. },
  23253. },
  23254. [
  23255. {
  23256. name: "Normal",
  23257. height: math.unit(4, "feet"),
  23258. default: true
  23259. },
  23260. ]
  23261. ))
  23262. characterMakers.push(() => makeCharacter(
  23263. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23264. {
  23265. side: {
  23266. height: math.unit(15, "feet"),
  23267. weight: math.unit(14, "tons"),
  23268. name: "Side",
  23269. image: {
  23270. source: "./media/characters/athea/side.svg",
  23271. extra: 960 / 540,
  23272. bottom: 0.003
  23273. }
  23274. },
  23275. sitting: {
  23276. height: math.unit(6 * 2.85, "feet"),
  23277. weight: math.unit(14, "tons"),
  23278. name: "Sitting",
  23279. image: {
  23280. source: "./media/characters/athea/sitting.svg",
  23281. extra: 621 / 581,
  23282. bottom: 0.075
  23283. }
  23284. },
  23285. maw: {
  23286. height: math.unit(7.59498031496063, "feet"),
  23287. name: "Maw",
  23288. image: {
  23289. source: "./media/characters/athea/maw.svg"
  23290. }
  23291. },
  23292. },
  23293. [
  23294. {
  23295. name: "Lap Cat",
  23296. height: math.unit(2.5, "feet")
  23297. },
  23298. {
  23299. name: "Minimacro",
  23300. height: math.unit(15, "feet"),
  23301. default: true
  23302. },
  23303. {
  23304. name: "Macro",
  23305. height: math.unit(120, "feet")
  23306. },
  23307. {
  23308. name: "Macro+",
  23309. height: math.unit(640, "feet")
  23310. },
  23311. {
  23312. name: "Colossus",
  23313. height: math.unit(2.2, "miles")
  23314. },
  23315. ]
  23316. ))
  23317. characterMakers.push(() => makeCharacter(
  23318. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23319. {
  23320. front: {
  23321. height: math.unit(8 + 8 / 12, "feet"),
  23322. weight: math.unit(130, "kg"),
  23323. name: "Front",
  23324. image: {
  23325. source: "./media/characters/seroko/front.svg",
  23326. extra: 1385 / 1280,
  23327. bottom: 0.025
  23328. }
  23329. },
  23330. back: {
  23331. height: math.unit(8 + 8 / 12, "feet"),
  23332. weight: math.unit(130, "kg"),
  23333. name: "Back",
  23334. image: {
  23335. source: "./media/characters/seroko/back.svg",
  23336. extra: 1369 / 1238,
  23337. bottom: 0.018
  23338. }
  23339. },
  23340. frontDressed: {
  23341. height: math.unit(8 + 8 / 12, "feet"),
  23342. weight: math.unit(130, "kg"),
  23343. name: "Front (Dressed)",
  23344. image: {
  23345. source: "./media/characters/seroko/front-dressed.svg",
  23346. extra: 1366 / 1275,
  23347. bottom: 0.03
  23348. }
  23349. },
  23350. },
  23351. [
  23352. {
  23353. name: "Normal",
  23354. height: math.unit(8 + 8 / 12, "feet"),
  23355. default: true
  23356. },
  23357. ]
  23358. ))
  23359. characterMakers.push(() => makeCharacter(
  23360. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23361. {
  23362. front: {
  23363. height: math.unit(5.5, "feet"),
  23364. weight: math.unit(160, "lb"),
  23365. name: "Front",
  23366. image: {
  23367. source: "./media/characters/quatzi/front.svg",
  23368. extra: 2346 / 2242,
  23369. bottom: 0.015
  23370. }
  23371. },
  23372. },
  23373. [
  23374. {
  23375. name: "Normal",
  23376. height: math.unit(5.5, "feet"),
  23377. default: true
  23378. },
  23379. {
  23380. name: "Big",
  23381. height: math.unit(7.7, "feet")
  23382. },
  23383. ]
  23384. ))
  23385. characterMakers.push(() => makeCharacter(
  23386. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23387. {
  23388. front: {
  23389. height: math.unit(5 + 11 / 12, "feet"),
  23390. weight: math.unit(180, "lb"),
  23391. name: "Front",
  23392. image: {
  23393. source: "./media/characters/sen/front.svg",
  23394. extra: 1321 / 1254,
  23395. bottom: 0.015
  23396. }
  23397. },
  23398. side: {
  23399. height: math.unit(5 + 11 / 12, "feet"),
  23400. weight: math.unit(180, "lb"),
  23401. name: "Side",
  23402. image: {
  23403. source: "./media/characters/sen/side.svg",
  23404. extra: 1321 / 1254,
  23405. bottom: 0.007
  23406. }
  23407. },
  23408. back: {
  23409. height: math.unit(5 + 11 / 12, "feet"),
  23410. weight: math.unit(180, "lb"),
  23411. name: "Back",
  23412. image: {
  23413. source: "./media/characters/sen/back.svg",
  23414. extra: 1321 / 1254
  23415. }
  23416. },
  23417. },
  23418. [
  23419. {
  23420. name: "Normal",
  23421. height: math.unit(5 + 11 / 12, "feet"),
  23422. default: true
  23423. },
  23424. ]
  23425. ))
  23426. characterMakers.push(() => makeCharacter(
  23427. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23428. {
  23429. front: {
  23430. height: math.unit(166.6, "cm"),
  23431. weight: math.unit(66.6, "kg"),
  23432. name: "Front",
  23433. image: {
  23434. source: "./media/characters/fruity/front.svg",
  23435. extra: 1510 / 1386,
  23436. bottom: 0.04
  23437. }
  23438. },
  23439. back: {
  23440. height: math.unit(166.6, "cm"),
  23441. weight: math.unit(66.6, "lb"),
  23442. name: "Back",
  23443. image: {
  23444. source: "./media/characters/fruity/back.svg",
  23445. extra: 1563 / 1435,
  23446. bottom: 0.005
  23447. }
  23448. },
  23449. },
  23450. [
  23451. {
  23452. name: "Normal",
  23453. height: math.unit(166.6, "cm"),
  23454. default: true
  23455. },
  23456. {
  23457. name: "Demonic",
  23458. height: math.unit(166.6, "feet")
  23459. },
  23460. ]
  23461. ))
  23462. characterMakers.push(() => makeCharacter(
  23463. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23464. {
  23465. side: {
  23466. height: math.unit(10, "feet"),
  23467. weight: math.unit(500, "lb"),
  23468. name: "Side",
  23469. image: {
  23470. source: "./media/characters/zost/side.svg",
  23471. extra: 2870/2533,
  23472. bottom: 252/3122
  23473. }
  23474. },
  23475. mawFront: {
  23476. height: math.unit(1.08, "meters"),
  23477. name: "Maw (Front)",
  23478. image: {
  23479. source: "./media/characters/zost/maw-front.svg"
  23480. }
  23481. },
  23482. mawSide: {
  23483. height: math.unit(2.66, "feet"),
  23484. name: "Maw (Side)",
  23485. image: {
  23486. source: "./media/characters/zost/maw-side.svg"
  23487. }
  23488. },
  23489. wingspan: {
  23490. height: math.unit(7.4, "feet"),
  23491. name: "Wingspan",
  23492. image: {
  23493. source: "./media/characters/zost/wingspan.svg"
  23494. }
  23495. },
  23496. },
  23497. [
  23498. {
  23499. name: "Normal",
  23500. height: math.unit(10, "feet"),
  23501. default: true
  23502. },
  23503. ]
  23504. ))
  23505. characterMakers.push(() => makeCharacter(
  23506. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23507. {
  23508. front: {
  23509. height: math.unit(5 + 4 / 12, "feet"),
  23510. weight: math.unit(120, "lb"),
  23511. name: "Front",
  23512. image: {
  23513. source: "./media/characters/luci/front.svg",
  23514. extra: 1985 / 1884,
  23515. bottom: 0.04
  23516. }
  23517. },
  23518. back: {
  23519. height: math.unit(5 + 4 / 12, "feet"),
  23520. weight: math.unit(120, "lb"),
  23521. name: "Back",
  23522. image: {
  23523. source: "./media/characters/luci/back.svg",
  23524. extra: 1892 / 1791,
  23525. bottom: 0.002
  23526. }
  23527. },
  23528. },
  23529. [
  23530. {
  23531. name: "Normal",
  23532. height: math.unit(5 + 4 / 12, "feet"),
  23533. default: true
  23534. },
  23535. ]
  23536. ))
  23537. characterMakers.push(() => makeCharacter(
  23538. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23539. {
  23540. front: {
  23541. height: math.unit(1500, "feet"),
  23542. weight: math.unit(3.8e6, "tons"),
  23543. name: "Front",
  23544. image: {
  23545. source: "./media/characters/2th/front.svg",
  23546. extra: 3489 / 3350,
  23547. bottom: 0.1
  23548. }
  23549. },
  23550. foot: {
  23551. height: math.unit(461, "feet"),
  23552. name: "Foot",
  23553. image: {
  23554. source: "./media/characters/2th/foot.svg"
  23555. }
  23556. },
  23557. },
  23558. [
  23559. {
  23560. name: "\"Micro\"",
  23561. height: math.unit(15 + 7 / 12, "feet")
  23562. },
  23563. {
  23564. name: "Normal",
  23565. height: math.unit(1500, "feet"),
  23566. default: true
  23567. },
  23568. {
  23569. name: "Macro",
  23570. height: math.unit(5000, "feet")
  23571. },
  23572. {
  23573. name: "Megamacro",
  23574. height: math.unit(15, "miles")
  23575. },
  23576. {
  23577. name: "Gigamacro",
  23578. height: math.unit(4000, "miles")
  23579. },
  23580. {
  23581. name: "Galactic",
  23582. height: math.unit(50, "AU")
  23583. },
  23584. ]
  23585. ))
  23586. characterMakers.push(() => makeCharacter(
  23587. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23588. {
  23589. front: {
  23590. height: math.unit(5 + 6 / 12, "feet"),
  23591. weight: math.unit(220, "lb"),
  23592. name: "Front",
  23593. image: {
  23594. source: "./media/characters/amethyst/front.svg",
  23595. extra: 2078 / 2040,
  23596. bottom: 0.045
  23597. }
  23598. },
  23599. back: {
  23600. height: math.unit(5 + 6 / 12, "feet"),
  23601. weight: math.unit(220, "lb"),
  23602. name: "Back",
  23603. image: {
  23604. source: "./media/characters/amethyst/back.svg",
  23605. extra: 2021 / 1989,
  23606. bottom: 0.02
  23607. }
  23608. },
  23609. },
  23610. [
  23611. {
  23612. name: "Normal",
  23613. height: math.unit(5 + 6 / 12, "feet"),
  23614. default: true
  23615. },
  23616. ]
  23617. ))
  23618. characterMakers.push(() => makeCharacter(
  23619. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23620. {
  23621. front: {
  23622. height: math.unit(4 + 11 / 12, "feet"),
  23623. weight: math.unit(120, "lb"),
  23624. name: "Front",
  23625. image: {
  23626. source: "./media/characters/yumi-akiyama/front.svg",
  23627. extra: 1327 / 1235,
  23628. bottom: 0.02
  23629. }
  23630. },
  23631. back: {
  23632. height: math.unit(4 + 11 / 12, "feet"),
  23633. weight: math.unit(120, "lb"),
  23634. name: "Back",
  23635. image: {
  23636. source: "./media/characters/yumi-akiyama/back.svg",
  23637. extra: 1287 / 1245,
  23638. bottom: 0.002
  23639. }
  23640. },
  23641. },
  23642. [
  23643. {
  23644. name: "Galactic",
  23645. height: math.unit(50, "galaxies"),
  23646. default: true
  23647. },
  23648. {
  23649. name: "Universal",
  23650. height: math.unit(100, "universes")
  23651. },
  23652. ]
  23653. ))
  23654. characterMakers.push(() => makeCharacter(
  23655. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23656. {
  23657. front: {
  23658. height: math.unit(8, "feet"),
  23659. weight: math.unit(500, "lb"),
  23660. name: "Front",
  23661. image: {
  23662. source: "./media/characters/rifter-yrmori/front.svg",
  23663. extra: 1180 / 1125,
  23664. bottom: 0.02
  23665. }
  23666. },
  23667. back: {
  23668. height: math.unit(8, "feet"),
  23669. weight: math.unit(500, "lb"),
  23670. name: "Back",
  23671. image: {
  23672. source: "./media/characters/rifter-yrmori/back.svg",
  23673. extra: 1190 / 1145,
  23674. bottom: 0.001
  23675. }
  23676. },
  23677. wings: {
  23678. height: math.unit(7.75, "feet"),
  23679. weight: math.unit(500, "lb"),
  23680. name: "Wings",
  23681. image: {
  23682. source: "./media/characters/rifter-yrmori/wings.svg",
  23683. extra: 1357 / 1285
  23684. }
  23685. },
  23686. maw: {
  23687. height: math.unit(0.8, "feet"),
  23688. name: "Maw",
  23689. image: {
  23690. source: "./media/characters/rifter-yrmori/maw.svg"
  23691. }
  23692. },
  23693. mawfront: {
  23694. height: math.unit(1.45, "feet"),
  23695. name: "Maw (Front)",
  23696. image: {
  23697. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23698. }
  23699. },
  23700. },
  23701. [
  23702. {
  23703. name: "Normal",
  23704. height: math.unit(8, "feet"),
  23705. default: true
  23706. },
  23707. {
  23708. name: "Macro",
  23709. height: math.unit(42, "meters")
  23710. },
  23711. ]
  23712. ))
  23713. characterMakers.push(() => makeCharacter(
  23714. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23715. {
  23716. were: {
  23717. height: math.unit(25 + 6 / 12, "feet"),
  23718. weight: math.unit(10000, "lb"),
  23719. name: "Were",
  23720. image: {
  23721. source: "./media/characters/tahajin/were.svg",
  23722. extra: 801 / 770,
  23723. bottom: 0.042
  23724. }
  23725. },
  23726. aquatic: {
  23727. height: math.unit(6 + 4 / 12, "feet"),
  23728. weight: math.unit(160, "lb"),
  23729. name: "Aquatic",
  23730. image: {
  23731. source: "./media/characters/tahajin/aquatic.svg",
  23732. extra: 572 / 542,
  23733. bottom: 0.04
  23734. }
  23735. },
  23736. chow: {
  23737. height: math.unit(8 + 11 / 12, "feet"),
  23738. weight: math.unit(450, "lb"),
  23739. name: "Chow",
  23740. image: {
  23741. source: "./media/characters/tahajin/chow.svg",
  23742. extra: 660 / 640,
  23743. bottom: 0.015
  23744. }
  23745. },
  23746. demiNaga: {
  23747. height: math.unit(6 + 8 / 12, "feet"),
  23748. weight: math.unit(300, "lb"),
  23749. name: "Demi Naga",
  23750. image: {
  23751. source: "./media/characters/tahajin/demi-naga.svg",
  23752. extra: 643 / 615,
  23753. bottom: 0.1
  23754. }
  23755. },
  23756. data: {
  23757. height: math.unit(5, "inches"),
  23758. weight: math.unit(0.1, "lb"),
  23759. name: "Data",
  23760. image: {
  23761. source: "./media/characters/tahajin/data.svg"
  23762. }
  23763. },
  23764. fluu: {
  23765. height: math.unit(5 + 7 / 12, "feet"),
  23766. weight: math.unit(140, "lb"),
  23767. name: "Fluu",
  23768. image: {
  23769. source: "./media/characters/tahajin/fluu.svg",
  23770. extra: 628 / 592,
  23771. bottom: 0.02
  23772. }
  23773. },
  23774. starWarrior: {
  23775. height: math.unit(4 + 5 / 12, "feet"),
  23776. weight: math.unit(50, "lb"),
  23777. name: "Star Warrior",
  23778. image: {
  23779. source: "./media/characters/tahajin/star-warrior.svg"
  23780. }
  23781. },
  23782. },
  23783. [
  23784. {
  23785. name: "Normal",
  23786. height: math.unit(25 + 6 / 12, "feet"),
  23787. default: true
  23788. },
  23789. ]
  23790. ))
  23791. characterMakers.push(() => makeCharacter(
  23792. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23793. {
  23794. front: {
  23795. height: math.unit(8, "feet"),
  23796. weight: math.unit(350, "lb"),
  23797. name: "Front",
  23798. image: {
  23799. source: "./media/characters/gabira/front.svg",
  23800. extra: 1261/1154,
  23801. bottom: 51/1312
  23802. }
  23803. },
  23804. back: {
  23805. height: math.unit(8, "feet"),
  23806. weight: math.unit(350, "lb"),
  23807. name: "Back",
  23808. image: {
  23809. source: "./media/characters/gabira/back.svg",
  23810. extra: 1265/1163,
  23811. bottom: 46/1311
  23812. }
  23813. },
  23814. head: {
  23815. height: math.unit(2.85, "feet"),
  23816. name: "Head",
  23817. image: {
  23818. source: "./media/characters/gabira/head.svg"
  23819. }
  23820. },
  23821. },
  23822. [
  23823. {
  23824. name: "Normal",
  23825. height: math.unit(8, "feet"),
  23826. default: true
  23827. },
  23828. ]
  23829. ))
  23830. characterMakers.push(() => makeCharacter(
  23831. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23832. {
  23833. front: {
  23834. height: math.unit(5 + 3 / 12, "feet"),
  23835. weight: math.unit(137, "lb"),
  23836. name: "Front",
  23837. image: {
  23838. source: "./media/characters/sasha-katraine/front.svg",
  23839. extra: 1745/1694,
  23840. bottom: 37/1782
  23841. }
  23842. },
  23843. back: {
  23844. height: math.unit(5 + 3 / 12, "feet"),
  23845. weight: math.unit(137, "lb"),
  23846. name: "Back",
  23847. image: {
  23848. source: "./media/characters/sasha-katraine/back.svg",
  23849. extra: 1776/1699,
  23850. bottom: 26/1802
  23851. }
  23852. },
  23853. },
  23854. [
  23855. {
  23856. name: "Micro",
  23857. height: math.unit(5, "inches")
  23858. },
  23859. {
  23860. name: "Normal",
  23861. height: math.unit(5 + 3 / 12, "feet"),
  23862. default: true
  23863. },
  23864. ]
  23865. ))
  23866. characterMakers.push(() => makeCharacter(
  23867. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23868. {
  23869. side: {
  23870. height: math.unit(4, "inches"),
  23871. weight: math.unit(200, "grams"),
  23872. name: "Side",
  23873. image: {
  23874. source: "./media/characters/der/side.svg",
  23875. extra: 719 / 400,
  23876. bottom: 30.6 / 749.9187
  23877. }
  23878. },
  23879. },
  23880. [
  23881. {
  23882. name: "Micro",
  23883. height: math.unit(4, "inches"),
  23884. default: true
  23885. },
  23886. ]
  23887. ))
  23888. characterMakers.push(() => makeCharacter(
  23889. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23890. {
  23891. side: {
  23892. height: math.unit(30, "meters"),
  23893. weight: math.unit(700, "tonnes"),
  23894. name: "Side",
  23895. image: {
  23896. source: "./media/characters/fixerdragon/side.svg",
  23897. extra: (1293.0514 - 116.03) / 1106.86,
  23898. bottom: 116.03 / 1293.0514
  23899. }
  23900. },
  23901. },
  23902. [
  23903. {
  23904. name: "Planck",
  23905. height: math.unit(1.6e-35, "meters")
  23906. },
  23907. {
  23908. name: "Micro",
  23909. height: math.unit(0.4, "meters")
  23910. },
  23911. {
  23912. name: "Normal",
  23913. height: math.unit(30, "meters"),
  23914. default: true
  23915. },
  23916. {
  23917. name: "Megamacro",
  23918. height: math.unit(1.2, "megameters")
  23919. },
  23920. {
  23921. name: "Teramacro",
  23922. height: math.unit(130, "terameters")
  23923. },
  23924. {
  23925. name: "Yottamacro",
  23926. height: math.unit(6200, "yottameters")
  23927. },
  23928. ]
  23929. ));
  23930. characterMakers.push(() => makeCharacter(
  23931. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23932. {
  23933. front: {
  23934. height: math.unit(8, "feet"),
  23935. weight: math.unit(250, "lb"),
  23936. name: "Front",
  23937. image: {
  23938. source: "./media/characters/kite/front.svg",
  23939. extra: 2796 / 2659,
  23940. bottom: 0.002
  23941. }
  23942. },
  23943. },
  23944. [
  23945. {
  23946. name: "Normal",
  23947. height: math.unit(8, "feet"),
  23948. default: true
  23949. },
  23950. {
  23951. name: "Macro",
  23952. height: math.unit(360, "feet")
  23953. },
  23954. {
  23955. name: "Megamacro",
  23956. height: math.unit(1500, "feet")
  23957. },
  23958. ]
  23959. ))
  23960. characterMakers.push(() => makeCharacter(
  23961. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23962. {
  23963. anthro_front: {
  23964. height: math.unit(5 + 11/12, "feet"),
  23965. weight: math.unit(170, "lb"),
  23966. name: "Front",
  23967. image: {
  23968. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23969. extra: 1735/1585,
  23970. bottom: 96/1831
  23971. },
  23972. form: "anthro",
  23973. default: true
  23974. },
  23975. anthro_back: {
  23976. height: math.unit(5 + 11/12, "feet"),
  23977. weight: math.unit(170, "lb"),
  23978. name: "Back",
  23979. image: {
  23980. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23981. extra: 1749/1607,
  23982. bottom: 28/1777
  23983. },
  23984. form: "anthro"
  23985. },
  23986. anthro_male: {
  23987. height: math.unit(5 + 11/12, "feet"),
  23988. weight: math.unit(170, "lb"),
  23989. name: "Male",
  23990. image: {
  23991. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23992. extra: 1855/1713,
  23993. bottom: 63/1918
  23994. },
  23995. form: "anthro"
  23996. },
  23997. taur_front: {
  23998. height: math.unit(5 + 7/12, "feet"),
  23999. weight: math.unit(170, "lb"),
  24000. name: "Front",
  24001. image: {
  24002. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24003. extra: 1151/1059,
  24004. bottom: 356/1507
  24005. },
  24006. form: "taur",
  24007. default: true
  24008. },
  24009. anthro_frontDressed: {
  24010. height: math.unit(5 + 11/12, "feet"),
  24011. weight: math.unit(170, "lb"),
  24012. name: "Front (Dressed)",
  24013. image: {
  24014. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24015. extra: 1735/1585,
  24016. bottom: 96/1831
  24017. },
  24018. form: "anthro"
  24019. },
  24020. anthro_backDressed: {
  24021. height: math.unit(5 + 11/12, "feet"),
  24022. weight: math.unit(170, "lb"),
  24023. name: "Back (Dressed)",
  24024. image: {
  24025. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24026. extra: 1749/1607,
  24027. bottom: 28/1777
  24028. },
  24029. form: "anthro"
  24030. },
  24031. anthro_maleDressed: {
  24032. height: math.unit(5 + 11/12, "feet"),
  24033. weight: math.unit(170, "lb"),
  24034. name: "Male (Dressed)",
  24035. image: {
  24036. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24037. extra: 1855/1713,
  24038. bottom: 63/1918
  24039. },
  24040. form: "anthro"
  24041. },
  24042. taur_frontDressed: {
  24043. height: math.unit(5 + 7/12, "feet"),
  24044. weight: math.unit(170, "lb"),
  24045. name: "Front (Dressed)",
  24046. image: {
  24047. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24048. extra: 1151/1059,
  24049. bottom: 356/1507
  24050. },
  24051. form: "taur"
  24052. },
  24053. maw: {
  24054. height: math.unit(1.46, "feet"),
  24055. name: "Maw",
  24056. image: {
  24057. source: "./media/characters/poojawa-vynar/maw.svg"
  24058. },
  24059. allForms: true
  24060. },
  24061. head: {
  24062. height: math.unit(2.34, "feet"),
  24063. name: "Head",
  24064. image: {
  24065. source: "./media/characters/poojawa-vynar/head.svg"
  24066. },
  24067. allForms: true
  24068. },
  24069. leftPaw: {
  24070. height: math.unit(1.72, "feet"),
  24071. name: "Left Paw",
  24072. image: {
  24073. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24074. },
  24075. allForms: true
  24076. },
  24077. rightPaw: {
  24078. height: math.unit(1.61, "feet"),
  24079. name: "Right Paw",
  24080. image: {
  24081. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24082. },
  24083. allForms: true
  24084. },
  24085. toering: {
  24086. height: math.unit(2.9, "inches"),
  24087. name: "Toering",
  24088. image: {
  24089. source: "./media/characters/poojawa-vynar/toering.svg"
  24090. },
  24091. allForms: true
  24092. },
  24093. shaft: {
  24094. height: math.unit(0.625, "feet"),
  24095. name: "Shaft",
  24096. image: {
  24097. source: "./media/characters/poojawa-vynar/shaft.svg"
  24098. },
  24099. allForms: true
  24100. },
  24101. spade: {
  24102. height: math.unit(0.42, "feet"),
  24103. name: "Spade",
  24104. image: {
  24105. source: "./media/characters/poojawa-vynar/spade.svg"
  24106. },
  24107. allForms: true
  24108. },
  24109. },
  24110. [
  24111. {
  24112. name: "Shortstack",
  24113. height: math.unit(4, "feet"),
  24114. form: "anthro"
  24115. },
  24116. {
  24117. name: "Normal",
  24118. height: math.unit(5 + 11 / 12, "feet"),
  24119. form: "anthro",
  24120. default: true
  24121. },
  24122. {
  24123. name: "Tauric",
  24124. height: math.unit(4, "meters"),
  24125. form: "taur",
  24126. default: true
  24127. },
  24128. ],
  24129. {
  24130. "anthro": {
  24131. name: "Anthro",
  24132. default: true
  24133. },
  24134. "taur": {
  24135. name: "Taur",
  24136. },
  24137. }
  24138. ))
  24139. characterMakers.push(() => makeCharacter(
  24140. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24141. {
  24142. front: {
  24143. height: math.unit(293, "meters"),
  24144. weight: math.unit(70400, "tons"),
  24145. name: "Front",
  24146. image: {
  24147. source: "./media/characters/violette/front.svg",
  24148. extra: 1227 / 1180,
  24149. bottom: 0.005
  24150. }
  24151. },
  24152. back: {
  24153. height: math.unit(293, "meters"),
  24154. weight: math.unit(70400, "tons"),
  24155. name: "Back",
  24156. image: {
  24157. source: "./media/characters/violette/back.svg",
  24158. extra: 1227 / 1180,
  24159. bottom: 0.005
  24160. }
  24161. },
  24162. },
  24163. [
  24164. {
  24165. name: "Macro",
  24166. height: math.unit(293, "meters"),
  24167. default: true
  24168. },
  24169. ]
  24170. ))
  24171. characterMakers.push(() => makeCharacter(
  24172. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24173. {
  24174. front: {
  24175. height: math.unit(1050, "feet"),
  24176. weight: math.unit(200000, "tons"),
  24177. name: "Front",
  24178. image: {
  24179. source: "./media/characters/alessandra/front.svg",
  24180. extra: 960 / 912,
  24181. bottom: 0.06
  24182. }
  24183. },
  24184. },
  24185. [
  24186. {
  24187. name: "Macro",
  24188. height: math.unit(1050, "feet")
  24189. },
  24190. {
  24191. name: "Macro+",
  24192. height: math.unit(900, "meters"),
  24193. default: true
  24194. },
  24195. ]
  24196. ))
  24197. characterMakers.push(() => makeCharacter(
  24198. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24199. {
  24200. front: {
  24201. height: math.unit(5, "feet"),
  24202. weight: math.unit(187, "lb"),
  24203. name: "Front",
  24204. image: {
  24205. source: "./media/characters/person/front.svg",
  24206. extra: 3087 / 2945,
  24207. bottom: 91 / 3181
  24208. }
  24209. },
  24210. },
  24211. [
  24212. {
  24213. name: "Micro",
  24214. height: math.unit(3, "inches")
  24215. },
  24216. {
  24217. name: "Normal",
  24218. height: math.unit(5, "feet"),
  24219. default: true
  24220. },
  24221. {
  24222. name: "Macro",
  24223. height: math.unit(90, "feet")
  24224. },
  24225. {
  24226. name: "Max Size",
  24227. height: math.unit(280, "feet")
  24228. },
  24229. ]
  24230. ))
  24231. characterMakers.push(() => makeCharacter(
  24232. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24233. {
  24234. front: {
  24235. height: math.unit(4.5, "meters"),
  24236. weight: math.unit(3200, "lb"),
  24237. name: "Front",
  24238. image: {
  24239. source: "./media/characters/ty/front.svg",
  24240. extra: 1038 / 960,
  24241. bottom: 31.156 / 1068
  24242. }
  24243. },
  24244. back: {
  24245. height: math.unit(4.5, "meters"),
  24246. weight: math.unit(3200, "lb"),
  24247. name: "Back",
  24248. image: {
  24249. source: "./media/characters/ty/back.svg",
  24250. extra: 1044 / 966,
  24251. bottom: 7.48 / 1049
  24252. }
  24253. },
  24254. },
  24255. [
  24256. {
  24257. name: "Normal",
  24258. height: math.unit(4.5, "meters"),
  24259. default: true
  24260. },
  24261. ]
  24262. ))
  24263. characterMakers.push(() => makeCharacter(
  24264. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24265. {
  24266. front: {
  24267. height: math.unit(5 + 4 / 12, "feet"),
  24268. weight: math.unit(115, "lb"),
  24269. name: "Front",
  24270. image: {
  24271. source: "./media/characters/rocky/front.svg",
  24272. extra: 1012 / 975,
  24273. bottom: 54 / 1066
  24274. }
  24275. },
  24276. },
  24277. [
  24278. {
  24279. name: "Normal",
  24280. height: math.unit(5 + 4 / 12, "feet"),
  24281. default: true
  24282. },
  24283. ]
  24284. ))
  24285. characterMakers.push(() => makeCharacter(
  24286. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24287. {
  24288. upright: {
  24289. height: math.unit(6, "meters"),
  24290. weight: math.unit(4000, "kg"),
  24291. name: "Upright",
  24292. image: {
  24293. source: "./media/characters/ruin/upright.svg",
  24294. extra: 668 / 661,
  24295. bottom: 42 / 799.8396
  24296. }
  24297. },
  24298. },
  24299. [
  24300. {
  24301. name: "Normal",
  24302. height: math.unit(6, "meters"),
  24303. default: true
  24304. },
  24305. ]
  24306. ))
  24307. characterMakers.push(() => makeCharacter(
  24308. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24309. {
  24310. front: {
  24311. height: math.unit(5, "feet"),
  24312. weight: math.unit(106, "lb"),
  24313. name: "Front",
  24314. image: {
  24315. source: "./media/characters/robin/front.svg",
  24316. extra: 862 / 799,
  24317. bottom: 42.4 / 914.8856
  24318. }
  24319. },
  24320. },
  24321. [
  24322. {
  24323. name: "Normal",
  24324. height: math.unit(5, "feet"),
  24325. default: true
  24326. },
  24327. ]
  24328. ))
  24329. characterMakers.push(() => makeCharacter(
  24330. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24331. {
  24332. side: {
  24333. height: math.unit(3, "feet"),
  24334. weight: math.unit(225, "lb"),
  24335. name: "Side",
  24336. image: {
  24337. source: "./media/characters/saian/side.svg",
  24338. extra: 566 / 356,
  24339. bottom: 79.7 / 643
  24340. }
  24341. },
  24342. maw: {
  24343. height: math.unit(2.85, "feet"),
  24344. name: "Maw",
  24345. image: {
  24346. source: "./media/characters/saian/maw.svg"
  24347. }
  24348. },
  24349. },
  24350. [
  24351. {
  24352. name: "Normal",
  24353. height: math.unit(3, "feet"),
  24354. default: true
  24355. },
  24356. ]
  24357. ))
  24358. characterMakers.push(() => makeCharacter(
  24359. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24360. {
  24361. side: {
  24362. height: math.unit(8, "feet"),
  24363. weight: math.unit(300, "lb"),
  24364. name: "Side",
  24365. image: {
  24366. source: "./media/characters/equus-silvermane/side.svg",
  24367. extra: 2176 / 2050,
  24368. bottom: 65.7 / 2245
  24369. }
  24370. },
  24371. front: {
  24372. height: math.unit(8, "feet"),
  24373. weight: math.unit(300, "lb"),
  24374. name: "Front",
  24375. image: {
  24376. source: "./media/characters/equus-silvermane/front.svg",
  24377. extra: 4633 / 4400,
  24378. bottom: 71.3 / 4706.915
  24379. }
  24380. },
  24381. sideStepping: {
  24382. height: math.unit(8, "feet"),
  24383. weight: math.unit(300, "lb"),
  24384. name: "Side (Stepping)",
  24385. image: {
  24386. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24387. extra: 1968 / 1860,
  24388. bottom: 16.4 / 1989
  24389. }
  24390. },
  24391. },
  24392. [
  24393. {
  24394. name: "Normal",
  24395. height: math.unit(8, "feet")
  24396. },
  24397. {
  24398. name: "Minimacro",
  24399. height: math.unit(75, "feet"),
  24400. default: true
  24401. },
  24402. {
  24403. name: "Macro",
  24404. height: math.unit(150, "feet")
  24405. },
  24406. {
  24407. name: "Macro+",
  24408. height: math.unit(1000, "feet")
  24409. },
  24410. {
  24411. name: "Megamacro",
  24412. height: math.unit(1, "mile")
  24413. },
  24414. ]
  24415. ))
  24416. characterMakers.push(() => makeCharacter(
  24417. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24418. {
  24419. side: {
  24420. height: math.unit(20, "feet"),
  24421. weight: math.unit(30000, "kg"),
  24422. name: "Side",
  24423. image: {
  24424. source: "./media/characters/windar/side.svg",
  24425. extra: 1491 / 1248,
  24426. bottom: 82.56 / 1568
  24427. }
  24428. },
  24429. },
  24430. [
  24431. {
  24432. name: "Normal",
  24433. height: math.unit(20, "feet"),
  24434. default: true
  24435. },
  24436. ]
  24437. ))
  24438. characterMakers.push(() => makeCharacter(
  24439. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24440. {
  24441. side: {
  24442. height: math.unit(15.66, "feet"),
  24443. weight: math.unit(150, "lb"),
  24444. name: "Side",
  24445. image: {
  24446. source: "./media/characters/melody/side.svg",
  24447. extra: 1097 / 944,
  24448. bottom: 11.8 / 1109
  24449. }
  24450. },
  24451. sideOutfit: {
  24452. height: math.unit(15.66, "feet"),
  24453. weight: math.unit(150, "lb"),
  24454. name: "Side (Outfit)",
  24455. image: {
  24456. source: "./media/characters/melody/side-outfit.svg",
  24457. extra: 1097 / 944,
  24458. bottom: 11.8 / 1109
  24459. }
  24460. },
  24461. },
  24462. [
  24463. {
  24464. name: "Normal",
  24465. height: math.unit(15.66, "feet"),
  24466. default: true
  24467. },
  24468. ]
  24469. ))
  24470. characterMakers.push(() => makeCharacter(
  24471. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24472. {
  24473. armoredFront: {
  24474. height: math.unit(8, "feet"),
  24475. weight: math.unit(325, "lb"),
  24476. name: "Front",
  24477. image: {
  24478. source: "./media/characters/windera/armored-front.svg",
  24479. extra: 1830/1598,
  24480. bottom: 151/1981
  24481. },
  24482. form: "armored",
  24483. default: true
  24484. },
  24485. macroFront: {
  24486. height: math.unit(70, "feet"),
  24487. weight: math.unit(315453, "lb"),
  24488. name: "Front",
  24489. image: {
  24490. source: "./media/characters/windera/macro-front.svg",
  24491. extra: 963/883,
  24492. bottom: 23/986
  24493. },
  24494. form: "macro",
  24495. default: true
  24496. },
  24497. },
  24498. [
  24499. {
  24500. name: "Normal",
  24501. height: math.unit(8, "feet"),
  24502. default: true,
  24503. form: "armored"
  24504. },
  24505. {
  24506. name: "Normal",
  24507. height: math.unit(70, "feet"),
  24508. default: true,
  24509. form: "macro"
  24510. },
  24511. ],
  24512. {
  24513. "armored": {
  24514. name: "Armored",
  24515. default: true
  24516. },
  24517. "macro": {
  24518. name: "Macro",
  24519. },
  24520. }
  24521. ))
  24522. characterMakers.push(() => makeCharacter(
  24523. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24524. {
  24525. front: {
  24526. height: math.unit(28.75, "feet"),
  24527. weight: math.unit(2000, "kg"),
  24528. name: "Front",
  24529. image: {
  24530. source: "./media/characters/sonear/front.svg",
  24531. extra: 1041.1 / 964.9,
  24532. bottom: 53.7 / 1096.6
  24533. }
  24534. },
  24535. },
  24536. [
  24537. {
  24538. name: "Normal",
  24539. height: math.unit(28.75, "feet"),
  24540. default: true
  24541. },
  24542. ]
  24543. ))
  24544. characterMakers.push(() => makeCharacter(
  24545. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24546. {
  24547. side: {
  24548. height: math.unit(25.5, "feet"),
  24549. weight: math.unit(23000, "kg"),
  24550. name: "Side",
  24551. image: {
  24552. source: "./media/characters/kanara/side.svg"
  24553. }
  24554. },
  24555. },
  24556. [
  24557. {
  24558. name: "Normal",
  24559. height: math.unit(25.5, "feet"),
  24560. default: true
  24561. },
  24562. ]
  24563. ))
  24564. characterMakers.push(() => makeCharacter(
  24565. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24566. {
  24567. side: {
  24568. height: math.unit(10, "feet"),
  24569. weight: math.unit(1000, "kg"),
  24570. name: "Side",
  24571. image: {
  24572. source: "./media/characters/ereus/side.svg",
  24573. extra: 1157 / 959,
  24574. bottom: 153 / 1312.5
  24575. }
  24576. },
  24577. },
  24578. [
  24579. {
  24580. name: "Normal",
  24581. height: math.unit(10, "feet"),
  24582. default: true
  24583. },
  24584. ]
  24585. ))
  24586. characterMakers.push(() => makeCharacter(
  24587. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24588. {
  24589. side: {
  24590. height: math.unit(4.5, "feet"),
  24591. weight: math.unit(500, "lb"),
  24592. name: "Side",
  24593. image: {
  24594. source: "./media/characters/e-ter/side.svg",
  24595. extra: 1550 / 1248,
  24596. bottom: 146 / 1694
  24597. }
  24598. },
  24599. },
  24600. [
  24601. {
  24602. name: "Normal",
  24603. height: math.unit(4.5, "feet"),
  24604. default: true
  24605. },
  24606. ]
  24607. ))
  24608. characterMakers.push(() => makeCharacter(
  24609. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24610. {
  24611. side: {
  24612. height: math.unit(9.7, "feet"),
  24613. weight: math.unit(4000, "kg"),
  24614. name: "Side",
  24615. image: {
  24616. source: "./media/characters/yamie/side.svg"
  24617. }
  24618. },
  24619. },
  24620. [
  24621. {
  24622. name: "Normal",
  24623. height: math.unit(9.7, "feet"),
  24624. default: true
  24625. },
  24626. ]
  24627. ))
  24628. characterMakers.push(() => makeCharacter(
  24629. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24630. {
  24631. front: {
  24632. height: math.unit(50, "feet"),
  24633. weight: math.unit(50000, "kg"),
  24634. name: "Front",
  24635. image: {
  24636. source: "./media/characters/anders/front.svg",
  24637. extra: 570 / 539,
  24638. bottom: 14.7 / 586.7
  24639. }
  24640. },
  24641. },
  24642. [
  24643. {
  24644. name: "Large",
  24645. height: math.unit(50, "feet")
  24646. },
  24647. {
  24648. name: "Macro",
  24649. height: math.unit(2000, "feet"),
  24650. default: true
  24651. },
  24652. {
  24653. name: "Megamacro",
  24654. height: math.unit(12, "miles")
  24655. },
  24656. ]
  24657. ))
  24658. characterMakers.push(() => makeCharacter(
  24659. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24660. {
  24661. front: {
  24662. height: math.unit(7 + 2 / 12, "feet"),
  24663. weight: math.unit(300, "lb"),
  24664. name: "Front",
  24665. image: {
  24666. source: "./media/characters/reban/front.svg",
  24667. extra: 1287/1212,
  24668. bottom: 148/1435
  24669. }
  24670. },
  24671. head: {
  24672. height: math.unit(1.95, "feet"),
  24673. name: "Head",
  24674. image: {
  24675. source: "./media/characters/reban/head.svg"
  24676. }
  24677. },
  24678. maw: {
  24679. height: math.unit(0.95, "feet"),
  24680. name: "Maw",
  24681. image: {
  24682. source: "./media/characters/reban/maw.svg"
  24683. }
  24684. },
  24685. foot: {
  24686. height: math.unit(1.65, "feet"),
  24687. name: "Foot",
  24688. image: {
  24689. source: "./media/characters/reban/foot.svg"
  24690. }
  24691. },
  24692. dick: {
  24693. height: math.unit(7 / 5, "feet"),
  24694. name: "Dick",
  24695. image: {
  24696. source: "./media/characters/reban/dick.svg"
  24697. }
  24698. },
  24699. },
  24700. [
  24701. {
  24702. name: "Natural Height",
  24703. height: math.unit(7 + 2 / 12, "feet")
  24704. },
  24705. {
  24706. name: "Macro",
  24707. height: math.unit(500, "feet"),
  24708. default: true
  24709. },
  24710. {
  24711. name: "Canon Height",
  24712. height: math.unit(50, "AU")
  24713. },
  24714. ]
  24715. ))
  24716. characterMakers.push(() => makeCharacter(
  24717. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24718. {
  24719. front: {
  24720. height: math.unit(6, "feet"),
  24721. weight: math.unit(150, "lb"),
  24722. name: "Front",
  24723. image: {
  24724. source: "./media/characters/terrance-keayes/front.svg",
  24725. extra: 1.005,
  24726. bottom: 151 / 1615
  24727. }
  24728. },
  24729. side: {
  24730. height: math.unit(6, "feet"),
  24731. weight: math.unit(150, "lb"),
  24732. name: "Side",
  24733. image: {
  24734. source: "./media/characters/terrance-keayes/side.svg",
  24735. extra: 1.005,
  24736. bottom: 129.4 / 1544
  24737. }
  24738. },
  24739. back: {
  24740. height: math.unit(6, "feet"),
  24741. weight: math.unit(150, "lb"),
  24742. name: "Back",
  24743. image: {
  24744. source: "./media/characters/terrance-keayes/back.svg",
  24745. extra: 1.005,
  24746. bottom: 58.4 / 1557.3
  24747. }
  24748. },
  24749. dick: {
  24750. height: math.unit(6 * 0.208, "feet"),
  24751. name: "Dick",
  24752. image: {
  24753. source: "./media/characters/terrance-keayes/dick.svg"
  24754. }
  24755. },
  24756. },
  24757. [
  24758. {
  24759. name: "Canon Height",
  24760. height: math.unit(35, "miles"),
  24761. default: true
  24762. },
  24763. ]
  24764. ))
  24765. characterMakers.push(() => makeCharacter(
  24766. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24767. {
  24768. front: {
  24769. height: math.unit(6, "feet"),
  24770. weight: math.unit(150, "lb"),
  24771. name: "Front",
  24772. image: {
  24773. source: "./media/characters/ofelia/front.svg",
  24774. extra: 1130/1117,
  24775. bottom: 91/1221
  24776. }
  24777. },
  24778. back: {
  24779. height: math.unit(6, "feet"),
  24780. weight: math.unit(150, "lb"),
  24781. name: "Back",
  24782. image: {
  24783. source: "./media/characters/ofelia/back.svg",
  24784. extra: 1172/1159,
  24785. bottom: 28/1200
  24786. }
  24787. },
  24788. maw: {
  24789. height: math.unit(1, "feet"),
  24790. name: "Maw",
  24791. image: {
  24792. source: "./media/characters/ofelia/maw.svg"
  24793. }
  24794. },
  24795. foot: {
  24796. height: math.unit(1.949, "feet"),
  24797. name: "Foot",
  24798. image: {
  24799. source: "./media/characters/ofelia/foot.svg"
  24800. }
  24801. },
  24802. },
  24803. [
  24804. {
  24805. name: "Canon Height",
  24806. height: math.unit(2000, "miles"),
  24807. default: true
  24808. },
  24809. ]
  24810. ))
  24811. characterMakers.push(() => makeCharacter(
  24812. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24813. {
  24814. front: {
  24815. height: math.unit(6, "feet"),
  24816. weight: math.unit(150, "lb"),
  24817. name: "Front",
  24818. image: {
  24819. source: "./media/characters/samuel/front.svg",
  24820. extra: 265 / 258,
  24821. bottom: 2 / 266.1566
  24822. }
  24823. },
  24824. },
  24825. [
  24826. {
  24827. name: "Macro",
  24828. height: math.unit(100, "feet"),
  24829. default: true
  24830. },
  24831. {
  24832. name: "Full Size",
  24833. height: math.unit(1000, "miles")
  24834. },
  24835. ]
  24836. ))
  24837. characterMakers.push(() => makeCharacter(
  24838. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24839. {
  24840. front: {
  24841. height: math.unit(6, "feet"),
  24842. weight: math.unit(300, "lb"),
  24843. name: "Front",
  24844. image: {
  24845. source: "./media/characters/beishir-kiel/front.svg",
  24846. extra: 569 / 547,
  24847. bottom: 41.9 / 609
  24848. }
  24849. },
  24850. maw: {
  24851. height: math.unit(6 * 0.202, "feet"),
  24852. name: "Maw",
  24853. image: {
  24854. source: "./media/characters/beishir-kiel/maw.svg"
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Macro",
  24861. height: math.unit(300, "feet"),
  24862. default: true
  24863. },
  24864. ]
  24865. ))
  24866. characterMakers.push(() => makeCharacter(
  24867. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24868. {
  24869. front: {
  24870. height: math.unit(5 + 7/12, "feet"),
  24871. weight: math.unit(120, "lb"),
  24872. name: "Front",
  24873. image: {
  24874. source: "./media/characters/logan-grey/front.svg",
  24875. extra: 1836/1738,
  24876. bottom: 108/1944
  24877. }
  24878. },
  24879. back: {
  24880. height: math.unit(5 + 7/12, "feet"),
  24881. weight: math.unit(120, "lb"),
  24882. name: "Back",
  24883. image: {
  24884. source: "./media/characters/logan-grey/back.svg",
  24885. extra: 1880/1794,
  24886. bottom: 24/1904
  24887. }
  24888. },
  24889. frontSfw: {
  24890. height: math.unit(5 + 7/12, "feet"),
  24891. weight: math.unit(120, "lb"),
  24892. name: "Front (SFW)",
  24893. image: {
  24894. source: "./media/characters/logan-grey/front-sfw.svg",
  24895. extra: 1836/1738,
  24896. bottom: 108/1944
  24897. }
  24898. },
  24899. backSfw: {
  24900. height: math.unit(5 + 7/12, "feet"),
  24901. weight: math.unit(120, "lb"),
  24902. name: "Back (SFW)",
  24903. image: {
  24904. source: "./media/characters/logan-grey/back-sfw.svg",
  24905. extra: 1880/1794,
  24906. bottom: 24/1904
  24907. }
  24908. },
  24909. hands: {
  24910. height: math.unit(0.84, "feet"),
  24911. name: "Hands",
  24912. image: {
  24913. source: "./media/characters/logan-grey/hands.svg"
  24914. }
  24915. },
  24916. paws: {
  24917. height: math.unit(0.72, "feet"),
  24918. name: "Paws",
  24919. image: {
  24920. source: "./media/characters/logan-grey/paws.svg"
  24921. }
  24922. },
  24923. cock: {
  24924. height: math.unit(1.45, "feet"),
  24925. name: "Cock",
  24926. image: {
  24927. source: "./media/characters/logan-grey/cock.svg"
  24928. }
  24929. },
  24930. cockAlt: {
  24931. height: math.unit(1.437, "feet"),
  24932. name: "Cock (alt)",
  24933. image: {
  24934. source: "./media/characters/logan-grey/cock-alt.svg"
  24935. }
  24936. },
  24937. },
  24938. [
  24939. {
  24940. name: "Normal",
  24941. height: math.unit(5 + 8 / 12, "feet")
  24942. },
  24943. {
  24944. name: "The 500 Foot Femboy",
  24945. height: math.unit(500, "feet"),
  24946. default: true
  24947. },
  24948. {
  24949. name: "Megmacro",
  24950. height: math.unit(20, "miles")
  24951. },
  24952. ]
  24953. ))
  24954. characterMakers.push(() => makeCharacter(
  24955. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24956. {
  24957. front: {
  24958. height: math.unit(8 + 2 / 12, "feet"),
  24959. weight: math.unit(275, "lb"),
  24960. name: "Front",
  24961. image: {
  24962. source: "./media/characters/draganta/front.svg",
  24963. extra: 1177 / 1135,
  24964. bottom: 33.46 / 1212.1
  24965. }
  24966. },
  24967. },
  24968. [
  24969. {
  24970. name: "Normal",
  24971. height: math.unit(8 + 6 / 12, "feet"),
  24972. default: true
  24973. },
  24974. {
  24975. name: "Macro",
  24976. height: math.unit(150, "feet")
  24977. },
  24978. {
  24979. name: "Megamacro",
  24980. height: math.unit(1000, "miles")
  24981. },
  24982. ]
  24983. ))
  24984. characterMakers.push(() => makeCharacter(
  24985. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24986. {
  24987. front: {
  24988. height: math.unit(1.72, "m"),
  24989. weight: math.unit(80, "lb"),
  24990. name: "Front",
  24991. image: {
  24992. source: "./media/characters/voski/front.svg",
  24993. extra: 2076.22 / 2022.4,
  24994. bottom: 102.7 / 2177.3866
  24995. }
  24996. },
  24997. frontFlaccid: {
  24998. height: math.unit(1.72, "m"),
  24999. weight: math.unit(80, "lb"),
  25000. name: "Front (Flaccid)",
  25001. image: {
  25002. source: "./media/characters/voski/front-flaccid.svg",
  25003. extra: 2076.22 / 2022.4,
  25004. bottom: 102.7 / 2177.3866
  25005. }
  25006. },
  25007. frontErect: {
  25008. height: math.unit(1.72, "m"),
  25009. weight: math.unit(80, "lb"),
  25010. name: "Front (Erect)",
  25011. image: {
  25012. source: "./media/characters/voski/front-erect.svg",
  25013. extra: 2076.22 / 2022.4,
  25014. bottom: 102.7 / 2177.3866
  25015. }
  25016. },
  25017. back: {
  25018. height: math.unit(1.72, "m"),
  25019. weight: math.unit(80, "lb"),
  25020. name: "Back",
  25021. image: {
  25022. source: "./media/characters/voski/back.svg",
  25023. extra: 2104 / 2051,
  25024. bottom: 10.45 / 2113.63
  25025. }
  25026. },
  25027. },
  25028. [
  25029. {
  25030. name: "Normal",
  25031. height: math.unit(1.72, "m")
  25032. },
  25033. {
  25034. name: "Macro",
  25035. height: math.unit(55, "m"),
  25036. default: true
  25037. },
  25038. {
  25039. name: "Macro+",
  25040. height: math.unit(300, "m")
  25041. },
  25042. {
  25043. name: "Macro++",
  25044. height: math.unit(700, "m")
  25045. },
  25046. {
  25047. name: "Macro+++",
  25048. height: math.unit(4500, "m")
  25049. },
  25050. {
  25051. name: "Macro++++",
  25052. height: math.unit(45, "km")
  25053. },
  25054. {
  25055. name: "Macro+++++",
  25056. height: math.unit(1220, "km")
  25057. },
  25058. ]
  25059. ))
  25060. characterMakers.push(() => makeCharacter(
  25061. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25062. {
  25063. front: {
  25064. height: math.unit(2.3, "m"),
  25065. weight: math.unit(304, "kg"),
  25066. name: "Front",
  25067. image: {
  25068. source: "./media/characters/icowom-lee/front.svg",
  25069. extra: 985 / 955,
  25070. bottom: 25.4 / 1012
  25071. }
  25072. },
  25073. fronttentacles: {
  25074. height: math.unit(2.3, "m"),
  25075. weight: math.unit(304, "kg"),
  25076. name: "Front-tentacles",
  25077. image: {
  25078. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25079. extra: 985 / 955,
  25080. bottom: 25.4 / 1012
  25081. }
  25082. },
  25083. back: {
  25084. height: math.unit(2.3, "m"),
  25085. weight: math.unit(304, "kg"),
  25086. name: "Back",
  25087. image: {
  25088. source: "./media/characters/icowom-lee/back.svg",
  25089. extra: 975 / 954,
  25090. bottom: 9.5 / 985
  25091. }
  25092. },
  25093. backtentacles: {
  25094. height: math.unit(2.3, "m"),
  25095. weight: math.unit(304, "kg"),
  25096. name: "Back-tentacles",
  25097. image: {
  25098. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25099. extra: 975 / 954,
  25100. bottom: 9.5 / 985
  25101. }
  25102. },
  25103. frontDressed: {
  25104. height: math.unit(2.3, "m"),
  25105. weight: math.unit(304, "kg"),
  25106. name: "Front (Dressed)",
  25107. image: {
  25108. source: "./media/characters/icowom-lee/front-dressed.svg",
  25109. extra: 3076 / 2933,
  25110. bottom: 51.4 / 3125.1889
  25111. }
  25112. },
  25113. rump: {
  25114. height: math.unit(0.776, "meters"),
  25115. name: "Rump",
  25116. image: {
  25117. source: "./media/characters/icowom-lee/rump.svg"
  25118. }
  25119. },
  25120. genitals: {
  25121. height: math.unit(0.78, "meters"),
  25122. name: "Genitals",
  25123. image: {
  25124. source: "./media/characters/icowom-lee/genitals.svg"
  25125. }
  25126. },
  25127. },
  25128. [
  25129. {
  25130. name: "Normal",
  25131. height: math.unit(2.3, "meters"),
  25132. default: true
  25133. },
  25134. {
  25135. name: "Macro",
  25136. height: math.unit(94, "meters"),
  25137. default: true
  25138. },
  25139. ]
  25140. ))
  25141. characterMakers.push(() => makeCharacter(
  25142. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25143. {
  25144. front: {
  25145. height: math.unit(22, "meters"),
  25146. weight: math.unit(21000, "kg"),
  25147. name: "Front",
  25148. image: {
  25149. source: "./media/characters/shock-diamond/front.svg",
  25150. extra: 2204 / 2053,
  25151. bottom: 65 / 2239.47
  25152. }
  25153. },
  25154. frontNude: {
  25155. height: math.unit(22, "meters"),
  25156. weight: math.unit(21000, "kg"),
  25157. name: "Front (Nude)",
  25158. image: {
  25159. source: "./media/characters/shock-diamond/front-nude.svg",
  25160. extra: 2514 / 2285,
  25161. bottom: 13 / 2527.56
  25162. }
  25163. },
  25164. },
  25165. [
  25166. {
  25167. name: "Normal",
  25168. height: math.unit(3, "meters")
  25169. },
  25170. {
  25171. name: "Macro",
  25172. height: math.unit(22, "meters"),
  25173. default: true
  25174. },
  25175. ]
  25176. ))
  25177. characterMakers.push(() => makeCharacter(
  25178. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25179. {
  25180. front: {
  25181. height: math.unit(5 + 4/12, "feet"),
  25182. weight: math.unit(125, "lb"),
  25183. name: "Front",
  25184. image: {
  25185. source: "./media/characters/rory/front.svg",
  25186. extra: 1790/1681,
  25187. bottom: 66/1856
  25188. },
  25189. form: "normal",
  25190. default: true
  25191. },
  25192. back: {
  25193. height: math.unit(5 + 4/12, "feet"),
  25194. weight: math.unit(125, "lb"),
  25195. name: "Back",
  25196. image: {
  25197. source: "./media/characters/rory/back.svg",
  25198. extra: 1805/1690,
  25199. bottom: 56/1861
  25200. },
  25201. form: "normal"
  25202. },
  25203. frontDressed: {
  25204. height: math.unit(5 + 4/12, "feet"),
  25205. weight: math.unit(125, "lb"),
  25206. name: "Front (Dressed)",
  25207. image: {
  25208. source: "./media/characters/rory/front-dressed.svg",
  25209. extra: 1790/1681,
  25210. bottom: 66/1856
  25211. },
  25212. form: "normal"
  25213. },
  25214. backDressed: {
  25215. height: math.unit(5 + 4/12, "feet"),
  25216. weight: math.unit(125, "lb"),
  25217. name: "Back (Dressed)",
  25218. image: {
  25219. source: "./media/characters/rory/back-dressed.svg",
  25220. extra: 1805/1690,
  25221. bottom: 56/1861
  25222. },
  25223. form: "normal"
  25224. },
  25225. frontNsfw: {
  25226. height: math.unit(5 + 4/12, "feet"),
  25227. weight: math.unit(125, "lb"),
  25228. name: "Front (NSFW)",
  25229. image: {
  25230. source: "./media/characters/rory/front-nsfw.svg",
  25231. extra: 1790/1681,
  25232. bottom: 66/1856
  25233. },
  25234. form: "normal"
  25235. },
  25236. backNsfw: {
  25237. height: math.unit(5 + 4/12, "feet"),
  25238. weight: math.unit(125, "lb"),
  25239. name: "Back (NSFW)",
  25240. image: {
  25241. source: "./media/characters/rory/back-nsfw.svg",
  25242. extra: 1805/1690,
  25243. bottom: 56/1861
  25244. },
  25245. form: "normal"
  25246. },
  25247. dick: {
  25248. height: math.unit(0.8, "feet"),
  25249. name: "Dick",
  25250. image: {
  25251. source: "./media/characters/rory/dick.svg"
  25252. },
  25253. form: "normal"
  25254. },
  25255. thicc_front: {
  25256. height: math.unit(5 + 4/12, "feet"),
  25257. weight: math.unit(195, "lb"),
  25258. name: "Front",
  25259. image: {
  25260. source: "./media/characters/rory/thicc-front.svg",
  25261. extra: 1220/1100,
  25262. bottom: 103/1323
  25263. },
  25264. form: "thicc",
  25265. default: true
  25266. },
  25267. thicc_back: {
  25268. height: math.unit(5 + 4/12, "feet"),
  25269. weight: math.unit(195, "lb"),
  25270. name: "Back",
  25271. image: {
  25272. source: "./media/characters/rory/thicc-back.svg",
  25273. extra: 1166/1086,
  25274. bottom: 35/1201
  25275. },
  25276. form: "thicc"
  25277. },
  25278. },
  25279. [
  25280. {
  25281. name: "Micro",
  25282. height: math.unit(3, "inches"),
  25283. allForms: true
  25284. },
  25285. {
  25286. name: "Normal",
  25287. height: math.unit(5 + 4/12, "feet"),
  25288. allForms: true,
  25289. default: true
  25290. },
  25291. {
  25292. name: "Macro",
  25293. height: math.unit(90, "feet"),
  25294. allForms: true
  25295. },
  25296. {
  25297. name: "Supercharged",
  25298. height: math.unit(270, "feet"),
  25299. allForms: true
  25300. },
  25301. ],
  25302. {
  25303. "normal": {
  25304. name: "Normal",
  25305. default: true
  25306. },
  25307. "thicc": {
  25308. name: "Thicc",
  25309. },
  25310. }
  25311. ))
  25312. characterMakers.push(() => makeCharacter(
  25313. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25314. {
  25315. front: {
  25316. height: math.unit(5 + 9 / 12, "feet"),
  25317. weight: math.unit(190, "lb"),
  25318. name: "Front",
  25319. image: {
  25320. source: "./media/characters/sprisk/front.svg",
  25321. extra: 1225 / 1180,
  25322. bottom: 42.7 / 1266.4
  25323. }
  25324. },
  25325. frontNsfw: {
  25326. height: math.unit(5 + 9 / 12, "feet"),
  25327. weight: math.unit(190, "lb"),
  25328. name: "Front (NSFW)",
  25329. image: {
  25330. source: "./media/characters/sprisk/front-nsfw.svg",
  25331. extra: 1225 / 1180,
  25332. bottom: 42.7 / 1266.4
  25333. }
  25334. },
  25335. back: {
  25336. height: math.unit(5 + 9 / 12, "feet"),
  25337. weight: math.unit(190, "lb"),
  25338. name: "Back",
  25339. image: {
  25340. source: "./media/characters/sprisk/back.svg",
  25341. extra: 1247 / 1200,
  25342. bottom: 5.6 / 1253.04
  25343. }
  25344. },
  25345. },
  25346. [
  25347. {
  25348. name: "Tiny",
  25349. height: math.unit(2, "inches")
  25350. },
  25351. {
  25352. name: "Normal",
  25353. height: math.unit(5 + 9 / 12, "feet"),
  25354. default: true
  25355. },
  25356. {
  25357. name: "Mini Macro",
  25358. height: math.unit(18, "feet")
  25359. },
  25360. {
  25361. name: "Macro",
  25362. height: math.unit(100, "feet")
  25363. },
  25364. {
  25365. name: "MACRO",
  25366. height: math.unit(50, "miles")
  25367. },
  25368. {
  25369. name: "M A C R O",
  25370. height: math.unit(300, "miles")
  25371. },
  25372. ]
  25373. ))
  25374. characterMakers.push(() => makeCharacter(
  25375. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25376. {
  25377. side: {
  25378. height: math.unit(15.6, "meters"),
  25379. weight: math.unit(700000, "kg"),
  25380. name: "Side",
  25381. image: {
  25382. source: "./media/characters/bunsen/side.svg",
  25383. extra: 1644 / 358
  25384. }
  25385. },
  25386. foot: {
  25387. height: math.unit(1.611 * 1644 / 358, "meter"),
  25388. name: "Foot",
  25389. image: {
  25390. source: "./media/characters/bunsen/foot.svg"
  25391. }
  25392. },
  25393. },
  25394. [
  25395. {
  25396. name: "Small",
  25397. height: math.unit(10, "feet")
  25398. },
  25399. {
  25400. name: "Normal",
  25401. height: math.unit(15.6, "meters"),
  25402. default: true
  25403. },
  25404. ]
  25405. ))
  25406. characterMakers.push(() => makeCharacter(
  25407. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25408. {
  25409. front: {
  25410. height: math.unit(4 + 11 / 12, "feet"),
  25411. weight: math.unit(140, "lb"),
  25412. name: "Front",
  25413. image: {
  25414. source: "./media/characters/sesh/front.svg",
  25415. extra: 3420 / 3231,
  25416. bottom: 72 / 3949.5
  25417. }
  25418. },
  25419. },
  25420. [
  25421. {
  25422. name: "Normal",
  25423. height: math.unit(4 + 11 / 12, "feet")
  25424. },
  25425. {
  25426. name: "Grown",
  25427. height: math.unit(15, "feet"),
  25428. default: true
  25429. },
  25430. {
  25431. name: "Macro",
  25432. height: math.unit(1500, "feet")
  25433. },
  25434. {
  25435. name: "Megamacro",
  25436. height: math.unit(30, "miles")
  25437. },
  25438. {
  25439. name: "Continental",
  25440. height: math.unit(3000, "miles")
  25441. },
  25442. {
  25443. name: "Gravity Mass",
  25444. height: math.unit(300000, "miles")
  25445. },
  25446. {
  25447. name: "Planet Buster",
  25448. height: math.unit(30000000, "miles")
  25449. },
  25450. {
  25451. name: "Big",
  25452. height: math.unit(3000000000, "miles")
  25453. },
  25454. ]
  25455. ))
  25456. characterMakers.push(() => makeCharacter(
  25457. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25458. {
  25459. front: {
  25460. height: math.unit(9, "feet"),
  25461. weight: math.unit(350, "lb"),
  25462. name: "Front",
  25463. image: {
  25464. source: "./media/characters/pepper/front.svg",
  25465. extra: 1448 / 1312,
  25466. bottom: 9.4 / 1457.88
  25467. }
  25468. },
  25469. back: {
  25470. height: math.unit(9, "feet"),
  25471. weight: math.unit(350, "lb"),
  25472. name: "Back",
  25473. image: {
  25474. source: "./media/characters/pepper/back.svg",
  25475. extra: 1423 / 1300,
  25476. bottom: 4.6 / 1429
  25477. }
  25478. },
  25479. maw: {
  25480. height: math.unit(0.932, "feet"),
  25481. name: "Maw",
  25482. image: {
  25483. source: "./media/characters/pepper/maw.svg"
  25484. }
  25485. },
  25486. },
  25487. [
  25488. {
  25489. name: "Normal",
  25490. height: math.unit(9, "feet"),
  25491. default: true
  25492. },
  25493. ]
  25494. ))
  25495. characterMakers.push(() => makeCharacter(
  25496. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25497. {
  25498. front: {
  25499. height: math.unit(6, "feet"),
  25500. weight: math.unit(150, "lb"),
  25501. name: "Front",
  25502. image: {
  25503. source: "./media/characters/maelstrom/front.svg",
  25504. extra: 2100 / 1883,
  25505. bottom: 94 / 2196.7
  25506. }
  25507. },
  25508. },
  25509. [
  25510. {
  25511. name: "Less Kaiju",
  25512. height: math.unit(200, "feet")
  25513. },
  25514. {
  25515. name: "Kaiju",
  25516. height: math.unit(400, "feet"),
  25517. default: true
  25518. },
  25519. {
  25520. name: "Kaiju-er",
  25521. height: math.unit(600, "feet")
  25522. },
  25523. ]
  25524. ))
  25525. characterMakers.push(() => makeCharacter(
  25526. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25527. {
  25528. front: {
  25529. height: math.unit(6 + 5 / 12, "feet"),
  25530. weight: math.unit(180, "lb"),
  25531. name: "Front",
  25532. image: {
  25533. source: "./media/characters/lexir/front.svg",
  25534. extra: 180 / 172,
  25535. bottom: 12 / 192
  25536. }
  25537. },
  25538. back: {
  25539. height: math.unit(6 + 5 / 12, "feet"),
  25540. weight: math.unit(180, "lb"),
  25541. name: "Back",
  25542. image: {
  25543. source: "./media/characters/lexir/back.svg",
  25544. extra: 1273/1201,
  25545. bottom: 39/1312
  25546. }
  25547. },
  25548. },
  25549. [
  25550. {
  25551. name: "Very Smal",
  25552. height: math.unit(1, "nm")
  25553. },
  25554. {
  25555. name: "Normal",
  25556. height: math.unit(6 + 5 / 12, "feet"),
  25557. default: true
  25558. },
  25559. {
  25560. name: "Macro",
  25561. height: math.unit(1, "mile")
  25562. },
  25563. {
  25564. name: "Megamacro",
  25565. height: math.unit(50, "miles")
  25566. },
  25567. ]
  25568. ))
  25569. characterMakers.push(() => makeCharacter(
  25570. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25571. {
  25572. front: {
  25573. height: math.unit(1.5, "meters"),
  25574. weight: math.unit(100, "lb"),
  25575. name: "Front",
  25576. image: {
  25577. source: "./media/characters/maksio/front.svg",
  25578. extra: 1549 / 1531,
  25579. bottom: 123.7 / 1674.5429
  25580. }
  25581. },
  25582. back: {
  25583. height: math.unit(1.5, "meters"),
  25584. weight: math.unit(100, "lb"),
  25585. name: "Back",
  25586. image: {
  25587. source: "./media/characters/maksio/back.svg",
  25588. extra: 1541 / 1509,
  25589. bottom: 97 / 1639
  25590. }
  25591. },
  25592. hand: {
  25593. height: math.unit(0.621, "feet"),
  25594. name: "Hand",
  25595. image: {
  25596. source: "./media/characters/maksio/hand.svg"
  25597. }
  25598. },
  25599. foot: {
  25600. height: math.unit(1.611, "feet"),
  25601. name: "Foot",
  25602. image: {
  25603. source: "./media/characters/maksio/foot.svg"
  25604. }
  25605. },
  25606. },
  25607. [
  25608. {
  25609. name: "Shrunken",
  25610. height: math.unit(10, "cm")
  25611. },
  25612. {
  25613. name: "Normal",
  25614. height: math.unit(150, "cm"),
  25615. default: true
  25616. },
  25617. ]
  25618. ))
  25619. characterMakers.push(() => makeCharacter(
  25620. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25621. {
  25622. front: {
  25623. height: math.unit(100, "feet"),
  25624. name: "Front",
  25625. image: {
  25626. source: "./media/characters/erza-bear/front.svg",
  25627. extra: 2449 / 2390,
  25628. bottom: 46 / 2494
  25629. }
  25630. },
  25631. back: {
  25632. height: math.unit(100, "feet"),
  25633. name: "Back",
  25634. image: {
  25635. source: "./media/characters/erza-bear/back.svg",
  25636. extra: 2489 / 2430,
  25637. bottom: 85.4 / 2480
  25638. }
  25639. },
  25640. tail: {
  25641. height: math.unit(42, "feet"),
  25642. name: "Tail",
  25643. image: {
  25644. source: "./media/characters/erza-bear/tail.svg"
  25645. }
  25646. },
  25647. tongue: {
  25648. height: math.unit(8, "feet"),
  25649. name: "Tongue",
  25650. image: {
  25651. source: "./media/characters/erza-bear/tongue.svg"
  25652. }
  25653. },
  25654. dick: {
  25655. height: math.unit(10.5, "feet"),
  25656. name: "Dick",
  25657. image: {
  25658. source: "./media/characters/erza-bear/dick.svg"
  25659. }
  25660. },
  25661. dickVertical: {
  25662. height: math.unit(16.9, "feet"),
  25663. name: "Dick (Vertical)",
  25664. image: {
  25665. source: "./media/characters/erza-bear/dick-vertical.svg"
  25666. }
  25667. },
  25668. },
  25669. [
  25670. {
  25671. name: "Macro",
  25672. height: math.unit(100, "feet"),
  25673. default: true
  25674. },
  25675. ]
  25676. ))
  25677. characterMakers.push(() => makeCharacter(
  25678. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25679. {
  25680. front: {
  25681. height: math.unit(172, "cm"),
  25682. weight: math.unit(73, "kg"),
  25683. name: "Front",
  25684. image: {
  25685. source: "./media/characters/violet-flor/front.svg",
  25686. extra: 1474/1379,
  25687. bottom: 113/1587
  25688. }
  25689. },
  25690. back: {
  25691. height: math.unit(180, "cm"),
  25692. weight: math.unit(73, "kg"),
  25693. name: "Back",
  25694. image: {
  25695. source: "./media/characters/violet-flor/back.svg",
  25696. extra: 1660/1567,
  25697. bottom: 49/1709
  25698. }
  25699. },
  25700. },
  25701. [
  25702. {
  25703. name: "Normal",
  25704. height: math.unit(172, "cm"),
  25705. default: true
  25706. },
  25707. ]
  25708. ))
  25709. characterMakers.push(() => makeCharacter(
  25710. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25711. {
  25712. front: {
  25713. height: math.unit(6, "feet"),
  25714. weight: math.unit(220, "lb"),
  25715. name: "Front",
  25716. image: {
  25717. source: "./media/characters/lynn-rhea/front.svg",
  25718. extra: 310 / 273
  25719. }
  25720. },
  25721. back: {
  25722. height: math.unit(6, "feet"),
  25723. weight: math.unit(220, "lb"),
  25724. name: "Back",
  25725. image: {
  25726. source: "./media/characters/lynn-rhea/back.svg",
  25727. extra: 310 / 273
  25728. }
  25729. },
  25730. dicks: {
  25731. height: math.unit(0.9, "feet"),
  25732. name: "Dicks",
  25733. image: {
  25734. source: "./media/characters/lynn-rhea/dicks.svg"
  25735. }
  25736. },
  25737. slit: {
  25738. height: math.unit(0.4, "feet"),
  25739. name: "Slit",
  25740. image: {
  25741. source: "./media/characters/lynn-rhea/slit.svg"
  25742. }
  25743. },
  25744. },
  25745. [
  25746. {
  25747. name: "Micro",
  25748. height: math.unit(1, "inch")
  25749. },
  25750. {
  25751. name: "Macro",
  25752. height: math.unit(60, "feet"),
  25753. default: true
  25754. },
  25755. {
  25756. name: "Megamacro",
  25757. height: math.unit(2, "miles")
  25758. },
  25759. {
  25760. name: "Gigamacro",
  25761. height: math.unit(3, "earths")
  25762. },
  25763. {
  25764. name: "Galactic",
  25765. height: math.unit(0.8, "galaxies")
  25766. },
  25767. ]
  25768. ))
  25769. characterMakers.push(() => makeCharacter(
  25770. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25771. {
  25772. front: {
  25773. height: math.unit(1600, "feet"),
  25774. weight: math.unit(85758785169, "kg"),
  25775. name: "Front",
  25776. image: {
  25777. source: "./media/characters/valathos/front.svg",
  25778. extra: 1451 / 1339
  25779. }
  25780. },
  25781. },
  25782. [
  25783. {
  25784. name: "Macro",
  25785. height: math.unit(1600, "feet"),
  25786. default: true
  25787. },
  25788. ]
  25789. ))
  25790. characterMakers.push(() => makeCharacter(
  25791. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25792. {
  25793. front: {
  25794. height: math.unit(7 + 5 / 12, "feet"),
  25795. weight: math.unit(300, "lb"),
  25796. name: "Front",
  25797. image: {
  25798. source: "./media/characters/azula/front.svg",
  25799. extra: 3208 / 2880,
  25800. bottom: 80.2 / 3277
  25801. }
  25802. },
  25803. back: {
  25804. height: math.unit(7 + 5 / 12, "feet"),
  25805. weight: math.unit(300, "lb"),
  25806. name: "Back",
  25807. image: {
  25808. source: "./media/characters/azula/back.svg",
  25809. extra: 3169 / 2822,
  25810. bottom: 150.6 / 3321
  25811. }
  25812. },
  25813. },
  25814. [
  25815. {
  25816. name: "Normal",
  25817. height: math.unit(7 + 5 / 12, "feet"),
  25818. default: true
  25819. },
  25820. {
  25821. name: "Big",
  25822. height: math.unit(20, "feet")
  25823. },
  25824. ]
  25825. ))
  25826. characterMakers.push(() => makeCharacter(
  25827. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25828. {
  25829. front: {
  25830. height: math.unit(5 + 1 / 12, "feet"),
  25831. weight: math.unit(110, "lb"),
  25832. name: "Front",
  25833. image: {
  25834. source: "./media/characters/rupert/front.svg",
  25835. extra: 1549 / 1495,
  25836. bottom: 54.2 / 1604.4
  25837. }
  25838. },
  25839. },
  25840. [
  25841. {
  25842. name: "Normal",
  25843. height: math.unit(5 + 1 / 12, "feet"),
  25844. default: true
  25845. },
  25846. ]
  25847. ))
  25848. characterMakers.push(() => makeCharacter(
  25849. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25850. {
  25851. front: {
  25852. height: math.unit(8 + 4 / 12, "feet"),
  25853. weight: math.unit(350, "lb"),
  25854. name: "Front",
  25855. image: {
  25856. source: "./media/characters/sheera-castellar/front.svg",
  25857. extra: 1957 / 1894,
  25858. bottom: 26.97 / 1975.017
  25859. }
  25860. },
  25861. side: {
  25862. height: math.unit(8 + 4 / 12, "feet"),
  25863. weight: math.unit(350, "lb"),
  25864. name: "Side",
  25865. image: {
  25866. source: "./media/characters/sheera-castellar/side.svg",
  25867. extra: 1957 / 1894
  25868. }
  25869. },
  25870. back: {
  25871. height: math.unit(8 + 4 / 12, "feet"),
  25872. weight: math.unit(350, "lb"),
  25873. name: "Back",
  25874. image: {
  25875. source: "./media/characters/sheera-castellar/back.svg",
  25876. extra: 1957 / 1894
  25877. }
  25878. },
  25879. angled: {
  25880. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25881. weight: math.unit(350, "lb"),
  25882. name: "Angled",
  25883. image: {
  25884. source: "./media/characters/sheera-castellar/angled.svg",
  25885. extra: 1807 / 1707,
  25886. bottom: 68 / 1875
  25887. }
  25888. },
  25889. genitals: {
  25890. height: math.unit(2.2, "feet"),
  25891. name: "Genitals",
  25892. image: {
  25893. source: "./media/characters/sheera-castellar/genitals.svg"
  25894. }
  25895. },
  25896. taur: {
  25897. height: math.unit(10 + 6/12, "feet"),
  25898. name: "Taur",
  25899. image: {
  25900. source: "./media/characters/sheera-castellar/taur.svg",
  25901. extra: 2017/1909,
  25902. bottom: 185/2202
  25903. }
  25904. },
  25905. },
  25906. [
  25907. {
  25908. name: "Normal",
  25909. height: math.unit(8 + 4 / 12, "feet")
  25910. },
  25911. {
  25912. name: "Macro",
  25913. height: math.unit(150, "feet"),
  25914. default: true
  25915. },
  25916. {
  25917. name: "Macro+",
  25918. height: math.unit(800, "feet")
  25919. },
  25920. ]
  25921. ))
  25922. characterMakers.push(() => makeCharacter(
  25923. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25924. {
  25925. front: {
  25926. height: math.unit(6, "feet"),
  25927. weight: math.unit(150, "lb"),
  25928. name: "Front",
  25929. image: {
  25930. source: "./media/characters/jaipur/front.svg",
  25931. extra: 3860 / 3731,
  25932. bottom: 287 / 4140
  25933. }
  25934. },
  25935. back: {
  25936. height: math.unit(6, "feet"),
  25937. weight: math.unit(150, "lb"),
  25938. name: "Back",
  25939. image: {
  25940. source: "./media/characters/jaipur/back.svg",
  25941. extra: 1637/1561,
  25942. bottom: 154/1791
  25943. }
  25944. },
  25945. },
  25946. [
  25947. {
  25948. name: "Normal",
  25949. height: math.unit(1.85, "meters"),
  25950. default: true
  25951. },
  25952. {
  25953. name: "Macro",
  25954. height: math.unit(150, "meters")
  25955. },
  25956. {
  25957. name: "Macro+",
  25958. height: math.unit(0.5, "miles")
  25959. },
  25960. {
  25961. name: "Macro++",
  25962. height: math.unit(2.5, "miles")
  25963. },
  25964. {
  25965. name: "Macro+++",
  25966. height: math.unit(12, "miles")
  25967. },
  25968. {
  25969. name: "Macro++++",
  25970. height: math.unit(120, "miles")
  25971. },
  25972. {
  25973. name: "Macro+++++",
  25974. height: math.unit(1200, "miles")
  25975. },
  25976. ]
  25977. ))
  25978. characterMakers.push(() => makeCharacter(
  25979. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25980. {
  25981. front: {
  25982. height: math.unit(6, "feet"),
  25983. weight: math.unit(150, "lb"),
  25984. name: "Front",
  25985. image: {
  25986. source: "./media/characters/sheila-wolf/front.svg",
  25987. extra: 1931 / 1808,
  25988. bottom: 29.5 / 1960
  25989. }
  25990. },
  25991. dick: {
  25992. height: math.unit(1.464, "feet"),
  25993. name: "Dick",
  25994. image: {
  25995. source: "./media/characters/sheila-wolf/dick.svg"
  25996. }
  25997. },
  25998. muzzle: {
  25999. height: math.unit(0.513, "feet"),
  26000. name: "Muzzle",
  26001. image: {
  26002. source: "./media/characters/sheila-wolf/muzzle.svg"
  26003. }
  26004. },
  26005. },
  26006. [
  26007. {
  26008. name: "Macro",
  26009. height: math.unit(70, "feet"),
  26010. default: true
  26011. },
  26012. ]
  26013. ))
  26014. characterMakers.push(() => makeCharacter(
  26015. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26016. {
  26017. front: {
  26018. height: math.unit(32, "meters"),
  26019. weight: math.unit(300000, "kg"),
  26020. name: "Front",
  26021. image: {
  26022. source: "./media/characters/almor/front.svg",
  26023. extra: 1408 / 1322,
  26024. bottom: 94.6 / 1506.5
  26025. }
  26026. },
  26027. },
  26028. [
  26029. {
  26030. name: "Macro",
  26031. height: math.unit(32, "meters"),
  26032. default: true
  26033. },
  26034. ]
  26035. ))
  26036. characterMakers.push(() => makeCharacter(
  26037. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26038. {
  26039. front: {
  26040. height: math.unit(7, "feet"),
  26041. weight: math.unit(200, "lb"),
  26042. name: "Front",
  26043. image: {
  26044. source: "./media/characters/silver/front.svg",
  26045. extra: 472.1 / 450.5,
  26046. bottom: 26.5 / 499.424
  26047. }
  26048. },
  26049. },
  26050. [
  26051. {
  26052. name: "Normal",
  26053. height: math.unit(7, "feet"),
  26054. default: true
  26055. },
  26056. {
  26057. name: "Macro",
  26058. height: math.unit(800, "feet")
  26059. },
  26060. {
  26061. name: "Megamacro",
  26062. height: math.unit(250, "miles")
  26063. },
  26064. ]
  26065. ))
  26066. characterMakers.push(() => makeCharacter(
  26067. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26068. {
  26069. front: {
  26070. height: math.unit(6, "feet"),
  26071. weight: math.unit(150, "lb"),
  26072. name: "Front",
  26073. image: {
  26074. source: "./media/characters/pliskin/front.svg",
  26075. extra: 1469 / 1359,
  26076. bottom: 70 / 1540
  26077. }
  26078. },
  26079. },
  26080. [
  26081. {
  26082. name: "Micro",
  26083. height: math.unit(3, "inches")
  26084. },
  26085. {
  26086. name: "Normal",
  26087. height: math.unit(5 + 11 / 12, "feet"),
  26088. default: true
  26089. },
  26090. {
  26091. name: "Macro",
  26092. height: math.unit(120, "feet")
  26093. },
  26094. ]
  26095. ))
  26096. characterMakers.push(() => makeCharacter(
  26097. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26098. {
  26099. front: {
  26100. height: math.unit(6, "feet"),
  26101. weight: math.unit(150, "lb"),
  26102. name: "Front",
  26103. image: {
  26104. source: "./media/characters/sammy/front.svg",
  26105. extra: 1193 / 1089,
  26106. bottom: 30.5 / 1226
  26107. }
  26108. },
  26109. },
  26110. [
  26111. {
  26112. name: "Macro",
  26113. height: math.unit(1700, "feet"),
  26114. default: true
  26115. },
  26116. {
  26117. name: "Examacro",
  26118. height: math.unit(2.5e9, "lightyears")
  26119. },
  26120. ]
  26121. ))
  26122. characterMakers.push(() => makeCharacter(
  26123. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26124. {
  26125. front: {
  26126. height: math.unit(21, "meters"),
  26127. weight: math.unit(12, "tonnes"),
  26128. name: "Front",
  26129. image: {
  26130. source: "./media/characters/kuru/front.svg",
  26131. extra: 4301 / 3785,
  26132. bottom: 371.3 / 4691
  26133. }
  26134. },
  26135. },
  26136. [
  26137. {
  26138. name: "Macro",
  26139. height: math.unit(21, "meters"),
  26140. default: true
  26141. },
  26142. ]
  26143. ))
  26144. characterMakers.push(() => makeCharacter(
  26145. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26146. {
  26147. front: {
  26148. height: math.unit(23, "meters"),
  26149. weight: math.unit(12.2, "tonnes"),
  26150. name: "Front",
  26151. image: {
  26152. source: "./media/characters/rakka/front.svg",
  26153. extra: 4670 / 4169,
  26154. bottom: 301 / 4968.7
  26155. }
  26156. },
  26157. },
  26158. [
  26159. {
  26160. name: "Macro",
  26161. height: math.unit(23, "meters"),
  26162. default: true
  26163. },
  26164. ]
  26165. ))
  26166. characterMakers.push(() => makeCharacter(
  26167. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26168. {
  26169. front: {
  26170. height: math.unit(6, "feet"),
  26171. weight: math.unit(150, "lb"),
  26172. name: "Front",
  26173. image: {
  26174. source: "./media/characters/rhys-feline/front.svg",
  26175. extra: 2488 / 2308,
  26176. bottom: 35.67 / 2519.19
  26177. }
  26178. },
  26179. },
  26180. [
  26181. {
  26182. name: "Really Small",
  26183. height: math.unit(1, "nm")
  26184. },
  26185. {
  26186. name: "Micro",
  26187. height: math.unit(4, "inches")
  26188. },
  26189. {
  26190. name: "Normal",
  26191. height: math.unit(4 + 10 / 12, "feet"),
  26192. default: true
  26193. },
  26194. {
  26195. name: "Macro",
  26196. height: math.unit(100, "feet")
  26197. },
  26198. {
  26199. name: "Megamacto",
  26200. height: math.unit(50, "miles")
  26201. },
  26202. ]
  26203. ))
  26204. characterMakers.push(() => makeCharacter(
  26205. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26206. {
  26207. side: {
  26208. height: math.unit(30, "feet"),
  26209. weight: math.unit(35000, "kg"),
  26210. name: "Side",
  26211. image: {
  26212. source: "./media/characters/alydar/side.svg",
  26213. extra: 234 / 222,
  26214. bottom: 6.5 / 241
  26215. }
  26216. },
  26217. front: {
  26218. height: math.unit(30, "feet"),
  26219. weight: math.unit(35000, "kg"),
  26220. name: "Front",
  26221. image: {
  26222. source: "./media/characters/alydar/front.svg",
  26223. extra: 223.37 / 210.2,
  26224. bottom: 22.3 / 246.76
  26225. }
  26226. },
  26227. top: {
  26228. height: math.unit(64.54, "feet"),
  26229. weight: math.unit(35000, "kg"),
  26230. name: "Top",
  26231. image: {
  26232. source: "./media/characters/alydar/top.svg"
  26233. }
  26234. },
  26235. anthro: {
  26236. height: math.unit(30, "feet"),
  26237. weight: math.unit(9000, "kg"),
  26238. name: "Anthro",
  26239. image: {
  26240. source: "./media/characters/alydar/anthro.svg",
  26241. extra: 432 / 421,
  26242. bottom: 7.18 / 440
  26243. }
  26244. },
  26245. maw: {
  26246. height: math.unit(11.693, "feet"),
  26247. name: "Maw",
  26248. image: {
  26249. source: "./media/characters/alydar/maw.svg"
  26250. }
  26251. },
  26252. head: {
  26253. height: math.unit(11.693, "feet"),
  26254. name: "Head",
  26255. image: {
  26256. source: "./media/characters/alydar/head.svg"
  26257. }
  26258. },
  26259. headAlt: {
  26260. height: math.unit(12.861, "feet"),
  26261. name: "Head (Alt)",
  26262. image: {
  26263. source: "./media/characters/alydar/head-alt.svg"
  26264. }
  26265. },
  26266. wing: {
  26267. height: math.unit(20.712, "feet"),
  26268. name: "Wing",
  26269. image: {
  26270. source: "./media/characters/alydar/wing.svg"
  26271. }
  26272. },
  26273. wingFeather: {
  26274. height: math.unit(9.662, "feet"),
  26275. name: "Wing Feather",
  26276. image: {
  26277. source: "./media/characters/alydar/wing-feather.svg"
  26278. }
  26279. },
  26280. countourFeather: {
  26281. height: math.unit(4.154, "feet"),
  26282. name: "Contour Feather",
  26283. image: {
  26284. source: "./media/characters/alydar/contour-feather.svg"
  26285. }
  26286. },
  26287. },
  26288. [
  26289. {
  26290. name: "Diplomatic",
  26291. height: math.unit(13, "feet"),
  26292. default: true
  26293. },
  26294. {
  26295. name: "Small",
  26296. height: math.unit(30, "feet")
  26297. },
  26298. {
  26299. name: "Normal",
  26300. height: math.unit(95, "feet"),
  26301. default: true
  26302. },
  26303. {
  26304. name: "Large",
  26305. height: math.unit(285, "feet")
  26306. },
  26307. {
  26308. name: "Incomprehensible",
  26309. height: math.unit(450, "megameters")
  26310. },
  26311. ]
  26312. ))
  26313. characterMakers.push(() => makeCharacter(
  26314. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26315. {
  26316. side: {
  26317. height: math.unit(11, "feet"),
  26318. weight: math.unit(1750, "kg"),
  26319. name: "Side",
  26320. image: {
  26321. source: "./media/characters/selicia/side.svg",
  26322. extra: 440 / 396,
  26323. bottom: 24.8 / 465.979
  26324. }
  26325. },
  26326. maw: {
  26327. height: math.unit(4.665, "feet"),
  26328. name: "Maw",
  26329. image: {
  26330. source: "./media/characters/selicia/maw.svg"
  26331. }
  26332. },
  26333. },
  26334. [
  26335. {
  26336. name: "Normal",
  26337. height: math.unit(11, "feet"),
  26338. default: true
  26339. },
  26340. ]
  26341. ))
  26342. characterMakers.push(() => makeCharacter(
  26343. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26344. {
  26345. side: {
  26346. height: math.unit(2 + 6 / 12, "feet"),
  26347. weight: math.unit(30, "lb"),
  26348. name: "Side",
  26349. image: {
  26350. source: "./media/characters/layla/side.svg",
  26351. extra: 244 / 188,
  26352. bottom: 18.2 / 262.1
  26353. }
  26354. },
  26355. back: {
  26356. height: math.unit(2 + 6 / 12, "feet"),
  26357. weight: math.unit(30, "lb"),
  26358. name: "Back",
  26359. image: {
  26360. source: "./media/characters/layla/back.svg",
  26361. extra: 308 / 241.5,
  26362. bottom: 8.9 / 316.8
  26363. }
  26364. },
  26365. cumming: {
  26366. height: math.unit(2 + 6 / 12, "feet"),
  26367. weight: math.unit(30, "lb"),
  26368. name: "Cumming",
  26369. image: {
  26370. source: "./media/characters/layla/cumming.svg",
  26371. extra: 342 / 279,
  26372. bottom: 595 / 938
  26373. }
  26374. },
  26375. dickFlaccid: {
  26376. height: math.unit(2.595, "feet"),
  26377. name: "Flaccid Genitals",
  26378. image: {
  26379. source: "./media/characters/layla/dick-flaccid.svg"
  26380. }
  26381. },
  26382. dickErect: {
  26383. height: math.unit(2.359, "feet"),
  26384. name: "Erect Genitals",
  26385. image: {
  26386. source: "./media/characters/layla/dick-erect.svg"
  26387. }
  26388. },
  26389. dragon: {
  26390. height: math.unit(40, "feet"),
  26391. name: "Dragon",
  26392. image: {
  26393. source: "./media/characters/layla/dragon.svg",
  26394. extra: 610/535,
  26395. bottom: 367/977
  26396. }
  26397. },
  26398. taur: {
  26399. height: math.unit(30, "feet"),
  26400. name: "Taur",
  26401. image: {
  26402. source: "./media/characters/layla/taur.svg",
  26403. extra: 1268/1199,
  26404. bottom: 112/1380
  26405. }
  26406. },
  26407. },
  26408. [
  26409. {
  26410. name: "Micro",
  26411. height: math.unit(1, "inch")
  26412. },
  26413. {
  26414. name: "Small",
  26415. height: math.unit(1, "foot")
  26416. },
  26417. {
  26418. name: "Normal",
  26419. height: math.unit(2 + 6 / 12, "feet"),
  26420. default: true
  26421. },
  26422. {
  26423. name: "Macro",
  26424. height: math.unit(200, "feet")
  26425. },
  26426. {
  26427. name: "Megamacro",
  26428. height: math.unit(1000, "miles")
  26429. },
  26430. {
  26431. name: "Planetary",
  26432. height: math.unit(8000, "miles")
  26433. },
  26434. {
  26435. name: "True Layla",
  26436. height: math.unit(200000 * 7, "multiverses")
  26437. },
  26438. ]
  26439. ))
  26440. characterMakers.push(() => makeCharacter(
  26441. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26442. {
  26443. back: {
  26444. height: math.unit(10.5, "feet"),
  26445. weight: math.unit(800, "lb"),
  26446. name: "Back",
  26447. image: {
  26448. source: "./media/characters/knox/back.svg",
  26449. extra: 1486 / 1089,
  26450. bottom: 107 / 1601.4
  26451. }
  26452. },
  26453. side: {
  26454. height: math.unit(10.5, "feet"),
  26455. weight: math.unit(800, "lb"),
  26456. name: "Side",
  26457. image: {
  26458. source: "./media/characters/knox/side.svg",
  26459. extra: 244 / 218,
  26460. bottom: 14 / 260
  26461. }
  26462. },
  26463. },
  26464. [
  26465. {
  26466. name: "Compact",
  26467. height: math.unit(10.5, "feet"),
  26468. default: true
  26469. },
  26470. {
  26471. name: "Dynamax",
  26472. height: math.unit(210, "feet")
  26473. },
  26474. {
  26475. name: "Full Macro",
  26476. height: math.unit(850, "feet")
  26477. },
  26478. ]
  26479. ))
  26480. characterMakers.push(() => makeCharacter(
  26481. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26482. {
  26483. front: {
  26484. height: math.unit(28, "feet"),
  26485. weight: math.unit(10500, "lb"),
  26486. name: "Front",
  26487. image: {
  26488. source: "./media/characters/kayda/front.svg",
  26489. extra: 1536 / 1428,
  26490. bottom: 68.7 / 1603
  26491. }
  26492. },
  26493. back: {
  26494. height: math.unit(28, "feet"),
  26495. weight: math.unit(10500, "lb"),
  26496. name: "Back",
  26497. image: {
  26498. source: "./media/characters/kayda/back.svg",
  26499. extra: 1557 / 1464,
  26500. bottom: 39.5 / 1597.49
  26501. }
  26502. },
  26503. dick: {
  26504. height: math.unit(3.858, "feet"),
  26505. name: "Dick",
  26506. image: {
  26507. source: "./media/characters/kayda/dick.svg"
  26508. }
  26509. },
  26510. },
  26511. [
  26512. {
  26513. name: "Macro",
  26514. height: math.unit(28, "feet"),
  26515. default: true
  26516. },
  26517. ]
  26518. ))
  26519. characterMakers.push(() => makeCharacter(
  26520. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26521. {
  26522. front: {
  26523. height: math.unit(10 + 11 / 12, "feet"),
  26524. weight: math.unit(1400, "lb"),
  26525. name: "Front",
  26526. image: {
  26527. source: "./media/characters/brian/front.svg",
  26528. extra: 737 / 692,
  26529. bottom: 55.4 / 785
  26530. }
  26531. },
  26532. },
  26533. [
  26534. {
  26535. name: "Normal",
  26536. height: math.unit(10 + 11 / 12, "feet"),
  26537. default: true
  26538. },
  26539. ]
  26540. ))
  26541. characterMakers.push(() => makeCharacter(
  26542. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26543. {
  26544. front: {
  26545. height: math.unit(5 + 8 / 12, "feet"),
  26546. weight: math.unit(140, "lb"),
  26547. name: "Front",
  26548. image: {
  26549. source: "./media/characters/khemri/front.svg",
  26550. extra: 4780 / 4059,
  26551. bottom: 80.1 / 4859.25
  26552. }
  26553. },
  26554. },
  26555. [
  26556. {
  26557. name: "Micro",
  26558. height: math.unit(6, "inches")
  26559. },
  26560. {
  26561. name: "Normal",
  26562. height: math.unit(5 + 8 / 12, "feet"),
  26563. default: true
  26564. },
  26565. ]
  26566. ))
  26567. characterMakers.push(() => makeCharacter(
  26568. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26569. {
  26570. front: {
  26571. height: math.unit(13, "feet"),
  26572. weight: math.unit(1700, "lb"),
  26573. name: "Front",
  26574. image: {
  26575. source: "./media/characters/felix-braveheart/front.svg",
  26576. extra: 1222 / 1157,
  26577. bottom: 53.2 / 1280
  26578. }
  26579. },
  26580. back: {
  26581. height: math.unit(13, "feet"),
  26582. weight: math.unit(1700, "lb"),
  26583. name: "Back",
  26584. image: {
  26585. source: "./media/characters/felix-braveheart/back.svg",
  26586. extra: 1277 / 1203,
  26587. bottom: 50.2 / 1327
  26588. }
  26589. },
  26590. feral: {
  26591. height: math.unit(6, "feet"),
  26592. weight: math.unit(400, "lb"),
  26593. name: "Feral",
  26594. image: {
  26595. source: "./media/characters/felix-braveheart/feral.svg",
  26596. extra: 682 / 625,
  26597. bottom: 6.9 / 688
  26598. }
  26599. },
  26600. },
  26601. [
  26602. {
  26603. name: "Normal",
  26604. height: math.unit(13, "feet"),
  26605. default: true
  26606. },
  26607. ]
  26608. ))
  26609. characterMakers.push(() => makeCharacter(
  26610. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26611. {
  26612. side: {
  26613. height: math.unit(5 + 11 / 12, "feet"),
  26614. weight: math.unit(1400, "lb"),
  26615. name: "Side",
  26616. image: {
  26617. source: "./media/characters/shadow-blade/side.svg",
  26618. extra: 1726 / 1267,
  26619. bottom: 58.4 / 1785
  26620. }
  26621. },
  26622. },
  26623. [
  26624. {
  26625. name: "Normal",
  26626. height: math.unit(5 + 11 / 12, "feet"),
  26627. default: true
  26628. },
  26629. ]
  26630. ))
  26631. characterMakers.push(() => makeCharacter(
  26632. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26633. {
  26634. front: {
  26635. height: math.unit(1 + 6 / 12, "feet"),
  26636. weight: math.unit(25, "lb"),
  26637. name: "Front",
  26638. image: {
  26639. source: "./media/characters/karla-halldor/front.svg",
  26640. extra: 1459 / 1383,
  26641. bottom: 12 / 1472
  26642. }
  26643. },
  26644. },
  26645. [
  26646. {
  26647. name: "Normal",
  26648. height: math.unit(1 + 6 / 12, "feet"),
  26649. default: true
  26650. },
  26651. ]
  26652. ))
  26653. characterMakers.push(() => makeCharacter(
  26654. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26655. {
  26656. front: {
  26657. height: math.unit(6 + 2 / 12, "feet"),
  26658. weight: math.unit(160, "lb"),
  26659. name: "Front",
  26660. image: {
  26661. source: "./media/characters/ariam/front.svg",
  26662. extra: 1073/976,
  26663. bottom: 52/1125
  26664. }
  26665. },
  26666. back: {
  26667. height: math.unit(6 + 2/12, "feet"),
  26668. weight: math.unit(160, "lb"),
  26669. name: "Back",
  26670. image: {
  26671. source: "./media/characters/ariam/back.svg",
  26672. extra: 1103/1023,
  26673. bottom: 9/1112
  26674. }
  26675. },
  26676. dressed: {
  26677. height: math.unit(6 + 2/12, "feet"),
  26678. weight: math.unit(160, "lb"),
  26679. name: "Dressed",
  26680. image: {
  26681. source: "./media/characters/ariam/dressed.svg",
  26682. extra: 1099/1009,
  26683. bottom: 25/1124
  26684. }
  26685. },
  26686. squatting: {
  26687. height: math.unit(4.1, "feet"),
  26688. weight: math.unit(160, "lb"),
  26689. name: "Squatting",
  26690. image: {
  26691. source: "./media/characters/ariam/squatting.svg",
  26692. extra: 2617 / 2112,
  26693. bottom: 61.2 / 2681,
  26694. }
  26695. },
  26696. },
  26697. [
  26698. {
  26699. name: "Normal",
  26700. height: math.unit(6 + 2 / 12, "feet"),
  26701. default: true
  26702. },
  26703. {
  26704. name: "Normal+",
  26705. height: math.unit(4, "meters")
  26706. },
  26707. {
  26708. name: "Macro",
  26709. height: math.unit(50, "meters")
  26710. },
  26711. {
  26712. name: "Macro+",
  26713. height: math.unit(100, "meters")
  26714. },
  26715. {
  26716. name: "Megamacro",
  26717. height: math.unit(20, "km")
  26718. },
  26719. {
  26720. name: "Caretaker",
  26721. height: math.unit(444, "megameters")
  26722. },
  26723. ]
  26724. ))
  26725. characterMakers.push(() => makeCharacter(
  26726. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26727. {
  26728. front: {
  26729. height: math.unit(1.67, "meters"),
  26730. weight: math.unit(140, "lb"),
  26731. name: "Front",
  26732. image: {
  26733. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26734. extra: 438 / 410,
  26735. bottom: 0.75 / 439
  26736. }
  26737. },
  26738. },
  26739. [
  26740. {
  26741. name: "Shrunken",
  26742. height: math.unit(7.6, "cm")
  26743. },
  26744. {
  26745. name: "Human Scale",
  26746. height: math.unit(1.67, "meters")
  26747. },
  26748. {
  26749. name: "Wolxi Scale",
  26750. height: math.unit(36.7, "meters"),
  26751. default: true
  26752. },
  26753. ]
  26754. ))
  26755. characterMakers.push(() => makeCharacter(
  26756. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26757. {
  26758. front: {
  26759. height: math.unit(1.73, "meters"),
  26760. weight: math.unit(240, "lb"),
  26761. name: "Front",
  26762. image: {
  26763. source: "./media/characters/izue-two-mothers/front.svg",
  26764. extra: 469 / 437,
  26765. bottom: 1.24 / 470.6
  26766. }
  26767. },
  26768. },
  26769. [
  26770. {
  26771. name: "Shrunken",
  26772. height: math.unit(7.86, "cm")
  26773. },
  26774. {
  26775. name: "Human Scale",
  26776. height: math.unit(1.73, "meters")
  26777. },
  26778. {
  26779. name: "Wolxi Scale",
  26780. height: math.unit(38, "meters"),
  26781. default: true
  26782. },
  26783. ]
  26784. ))
  26785. characterMakers.push(() => makeCharacter(
  26786. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26787. {
  26788. front: {
  26789. height: math.unit(1.55, "meters"),
  26790. weight: math.unit(120, "lb"),
  26791. name: "Front",
  26792. image: {
  26793. source: "./media/characters/teeku-love-shack/front.svg",
  26794. extra: 387 / 362,
  26795. bottom: 1.51 / 388
  26796. }
  26797. },
  26798. },
  26799. [
  26800. {
  26801. name: "Shrunken",
  26802. height: math.unit(7, "cm")
  26803. },
  26804. {
  26805. name: "Human Scale",
  26806. height: math.unit(1.55, "meters")
  26807. },
  26808. {
  26809. name: "Wolxi Scale",
  26810. height: math.unit(34.1, "meters"),
  26811. default: true
  26812. },
  26813. ]
  26814. ))
  26815. characterMakers.push(() => makeCharacter(
  26816. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26817. {
  26818. front: {
  26819. height: math.unit(1.83, "meters"),
  26820. weight: math.unit(135, "lb"),
  26821. name: "Front",
  26822. image: {
  26823. source: "./media/characters/dejma-the-red/front.svg",
  26824. extra: 480 / 458,
  26825. bottom: 1.8 / 482
  26826. }
  26827. },
  26828. },
  26829. [
  26830. {
  26831. name: "Shrunken",
  26832. height: math.unit(8.3, "cm")
  26833. },
  26834. {
  26835. name: "Human Scale",
  26836. height: math.unit(1.83, "meters")
  26837. },
  26838. {
  26839. name: "Wolxi Scale",
  26840. height: math.unit(40, "meters"),
  26841. default: true
  26842. },
  26843. ]
  26844. ))
  26845. characterMakers.push(() => makeCharacter(
  26846. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26847. {
  26848. front: {
  26849. height: math.unit(1.78, "meters"),
  26850. weight: math.unit(65, "kg"),
  26851. name: "Front",
  26852. image: {
  26853. source: "./media/characters/aki/front.svg",
  26854. extra: 452 / 415
  26855. }
  26856. },
  26857. frontNsfw: {
  26858. height: math.unit(1.78, "meters"),
  26859. weight: math.unit(65, "kg"),
  26860. name: "Front (NSFW)",
  26861. image: {
  26862. source: "./media/characters/aki/front-nsfw.svg",
  26863. extra: 452 / 415
  26864. }
  26865. },
  26866. back: {
  26867. height: math.unit(1.78, "meters"),
  26868. weight: math.unit(65, "kg"),
  26869. name: "Back",
  26870. image: {
  26871. source: "./media/characters/aki/back.svg",
  26872. extra: 452 / 415
  26873. }
  26874. },
  26875. rump: {
  26876. height: math.unit(2.05, "feet"),
  26877. name: "Rump",
  26878. image: {
  26879. source: "./media/characters/aki/rump.svg"
  26880. }
  26881. },
  26882. dick: {
  26883. height: math.unit(0.95, "feet"),
  26884. name: "Dick",
  26885. image: {
  26886. source: "./media/characters/aki/dick.svg"
  26887. }
  26888. },
  26889. },
  26890. [
  26891. {
  26892. name: "Micro",
  26893. height: math.unit(15, "cm")
  26894. },
  26895. {
  26896. name: "Normal",
  26897. height: math.unit(178, "cm"),
  26898. default: true
  26899. },
  26900. {
  26901. name: "Macro",
  26902. height: math.unit(214, "m")
  26903. },
  26904. {
  26905. name: "Macro+",
  26906. height: math.unit(534, "m")
  26907. },
  26908. ]
  26909. ))
  26910. characterMakers.push(() => makeCharacter(
  26911. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26912. {
  26913. front: {
  26914. height: math.unit(5 + 5 / 12, "feet"),
  26915. weight: math.unit(120, "lb"),
  26916. name: "Front",
  26917. image: {
  26918. source: "./media/characters/ari/front.svg",
  26919. extra: 1550/1471,
  26920. bottom: 39/1589
  26921. }
  26922. },
  26923. },
  26924. [
  26925. {
  26926. name: "Normal",
  26927. height: math.unit(5 + 5 / 12, "feet")
  26928. },
  26929. {
  26930. name: "Macro",
  26931. height: math.unit(100, "feet"),
  26932. default: true
  26933. },
  26934. {
  26935. name: "Megamacro",
  26936. height: math.unit(100, "miles")
  26937. },
  26938. {
  26939. name: "Gigamacro",
  26940. height: math.unit(80000, "miles")
  26941. },
  26942. ]
  26943. ))
  26944. characterMakers.push(() => makeCharacter(
  26945. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26946. {
  26947. side: {
  26948. height: math.unit(9, "feet"),
  26949. weight: math.unit(400, "kg"),
  26950. name: "Side",
  26951. image: {
  26952. source: "./media/characters/bolt/side.svg",
  26953. extra: 1126 / 896,
  26954. bottom: 60 / 1187.3,
  26955. }
  26956. },
  26957. },
  26958. [
  26959. {
  26960. name: "Micro",
  26961. height: math.unit(5, "inches")
  26962. },
  26963. {
  26964. name: "Normal",
  26965. height: math.unit(9, "feet"),
  26966. default: true
  26967. },
  26968. {
  26969. name: "Macro",
  26970. height: math.unit(700, "feet")
  26971. },
  26972. {
  26973. name: "Max Size",
  26974. height: math.unit(1.52e22, "yottameters")
  26975. },
  26976. ]
  26977. ))
  26978. characterMakers.push(() => makeCharacter(
  26979. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26980. {
  26981. front: {
  26982. height: math.unit(4.3, "meters"),
  26983. weight: math.unit(3, "tons"),
  26984. name: "Front",
  26985. image: {
  26986. source: "./media/characters/draekon-sylviar/front.svg",
  26987. extra: 2072/1512,
  26988. bottom: 74/2146
  26989. }
  26990. },
  26991. back: {
  26992. height: math.unit(4.3, "meters"),
  26993. weight: math.unit(3, "tons"),
  26994. name: "Back",
  26995. image: {
  26996. source: "./media/characters/draekon-sylviar/back.svg",
  26997. extra: 1639/1483,
  26998. bottom: 41/1680
  26999. }
  27000. },
  27001. feral: {
  27002. height: math.unit(1.15, "meters"),
  27003. weight: math.unit(3, "tons"),
  27004. name: "Feral",
  27005. image: {
  27006. source: "./media/characters/draekon-sylviar/feral.svg",
  27007. extra: 1033/395,
  27008. bottom: 130/1163
  27009. }
  27010. },
  27011. maw: {
  27012. height: math.unit(1.3, "meters"),
  27013. name: "Maw",
  27014. image: {
  27015. source: "./media/characters/draekon-sylviar/maw.svg"
  27016. }
  27017. },
  27018. mawSeparated: {
  27019. height: math.unit(1.53, "meters"),
  27020. name: "Separated Maw",
  27021. image: {
  27022. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27023. }
  27024. },
  27025. tail: {
  27026. height: math.unit(1.15, "meters"),
  27027. name: "Tail",
  27028. image: {
  27029. source: "./media/characters/draekon-sylviar/tail.svg"
  27030. }
  27031. },
  27032. tailDick: {
  27033. height: math.unit(1.15, "meters"),
  27034. name: "Tail (Dick)",
  27035. image: {
  27036. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27037. }
  27038. },
  27039. tailDickSeparated: {
  27040. height: math.unit(1.19, "meters"),
  27041. name: "Tail (Separated Dick)",
  27042. image: {
  27043. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27044. }
  27045. },
  27046. slit: {
  27047. height: math.unit(1, "meters"),
  27048. name: "Slit",
  27049. image: {
  27050. source: "./media/characters/draekon-sylviar/slit.svg"
  27051. }
  27052. },
  27053. dick: {
  27054. height: math.unit(1.15, "meters"),
  27055. name: "Dick",
  27056. image: {
  27057. source: "./media/characters/draekon-sylviar/dick.svg"
  27058. }
  27059. },
  27060. dickSeparated: {
  27061. height: math.unit(1.1, "meters"),
  27062. name: "Separated Dick",
  27063. image: {
  27064. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27065. }
  27066. },
  27067. sheath: {
  27068. height: math.unit(1.15, "meters"),
  27069. name: "Sheath",
  27070. image: {
  27071. source: "./media/characters/draekon-sylviar/sheath.svg"
  27072. }
  27073. },
  27074. },
  27075. [
  27076. {
  27077. name: "Small",
  27078. height: math.unit(4.53 / 2, "meters"),
  27079. default: true
  27080. },
  27081. {
  27082. name: "Normal",
  27083. height: math.unit(4.53, "meters"),
  27084. default: true
  27085. },
  27086. {
  27087. name: "Large",
  27088. height: math.unit(4.53 * 2, "meters"),
  27089. },
  27090. ]
  27091. ))
  27092. characterMakers.push(() => makeCharacter(
  27093. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27094. {
  27095. front: {
  27096. height: math.unit(6 + 2 / 12, "feet"),
  27097. weight: math.unit(180, "lb"),
  27098. name: "Front",
  27099. image: {
  27100. source: "./media/characters/brawler/front.svg",
  27101. extra: 3301 / 3027,
  27102. bottom: 138 / 3439
  27103. }
  27104. },
  27105. },
  27106. [
  27107. {
  27108. name: "Normal",
  27109. height: math.unit(6 + 2 / 12, "feet"),
  27110. default: true
  27111. },
  27112. ]
  27113. ))
  27114. characterMakers.push(() => makeCharacter(
  27115. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27116. {
  27117. front: {
  27118. height: math.unit(11, "feet"),
  27119. weight: math.unit(1000, "lb"),
  27120. name: "Front",
  27121. image: {
  27122. source: "./media/characters/alex/front.svg",
  27123. bottom: 44.5 / 620
  27124. }
  27125. },
  27126. },
  27127. [
  27128. {
  27129. name: "Micro",
  27130. height: math.unit(5, "inches")
  27131. },
  27132. {
  27133. name: "Normal",
  27134. height: math.unit(11, "feet"),
  27135. default: true
  27136. },
  27137. {
  27138. name: "Macro",
  27139. height: math.unit(9.5e9, "feet")
  27140. },
  27141. {
  27142. name: "Max Size",
  27143. height: math.unit(1.4e283, "yottameters")
  27144. },
  27145. ]
  27146. ))
  27147. characterMakers.push(() => makeCharacter(
  27148. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27149. {
  27150. female: {
  27151. height: math.unit(29.9, "m"),
  27152. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27153. name: "Female",
  27154. image: {
  27155. source: "./media/characters/zenari/female.svg",
  27156. extra: 3281.6 / 3217,
  27157. bottom: 72.2 / 3353
  27158. }
  27159. },
  27160. male: {
  27161. height: math.unit(27.7, "m"),
  27162. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27163. name: "Male",
  27164. image: {
  27165. source: "./media/characters/zenari/male.svg",
  27166. extra: 3008 / 2991,
  27167. bottom: 54.6 / 3069
  27168. }
  27169. },
  27170. },
  27171. [
  27172. {
  27173. name: "Macro",
  27174. height: math.unit(29.7, "meters"),
  27175. default: true
  27176. },
  27177. ]
  27178. ))
  27179. characterMakers.push(() => makeCharacter(
  27180. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27181. {
  27182. female: {
  27183. height: math.unit(23.8, "m"),
  27184. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27185. name: "Female",
  27186. image: {
  27187. source: "./media/characters/mactarian/female.svg",
  27188. extra: 2662 / 2569,
  27189. bottom: 73 / 2736
  27190. }
  27191. },
  27192. male: {
  27193. height: math.unit(23.8, "m"),
  27194. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27195. name: "Male",
  27196. image: {
  27197. source: "./media/characters/mactarian/male.svg",
  27198. extra: 2673 / 2600,
  27199. bottom: 76 / 2750
  27200. }
  27201. },
  27202. },
  27203. [
  27204. {
  27205. name: "Macro",
  27206. height: math.unit(23.8, "meters"),
  27207. default: true
  27208. },
  27209. ]
  27210. ))
  27211. characterMakers.push(() => makeCharacter(
  27212. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27213. {
  27214. female: {
  27215. height: math.unit(19.3, "m"),
  27216. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27217. name: "Female",
  27218. image: {
  27219. source: "./media/characters/umok/female.svg",
  27220. extra: 2186 / 2078,
  27221. bottom: 87 / 2277
  27222. }
  27223. },
  27224. male: {
  27225. height: math.unit(19.5, "m"),
  27226. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27227. name: "Male",
  27228. image: {
  27229. source: "./media/characters/umok/male.svg",
  27230. extra: 2233 / 2140,
  27231. bottom: 24.4 / 2258
  27232. }
  27233. },
  27234. },
  27235. [
  27236. {
  27237. name: "Macro",
  27238. height: math.unit(19.3, "meters"),
  27239. default: true
  27240. },
  27241. ]
  27242. ))
  27243. characterMakers.push(() => makeCharacter(
  27244. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27245. {
  27246. female: {
  27247. height: math.unit(26.15, "m"),
  27248. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27249. name: "Female",
  27250. image: {
  27251. source: "./media/characters/joraxian/female.svg",
  27252. extra: 2912 / 2824,
  27253. bottom: 36 / 2956
  27254. }
  27255. },
  27256. male: {
  27257. height: math.unit(25.4, "m"),
  27258. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27259. name: "Male",
  27260. image: {
  27261. source: "./media/characters/joraxian/male.svg",
  27262. extra: 2877 / 2721,
  27263. bottom: 82 / 2967
  27264. }
  27265. },
  27266. },
  27267. [
  27268. {
  27269. name: "Macro",
  27270. height: math.unit(26.15, "meters"),
  27271. default: true
  27272. },
  27273. ]
  27274. ))
  27275. characterMakers.push(() => makeCharacter(
  27276. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27277. {
  27278. female: {
  27279. height: math.unit(21.6, "m"),
  27280. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27281. name: "Female",
  27282. image: {
  27283. source: "./media/characters/sthara/female.svg",
  27284. extra: 2516 / 2347,
  27285. bottom: 21.5 / 2537
  27286. }
  27287. },
  27288. male: {
  27289. height: math.unit(24, "m"),
  27290. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27291. name: "Male",
  27292. image: {
  27293. source: "./media/characters/sthara/male.svg",
  27294. extra: 2732 / 2607,
  27295. bottom: 23 / 2732
  27296. }
  27297. },
  27298. },
  27299. [
  27300. {
  27301. name: "Macro",
  27302. height: math.unit(21.6, "meters"),
  27303. default: true
  27304. },
  27305. ]
  27306. ))
  27307. characterMakers.push(() => makeCharacter(
  27308. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27309. {
  27310. front: {
  27311. height: math.unit(6 + 4 / 12, "feet"),
  27312. weight: math.unit(175, "lb"),
  27313. name: "Front",
  27314. image: {
  27315. source: "./media/characters/luka-bryzant/front.svg",
  27316. extra: 311 / 289,
  27317. bottom: 4 / 315
  27318. }
  27319. },
  27320. back: {
  27321. height: math.unit(6 + 4 / 12, "feet"),
  27322. weight: math.unit(175, "lb"),
  27323. name: "Back",
  27324. image: {
  27325. source: "./media/characters/luka-bryzant/back.svg",
  27326. extra: 311 / 289,
  27327. bottom: 3.8 / 313.7
  27328. }
  27329. },
  27330. },
  27331. [
  27332. {
  27333. name: "Micro",
  27334. height: math.unit(10, "inches")
  27335. },
  27336. {
  27337. name: "Normal",
  27338. height: math.unit(6 + 4 / 12, "feet"),
  27339. default: true
  27340. },
  27341. {
  27342. name: "Large",
  27343. height: math.unit(12, "feet")
  27344. },
  27345. ]
  27346. ))
  27347. characterMakers.push(() => makeCharacter(
  27348. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27349. {
  27350. front: {
  27351. height: math.unit(5 + 7 / 12, "feet"),
  27352. weight: math.unit(185, "lb"),
  27353. name: "Front",
  27354. image: {
  27355. source: "./media/characters/aman-aquila/front.svg",
  27356. extra: 1013 / 976,
  27357. bottom: 45.6 / 1057
  27358. }
  27359. },
  27360. side: {
  27361. height: math.unit(5 + 7 / 12, "feet"),
  27362. weight: math.unit(185, "lb"),
  27363. name: "Side",
  27364. image: {
  27365. source: "./media/characters/aman-aquila/side.svg",
  27366. extra: 1054 / 1011,
  27367. bottom: 15 / 1070
  27368. }
  27369. },
  27370. back: {
  27371. height: math.unit(5 + 7 / 12, "feet"),
  27372. weight: math.unit(185, "lb"),
  27373. name: "Back",
  27374. image: {
  27375. source: "./media/characters/aman-aquila/back.svg",
  27376. extra: 1026 / 970,
  27377. bottom: 12 / 1039
  27378. }
  27379. },
  27380. head: {
  27381. height: math.unit(1.211, "feet"),
  27382. name: "Head",
  27383. image: {
  27384. source: "./media/characters/aman-aquila/head.svg",
  27385. }
  27386. },
  27387. },
  27388. [
  27389. {
  27390. name: "Minimicro",
  27391. height: math.unit(0.057, "inches")
  27392. },
  27393. {
  27394. name: "Micro",
  27395. height: math.unit(7, "inches")
  27396. },
  27397. {
  27398. name: "Mini",
  27399. height: math.unit(3 + 7 / 12, "feet")
  27400. },
  27401. {
  27402. name: "Normal",
  27403. height: math.unit(5 + 7 / 12, "feet"),
  27404. default: true
  27405. },
  27406. {
  27407. name: "Macro",
  27408. height: math.unit(157 + 7 / 12, "feet")
  27409. },
  27410. {
  27411. name: "Megamacro",
  27412. height: math.unit(1557 + 7 / 12, "feet")
  27413. },
  27414. {
  27415. name: "Gigamacro",
  27416. height: math.unit(15557 + 7 / 12, "feet")
  27417. },
  27418. ]
  27419. ))
  27420. characterMakers.push(() => makeCharacter(
  27421. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27422. {
  27423. front: {
  27424. height: math.unit(3 + 2 / 12, "inches"),
  27425. weight: math.unit(0.3, "ounces"),
  27426. name: "Front",
  27427. image: {
  27428. source: "./media/characters/hiphae/front.svg",
  27429. extra: 1931 / 1683,
  27430. bottom: 24 / 1955
  27431. }
  27432. },
  27433. },
  27434. [
  27435. {
  27436. name: "Normal",
  27437. height: math.unit(3 + 1 / 2, "inches"),
  27438. default: true
  27439. },
  27440. ]
  27441. ))
  27442. characterMakers.push(() => makeCharacter(
  27443. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27444. {
  27445. front: {
  27446. height: math.unit(5 + 10 / 12, "feet"),
  27447. weight: math.unit(165, "lb"),
  27448. name: "Front",
  27449. image: {
  27450. source: "./media/characters/nicky/front.svg",
  27451. extra: 3144 / 2886,
  27452. bottom: 45.6 / 3192
  27453. }
  27454. },
  27455. back: {
  27456. height: math.unit(5 + 10 / 12, "feet"),
  27457. weight: math.unit(165, "lb"),
  27458. name: "Back",
  27459. image: {
  27460. source: "./media/characters/nicky/back.svg",
  27461. extra: 3055 / 2804,
  27462. bottom: 28.4 / 3087
  27463. }
  27464. },
  27465. frontclothed: {
  27466. height: math.unit(5 + 10 / 12, "feet"),
  27467. weight: math.unit(165, "lb"),
  27468. name: "Front-clothed",
  27469. image: {
  27470. source: "./media/characters/nicky/front-clothed.svg",
  27471. extra: 3184.9 / 2926.9,
  27472. bottom: 86.5 / 3239.9
  27473. }
  27474. },
  27475. foot: {
  27476. height: math.unit(1.16, "feet"),
  27477. name: "Foot",
  27478. image: {
  27479. source: "./media/characters/nicky/foot.svg"
  27480. }
  27481. },
  27482. feet: {
  27483. height: math.unit(1.34, "feet"),
  27484. name: "Feet",
  27485. image: {
  27486. source: "./media/characters/nicky/feet.svg"
  27487. }
  27488. },
  27489. maw: {
  27490. height: math.unit(0.9, "feet"),
  27491. name: "Maw",
  27492. image: {
  27493. source: "./media/characters/nicky/maw.svg"
  27494. }
  27495. },
  27496. },
  27497. [
  27498. {
  27499. name: "Normal",
  27500. height: math.unit(5 + 10 / 12, "feet"),
  27501. default: true
  27502. },
  27503. {
  27504. name: "Macro",
  27505. height: math.unit(60, "feet")
  27506. },
  27507. {
  27508. name: "Megamacro",
  27509. height: math.unit(1, "mile")
  27510. },
  27511. ]
  27512. ))
  27513. characterMakers.push(() => makeCharacter(
  27514. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27515. {
  27516. side: {
  27517. height: math.unit(10, "feet"),
  27518. weight: math.unit(600, "lb"),
  27519. name: "Side",
  27520. image: {
  27521. source: "./media/characters/blair/side.svg",
  27522. bottom: 16.6 / 475,
  27523. extra: 458 / 431
  27524. }
  27525. },
  27526. },
  27527. [
  27528. {
  27529. name: "Micro",
  27530. height: math.unit(8, "inches")
  27531. },
  27532. {
  27533. name: "Normal",
  27534. height: math.unit(10, "feet"),
  27535. default: true
  27536. },
  27537. {
  27538. name: "Macro",
  27539. height: math.unit(180, "feet")
  27540. },
  27541. ]
  27542. ))
  27543. characterMakers.push(() => makeCharacter(
  27544. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27545. {
  27546. front: {
  27547. height: math.unit(5 + 4 / 12, "feet"),
  27548. weight: math.unit(125, "lb"),
  27549. name: "Front",
  27550. image: {
  27551. source: "./media/characters/fisher/front.svg",
  27552. extra: 444 / 390,
  27553. bottom: 2 / 444.8
  27554. }
  27555. },
  27556. },
  27557. [
  27558. {
  27559. name: "Micro",
  27560. height: math.unit(4, "inches")
  27561. },
  27562. {
  27563. name: "Normal",
  27564. height: math.unit(5 + 4 / 12, "feet"),
  27565. default: true
  27566. },
  27567. {
  27568. name: "Macro",
  27569. height: math.unit(100, "feet")
  27570. },
  27571. ]
  27572. ))
  27573. characterMakers.push(() => makeCharacter(
  27574. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27575. {
  27576. front: {
  27577. height: math.unit(6.71, "feet"),
  27578. weight: math.unit(200, "lb"),
  27579. preyCapacity: math.unit(1000000, "people"),
  27580. name: "Front",
  27581. image: {
  27582. source: "./media/characters/gliss/front.svg",
  27583. extra: 2347 / 2231,
  27584. bottom: 113 / 2462
  27585. }
  27586. },
  27587. hammerspaceSize: {
  27588. height: math.unit(6.71 * 717, "feet"),
  27589. weight: math.unit(200, "lb"),
  27590. preyCapacity: math.unit(1000000, "people"),
  27591. name: "Hammerspace Size",
  27592. image: {
  27593. source: "./media/characters/gliss/front.svg",
  27594. extra: 2347 / 2231,
  27595. bottom: 113 / 2462
  27596. }
  27597. },
  27598. },
  27599. [
  27600. {
  27601. name: "Normal",
  27602. height: math.unit(6.71, "feet"),
  27603. default: true
  27604. },
  27605. ]
  27606. ))
  27607. characterMakers.push(() => makeCharacter(
  27608. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27609. {
  27610. side: {
  27611. height: math.unit(1.44, "m"),
  27612. weight: math.unit(80, "kg"),
  27613. name: "Side",
  27614. image: {
  27615. source: "./media/characters/dune-anderson/side.svg",
  27616. bottom: 49 / 1426
  27617. }
  27618. },
  27619. },
  27620. [
  27621. {
  27622. name: "Wolf-sized",
  27623. height: math.unit(1.44, "meters")
  27624. },
  27625. {
  27626. name: "Normal",
  27627. height: math.unit(5.05, "meters"),
  27628. default: true
  27629. },
  27630. {
  27631. name: "Big",
  27632. height: math.unit(14.4, "meters")
  27633. },
  27634. {
  27635. name: "Huge",
  27636. height: math.unit(144, "meters")
  27637. },
  27638. ]
  27639. ))
  27640. characterMakers.push(() => makeCharacter(
  27641. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27642. {
  27643. front: {
  27644. height: math.unit(6, "feet"),
  27645. weight: math.unit(220, "lb"),
  27646. name: "Front",
  27647. image: {
  27648. source: "./media/characters/hind/front.svg",
  27649. extra: 1912/1787,
  27650. bottom: 52/1964
  27651. }
  27652. },
  27653. back: {
  27654. height: math.unit(6, "feet"),
  27655. weight: math.unit(220, "lb"),
  27656. name: "Back",
  27657. image: {
  27658. source: "./media/characters/hind/back.svg",
  27659. extra: 1901/1794,
  27660. bottom: 26/1927
  27661. }
  27662. },
  27663. },
  27664. [
  27665. {
  27666. name: "Normal",
  27667. height: math.unit(6, "feet"),
  27668. default: true
  27669. },
  27670. ]
  27671. ))
  27672. characterMakers.push(() => makeCharacter(
  27673. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27674. {
  27675. front: {
  27676. height: math.unit(2.1, "meters"),
  27677. weight: math.unit(150, "lb"),
  27678. name: "Front",
  27679. image: {
  27680. source: "./media/characters/tharquench-sizestealer/front.svg",
  27681. extra: 1605/1470,
  27682. bottom: 36/1641
  27683. }
  27684. },
  27685. frontAlt: {
  27686. height: math.unit(2.1, "meters"),
  27687. weight: math.unit(150, "lb"),
  27688. name: "Front (Alt)",
  27689. image: {
  27690. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27691. extra: 2318 / 2063,
  27692. bottom: 93.4 / 2410
  27693. }
  27694. },
  27695. },
  27696. [
  27697. {
  27698. name: "Nano",
  27699. height: math.unit(1, "mm")
  27700. },
  27701. {
  27702. name: "Micro",
  27703. height: math.unit(1, "cm")
  27704. },
  27705. {
  27706. name: "Normal",
  27707. height: math.unit(2.1, "meters"),
  27708. default: true
  27709. },
  27710. ]
  27711. ))
  27712. characterMakers.push(() => makeCharacter(
  27713. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27714. {
  27715. front: {
  27716. height: math.unit(7 + 5 / 12, "feet"),
  27717. weight: math.unit(357, "lb"),
  27718. name: "Front",
  27719. image: {
  27720. source: "./media/characters/solex-draconov/front.svg",
  27721. extra: 1993 / 1865,
  27722. bottom: 117 / 2111
  27723. }
  27724. },
  27725. },
  27726. [
  27727. {
  27728. name: "Natural Height",
  27729. height: math.unit(7 + 5 / 12, "feet"),
  27730. default: true
  27731. },
  27732. {
  27733. name: "Macro",
  27734. height: math.unit(350, "feet")
  27735. },
  27736. {
  27737. name: "Macro+",
  27738. height: math.unit(1000, "feet")
  27739. },
  27740. {
  27741. name: "Megamacro",
  27742. height: math.unit(20, "km")
  27743. },
  27744. {
  27745. name: "Megamacro+",
  27746. height: math.unit(1000, "km")
  27747. },
  27748. {
  27749. name: "Gigamacro",
  27750. height: math.unit(2.5, "Gm")
  27751. },
  27752. {
  27753. name: "Teramacro",
  27754. height: math.unit(15, "Tm")
  27755. },
  27756. {
  27757. name: "Galactic",
  27758. height: math.unit(30, "Zm")
  27759. },
  27760. {
  27761. name: "Universal",
  27762. height: math.unit(21000, "Ym")
  27763. },
  27764. {
  27765. name: "Omniversal",
  27766. height: math.unit(9.861e50, "Ym")
  27767. },
  27768. {
  27769. name: "Existential",
  27770. height: math.unit(1e300, "meters")
  27771. },
  27772. ]
  27773. ))
  27774. characterMakers.push(() => makeCharacter(
  27775. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27776. {
  27777. side: {
  27778. height: math.unit(25, "feet"),
  27779. weight: math.unit(90000, "lb"),
  27780. name: "Side",
  27781. image: {
  27782. source: "./media/characters/mandarax/side.svg",
  27783. extra: 614 / 332,
  27784. bottom: 55 / 630
  27785. }
  27786. },
  27787. lounging: {
  27788. height: math.unit(15.4, "feet"),
  27789. weight: math.unit(90000, "lb"),
  27790. name: "Lounging",
  27791. image: {
  27792. source: "./media/characters/mandarax/lounging.svg",
  27793. extra: 817/609,
  27794. bottom: 685/1502
  27795. }
  27796. },
  27797. head: {
  27798. height: math.unit(11.4, "feet"),
  27799. name: "Head",
  27800. image: {
  27801. source: "./media/characters/mandarax/head.svg"
  27802. }
  27803. },
  27804. belly: {
  27805. height: math.unit(33, "feet"),
  27806. name: "Belly",
  27807. preyCapacity: math.unit(500, "people"),
  27808. image: {
  27809. source: "./media/characters/mandarax/belly.svg"
  27810. }
  27811. },
  27812. dick: {
  27813. height: math.unit(8.46, "feet"),
  27814. name: "Dick",
  27815. image: {
  27816. source: "./media/characters/mandarax/dick.svg"
  27817. }
  27818. },
  27819. top: {
  27820. height: math.unit(28, "meters"),
  27821. name: "Top",
  27822. image: {
  27823. source: "./media/characters/mandarax/top.svg"
  27824. }
  27825. },
  27826. },
  27827. [
  27828. {
  27829. name: "Normal",
  27830. height: math.unit(25, "feet"),
  27831. default: true
  27832. },
  27833. ]
  27834. ))
  27835. characterMakers.push(() => makeCharacter(
  27836. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27837. {
  27838. front: {
  27839. height: math.unit(5, "feet"),
  27840. weight: math.unit(90, "lb"),
  27841. name: "Front",
  27842. image: {
  27843. source: "./media/characters/pixil/front.svg",
  27844. extra: 2000 / 1618,
  27845. bottom: 12.3 / 2011
  27846. }
  27847. },
  27848. },
  27849. [
  27850. {
  27851. name: "Normal",
  27852. height: math.unit(5, "feet"),
  27853. default: true
  27854. },
  27855. {
  27856. name: "Megamacro",
  27857. height: math.unit(10, "miles"),
  27858. },
  27859. ]
  27860. ))
  27861. characterMakers.push(() => makeCharacter(
  27862. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27863. {
  27864. front: {
  27865. height: math.unit(7 + 2 / 12, "feet"),
  27866. weight: math.unit(200, "lb"),
  27867. name: "Front",
  27868. image: {
  27869. source: "./media/characters/angel/front.svg",
  27870. extra: 1946/1840,
  27871. bottom: 30/1976
  27872. }
  27873. },
  27874. },
  27875. [
  27876. {
  27877. name: "Normal",
  27878. height: math.unit(7 + 2 / 12, "feet"),
  27879. default: true
  27880. },
  27881. {
  27882. name: "Macro",
  27883. height: math.unit(1000, "feet")
  27884. },
  27885. {
  27886. name: "Megamacro",
  27887. height: math.unit(2, "miles")
  27888. },
  27889. {
  27890. name: "Gigamacro",
  27891. height: math.unit(20, "earths")
  27892. },
  27893. ]
  27894. ))
  27895. characterMakers.push(() => makeCharacter(
  27896. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27897. {
  27898. front: {
  27899. height: math.unit(5, "feet"),
  27900. weight: math.unit(180, "lb"),
  27901. name: "Front",
  27902. image: {
  27903. source: "./media/characters/mekana/front.svg",
  27904. extra: 1671 / 1605,
  27905. bottom: 3.5 / 1691
  27906. }
  27907. },
  27908. side: {
  27909. height: math.unit(5, "feet"),
  27910. weight: math.unit(180, "lb"),
  27911. name: "Side",
  27912. image: {
  27913. source: "./media/characters/mekana/side.svg",
  27914. extra: 1671 / 1605,
  27915. bottom: 3.5 / 1691
  27916. }
  27917. },
  27918. back: {
  27919. height: math.unit(5, "feet"),
  27920. weight: math.unit(180, "lb"),
  27921. name: "Back",
  27922. image: {
  27923. source: "./media/characters/mekana/back.svg",
  27924. extra: 1671 / 1605,
  27925. bottom: 3.5 / 1691
  27926. }
  27927. },
  27928. },
  27929. [
  27930. {
  27931. name: "Normal",
  27932. height: math.unit(5, "feet"),
  27933. default: true
  27934. },
  27935. ]
  27936. ))
  27937. characterMakers.push(() => makeCharacter(
  27938. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27939. {
  27940. front: {
  27941. height: math.unit(4 + 6 / 12, "feet"),
  27942. weight: math.unit(80, "lb"),
  27943. name: "Front",
  27944. image: {
  27945. source: "./media/characters/pixie/front.svg",
  27946. extra: 1924 / 1825,
  27947. bottom: 22.4 / 1946
  27948. }
  27949. },
  27950. },
  27951. [
  27952. {
  27953. name: "Normal",
  27954. height: math.unit(4 + 6 / 12, "feet"),
  27955. default: true
  27956. },
  27957. {
  27958. name: "Macro",
  27959. height: math.unit(40, "feet")
  27960. },
  27961. ]
  27962. ))
  27963. characterMakers.push(() => makeCharacter(
  27964. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27965. {
  27966. front: {
  27967. height: math.unit(2.1, "meters"),
  27968. weight: math.unit(200, "lb"),
  27969. name: "Front",
  27970. image: {
  27971. source: "./media/characters/the-lascivious/front.svg",
  27972. extra: 1 / 0.893,
  27973. bottom: 3.5 / 573.7
  27974. }
  27975. },
  27976. },
  27977. [
  27978. {
  27979. name: "Human Scale",
  27980. height: math.unit(2.1, "meters")
  27981. },
  27982. {
  27983. name: "Wolxi Scale",
  27984. height: math.unit(46.2, "m"),
  27985. default: true
  27986. },
  27987. {
  27988. name: "Boinker of Buildings",
  27989. height: math.unit(10, "km")
  27990. },
  27991. {
  27992. name: "Shagger of Skyscrapers",
  27993. height: math.unit(40, "km")
  27994. },
  27995. {
  27996. name: "Banger of Boroughs",
  27997. height: math.unit(4000, "km")
  27998. },
  27999. {
  28000. name: "Screwer of States",
  28001. height: math.unit(100000, "km")
  28002. },
  28003. {
  28004. name: "Pounder of Planets",
  28005. height: math.unit(2000000, "km")
  28006. },
  28007. ]
  28008. ))
  28009. characterMakers.push(() => makeCharacter(
  28010. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28011. {
  28012. front: {
  28013. height: math.unit(6, "feet"),
  28014. weight: math.unit(150, "lb"),
  28015. name: "Front",
  28016. image: {
  28017. source: "./media/characters/aj/front.svg",
  28018. extra: 2039 / 1562,
  28019. bottom: 40 / 2079
  28020. }
  28021. },
  28022. },
  28023. [
  28024. {
  28025. name: "Normal",
  28026. height: math.unit(11 + 6 / 12, "feet"),
  28027. default: true
  28028. },
  28029. {
  28030. name: "Megamacro",
  28031. height: math.unit(60, "megameters")
  28032. },
  28033. ]
  28034. ))
  28035. characterMakers.push(() => makeCharacter(
  28036. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28037. {
  28038. side: {
  28039. height: math.unit(31 + 8 / 12, "feet"),
  28040. weight: math.unit(75000, "kg"),
  28041. name: "Side",
  28042. image: {
  28043. source: "./media/characters/koros/side.svg",
  28044. extra: 1442 / 1297,
  28045. bottom: 122.7 / 1562
  28046. }
  28047. },
  28048. dicksKingsCrown: {
  28049. height: math.unit(6, "feet"),
  28050. name: "Dicks (King's Crown)",
  28051. image: {
  28052. source: "./media/characters/koros/dicks-kings-crown.svg"
  28053. }
  28054. },
  28055. dicksTailSet: {
  28056. height: math.unit(3, "feet"),
  28057. name: "Dicks (Tail Set)",
  28058. image: {
  28059. source: "./media/characters/koros/dicks-tail-set.svg"
  28060. }
  28061. },
  28062. dickCumming: {
  28063. height: math.unit(7.98, "feet"),
  28064. name: "Dick (Cumming)",
  28065. image: {
  28066. source: "./media/characters/koros/dick-cumming.svg"
  28067. }
  28068. },
  28069. dicksBack: {
  28070. height: math.unit(5.9, "feet"),
  28071. name: "Dicks (Back)",
  28072. image: {
  28073. source: "./media/characters/koros/dicks-back.svg"
  28074. }
  28075. },
  28076. dicksFront: {
  28077. height: math.unit(3.72, "feet"),
  28078. name: "Dicks (Front)",
  28079. image: {
  28080. source: "./media/characters/koros/dicks-front.svg"
  28081. }
  28082. },
  28083. dicksPeeking: {
  28084. height: math.unit(3.0, "feet"),
  28085. name: "Dicks (Peeking)",
  28086. image: {
  28087. source: "./media/characters/koros/dicks-peeking.svg"
  28088. }
  28089. },
  28090. eye: {
  28091. height: math.unit(1.7, "feet"),
  28092. name: "Eye",
  28093. image: {
  28094. source: "./media/characters/koros/eye.svg"
  28095. }
  28096. },
  28097. headFront: {
  28098. height: math.unit(11.69, "feet"),
  28099. name: "Head (Front)",
  28100. image: {
  28101. source: "./media/characters/koros/head-front.svg"
  28102. }
  28103. },
  28104. headSide: {
  28105. height: math.unit(14, "feet"),
  28106. name: "Head (Side)",
  28107. image: {
  28108. source: "./media/characters/koros/head-side.svg"
  28109. }
  28110. },
  28111. leg: {
  28112. height: math.unit(17, "feet"),
  28113. name: "Leg",
  28114. image: {
  28115. source: "./media/characters/koros/leg.svg"
  28116. }
  28117. },
  28118. mawSide: {
  28119. height: math.unit(12.8, "feet"),
  28120. name: "Maw (Side)",
  28121. image: {
  28122. source: "./media/characters/koros/maw-side.svg"
  28123. }
  28124. },
  28125. mawSpitting: {
  28126. height: math.unit(17, "feet"),
  28127. name: "Maw (Spitting)",
  28128. image: {
  28129. source: "./media/characters/koros/maw-spitting.svg"
  28130. }
  28131. },
  28132. slit: {
  28133. height: math.unit(2.8, "feet"),
  28134. name: "Slit",
  28135. image: {
  28136. source: "./media/characters/koros/slit.svg"
  28137. }
  28138. },
  28139. stomach: {
  28140. height: math.unit(6.8, "feet"),
  28141. preyCapacity: math.unit(20, "people"),
  28142. name: "Stomach",
  28143. image: {
  28144. source: "./media/characters/koros/stomach.svg"
  28145. }
  28146. },
  28147. wingspanBottom: {
  28148. height: math.unit(114, "feet"),
  28149. name: "Wingspan (Bottom)",
  28150. image: {
  28151. source: "./media/characters/koros/wingspan-bottom.svg"
  28152. }
  28153. },
  28154. wingspanTop: {
  28155. height: math.unit(104, "feet"),
  28156. name: "Wingspan (Top)",
  28157. image: {
  28158. source: "./media/characters/koros/wingspan-top.svg"
  28159. }
  28160. },
  28161. },
  28162. [
  28163. {
  28164. name: "Normal",
  28165. height: math.unit(31 + 8 / 12, "feet"),
  28166. default: true
  28167. },
  28168. ]
  28169. ))
  28170. characterMakers.push(() => makeCharacter(
  28171. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28172. {
  28173. front: {
  28174. height: math.unit(18 + 5 / 12, "feet"),
  28175. weight: math.unit(3750, "kg"),
  28176. name: "Front",
  28177. image: {
  28178. source: "./media/characters/vexx/front.svg",
  28179. extra: 426 / 396,
  28180. bottom: 31.5 / 458
  28181. }
  28182. },
  28183. maw: {
  28184. height: math.unit(6, "feet"),
  28185. name: "Maw",
  28186. image: {
  28187. source: "./media/characters/vexx/maw.svg"
  28188. }
  28189. },
  28190. },
  28191. [
  28192. {
  28193. name: "Normal",
  28194. height: math.unit(18 + 5 / 12, "feet"),
  28195. default: true
  28196. },
  28197. ]
  28198. ))
  28199. characterMakers.push(() => makeCharacter(
  28200. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28201. {
  28202. front: {
  28203. height: math.unit(17 + 6 / 12, "feet"),
  28204. weight: math.unit(150, "lb"),
  28205. name: "Front",
  28206. image: {
  28207. source: "./media/characters/baadra/front.svg",
  28208. extra: 1694/1553,
  28209. bottom: 179/1873
  28210. }
  28211. },
  28212. frontAlt: {
  28213. height: math.unit(17 + 6 / 12, "feet"),
  28214. weight: math.unit(150, "lb"),
  28215. name: "Front (Alt)",
  28216. image: {
  28217. source: "./media/characters/baadra/front-alt.svg",
  28218. extra: 3137 / 2890,
  28219. bottom: 168.4 / 3305
  28220. }
  28221. },
  28222. back: {
  28223. height: math.unit(17 + 6 / 12, "feet"),
  28224. weight: math.unit(150, "lb"),
  28225. name: "Back",
  28226. image: {
  28227. source: "./media/characters/baadra/back.svg",
  28228. extra: 3142 / 2890,
  28229. bottom: 220 / 3371
  28230. }
  28231. },
  28232. head: {
  28233. height: math.unit(5.45, "feet"),
  28234. name: "Head",
  28235. image: {
  28236. source: "./media/characters/baadra/head.svg"
  28237. }
  28238. },
  28239. headAngry: {
  28240. height: math.unit(4.95, "feet"),
  28241. name: "Head (Angry)",
  28242. image: {
  28243. source: "./media/characters/baadra/head-angry.svg"
  28244. }
  28245. },
  28246. headOpen: {
  28247. height: math.unit(6, "feet"),
  28248. name: "Head (Open)",
  28249. image: {
  28250. source: "./media/characters/baadra/head-open.svg"
  28251. }
  28252. },
  28253. },
  28254. [
  28255. {
  28256. name: "Normal",
  28257. height: math.unit(17 + 6 / 12, "feet"),
  28258. default: true
  28259. },
  28260. ]
  28261. ))
  28262. characterMakers.push(() => makeCharacter(
  28263. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28264. {
  28265. front: {
  28266. height: math.unit(7 + 3 / 12, "feet"),
  28267. weight: math.unit(180, "lb"),
  28268. name: "Front",
  28269. image: {
  28270. source: "./media/characters/juri/front.svg",
  28271. extra: 1401 / 1237,
  28272. bottom: 18.5 / 1418
  28273. }
  28274. },
  28275. side: {
  28276. height: math.unit(7 + 3 / 12, "feet"),
  28277. weight: math.unit(180, "lb"),
  28278. name: "Side",
  28279. image: {
  28280. source: "./media/characters/juri/side.svg",
  28281. extra: 1424 / 1242,
  28282. bottom: 18.5 / 1447
  28283. }
  28284. },
  28285. sitting: {
  28286. height: math.unit(6, "feet"),
  28287. weight: math.unit(180, "lb"),
  28288. name: "Sitting",
  28289. image: {
  28290. source: "./media/characters/juri/sitting.svg",
  28291. extra: 1270 / 1143,
  28292. bottom: 100 / 1343
  28293. }
  28294. },
  28295. back: {
  28296. height: math.unit(7 + 3 / 12, "feet"),
  28297. weight: math.unit(180, "lb"),
  28298. name: "Back",
  28299. image: {
  28300. source: "./media/characters/juri/back.svg",
  28301. extra: 1377 / 1240,
  28302. bottom: 23.7 / 1405
  28303. }
  28304. },
  28305. maw: {
  28306. height: math.unit(2.8, "feet"),
  28307. name: "Maw",
  28308. image: {
  28309. source: "./media/characters/juri/maw.svg"
  28310. }
  28311. },
  28312. stomach: {
  28313. height: math.unit(0.89, "feet"),
  28314. preyCapacity: math.unit(4, "liters"),
  28315. name: "Stomach",
  28316. image: {
  28317. source: "./media/characters/juri/stomach.svg"
  28318. }
  28319. },
  28320. },
  28321. [
  28322. {
  28323. name: "Normal",
  28324. height: math.unit(7 + 3 / 12, "feet"),
  28325. default: true
  28326. },
  28327. ]
  28328. ))
  28329. characterMakers.push(() => makeCharacter(
  28330. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28331. {
  28332. fox: {
  28333. height: math.unit(5 + 6 / 12, "feet"),
  28334. weight: math.unit(140, "lb"),
  28335. name: "Fox",
  28336. image: {
  28337. source: "./media/characters/maxene-sita/fox.svg",
  28338. extra: 146 / 138,
  28339. bottom: 2.1 / 148.19
  28340. }
  28341. },
  28342. foxLaying: {
  28343. height: math.unit(1.70, "feet"),
  28344. weight: math.unit(140, "lb"),
  28345. name: "Fox (Laying)",
  28346. image: {
  28347. source: "./media/characters/maxene-sita/fox-laying.svg",
  28348. extra: 910 / 572,
  28349. bottom: 71 / 981
  28350. }
  28351. },
  28352. kitsune: {
  28353. height: math.unit(10, "feet"),
  28354. weight: math.unit(800, "lb"),
  28355. name: "Kitsune",
  28356. image: {
  28357. source: "./media/characters/maxene-sita/kitsune.svg",
  28358. extra: 185 / 176,
  28359. bottom: 4.7 / 189.9
  28360. }
  28361. },
  28362. hellhound: {
  28363. height: math.unit(10, "feet"),
  28364. weight: math.unit(700, "lb"),
  28365. name: "Hellhound",
  28366. image: {
  28367. source: "./media/characters/maxene-sita/hellhound.svg",
  28368. extra: 1600 / 1545,
  28369. bottom: 81 / 1681
  28370. }
  28371. },
  28372. },
  28373. [
  28374. {
  28375. name: "Normal",
  28376. height: math.unit(5 + 6 / 12, "feet"),
  28377. default: true
  28378. },
  28379. ]
  28380. ))
  28381. characterMakers.push(() => makeCharacter(
  28382. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28383. {
  28384. front: {
  28385. height: math.unit(3 + 4 / 12, "feet"),
  28386. weight: math.unit(70, "lb"),
  28387. name: "Front",
  28388. image: {
  28389. source: "./media/characters/maia/front.svg",
  28390. extra: 227 / 219.5,
  28391. bottom: 40 / 267
  28392. }
  28393. },
  28394. back: {
  28395. height: math.unit(3 + 4 / 12, "feet"),
  28396. weight: math.unit(70, "lb"),
  28397. name: "Back",
  28398. image: {
  28399. source: "./media/characters/maia/back.svg",
  28400. extra: 237 / 225
  28401. }
  28402. },
  28403. },
  28404. [
  28405. {
  28406. name: "Normal",
  28407. height: math.unit(3 + 4 / 12, "feet"),
  28408. default: true
  28409. },
  28410. ]
  28411. ))
  28412. characterMakers.push(() => makeCharacter(
  28413. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28414. {
  28415. front: {
  28416. height: math.unit(5 + 10 / 12, "feet"),
  28417. weight: math.unit(197, "lb"),
  28418. name: "Front",
  28419. image: {
  28420. source: "./media/characters/jabaro/front.svg",
  28421. extra: 225 / 216,
  28422. bottom: 5.06 / 230
  28423. }
  28424. },
  28425. back: {
  28426. height: math.unit(5 + 10 / 12, "feet"),
  28427. weight: math.unit(197, "lb"),
  28428. name: "Back",
  28429. image: {
  28430. source: "./media/characters/jabaro/back.svg",
  28431. extra: 225 / 219,
  28432. bottom: 1.9 / 227
  28433. }
  28434. },
  28435. },
  28436. [
  28437. {
  28438. name: "Normal",
  28439. height: math.unit(5 + 10 / 12, "feet"),
  28440. default: true
  28441. },
  28442. ]
  28443. ))
  28444. characterMakers.push(() => makeCharacter(
  28445. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28446. {
  28447. front: {
  28448. height: math.unit(5 + 8 / 12, "feet"),
  28449. weight: math.unit(139, "lb"),
  28450. name: "Front",
  28451. image: {
  28452. source: "./media/characters/risa/front.svg",
  28453. extra: 270 / 260,
  28454. bottom: 11.2 / 282
  28455. }
  28456. },
  28457. back: {
  28458. height: math.unit(5 + 8 / 12, "feet"),
  28459. weight: math.unit(139, "lb"),
  28460. name: "Back",
  28461. image: {
  28462. source: "./media/characters/risa/back.svg",
  28463. extra: 264 / 255,
  28464. bottom: 4 / 268
  28465. }
  28466. },
  28467. },
  28468. [
  28469. {
  28470. name: "Normal",
  28471. height: math.unit(5 + 8 / 12, "feet"),
  28472. default: true
  28473. },
  28474. ]
  28475. ))
  28476. characterMakers.push(() => makeCharacter(
  28477. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28478. {
  28479. front: {
  28480. height: math.unit(2 + 11 / 12, "feet"),
  28481. weight: math.unit(30, "lb"),
  28482. name: "Front",
  28483. image: {
  28484. source: "./media/characters/weatley/front.svg",
  28485. bottom: 10.7 / 414,
  28486. extra: 403.5 / 362
  28487. }
  28488. },
  28489. back: {
  28490. height: math.unit(2 + 11 / 12, "feet"),
  28491. weight: math.unit(30, "lb"),
  28492. name: "Back",
  28493. image: {
  28494. source: "./media/characters/weatley/back.svg",
  28495. bottom: 10.7 / 414,
  28496. extra: 403.5 / 362
  28497. }
  28498. },
  28499. },
  28500. [
  28501. {
  28502. name: "Normal",
  28503. height: math.unit(2 + 11 / 12, "feet"),
  28504. default: true
  28505. },
  28506. ]
  28507. ))
  28508. characterMakers.push(() => makeCharacter(
  28509. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28510. {
  28511. front: {
  28512. height: math.unit(5 + 2 / 12, "feet"),
  28513. weight: math.unit(50, "kg"),
  28514. name: "Front",
  28515. image: {
  28516. source: "./media/characters/mercury-crescent/front.svg",
  28517. extra: 1088 / 1033,
  28518. bottom: 18.9 / 1109
  28519. }
  28520. },
  28521. },
  28522. [
  28523. {
  28524. name: "Normal",
  28525. height: math.unit(5 + 2 / 12, "feet"),
  28526. default: true
  28527. },
  28528. ]
  28529. ))
  28530. characterMakers.push(() => makeCharacter(
  28531. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28532. {
  28533. front: {
  28534. height: math.unit(2, "feet"),
  28535. weight: math.unit(15, "kg"),
  28536. name: "Front",
  28537. image: {
  28538. source: "./media/characters/diamond-jones/front.svg",
  28539. extra: 727/723,
  28540. bottom: 46/773
  28541. }
  28542. },
  28543. },
  28544. [
  28545. {
  28546. name: "Normal",
  28547. height: math.unit(2, "feet"),
  28548. default: true
  28549. },
  28550. ]
  28551. ))
  28552. characterMakers.push(() => makeCharacter(
  28553. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28554. {
  28555. front: {
  28556. height: math.unit(3, "feet"),
  28557. weight: math.unit(30, "kg"),
  28558. name: "Front",
  28559. image: {
  28560. source: "./media/characters/sweet-bit/front.svg",
  28561. extra: 675 / 567,
  28562. bottom: 27.7 / 703
  28563. }
  28564. },
  28565. },
  28566. [
  28567. {
  28568. name: "Normal",
  28569. height: math.unit(3, "feet"),
  28570. default: true
  28571. },
  28572. ]
  28573. ))
  28574. characterMakers.push(() => makeCharacter(
  28575. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28576. {
  28577. side: {
  28578. height: math.unit(9.178, "feet"),
  28579. weight: math.unit(500, "lb"),
  28580. name: "Side",
  28581. image: {
  28582. source: "./media/characters/umbrazen/side.svg",
  28583. extra: 1730 / 1473,
  28584. bottom: 34.6 / 1765
  28585. }
  28586. },
  28587. },
  28588. [
  28589. {
  28590. name: "Normal",
  28591. height: math.unit(9.178, "feet"),
  28592. default: true
  28593. },
  28594. ]
  28595. ))
  28596. characterMakers.push(() => makeCharacter(
  28597. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28598. {
  28599. front: {
  28600. height: math.unit(10, "feet"),
  28601. weight: math.unit(750, "lb"),
  28602. name: "Front",
  28603. image: {
  28604. source: "./media/characters/arlist/front.svg",
  28605. extra: 961 / 778,
  28606. bottom: 6.2 / 986
  28607. }
  28608. },
  28609. },
  28610. [
  28611. {
  28612. name: "Normal",
  28613. height: math.unit(10, "feet"),
  28614. default: true
  28615. },
  28616. ]
  28617. ))
  28618. characterMakers.push(() => makeCharacter(
  28619. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28620. {
  28621. front: {
  28622. height: math.unit(5 + 1 / 12, "feet"),
  28623. weight: math.unit(110, "lb"),
  28624. name: "Front",
  28625. image: {
  28626. source: "./media/characters/aradel/front.svg",
  28627. extra: 324 / 303,
  28628. bottom: 3.6 / 329.4
  28629. }
  28630. },
  28631. },
  28632. [
  28633. {
  28634. name: "Normal",
  28635. height: math.unit(5 + 1 / 12, "feet"),
  28636. default: true
  28637. },
  28638. ]
  28639. ))
  28640. characterMakers.push(() => makeCharacter(
  28641. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28642. {
  28643. dressed: {
  28644. height: math.unit(3 + 8 / 12, "feet"),
  28645. weight: math.unit(50, "lb"),
  28646. name: "Dressed",
  28647. image: {
  28648. source: "./media/characters/serryn/dressed.svg",
  28649. extra: 1792 / 1656,
  28650. bottom: 43.5 / 1840
  28651. }
  28652. },
  28653. nude: {
  28654. height: math.unit(3 + 8 / 12, "feet"),
  28655. weight: math.unit(50, "lb"),
  28656. name: "Nude",
  28657. image: {
  28658. source: "./media/characters/serryn/nude.svg",
  28659. extra: 1792 / 1656,
  28660. bottom: 43.5 / 1840
  28661. }
  28662. },
  28663. },
  28664. [
  28665. {
  28666. name: "Normal",
  28667. height: math.unit(3 + 8 / 12, "feet"),
  28668. default: true
  28669. },
  28670. ]
  28671. ))
  28672. characterMakers.push(() => makeCharacter(
  28673. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28674. {
  28675. front: {
  28676. height: math.unit(7 + 10 / 12, "feet"),
  28677. weight: math.unit(255, "lb"),
  28678. name: "Front",
  28679. image: {
  28680. source: "./media/characters/xavier-thyme/front.svg",
  28681. extra: 3733 / 3642,
  28682. bottom: 131 / 3869
  28683. }
  28684. },
  28685. frontRaven: {
  28686. height: math.unit(7 + 10 / 12, "feet"),
  28687. weight: math.unit(255, "lb"),
  28688. name: "Front (Raven)",
  28689. image: {
  28690. source: "./media/characters/xavier-thyme/front-raven.svg",
  28691. extra: 4385 / 3642,
  28692. bottom: 131 / 4517
  28693. }
  28694. },
  28695. },
  28696. [
  28697. {
  28698. name: "Normal",
  28699. height: math.unit(7 + 10 / 12, "feet"),
  28700. default: true
  28701. },
  28702. ]
  28703. ))
  28704. characterMakers.push(() => makeCharacter(
  28705. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28706. {
  28707. front: {
  28708. height: math.unit(1.6, "m"),
  28709. weight: math.unit(50, "kg"),
  28710. name: "Front",
  28711. image: {
  28712. source: "./media/characters/kiki/front.svg",
  28713. extra: 4682 / 3610,
  28714. bottom: 115 / 4777
  28715. }
  28716. },
  28717. },
  28718. [
  28719. {
  28720. name: "Normal",
  28721. height: math.unit(1.6, "meters"),
  28722. default: true
  28723. },
  28724. ]
  28725. ))
  28726. characterMakers.push(() => makeCharacter(
  28727. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28728. {
  28729. front: {
  28730. height: math.unit(50, "m"),
  28731. weight: math.unit(500, "tonnes"),
  28732. name: "Front",
  28733. image: {
  28734. source: "./media/characters/ryoko/front.svg",
  28735. extra: 4632 / 3926,
  28736. bottom: 193 / 4823
  28737. }
  28738. },
  28739. },
  28740. [
  28741. {
  28742. name: "Normal",
  28743. height: math.unit(50, "meters"),
  28744. default: true
  28745. },
  28746. ]
  28747. ))
  28748. characterMakers.push(() => makeCharacter(
  28749. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28750. {
  28751. front: {
  28752. height: math.unit(30, "m"),
  28753. weight: math.unit(22, "tonnes"),
  28754. name: "Front",
  28755. image: {
  28756. source: "./media/characters/elio/front.svg",
  28757. extra: 4582 / 3720,
  28758. bottom: 236 / 4828
  28759. }
  28760. },
  28761. },
  28762. [
  28763. {
  28764. name: "Normal",
  28765. height: math.unit(30, "meters"),
  28766. default: true
  28767. },
  28768. ]
  28769. ))
  28770. characterMakers.push(() => makeCharacter(
  28771. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28772. {
  28773. front: {
  28774. height: math.unit(6 + 3 / 12, "feet"),
  28775. weight: math.unit(120, "lb"),
  28776. name: "Front",
  28777. image: {
  28778. source: "./media/characters/azura/front.svg",
  28779. extra: 1149 / 1135,
  28780. bottom: 45 / 1194
  28781. }
  28782. },
  28783. frontClothed: {
  28784. height: math.unit(6 + 3 / 12, "feet"),
  28785. weight: math.unit(120, "lb"),
  28786. name: "Front (Clothed)",
  28787. image: {
  28788. source: "./media/characters/azura/front-clothed.svg",
  28789. extra: 1149 / 1135,
  28790. bottom: 45 / 1194
  28791. }
  28792. },
  28793. },
  28794. [
  28795. {
  28796. name: "Normal",
  28797. height: math.unit(6 + 3 / 12, "feet"),
  28798. default: true
  28799. },
  28800. {
  28801. name: "Macro",
  28802. height: math.unit(20 + 6 / 12, "feet")
  28803. },
  28804. {
  28805. name: "Megamacro",
  28806. height: math.unit(12, "miles")
  28807. },
  28808. {
  28809. name: "Gigamacro",
  28810. height: math.unit(10000, "miles")
  28811. },
  28812. {
  28813. name: "Teramacro",
  28814. height: math.unit(900000, "miles")
  28815. },
  28816. ]
  28817. ))
  28818. characterMakers.push(() => makeCharacter(
  28819. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28820. {
  28821. front: {
  28822. height: math.unit(12, "feet"),
  28823. weight: math.unit(1, "ton"),
  28824. capacity: math.unit(660000, "gallons"),
  28825. name: "Front",
  28826. image: {
  28827. source: "./media/characters/zeus/front.svg",
  28828. extra: 5005 / 4717,
  28829. bottom: 363 / 5388
  28830. }
  28831. },
  28832. },
  28833. [
  28834. {
  28835. name: "Normal",
  28836. height: math.unit(12, "feet")
  28837. },
  28838. {
  28839. name: "Preferred Size",
  28840. height: math.unit(0.5, "miles"),
  28841. default: true
  28842. },
  28843. {
  28844. name: "Giga Horse",
  28845. height: math.unit(300, "miles")
  28846. },
  28847. {
  28848. name: "Riding Planets",
  28849. height: math.unit(30, "megameters")
  28850. },
  28851. {
  28852. name: "Cosmic Giant",
  28853. height: math.unit(3, "zettameters")
  28854. },
  28855. {
  28856. name: "Breeding God",
  28857. height: math.unit(9.92e22, "yottameters")
  28858. },
  28859. ]
  28860. ))
  28861. characterMakers.push(() => makeCharacter(
  28862. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28863. {
  28864. side: {
  28865. height: math.unit(9, "feet"),
  28866. weight: math.unit(1500, "kg"),
  28867. name: "Side",
  28868. image: {
  28869. source: "./media/characters/fang/side.svg",
  28870. extra: 924 / 866,
  28871. bottom: 47.5 / 972.3
  28872. }
  28873. },
  28874. },
  28875. [
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(9, "feet"),
  28879. default: true
  28880. },
  28881. {
  28882. name: "Macro",
  28883. height: math.unit(75 + 6 / 12, "feet")
  28884. },
  28885. {
  28886. name: "Teramacro",
  28887. height: math.unit(50000, "miles")
  28888. },
  28889. ]
  28890. ))
  28891. characterMakers.push(() => makeCharacter(
  28892. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28893. {
  28894. front: {
  28895. height: math.unit(10, "feet"),
  28896. weight: math.unit(2, "tons"),
  28897. name: "Front",
  28898. image: {
  28899. source: "./media/characters/rekhit/front.svg",
  28900. extra: 2796 / 2590,
  28901. bottom: 225 / 3022
  28902. }
  28903. },
  28904. },
  28905. [
  28906. {
  28907. name: "Normal",
  28908. height: math.unit(10, "feet"),
  28909. default: true
  28910. },
  28911. {
  28912. name: "Macro",
  28913. height: math.unit(500, "feet")
  28914. },
  28915. ]
  28916. ))
  28917. characterMakers.push(() => makeCharacter(
  28918. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28919. {
  28920. front: {
  28921. height: math.unit(7 + 6.451 / 12, "feet"),
  28922. weight: math.unit(310, "lb"),
  28923. name: "Front",
  28924. image: {
  28925. source: "./media/characters/dahlia-verrick/front.svg",
  28926. extra: 1488 / 1365,
  28927. bottom: 6.2 / 1495
  28928. }
  28929. },
  28930. back: {
  28931. height: math.unit(7 + 6.451 / 12, "feet"),
  28932. weight: math.unit(310, "lb"),
  28933. name: "Back",
  28934. image: {
  28935. source: "./media/characters/dahlia-verrick/back.svg",
  28936. extra: 1472 / 1351,
  28937. bottom: 5.28 / 1477
  28938. }
  28939. },
  28940. frontBusiness: {
  28941. height: math.unit(7 + 6.451 / 12, "feet"),
  28942. weight: math.unit(200, "lb"),
  28943. name: "Front (Business)",
  28944. image: {
  28945. source: "./media/characters/dahlia-verrick/front-business.svg",
  28946. extra: 1478 / 1381,
  28947. bottom: 5.5 / 1484
  28948. }
  28949. },
  28950. frontCasual: {
  28951. height: math.unit(7 + 6.451 / 12, "feet"),
  28952. weight: math.unit(200, "lb"),
  28953. name: "Front (Casual)",
  28954. image: {
  28955. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28956. extra: 1478 / 1381,
  28957. bottom: 5.5 / 1484
  28958. }
  28959. },
  28960. },
  28961. [
  28962. {
  28963. name: "Travel-Sized",
  28964. height: math.unit(7.45, "inches")
  28965. },
  28966. {
  28967. name: "Normal",
  28968. height: math.unit(7 + 6.451 / 12, "feet"),
  28969. default: true
  28970. },
  28971. {
  28972. name: "Hitting the Town",
  28973. height: math.unit(37 + 8 / 12, "feet")
  28974. },
  28975. {
  28976. name: "Stomp in the Suburbs",
  28977. height: math.unit(964 + 9.728 / 12, "feet")
  28978. },
  28979. {
  28980. name: "Sit on the City",
  28981. height: math.unit(61747 + 10.592 / 12, "feet")
  28982. },
  28983. {
  28984. name: "Glomp the Globe",
  28985. height: math.unit(252919327 + 4.832 / 12, "feet")
  28986. },
  28987. ]
  28988. ))
  28989. characterMakers.push(() => makeCharacter(
  28990. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28991. {
  28992. front: {
  28993. height: math.unit(6 + 4 / 12, "feet"),
  28994. weight: math.unit(320, "lb"),
  28995. name: "Front",
  28996. image: {
  28997. source: "./media/characters/balina-mahigan/front.svg",
  28998. extra: 447 / 428,
  28999. bottom: 18 / 466
  29000. }
  29001. },
  29002. back: {
  29003. height: math.unit(6 + 4 / 12, "feet"),
  29004. weight: math.unit(320, "lb"),
  29005. name: "Back",
  29006. image: {
  29007. source: "./media/characters/balina-mahigan/back.svg",
  29008. extra: 445 / 428,
  29009. bottom: 4.07 / 448
  29010. }
  29011. },
  29012. arm: {
  29013. height: math.unit(1.88, "feet"),
  29014. name: "Arm",
  29015. image: {
  29016. source: "./media/characters/balina-mahigan/arm.svg"
  29017. }
  29018. },
  29019. backPort: {
  29020. height: math.unit(0.685, "feet"),
  29021. name: "Back Port",
  29022. image: {
  29023. source: "./media/characters/balina-mahigan/back-port.svg"
  29024. }
  29025. },
  29026. hoofpaw: {
  29027. height: math.unit(1.41, "feet"),
  29028. name: "Hoofpaw",
  29029. image: {
  29030. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29031. }
  29032. },
  29033. leftHandBack: {
  29034. height: math.unit(0.938, "feet"),
  29035. name: "Left Hand (Back)",
  29036. image: {
  29037. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29038. }
  29039. },
  29040. leftHandFront: {
  29041. height: math.unit(0.938, "feet"),
  29042. name: "Left Hand (Front)",
  29043. image: {
  29044. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29045. }
  29046. },
  29047. rightHandBack: {
  29048. height: math.unit(0.95, "feet"),
  29049. name: "Right Hand (Back)",
  29050. image: {
  29051. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29052. }
  29053. },
  29054. rightHandFront: {
  29055. height: math.unit(0.95, "feet"),
  29056. name: "Right Hand (Front)",
  29057. image: {
  29058. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29059. }
  29060. },
  29061. },
  29062. [
  29063. {
  29064. name: "Normal",
  29065. height: math.unit(6 + 4 / 12, "feet"),
  29066. default: true
  29067. },
  29068. ]
  29069. ))
  29070. characterMakers.push(() => makeCharacter(
  29071. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29072. {
  29073. front: {
  29074. height: math.unit(6, "feet"),
  29075. weight: math.unit(320, "lb"),
  29076. name: "Front",
  29077. image: {
  29078. source: "./media/characters/balina-mejeri/front.svg",
  29079. extra: 517 / 488,
  29080. bottom: 44.2 / 561
  29081. }
  29082. },
  29083. },
  29084. [
  29085. {
  29086. name: "Normal",
  29087. height: math.unit(6 + 4 / 12, "feet")
  29088. },
  29089. {
  29090. name: "Business",
  29091. height: math.unit(155, "feet"),
  29092. default: true
  29093. },
  29094. ]
  29095. ))
  29096. characterMakers.push(() => makeCharacter(
  29097. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29098. {
  29099. kneeling: {
  29100. height: math.unit(6 + 4 / 12, "feet"),
  29101. weight: math.unit(300 * 20, "lb"),
  29102. name: "Kneeling",
  29103. image: {
  29104. source: "./media/characters/balbarian/kneeling.svg",
  29105. extra: 922 / 862,
  29106. bottom: 42.4 / 965
  29107. }
  29108. },
  29109. },
  29110. [
  29111. {
  29112. name: "Normal",
  29113. height: math.unit(6 + 4 / 12, "feet")
  29114. },
  29115. {
  29116. name: "Treasured",
  29117. height: math.unit(18 + 9 / 12, "feet"),
  29118. default: true
  29119. },
  29120. {
  29121. name: "Macro",
  29122. height: math.unit(900, "feet")
  29123. },
  29124. ]
  29125. ))
  29126. characterMakers.push(() => makeCharacter(
  29127. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29128. {
  29129. front: {
  29130. height: math.unit(6 + 4 / 12, "feet"),
  29131. weight: math.unit(325, "lb"),
  29132. name: "Front",
  29133. image: {
  29134. source: "./media/characters/balina-amarini/front.svg",
  29135. extra: 415 / 403,
  29136. bottom: 19 / 433.4
  29137. }
  29138. },
  29139. back: {
  29140. height: math.unit(6 + 4 / 12, "feet"),
  29141. weight: math.unit(325, "lb"),
  29142. name: "Back",
  29143. image: {
  29144. source: "./media/characters/balina-amarini/back.svg",
  29145. extra: 415 / 403,
  29146. bottom: 13.5 / 432
  29147. }
  29148. },
  29149. overdrive: {
  29150. height: math.unit(6 + 4 / 12, "feet"),
  29151. weight: math.unit(400, "lb"),
  29152. name: "Overdrive",
  29153. image: {
  29154. source: "./media/characters/balina-amarini/overdrive.svg",
  29155. extra: 269 / 259,
  29156. bottom: 12 / 282
  29157. }
  29158. },
  29159. },
  29160. [
  29161. {
  29162. name: "Boom",
  29163. height: math.unit(9 + 10 / 12, "feet"),
  29164. default: true
  29165. },
  29166. {
  29167. name: "Macro",
  29168. height: math.unit(280, "feet")
  29169. },
  29170. ]
  29171. ))
  29172. characterMakers.push(() => makeCharacter(
  29173. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29174. {
  29175. goddess: {
  29176. height: math.unit(600, "feet"),
  29177. weight: math.unit(2000000, "tons"),
  29178. name: "Goddess",
  29179. image: {
  29180. source: "./media/characters/lady-kubwa/goddess.svg",
  29181. extra: 1240.5 / 1223,
  29182. bottom: 22 / 1263
  29183. }
  29184. },
  29185. goddesser: {
  29186. height: math.unit(900, "feet"),
  29187. weight: math.unit(20000000, "lb"),
  29188. name: "Goddess-er",
  29189. image: {
  29190. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29191. extra: 899 / 888,
  29192. bottom: 12.6 / 912
  29193. }
  29194. },
  29195. },
  29196. [
  29197. {
  29198. name: "Macro",
  29199. height: math.unit(600, "feet"),
  29200. default: true
  29201. },
  29202. {
  29203. name: "Megamacro",
  29204. height: math.unit(250, "miles")
  29205. },
  29206. ]
  29207. ))
  29208. characterMakers.push(() => makeCharacter(
  29209. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29210. {
  29211. front: {
  29212. height: math.unit(7 + 7 / 12, "feet"),
  29213. weight: math.unit(250, "lb"),
  29214. name: "Front",
  29215. image: {
  29216. source: "./media/characters/tala-grovehorn/front.svg",
  29217. extra: 2636 / 2525,
  29218. bottom: 147 / 2781
  29219. }
  29220. },
  29221. back: {
  29222. height: math.unit(7 + 7 / 12, "feet"),
  29223. weight: math.unit(250, "lb"),
  29224. name: "Back",
  29225. image: {
  29226. source: "./media/characters/tala-grovehorn/back.svg",
  29227. extra: 2635 / 2539,
  29228. bottom: 100 / 2732.8
  29229. }
  29230. },
  29231. mouth: {
  29232. height: math.unit(1.15, "feet"),
  29233. name: "Mouth",
  29234. image: {
  29235. source: "./media/characters/tala-grovehorn/mouth.svg"
  29236. }
  29237. },
  29238. dick: {
  29239. height: math.unit(2.36, "feet"),
  29240. name: "Dick",
  29241. image: {
  29242. source: "./media/characters/tala-grovehorn/dick.svg"
  29243. }
  29244. },
  29245. slit: {
  29246. height: math.unit(0.61, "feet"),
  29247. name: "Slit",
  29248. image: {
  29249. source: "./media/characters/tala-grovehorn/slit.svg"
  29250. }
  29251. },
  29252. },
  29253. [
  29254. ]
  29255. ))
  29256. characterMakers.push(() => makeCharacter(
  29257. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29258. {
  29259. front: {
  29260. height: math.unit(7 + 7 / 12, "feet"),
  29261. weight: math.unit(225, "lb"),
  29262. name: "Front",
  29263. image: {
  29264. source: "./media/characters/epona/front.svg",
  29265. extra: 2445 / 2290,
  29266. bottom: 251 / 2696
  29267. }
  29268. },
  29269. back: {
  29270. height: math.unit(7 + 7 / 12, "feet"),
  29271. weight: math.unit(225, "lb"),
  29272. name: "Back",
  29273. image: {
  29274. source: "./media/characters/epona/back.svg",
  29275. extra: 2546 / 2408,
  29276. bottom: 44 / 2589
  29277. }
  29278. },
  29279. genitals: {
  29280. height: math.unit(1.5, "feet"),
  29281. name: "Genitals",
  29282. image: {
  29283. source: "./media/characters/epona/genitals.svg"
  29284. }
  29285. },
  29286. },
  29287. [
  29288. {
  29289. name: "Normal",
  29290. height: math.unit(7 + 7 / 12, "feet"),
  29291. default: true
  29292. },
  29293. ]
  29294. ))
  29295. characterMakers.push(() => makeCharacter(
  29296. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29297. {
  29298. front: {
  29299. height: math.unit(7, "feet"),
  29300. weight: math.unit(518, "lb"),
  29301. name: "Front",
  29302. image: {
  29303. source: "./media/characters/avia-bloodbourn/front.svg",
  29304. extra: 1466 / 1350,
  29305. bottom: 65 / 1527
  29306. }
  29307. },
  29308. },
  29309. [
  29310. ]
  29311. ))
  29312. characterMakers.push(() => makeCharacter(
  29313. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29314. {
  29315. front: {
  29316. height: math.unit(9.35, "feet"),
  29317. weight: math.unit(600, "lb"),
  29318. name: "Front",
  29319. image: {
  29320. source: "./media/characters/amera/front.svg",
  29321. extra: 891 / 818,
  29322. bottom: 30 / 922.7
  29323. }
  29324. },
  29325. back: {
  29326. height: math.unit(9.35, "feet"),
  29327. weight: math.unit(600, "lb"),
  29328. name: "Back",
  29329. image: {
  29330. source: "./media/characters/amera/back.svg",
  29331. extra: 876 / 824,
  29332. bottom: 6.8 / 884
  29333. }
  29334. },
  29335. dick: {
  29336. height: math.unit(2.14, "feet"),
  29337. name: "Dick",
  29338. image: {
  29339. source: "./media/characters/amera/dick.svg"
  29340. }
  29341. },
  29342. },
  29343. [
  29344. {
  29345. name: "Normal",
  29346. height: math.unit(9.35, "feet"),
  29347. default: true
  29348. },
  29349. ]
  29350. ))
  29351. characterMakers.push(() => makeCharacter(
  29352. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29353. {
  29354. kneeling: {
  29355. height: math.unit(3 + 4 / 12, "feet"),
  29356. weight: math.unit(90, "lb"),
  29357. name: "Kneeling",
  29358. image: {
  29359. source: "./media/characters/rosewen/kneeling.svg",
  29360. extra: 1835 / 1571,
  29361. bottom: 27.7 / 1862
  29362. }
  29363. },
  29364. },
  29365. [
  29366. {
  29367. name: "Normal",
  29368. height: math.unit(3 + 4 / 12, "feet"),
  29369. default: true
  29370. },
  29371. ]
  29372. ))
  29373. characterMakers.push(() => makeCharacter(
  29374. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29375. {
  29376. front: {
  29377. height: math.unit(5 + 10 / 12, "feet"),
  29378. weight: math.unit(200, "lb"),
  29379. name: "Front",
  29380. image: {
  29381. source: "./media/characters/sabah/front.svg",
  29382. extra: 849 / 763,
  29383. bottom: 33.9 / 881
  29384. }
  29385. },
  29386. },
  29387. [
  29388. {
  29389. name: "Normal",
  29390. height: math.unit(5 + 10 / 12, "feet"),
  29391. default: true
  29392. },
  29393. ]
  29394. ))
  29395. characterMakers.push(() => makeCharacter(
  29396. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29397. {
  29398. front: {
  29399. height: math.unit(3 + 5 / 12, "feet"),
  29400. weight: math.unit(40, "kg"),
  29401. name: "Front",
  29402. image: {
  29403. source: "./media/characters/purple-flame/front.svg",
  29404. extra: 1577 / 1412,
  29405. bottom: 97 / 1694
  29406. }
  29407. },
  29408. frontDressed: {
  29409. height: math.unit(3 + 5 / 12, "feet"),
  29410. weight: math.unit(40, "kg"),
  29411. name: "Front (Dressed)",
  29412. image: {
  29413. source: "./media/characters/purple-flame/front-dressed.svg",
  29414. extra: 1577 / 1412,
  29415. bottom: 97 / 1694
  29416. }
  29417. },
  29418. headphones: {
  29419. height: math.unit(0.85, "feet"),
  29420. name: "Headphones",
  29421. image: {
  29422. source: "./media/characters/purple-flame/headphones.svg"
  29423. }
  29424. },
  29425. },
  29426. [
  29427. {
  29428. name: "Really Small",
  29429. height: math.unit(5, "cm")
  29430. },
  29431. {
  29432. name: "Micro",
  29433. height: math.unit(1 + 5 / 12, "feet")
  29434. },
  29435. {
  29436. name: "Normal",
  29437. height: math.unit(3 + 5 / 12, "feet"),
  29438. default: true
  29439. },
  29440. {
  29441. name: "Minimacro",
  29442. height: math.unit(125, "feet")
  29443. },
  29444. {
  29445. name: "Macro",
  29446. height: math.unit(0.5, "miles")
  29447. },
  29448. {
  29449. name: "Megamacro",
  29450. height: math.unit(50, "miles")
  29451. },
  29452. {
  29453. name: "Gigantic",
  29454. height: math.unit(750, "miles")
  29455. },
  29456. {
  29457. name: "Planetary",
  29458. height: math.unit(15000, "miles")
  29459. },
  29460. ]
  29461. ))
  29462. characterMakers.push(() => makeCharacter(
  29463. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29464. {
  29465. front: {
  29466. height: math.unit(14, "feet"),
  29467. weight: math.unit(959, "lb"),
  29468. name: "Front",
  29469. image: {
  29470. source: "./media/characters/arsenal/front.svg",
  29471. extra: 2357 / 2157,
  29472. bottom: 93 / 2458
  29473. }
  29474. },
  29475. },
  29476. [
  29477. {
  29478. name: "Normal",
  29479. height: math.unit(14, "feet"),
  29480. default: true
  29481. },
  29482. ]
  29483. ))
  29484. characterMakers.push(() => makeCharacter(
  29485. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29486. {
  29487. front: {
  29488. height: math.unit(6, "feet"),
  29489. weight: math.unit(150, "lb"),
  29490. name: "Front",
  29491. image: {
  29492. source: "./media/characters/adira/front.svg",
  29493. extra: 1078 / 1029,
  29494. bottom: 87 / 1166
  29495. }
  29496. },
  29497. },
  29498. [
  29499. {
  29500. name: "Micro",
  29501. height: math.unit(4, "inches"),
  29502. default: true
  29503. },
  29504. {
  29505. name: "Macro",
  29506. height: math.unit(50, "feet")
  29507. },
  29508. ]
  29509. ))
  29510. characterMakers.push(() => makeCharacter(
  29511. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29512. {
  29513. front: {
  29514. height: math.unit(16, "feet"),
  29515. weight: math.unit(1000, "lb"),
  29516. name: "Front",
  29517. image: {
  29518. source: "./media/characters/grim/front.svg",
  29519. extra: 622 / 614,
  29520. bottom: 18.1 / 642
  29521. }
  29522. },
  29523. back: {
  29524. height: math.unit(16, "feet"),
  29525. weight: math.unit(1000, "lb"),
  29526. name: "Back",
  29527. image: {
  29528. source: "./media/characters/grim/back.svg",
  29529. extra: 610.6 / 602,
  29530. bottom: 40.8 / 652
  29531. }
  29532. },
  29533. hunched: {
  29534. height: math.unit(9.75, "feet"),
  29535. weight: math.unit(1000, "lb"),
  29536. name: "Hunched",
  29537. image: {
  29538. source: "./media/characters/grim/hunched.svg",
  29539. extra: 304 / 297,
  29540. bottom: 35.4 / 394
  29541. }
  29542. },
  29543. },
  29544. [
  29545. {
  29546. name: "Normal",
  29547. height: math.unit(16, "feet"),
  29548. default: true
  29549. },
  29550. ]
  29551. ))
  29552. characterMakers.push(() => makeCharacter(
  29553. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29554. {
  29555. front: {
  29556. height: math.unit(2.3, "meters"),
  29557. weight: math.unit(300, "lb"),
  29558. name: "Front",
  29559. image: {
  29560. source: "./media/characters/sinja/front-sfw.svg",
  29561. extra: 1393 / 1294,
  29562. bottom: 70 / 1463
  29563. }
  29564. },
  29565. frontNsfw: {
  29566. height: math.unit(2.3, "meters"),
  29567. weight: math.unit(300, "lb"),
  29568. name: "Front (NSFW)",
  29569. image: {
  29570. source: "./media/characters/sinja/front-nsfw.svg",
  29571. extra: 1393 / 1294,
  29572. bottom: 70 / 1463
  29573. }
  29574. },
  29575. back: {
  29576. height: math.unit(2.3, "meters"),
  29577. weight: math.unit(300, "lb"),
  29578. name: "Back",
  29579. image: {
  29580. source: "./media/characters/sinja/back.svg",
  29581. extra: 1393 / 1294,
  29582. bottom: 70 / 1463
  29583. }
  29584. },
  29585. head: {
  29586. height: math.unit(1.771, "feet"),
  29587. name: "Head",
  29588. image: {
  29589. source: "./media/characters/sinja/head.svg"
  29590. }
  29591. },
  29592. slit: {
  29593. height: math.unit(0.8, "feet"),
  29594. name: "Slit",
  29595. image: {
  29596. source: "./media/characters/sinja/slit.svg"
  29597. }
  29598. },
  29599. },
  29600. [
  29601. {
  29602. name: "Normal",
  29603. height: math.unit(2.3, "meters")
  29604. },
  29605. {
  29606. name: "Macro",
  29607. height: math.unit(91, "meters"),
  29608. default: true
  29609. },
  29610. {
  29611. name: "Megamacro",
  29612. height: math.unit(91440, "meters")
  29613. },
  29614. {
  29615. name: "Gigamacro",
  29616. height: math.unit(60960000, "meters")
  29617. },
  29618. {
  29619. name: "Teramacro",
  29620. height: math.unit(9144000000, "meters")
  29621. },
  29622. ]
  29623. ))
  29624. characterMakers.push(() => makeCharacter(
  29625. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29626. {
  29627. front: {
  29628. height: math.unit(1.7, "meters"),
  29629. weight: math.unit(130, "lb"),
  29630. name: "Front",
  29631. image: {
  29632. source: "./media/characters/kyu/front.svg",
  29633. extra: 415 / 395,
  29634. bottom: 5 / 420
  29635. }
  29636. },
  29637. head: {
  29638. height: math.unit(1.75, "feet"),
  29639. name: "Head",
  29640. image: {
  29641. source: "./media/characters/kyu/head.svg"
  29642. }
  29643. },
  29644. foot: {
  29645. height: math.unit(0.81, "feet"),
  29646. name: "Foot",
  29647. image: {
  29648. source: "./media/characters/kyu/foot.svg"
  29649. }
  29650. },
  29651. },
  29652. [
  29653. {
  29654. name: "Normal",
  29655. height: math.unit(1.7, "meters")
  29656. },
  29657. {
  29658. name: "Macro",
  29659. height: math.unit(131, "feet"),
  29660. default: true
  29661. },
  29662. {
  29663. name: "Megamacro",
  29664. height: math.unit(91440, "meters")
  29665. },
  29666. {
  29667. name: "Gigamacro",
  29668. height: math.unit(60960000, "meters")
  29669. },
  29670. {
  29671. name: "Teramacro",
  29672. height: math.unit(9144000000, "meters")
  29673. },
  29674. ]
  29675. ))
  29676. characterMakers.push(() => makeCharacter(
  29677. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29678. {
  29679. front: {
  29680. height: math.unit(7 + 1 / 12, "feet"),
  29681. weight: math.unit(250, "lb"),
  29682. name: "Front",
  29683. image: {
  29684. source: "./media/characters/joey/front.svg",
  29685. extra: 1791 / 1537,
  29686. bottom: 28 / 1816
  29687. }
  29688. },
  29689. },
  29690. [
  29691. {
  29692. name: "Micro",
  29693. height: math.unit(3, "inches")
  29694. },
  29695. {
  29696. name: "Normal",
  29697. height: math.unit(7 + 1 / 12, "feet"),
  29698. default: true
  29699. },
  29700. ]
  29701. ))
  29702. characterMakers.push(() => makeCharacter(
  29703. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29704. {
  29705. front: {
  29706. height: math.unit(165, "cm"),
  29707. weight: math.unit(140, "lb"),
  29708. name: "Front",
  29709. image: {
  29710. source: "./media/characters/sam-evans/front.svg",
  29711. extra: 3417 / 3230,
  29712. bottom: 41.3 / 3417
  29713. }
  29714. },
  29715. frontSixTails: {
  29716. height: math.unit(165, "cm"),
  29717. weight: math.unit(140, "lb"),
  29718. name: "Front-six-tails",
  29719. image: {
  29720. source: "./media/characters/sam-evans/front-six-tails.svg",
  29721. extra: 3417 / 3230,
  29722. bottom: 41.3 / 3417
  29723. }
  29724. },
  29725. back: {
  29726. height: math.unit(165, "cm"),
  29727. weight: math.unit(140, "lb"),
  29728. name: "Back",
  29729. image: {
  29730. source: "./media/characters/sam-evans/back.svg",
  29731. extra: 3227 / 3032,
  29732. bottom: 6.8 / 3234
  29733. }
  29734. },
  29735. face: {
  29736. height: math.unit(0.68, "feet"),
  29737. name: "Face",
  29738. image: {
  29739. source: "./media/characters/sam-evans/face.svg"
  29740. }
  29741. },
  29742. },
  29743. [
  29744. {
  29745. name: "Normal",
  29746. height: math.unit(165, "cm"),
  29747. default: true
  29748. },
  29749. {
  29750. name: "Macro",
  29751. height: math.unit(100, "meters")
  29752. },
  29753. {
  29754. name: "Macro+",
  29755. height: math.unit(800, "meters")
  29756. },
  29757. {
  29758. name: "Macro++",
  29759. height: math.unit(3, "km")
  29760. },
  29761. {
  29762. name: "Macro+++",
  29763. height: math.unit(30, "km")
  29764. },
  29765. ]
  29766. ))
  29767. characterMakers.push(() => makeCharacter(
  29768. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29769. {
  29770. front: {
  29771. height: math.unit(10, "feet"),
  29772. weight: math.unit(750, "lb"),
  29773. name: "Front",
  29774. image: {
  29775. source: "./media/characters/juliet-a/front.svg",
  29776. extra: 1766 / 1720,
  29777. bottom: 43 / 1809
  29778. }
  29779. },
  29780. back: {
  29781. height: math.unit(10, "feet"),
  29782. weight: math.unit(750, "lb"),
  29783. name: "Back",
  29784. image: {
  29785. source: "./media/characters/juliet-a/back.svg",
  29786. extra: 1781 / 1734,
  29787. bottom: 35 / 1810,
  29788. }
  29789. },
  29790. },
  29791. [
  29792. {
  29793. name: "Normal",
  29794. height: math.unit(10, "feet"),
  29795. default: true
  29796. },
  29797. {
  29798. name: "Dragon Form",
  29799. height: math.unit(250, "feet")
  29800. },
  29801. {
  29802. name: "Macro",
  29803. height: math.unit(1000, "feet")
  29804. },
  29805. {
  29806. name: "Megamacro",
  29807. height: math.unit(10000, "feet")
  29808. }
  29809. ]
  29810. ))
  29811. characterMakers.push(() => makeCharacter(
  29812. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29813. {
  29814. regular: {
  29815. height: math.unit(7 + 3 / 12, "feet"),
  29816. weight: math.unit(260, "lb"),
  29817. name: "Regular",
  29818. image: {
  29819. source: "./media/characters/wild/regular.svg",
  29820. extra: 97.45 / 92,
  29821. bottom: 6.8 / 104.3
  29822. }
  29823. },
  29824. biggums: {
  29825. height: math.unit(8 + 6 / 12, "feet"),
  29826. weight: math.unit(425, "lb"),
  29827. name: "Biggums",
  29828. image: {
  29829. source: "./media/characters/wild/biggums.svg",
  29830. extra: 97.45 / 92,
  29831. bottom: 7.5 / 132.34
  29832. }
  29833. },
  29834. mawRegular: {
  29835. height: math.unit(1.24, "feet"),
  29836. name: "Maw (Regular)",
  29837. image: {
  29838. source: "./media/characters/wild/maw.svg"
  29839. }
  29840. },
  29841. mawBiggums: {
  29842. height: math.unit(1.47, "feet"),
  29843. name: "Maw (Biggums)",
  29844. image: {
  29845. source: "./media/characters/wild/maw.svg"
  29846. }
  29847. },
  29848. },
  29849. [
  29850. {
  29851. name: "Normal",
  29852. height: math.unit(7 + 3 / 12, "feet"),
  29853. default: true
  29854. },
  29855. ]
  29856. ))
  29857. characterMakers.push(() => makeCharacter(
  29858. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29859. {
  29860. front: {
  29861. height: math.unit(2.5, "meters"),
  29862. weight: math.unit(200, "kg"),
  29863. name: "Front",
  29864. image: {
  29865. source: "./media/characters/vidar/front.svg",
  29866. extra: 2994 / 2795,
  29867. bottom: 56 / 3061
  29868. }
  29869. },
  29870. back: {
  29871. height: math.unit(2.5, "meters"),
  29872. weight: math.unit(200, "kg"),
  29873. name: "Back",
  29874. image: {
  29875. source: "./media/characters/vidar/back.svg",
  29876. extra: 3131 / 2928,
  29877. bottom: 13.5 / 3141.5
  29878. }
  29879. },
  29880. feral: {
  29881. height: math.unit(2.5, "meters"),
  29882. weight: math.unit(2000, "kg"),
  29883. name: "Feral",
  29884. image: {
  29885. source: "./media/characters/vidar/feral.svg",
  29886. extra: 2790 / 1765,
  29887. bottom: 6 / 2796
  29888. }
  29889. },
  29890. },
  29891. [
  29892. {
  29893. name: "Normal",
  29894. height: math.unit(2.5, "meters"),
  29895. default: true
  29896. },
  29897. {
  29898. name: "Macro",
  29899. height: math.unit(100, "meters")
  29900. },
  29901. ]
  29902. ))
  29903. characterMakers.push(() => makeCharacter(
  29904. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29905. {
  29906. front: {
  29907. height: math.unit(5 + 9 / 12, "feet"),
  29908. weight: math.unit(120, "lb"),
  29909. name: "Front",
  29910. image: {
  29911. source: "./media/characters/ash/front.svg",
  29912. extra: 2189 / 1961,
  29913. bottom: 5.2 / 2194
  29914. }
  29915. },
  29916. },
  29917. [
  29918. {
  29919. name: "Normal",
  29920. height: math.unit(5 + 9 / 12, "feet"),
  29921. default: true
  29922. },
  29923. ]
  29924. ))
  29925. characterMakers.push(() => makeCharacter(
  29926. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29927. {
  29928. front: {
  29929. height: math.unit(9, "feet"),
  29930. weight: math.unit(10000, "lb"),
  29931. name: "Front",
  29932. image: {
  29933. source: "./media/characters/gygabite/front.svg",
  29934. bottom: 31.7 / 537.8,
  29935. extra: 505 / 370
  29936. }
  29937. },
  29938. },
  29939. [
  29940. {
  29941. name: "Normal",
  29942. height: math.unit(9, "feet"),
  29943. default: true
  29944. },
  29945. ]
  29946. ))
  29947. characterMakers.push(() => makeCharacter(
  29948. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29949. {
  29950. front: {
  29951. height: math.unit(12, "feet"),
  29952. weight: math.unit(4000, "lb"),
  29953. name: "Front",
  29954. image: {
  29955. source: "./media/characters/p0tat0/front.svg",
  29956. extra: 1065 / 921,
  29957. bottom: 55.7 / 1121.25
  29958. }
  29959. },
  29960. },
  29961. [
  29962. {
  29963. name: "Normal",
  29964. height: math.unit(12, "feet"),
  29965. default: true
  29966. },
  29967. ]
  29968. ))
  29969. characterMakers.push(() => makeCharacter(
  29970. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29971. {
  29972. side: {
  29973. height: math.unit(6.5, "feet"),
  29974. weight: math.unit(800, "lb"),
  29975. name: "Side",
  29976. image: {
  29977. source: "./media/characters/dusk/side.svg",
  29978. extra: 615 / 373,
  29979. bottom: 53 / 664
  29980. }
  29981. },
  29982. sitting: {
  29983. height: math.unit(7, "feet"),
  29984. weight: math.unit(800, "lb"),
  29985. name: "Sitting",
  29986. image: {
  29987. source: "./media/characters/dusk/sitting.svg",
  29988. extra: 753 / 425,
  29989. bottom: 33 / 774
  29990. }
  29991. },
  29992. head: {
  29993. height: math.unit(6.1, "feet"),
  29994. name: "Head",
  29995. image: {
  29996. source: "./media/characters/dusk/head.svg"
  29997. }
  29998. },
  29999. },
  30000. [
  30001. {
  30002. name: "Normal",
  30003. height: math.unit(7, "feet"),
  30004. default: true
  30005. },
  30006. ]
  30007. ))
  30008. characterMakers.push(() => makeCharacter(
  30009. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30010. {
  30011. front: {
  30012. height: math.unit(15, "feet"),
  30013. weight: math.unit(7000, "lb"),
  30014. name: "Front",
  30015. image: {
  30016. source: "./media/characters/jay-direwolf/front.svg",
  30017. extra: 1810 / 1732,
  30018. bottom: 66 / 1892
  30019. }
  30020. },
  30021. },
  30022. [
  30023. {
  30024. name: "Normal",
  30025. height: math.unit(15, "feet"),
  30026. default: true
  30027. },
  30028. ]
  30029. ))
  30030. characterMakers.push(() => makeCharacter(
  30031. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30032. {
  30033. front: {
  30034. height: math.unit(4 + 9 / 12, "feet"),
  30035. weight: math.unit(130, "lb"),
  30036. name: "Front",
  30037. image: {
  30038. source: "./media/characters/anchovie/front.svg",
  30039. extra: 382 / 350,
  30040. bottom: 25 / 409
  30041. }
  30042. },
  30043. back: {
  30044. height: math.unit(4 + 9 / 12, "feet"),
  30045. weight: math.unit(130, "lb"),
  30046. name: "Back",
  30047. image: {
  30048. source: "./media/characters/anchovie/back.svg",
  30049. extra: 385 / 352,
  30050. bottom: 16.6 / 402
  30051. }
  30052. },
  30053. frontDressed: {
  30054. height: math.unit(4 + 9 / 12, "feet"),
  30055. weight: math.unit(130, "lb"),
  30056. name: "Front (Dressed)",
  30057. image: {
  30058. source: "./media/characters/anchovie/front-dressed.svg",
  30059. extra: 382 / 350,
  30060. bottom: 25 / 409
  30061. }
  30062. },
  30063. backDressed: {
  30064. height: math.unit(4 + 9 / 12, "feet"),
  30065. weight: math.unit(130, "lb"),
  30066. name: "Back (Dressed)",
  30067. image: {
  30068. source: "./media/characters/anchovie/back-dressed.svg",
  30069. extra: 385 / 352,
  30070. bottom: 16.6 / 402
  30071. }
  30072. },
  30073. },
  30074. [
  30075. {
  30076. name: "Micro",
  30077. height: math.unit(6.4, "inches")
  30078. },
  30079. {
  30080. name: "Normal",
  30081. height: math.unit(4 + 9 / 12, "feet"),
  30082. default: true
  30083. },
  30084. ]
  30085. ))
  30086. characterMakers.push(() => makeCharacter(
  30087. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30088. {
  30089. front: {
  30090. height: math.unit(2, "meters"),
  30091. weight: math.unit(180, "lb"),
  30092. name: "Front",
  30093. image: {
  30094. source: "./media/characters/acidrenamon/front.svg",
  30095. extra: 987 / 890,
  30096. bottom: 22.8 / 1009
  30097. }
  30098. },
  30099. back: {
  30100. height: math.unit(2, "meters"),
  30101. weight: math.unit(180, "lb"),
  30102. name: "Back",
  30103. image: {
  30104. source: "./media/characters/acidrenamon/back.svg",
  30105. extra: 983 / 891,
  30106. bottom: 8.4 / 992
  30107. }
  30108. },
  30109. head: {
  30110. height: math.unit(1.92, "feet"),
  30111. name: "Head",
  30112. image: {
  30113. source: "./media/characters/acidrenamon/head.svg"
  30114. }
  30115. },
  30116. rump: {
  30117. height: math.unit(1.72, "feet"),
  30118. name: "Rump",
  30119. image: {
  30120. source: "./media/characters/acidrenamon/rump.svg"
  30121. }
  30122. },
  30123. tail: {
  30124. height: math.unit(4.2, "feet"),
  30125. name: "Tail",
  30126. image: {
  30127. source: "./media/characters/acidrenamon/tail.svg"
  30128. }
  30129. },
  30130. },
  30131. [
  30132. {
  30133. name: "Normal",
  30134. height: math.unit(2, "meters"),
  30135. default: true
  30136. },
  30137. {
  30138. name: "Minimacro",
  30139. height: math.unit(7, "meters")
  30140. },
  30141. {
  30142. name: "Macro",
  30143. height: math.unit(200, "meters")
  30144. },
  30145. {
  30146. name: "Gigamacro",
  30147. height: math.unit(0.2, "earths")
  30148. },
  30149. ]
  30150. ))
  30151. characterMakers.push(() => makeCharacter(
  30152. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30153. {
  30154. front: {
  30155. height: math.unit(152, "feet"),
  30156. name: "Front",
  30157. image: {
  30158. source: "./media/characters/kenzie-lee/front.svg",
  30159. extra: 1869/1774,
  30160. bottom: 128/1997
  30161. }
  30162. },
  30163. side: {
  30164. height: math.unit(86, "feet"),
  30165. name: "Side",
  30166. image: {
  30167. source: "./media/characters/kenzie-lee/side.svg",
  30168. extra: 930/815,
  30169. bottom: 177/1107
  30170. }
  30171. },
  30172. paw: {
  30173. height: math.unit(15, "feet"),
  30174. name: "Paw",
  30175. image: {
  30176. source: "./media/characters/kenzie-lee/paw.svg"
  30177. }
  30178. },
  30179. },
  30180. [
  30181. {
  30182. name: "Kenzie Flea",
  30183. height: math.unit(2, "mm"),
  30184. default: true
  30185. },
  30186. {
  30187. name: "Micro",
  30188. height: math.unit(2, "inches")
  30189. },
  30190. {
  30191. name: "Normal",
  30192. height: math.unit(152, "feet")
  30193. },
  30194. {
  30195. name: "Megamacro",
  30196. height: math.unit(7, "miles")
  30197. },
  30198. {
  30199. name: "Gigamacro",
  30200. height: math.unit(8000, "miles")
  30201. },
  30202. ]
  30203. ))
  30204. characterMakers.push(() => makeCharacter(
  30205. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30206. {
  30207. front: {
  30208. height: math.unit(6, "feet"),
  30209. name: "Front",
  30210. image: {
  30211. source: "./media/characters/withers/front.svg",
  30212. extra: 1935/1760,
  30213. bottom: 72/2007
  30214. }
  30215. },
  30216. back: {
  30217. height: math.unit(6, "feet"),
  30218. name: "Back",
  30219. image: {
  30220. source: "./media/characters/withers/back.svg",
  30221. extra: 1944/1792,
  30222. bottom: 12/1956
  30223. }
  30224. },
  30225. dressed: {
  30226. height: math.unit(6, "feet"),
  30227. name: "Dressed",
  30228. image: {
  30229. source: "./media/characters/withers/dressed.svg",
  30230. extra: 1937/1765,
  30231. bottom: 73/2010
  30232. }
  30233. },
  30234. phase1: {
  30235. height: math.unit(1.1, "feet"),
  30236. name: "Phase 1",
  30237. image: {
  30238. source: "./media/characters/withers/phase-1.svg",
  30239. extra: 1885/1232,
  30240. bottom: 0/1885
  30241. }
  30242. },
  30243. phase2: {
  30244. height: math.unit(1.05, "feet"),
  30245. name: "Phase 2",
  30246. image: {
  30247. source: "./media/characters/withers/phase-2.svg",
  30248. extra: 1792/1090,
  30249. bottom: 0/1792
  30250. }
  30251. },
  30252. partyWipe: {
  30253. height: math.unit(1.1, "feet"),
  30254. name: "Party Wipe",
  30255. image: {
  30256. source: "./media/characters/withers/party-wipe.svg",
  30257. extra: 1864/1207,
  30258. bottom: 0/1864
  30259. }
  30260. },
  30261. },
  30262. [
  30263. {
  30264. name: "Macro",
  30265. height: math.unit(167, "feet"),
  30266. default: true
  30267. },
  30268. {
  30269. name: "Megamacro",
  30270. height: math.unit(15, "miles")
  30271. }
  30272. ]
  30273. ))
  30274. characterMakers.push(() => makeCharacter(
  30275. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30276. {
  30277. front: {
  30278. height: math.unit(6 + 7 / 12, "feet"),
  30279. weight: math.unit(250, "lb"),
  30280. name: "Front",
  30281. image: {
  30282. source: "./media/characters/nemoskii/front.svg",
  30283. extra: 2270 / 1734,
  30284. bottom: 86 / 2354
  30285. }
  30286. },
  30287. back: {
  30288. height: math.unit(6 + 7 / 12, "feet"),
  30289. weight: math.unit(250, "lb"),
  30290. name: "Back",
  30291. image: {
  30292. source: "./media/characters/nemoskii/back.svg",
  30293. extra: 1845 / 1788,
  30294. bottom: 10.5 / 1852
  30295. }
  30296. },
  30297. head: {
  30298. height: math.unit(1.31, "feet"),
  30299. name: "Head",
  30300. image: {
  30301. source: "./media/characters/nemoskii/head.svg"
  30302. }
  30303. },
  30304. },
  30305. [
  30306. {
  30307. name: "Micro",
  30308. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30309. },
  30310. {
  30311. name: "Normal",
  30312. height: math.unit(6 + 7 / 12, "feet"),
  30313. default: true
  30314. },
  30315. {
  30316. name: "Macro",
  30317. height: math.unit((6 + 7 / 12) * 150, "feet")
  30318. },
  30319. {
  30320. name: "Macro+",
  30321. height: math.unit((6 + 7 / 12) * 500, "feet")
  30322. },
  30323. {
  30324. name: "Megamacro",
  30325. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30326. },
  30327. ]
  30328. ))
  30329. characterMakers.push(() => makeCharacter(
  30330. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30331. {
  30332. front: {
  30333. height: math.unit(1, "mile"),
  30334. weight: math.unit(265261.9, "lb"),
  30335. name: "Front",
  30336. image: {
  30337. source: "./media/characters/shui/front.svg",
  30338. extra: 1633 / 1564,
  30339. bottom: 91.5 / 1726
  30340. }
  30341. },
  30342. },
  30343. [
  30344. {
  30345. name: "Macro",
  30346. height: math.unit(1, "mile"),
  30347. default: true
  30348. },
  30349. ]
  30350. ))
  30351. characterMakers.push(() => makeCharacter(
  30352. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30353. {
  30354. front: {
  30355. height: math.unit(12 + 6 / 12, "feet"),
  30356. weight: math.unit(1342, "lb"),
  30357. name: "Front",
  30358. image: {
  30359. source: "./media/characters/arokh-takakura/front.svg",
  30360. extra: 1089 / 1043,
  30361. bottom: 77.4 / 1176.7
  30362. }
  30363. },
  30364. back: {
  30365. height: math.unit(12 + 6 / 12, "feet"),
  30366. weight: math.unit(1342, "lb"),
  30367. name: "Back",
  30368. image: {
  30369. source: "./media/characters/arokh-takakura/back.svg",
  30370. extra: 1046 / 1019,
  30371. bottom: 102 / 1150
  30372. }
  30373. },
  30374. },
  30375. [
  30376. {
  30377. name: "Big",
  30378. height: math.unit(12 + 6 / 12, "feet"),
  30379. default: true
  30380. },
  30381. ]
  30382. ))
  30383. characterMakers.push(() => makeCharacter(
  30384. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30385. {
  30386. front: {
  30387. height: math.unit(5 + 6 / 12, "feet"),
  30388. weight: math.unit(150, "lb"),
  30389. name: "Front",
  30390. image: {
  30391. source: "./media/characters/theo/front.svg",
  30392. extra: 1184 / 1131,
  30393. bottom: 7.4 / 1191
  30394. }
  30395. },
  30396. },
  30397. [
  30398. {
  30399. name: "Micro",
  30400. height: math.unit(5, "inches")
  30401. },
  30402. {
  30403. name: "Normal",
  30404. height: math.unit(5 + 6 / 12, "feet"),
  30405. default: true
  30406. },
  30407. ]
  30408. ))
  30409. characterMakers.push(() => makeCharacter(
  30410. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30411. {
  30412. front: {
  30413. height: math.unit(5 + 9 / 12, "feet"),
  30414. weight: math.unit(130, "lb"),
  30415. name: "Front",
  30416. image: {
  30417. source: "./media/characters/cecelia-swift/front.svg",
  30418. extra: 502 / 484,
  30419. bottom: 23 / 523
  30420. }
  30421. },
  30422. back: {
  30423. height: math.unit(5 + 9 / 12, "feet"),
  30424. weight: math.unit(130, "lb"),
  30425. name: "Back",
  30426. image: {
  30427. source: "./media/characters/cecelia-swift/back.svg",
  30428. extra: 499 / 485,
  30429. bottom: 12 / 511
  30430. }
  30431. },
  30432. head: {
  30433. height: math.unit(0.90, "feet"),
  30434. name: "Head",
  30435. image: {
  30436. source: "./media/characters/cecelia-swift/head.svg"
  30437. }
  30438. },
  30439. rump: {
  30440. height: math.unit(1.75, "feet"),
  30441. name: "Rump",
  30442. image: {
  30443. source: "./media/characters/cecelia-swift/rump.svg"
  30444. }
  30445. },
  30446. },
  30447. [
  30448. {
  30449. name: "Normal",
  30450. height: math.unit(5 + 9 / 12, "feet"),
  30451. default: true
  30452. },
  30453. {
  30454. name: "Big",
  30455. height: math.unit(50, "feet")
  30456. },
  30457. {
  30458. name: "Macro",
  30459. height: math.unit(100, "feet")
  30460. },
  30461. {
  30462. name: "Macro+",
  30463. height: math.unit(500, "feet")
  30464. },
  30465. {
  30466. name: "Macro++",
  30467. height: math.unit(1000, "feet")
  30468. },
  30469. ]
  30470. ))
  30471. characterMakers.push(() => makeCharacter(
  30472. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30473. {
  30474. front: {
  30475. height: math.unit(6, "feet"),
  30476. weight: math.unit(150, "lb"),
  30477. name: "Front",
  30478. image: {
  30479. source: "./media/characters/kaunan/front.svg",
  30480. extra: 2890 / 2523,
  30481. bottom: 49 / 2939
  30482. }
  30483. },
  30484. },
  30485. [
  30486. {
  30487. name: "Macro",
  30488. height: math.unit(150, "feet"),
  30489. default: true
  30490. },
  30491. ]
  30492. ))
  30493. characterMakers.push(() => makeCharacter(
  30494. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30495. {
  30496. dressed: {
  30497. height: math.unit(175, "cm"),
  30498. weight: math.unit(60, "kg"),
  30499. name: "Dressed",
  30500. image: {
  30501. source: "./media/characters/fei/dressed.svg",
  30502. extra: 1402/1278,
  30503. bottom: 27/1429
  30504. }
  30505. },
  30506. nude: {
  30507. height: math.unit(175, "cm"),
  30508. weight: math.unit(60, "kg"),
  30509. name: "Nude",
  30510. image: {
  30511. source: "./media/characters/fei/nude.svg",
  30512. extra: 1402/1278,
  30513. bottom: 27/1429
  30514. }
  30515. },
  30516. heels: {
  30517. height: math.unit(0.466, "feet"),
  30518. name: "Heels",
  30519. image: {
  30520. source: "./media/characters/fei/heels.svg",
  30521. extra: 156/152,
  30522. bottom: 28/184
  30523. }
  30524. },
  30525. },
  30526. [
  30527. {
  30528. name: "Mortal",
  30529. height: math.unit(175, "cm")
  30530. },
  30531. {
  30532. name: "Normal",
  30533. height: math.unit(3500, "m")
  30534. },
  30535. {
  30536. name: "Stroll",
  30537. height: math.unit(18.4, "km"),
  30538. default: true
  30539. },
  30540. {
  30541. name: "Showoff",
  30542. height: math.unit(175, "km")
  30543. },
  30544. ]
  30545. ))
  30546. characterMakers.push(() => makeCharacter(
  30547. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30548. {
  30549. front: {
  30550. height: math.unit(7, "feet"),
  30551. weight: math.unit(1000, "kg"),
  30552. name: "Front",
  30553. image: {
  30554. source: "./media/characters/edrax/front.svg",
  30555. extra: 2838 / 2550,
  30556. bottom: 130 / 2968
  30557. }
  30558. },
  30559. },
  30560. [
  30561. {
  30562. name: "Small",
  30563. height: math.unit(7, "feet")
  30564. },
  30565. {
  30566. name: "Normal",
  30567. height: math.unit(1500, "meters")
  30568. },
  30569. {
  30570. name: "Mega",
  30571. height: math.unit(12000000, "km"),
  30572. default: true
  30573. },
  30574. {
  30575. name: "Megamacro",
  30576. height: math.unit(10600000, "lightyears")
  30577. },
  30578. {
  30579. name: "Hypermacro",
  30580. height: math.unit(256, "yottameters")
  30581. },
  30582. ]
  30583. ))
  30584. characterMakers.push(() => makeCharacter(
  30585. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30586. {
  30587. front: {
  30588. height: math.unit(10, "feet"),
  30589. weight: math.unit(750, "lb"),
  30590. name: "Front",
  30591. image: {
  30592. source: "./media/characters/clove/front.svg",
  30593. extra: 1918/1751,
  30594. bottom: 52/1970
  30595. }
  30596. },
  30597. back: {
  30598. height: math.unit(10, "feet"),
  30599. weight: math.unit(750, "lb"),
  30600. name: "Back",
  30601. image: {
  30602. source: "./media/characters/clove/back.svg",
  30603. extra: 1912/1747,
  30604. bottom: 50/1962
  30605. }
  30606. },
  30607. },
  30608. [
  30609. {
  30610. name: "Normal",
  30611. height: math.unit(10, "feet"),
  30612. default: true
  30613. },
  30614. ]
  30615. ))
  30616. characterMakers.push(() => makeCharacter(
  30617. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30618. {
  30619. front: {
  30620. height: math.unit(4, "feet"),
  30621. weight: math.unit(50, "lb"),
  30622. name: "Front",
  30623. image: {
  30624. source: "./media/characters/alex-rabbit/front.svg",
  30625. extra: 507 / 458,
  30626. bottom: 18.5 / 527
  30627. }
  30628. },
  30629. back: {
  30630. height: math.unit(4, "feet"),
  30631. weight: math.unit(50, "lb"),
  30632. name: "Back",
  30633. image: {
  30634. source: "./media/characters/alex-rabbit/back.svg",
  30635. extra: 502 / 460,
  30636. bottom: 18.9 / 521
  30637. }
  30638. },
  30639. },
  30640. [
  30641. {
  30642. name: "Normal",
  30643. height: math.unit(4, "feet"),
  30644. default: true
  30645. },
  30646. ]
  30647. ))
  30648. characterMakers.push(() => makeCharacter(
  30649. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30650. {
  30651. front: {
  30652. height: math.unit(1 + 3 / 12, "feet"),
  30653. weight: math.unit(80, "lb"),
  30654. name: "Front",
  30655. image: {
  30656. source: "./media/characters/zander-rose/front.svg",
  30657. extra: 916 / 797,
  30658. bottom: 17 / 933
  30659. }
  30660. },
  30661. back: {
  30662. height: math.unit(1 + 3 / 12, "feet"),
  30663. weight: math.unit(80, "lb"),
  30664. name: "Back",
  30665. image: {
  30666. source: "./media/characters/zander-rose/back.svg",
  30667. extra: 903 / 779,
  30668. bottom: 31 / 934
  30669. }
  30670. },
  30671. },
  30672. [
  30673. {
  30674. name: "Normal",
  30675. height: math.unit(1 + 3 / 12, "feet"),
  30676. default: true
  30677. },
  30678. ]
  30679. ))
  30680. characterMakers.push(() => makeCharacter(
  30681. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30682. {
  30683. anthro: {
  30684. height: math.unit(6, "feet"),
  30685. weight: math.unit(150, "lb"),
  30686. name: "Anthro",
  30687. image: {
  30688. source: "./media/characters/razz/anthro.svg",
  30689. extra: 1437 / 1343,
  30690. bottom: 48 / 1485
  30691. }
  30692. },
  30693. feral: {
  30694. height: math.unit(6, "feet"),
  30695. weight: math.unit(150, "lb"),
  30696. name: "Feral",
  30697. image: {
  30698. source: "./media/characters/razz/feral.svg",
  30699. extra: 2569 / 1385,
  30700. bottom: 95 / 2664
  30701. }
  30702. },
  30703. },
  30704. [
  30705. {
  30706. name: "Normal",
  30707. height: math.unit(6, "feet"),
  30708. default: true
  30709. },
  30710. ]
  30711. ))
  30712. characterMakers.push(() => makeCharacter(
  30713. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30714. {
  30715. front: {
  30716. height: math.unit(9 + 4 / 12, "feet"),
  30717. weight: math.unit(500, "lb"),
  30718. name: "Front",
  30719. image: {
  30720. source: "./media/characters/morrigan/front.svg",
  30721. extra: 2707 / 2579,
  30722. bottom: 156 / 2863
  30723. }
  30724. },
  30725. },
  30726. [
  30727. {
  30728. name: "Normal",
  30729. height: math.unit(9 + 4 / 12, "feet"),
  30730. default: true
  30731. },
  30732. ]
  30733. ))
  30734. characterMakers.push(() => makeCharacter(
  30735. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30736. {
  30737. front: {
  30738. height: math.unit(5, "stories"),
  30739. weight: math.unit(4000, "lb"),
  30740. name: "Front",
  30741. image: {
  30742. source: "./media/characters/jenene/front.svg",
  30743. extra: 1780 / 1710,
  30744. bottom: 57 / 1837
  30745. }
  30746. },
  30747. },
  30748. [
  30749. {
  30750. name: "Normal",
  30751. height: math.unit(5, "stories"),
  30752. default: true
  30753. },
  30754. ]
  30755. ))
  30756. characterMakers.push(() => makeCharacter(
  30757. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30758. {
  30759. taurSfw: {
  30760. height: math.unit(10, "meters"),
  30761. weight: math.unit(17500, "kg"),
  30762. name: "Taur",
  30763. image: {
  30764. source: "./media/characters/faey/taur-sfw.svg",
  30765. extra: 1200 / 968,
  30766. bottom: 41 / 1241
  30767. }
  30768. },
  30769. chestmaw: {
  30770. height: math.unit(2.01, "meters"),
  30771. name: "Chestmaw",
  30772. image: {
  30773. source: "./media/characters/faey/chestmaw.svg"
  30774. }
  30775. },
  30776. foot: {
  30777. height: math.unit(2.43, "meters"),
  30778. name: "Foot",
  30779. image: {
  30780. source: "./media/characters/faey/foot.svg"
  30781. }
  30782. },
  30783. jaws: {
  30784. height: math.unit(1.66, "meters"),
  30785. name: "Jaws",
  30786. image: {
  30787. source: "./media/characters/faey/jaws.svg"
  30788. }
  30789. },
  30790. tongues: {
  30791. height: math.unit(2.01, "meters"),
  30792. name: "Tongues",
  30793. image: {
  30794. source: "./media/characters/faey/tongues.svg"
  30795. }
  30796. },
  30797. },
  30798. [
  30799. {
  30800. name: "Small",
  30801. height: math.unit(10, "meters"),
  30802. default: true
  30803. },
  30804. {
  30805. name: "Big",
  30806. height: math.unit(500000, "km")
  30807. },
  30808. ]
  30809. ))
  30810. characterMakers.push(() => makeCharacter(
  30811. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30812. {
  30813. front: {
  30814. height: math.unit(7, "feet"),
  30815. weight: math.unit(275, "lb"),
  30816. name: "Front",
  30817. image: {
  30818. source: "./media/characters/roku/front.svg",
  30819. extra: 903 / 878,
  30820. bottom: 37 / 940
  30821. }
  30822. },
  30823. },
  30824. [
  30825. {
  30826. name: "Normal",
  30827. height: math.unit(7, "feet"),
  30828. default: true
  30829. },
  30830. {
  30831. name: "Macro",
  30832. height: math.unit(500, "feet")
  30833. },
  30834. {
  30835. name: "Megamacro",
  30836. height: math.unit(200, "miles")
  30837. },
  30838. ]
  30839. ))
  30840. characterMakers.push(() => makeCharacter(
  30841. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30842. {
  30843. front: {
  30844. height: math.unit(6 + 2 / 12, "feet"),
  30845. weight: math.unit(150, "lb"),
  30846. name: "Front",
  30847. image: {
  30848. source: "./media/characters/lira/front.svg",
  30849. extra: 1727 / 1605,
  30850. bottom: 26 / 1753
  30851. }
  30852. },
  30853. back: {
  30854. height: math.unit(6 + 2 / 12, "feet"),
  30855. weight: math.unit(150, "lb"),
  30856. name: "Back",
  30857. image: {
  30858. source: "./media/characters/lira/back.svg",
  30859. extra: 1713/1621,
  30860. bottom: 20/1733
  30861. }
  30862. },
  30863. hand: {
  30864. height: math.unit(0.75, "feet"),
  30865. name: "Hand",
  30866. image: {
  30867. source: "./media/characters/lira/hand.svg"
  30868. }
  30869. },
  30870. maw: {
  30871. height: math.unit(0.65, "feet"),
  30872. name: "Maw",
  30873. image: {
  30874. source: "./media/characters/lira/maw.svg"
  30875. }
  30876. },
  30877. pawDigi: {
  30878. height: math.unit(1.6, "feet"),
  30879. name: "Paw Digi",
  30880. image: {
  30881. source: "./media/characters/lira/paw-digi.svg"
  30882. }
  30883. },
  30884. pawPlanti: {
  30885. height: math.unit(1.4, "feet"),
  30886. name: "Paw Planti",
  30887. image: {
  30888. source: "./media/characters/lira/paw-planti.svg"
  30889. }
  30890. },
  30891. },
  30892. [
  30893. {
  30894. name: "Normal",
  30895. height: math.unit(6 + 2 / 12, "feet"),
  30896. default: true
  30897. },
  30898. {
  30899. name: "Macro",
  30900. height: math.unit(100, "feet")
  30901. },
  30902. {
  30903. name: "Macro²",
  30904. height: math.unit(1600, "feet")
  30905. },
  30906. {
  30907. name: "Planetary",
  30908. height: math.unit(20, "earths")
  30909. },
  30910. ]
  30911. ))
  30912. characterMakers.push(() => makeCharacter(
  30913. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30914. {
  30915. front: {
  30916. height: math.unit(6, "feet"),
  30917. weight: math.unit(150, "lb"),
  30918. name: "Front",
  30919. image: {
  30920. source: "./media/characters/hadjet/front.svg",
  30921. extra: 1480 / 1346,
  30922. bottom: 26 / 1506
  30923. }
  30924. },
  30925. frontNsfw: {
  30926. height: math.unit(6, "feet"),
  30927. weight: math.unit(150, "lb"),
  30928. name: "Front (NSFW)",
  30929. image: {
  30930. source: "./media/characters/hadjet/front-nsfw.svg",
  30931. extra: 1440 / 1358,
  30932. bottom: 52 / 1492
  30933. }
  30934. },
  30935. },
  30936. [
  30937. {
  30938. name: "Macro",
  30939. height: math.unit(10, "stories"),
  30940. default: true
  30941. },
  30942. {
  30943. name: "Megamacro",
  30944. height: math.unit(1.5, "miles")
  30945. },
  30946. {
  30947. name: "Megamacro+",
  30948. height: math.unit(5, "miles")
  30949. },
  30950. ]
  30951. ))
  30952. characterMakers.push(() => makeCharacter(
  30953. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30954. {
  30955. side: {
  30956. height: math.unit(106, "feet"),
  30957. weight: math.unit(500, "tonnes"),
  30958. name: "Side",
  30959. image: {
  30960. source: "./media/characters/kodran/side.svg",
  30961. extra: 553 / 480,
  30962. bottom: 33 / 586
  30963. }
  30964. },
  30965. front: {
  30966. height: math.unit(132, "feet"),
  30967. weight: math.unit(500, "tonnes"),
  30968. name: "Front",
  30969. image: {
  30970. source: "./media/characters/kodran/front.svg",
  30971. extra: 667 / 643,
  30972. bottom: 42 / 709
  30973. }
  30974. },
  30975. flying: {
  30976. height: math.unit(350, "feet"),
  30977. weight: math.unit(500, "tonnes"),
  30978. name: "Flying",
  30979. image: {
  30980. source: "./media/characters/kodran/flying.svg"
  30981. }
  30982. },
  30983. foot: {
  30984. height: math.unit(33, "feet"),
  30985. name: "Foot",
  30986. image: {
  30987. source: "./media/characters/kodran/foot.svg"
  30988. }
  30989. },
  30990. footFront: {
  30991. height: math.unit(19, "feet"),
  30992. name: "Foot (Front)",
  30993. image: {
  30994. source: "./media/characters/kodran/foot-front.svg",
  30995. extra: 261 / 261,
  30996. bottom: 91 / 352
  30997. }
  30998. },
  30999. headFront: {
  31000. height: math.unit(53, "feet"),
  31001. name: "Head (Front)",
  31002. image: {
  31003. source: "./media/characters/kodran/head-front.svg"
  31004. }
  31005. },
  31006. headSide: {
  31007. height: math.unit(65, "feet"),
  31008. name: "Head (Side)",
  31009. image: {
  31010. source: "./media/characters/kodran/head-side.svg"
  31011. }
  31012. },
  31013. throat: {
  31014. height: math.unit(79, "feet"),
  31015. name: "Throat",
  31016. image: {
  31017. source: "./media/characters/kodran/throat.svg"
  31018. }
  31019. },
  31020. },
  31021. [
  31022. {
  31023. name: "Large",
  31024. height: math.unit(106, "feet"),
  31025. default: true
  31026. },
  31027. ]
  31028. ))
  31029. characterMakers.push(() => makeCharacter(
  31030. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31031. {
  31032. side: {
  31033. height: math.unit(11, "feet"),
  31034. weight: math.unit(150, "lb"),
  31035. name: "Side",
  31036. image: {
  31037. source: "./media/characters/pyxaron/side.svg",
  31038. extra: 305 / 195,
  31039. bottom: 17 / 322
  31040. }
  31041. },
  31042. },
  31043. [
  31044. {
  31045. name: "Normal",
  31046. height: math.unit(11, "feet"),
  31047. default: true
  31048. },
  31049. ]
  31050. ))
  31051. characterMakers.push(() => makeCharacter(
  31052. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31053. {
  31054. front: {
  31055. height: math.unit(6, "feet"),
  31056. weight: math.unit(150, "lb"),
  31057. name: "Front",
  31058. image: {
  31059. source: "./media/characters/meep/front.svg",
  31060. extra: 88 / 80,
  31061. bottom: 6 / 94
  31062. }
  31063. },
  31064. },
  31065. [
  31066. {
  31067. name: "Fun Sized",
  31068. height: math.unit(2, "inches"),
  31069. default: true
  31070. },
  31071. {
  31072. name: "Friend Sized",
  31073. height: math.unit(8, "inches")
  31074. },
  31075. ]
  31076. ))
  31077. characterMakers.push(() => makeCharacter(
  31078. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31079. {
  31080. front: {
  31081. height: math.unit(15, "feet"),
  31082. weight: math.unit(2500, "lb"),
  31083. name: "Front",
  31084. image: {
  31085. source: "./media/characters/holly-rabbit/front.svg",
  31086. extra: 1433 / 1233,
  31087. bottom: 125 / 1558
  31088. }
  31089. },
  31090. dick: {
  31091. height: math.unit(4.6, "feet"),
  31092. name: "Dick",
  31093. image: {
  31094. source: "./media/characters/holly-rabbit/dick.svg"
  31095. }
  31096. },
  31097. },
  31098. [
  31099. {
  31100. name: "Normal",
  31101. height: math.unit(15, "feet"),
  31102. default: true
  31103. },
  31104. {
  31105. name: "Macro",
  31106. height: math.unit(250, "feet")
  31107. },
  31108. {
  31109. name: "Macro+",
  31110. height: math.unit(2500, "feet")
  31111. },
  31112. ]
  31113. ))
  31114. characterMakers.push(() => makeCharacter(
  31115. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31116. {
  31117. front: {
  31118. height: math.unit(3.02, "meters"),
  31119. weight: math.unit(500, "kg"),
  31120. name: "Front",
  31121. image: {
  31122. source: "./media/characters/drena/front.svg",
  31123. extra: 282 / 243,
  31124. bottom: 8 / 290
  31125. }
  31126. },
  31127. side: {
  31128. height: math.unit(3.02, "meters"),
  31129. weight: math.unit(500, "kg"),
  31130. name: "Side",
  31131. image: {
  31132. source: "./media/characters/drena/side.svg",
  31133. extra: 280 / 245,
  31134. bottom: 10 / 290
  31135. }
  31136. },
  31137. back: {
  31138. height: math.unit(3.02, "meters"),
  31139. weight: math.unit(500, "kg"),
  31140. name: "Back",
  31141. image: {
  31142. source: "./media/characters/drena/back.svg",
  31143. extra: 278 / 243,
  31144. bottom: 2 / 280
  31145. }
  31146. },
  31147. foot: {
  31148. height: math.unit(0.75, "meters"),
  31149. name: "Foot",
  31150. image: {
  31151. source: "./media/characters/drena/foot.svg"
  31152. }
  31153. },
  31154. maw: {
  31155. height: math.unit(0.82, "meters"),
  31156. name: "Maw",
  31157. image: {
  31158. source: "./media/characters/drena/maw.svg"
  31159. }
  31160. },
  31161. eating: {
  31162. height: math.unit(0.75, "meters"),
  31163. name: "Eating",
  31164. image: {
  31165. source: "./media/characters/drena/eating.svg"
  31166. }
  31167. },
  31168. rump: {
  31169. height: math.unit(0.93, "meters"),
  31170. name: "Rump",
  31171. image: {
  31172. source: "./media/characters/drena/rump.svg"
  31173. }
  31174. },
  31175. },
  31176. [
  31177. {
  31178. name: "Normal",
  31179. height: math.unit(3.02, "meters"),
  31180. default: true
  31181. },
  31182. ]
  31183. ))
  31184. characterMakers.push(() => makeCharacter(
  31185. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31186. {
  31187. front: {
  31188. height: math.unit(6 + 4 / 12, "feet"),
  31189. weight: math.unit(250, "lb"),
  31190. name: "Front",
  31191. image: {
  31192. source: "./media/characters/remmyzilla/front.svg",
  31193. extra: 4033 / 3588,
  31194. bottom: 123 / 4156
  31195. }
  31196. },
  31197. back: {
  31198. height: math.unit(6 + 4 / 12, "feet"),
  31199. weight: math.unit(250, "lb"),
  31200. name: "Back",
  31201. image: {
  31202. source: "./media/characters/remmyzilla/back.svg",
  31203. extra: 1696/1602,
  31204. bottom: 63/1759
  31205. }
  31206. },
  31207. paw: {
  31208. height: math.unit(1.73, "feet"),
  31209. name: "Paw",
  31210. image: {
  31211. source: "./media/characters/remmyzilla/paw.svg"
  31212. },
  31213. extraAttributes: {
  31214. "toeSize": {
  31215. name: "Toe Size",
  31216. power: 2,
  31217. type: "area",
  31218. base: math.unit(0.0035, "m^2")
  31219. },
  31220. "padSize": {
  31221. name: "Pad Size",
  31222. power: 2,
  31223. type: "area",
  31224. base: math.unit(0.015, "m^2")
  31225. },
  31226. "pawsize": {
  31227. name: "Paw Size",
  31228. power: 2,
  31229. type: "area",
  31230. base: math.unit(0.072, "m^2")
  31231. },
  31232. }
  31233. },
  31234. maw: {
  31235. height: math.unit(1.73, "feet"),
  31236. name: "Maw",
  31237. image: {
  31238. source: "./media/characters/remmyzilla/maw.svg"
  31239. }
  31240. },
  31241. },
  31242. [
  31243. {
  31244. name: "Normal",
  31245. height: math.unit(6 + 4 / 12, "feet")
  31246. },
  31247. {
  31248. name: "Minimacro",
  31249. height: math.unit(12 + 8 / 12, "feet")
  31250. },
  31251. {
  31252. name: "Normal",
  31253. height: math.unit(640, "feet"),
  31254. default: true
  31255. },
  31256. {
  31257. name: "Megamacro",
  31258. height: math.unit(6400, "feet")
  31259. },
  31260. {
  31261. name: "Gigamacro",
  31262. height: math.unit(64000, "miles")
  31263. },
  31264. ]
  31265. ))
  31266. characterMakers.push(() => makeCharacter(
  31267. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31268. {
  31269. front: {
  31270. height: math.unit(2.5, "meters"),
  31271. weight: math.unit(300, "lb"),
  31272. name: "Front",
  31273. image: {
  31274. source: "./media/characters/lawrence/front.svg",
  31275. extra: 357 / 335,
  31276. bottom: 30 / 387
  31277. }
  31278. },
  31279. back: {
  31280. height: math.unit(2.5, "meters"),
  31281. weight: math.unit(300, "lb"),
  31282. name: "Back",
  31283. image: {
  31284. source: "./media/characters/lawrence/back.svg",
  31285. extra: 357 / 338,
  31286. bottom: 16 / 373
  31287. }
  31288. },
  31289. head: {
  31290. height: math.unit(0.9, "meter"),
  31291. name: "Head",
  31292. image: {
  31293. source: "./media/characters/lawrence/head.svg"
  31294. }
  31295. },
  31296. maw: {
  31297. height: math.unit(0.7, "meter"),
  31298. name: "Maw",
  31299. image: {
  31300. source: "./media/characters/lawrence/maw.svg"
  31301. }
  31302. },
  31303. footBottom: {
  31304. height: math.unit(0.5, "meter"),
  31305. name: "Foot (Bottom)",
  31306. image: {
  31307. source: "./media/characters/lawrence/foot-bottom.svg"
  31308. }
  31309. },
  31310. footTop: {
  31311. height: math.unit(0.5, "meter"),
  31312. name: "Foot (Top)",
  31313. image: {
  31314. source: "./media/characters/lawrence/foot-top.svg"
  31315. }
  31316. },
  31317. },
  31318. [
  31319. {
  31320. name: "Normal",
  31321. height: math.unit(2.5, "meters"),
  31322. default: true
  31323. },
  31324. {
  31325. name: "Macro",
  31326. height: math.unit(95, "meters")
  31327. },
  31328. {
  31329. name: "Megamacro",
  31330. height: math.unit(150, "km")
  31331. },
  31332. ]
  31333. ))
  31334. characterMakers.push(() => makeCharacter(
  31335. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31336. {
  31337. front: {
  31338. height: math.unit(4.2, "meters"),
  31339. preyCapacity: math.unit(50, "m^3"),
  31340. weight: math.unit(30, "tonnes"),
  31341. name: "Front",
  31342. image: {
  31343. source: "./media/characters/sydney/front.svg",
  31344. extra: 1177/1129,
  31345. bottom: 197/1374
  31346. },
  31347. extraAttributes: {
  31348. "length": {
  31349. name: "Length",
  31350. power: 1,
  31351. type: "length",
  31352. base: math.unit(21, "meters")
  31353. },
  31354. }
  31355. },
  31356. },
  31357. [
  31358. {
  31359. name: "Normal",
  31360. height: math.unit(4.2, "meters"),
  31361. default: true
  31362. },
  31363. ]
  31364. ))
  31365. characterMakers.push(() => makeCharacter(
  31366. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31367. {
  31368. back: {
  31369. height: math.unit(201, "feet"),
  31370. name: "Back",
  31371. image: {
  31372. source: "./media/characters/jessica/back.svg",
  31373. extra: 273 / 259,
  31374. bottom: 7 / 280
  31375. }
  31376. },
  31377. },
  31378. [
  31379. {
  31380. name: "Normal",
  31381. height: math.unit(201, "feet"),
  31382. default: true
  31383. },
  31384. {
  31385. name: "Megamacro",
  31386. height: math.unit(8, "miles")
  31387. },
  31388. ]
  31389. ))
  31390. characterMakers.push(() => makeCharacter(
  31391. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31392. {
  31393. side: {
  31394. height: math.unit(5.6, "m"),
  31395. weight: math.unit(8000, "kg"),
  31396. name: "Side",
  31397. image: {
  31398. source: "./media/characters/victoria/side.svg",
  31399. extra: 1542/1229,
  31400. bottom: 124/1666
  31401. }
  31402. },
  31403. maw: {
  31404. height: math.unit(7.14, "feet"),
  31405. name: "Maw",
  31406. image: {
  31407. source: "./media/characters/victoria/maw.svg"
  31408. }
  31409. },
  31410. },
  31411. [
  31412. {
  31413. name: "Normal",
  31414. height: math.unit(5.6, "m"),
  31415. default: true
  31416. },
  31417. ]
  31418. ))
  31419. characterMakers.push(() => makeCharacter(
  31420. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31421. {
  31422. front: {
  31423. height: math.unit(5 + 6 / 12, "feet"),
  31424. name: "Front",
  31425. image: {
  31426. source: "./media/characters/cat/front.svg",
  31427. extra: 1449/1295,
  31428. bottom: 34/1483
  31429. },
  31430. form: "cat",
  31431. default: true
  31432. },
  31433. back: {
  31434. height: math.unit(5 + 6 / 12, "feet"),
  31435. name: "Back",
  31436. image: {
  31437. source: "./media/characters/cat/back.svg",
  31438. extra: 1466/1301,
  31439. bottom: 19/1485
  31440. },
  31441. form: "cat"
  31442. },
  31443. taur: {
  31444. height: math.unit(7, "feet"),
  31445. name: "Taur",
  31446. image: {
  31447. source: "./media/characters/cat/taur.svg",
  31448. extra: 1389/1233,
  31449. bottom: 83/1472
  31450. },
  31451. form: "taur",
  31452. default: true
  31453. },
  31454. lucarioFront: {
  31455. height: math.unit(4, "feet"),
  31456. name: "Lucario (Front)",
  31457. image: {
  31458. source: "./media/characters/cat/lucario-front.svg",
  31459. extra: 1149/1019,
  31460. bottom: 84/1233
  31461. },
  31462. form: "lucario",
  31463. default: true
  31464. },
  31465. lucarioBack: {
  31466. height: math.unit(4, "feet"),
  31467. name: "Lucario (Back)",
  31468. image: {
  31469. source: "./media/characters/cat/lucario-back.svg",
  31470. extra: 1190/1059,
  31471. bottom: 33/1223
  31472. },
  31473. form: "lucario"
  31474. },
  31475. megaLucario: {
  31476. height: math.unit(4, "feet"),
  31477. name: "Mega Lucario",
  31478. image: {
  31479. source: "./media/characters/cat/mega-lucario.svg",
  31480. extra: 1515 / 1319,
  31481. bottom: 63 / 1578
  31482. },
  31483. form: "lucario"
  31484. },
  31485. nickit: {
  31486. height: math.unit(2, "feet"),
  31487. name: "Nickit",
  31488. image: {
  31489. source: "./media/characters/cat/nickit.svg",
  31490. extra: 1980 / 1585,
  31491. bottom: 102 / 2082
  31492. },
  31493. form: "nickit",
  31494. default: true
  31495. },
  31496. lopunnyFront: {
  31497. height: math.unit(5, "feet"),
  31498. name: "Lopunny (Front)",
  31499. image: {
  31500. source: "./media/characters/cat/lopunny-front.svg",
  31501. extra: 1782 / 1469,
  31502. bottom: 38 / 1820
  31503. },
  31504. form: "lopunny",
  31505. default: true
  31506. },
  31507. lopunnyBack: {
  31508. height: math.unit(5, "feet"),
  31509. name: "Lopunny (Back)",
  31510. image: {
  31511. source: "./media/characters/cat/lopunny-back.svg",
  31512. extra: 1660 / 1490,
  31513. bottom: 25 / 1685
  31514. },
  31515. form: "lopunny"
  31516. },
  31517. },
  31518. [
  31519. {
  31520. name: "Really small",
  31521. height: math.unit(1, "nm"),
  31522. allForms: true
  31523. },
  31524. {
  31525. name: "Micro",
  31526. height: math.unit(5, "inches"),
  31527. allForms: true
  31528. },
  31529. {
  31530. name: "Normal",
  31531. height: math.unit(5 + 6 / 12, "feet"),
  31532. default: true,
  31533. form: "cat"
  31534. },
  31535. {
  31536. name: "Normal",
  31537. height: math.unit(7, "feet"),
  31538. default: true,
  31539. form: "taur"
  31540. },
  31541. {
  31542. name: "Normal",
  31543. height: math.unit(4, "feet"),
  31544. default: true,
  31545. form: "lucario"
  31546. },
  31547. {
  31548. name: "Normal",
  31549. height: math.unit(2, "feet"),
  31550. default: true,
  31551. form: "nickit"
  31552. },
  31553. {
  31554. name: "Normal",
  31555. height: math.unit(5, "feet"),
  31556. default: true,
  31557. form: "lopunny"
  31558. },
  31559. {
  31560. name: "Macro",
  31561. height: math.unit(50, "feet"),
  31562. allForms: true
  31563. },
  31564. {
  31565. name: "Macro+",
  31566. height: math.unit(150, "feet"),
  31567. allForms: true
  31568. },
  31569. {
  31570. name: "Megamacro",
  31571. height: math.unit(100, "miles"),
  31572. allForms: true
  31573. },
  31574. ],
  31575. {
  31576. "cat": {
  31577. name: "Cat",
  31578. default: true
  31579. },
  31580. "taur": {
  31581. name: "Taur",
  31582. },
  31583. "lucario": {
  31584. name: "Lucario",
  31585. },
  31586. "nickit": {
  31587. name: "Nickit",
  31588. },
  31589. "lopunny": {
  31590. name: "Lopunny",
  31591. }
  31592. }
  31593. ))
  31594. characterMakers.push(() => makeCharacter(
  31595. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31596. {
  31597. front: {
  31598. height: math.unit(63.4, "meters"),
  31599. weight: math.unit(3.28349e+6, "kilograms"),
  31600. name: "Front",
  31601. image: {
  31602. source: "./media/characters/kirina-violet/front.svg",
  31603. extra: 2812 / 2725,
  31604. bottom: 0 / 2812
  31605. }
  31606. },
  31607. back: {
  31608. height: math.unit(63.4, "meters"),
  31609. weight: math.unit(3.28349e+6, "kilograms"),
  31610. name: "Back",
  31611. image: {
  31612. source: "./media/characters/kirina-violet/back.svg",
  31613. extra: 2812 / 2725,
  31614. bottom: 0 / 2812
  31615. }
  31616. },
  31617. mouth: {
  31618. height: math.unit(4.35, "meters"),
  31619. name: "Mouth",
  31620. image: {
  31621. source: "./media/characters/kirina-violet/mouth.svg"
  31622. }
  31623. },
  31624. paw: {
  31625. height: math.unit(5.6, "meters"),
  31626. name: "Paw",
  31627. image: {
  31628. source: "./media/characters/kirina-violet/paw.svg"
  31629. }
  31630. },
  31631. tail: {
  31632. height: math.unit(18, "meters"),
  31633. name: "Tail",
  31634. image: {
  31635. source: "./media/characters/kirina-violet/tail.svg"
  31636. }
  31637. },
  31638. },
  31639. [
  31640. {
  31641. name: "Macro",
  31642. height: math.unit(63.4, "meters"),
  31643. default: true
  31644. },
  31645. ]
  31646. ))
  31647. characterMakers.push(() => makeCharacter(
  31648. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31649. {
  31650. front: {
  31651. height: math.unit(75, "feet"),
  31652. name: "Front",
  31653. image: {
  31654. source: "./media/characters/cat-gigachu/front.svg",
  31655. extra: 1239/1027,
  31656. bottom: 32/1271
  31657. }
  31658. },
  31659. back: {
  31660. height: math.unit(75, "feet"),
  31661. name: "Back",
  31662. image: {
  31663. source: "./media/characters/cat-gigachu/back.svg",
  31664. extra: 1229/1030,
  31665. bottom: 9/1238
  31666. }
  31667. },
  31668. },
  31669. [
  31670. {
  31671. name: "Dynamax",
  31672. height: math.unit(75, "feet"),
  31673. default: true
  31674. },
  31675. ]
  31676. ))
  31677. characterMakers.push(() => makeCharacter(
  31678. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31679. {
  31680. front: {
  31681. height: math.unit(6, "feet"),
  31682. weight: math.unit(150, "lb"),
  31683. name: "Front",
  31684. image: {
  31685. source: "./media/characters/sfaiyan/front.svg",
  31686. extra: 999 / 978,
  31687. bottom: 5 / 1004
  31688. }
  31689. },
  31690. },
  31691. [
  31692. {
  31693. name: "Normal",
  31694. height: math.unit(1.82, "meters")
  31695. },
  31696. {
  31697. name: "Giant",
  31698. height: math.unit(2.27, "km"),
  31699. default: true
  31700. },
  31701. ]
  31702. ))
  31703. characterMakers.push(() => makeCharacter(
  31704. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31705. {
  31706. front: {
  31707. height: math.unit(179, "cm"),
  31708. weight: math.unit(100, "kg"),
  31709. name: "Front",
  31710. image: {
  31711. source: "./media/characters/raunehkeli/front.svg",
  31712. extra: 1934 / 1926,
  31713. bottom: 0 / 1934
  31714. }
  31715. },
  31716. },
  31717. [
  31718. {
  31719. name: "Normal",
  31720. height: math.unit(179, "cm")
  31721. },
  31722. {
  31723. name: "Maximum",
  31724. height: math.unit(575, "meters"),
  31725. default: true
  31726. },
  31727. ]
  31728. ))
  31729. characterMakers.push(() => makeCharacter(
  31730. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31731. {
  31732. front: {
  31733. height: math.unit(6, "feet"),
  31734. weight: math.unit(150, "lb"),
  31735. name: "Front",
  31736. image: {
  31737. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31738. extra: 2625 / 2518,
  31739. bottom: 60 / 2685
  31740. }
  31741. },
  31742. },
  31743. [
  31744. {
  31745. name: "Normal",
  31746. height: math.unit(6 + 2 / 12, "feet")
  31747. },
  31748. {
  31749. name: "Macro",
  31750. height: math.unit(1180, "feet"),
  31751. default: true
  31752. },
  31753. ]
  31754. ))
  31755. characterMakers.push(() => makeCharacter(
  31756. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31757. {
  31758. front: {
  31759. height: math.unit(5 + 6 / 12, "feet"),
  31760. weight: math.unit(108, "lb"),
  31761. name: "Front",
  31762. image: {
  31763. source: "./media/characters/lilith-zott/front.svg",
  31764. extra: 2510 / 2238,
  31765. bottom: 100 / 2610
  31766. }
  31767. },
  31768. frontDressed: {
  31769. height: math.unit(5 + 6 / 12, "feet"),
  31770. weight: math.unit(108, "lb"),
  31771. name: "Front (Dressed)",
  31772. image: {
  31773. source: "./media/characters/lilith-zott/front-dressed.svg",
  31774. extra: 2510 / 2238,
  31775. bottom: 100 / 2610
  31776. }
  31777. },
  31778. },
  31779. [
  31780. {
  31781. name: "Normal",
  31782. height: math.unit(5 + 6 / 12, "feet")
  31783. },
  31784. {
  31785. name: "Macro",
  31786. height: math.unit(1030, "feet"),
  31787. default: true
  31788. },
  31789. ]
  31790. ))
  31791. characterMakers.push(() => makeCharacter(
  31792. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31793. {
  31794. front: {
  31795. height: math.unit(6, "feet"),
  31796. weight: math.unit(150, "lb"),
  31797. name: "Front",
  31798. image: {
  31799. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31800. extra: 2567 / 2435,
  31801. bottom: 39 / 2606
  31802. }
  31803. },
  31804. frontSuper: {
  31805. height: math.unit(6, "feet"),
  31806. name: "Front (Super)",
  31807. image: {
  31808. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31809. extra: 2567 / 2435,
  31810. bottom: 39 / 2606
  31811. }
  31812. },
  31813. },
  31814. [
  31815. {
  31816. name: "Normal",
  31817. height: math.unit(5 + 10 / 12, "feet")
  31818. },
  31819. {
  31820. name: "Macro",
  31821. height: math.unit(1100, "feet"),
  31822. default: true
  31823. },
  31824. ]
  31825. ))
  31826. characterMakers.push(() => makeCharacter(
  31827. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31828. {
  31829. front: {
  31830. height: math.unit(100, "miles"),
  31831. name: "Front",
  31832. image: {
  31833. source: "./media/characters/sona/front.svg",
  31834. extra: 2433 / 2201,
  31835. bottom: 53 / 2486
  31836. }
  31837. },
  31838. foot: {
  31839. height: math.unit(16.1, "miles"),
  31840. name: "Foot",
  31841. image: {
  31842. source: "./media/characters/sona/foot.svg"
  31843. }
  31844. },
  31845. },
  31846. [
  31847. {
  31848. name: "Macro",
  31849. height: math.unit(100, "miles"),
  31850. default: true
  31851. },
  31852. ]
  31853. ))
  31854. characterMakers.push(() => makeCharacter(
  31855. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31856. {
  31857. front: {
  31858. height: math.unit(6, "feet"),
  31859. weight: math.unit(150, "lb"),
  31860. name: "Front",
  31861. image: {
  31862. source: "./media/characters/bailey/front.svg",
  31863. extra: 1778 / 1724,
  31864. bottom: 30 / 1808
  31865. }
  31866. },
  31867. },
  31868. [
  31869. {
  31870. name: "Micro",
  31871. height: math.unit(4, "inches")
  31872. },
  31873. {
  31874. name: "Normal",
  31875. height: math.unit(5 + 5 / 12, "feet"),
  31876. default: true
  31877. },
  31878. {
  31879. name: "Macro",
  31880. height: math.unit(250, "feet")
  31881. },
  31882. {
  31883. name: "Megamacro",
  31884. height: math.unit(100, "miles")
  31885. },
  31886. ]
  31887. ))
  31888. characterMakers.push(() => makeCharacter(
  31889. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31890. {
  31891. front: {
  31892. height: math.unit(5 + 2 / 12, "feet"),
  31893. weight: math.unit(120, "lb"),
  31894. name: "Front",
  31895. image: {
  31896. source: "./media/characters/snaps/front.svg",
  31897. extra: 2370 / 2177,
  31898. bottom: 48 / 2418
  31899. }
  31900. },
  31901. back: {
  31902. height: math.unit(5 + 2 / 12, "feet"),
  31903. weight: math.unit(120, "lb"),
  31904. name: "Back",
  31905. image: {
  31906. source: "./media/characters/snaps/back.svg",
  31907. extra: 2408 / 2258,
  31908. bottom: 15 / 2423
  31909. }
  31910. },
  31911. },
  31912. [
  31913. {
  31914. name: "Micro",
  31915. height: math.unit(9, "inches")
  31916. },
  31917. {
  31918. name: "Normal",
  31919. height: math.unit(5 + 2 / 12, "feet"),
  31920. default: true
  31921. },
  31922. {
  31923. name: "Mini Macro",
  31924. height: math.unit(10, "feet")
  31925. },
  31926. ]
  31927. ))
  31928. characterMakers.push(() => makeCharacter(
  31929. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31930. {
  31931. front: {
  31932. height: math.unit(1.8, "meters"),
  31933. weight: math.unit(85, "kg"),
  31934. name: "Front",
  31935. image: {
  31936. source: "./media/characters/azteck/front.svg",
  31937. extra: 2815 / 2625,
  31938. bottom: 89 / 2904
  31939. }
  31940. },
  31941. back: {
  31942. height: math.unit(1.8, "meters"),
  31943. weight: math.unit(85, "kg"),
  31944. name: "Back",
  31945. image: {
  31946. source: "./media/characters/azteck/back.svg",
  31947. extra: 2856 / 2648,
  31948. bottom: 85 / 2941
  31949. }
  31950. },
  31951. frontDressed: {
  31952. height: math.unit(1.8, "meters"),
  31953. weight: math.unit(85, "kg"),
  31954. name: "Front (Dressed)",
  31955. image: {
  31956. source: "./media/characters/azteck/front-dressed.svg",
  31957. extra: 2147 / 2003,
  31958. bottom: 68 / 2215
  31959. }
  31960. },
  31961. head: {
  31962. height: math.unit(0.47, "meters"),
  31963. weight: math.unit(85, "kg"),
  31964. name: "Head",
  31965. image: {
  31966. source: "./media/characters/azteck/head.svg"
  31967. }
  31968. },
  31969. },
  31970. [
  31971. {
  31972. name: "Bite sized",
  31973. height: math.unit(16, "cm")
  31974. },
  31975. {
  31976. name: "Normal",
  31977. height: math.unit(1.8, "meters"),
  31978. default: true
  31979. },
  31980. ]
  31981. ))
  31982. characterMakers.push(() => makeCharacter(
  31983. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31984. {
  31985. front: {
  31986. height: math.unit(6, "feet"),
  31987. weight: math.unit(150, "lb"),
  31988. name: "Front",
  31989. image: {
  31990. source: "./media/characters/pidge/front.svg",
  31991. extra: 1936/1820,
  31992. bottom: 0/1936
  31993. }
  31994. },
  31995. back: {
  31996. height: math.unit(6, "feet"),
  31997. weight: math.unit(150, "lb"),
  31998. name: "Back",
  31999. image: {
  32000. source: "./media/characters/pidge/back.svg",
  32001. extra: 1938/1843,
  32002. bottom: 0/1938
  32003. }
  32004. },
  32005. casual: {
  32006. height: math.unit(6, "feet"),
  32007. weight: math.unit(150, "lb"),
  32008. name: "Casual",
  32009. image: {
  32010. source: "./media/characters/pidge/casual.svg",
  32011. extra: 1936/1820,
  32012. bottom: 0/1936
  32013. }
  32014. },
  32015. tech: {
  32016. height: math.unit(6, "feet"),
  32017. weight: math.unit(150, "lb"),
  32018. name: "Tech",
  32019. image: {
  32020. source: "./media/characters/pidge/tech.svg",
  32021. extra: 1802/1682,
  32022. bottom: 0/1802
  32023. }
  32024. },
  32025. head: {
  32026. height: math.unit(1.61, "feet"),
  32027. name: "Head",
  32028. image: {
  32029. source: "./media/characters/pidge/head.svg"
  32030. }
  32031. },
  32032. collar: {
  32033. height: math.unit(0.82, "feet"),
  32034. name: "Collar",
  32035. image: {
  32036. source: "./media/characters/pidge/collar.svg"
  32037. }
  32038. },
  32039. },
  32040. [
  32041. {
  32042. name: "Macro",
  32043. height: math.unit(2, "mile"),
  32044. default: true
  32045. },
  32046. {
  32047. name: "PUPPY",
  32048. height: math.unit(20, "miles")
  32049. },
  32050. ]
  32051. ))
  32052. characterMakers.push(() => makeCharacter(
  32053. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32054. {
  32055. front: {
  32056. height: math.unit(6, "feet"),
  32057. weight: math.unit(150, "lb"),
  32058. name: "Front",
  32059. image: {
  32060. source: "./media/characters/en/front.svg",
  32061. extra: 1697 / 1563,
  32062. bottom: 103 / 1800
  32063. }
  32064. },
  32065. back: {
  32066. height: math.unit(6, "feet"),
  32067. weight: math.unit(150, "lb"),
  32068. name: "Back",
  32069. image: {
  32070. source: "./media/characters/en/back.svg",
  32071. extra: 1700 / 1570,
  32072. bottom: 51 / 1751
  32073. }
  32074. },
  32075. frontDressed: {
  32076. height: math.unit(6, "feet"),
  32077. weight: math.unit(150, "lb"),
  32078. name: "Front (Dressed)",
  32079. image: {
  32080. source: "./media/characters/en/front-dressed.svg",
  32081. extra: 1697 / 1563,
  32082. bottom: 103 / 1800
  32083. }
  32084. },
  32085. backDressed: {
  32086. height: math.unit(6, "feet"),
  32087. weight: math.unit(150, "lb"),
  32088. name: "Back (Dressed)",
  32089. image: {
  32090. source: "./media/characters/en/back-dressed.svg",
  32091. extra: 1700 / 1570,
  32092. bottom: 51 / 1751
  32093. }
  32094. },
  32095. },
  32096. [
  32097. {
  32098. name: "Macro",
  32099. height: math.unit(210, "feet"),
  32100. default: true
  32101. },
  32102. ]
  32103. ))
  32104. characterMakers.push(() => makeCharacter(
  32105. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32106. {
  32107. front: {
  32108. height: math.unit(6, "feet"),
  32109. weight: math.unit(150, "lb"),
  32110. name: "Front",
  32111. image: {
  32112. source: "./media/characters/haze-orris/front.svg",
  32113. extra: 3975 / 3525,
  32114. bottom: 137 / 4112
  32115. }
  32116. },
  32117. },
  32118. [
  32119. {
  32120. name: "Micro",
  32121. height: math.unit(150, "mm"),
  32122. default: true
  32123. },
  32124. ]
  32125. ))
  32126. characterMakers.push(() => makeCharacter(
  32127. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32128. {
  32129. front: {
  32130. height: math.unit(6, "feet"),
  32131. weight: math.unit(150, "lb"),
  32132. name: "Front",
  32133. image: {
  32134. source: "./media/characters/casselene-yaro/front.svg",
  32135. extra: 4721 / 4541,
  32136. bottom: 82 / 4803
  32137. }
  32138. },
  32139. back: {
  32140. height: math.unit(6, "feet"),
  32141. weight: math.unit(150, "lb"),
  32142. name: "Back",
  32143. image: {
  32144. source: "./media/characters/casselene-yaro/back.svg",
  32145. extra: 4569 / 4377,
  32146. bottom: 69 / 4638
  32147. }
  32148. },
  32149. dressed: {
  32150. height: math.unit(6, "feet"),
  32151. weight: math.unit(150, "lb"),
  32152. name: "Dressed",
  32153. image: {
  32154. source: "./media/characters/casselene-yaro/dressed.svg",
  32155. extra: 4721 / 4541,
  32156. bottom: 82 / 4803
  32157. }
  32158. },
  32159. maw: {
  32160. height: math.unit(1, "feet"),
  32161. name: "Maw",
  32162. image: {
  32163. source: "./media/characters/casselene-yaro/maw.svg"
  32164. }
  32165. },
  32166. },
  32167. [
  32168. {
  32169. name: "Macro",
  32170. height: math.unit(190, "feet"),
  32171. default: true
  32172. },
  32173. ]
  32174. ))
  32175. characterMakers.push(() => makeCharacter(
  32176. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32177. {
  32178. front: {
  32179. height: math.unit(10, "feet"),
  32180. weight: math.unit(15015, "lb"),
  32181. name: "Front",
  32182. image: {
  32183. source: "./media/characters/platine/front.svg",
  32184. extra: 1741/1650,
  32185. bottom: 84/1825
  32186. }
  32187. },
  32188. side: {
  32189. height: math.unit(10, "feet"),
  32190. weight: math.unit(15015, "lb"),
  32191. name: "Side",
  32192. image: {
  32193. source: "./media/characters/platine/side.svg",
  32194. extra: 1790/1705,
  32195. bottom: 29/1819
  32196. }
  32197. },
  32198. },
  32199. [
  32200. {
  32201. name: "Normal",
  32202. height: math.unit(10, "feet"),
  32203. default: true
  32204. },
  32205. {
  32206. name: "Macro",
  32207. height: math.unit(100, "feet")
  32208. },
  32209. {
  32210. name: "Megamacro",
  32211. height: math.unit(1000, "feet")
  32212. },
  32213. ]
  32214. ))
  32215. characterMakers.push(() => makeCharacter(
  32216. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32217. {
  32218. front: {
  32219. height: math.unit(15 + 5 / 12, "feet"),
  32220. weight: math.unit(4600, "lb"),
  32221. name: "Front",
  32222. image: {
  32223. source: "./media/characters/neapolitan-ananassa/front.svg",
  32224. extra: 2903 / 2736,
  32225. bottom: 0 / 2903
  32226. }
  32227. },
  32228. side: {
  32229. height: math.unit(15 + 5 / 12, "feet"),
  32230. weight: math.unit(4600, "lb"),
  32231. name: "Side",
  32232. image: {
  32233. source: "./media/characters/neapolitan-ananassa/side.svg",
  32234. extra: 2925 / 2719,
  32235. bottom: 0 / 2925
  32236. }
  32237. },
  32238. back: {
  32239. height: math.unit(15 + 5 / 12, "feet"),
  32240. weight: math.unit(4600, "lb"),
  32241. name: "Back",
  32242. image: {
  32243. source: "./media/characters/neapolitan-ananassa/back.svg",
  32244. extra: 2903 / 2736,
  32245. bottom: 0 / 2903
  32246. }
  32247. },
  32248. },
  32249. [
  32250. {
  32251. name: "Normal",
  32252. height: math.unit(15 + 5 / 12, "feet"),
  32253. default: true
  32254. },
  32255. {
  32256. name: "Post-Millenium",
  32257. height: math.unit(35 + 5 / 12, "feet")
  32258. },
  32259. {
  32260. name: "Post-Era",
  32261. height: math.unit(450 + 5 / 12, "feet")
  32262. },
  32263. ]
  32264. ))
  32265. characterMakers.push(() => makeCharacter(
  32266. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32267. {
  32268. front: {
  32269. height: math.unit(300, "meters"),
  32270. weight: math.unit(125000, "tonnes"),
  32271. name: "Front",
  32272. image: {
  32273. source: "./media/characters/pazuzu/front.svg",
  32274. extra: 877 / 794,
  32275. bottom: 47 / 924
  32276. }
  32277. },
  32278. },
  32279. [
  32280. {
  32281. name: "Macro",
  32282. height: math.unit(300, "meters"),
  32283. default: true
  32284. },
  32285. ]
  32286. ))
  32287. characterMakers.push(() => makeCharacter(
  32288. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32289. {
  32290. side: {
  32291. height: math.unit(10 + 7 / 12, "feet"),
  32292. weight: math.unit(2.5, "tons"),
  32293. name: "Side",
  32294. image: {
  32295. source: "./media/characters/aasha/side.svg",
  32296. extra: 1345 / 1245,
  32297. bottom: 111 / 1456
  32298. }
  32299. },
  32300. back: {
  32301. height: math.unit(10 + 7 / 12, "feet"),
  32302. weight: math.unit(2.5, "tons"),
  32303. name: "Back",
  32304. image: {
  32305. source: "./media/characters/aasha/back.svg",
  32306. extra: 1133 / 1057,
  32307. bottom: 257 / 1390
  32308. }
  32309. },
  32310. },
  32311. [
  32312. {
  32313. name: "Normal",
  32314. height: math.unit(10 + 7 / 12, "feet"),
  32315. default: true
  32316. },
  32317. ]
  32318. ))
  32319. characterMakers.push(() => makeCharacter(
  32320. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32321. {
  32322. front: {
  32323. height: math.unit(6 + 3 / 12, "feet"),
  32324. name: "Front",
  32325. image: {
  32326. source: "./media/characters/nevan/front.svg",
  32327. extra: 704 / 704,
  32328. bottom: 28 / 732
  32329. }
  32330. },
  32331. back: {
  32332. height: math.unit(6 + 3 / 12, "feet"),
  32333. name: "Back",
  32334. image: {
  32335. source: "./media/characters/nevan/back.svg",
  32336. extra: 714 / 714,
  32337. bottom: 21 / 735
  32338. }
  32339. },
  32340. frontFlaccid: {
  32341. height: math.unit(6 + 3 / 12, "feet"),
  32342. name: "Front (Flaccid)",
  32343. image: {
  32344. source: "./media/characters/nevan/front-flaccid.svg",
  32345. extra: 704 / 704,
  32346. bottom: 28 / 732
  32347. }
  32348. },
  32349. frontErect: {
  32350. height: math.unit(6 + 3 / 12, "feet"),
  32351. name: "Front (Erect)",
  32352. image: {
  32353. source: "./media/characters/nevan/front-erect.svg",
  32354. extra: 704 / 704,
  32355. bottom: 28 / 732
  32356. }
  32357. },
  32358. backFlaccid: {
  32359. height: math.unit(6 + 3 / 12, "feet"),
  32360. name: "Back (Flaccid)",
  32361. image: {
  32362. source: "./media/characters/nevan/back-flaccid.svg",
  32363. extra: 714 / 714,
  32364. bottom: 21 / 735
  32365. }
  32366. },
  32367. },
  32368. [
  32369. {
  32370. name: "Normal",
  32371. height: math.unit(6 + 3 / 12, "feet"),
  32372. default: true
  32373. },
  32374. ]
  32375. ))
  32376. characterMakers.push(() => makeCharacter(
  32377. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32378. {
  32379. front: {
  32380. height: math.unit(4, "feet"),
  32381. name: "Front",
  32382. image: {
  32383. source: "./media/characters/arhan/front.svg",
  32384. extra: 3368 / 3133,
  32385. bottom: 0 / 3368
  32386. }
  32387. },
  32388. side: {
  32389. height: math.unit(4, "feet"),
  32390. name: "Side",
  32391. image: {
  32392. source: "./media/characters/arhan/side.svg",
  32393. extra: 3347 / 3105,
  32394. bottom: 0 / 3347
  32395. }
  32396. },
  32397. tongue: {
  32398. height: math.unit(1.42, "feet"),
  32399. name: "Tongue",
  32400. image: {
  32401. source: "./media/characters/arhan/tongue.svg"
  32402. }
  32403. },
  32404. head: {
  32405. height: math.unit(0.85, "feet"),
  32406. name: "Head",
  32407. image: {
  32408. source: "./media/characters/arhan/head.svg"
  32409. }
  32410. },
  32411. },
  32412. [
  32413. {
  32414. name: "Normal",
  32415. height: math.unit(4, "feet"),
  32416. default: true
  32417. },
  32418. ]
  32419. ))
  32420. characterMakers.push(() => makeCharacter(
  32421. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32422. {
  32423. front: {
  32424. height: math.unit(5 + 7.5 / 12, "feet"),
  32425. weight: math.unit(120, "lb"),
  32426. name: "Front",
  32427. image: {
  32428. source: "./media/characters/digi-duncan/front.svg",
  32429. extra: 330 / 326,
  32430. bottom: 16 / 346
  32431. }
  32432. },
  32433. side: {
  32434. height: math.unit(5 + 7.5 / 12, "feet"),
  32435. weight: math.unit(120, "lb"),
  32436. name: "Side",
  32437. image: {
  32438. source: "./media/characters/digi-duncan/side.svg",
  32439. extra: 341 / 337,
  32440. bottom: 1 / 342
  32441. }
  32442. },
  32443. back: {
  32444. height: math.unit(5 + 7.5 / 12, "feet"),
  32445. weight: math.unit(120, "lb"),
  32446. name: "Back",
  32447. image: {
  32448. source: "./media/characters/digi-duncan/back.svg",
  32449. extra: 330 / 326,
  32450. bottom: 12 / 342
  32451. }
  32452. },
  32453. },
  32454. [
  32455. {
  32456. name: "Speck",
  32457. height: math.unit(0.25, "mm")
  32458. },
  32459. {
  32460. name: "Micro",
  32461. height: math.unit(5, "mm")
  32462. },
  32463. {
  32464. name: "Tiny",
  32465. height: math.unit(0.5, "inches"),
  32466. default: true
  32467. },
  32468. {
  32469. name: "Human",
  32470. height: math.unit(5 + 7.5 / 12, "feet")
  32471. },
  32472. {
  32473. name: "Minigiant",
  32474. height: math.unit(8 + 5.25, "feet")
  32475. },
  32476. {
  32477. name: "Giant",
  32478. height: math.unit(2000, "feet")
  32479. },
  32480. {
  32481. name: "Mega",
  32482. height: math.unit(371.1, "miles")
  32483. },
  32484. ]
  32485. ))
  32486. characterMakers.push(() => makeCharacter(
  32487. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32488. {
  32489. front: {
  32490. height: math.unit(2, "meters"),
  32491. weight: math.unit(350, "kg"),
  32492. name: "Front",
  32493. image: {
  32494. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32495. extra: 898 / 838,
  32496. bottom: 9 / 907
  32497. }
  32498. },
  32499. },
  32500. [
  32501. {
  32502. name: "Micro",
  32503. height: math.unit(8, "meters")
  32504. },
  32505. {
  32506. name: "Normal",
  32507. height: math.unit(50, "meters"),
  32508. default: true
  32509. },
  32510. {
  32511. name: "Macro",
  32512. height: math.unit(500, "meters")
  32513. },
  32514. ]
  32515. ))
  32516. characterMakers.push(() => makeCharacter(
  32517. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32518. {
  32519. front: {
  32520. height: math.unit(6 + 6 / 12, "feet"),
  32521. name: "Front",
  32522. image: {
  32523. source: "./media/characters/khardesh/front.svg",
  32524. extra: 1788/1596,
  32525. bottom: 66/1854
  32526. }
  32527. },
  32528. back: {
  32529. height: math.unit(6 + 6 / 12, "feet"),
  32530. name: "Back",
  32531. image: {
  32532. source: "./media/characters/khardesh/back.svg",
  32533. extra: 1781/1584,
  32534. bottom: 68/1849
  32535. }
  32536. },
  32537. },
  32538. [
  32539. {
  32540. name: "Normal",
  32541. height: math.unit(6 + 6 / 12, "feet"),
  32542. default: true
  32543. },
  32544. {
  32545. name: "Normal+",
  32546. height: math.unit(4, "meters")
  32547. },
  32548. {
  32549. name: "Macro",
  32550. height: math.unit(50, "meters")
  32551. },
  32552. {
  32553. name: "Macro+",
  32554. height: math.unit(100, "meters")
  32555. },
  32556. {
  32557. name: "Megamacro",
  32558. height: math.unit(20, "km")
  32559. },
  32560. ]
  32561. ))
  32562. characterMakers.push(() => makeCharacter(
  32563. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32564. {
  32565. front: {
  32566. height: math.unit(6, "feet"),
  32567. weight: math.unit(150, "lb"),
  32568. name: "Front",
  32569. image: {
  32570. source: "./media/characters/kosho/front.svg",
  32571. extra: 1847 / 1847,
  32572. bottom: 86 / 1933
  32573. }
  32574. },
  32575. },
  32576. [
  32577. {
  32578. name: "Second-stage micro",
  32579. height: math.unit(0.5, "inches")
  32580. },
  32581. {
  32582. name: "First-stage micro",
  32583. height: math.unit(6, "inches")
  32584. },
  32585. {
  32586. name: "Normal",
  32587. height: math.unit(6, "feet"),
  32588. default: true
  32589. },
  32590. {
  32591. name: "First-stage macro",
  32592. height: math.unit(72, "feet")
  32593. },
  32594. {
  32595. name: "Second-stage macro",
  32596. height: math.unit(864, "feet")
  32597. },
  32598. ]
  32599. ))
  32600. characterMakers.push(() => makeCharacter(
  32601. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32602. {
  32603. normal: {
  32604. height: math.unit(4 + 6 / 12, "feet"),
  32605. name: "Normal",
  32606. image: {
  32607. source: "./media/characters/hydra/normal.svg",
  32608. extra: 2833 / 2634,
  32609. bottom: 68 / 2901
  32610. }
  32611. },
  32612. smol: {
  32613. height: math.unit(0.705, "inches"),
  32614. name: "Smol",
  32615. image: {
  32616. source: "./media/characters/hydra/smol.svg",
  32617. extra: 2715 / 2540,
  32618. bottom: 0 / 2715
  32619. }
  32620. },
  32621. },
  32622. [
  32623. {
  32624. name: "Normal",
  32625. height: math.unit(4 + 6 / 12, "feet"),
  32626. default: true
  32627. }
  32628. ]
  32629. ))
  32630. characterMakers.push(() => makeCharacter(
  32631. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32632. {
  32633. front: {
  32634. height: math.unit(0.6, "cm"),
  32635. name: "Front",
  32636. image: {
  32637. source: "./media/characters/daz/front.svg",
  32638. extra: 1682 / 1164,
  32639. bottom: 42 / 1724
  32640. }
  32641. },
  32642. },
  32643. [
  32644. {
  32645. name: "Normal",
  32646. height: math.unit(0.6, "cm"),
  32647. default: true
  32648. },
  32649. ]
  32650. ))
  32651. characterMakers.push(() => makeCharacter(
  32652. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32653. {
  32654. front: {
  32655. height: math.unit(6, "feet"),
  32656. weight: math.unit(235, "lb"),
  32657. name: "Front",
  32658. image: {
  32659. source: "./media/characters/theo-pangolin/front.svg",
  32660. extra: 1996 / 1969,
  32661. bottom: 115 / 2111
  32662. }
  32663. },
  32664. back: {
  32665. height: math.unit(6, "feet"),
  32666. weight: math.unit(235, "lb"),
  32667. name: "Back",
  32668. image: {
  32669. source: "./media/characters/theo-pangolin/back.svg",
  32670. extra: 1979 / 1979,
  32671. bottom: 40 / 2019
  32672. }
  32673. },
  32674. feral: {
  32675. height: math.unit(2, "feet"),
  32676. weight: math.unit(30, "lb"),
  32677. name: "Feral",
  32678. image: {
  32679. source: "./media/characters/theo-pangolin/feral.svg",
  32680. extra: 803 / 791,
  32681. bottom: 181 / 984
  32682. }
  32683. },
  32684. footFive: {
  32685. height: math.unit(1.43, "feet"),
  32686. name: "Foot (Five Toes)",
  32687. image: {
  32688. source: "./media/characters/theo-pangolin/foot-five.svg"
  32689. }
  32690. },
  32691. footFour: {
  32692. height: math.unit(1.43, "feet"),
  32693. name: "Foot (Four Toes)",
  32694. image: {
  32695. source: "./media/characters/theo-pangolin/foot-four.svg"
  32696. }
  32697. },
  32698. handFour: {
  32699. height: math.unit(0.81, "feet"),
  32700. name: "Hand (Four Fingers)",
  32701. image: {
  32702. source: "./media/characters/theo-pangolin/hand-four.svg"
  32703. }
  32704. },
  32705. handThree: {
  32706. height: math.unit(0.81, "feet"),
  32707. name: "Hand (Three Fingers)",
  32708. image: {
  32709. source: "./media/characters/theo-pangolin/hand-three.svg"
  32710. }
  32711. },
  32712. headFront: {
  32713. height: math.unit(1.37, "feet"),
  32714. name: "Head (Front)",
  32715. image: {
  32716. source: "./media/characters/theo-pangolin/head-front.svg"
  32717. }
  32718. },
  32719. headSide: {
  32720. height: math.unit(1.43, "feet"),
  32721. name: "Head (Side)",
  32722. image: {
  32723. source: "./media/characters/theo-pangolin/head-side.svg"
  32724. }
  32725. },
  32726. tongue: {
  32727. height: math.unit(2.29, "feet"),
  32728. name: "Tongue",
  32729. image: {
  32730. source: "./media/characters/theo-pangolin/tongue.svg"
  32731. }
  32732. },
  32733. },
  32734. [
  32735. {
  32736. name: "Normal",
  32737. height: math.unit(6, "feet")
  32738. },
  32739. {
  32740. name: "Macro",
  32741. height: math.unit(400, "feet"),
  32742. default: true
  32743. },
  32744. ]
  32745. ))
  32746. characterMakers.push(() => makeCharacter(
  32747. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32748. {
  32749. front: {
  32750. height: math.unit(6, "inches"),
  32751. weight: math.unit(0.036, "kg"),
  32752. name: "Front",
  32753. image: {
  32754. source: "./media/characters/renée/front.svg",
  32755. extra: 900 / 886,
  32756. bottom: 8 / 908
  32757. }
  32758. },
  32759. },
  32760. [
  32761. {
  32762. name: "Nano",
  32763. height: math.unit(1, "nm")
  32764. },
  32765. {
  32766. name: "Micro",
  32767. height: math.unit(1, "mm")
  32768. },
  32769. {
  32770. name: "Normal",
  32771. height: math.unit(6, "inches")
  32772. },
  32773. {
  32774. name: "Macro",
  32775. height: math.unit(2000, "feet"),
  32776. default: true
  32777. },
  32778. {
  32779. name: "Megamacro",
  32780. height: math.unit(2, "km")
  32781. },
  32782. {
  32783. name: "Gigamacro",
  32784. height: math.unit(2000, "km")
  32785. },
  32786. {
  32787. name: "Teramacro",
  32788. height: math.unit(250000, "km")
  32789. },
  32790. ]
  32791. ))
  32792. characterMakers.push(() => makeCharacter(
  32793. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32794. {
  32795. front: {
  32796. height: math.unit(4, "meters"),
  32797. weight: math.unit(150, "kg"),
  32798. name: "Front",
  32799. image: {
  32800. source: "./media/characters/caledvwlch/front.svg",
  32801. extra: 1757/1537,
  32802. bottom: 31/1788
  32803. }
  32804. },
  32805. side: {
  32806. height: math.unit(4, "meters"),
  32807. weight: math.unit(150, "kg"),
  32808. name: "Side",
  32809. image: {
  32810. source: "./media/characters/caledvwlch/side.svg",
  32811. extra: 1605 / 1536,
  32812. bottom: 31 / 1636
  32813. }
  32814. },
  32815. back: {
  32816. height: math.unit(4, "meters"),
  32817. weight: math.unit(150, "kg"),
  32818. name: "Back",
  32819. image: {
  32820. source: "./media/characters/caledvwlch/back.svg",
  32821. extra: 1635 / 1565,
  32822. bottom: 27 / 1662
  32823. }
  32824. },
  32825. },
  32826. [
  32827. {
  32828. name: "\"Incognito\"",
  32829. height: math.unit(4, "meters")
  32830. },
  32831. {
  32832. name: "Small rampage",
  32833. height: math.unit(600, "meters")
  32834. },
  32835. {
  32836. name: "Mega",
  32837. height: math.unit(30, "km")
  32838. },
  32839. {
  32840. name: "Home-size",
  32841. height: math.unit(50, "km"),
  32842. default: true
  32843. },
  32844. {
  32845. name: "Giga",
  32846. height: math.unit(300, "km")
  32847. },
  32848. {
  32849. name: "Lounging",
  32850. height: math.unit(11000, "km")
  32851. },
  32852. {
  32853. name: "Planet snacking",
  32854. height: math.unit(2000000, "km")
  32855. },
  32856. ]
  32857. ))
  32858. characterMakers.push(() => makeCharacter(
  32859. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32860. {
  32861. front: {
  32862. height: math.unit(6, "feet"),
  32863. weight: math.unit(215, "lb"),
  32864. name: "Front",
  32865. image: {
  32866. source: "./media/characters/sapphire-svell/front.svg",
  32867. extra: 495 / 455,
  32868. bottom: 20 / 515
  32869. }
  32870. },
  32871. back: {
  32872. height: math.unit(6, "feet"),
  32873. weight: math.unit(216, "lb"),
  32874. name: "Back",
  32875. image: {
  32876. source: "./media/characters/sapphire-svell/back.svg",
  32877. extra: 497 / 477,
  32878. bottom: 7 / 504
  32879. }
  32880. },
  32881. maw: {
  32882. height: math.unit(1.57, "feet"),
  32883. name: "Maw",
  32884. image: {
  32885. source: "./media/characters/sapphire-svell/maw.svg"
  32886. }
  32887. },
  32888. foot: {
  32889. height: math.unit(1.07, "feet"),
  32890. name: "Foot",
  32891. image: {
  32892. source: "./media/characters/sapphire-svell/foot.svg"
  32893. }
  32894. },
  32895. toering: {
  32896. height: math.unit(1.7, "inch"),
  32897. name: "Toering",
  32898. image: {
  32899. source: "./media/characters/sapphire-svell/toering.svg"
  32900. }
  32901. },
  32902. },
  32903. [
  32904. {
  32905. name: "Normal",
  32906. height: math.unit(300, "feet"),
  32907. default: true
  32908. },
  32909. {
  32910. name: "Augmented",
  32911. height: math.unit(1250, "feet")
  32912. },
  32913. {
  32914. name: "Unleashed",
  32915. height: math.unit(3000, "feet")
  32916. },
  32917. ]
  32918. ))
  32919. characterMakers.push(() => makeCharacter(
  32920. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32921. {
  32922. side: {
  32923. height: math.unit(2 + 3 / 12, "feet"),
  32924. weight: math.unit(110, "lb"),
  32925. name: "Side",
  32926. image: {
  32927. source: "./media/characters/glitch-flux/side.svg",
  32928. extra: 997 / 805,
  32929. bottom: 20 / 1017
  32930. }
  32931. },
  32932. },
  32933. [
  32934. {
  32935. name: "Normal",
  32936. height: math.unit(2 + 3 / 12, "feet"),
  32937. default: true
  32938. },
  32939. ]
  32940. ))
  32941. characterMakers.push(() => makeCharacter(
  32942. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32943. {
  32944. front: {
  32945. height: math.unit(4, "meters"),
  32946. name: "Front",
  32947. image: {
  32948. source: "./media/characters/mid/front.svg",
  32949. extra: 507 / 476,
  32950. bottom: 17 / 524
  32951. }
  32952. },
  32953. back: {
  32954. height: math.unit(4, "meters"),
  32955. name: "Back",
  32956. image: {
  32957. source: "./media/characters/mid/back.svg",
  32958. extra: 519 / 487,
  32959. bottom: 7 / 526
  32960. }
  32961. },
  32962. stuck: {
  32963. height: math.unit(2.2, "meters"),
  32964. name: "Stuck",
  32965. image: {
  32966. source: "./media/characters/mid/stuck.svg",
  32967. extra: 1951 / 1869,
  32968. bottom: 88 / 2039
  32969. }
  32970. }
  32971. },
  32972. [
  32973. {
  32974. name: "Normal",
  32975. height: math.unit(4, "meters"),
  32976. default: true
  32977. },
  32978. {
  32979. name: "Big",
  32980. height: math.unit(10, "meters")
  32981. },
  32982. {
  32983. name: "Macro",
  32984. height: math.unit(800, "meters")
  32985. },
  32986. {
  32987. name: "Megamacro",
  32988. height: math.unit(100, "km")
  32989. },
  32990. {
  32991. name: "Overgrown",
  32992. height: math.unit(1, "parsec")
  32993. },
  32994. ]
  32995. ))
  32996. characterMakers.push(() => makeCharacter(
  32997. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32998. {
  32999. front: {
  33000. height: math.unit(2.5, "meters"),
  33001. weight: math.unit(225, "kg"),
  33002. name: "Front",
  33003. image: {
  33004. source: "./media/characters/iris/front.svg",
  33005. extra: 3348 / 3251,
  33006. bottom: 205 / 3553
  33007. }
  33008. },
  33009. maw: {
  33010. height: math.unit(0.56, "meter"),
  33011. name: "Maw",
  33012. image: {
  33013. source: "./media/characters/iris/maw.svg"
  33014. }
  33015. },
  33016. },
  33017. [
  33018. {
  33019. name: "Mewter cat",
  33020. height: math.unit(1.2, "meters")
  33021. },
  33022. {
  33023. name: "Normal",
  33024. height: math.unit(2.5, "meters"),
  33025. default: true
  33026. },
  33027. {
  33028. name: "Minimacro",
  33029. height: math.unit(18, "feet")
  33030. },
  33031. {
  33032. name: "Macro",
  33033. height: math.unit(140, "feet")
  33034. },
  33035. {
  33036. name: "Macro+",
  33037. height: math.unit(180, "meters")
  33038. },
  33039. {
  33040. name: "Megamacro",
  33041. height: math.unit(2746, "meters")
  33042. },
  33043. ]
  33044. ))
  33045. characterMakers.push(() => makeCharacter(
  33046. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33047. {
  33048. front: {
  33049. height: math.unit(6, "feet"),
  33050. weight: math.unit(135, "lb"),
  33051. name: "Front",
  33052. image: {
  33053. source: "./media/characters/axel/front.svg",
  33054. extra: 908 / 908,
  33055. bottom: 58 / 966
  33056. }
  33057. },
  33058. side: {
  33059. height: math.unit(6, "feet"),
  33060. weight: math.unit(135, "lb"),
  33061. name: "Side",
  33062. image: {
  33063. source: "./media/characters/axel/side.svg",
  33064. extra: 958 / 958,
  33065. bottom: 11 / 969
  33066. }
  33067. },
  33068. back: {
  33069. height: math.unit(6, "feet"),
  33070. weight: math.unit(135, "lb"),
  33071. name: "Back",
  33072. image: {
  33073. source: "./media/characters/axel/back.svg",
  33074. extra: 887 / 887,
  33075. bottom: 34 / 921
  33076. }
  33077. },
  33078. head: {
  33079. height: math.unit(1.07, "feet"),
  33080. name: "Head",
  33081. image: {
  33082. source: "./media/characters/axel/head.svg"
  33083. }
  33084. },
  33085. beak: {
  33086. height: math.unit(1.4, "feet"),
  33087. name: "Beak",
  33088. image: {
  33089. source: "./media/characters/axel/beak.svg"
  33090. }
  33091. },
  33092. beakSide: {
  33093. height: math.unit(1.4, "feet"),
  33094. name: "Beak Side",
  33095. image: {
  33096. source: "./media/characters/axel/beak-side.svg"
  33097. }
  33098. },
  33099. sheath: {
  33100. height: math.unit(0.5, "feet"),
  33101. name: "Sheath",
  33102. image: {
  33103. source: "./media/characters/axel/sheath.svg"
  33104. }
  33105. },
  33106. dick: {
  33107. height: math.unit(0.98, "feet"),
  33108. name: "Dick",
  33109. image: {
  33110. source: "./media/characters/axel/dick.svg"
  33111. }
  33112. },
  33113. },
  33114. [
  33115. {
  33116. name: "Macro",
  33117. height: math.unit(68, "meters"),
  33118. default: true
  33119. },
  33120. ]
  33121. ))
  33122. characterMakers.push(() => makeCharacter(
  33123. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33124. {
  33125. front: {
  33126. height: math.unit(3.5, "meters"),
  33127. weight: math.unit(1200, "kg"),
  33128. name: "Front",
  33129. image: {
  33130. source: "./media/characters/joanna/front.svg",
  33131. extra: 1596 / 1488,
  33132. bottom: 29 / 1625
  33133. }
  33134. },
  33135. back: {
  33136. height: math.unit(3.5, "meters"),
  33137. weight: math.unit(1200, "kg"),
  33138. name: "Back",
  33139. image: {
  33140. source: "./media/characters/joanna/back.svg",
  33141. extra: 1594 / 1495,
  33142. bottom: 26 / 1620
  33143. }
  33144. },
  33145. frontShorts: {
  33146. height: math.unit(3.5, "meters"),
  33147. weight: math.unit(1200, "kg"),
  33148. name: "Front (Shorts)",
  33149. image: {
  33150. source: "./media/characters/joanna/front-shorts.svg",
  33151. extra: 1596 / 1488,
  33152. bottom: 29 / 1625
  33153. }
  33154. },
  33155. frontBiker: {
  33156. height: math.unit(3.5, "meters"),
  33157. weight: math.unit(1200, "kg"),
  33158. name: "Front (Biker)",
  33159. image: {
  33160. source: "./media/characters/joanna/front-biker.svg",
  33161. extra: 1596 / 1488,
  33162. bottom: 29 / 1625
  33163. }
  33164. },
  33165. backBiker: {
  33166. height: math.unit(3.5, "meters"),
  33167. weight: math.unit(1200, "kg"),
  33168. name: "Back (Biker)",
  33169. image: {
  33170. source: "./media/characters/joanna/back-biker.svg",
  33171. extra: 1594 / 1495,
  33172. bottom: 88 / 1682
  33173. }
  33174. },
  33175. bikeLeft: {
  33176. height: math.unit(2.4, "meters"),
  33177. weight: math.unit(1600, "kg"),
  33178. name: "Bike (Left)",
  33179. image: {
  33180. source: "./media/characters/joanna/bike-left.svg",
  33181. extra: 720 / 720,
  33182. bottom: 8 / 728
  33183. }
  33184. },
  33185. bikeRight: {
  33186. height: math.unit(2.4, "meters"),
  33187. weight: math.unit(1600, "kg"),
  33188. name: "Bike (Right)",
  33189. image: {
  33190. source: "./media/characters/joanna/bike-right.svg",
  33191. extra: 720 / 720,
  33192. bottom: 8 / 728
  33193. }
  33194. },
  33195. },
  33196. [
  33197. {
  33198. name: "Incognito",
  33199. height: math.unit(3.5, "meters")
  33200. },
  33201. {
  33202. name: "Casual Big",
  33203. height: math.unit(200, "meters")
  33204. },
  33205. {
  33206. name: "Macro",
  33207. height: math.unit(600, "meters")
  33208. },
  33209. {
  33210. name: "Original",
  33211. height: math.unit(20, "km"),
  33212. default: true
  33213. },
  33214. {
  33215. name: "Giga",
  33216. height: math.unit(400, "km")
  33217. },
  33218. {
  33219. name: "Lounging",
  33220. height: math.unit(1500, "km")
  33221. },
  33222. {
  33223. name: "Planetary",
  33224. height: math.unit(200000, "km")
  33225. },
  33226. ]
  33227. ))
  33228. characterMakers.push(() => makeCharacter(
  33229. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33230. {
  33231. front: {
  33232. height: math.unit(6, "feet"),
  33233. weight: math.unit(150, "lb"),
  33234. name: "Front",
  33235. image: {
  33236. source: "./media/characters/hugo-sigil/front.svg",
  33237. extra: 522 / 500,
  33238. bottom: 2 / 524
  33239. }
  33240. },
  33241. back: {
  33242. height: math.unit(6, "feet"),
  33243. weight: math.unit(150, "lb"),
  33244. name: "Back",
  33245. image: {
  33246. source: "./media/characters/hugo-sigil/back.svg",
  33247. extra: 519 / 495,
  33248. bottom: 5 / 524
  33249. }
  33250. },
  33251. maw: {
  33252. height: math.unit(1.4, "feet"),
  33253. weight: math.unit(150, "lb"),
  33254. name: "Maw",
  33255. image: {
  33256. source: "./media/characters/hugo-sigil/maw.svg"
  33257. }
  33258. },
  33259. feet: {
  33260. height: math.unit(1.56, "feet"),
  33261. weight: math.unit(150, "lb"),
  33262. name: "Feet",
  33263. image: {
  33264. source: "./media/characters/hugo-sigil/feet.svg",
  33265. extra: 177 / 177,
  33266. bottom: 12 / 189
  33267. }
  33268. },
  33269. },
  33270. [
  33271. {
  33272. name: "Normal",
  33273. height: math.unit(6, "feet")
  33274. },
  33275. {
  33276. name: "Macro",
  33277. height: math.unit(200, "feet"),
  33278. default: true
  33279. },
  33280. ]
  33281. ))
  33282. characterMakers.push(() => makeCharacter(
  33283. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33284. {
  33285. front: {
  33286. height: math.unit(6, "feet"),
  33287. weight: math.unit(150, "lb"),
  33288. name: "Front",
  33289. image: {
  33290. source: "./media/characters/peri/front.svg",
  33291. extra: 2354 / 2233,
  33292. bottom: 49 / 2403
  33293. }
  33294. },
  33295. },
  33296. [
  33297. {
  33298. name: "Really Small",
  33299. height: math.unit(1, "nm")
  33300. },
  33301. {
  33302. name: "Micro",
  33303. height: math.unit(4, "inches")
  33304. },
  33305. {
  33306. name: "Normal",
  33307. height: math.unit(7, "inches"),
  33308. default: true
  33309. },
  33310. {
  33311. name: "Macro",
  33312. height: math.unit(400, "feet")
  33313. },
  33314. {
  33315. name: "Megamacro",
  33316. height: math.unit(100, "miles")
  33317. },
  33318. ]
  33319. ))
  33320. characterMakers.push(() => makeCharacter(
  33321. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33322. {
  33323. frontSlim: {
  33324. height: math.unit(7, "feet"),
  33325. name: "Front (Slim)",
  33326. image: {
  33327. source: "./media/characters/issilora/front-slim.svg",
  33328. extra: 529 / 449,
  33329. bottom: 53 / 582
  33330. }
  33331. },
  33332. sideSlim: {
  33333. height: math.unit(7, "feet"),
  33334. name: "Side (Slim)",
  33335. image: {
  33336. source: "./media/characters/issilora/side-slim.svg",
  33337. extra: 570 / 480,
  33338. bottom: 30 / 600
  33339. }
  33340. },
  33341. backSlim: {
  33342. height: math.unit(7, "feet"),
  33343. name: "Back (Slim)",
  33344. image: {
  33345. source: "./media/characters/issilora/back-slim.svg",
  33346. extra: 537 / 455,
  33347. bottom: 46 / 583
  33348. }
  33349. },
  33350. frontBuff: {
  33351. height: math.unit(7, "feet"),
  33352. name: "Front (Buff)",
  33353. image: {
  33354. source: "./media/characters/issilora/front-buff.svg",
  33355. extra: 2310 / 2035,
  33356. bottom: 335 / 2645
  33357. }
  33358. },
  33359. head: {
  33360. height: math.unit(1.94, "feet"),
  33361. name: "Head",
  33362. image: {
  33363. source: "./media/characters/issilora/head.svg"
  33364. }
  33365. },
  33366. },
  33367. [
  33368. {
  33369. name: "Minimum",
  33370. height: math.unit(7, "feet")
  33371. },
  33372. {
  33373. name: "Comfortable",
  33374. height: math.unit(17, "feet")
  33375. },
  33376. {
  33377. name: "Fun Size",
  33378. height: math.unit(47, "feet")
  33379. },
  33380. {
  33381. name: "Natural Macro",
  33382. height: math.unit(137, "feet"),
  33383. default: true
  33384. },
  33385. {
  33386. name: "Maximum Kaiju",
  33387. height: math.unit(397, "feet")
  33388. },
  33389. ]
  33390. ))
  33391. characterMakers.push(() => makeCharacter(
  33392. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33393. {
  33394. front: {
  33395. height: math.unit(50 + 9/12, "feet"),
  33396. weight: math.unit(32.8, "tons"),
  33397. name: "Front",
  33398. image: {
  33399. source: "./media/characters/irb'iiritaahn/front.svg",
  33400. extra: 1878/1826,
  33401. bottom: 326/2204
  33402. }
  33403. },
  33404. back: {
  33405. height: math.unit(50 + 9/12, "feet"),
  33406. weight: math.unit(32.8, "tons"),
  33407. name: "Back",
  33408. image: {
  33409. source: "./media/characters/irb'iiritaahn/back.svg",
  33410. extra: 2052/2018,
  33411. bottom: 152/2204
  33412. }
  33413. },
  33414. head: {
  33415. height: math.unit(12.86, "feet"),
  33416. name: "Head",
  33417. image: {
  33418. source: "./media/characters/irb'iiritaahn/head.svg"
  33419. }
  33420. },
  33421. maw: {
  33422. height: math.unit(9.66, "feet"),
  33423. name: "Maw",
  33424. image: {
  33425. source: "./media/characters/irb'iiritaahn/maw.svg"
  33426. }
  33427. },
  33428. frontDick: {
  33429. height: math.unit(8.78461, "feet"),
  33430. name: "Front Dick",
  33431. image: {
  33432. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33433. }
  33434. },
  33435. rearDick: {
  33436. height: math.unit(8.78461, "feet"),
  33437. name: "Rear Dick",
  33438. image: {
  33439. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33440. }
  33441. },
  33442. rearDickUnfolded: {
  33443. height: math.unit(8.78, "feet"),
  33444. name: "Rear Dick (Unfolded)",
  33445. image: {
  33446. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33447. }
  33448. },
  33449. wings: {
  33450. height: math.unit(43, "feet"),
  33451. name: "Wings",
  33452. image: {
  33453. source: "./media/characters/irb'iiritaahn/wings.svg"
  33454. }
  33455. },
  33456. },
  33457. [
  33458. {
  33459. name: "Macro",
  33460. height: math.unit(50 + 9/12, "feet"),
  33461. default: true
  33462. },
  33463. ]
  33464. ))
  33465. characterMakers.push(() => makeCharacter(
  33466. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33467. {
  33468. front: {
  33469. height: math.unit(205, "cm"),
  33470. weight: math.unit(102, "kg"),
  33471. name: "Front",
  33472. image: {
  33473. source: "./media/characters/irbisgreif/front.svg",
  33474. extra: 785/706,
  33475. bottom: 13/798
  33476. }
  33477. },
  33478. back: {
  33479. height: math.unit(205, "cm"),
  33480. weight: math.unit(102, "kg"),
  33481. name: "Back",
  33482. image: {
  33483. source: "./media/characters/irbisgreif/back.svg",
  33484. extra: 713/701,
  33485. bottom: 26/739
  33486. }
  33487. },
  33488. frontDressed: {
  33489. height: math.unit(216, "cm"),
  33490. weight: math.unit(102, "kg"),
  33491. name: "Front-dressed",
  33492. image: {
  33493. source: "./media/characters/irbisgreif/front-dressed.svg",
  33494. extra: 902/776,
  33495. bottom: 14/916
  33496. }
  33497. },
  33498. sideDressed: {
  33499. height: math.unit(195, "cm"),
  33500. weight: math.unit(102, "kg"),
  33501. name: "Side-dressed",
  33502. image: {
  33503. source: "./media/characters/irbisgreif/side-dressed.svg",
  33504. extra: 788/688,
  33505. bottom: 21/809
  33506. }
  33507. },
  33508. backDressed: {
  33509. height: math.unit(216, "cm"),
  33510. weight: math.unit(102, "kg"),
  33511. name: "Back-dressed",
  33512. image: {
  33513. source: "./media/characters/irbisgreif/back-dressed.svg",
  33514. extra: 901/783,
  33515. bottom: 10/911
  33516. }
  33517. },
  33518. dick: {
  33519. height: math.unit(0.49, "feet"),
  33520. name: "Dick",
  33521. image: {
  33522. source: "./media/characters/irbisgreif/dick.svg"
  33523. }
  33524. },
  33525. wingTop: {
  33526. height: math.unit(1.93 , "feet"),
  33527. name: "Wing-top",
  33528. image: {
  33529. source: "./media/characters/irbisgreif/wing-top.svg"
  33530. }
  33531. },
  33532. wingBottom: {
  33533. height: math.unit(1.93 , "feet"),
  33534. name: "Wing-bottom",
  33535. image: {
  33536. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33537. }
  33538. },
  33539. },
  33540. [
  33541. {
  33542. name: "Normal",
  33543. height: math.unit(216, "cm"),
  33544. default: true
  33545. },
  33546. ]
  33547. ))
  33548. characterMakers.push(() => makeCharacter(
  33549. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33550. {
  33551. front: {
  33552. height: math.unit(6, "feet"),
  33553. weight: math.unit(150, "lb"),
  33554. name: "Front",
  33555. image: {
  33556. source: "./media/characters/pride/front.svg",
  33557. extra: 1299/1230,
  33558. bottom: 18/1317
  33559. }
  33560. },
  33561. },
  33562. [
  33563. {
  33564. name: "Normal",
  33565. height: math.unit(7, "feet")
  33566. },
  33567. {
  33568. name: "Mini-macro",
  33569. height: math.unit(11, "feet")
  33570. },
  33571. {
  33572. name: "Macro",
  33573. height: math.unit(15, "meters"),
  33574. default: true
  33575. },
  33576. {
  33577. name: "Macro+",
  33578. height: math.unit(40, "meters")
  33579. },
  33580. ]
  33581. ))
  33582. characterMakers.push(() => makeCharacter(
  33583. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33584. {
  33585. front: {
  33586. height: math.unit(4 + 2 / 12, "feet"),
  33587. weight: math.unit(95, "lb"),
  33588. name: "Front",
  33589. image: {
  33590. source: "./media/characters/vaelophis-nyx/front.svg",
  33591. extra: 2532/2330,
  33592. bottom: 0/2532
  33593. }
  33594. },
  33595. back: {
  33596. height: math.unit(4 + 2 / 12, "feet"),
  33597. weight: math.unit(95, "lb"),
  33598. name: "Back",
  33599. image: {
  33600. source: "./media/characters/vaelophis-nyx/back.svg",
  33601. extra: 2484/2361,
  33602. bottom: 0/2484
  33603. }
  33604. },
  33605. feralSide: {
  33606. height: math.unit(2 + 1/12, "feet"),
  33607. weight: math.unit(20, "lb"),
  33608. name: "Feral (Side)",
  33609. image: {
  33610. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33611. extra: 1721/1581,
  33612. bottom: 70/1791
  33613. }
  33614. },
  33615. feralLazing: {
  33616. height: math.unit(1.08, "feet"),
  33617. weight: math.unit(20, "lb"),
  33618. name: "Feral (Lazing)",
  33619. image: {
  33620. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33621. extra: 822/822,
  33622. bottom: 248/1070
  33623. }
  33624. },
  33625. ear: {
  33626. height: math.unit(0.416, "feet"),
  33627. name: "Ear",
  33628. image: {
  33629. source: "./media/characters/vaelophis-nyx/ear.svg"
  33630. }
  33631. },
  33632. eye: {
  33633. height: math.unit(0.0748, "feet"),
  33634. name: "Eye",
  33635. image: {
  33636. source: "./media/characters/vaelophis-nyx/eye.svg"
  33637. }
  33638. },
  33639. mouth: {
  33640. height: math.unit(0.378, "feet"),
  33641. name: "Mouth",
  33642. image: {
  33643. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33644. }
  33645. },
  33646. spade: {
  33647. height: math.unit(0.55, "feet"),
  33648. name: "Spade",
  33649. image: {
  33650. source: "./media/characters/vaelophis-nyx/spade.svg"
  33651. }
  33652. },
  33653. },
  33654. [
  33655. {
  33656. name: "Normal",
  33657. height: math.unit(4 + 2/12, "feet"),
  33658. default: true
  33659. },
  33660. ]
  33661. ))
  33662. characterMakers.push(() => makeCharacter(
  33663. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33664. {
  33665. front: {
  33666. height: math.unit(7, "feet"),
  33667. weight: math.unit(231, "lb"),
  33668. name: "Front",
  33669. image: {
  33670. source: "./media/characters/flux/front.svg",
  33671. extra: 919/871,
  33672. bottom: 0/919
  33673. }
  33674. },
  33675. back: {
  33676. height: math.unit(7, "feet"),
  33677. weight: math.unit(231, "lb"),
  33678. name: "Back",
  33679. image: {
  33680. source: "./media/characters/flux/back.svg",
  33681. extra: 1040/992,
  33682. bottom: 0/1040
  33683. }
  33684. },
  33685. frontDressed: {
  33686. height: math.unit(7, "feet"),
  33687. weight: math.unit(231, "lb"),
  33688. name: "Front (Dressed)",
  33689. image: {
  33690. source: "./media/characters/flux/front-dressed.svg",
  33691. extra: 919/871,
  33692. bottom: 0/919
  33693. }
  33694. },
  33695. feralSide: {
  33696. height: math.unit(5, "feet"),
  33697. weight: math.unit(150, "lb"),
  33698. name: "Feral (Side)",
  33699. image: {
  33700. source: "./media/characters/flux/feral-side.svg",
  33701. extra: 598/528,
  33702. bottom: 28/626
  33703. }
  33704. },
  33705. head: {
  33706. height: math.unit(1.585, "feet"),
  33707. name: "Head",
  33708. image: {
  33709. source: "./media/characters/flux/head.svg"
  33710. }
  33711. },
  33712. headSide: {
  33713. height: math.unit(1.74, "feet"),
  33714. name: "Head (Side)",
  33715. image: {
  33716. source: "./media/characters/flux/head-side.svg"
  33717. }
  33718. },
  33719. headSideFire: {
  33720. height: math.unit(1.76, "feet"),
  33721. name: "Head (Side, Fire)",
  33722. image: {
  33723. source: "./media/characters/flux/head-side-fire.svg"
  33724. }
  33725. },
  33726. },
  33727. [
  33728. {
  33729. name: "Normal",
  33730. height: math.unit(7, "feet"),
  33731. default: true
  33732. },
  33733. ]
  33734. ))
  33735. characterMakers.push(() => makeCharacter(
  33736. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33737. {
  33738. front: {
  33739. height: math.unit(9, "feet"),
  33740. weight: math.unit(1012, "lb"),
  33741. name: "Front",
  33742. image: {
  33743. source: "./media/characters/ulfra-lupae/front.svg",
  33744. extra: 1083/1011,
  33745. bottom: 67/1150
  33746. }
  33747. },
  33748. },
  33749. [
  33750. {
  33751. name: "Micro",
  33752. height: math.unit(6, "inches")
  33753. },
  33754. {
  33755. name: "Socializing",
  33756. height: math.unit(6 + 5/12, "feet")
  33757. },
  33758. {
  33759. name: "Normal",
  33760. height: math.unit(9, "feet"),
  33761. default: true
  33762. },
  33763. {
  33764. name: "Macro",
  33765. height: math.unit(150, "feet")
  33766. },
  33767. ]
  33768. ))
  33769. characterMakers.push(() => makeCharacter(
  33770. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33771. {
  33772. front: {
  33773. height: math.unit(5 + 2/12, "feet"),
  33774. weight: math.unit(120, "lb"),
  33775. name: "Front",
  33776. image: {
  33777. source: "./media/characters/timber/front.svg",
  33778. extra: 2814/2705,
  33779. bottom: 181/2995
  33780. }
  33781. },
  33782. },
  33783. [
  33784. {
  33785. name: "Normal",
  33786. height: math.unit(5 + 2/12, "feet"),
  33787. default: true
  33788. },
  33789. ]
  33790. ))
  33791. characterMakers.push(() => makeCharacter(
  33792. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33793. {
  33794. front: {
  33795. height: math.unit(9, "feet"),
  33796. name: "Front",
  33797. image: {
  33798. source: "./media/characters/nicki/front.svg",
  33799. extra: 1240/990,
  33800. bottom: 45/1285
  33801. },
  33802. form: "anthro",
  33803. default: true
  33804. },
  33805. side: {
  33806. height: math.unit(9, "feet"),
  33807. name: "Side",
  33808. image: {
  33809. source: "./media/characters/nicki/side.svg",
  33810. extra: 1047/973,
  33811. bottom: 61/1108
  33812. },
  33813. form: "anthro"
  33814. },
  33815. back: {
  33816. height: math.unit(9, "feet"),
  33817. name: "Back",
  33818. image: {
  33819. source: "./media/characters/nicki/back.svg",
  33820. extra: 1006/965,
  33821. bottom: 39/1045
  33822. },
  33823. form: "anthro"
  33824. },
  33825. taur: {
  33826. height: math.unit(15, "feet"),
  33827. name: "Taur",
  33828. image: {
  33829. source: "./media/characters/nicki/taur.svg",
  33830. extra: 1592/1347,
  33831. bottom: 0/1592
  33832. },
  33833. form: "taur",
  33834. default: true
  33835. },
  33836. },
  33837. [
  33838. {
  33839. name: "Normal",
  33840. height: math.unit(9, "feet"),
  33841. form: "anthro",
  33842. default: true
  33843. },
  33844. {
  33845. name: "Normal",
  33846. height: math.unit(15, "feet"),
  33847. form: "taur",
  33848. default: true
  33849. }
  33850. ],
  33851. {
  33852. "anthro": {
  33853. name: "Anthro",
  33854. default: true
  33855. },
  33856. "taur": {
  33857. name: "Taur"
  33858. }
  33859. }
  33860. ))
  33861. characterMakers.push(() => makeCharacter(
  33862. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33863. {
  33864. front: {
  33865. height: math.unit(7 + 10/12, "feet"),
  33866. weight: math.unit(3.5, "tons"),
  33867. name: "Front",
  33868. image: {
  33869. source: "./media/characters/lee/front.svg",
  33870. extra: 1773/1615,
  33871. bottom: 86/1859
  33872. }
  33873. },
  33874. hand: {
  33875. height: math.unit(1.78, "feet"),
  33876. name: "Hand",
  33877. image: {
  33878. source: "./media/characters/lee/hand.svg"
  33879. }
  33880. },
  33881. maw: {
  33882. height: math.unit(1.18, "feet"),
  33883. name: "Maw",
  33884. image: {
  33885. source: "./media/characters/lee/maw.svg"
  33886. }
  33887. },
  33888. },
  33889. [
  33890. {
  33891. name: "Normal",
  33892. height: math.unit(7 + 10/12, "feet"),
  33893. default: true
  33894. },
  33895. ]
  33896. ))
  33897. characterMakers.push(() => makeCharacter(
  33898. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33899. {
  33900. front: {
  33901. height: math.unit(9, "feet"),
  33902. name: "Front",
  33903. image: {
  33904. source: "./media/characters/guti/front.svg",
  33905. extra: 4551/4355,
  33906. bottom: 123/4674
  33907. }
  33908. },
  33909. tongue: {
  33910. height: math.unit(1, "feet"),
  33911. name: "Tongue",
  33912. image: {
  33913. source: "./media/characters/guti/tongue.svg"
  33914. }
  33915. },
  33916. paw: {
  33917. height: math.unit(1.18, "feet"),
  33918. name: "Paw",
  33919. image: {
  33920. source: "./media/characters/guti/paw.svg"
  33921. }
  33922. },
  33923. },
  33924. [
  33925. {
  33926. name: "Normal",
  33927. height: math.unit(9, "feet"),
  33928. default: true
  33929. },
  33930. ]
  33931. ))
  33932. characterMakers.push(() => makeCharacter(
  33933. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33934. {
  33935. side: {
  33936. height: math.unit(5, "meters"),
  33937. name: "Side",
  33938. image: {
  33939. source: "./media/characters/vesper/side.svg",
  33940. extra: 1605/1518,
  33941. bottom: 0/1605
  33942. }
  33943. },
  33944. },
  33945. [
  33946. {
  33947. name: "Small",
  33948. height: math.unit(5, "meters")
  33949. },
  33950. {
  33951. name: "Sage",
  33952. height: math.unit(100, "meters"),
  33953. default: true
  33954. },
  33955. {
  33956. name: "Fun Size",
  33957. height: math.unit(600, "meters")
  33958. },
  33959. {
  33960. name: "Goddess",
  33961. height: math.unit(20000, "km")
  33962. },
  33963. {
  33964. name: "Maximum",
  33965. height: math.unit(5, "galaxies")
  33966. },
  33967. ]
  33968. ))
  33969. characterMakers.push(() => makeCharacter(
  33970. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33971. {
  33972. front: {
  33973. height: math.unit(6 + 3/12, "feet"),
  33974. weight: math.unit(190, "lb"),
  33975. name: "Front",
  33976. image: {
  33977. source: "./media/characters/gawain/front.svg",
  33978. extra: 2222/2139,
  33979. bottom: 90/2312
  33980. }
  33981. },
  33982. back: {
  33983. height: math.unit(6 + 3/12, "feet"),
  33984. weight: math.unit(190, "lb"),
  33985. name: "Back",
  33986. image: {
  33987. source: "./media/characters/gawain/back.svg",
  33988. extra: 2199/2111,
  33989. bottom: 73/2272
  33990. }
  33991. },
  33992. },
  33993. [
  33994. {
  33995. name: "Normal",
  33996. height: math.unit(6 + 3/12, "feet"),
  33997. default: true
  33998. },
  33999. ]
  34000. ))
  34001. characterMakers.push(() => makeCharacter(
  34002. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34003. {
  34004. side: {
  34005. height: math.unit(3.5, "meters"),
  34006. weight: math.unit(16000, "lb"),
  34007. name: "Side",
  34008. image: {
  34009. source: "./media/characters/dascalti/side.svg",
  34010. extra: 392/273,
  34011. bottom: 47/439
  34012. }
  34013. },
  34014. breath: {
  34015. height: math.unit(7.4, "feet"),
  34016. name: "Breath",
  34017. image: {
  34018. source: "./media/characters/dascalti/breath.svg"
  34019. }
  34020. },
  34021. fed: {
  34022. height: math.unit(3.6, "meters"),
  34023. weight: math.unit(16000, "lb"),
  34024. name: "Fed",
  34025. image: {
  34026. source: "./media/characters/dascalti/fed.svg",
  34027. extra: 1419/820,
  34028. bottom: 95/1514
  34029. }
  34030. },
  34031. },
  34032. [
  34033. {
  34034. name: "Normal",
  34035. height: math.unit(3.5, "meters"),
  34036. default: true
  34037. },
  34038. ]
  34039. ))
  34040. characterMakers.push(() => makeCharacter(
  34041. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34042. {
  34043. front: {
  34044. height: math.unit(3 + 5/12, "feet"),
  34045. name: "Front",
  34046. image: {
  34047. source: "./media/characters/mauve/front.svg",
  34048. extra: 1126/1033,
  34049. bottom: 65/1191
  34050. }
  34051. },
  34052. side: {
  34053. height: math.unit(3 + 5/12, "feet"),
  34054. name: "Side",
  34055. image: {
  34056. source: "./media/characters/mauve/side.svg",
  34057. extra: 1089/1001,
  34058. bottom: 29/1118
  34059. }
  34060. },
  34061. back: {
  34062. height: math.unit(3 + 5/12, "feet"),
  34063. name: "Back",
  34064. image: {
  34065. source: "./media/characters/mauve/back.svg",
  34066. extra: 1173/1053,
  34067. bottom: 109/1282
  34068. }
  34069. },
  34070. },
  34071. [
  34072. {
  34073. name: "Normal",
  34074. height: math.unit(3 + 5/12, "feet"),
  34075. default: true
  34076. },
  34077. ]
  34078. ))
  34079. characterMakers.push(() => makeCharacter(
  34080. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34081. {
  34082. front: {
  34083. height: math.unit(6 + 3/12, "feet"),
  34084. weight: math.unit(430, "lb"),
  34085. name: "Front",
  34086. image: {
  34087. source: "./media/characters/carlos/front.svg",
  34088. extra: 1964/1913,
  34089. bottom: 70/2034
  34090. }
  34091. },
  34092. },
  34093. [
  34094. {
  34095. name: "Normal",
  34096. height: math.unit(6 + 3/12, "feet"),
  34097. default: true
  34098. },
  34099. ]
  34100. ))
  34101. characterMakers.push(() => makeCharacter(
  34102. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34103. {
  34104. back: {
  34105. height: math.unit(5 + 10/12, "feet"),
  34106. weight: math.unit(200, "lb"),
  34107. name: "Back",
  34108. image: {
  34109. source: "./media/characters/jax/back.svg",
  34110. extra: 764/739,
  34111. bottom: 25/789
  34112. }
  34113. },
  34114. },
  34115. [
  34116. {
  34117. name: "Normal",
  34118. height: math.unit(5 + 10/12, "feet"),
  34119. default: true
  34120. },
  34121. ]
  34122. ))
  34123. characterMakers.push(() => makeCharacter(
  34124. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34125. {
  34126. front: {
  34127. height: math.unit(8, "feet"),
  34128. weight: math.unit(250, "lb"),
  34129. name: "Front",
  34130. image: {
  34131. source: "./media/characters/eikthynir/front.svg",
  34132. extra: 1332/1166,
  34133. bottom: 82/1414
  34134. }
  34135. },
  34136. back: {
  34137. height: math.unit(8, "feet"),
  34138. weight: math.unit(250, "lb"),
  34139. name: "Back",
  34140. image: {
  34141. source: "./media/characters/eikthynir/back.svg",
  34142. extra: 1342/1190,
  34143. bottom: 19/1361
  34144. }
  34145. },
  34146. dick: {
  34147. height: math.unit(2.35, "feet"),
  34148. name: "Dick",
  34149. image: {
  34150. source: "./media/characters/eikthynir/dick.svg"
  34151. }
  34152. },
  34153. },
  34154. [
  34155. {
  34156. name: "Normal",
  34157. height: math.unit(8, "feet"),
  34158. default: true
  34159. },
  34160. ]
  34161. ))
  34162. characterMakers.push(() => makeCharacter(
  34163. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34164. {
  34165. front: {
  34166. height: math.unit(99, "meters"),
  34167. weight: math.unit(13000, "tons"),
  34168. name: "Front",
  34169. image: {
  34170. source: "./media/characters/zlmos/front.svg",
  34171. extra: 2202/1992,
  34172. bottom: 315/2517
  34173. }
  34174. },
  34175. },
  34176. [
  34177. {
  34178. name: "Macro",
  34179. height: math.unit(99, "meters"),
  34180. default: true
  34181. },
  34182. ]
  34183. ))
  34184. characterMakers.push(() => makeCharacter(
  34185. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34186. {
  34187. front: {
  34188. height: math.unit(6 + 5/12, "feet"),
  34189. name: "Front",
  34190. image: {
  34191. source: "./media/characters/purri/front.svg",
  34192. extra: 1698/1610,
  34193. bottom: 32/1730
  34194. }
  34195. },
  34196. frontAlt: {
  34197. height: math.unit(6 + 5/12, "feet"),
  34198. name: "Front (Alt)",
  34199. image: {
  34200. source: "./media/characters/purri/front-alt.svg",
  34201. extra: 450/420,
  34202. bottom: 26/476
  34203. }
  34204. },
  34205. boots: {
  34206. height: math.unit(5.5, "feet"),
  34207. name: "Boots",
  34208. image: {
  34209. source: "./media/characters/purri/boots.svg",
  34210. extra: 905/853,
  34211. bottom: 18/923
  34212. },
  34213. extraAttributes: {
  34214. "shoeSize": {
  34215. name: "Shoe Size",
  34216. power: 1,
  34217. type: "length",
  34218. base: math.unit(12, "ShoeSizeMensUS")
  34219. },
  34220. "platformHeight": {
  34221. name: "Platform Height",
  34222. power: 1,
  34223. type: "length",
  34224. base: math.unit(2, "inches")
  34225. },
  34226. }
  34227. },
  34228. lying: {
  34229. height: math.unit(2, "feet"),
  34230. name: "Lying",
  34231. image: {
  34232. source: "./media/characters/purri/lying.svg",
  34233. extra: 940/843,
  34234. bottom: 146/1086
  34235. }
  34236. },
  34237. devious: {
  34238. height: math.unit(1.77, "feet"),
  34239. name: "Devious",
  34240. image: {
  34241. source: "./media/characters/purri/devious.svg",
  34242. extra: 1440/1155,
  34243. bottom: 147/1587
  34244. }
  34245. },
  34246. bean: {
  34247. height: math.unit(1.94, "feet"),
  34248. name: "Bean",
  34249. image: {
  34250. source: "./media/characters/purri/bean.svg"
  34251. }
  34252. },
  34253. },
  34254. [
  34255. {
  34256. name: "Micro",
  34257. height: math.unit(1, "mm")
  34258. },
  34259. {
  34260. name: "Normal",
  34261. height: math.unit(6 + 5/12, "feet"),
  34262. default: true
  34263. },
  34264. {
  34265. name: "Macro :3c",
  34266. height: math.unit(2, "miles")
  34267. },
  34268. ]
  34269. ))
  34270. characterMakers.push(() => makeCharacter(
  34271. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34272. {
  34273. front: {
  34274. height: math.unit(6 + 2/12, "feet"),
  34275. weight: math.unit(250, "lb"),
  34276. name: "Front",
  34277. image: {
  34278. source: "./media/characters/moonlight/front.svg",
  34279. extra: 1044/908,
  34280. bottom: 56/1100
  34281. }
  34282. },
  34283. feral: {
  34284. height: math.unit(3 + 1/12, "feet"),
  34285. weight: math.unit(50, "kg"),
  34286. name: "Feral",
  34287. image: {
  34288. source: "./media/characters/moonlight/feral.svg",
  34289. extra: 3705/2791,
  34290. bottom: 145/3850
  34291. }
  34292. },
  34293. paw: {
  34294. height: math.unit(1, "feet"),
  34295. name: "Paw",
  34296. image: {
  34297. source: "./media/characters/moonlight/paw.svg"
  34298. }
  34299. },
  34300. paws: {
  34301. height: math.unit(0.98, "feet"),
  34302. name: "Paws",
  34303. image: {
  34304. source: "./media/characters/moonlight/paws.svg",
  34305. extra: 939/939,
  34306. bottom: 50/989
  34307. }
  34308. },
  34309. mouth: {
  34310. height: math.unit(0.48, "feet"),
  34311. name: "Mouth",
  34312. image: {
  34313. source: "./media/characters/moonlight/mouth.svg"
  34314. }
  34315. },
  34316. dick: {
  34317. height: math.unit(1.46, "feet"),
  34318. name: "Dick",
  34319. image: {
  34320. source: "./media/characters/moonlight/dick.svg"
  34321. }
  34322. },
  34323. },
  34324. [
  34325. {
  34326. name: "Normal",
  34327. height: math.unit(6 + 2/12, "feet"),
  34328. default: true
  34329. },
  34330. {
  34331. name: "Macro",
  34332. height: math.unit(300, "feet")
  34333. },
  34334. {
  34335. name: "Macro+",
  34336. height: math.unit(1, "mile")
  34337. },
  34338. {
  34339. name: "Mt. Moon",
  34340. height: math.unit(5, "miles")
  34341. },
  34342. {
  34343. name: "Megamacro",
  34344. height: math.unit(15, "miles")
  34345. },
  34346. ]
  34347. ))
  34348. characterMakers.push(() => makeCharacter(
  34349. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34350. {
  34351. back: {
  34352. height: math.unit(6, "feet"),
  34353. weight: math.unit(150, "lb"),
  34354. name: "Back",
  34355. image: {
  34356. source: "./media/characters/sylen/back.svg",
  34357. extra: 1335/1273,
  34358. bottom: 107/1442
  34359. }
  34360. },
  34361. },
  34362. [
  34363. {
  34364. name: "Normal",
  34365. height: math.unit(5 + 5/12, "feet")
  34366. },
  34367. {
  34368. name: "Megamacro",
  34369. height: math.unit(3, "miles"),
  34370. default: true
  34371. },
  34372. ]
  34373. ))
  34374. characterMakers.push(() => makeCharacter(
  34375. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34376. {
  34377. front: {
  34378. height: math.unit(6, "feet"),
  34379. weight: math.unit(190, "lb"),
  34380. name: "Front",
  34381. image: {
  34382. source: "./media/characters/huttser/front.svg",
  34383. extra: 1152/1058,
  34384. bottom: 23/1175
  34385. }
  34386. },
  34387. side: {
  34388. height: math.unit(6, "feet"),
  34389. weight: math.unit(190, "lb"),
  34390. name: "Side",
  34391. image: {
  34392. source: "./media/characters/huttser/side.svg",
  34393. extra: 1174/1065,
  34394. bottom: 18/1192
  34395. }
  34396. },
  34397. back: {
  34398. height: math.unit(6, "feet"),
  34399. weight: math.unit(190, "lb"),
  34400. name: "Back",
  34401. image: {
  34402. source: "./media/characters/huttser/back.svg",
  34403. extra: 1158/1056,
  34404. bottom: 12/1170
  34405. }
  34406. },
  34407. },
  34408. [
  34409. ]
  34410. ))
  34411. characterMakers.push(() => makeCharacter(
  34412. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34413. {
  34414. side: {
  34415. height: math.unit(12 + 9/12, "feet"),
  34416. weight: math.unit(15000, "lb"),
  34417. name: "Side",
  34418. image: {
  34419. source: "./media/characters/faan/side.svg",
  34420. extra: 2747/2697,
  34421. bottom: 0/2747
  34422. }
  34423. },
  34424. front: {
  34425. height: math.unit(12 + 9/12, "feet"),
  34426. weight: math.unit(15000, "lb"),
  34427. name: "Front",
  34428. image: {
  34429. source: "./media/characters/faan/front.svg",
  34430. extra: 607/571,
  34431. bottom: 24/631
  34432. }
  34433. },
  34434. head: {
  34435. height: math.unit(2.85, "feet"),
  34436. name: "Head",
  34437. image: {
  34438. source: "./media/characters/faan/head.svg"
  34439. }
  34440. },
  34441. headAlt: {
  34442. height: math.unit(3.13, "feet"),
  34443. name: "Head-alt",
  34444. image: {
  34445. source: "./media/characters/faan/head-alt.svg"
  34446. }
  34447. },
  34448. },
  34449. [
  34450. {
  34451. name: "Normal",
  34452. height: math.unit(12 + 9/12, "feet"),
  34453. default: true
  34454. },
  34455. ]
  34456. ))
  34457. characterMakers.push(() => makeCharacter(
  34458. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34459. {
  34460. front: {
  34461. height: math.unit(6, "feet"),
  34462. weight: math.unit(300, "lb"),
  34463. name: "Front",
  34464. image: {
  34465. source: "./media/characters/tanio/front.svg",
  34466. extra: 711/673,
  34467. bottom: 25/736
  34468. }
  34469. },
  34470. },
  34471. [
  34472. {
  34473. name: "Normal",
  34474. height: math.unit(6, "feet"),
  34475. default: true
  34476. },
  34477. ]
  34478. ))
  34479. characterMakers.push(() => makeCharacter(
  34480. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34481. {
  34482. front: {
  34483. height: math.unit(3, "inches"),
  34484. name: "Front",
  34485. image: {
  34486. source: "./media/characters/noboru/front.svg",
  34487. extra: 1039/932,
  34488. bottom: 18/1057
  34489. }
  34490. },
  34491. },
  34492. [
  34493. {
  34494. name: "Micro",
  34495. height: math.unit(3, "inches"),
  34496. default: true
  34497. },
  34498. ]
  34499. ))
  34500. characterMakers.push(() => makeCharacter(
  34501. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34502. {
  34503. front: {
  34504. height: math.unit(1.85, "meters"),
  34505. weight: math.unit(80, "kg"),
  34506. name: "Front",
  34507. image: {
  34508. source: "./media/characters/daniel-barrett/front.svg",
  34509. extra: 355/337,
  34510. bottom: 9/364
  34511. }
  34512. },
  34513. },
  34514. [
  34515. {
  34516. name: "Pico",
  34517. height: math.unit(0.0433, "mm")
  34518. },
  34519. {
  34520. name: "Nano",
  34521. height: math.unit(1.5, "mm")
  34522. },
  34523. {
  34524. name: "Micro",
  34525. height: math.unit(5.3, "cm"),
  34526. default: true
  34527. },
  34528. {
  34529. name: "Normal",
  34530. height: math.unit(1.85, "meters")
  34531. },
  34532. {
  34533. name: "Macro",
  34534. height: math.unit(64.7, "meters")
  34535. },
  34536. {
  34537. name: "Megamacro",
  34538. height: math.unit(2.26, "km")
  34539. },
  34540. {
  34541. name: "Gigamacro",
  34542. height: math.unit(79, "km")
  34543. },
  34544. {
  34545. name: "Teramacro",
  34546. height: math.unit(2765, "km")
  34547. },
  34548. {
  34549. name: "Petamacro",
  34550. height: math.unit(96678, "km")
  34551. },
  34552. ]
  34553. ))
  34554. characterMakers.push(() => makeCharacter(
  34555. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34556. {
  34557. front: {
  34558. height: math.unit(30, "meters"),
  34559. weight: math.unit(400, "tons"),
  34560. name: "Front",
  34561. image: {
  34562. source: "./media/characters/zeel/front.svg",
  34563. extra: 2599/2599,
  34564. bottom: 226/2825
  34565. }
  34566. },
  34567. },
  34568. [
  34569. {
  34570. name: "Macro",
  34571. height: math.unit(30, "meters"),
  34572. default: true
  34573. },
  34574. ]
  34575. ))
  34576. characterMakers.push(() => makeCharacter(
  34577. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34578. {
  34579. front: {
  34580. height: math.unit(6 + 7/12, "feet"),
  34581. weight: math.unit(210, "lb"),
  34582. name: "Front",
  34583. image: {
  34584. source: "./media/characters/tarn/front.svg",
  34585. extra: 3517/3220,
  34586. bottom: 91/3608
  34587. }
  34588. },
  34589. back: {
  34590. height: math.unit(6 + 7/12, "feet"),
  34591. weight: math.unit(210, "lb"),
  34592. name: "Back",
  34593. image: {
  34594. source: "./media/characters/tarn/back.svg",
  34595. extra: 3566/3241,
  34596. bottom: 34/3600
  34597. }
  34598. },
  34599. dick: {
  34600. height: math.unit(1.65, "feet"),
  34601. name: "Dick",
  34602. image: {
  34603. source: "./media/characters/tarn/dick.svg"
  34604. }
  34605. },
  34606. paw: {
  34607. height: math.unit(1.80, "feet"),
  34608. name: "Paw",
  34609. image: {
  34610. source: "./media/characters/tarn/paw.svg"
  34611. }
  34612. },
  34613. tongue: {
  34614. height: math.unit(0.97, "feet"),
  34615. name: "Tongue",
  34616. image: {
  34617. source: "./media/characters/tarn/tongue.svg"
  34618. }
  34619. },
  34620. },
  34621. [
  34622. {
  34623. name: "Micro",
  34624. height: math.unit(4, "inches")
  34625. },
  34626. {
  34627. name: "Normal",
  34628. height: math.unit(6 + 7/12, "feet"),
  34629. default: true
  34630. },
  34631. {
  34632. name: "Macro",
  34633. height: math.unit(300, "feet")
  34634. },
  34635. ]
  34636. ))
  34637. characterMakers.push(() => makeCharacter(
  34638. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34639. {
  34640. front: {
  34641. height: math.unit(5 + 7/12, "feet"),
  34642. weight: math.unit(80, "kg"),
  34643. name: "Front",
  34644. image: {
  34645. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34646. extra: 3023/2865,
  34647. bottom: 33/3056
  34648. }
  34649. },
  34650. back: {
  34651. height: math.unit(5 + 7/12, "feet"),
  34652. weight: math.unit(80, "kg"),
  34653. name: "Back",
  34654. image: {
  34655. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34656. extra: 3020/2886,
  34657. bottom: 30/3050
  34658. }
  34659. },
  34660. dick: {
  34661. height: math.unit(0.98, "feet"),
  34662. name: "Dick",
  34663. image: {
  34664. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34665. }
  34666. },
  34667. anatomy: {
  34668. height: math.unit(2.86, "feet"),
  34669. name: "Anatomy",
  34670. image: {
  34671. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34672. }
  34673. },
  34674. },
  34675. [
  34676. {
  34677. name: "Really Small",
  34678. height: math.unit(2, "inches")
  34679. },
  34680. {
  34681. name: "Micro",
  34682. height: math.unit(5.583, "inches")
  34683. },
  34684. {
  34685. name: "Normal",
  34686. height: math.unit(5 + 7/12, "feet"),
  34687. default: true
  34688. },
  34689. {
  34690. name: "Macro",
  34691. height: math.unit(67, "feet")
  34692. },
  34693. {
  34694. name: "Megamacro",
  34695. height: math.unit(134, "feet")
  34696. },
  34697. ]
  34698. ))
  34699. characterMakers.push(() => makeCharacter(
  34700. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34701. {
  34702. front: {
  34703. height: math.unit(9, "feet"),
  34704. weight: math.unit(120, "lb"),
  34705. name: "Front",
  34706. image: {
  34707. source: "./media/characters/sally/front.svg",
  34708. extra: 1506/1349,
  34709. bottom: 66/1572
  34710. }
  34711. },
  34712. },
  34713. [
  34714. {
  34715. name: "Normal",
  34716. height: math.unit(9, "feet"),
  34717. default: true
  34718. },
  34719. ]
  34720. ))
  34721. characterMakers.push(() => makeCharacter(
  34722. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34723. {
  34724. front: {
  34725. height: math.unit(8, "feet"),
  34726. weight: math.unit(900, "lb"),
  34727. name: "Front",
  34728. image: {
  34729. source: "./media/characters/owen/front.svg",
  34730. extra: 1761/1657,
  34731. bottom: 74/1835
  34732. }
  34733. },
  34734. side: {
  34735. height: math.unit(8, "feet"),
  34736. weight: math.unit(900, "lb"),
  34737. name: "Side",
  34738. image: {
  34739. source: "./media/characters/owen/side.svg",
  34740. extra: 1797/1734,
  34741. bottom: 30/1827
  34742. }
  34743. },
  34744. back: {
  34745. height: math.unit(8, "feet"),
  34746. weight: math.unit(900, "lb"),
  34747. name: "Back",
  34748. image: {
  34749. source: "./media/characters/owen/back.svg",
  34750. extra: 1796/1706,
  34751. bottom: 59/1855
  34752. }
  34753. },
  34754. maw: {
  34755. height: math.unit(1.76, "feet"),
  34756. name: "Maw",
  34757. image: {
  34758. source: "./media/characters/owen/maw.svg"
  34759. }
  34760. },
  34761. },
  34762. [
  34763. {
  34764. name: "Normal",
  34765. height: math.unit(8, "feet"),
  34766. default: true
  34767. },
  34768. ]
  34769. ))
  34770. characterMakers.push(() => makeCharacter(
  34771. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34772. {
  34773. front: {
  34774. height: math.unit(4, "feet"),
  34775. weight: math.unit(400, "lb"),
  34776. name: "Front",
  34777. image: {
  34778. source: "./media/characters/ryth/front.svg",
  34779. extra: 1920/1748,
  34780. bottom: 42/1962
  34781. }
  34782. },
  34783. back: {
  34784. height: math.unit(4, "feet"),
  34785. weight: math.unit(400, "lb"),
  34786. name: "Back",
  34787. image: {
  34788. source: "./media/characters/ryth/back.svg",
  34789. extra: 1897/1690,
  34790. bottom: 89/1986
  34791. }
  34792. },
  34793. mouth: {
  34794. height: math.unit(1.39, "feet"),
  34795. name: "Mouth",
  34796. image: {
  34797. source: "./media/characters/ryth/mouth.svg"
  34798. }
  34799. },
  34800. tailmaw: {
  34801. height: math.unit(1.23, "feet"),
  34802. name: "Tailmaw",
  34803. image: {
  34804. source: "./media/characters/ryth/tailmaw.svg"
  34805. }
  34806. },
  34807. goia: {
  34808. height: math.unit(4, "meters"),
  34809. weight: math.unit(10800, "lb"),
  34810. name: "Goia",
  34811. image: {
  34812. source: "./media/characters/ryth/goia.svg",
  34813. extra: 745/640,
  34814. bottom: 107/852
  34815. }
  34816. },
  34817. goiaFront: {
  34818. height: math.unit(4, "meters"),
  34819. weight: math.unit(10800, "lb"),
  34820. name: "Goia (Front)",
  34821. image: {
  34822. source: "./media/characters/ryth/goia-front.svg",
  34823. extra: 750/586,
  34824. bottom: 114/864
  34825. }
  34826. },
  34827. goiaMaw: {
  34828. height: math.unit(5.55, "feet"),
  34829. name: "Goia Maw",
  34830. image: {
  34831. source: "./media/characters/ryth/goia-maw.svg"
  34832. }
  34833. },
  34834. goiaForepaw: {
  34835. height: math.unit(3.5, "feet"),
  34836. name: "Goia Forepaw",
  34837. image: {
  34838. source: "./media/characters/ryth/goia-forepaw.svg"
  34839. }
  34840. },
  34841. goiaHindpaw: {
  34842. height: math.unit(5.55, "feet"),
  34843. name: "Goia Hindpaw",
  34844. image: {
  34845. source: "./media/characters/ryth/goia-hindpaw.svg"
  34846. }
  34847. },
  34848. },
  34849. [
  34850. {
  34851. name: "Normal",
  34852. height: math.unit(4, "feet"),
  34853. default: true
  34854. },
  34855. ]
  34856. ))
  34857. characterMakers.push(() => makeCharacter(
  34858. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34859. {
  34860. front: {
  34861. height: math.unit(7, "feet"),
  34862. weight: math.unit(180, "lb"),
  34863. name: "Front",
  34864. image: {
  34865. source: "./media/characters/necrolance/front.svg",
  34866. extra: 1062/947,
  34867. bottom: 41/1103
  34868. }
  34869. },
  34870. back: {
  34871. height: math.unit(7, "feet"),
  34872. weight: math.unit(180, "lb"),
  34873. name: "Back",
  34874. image: {
  34875. source: "./media/characters/necrolance/back.svg",
  34876. extra: 1045/984,
  34877. bottom: 14/1059
  34878. }
  34879. },
  34880. wing: {
  34881. height: math.unit(2.67, "feet"),
  34882. name: "Wing",
  34883. image: {
  34884. source: "./media/characters/necrolance/wing.svg"
  34885. }
  34886. },
  34887. },
  34888. [
  34889. {
  34890. name: "Normal",
  34891. height: math.unit(7, "feet"),
  34892. default: true
  34893. },
  34894. ]
  34895. ))
  34896. characterMakers.push(() => makeCharacter(
  34897. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34898. {
  34899. front: {
  34900. height: math.unit(76, "meters"),
  34901. weight: math.unit(30000, "tons"),
  34902. name: "Front",
  34903. image: {
  34904. source: "./media/characters/tyler/front.svg",
  34905. extra: 1640/1640,
  34906. bottom: 114/1754
  34907. }
  34908. },
  34909. },
  34910. [
  34911. {
  34912. name: "Macro",
  34913. height: math.unit(76, "meters"),
  34914. default: true
  34915. },
  34916. ]
  34917. ))
  34918. characterMakers.push(() => makeCharacter(
  34919. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34920. {
  34921. front: {
  34922. height: math.unit(4 + 11/12, "feet"),
  34923. weight: math.unit(132, "lb"),
  34924. name: "Front",
  34925. image: {
  34926. source: "./media/characters/icey/front.svg",
  34927. extra: 2750/2550,
  34928. bottom: 33/2783
  34929. }
  34930. },
  34931. back: {
  34932. height: math.unit(4 + 11/12, "feet"),
  34933. weight: math.unit(132, "lb"),
  34934. name: "Back",
  34935. image: {
  34936. source: "./media/characters/icey/back.svg",
  34937. extra: 2624/2481,
  34938. bottom: 35/2659
  34939. }
  34940. },
  34941. },
  34942. [
  34943. {
  34944. name: "Normal",
  34945. height: math.unit(4 + 11/12, "feet"),
  34946. default: true
  34947. },
  34948. ]
  34949. ))
  34950. characterMakers.push(() => makeCharacter(
  34951. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34952. {
  34953. front: {
  34954. height: math.unit(100, "feet"),
  34955. weight: math.unit(0, "lb"),
  34956. name: "Front",
  34957. image: {
  34958. source: "./media/characters/smile/front.svg",
  34959. extra: 2983/2912,
  34960. bottom: 162/3145
  34961. }
  34962. },
  34963. back: {
  34964. height: math.unit(100, "feet"),
  34965. weight: math.unit(0, "lb"),
  34966. name: "Back",
  34967. image: {
  34968. source: "./media/characters/smile/back.svg",
  34969. extra: 3143/3031,
  34970. bottom: 91/3234
  34971. }
  34972. },
  34973. head: {
  34974. height: math.unit(26.3, "feet"),
  34975. weight: math.unit(0, "lb"),
  34976. name: "Head",
  34977. image: {
  34978. source: "./media/characters/smile/head.svg"
  34979. }
  34980. },
  34981. collar: {
  34982. height: math.unit(5.3, "feet"),
  34983. weight: math.unit(0, "lb"),
  34984. name: "Collar",
  34985. image: {
  34986. source: "./media/characters/smile/collar.svg"
  34987. }
  34988. },
  34989. },
  34990. [
  34991. {
  34992. name: "Macro",
  34993. height: math.unit(100, "feet"),
  34994. default: true
  34995. },
  34996. ]
  34997. ))
  34998. characterMakers.push(() => makeCharacter(
  34999. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35000. {
  35001. dragon: {
  35002. height: math.unit(26, "feet"),
  35003. weight: math.unit(36, "tons"),
  35004. name: "Dragon",
  35005. image: {
  35006. source: "./media/characters/arimphae/dragon.svg",
  35007. extra: 1574/983,
  35008. bottom: 357/1931
  35009. }
  35010. },
  35011. drake: {
  35012. height: math.unit(9, "feet"),
  35013. weight: math.unit(1.5, "tons"),
  35014. name: "Drake",
  35015. image: {
  35016. source: "./media/characters/arimphae/drake.svg",
  35017. extra: 1120/925,
  35018. bottom: 435/1555
  35019. }
  35020. },
  35021. },
  35022. [
  35023. {
  35024. name: "Small",
  35025. height: math.unit(26*5/9, "feet")
  35026. },
  35027. {
  35028. name: "Normal",
  35029. height: math.unit(26, "feet"),
  35030. default: true
  35031. },
  35032. ]
  35033. ))
  35034. characterMakers.push(() => makeCharacter(
  35035. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35036. {
  35037. front: {
  35038. height: math.unit(8 + 9/12, "feet"),
  35039. name: "Front",
  35040. image: {
  35041. source: "./media/characters/xander/front.svg",
  35042. extra: 1237/974,
  35043. bottom: 94/1331
  35044. }
  35045. },
  35046. },
  35047. [
  35048. {
  35049. name: "Normal",
  35050. height: math.unit(8 + 9/12, "feet"),
  35051. default: true
  35052. },
  35053. {
  35054. name: "Gaze Grabber",
  35055. height: math.unit(13 + 8/12, "feet")
  35056. },
  35057. {
  35058. name: "Jaw Dropper",
  35059. height: math.unit(27, "feet")
  35060. },
  35061. {
  35062. name: "Show Stopper",
  35063. height: math.unit(136, "feet")
  35064. },
  35065. {
  35066. name: "Superstar",
  35067. height: math.unit(1.9e6, "miles")
  35068. },
  35069. ]
  35070. ))
  35071. characterMakers.push(() => makeCharacter(
  35072. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35073. {
  35074. side: {
  35075. height: math.unit(2100, "feet"),
  35076. name: "Side",
  35077. image: {
  35078. source: "./media/characters/osiris/side.svg",
  35079. extra: 1105/939,
  35080. bottom: 167/1272
  35081. }
  35082. },
  35083. },
  35084. [
  35085. {
  35086. name: "Macro",
  35087. height: math.unit(2100, "feet"),
  35088. default: true
  35089. },
  35090. ]
  35091. ))
  35092. characterMakers.push(() => makeCharacter(
  35093. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35094. {
  35095. front: {
  35096. height: math.unit(6 + 8/12, "feet"),
  35097. weight: math.unit(225, "lb"),
  35098. name: "Front",
  35099. image: {
  35100. source: "./media/characters/rhys-londe/front.svg",
  35101. extra: 2258/2141,
  35102. bottom: 188/2446
  35103. }
  35104. },
  35105. back: {
  35106. height: math.unit(6 + 8/12, "feet"),
  35107. weight: math.unit(225, "lb"),
  35108. name: "Back",
  35109. image: {
  35110. source: "./media/characters/rhys-londe/back.svg",
  35111. extra: 2237/2137,
  35112. bottom: 63/2300
  35113. }
  35114. },
  35115. frontNsfw: {
  35116. height: math.unit(6 + 8/12, "feet"),
  35117. weight: math.unit(225, "lb"),
  35118. name: "Front (NSFW)",
  35119. image: {
  35120. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35121. extra: 2258/2141,
  35122. bottom: 188/2446
  35123. }
  35124. },
  35125. backNsfw: {
  35126. height: math.unit(6 + 8/12, "feet"),
  35127. weight: math.unit(225, "lb"),
  35128. name: "Back (NSFW)",
  35129. image: {
  35130. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35131. extra: 2237/2137,
  35132. bottom: 63/2300
  35133. }
  35134. },
  35135. dick: {
  35136. height: math.unit(30, "inches"),
  35137. name: "Dick",
  35138. image: {
  35139. source: "./media/characters/rhys-londe/dick.svg"
  35140. }
  35141. },
  35142. maw: {
  35143. height: math.unit(1.6, "feet"),
  35144. name: "Maw",
  35145. image: {
  35146. source: "./media/characters/rhys-londe/maw.svg"
  35147. }
  35148. },
  35149. },
  35150. [
  35151. {
  35152. name: "Normal",
  35153. height: math.unit(6 + 8/12, "feet"),
  35154. default: true
  35155. },
  35156. ]
  35157. ))
  35158. characterMakers.push(() => makeCharacter(
  35159. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35160. {
  35161. front: {
  35162. height: math.unit(3 + 10/12, "feet"),
  35163. weight: math.unit(90, "lb"),
  35164. name: "Front",
  35165. image: {
  35166. source: "./media/characters/taivas-ensim/front.svg",
  35167. extra: 1327/1216,
  35168. bottom: 96/1423
  35169. }
  35170. },
  35171. back: {
  35172. height: math.unit(3 + 10/12, "feet"),
  35173. weight: math.unit(90, "lb"),
  35174. name: "Back",
  35175. image: {
  35176. source: "./media/characters/taivas-ensim/back.svg",
  35177. extra: 1355/1247,
  35178. bottom: 11/1366
  35179. }
  35180. },
  35181. frontNsfw: {
  35182. height: math.unit(3 + 10/12, "feet"),
  35183. weight: math.unit(90, "lb"),
  35184. name: "Front (NSFW)",
  35185. image: {
  35186. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35187. extra: 1327/1216,
  35188. bottom: 96/1423
  35189. }
  35190. },
  35191. backNsfw: {
  35192. height: math.unit(3 + 10/12, "feet"),
  35193. weight: math.unit(90, "lb"),
  35194. name: "Back (NSFW)",
  35195. image: {
  35196. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35197. extra: 1355/1247,
  35198. bottom: 11/1366
  35199. }
  35200. },
  35201. },
  35202. [
  35203. {
  35204. name: "Normal",
  35205. height: math.unit(3 + 10/12, "feet"),
  35206. default: true
  35207. },
  35208. ]
  35209. ))
  35210. characterMakers.push(() => makeCharacter(
  35211. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35212. {
  35213. front: {
  35214. height: math.unit(9 + 6/12, "feet"),
  35215. weight: math.unit(940, "lb"),
  35216. name: "Front",
  35217. image: {
  35218. source: "./media/characters/byliss/front.svg",
  35219. extra: 1327/1290,
  35220. bottom: 82/1409
  35221. }
  35222. },
  35223. back: {
  35224. height: math.unit(9 + 6/12, "feet"),
  35225. weight: math.unit(940, "lb"),
  35226. name: "Back",
  35227. image: {
  35228. source: "./media/characters/byliss/back.svg",
  35229. extra: 1376/1349,
  35230. bottom: 9/1385
  35231. }
  35232. },
  35233. frontNsfw: {
  35234. height: math.unit(9 + 6/12, "feet"),
  35235. weight: math.unit(940, "lb"),
  35236. name: "Front (NSFW)",
  35237. image: {
  35238. source: "./media/characters/byliss/front-nsfw.svg",
  35239. extra: 1327/1290,
  35240. bottom: 82/1409
  35241. }
  35242. },
  35243. backNsfw: {
  35244. height: math.unit(9 + 6/12, "feet"),
  35245. weight: math.unit(940, "lb"),
  35246. name: "Back (NSFW)",
  35247. image: {
  35248. source: "./media/characters/byliss/back-nsfw.svg",
  35249. extra: 1376/1349,
  35250. bottom: 9/1385
  35251. }
  35252. },
  35253. },
  35254. [
  35255. {
  35256. name: "Normal",
  35257. height: math.unit(9 + 6/12, "feet"),
  35258. default: true
  35259. },
  35260. ]
  35261. ))
  35262. characterMakers.push(() => makeCharacter(
  35263. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35264. {
  35265. front: {
  35266. height: math.unit(5 + 2/12, "feet"),
  35267. weight: math.unit(200, "lb"),
  35268. name: "Front",
  35269. image: {
  35270. source: "./media/characters/noraly/front.svg",
  35271. extra: 4985/4773,
  35272. bottom: 150/5135
  35273. }
  35274. },
  35275. full: {
  35276. height: math.unit(5 + 2/12, "feet"),
  35277. weight: math.unit(164, "lb"),
  35278. name: "Full",
  35279. image: {
  35280. source: "./media/characters/noraly/full.svg",
  35281. extra: 1114/1059,
  35282. bottom: 35/1149
  35283. }
  35284. },
  35285. fuller: {
  35286. height: math.unit(5 + 2/12, "feet"),
  35287. weight: math.unit(230, "lb"),
  35288. name: "Fuller",
  35289. image: {
  35290. source: "./media/characters/noraly/fuller.svg",
  35291. extra: 1114/1059,
  35292. bottom: 35/1149
  35293. }
  35294. },
  35295. fullest: {
  35296. height: math.unit(5 + 2/12, "feet"),
  35297. weight: math.unit(300, "lb"),
  35298. name: "Fullest",
  35299. image: {
  35300. source: "./media/characters/noraly/fullest.svg",
  35301. extra: 1114/1059,
  35302. bottom: 35/1149
  35303. }
  35304. },
  35305. },
  35306. [
  35307. {
  35308. name: "Normal",
  35309. height: math.unit(5 + 2/12, "feet"),
  35310. default: true
  35311. },
  35312. ]
  35313. ))
  35314. characterMakers.push(() => makeCharacter(
  35315. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35316. {
  35317. front: {
  35318. height: math.unit(5 + 2/12, "feet"),
  35319. weight: math.unit(210, "lb"),
  35320. name: "Front",
  35321. image: {
  35322. source: "./media/characters/pera/front.svg",
  35323. extra: 1560/1531,
  35324. bottom: 165/1725
  35325. }
  35326. },
  35327. back: {
  35328. height: math.unit(5 + 2/12, "feet"),
  35329. weight: math.unit(210, "lb"),
  35330. name: "Back",
  35331. image: {
  35332. source: "./media/characters/pera/back.svg",
  35333. extra: 1523/1493,
  35334. bottom: 152/1675
  35335. }
  35336. },
  35337. dick: {
  35338. height: math.unit(2.4, "feet"),
  35339. name: "Dick",
  35340. image: {
  35341. source: "./media/characters/pera/dick.svg"
  35342. }
  35343. },
  35344. },
  35345. [
  35346. {
  35347. name: "Normal",
  35348. height: math.unit(5 + 2/12, "feet"),
  35349. default: true
  35350. },
  35351. ]
  35352. ))
  35353. characterMakers.push(() => makeCharacter(
  35354. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35355. {
  35356. front: {
  35357. height: math.unit(12, "feet"),
  35358. weight: math.unit(3200, "lb"),
  35359. name: "Front",
  35360. image: {
  35361. source: "./media/characters/julian/front.svg",
  35362. extra: 2962/2701,
  35363. bottom: 184/3146
  35364. }
  35365. },
  35366. maw: {
  35367. height: math.unit(5.35, "feet"),
  35368. name: "Maw",
  35369. image: {
  35370. source: "./media/characters/julian/maw.svg"
  35371. }
  35372. },
  35373. paw: {
  35374. height: math.unit(3.07, "feet"),
  35375. name: "Paw",
  35376. image: {
  35377. source: "./media/characters/julian/paw.svg"
  35378. }
  35379. },
  35380. },
  35381. [
  35382. {
  35383. name: "Default",
  35384. height: math.unit(12, "feet"),
  35385. default: true
  35386. },
  35387. {
  35388. name: "Big",
  35389. height: math.unit(50, "feet")
  35390. },
  35391. {
  35392. name: "Really Big",
  35393. height: math.unit(1, "mile")
  35394. },
  35395. {
  35396. name: "Extremely Big",
  35397. height: math.unit(100, "miles")
  35398. },
  35399. {
  35400. name: "Planet Hugger",
  35401. height: math.unit(200, "megameters")
  35402. },
  35403. {
  35404. name: "Unreasonably Big",
  35405. height: math.unit(1e300, "meters")
  35406. },
  35407. ]
  35408. ))
  35409. characterMakers.push(() => makeCharacter(
  35410. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35411. {
  35412. solgooleo: {
  35413. height: math.unit(4, "meters"),
  35414. weight: math.unit(6000*1.5, "kg"),
  35415. volume: math.unit(6000, "liters"),
  35416. name: "Solgooleo",
  35417. image: {
  35418. source: "./media/characters/pi/solgooleo.svg",
  35419. extra: 388/331,
  35420. bottom: 29/417
  35421. }
  35422. },
  35423. },
  35424. [
  35425. {
  35426. name: "Normal",
  35427. height: math.unit(4, "meters"),
  35428. default: true
  35429. },
  35430. ]
  35431. ))
  35432. characterMakers.push(() => makeCharacter(
  35433. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35434. {
  35435. front: {
  35436. height: math.unit(8, "feet"),
  35437. weight: math.unit(4, "tons"),
  35438. name: "Front",
  35439. image: {
  35440. source: "./media/characters/shaun/front.svg",
  35441. extra: 503/495,
  35442. bottom: 20/523
  35443. }
  35444. },
  35445. back: {
  35446. height: math.unit(8, "feet"),
  35447. weight: math.unit(4, "tons"),
  35448. name: "Back",
  35449. image: {
  35450. source: "./media/characters/shaun/back.svg",
  35451. extra: 487/480,
  35452. bottom: 20/507
  35453. }
  35454. },
  35455. },
  35456. [
  35457. {
  35458. name: "Lorg",
  35459. height: math.unit(8, "feet"),
  35460. default: true
  35461. },
  35462. ]
  35463. ))
  35464. characterMakers.push(() => makeCharacter(
  35465. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35466. {
  35467. frontAnthro: {
  35468. height: math.unit(7, "feet"),
  35469. name: "Front",
  35470. image: {
  35471. source: "./media/characters/sini/front-anthro.svg",
  35472. extra: 726/678,
  35473. bottom: 35/761
  35474. },
  35475. form: "anthro",
  35476. default: true
  35477. },
  35478. backAnthro: {
  35479. height: math.unit(7, "feet"),
  35480. name: "Back",
  35481. image: {
  35482. source: "./media/characters/sini/back-anthro.svg",
  35483. extra: 743/701,
  35484. bottom: 12/755
  35485. },
  35486. form: "anthro",
  35487. },
  35488. frontAnthroNsfw: {
  35489. height: math.unit(7, "feet"),
  35490. name: "Front (NSFW)",
  35491. image: {
  35492. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35493. extra: 726/678,
  35494. bottom: 35/761
  35495. },
  35496. form: "anthro"
  35497. },
  35498. backAnthroNsfw: {
  35499. height: math.unit(7, "feet"),
  35500. name: "Back (NSFW)",
  35501. image: {
  35502. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35503. extra: 743/701,
  35504. bottom: 12/755
  35505. },
  35506. form: "anthro",
  35507. },
  35508. mawAnthro: {
  35509. height: math.unit(2.14, "feet"),
  35510. name: "Maw",
  35511. image: {
  35512. source: "./media/characters/sini/maw-anthro.svg"
  35513. },
  35514. form: "anthro"
  35515. },
  35516. dick: {
  35517. height: math.unit(1.45, "feet"),
  35518. name: "Dick",
  35519. image: {
  35520. source: "./media/characters/sini/dick-anthro.svg"
  35521. },
  35522. form: "anthro"
  35523. },
  35524. feral: {
  35525. height: math.unit(16, "feet"),
  35526. name: "Feral",
  35527. image: {
  35528. source: "./media/characters/sini/feral.svg",
  35529. extra: 814/605,
  35530. bottom: 11/825
  35531. },
  35532. form: "feral",
  35533. default: true
  35534. },
  35535. feralNsfw: {
  35536. height: math.unit(16, "feet"),
  35537. name: "Feral (NSFW)",
  35538. image: {
  35539. source: "./media/characters/sini/feral-nsfw.svg",
  35540. extra: 814/605,
  35541. bottom: 11/825
  35542. },
  35543. form: "feral"
  35544. },
  35545. mawFeral: {
  35546. height: math.unit(5.66, "feet"),
  35547. name: "Maw",
  35548. image: {
  35549. source: "./media/characters/sini/maw-feral.svg"
  35550. },
  35551. form: "feral",
  35552. },
  35553. pawFeral: {
  35554. height: math.unit(5.17, "feet"),
  35555. name: "Paw",
  35556. image: {
  35557. source: "./media/characters/sini/paw-feral.svg"
  35558. },
  35559. form: "feral",
  35560. },
  35561. rumpFeral: {
  35562. height: math.unit(13.11, "feet"),
  35563. name: "Rump",
  35564. image: {
  35565. source: "./media/characters/sini/rump-feral.svg"
  35566. },
  35567. form: "feral",
  35568. },
  35569. dickFeral: {
  35570. height: math.unit(1, "feet"),
  35571. name: "Dick",
  35572. image: {
  35573. source: "./media/characters/sini/dick-feral.svg"
  35574. },
  35575. form: "feral",
  35576. },
  35577. eyeFeral: {
  35578. height: math.unit(1.23, "feet"),
  35579. name: "Eye",
  35580. image: {
  35581. source: "./media/characters/sini/eye-feral.svg"
  35582. },
  35583. form: "feral",
  35584. },
  35585. },
  35586. [
  35587. {
  35588. name: "Normal",
  35589. height: math.unit(7, "feet"),
  35590. default: true,
  35591. form: "anthro"
  35592. },
  35593. {
  35594. name: "Normal",
  35595. height: math.unit(16, "feet"),
  35596. default: true,
  35597. form: "feral"
  35598. },
  35599. ],
  35600. {
  35601. "anthro": {
  35602. name: "Anthro",
  35603. default: true
  35604. },
  35605. "feral": {
  35606. name: "Feral",
  35607. }
  35608. }
  35609. ))
  35610. characterMakers.push(() => makeCharacter(
  35611. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35612. {
  35613. side: {
  35614. height: math.unit(47.2, "meters"),
  35615. weight: math.unit(10000, "tons"),
  35616. name: "Side",
  35617. image: {
  35618. source: "./media/characters/raylldo/side.svg",
  35619. extra: 2363/642,
  35620. bottom: 221/2584
  35621. }
  35622. },
  35623. top: {
  35624. height: math.unit(240, "meters"),
  35625. weight: math.unit(10000, "tons"),
  35626. name: "Top",
  35627. image: {
  35628. source: "./media/characters/raylldo/top.svg"
  35629. }
  35630. },
  35631. bottom: {
  35632. height: math.unit(240, "meters"),
  35633. weight: math.unit(10000, "tons"),
  35634. name: "Bottom",
  35635. image: {
  35636. source: "./media/characters/raylldo/bottom.svg"
  35637. }
  35638. },
  35639. head: {
  35640. height: math.unit(38.6, "meters"),
  35641. name: "Head",
  35642. image: {
  35643. source: "./media/characters/raylldo/head.svg",
  35644. extra: 1335/1112,
  35645. bottom: 0/1335
  35646. }
  35647. },
  35648. maw: {
  35649. height: math.unit(16.37, "meters"),
  35650. name: "Maw",
  35651. image: {
  35652. source: "./media/characters/raylldo/maw.svg",
  35653. extra: 883/660,
  35654. bottom: 0/883
  35655. },
  35656. extraAttributes: {
  35657. preyCapacity: {
  35658. name: "Capacity",
  35659. power: 3,
  35660. type: "volume",
  35661. base: math.unit(1000, "people")
  35662. },
  35663. tongueSize: {
  35664. name: "Tongue Size",
  35665. power: 2,
  35666. type: "area",
  35667. base: math.unit(21, "m^2")
  35668. }
  35669. }
  35670. },
  35671. forepaw: {
  35672. height: math.unit(18, "meters"),
  35673. name: "Forepaw",
  35674. image: {
  35675. source: "./media/characters/raylldo/forepaw.svg"
  35676. }
  35677. },
  35678. hindpaw: {
  35679. height: math.unit(23, "meters"),
  35680. name: "Hindpaw",
  35681. image: {
  35682. source: "./media/characters/raylldo/hindpaw.svg"
  35683. }
  35684. },
  35685. genitals: {
  35686. height: math.unit(42, "meters"),
  35687. name: "Genitals",
  35688. image: {
  35689. source: "./media/characters/raylldo/genitals.svg"
  35690. }
  35691. },
  35692. },
  35693. [
  35694. {
  35695. name: "Normal",
  35696. height: math.unit(47.2, "meters"),
  35697. default: true
  35698. },
  35699. ]
  35700. ))
  35701. characterMakers.push(() => makeCharacter(
  35702. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35703. {
  35704. anthroFront: {
  35705. height: math.unit(9, "feet"),
  35706. weight: math.unit(600, "lb"),
  35707. name: "Anthro (Front)",
  35708. image: {
  35709. source: "./media/characters/glint/anthro-front.svg",
  35710. extra: 1097/1018,
  35711. bottom: 28/1125
  35712. }
  35713. },
  35714. anthroBack: {
  35715. height: math.unit(9, "feet"),
  35716. weight: math.unit(600, "lb"),
  35717. name: "Anthro (Back)",
  35718. image: {
  35719. source: "./media/characters/glint/anthro-back.svg",
  35720. extra: 1154/997,
  35721. bottom: 36/1190
  35722. }
  35723. },
  35724. feral: {
  35725. height: math.unit(11, "feet"),
  35726. weight: math.unit(50000, "lb"),
  35727. name: "Feral",
  35728. image: {
  35729. source: "./media/characters/glint/feral.svg",
  35730. extra: 3035/1585,
  35731. bottom: 1169/4204
  35732. }
  35733. },
  35734. dickAnthro: {
  35735. height: math.unit(0.7, "meters"),
  35736. name: "Dick (Anthro)",
  35737. image: {
  35738. source: "./media/characters/glint/dick-anthro.svg"
  35739. }
  35740. },
  35741. dickFeral: {
  35742. height: math.unit(2.65, "meters"),
  35743. name: "Dick (Feral)",
  35744. image: {
  35745. source: "./media/characters/glint/dick-feral.svg"
  35746. }
  35747. },
  35748. slitHidden: {
  35749. height: math.unit(5.85, "meters"),
  35750. name: "Slit (Hidden)",
  35751. image: {
  35752. source: "./media/characters/glint/slit-hidden.svg"
  35753. }
  35754. },
  35755. slitErect: {
  35756. height: math.unit(5.85, "meters"),
  35757. name: "Slit (Erect)",
  35758. image: {
  35759. source: "./media/characters/glint/slit-erect.svg"
  35760. }
  35761. },
  35762. mawAnthro: {
  35763. height: math.unit(0.63, "meters"),
  35764. name: "Maw (Anthro)",
  35765. image: {
  35766. source: "./media/characters/glint/maw.svg"
  35767. }
  35768. },
  35769. mawFeral: {
  35770. height: math.unit(2.89, "meters"),
  35771. name: "Maw (Feral)",
  35772. image: {
  35773. source: "./media/characters/glint/maw.svg"
  35774. }
  35775. },
  35776. },
  35777. [
  35778. {
  35779. name: "Normal",
  35780. height: math.unit(9, "feet"),
  35781. default: true
  35782. },
  35783. ]
  35784. ))
  35785. characterMakers.push(() => makeCharacter(
  35786. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35787. {
  35788. side: {
  35789. height: math.unit(15, "feet"),
  35790. weight: math.unit(5000, "kg"),
  35791. name: "Side",
  35792. image: {
  35793. source: "./media/characters/kairne/side.svg",
  35794. extra: 979/811,
  35795. bottom: 13/992
  35796. }
  35797. },
  35798. front: {
  35799. height: math.unit(15, "feet"),
  35800. weight: math.unit(5000, "kg"),
  35801. name: "Front",
  35802. image: {
  35803. source: "./media/characters/kairne/front.svg",
  35804. extra: 908/814,
  35805. bottom: 26/934
  35806. }
  35807. },
  35808. sideNsfw: {
  35809. height: math.unit(15, "feet"),
  35810. weight: math.unit(5000, "kg"),
  35811. name: "Side (NSFW)",
  35812. image: {
  35813. source: "./media/characters/kairne/side-nsfw.svg",
  35814. extra: 979/811,
  35815. bottom: 13/992
  35816. }
  35817. },
  35818. frontNsfw: {
  35819. height: math.unit(15, "feet"),
  35820. weight: math.unit(5000, "kg"),
  35821. name: "Front (NSFW)",
  35822. image: {
  35823. source: "./media/characters/kairne/front-nsfw.svg",
  35824. extra: 908/814,
  35825. bottom: 26/934
  35826. }
  35827. },
  35828. dickCaged: {
  35829. height: math.unit(0.65, "meters"),
  35830. name: "Dick-caged",
  35831. image: {
  35832. source: "./media/characters/kairne/dick-caged.svg"
  35833. }
  35834. },
  35835. dick: {
  35836. height: math.unit(0.79, "meters"),
  35837. name: "Dick",
  35838. image: {
  35839. source: "./media/characters/kairne/dick.svg"
  35840. }
  35841. },
  35842. genitals: {
  35843. height: math.unit(1.29, "meters"),
  35844. name: "Genitals",
  35845. image: {
  35846. source: "./media/characters/kairne/genitals.svg"
  35847. }
  35848. },
  35849. maw: {
  35850. height: math.unit(1.73, "meters"),
  35851. name: "Maw",
  35852. image: {
  35853. source: "./media/characters/kairne/maw.svg"
  35854. }
  35855. },
  35856. },
  35857. [
  35858. {
  35859. name: "Normal",
  35860. height: math.unit(15, "feet"),
  35861. default: true
  35862. },
  35863. ]
  35864. ))
  35865. characterMakers.push(() => makeCharacter(
  35866. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35867. {
  35868. front: {
  35869. height: math.unit(5 + 8/12, "feet"),
  35870. weight: math.unit(139, "lb"),
  35871. name: "Front",
  35872. image: {
  35873. source: "./media/characters/biscuit-jackal/front.svg",
  35874. extra: 2106/1961,
  35875. bottom: 58/2164
  35876. }
  35877. },
  35878. back: {
  35879. height: math.unit(5 + 8/12, "feet"),
  35880. weight: math.unit(139, "lb"),
  35881. name: "Back",
  35882. image: {
  35883. source: "./media/characters/biscuit-jackal/back.svg",
  35884. extra: 2132/1976,
  35885. bottom: 57/2189
  35886. }
  35887. },
  35888. werejackal: {
  35889. height: math.unit(6 + 3/12, "feet"),
  35890. weight: math.unit(188, "lb"),
  35891. name: "Werejackal",
  35892. image: {
  35893. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35894. extra: 2373/2178,
  35895. bottom: 53/2426
  35896. }
  35897. },
  35898. },
  35899. [
  35900. {
  35901. name: "Normal",
  35902. height: math.unit(5 + 8/12, "feet"),
  35903. default: true
  35904. },
  35905. ]
  35906. ))
  35907. characterMakers.push(() => makeCharacter(
  35908. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35909. {
  35910. front: {
  35911. height: math.unit(140, "cm"),
  35912. weight: math.unit(45, "kg"),
  35913. name: "Front",
  35914. image: {
  35915. source: "./media/characters/tayra-white/front.svg",
  35916. extra: 2229/2192,
  35917. bottom: 75/2304
  35918. }
  35919. },
  35920. },
  35921. [
  35922. {
  35923. name: "Normal",
  35924. height: math.unit(140, "cm"),
  35925. default: true
  35926. },
  35927. ]
  35928. ))
  35929. characterMakers.push(() => makeCharacter(
  35930. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35931. {
  35932. front: {
  35933. height: math.unit(4 + 5/12, "feet"),
  35934. name: "Front",
  35935. image: {
  35936. source: "./media/characters/scoop/front.svg",
  35937. extra: 1257/1136,
  35938. bottom: 69/1326
  35939. }
  35940. },
  35941. back: {
  35942. height: math.unit(4 + 5/12, "feet"),
  35943. name: "Back",
  35944. image: {
  35945. source: "./media/characters/scoop/back.svg",
  35946. extra: 1321/1152,
  35947. bottom: 32/1353
  35948. }
  35949. },
  35950. maw: {
  35951. height: math.unit(0.68, "feet"),
  35952. name: "Maw",
  35953. image: {
  35954. source: "./media/characters/scoop/maw.svg"
  35955. }
  35956. },
  35957. },
  35958. [
  35959. {
  35960. name: "Really Small",
  35961. height: math.unit(1, "mm")
  35962. },
  35963. {
  35964. name: "Micro",
  35965. height: math.unit(1, "inch")
  35966. },
  35967. {
  35968. name: "Normal",
  35969. height: math.unit(4 + 5/12, "feet"),
  35970. default: true
  35971. },
  35972. {
  35973. name: "Macro",
  35974. height: math.unit(200, "feet")
  35975. },
  35976. {
  35977. name: "Megamacro",
  35978. height: math.unit(3240, "feet")
  35979. },
  35980. {
  35981. name: "Teramacro",
  35982. height: math.unit(2500, "miles")
  35983. },
  35984. ]
  35985. ))
  35986. characterMakers.push(() => makeCharacter(
  35987. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35988. {
  35989. front: {
  35990. height: math.unit(15 + 7/12, "feet"),
  35991. weight: math.unit(1150, "tons"),
  35992. name: "Front",
  35993. image: {
  35994. source: "./media/characters/saphinara/front.svg",
  35995. extra: 1837/1643,
  35996. bottom: 84/1921
  35997. },
  35998. form: "normal",
  35999. default: true
  36000. },
  36001. side: {
  36002. height: math.unit(15 + 7/12, "feet"),
  36003. weight: math.unit(1150, "tons"),
  36004. name: "Side",
  36005. image: {
  36006. source: "./media/characters/saphinara/side.svg",
  36007. extra: 605/547,
  36008. bottom: 6/611
  36009. },
  36010. form: "normal"
  36011. },
  36012. back: {
  36013. height: math.unit(15 + 7/12, "feet"),
  36014. weight: math.unit(1150, "tons"),
  36015. name: "Back",
  36016. image: {
  36017. source: "./media/characters/saphinara/back.svg",
  36018. extra: 591/531,
  36019. bottom: 13/604
  36020. },
  36021. form: "normal"
  36022. },
  36023. frontTail: {
  36024. height: math.unit(15 + 7/12, "feet"),
  36025. weight: math.unit(1150, "tons"),
  36026. name: "Front (Full Tail)",
  36027. image: {
  36028. source: "./media/characters/saphinara/front-tail.svg",
  36029. extra: 2256/1630,
  36030. bottom: 261/2517
  36031. },
  36032. form: "normal"
  36033. },
  36034. insides: {
  36035. height: math.unit(11.92, "feet"),
  36036. name: "Insides",
  36037. image: {
  36038. source: "./media/characters/saphinara/insides.svg"
  36039. },
  36040. form: "normal"
  36041. },
  36042. head: {
  36043. height: math.unit(4.17, "feet"),
  36044. name: "Head",
  36045. image: {
  36046. source: "./media/characters/saphinara/head.svg"
  36047. },
  36048. form: "normal"
  36049. },
  36050. tongue: {
  36051. height: math.unit(4.60, "feet"),
  36052. name: "Tongue",
  36053. image: {
  36054. source: "./media/characters/saphinara/tongue.svg"
  36055. },
  36056. form: "normal"
  36057. },
  36058. headEnraged: {
  36059. height: math.unit(5.55, "feet"),
  36060. name: "Head (Enraged)",
  36061. image: {
  36062. source: "./media/characters/saphinara/head-enraged.svg"
  36063. },
  36064. form: "normal"
  36065. },
  36066. wings: {
  36067. height: math.unit(11.95, "feet"),
  36068. name: "Wings",
  36069. image: {
  36070. source: "./media/characters/saphinara/wings.svg"
  36071. },
  36072. form: "normal"
  36073. },
  36074. feathers: {
  36075. height: math.unit(8.92, "feet"),
  36076. name: "Feathers",
  36077. image: {
  36078. source: "./media/characters/saphinara/feathers.svg"
  36079. },
  36080. form: "normal"
  36081. },
  36082. shackles: {
  36083. height: math.unit(2, "feet"),
  36084. name: "Shackles",
  36085. image: {
  36086. source: "./media/characters/saphinara/shackles.svg"
  36087. },
  36088. form: "normal"
  36089. },
  36090. eyes: {
  36091. height: math.unit(1.331, "feet"),
  36092. name: "Eyes",
  36093. image: {
  36094. source: "./media/characters/saphinara/eyes.svg"
  36095. },
  36096. form: "normal"
  36097. },
  36098. eyesEnraged: {
  36099. height: math.unit(1.331, "feet"),
  36100. name: "Eyes (Enraged)",
  36101. image: {
  36102. source: "./media/characters/saphinara/eyes-enraged.svg"
  36103. },
  36104. form: "normal"
  36105. },
  36106. trueFormSide: {
  36107. height: math.unit(200, "feet"),
  36108. weight: math.unit(1e7, "tons"),
  36109. name: "Side",
  36110. image: {
  36111. source: "./media/characters/saphinara/true-form-side.svg",
  36112. extra: 1399/770,
  36113. bottom: 97/1496
  36114. },
  36115. form: "true-form",
  36116. default: true
  36117. },
  36118. trueFormMaw: {
  36119. height: math.unit(71.5, "feet"),
  36120. name: "Maw",
  36121. image: {
  36122. source: "./media/characters/saphinara/true-form-maw.svg",
  36123. extra: 2302/1453,
  36124. bottom: 0/2302
  36125. },
  36126. form: "true-form"
  36127. },
  36128. meowberusSide: {
  36129. height: math.unit(75, "feet"),
  36130. weight: math.unit(180000, "kg"),
  36131. preyCapacity: math.unit(50000, "people"),
  36132. name: "Side",
  36133. image: {
  36134. source: "./media/characters/saphinara/meowberus-side.svg",
  36135. extra: 1400/711,
  36136. bottom: 126/1526
  36137. },
  36138. form: "meowberus",
  36139. extraAttributes: {
  36140. "pawArea": {
  36141. name: "Paw Size",
  36142. power: 2,
  36143. type: "area",
  36144. base: math.unit(35, "m^2")
  36145. }
  36146. }
  36147. },
  36148. },
  36149. [
  36150. {
  36151. name: "Normal",
  36152. height: math.unit(15 + 7/12, "feet"),
  36153. default: true,
  36154. form: "normal"
  36155. },
  36156. {
  36157. name: "Angry",
  36158. height: math.unit(30 + 6/12, "feet"),
  36159. form: "normal"
  36160. },
  36161. {
  36162. name: "Enraged",
  36163. height: math.unit(102 + 1/12, "feet"),
  36164. form: "normal"
  36165. },
  36166. {
  36167. name: "True",
  36168. height: math.unit(200, "feet"),
  36169. default: true,
  36170. form: "true-form"
  36171. },
  36172. {
  36173. name: "Normal",
  36174. height: math.unit(75, "feet"),
  36175. default: true,
  36176. form: "meowberus"
  36177. },
  36178. ],
  36179. {
  36180. "normal": {
  36181. name: "Normal",
  36182. default: true
  36183. },
  36184. "true-form": {
  36185. name: "True Form"
  36186. },
  36187. "meowberus": {
  36188. name: "Meowberus",
  36189. },
  36190. }
  36191. ))
  36192. characterMakers.push(() => makeCharacter(
  36193. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36194. {
  36195. front: {
  36196. height: math.unit(6 + 8/12, "feet"),
  36197. weight: math.unit(300, "lb"),
  36198. name: "Front",
  36199. image: {
  36200. source: "./media/characters/jrain/front.svg",
  36201. extra: 3039/2865,
  36202. bottom: 399/3438
  36203. }
  36204. },
  36205. back: {
  36206. height: math.unit(6 + 8/12, "feet"),
  36207. weight: math.unit(300, "lb"),
  36208. name: "Back",
  36209. image: {
  36210. source: "./media/characters/jrain/back.svg",
  36211. extra: 3089/2938,
  36212. bottom: 172/3261
  36213. }
  36214. },
  36215. head: {
  36216. height: math.unit(2.14, "feet"),
  36217. name: "Head",
  36218. image: {
  36219. source: "./media/characters/jrain/head.svg"
  36220. }
  36221. },
  36222. maw: {
  36223. height: math.unit(1.77, "feet"),
  36224. name: "Maw",
  36225. image: {
  36226. source: "./media/characters/jrain/maw.svg"
  36227. }
  36228. },
  36229. leftHand: {
  36230. height: math.unit(1.1, "feet"),
  36231. name: "Left Hand",
  36232. image: {
  36233. source: "./media/characters/jrain/left-hand.svg"
  36234. }
  36235. },
  36236. rightHand: {
  36237. height: math.unit(1.1, "feet"),
  36238. name: "Right Hand",
  36239. image: {
  36240. source: "./media/characters/jrain/right-hand.svg"
  36241. }
  36242. },
  36243. eye: {
  36244. height: math.unit(0.35, "feet"),
  36245. name: "Eye",
  36246. image: {
  36247. source: "./media/characters/jrain/eye.svg"
  36248. }
  36249. },
  36250. },
  36251. [
  36252. {
  36253. name: "Normal",
  36254. height: math.unit(6 + 8/12, "feet"),
  36255. default: true
  36256. },
  36257. {
  36258. name: "Casually Large",
  36259. height: math.unit(25, "feet")
  36260. },
  36261. {
  36262. name: "Giant",
  36263. height: math.unit(100, "feet")
  36264. },
  36265. {
  36266. name: "Kaiju",
  36267. height: math.unit(300, "feet")
  36268. },
  36269. ]
  36270. ))
  36271. characterMakers.push(() => makeCharacter(
  36272. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36273. {
  36274. dragon: {
  36275. height: math.unit(5, "meters"),
  36276. name: "Dragon",
  36277. image: {
  36278. source: "./media/characters/sabrina/dragon.svg",
  36279. extra: 3670 / 2365,
  36280. bottom: 333 / 4003
  36281. }
  36282. },
  36283. gryphon: {
  36284. height: math.unit(3, "meters"),
  36285. name: "Gryphon",
  36286. image: {
  36287. source: "./media/characters/sabrina/gryphon.svg",
  36288. extra: 1576 / 945,
  36289. bottom: 71 / 1647
  36290. }
  36291. },
  36292. snake: {
  36293. height: math.unit(12, "meters"),
  36294. name: "Snake",
  36295. image: {
  36296. source: "./media/characters/sabrina/snake.svg",
  36297. extra: 1758 / 1320,
  36298. bottom: 186 / 1944
  36299. }
  36300. },
  36301. collar: {
  36302. height: math.unit(1.86, "meters"),
  36303. name: "Collar",
  36304. image: {
  36305. source: "./media/characters/sabrina/collar.svg"
  36306. }
  36307. },
  36308. eye: {
  36309. height: math.unit(0.53, "meters"),
  36310. name: "Eye",
  36311. image: {
  36312. source: "./media/characters/sabrina/eye.svg"
  36313. }
  36314. },
  36315. foot: {
  36316. height: math.unit(1.86, "meters"),
  36317. name: "Foot",
  36318. image: {
  36319. source: "./media/characters/sabrina/foot.svg"
  36320. }
  36321. },
  36322. hand: {
  36323. height: math.unit(1.32, "meters"),
  36324. name: "Hand",
  36325. image: {
  36326. source: "./media/characters/sabrina/hand.svg"
  36327. }
  36328. },
  36329. head: {
  36330. height: math.unit(2.44, "meters"),
  36331. name: "Head",
  36332. image: {
  36333. source: "./media/characters/sabrina/head.svg"
  36334. }
  36335. },
  36336. headAngry: {
  36337. height: math.unit(2.44, "meters"),
  36338. name: "Head (Angry))",
  36339. image: {
  36340. source: "./media/characters/sabrina/head-angry.svg"
  36341. }
  36342. },
  36343. maw: {
  36344. height: math.unit(1.65, "meters"),
  36345. name: "Maw",
  36346. image: {
  36347. source: "./media/characters/sabrina/maw.svg"
  36348. }
  36349. },
  36350. spikes: {
  36351. height: math.unit(1.69, "meters"),
  36352. name: "Spikes",
  36353. image: {
  36354. source: "./media/characters/sabrina/spikes.svg"
  36355. }
  36356. },
  36357. stomach: {
  36358. height: math.unit(1.15, "meters"),
  36359. name: "Stomach",
  36360. image: {
  36361. source: "./media/characters/sabrina/stomach.svg"
  36362. }
  36363. },
  36364. tongue: {
  36365. height: math.unit(1.27, "meters"),
  36366. name: "Tongue",
  36367. image: {
  36368. source: "./media/characters/sabrina/tongue.svg"
  36369. }
  36370. },
  36371. wingDorsal: {
  36372. height: math.unit(4.85, "meters"),
  36373. name: "Wing (Dorsal)",
  36374. image: {
  36375. source: "./media/characters/sabrina/wing-dorsal.svg"
  36376. }
  36377. },
  36378. wingVentral: {
  36379. height: math.unit(4.85, "meters"),
  36380. name: "Wing (Ventral)",
  36381. image: {
  36382. source: "./media/characters/sabrina/wing-ventral.svg"
  36383. }
  36384. },
  36385. },
  36386. [
  36387. {
  36388. name: "Normal",
  36389. height: math.unit(5, "meters"),
  36390. default: true
  36391. },
  36392. ]
  36393. ))
  36394. characterMakers.push(() => makeCharacter(
  36395. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36396. {
  36397. frontMaid: {
  36398. height: math.unit(5 + 5/12, "feet"),
  36399. weight: math.unit(130, "lb"),
  36400. name: "Front (Maid)",
  36401. image: {
  36402. source: "./media/characters/midnight-tales/front-maid.svg",
  36403. extra: 489/454,
  36404. bottom: 61/550
  36405. }
  36406. },
  36407. frontFormal: {
  36408. height: math.unit(5 + 5/12, "feet"),
  36409. weight: math.unit(130, "lb"),
  36410. name: "Front (Formal)",
  36411. image: {
  36412. source: "./media/characters/midnight-tales/front-formal.svg",
  36413. extra: 489/454,
  36414. bottom: 61/550
  36415. }
  36416. },
  36417. back: {
  36418. height: math.unit(5 + 5/12, "feet"),
  36419. weight: math.unit(130, "lb"),
  36420. name: "Back",
  36421. image: {
  36422. source: "./media/characters/midnight-tales/back.svg",
  36423. extra: 498/456,
  36424. bottom: 33/531
  36425. }
  36426. },
  36427. frontBeast: {
  36428. height: math.unit(40, "feet"),
  36429. weight: math.unit(64000, "lb"),
  36430. name: "Front (Beast)",
  36431. image: {
  36432. source: "./media/characters/midnight-tales/front-beast.svg",
  36433. extra: 927/860,
  36434. bottom: 53/980
  36435. }
  36436. },
  36437. backBeast: {
  36438. height: math.unit(40, "feet"),
  36439. weight: math.unit(64000, "lb"),
  36440. name: "Back (Beast)",
  36441. image: {
  36442. source: "./media/characters/midnight-tales/back-beast.svg",
  36443. extra: 929/855,
  36444. bottom: 16/945
  36445. }
  36446. },
  36447. footBeast: {
  36448. height: math.unit(6.7, "feet"),
  36449. name: "Foot (Beast)",
  36450. image: {
  36451. source: "./media/characters/midnight-tales/foot-beast.svg"
  36452. }
  36453. },
  36454. headBeast: {
  36455. height: math.unit(8, "feet"),
  36456. name: "Head (Beast)",
  36457. image: {
  36458. source: "./media/characters/midnight-tales/head-beast.svg"
  36459. }
  36460. },
  36461. },
  36462. [
  36463. {
  36464. name: "Normal",
  36465. height: math.unit(5 + 5 / 12, "feet"),
  36466. default: true
  36467. },
  36468. {
  36469. name: "Macro",
  36470. height: math.unit(25, "feet")
  36471. },
  36472. ]
  36473. ))
  36474. characterMakers.push(() => makeCharacter(
  36475. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36476. {
  36477. front: {
  36478. height: math.unit(5 + 10/12, "feet"),
  36479. name: "Front",
  36480. image: {
  36481. source: "./media/characters/argon/front.svg",
  36482. extra: 2009/1935,
  36483. bottom: 118/2127
  36484. }
  36485. },
  36486. back: {
  36487. height: math.unit(5 + 10/12, "feet"),
  36488. name: "Back",
  36489. image: {
  36490. source: "./media/characters/argon/back.svg",
  36491. extra: 2047/1992,
  36492. bottom: 20/2067
  36493. }
  36494. },
  36495. frontDressed: {
  36496. height: math.unit(5 + 10/12, "feet"),
  36497. name: "Front (Dressed)",
  36498. image: {
  36499. source: "./media/characters/argon/front-dressed.svg",
  36500. extra: 2009/1935,
  36501. bottom: 118/2127
  36502. }
  36503. },
  36504. },
  36505. [
  36506. {
  36507. name: "Normal",
  36508. height: math.unit(5 + 10/12, "feet"),
  36509. default: true
  36510. },
  36511. ]
  36512. ))
  36513. characterMakers.push(() => makeCharacter(
  36514. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36515. {
  36516. front: {
  36517. height: math.unit(8 + 6/12, "feet"),
  36518. weight: math.unit(1150, "lb"),
  36519. name: "Front",
  36520. image: {
  36521. source: "./media/characters/kichi/front.svg",
  36522. extra: 1267/1164,
  36523. bottom: 61/1328
  36524. }
  36525. },
  36526. back: {
  36527. height: math.unit(8 + 6/12, "feet"),
  36528. weight: math.unit(1150, "lb"),
  36529. name: "Back",
  36530. image: {
  36531. source: "./media/characters/kichi/back.svg",
  36532. extra: 1273/1166,
  36533. bottom: 33/1306
  36534. }
  36535. },
  36536. },
  36537. [
  36538. {
  36539. name: "Normal",
  36540. height: math.unit(8 + 6/12, "feet"),
  36541. default: true
  36542. },
  36543. ]
  36544. ))
  36545. characterMakers.push(() => makeCharacter(
  36546. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36547. {
  36548. front: {
  36549. height: math.unit(6, "feet"),
  36550. weight: math.unit(210, "lb"),
  36551. name: "Front",
  36552. image: {
  36553. source: "./media/characters/manetel-greyscale/front.svg",
  36554. extra: 350/312,
  36555. bottom: 8/358
  36556. }
  36557. },
  36558. },
  36559. [
  36560. {
  36561. name: "Micro",
  36562. height: math.unit(2, "inches")
  36563. },
  36564. {
  36565. name: "Normal",
  36566. height: math.unit(6, "feet"),
  36567. default: true
  36568. },
  36569. {
  36570. name: "Minimacro",
  36571. height: math.unit(17, "feet")
  36572. },
  36573. {
  36574. name: "Macro",
  36575. height: math.unit(117, "feet")
  36576. },
  36577. ]
  36578. ))
  36579. characterMakers.push(() => makeCharacter(
  36580. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36581. {
  36582. side: {
  36583. height: math.unit(5 + 1/12, "feet"),
  36584. weight: math.unit(418, "lb"),
  36585. name: "Side",
  36586. image: {
  36587. source: "./media/characters/softpurr/side.svg",
  36588. extra: 1993/1945,
  36589. bottom: 134/2127
  36590. }
  36591. },
  36592. front: {
  36593. height: math.unit(5 + 1/12, "feet"),
  36594. weight: math.unit(418, "lb"),
  36595. name: "Front",
  36596. image: {
  36597. source: "./media/characters/softpurr/front.svg",
  36598. extra: 1950/1856,
  36599. bottom: 174/2124
  36600. }
  36601. },
  36602. paw: {
  36603. height: math.unit(1, "feet"),
  36604. name: "Paw",
  36605. image: {
  36606. source: "./media/characters/softpurr/paw.svg"
  36607. }
  36608. },
  36609. },
  36610. [
  36611. {
  36612. name: "Normal",
  36613. height: math.unit(5 + 1/12, "feet"),
  36614. default: true
  36615. },
  36616. ]
  36617. ))
  36618. characterMakers.push(() => makeCharacter(
  36619. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36620. {
  36621. front: {
  36622. height: math.unit(260, "meters"),
  36623. name: "Front",
  36624. image: {
  36625. source: "./media/characters/anahita/front.svg",
  36626. extra: 665/635,
  36627. bottom: 89/754
  36628. }
  36629. },
  36630. },
  36631. [
  36632. {
  36633. name: "Macro",
  36634. height: math.unit(260, "meters"),
  36635. default: true
  36636. },
  36637. ]
  36638. ))
  36639. characterMakers.push(() => makeCharacter(
  36640. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36641. {
  36642. front: {
  36643. height: math.unit(4 + 10/12, "feet"),
  36644. weight: math.unit(160, "lb"),
  36645. name: "Front",
  36646. image: {
  36647. source: "./media/characters/chip-mouse/front.svg",
  36648. extra: 3528/3408,
  36649. bottom: 0/3528
  36650. }
  36651. },
  36652. frontNsfw: {
  36653. height: math.unit(4 + 10/12, "feet"),
  36654. weight: math.unit(160, "lb"),
  36655. name: "Front (NSFW)",
  36656. image: {
  36657. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36658. extra: 3528/3408,
  36659. bottom: 0/3528
  36660. }
  36661. },
  36662. },
  36663. [
  36664. {
  36665. name: "Normal",
  36666. height: math.unit(4 + 10/12, "feet"),
  36667. default: true
  36668. },
  36669. ]
  36670. ))
  36671. characterMakers.push(() => makeCharacter(
  36672. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36673. {
  36674. side: {
  36675. height: math.unit(10, "feet"),
  36676. weight: math.unit(14000, "lb"),
  36677. name: "Side",
  36678. image: {
  36679. source: "./media/characters/kremm/side.svg",
  36680. extra: 1390/1053,
  36681. bottom: 90/1480
  36682. }
  36683. },
  36684. gut: {
  36685. height: math.unit(5.8, "feet"),
  36686. name: "Gut",
  36687. image: {
  36688. source: "./media/characters/kremm/gut.svg"
  36689. }
  36690. },
  36691. ass: {
  36692. height: math.unit(6.1, "feet"),
  36693. name: "Ass",
  36694. image: {
  36695. source: "./media/characters/kremm/ass.svg"
  36696. }
  36697. },
  36698. jaws: {
  36699. height: math.unit(2.2, "feet"),
  36700. name: "Jaws",
  36701. image: {
  36702. source: "./media/characters/kremm/jaws.svg"
  36703. }
  36704. },
  36705. dick: {
  36706. height: math.unit(4.26, "feet"),
  36707. name: "Dick",
  36708. image: {
  36709. source: "./media/characters/kremm/dick.svg"
  36710. }
  36711. },
  36712. },
  36713. [
  36714. {
  36715. name: "Normal",
  36716. height: math.unit(10, "feet"),
  36717. default: true
  36718. },
  36719. ]
  36720. ))
  36721. characterMakers.push(() => makeCharacter(
  36722. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36723. {
  36724. front: {
  36725. height: math.unit(30, "stories"),
  36726. name: "Front",
  36727. image: {
  36728. source: "./media/characters/kai/front.svg",
  36729. extra: 1892/1718,
  36730. bottom: 162/2054
  36731. }
  36732. },
  36733. },
  36734. [
  36735. {
  36736. name: "Macro",
  36737. height: math.unit(30, "stories"),
  36738. default: true
  36739. },
  36740. ]
  36741. ))
  36742. characterMakers.push(() => makeCharacter(
  36743. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36744. {
  36745. front: {
  36746. height: math.unit(6 + 4/12, "feet"),
  36747. weight: math.unit(145, "lb"),
  36748. name: "Front",
  36749. image: {
  36750. source: "./media/characters/sykes/front.svg",
  36751. extra: 1321 / 1187,
  36752. bottom: 66 / 1387
  36753. }
  36754. },
  36755. back: {
  36756. height: math.unit(6 + 4/12, "feet"),
  36757. weight: math.unit(145, "lb"),
  36758. name: "Back",
  36759. image: {
  36760. source: "./media/characters/sykes/back.svg",
  36761. extra: 1326/1181,
  36762. bottom: 31/1357
  36763. }
  36764. },
  36765. traditionalOutfit: {
  36766. height: math.unit(6 + 4/12, "feet"),
  36767. weight: math.unit(145, "lb"),
  36768. name: "Traditional Outfit",
  36769. image: {
  36770. source: "./media/characters/sykes/traditional-outfit.svg",
  36771. extra: 1321 / 1187,
  36772. bottom: 66 / 1387
  36773. }
  36774. },
  36775. adventureOutfit: {
  36776. height: math.unit(6 + 4/12, "feet"),
  36777. weight: math.unit(145, "lb"),
  36778. name: "Adventure Outfit",
  36779. image: {
  36780. source: "./media/characters/sykes/adventure-outfit.svg",
  36781. extra: 1321 / 1187,
  36782. bottom: 66 / 1387
  36783. }
  36784. },
  36785. handLeft: {
  36786. height: math.unit(0.9, "feet"),
  36787. name: "Hand (Left)",
  36788. image: {
  36789. source: "./media/characters/sykes/hand-left.svg"
  36790. }
  36791. },
  36792. handRight: {
  36793. height: math.unit(0.839, "feet"),
  36794. name: "Hand (Right)",
  36795. image: {
  36796. source: "./media/characters/sykes/hand-right.svg"
  36797. }
  36798. },
  36799. leftFoot: {
  36800. height: math.unit(1.2, "feet"),
  36801. name: "Foot (Left)",
  36802. image: {
  36803. source: "./media/characters/sykes/foot-left.svg"
  36804. }
  36805. },
  36806. rightFoot: {
  36807. height: math.unit(1.2, "feet"),
  36808. name: "Foot (Right)",
  36809. image: {
  36810. source: "./media/characters/sykes/foot-right.svg"
  36811. }
  36812. },
  36813. maw: {
  36814. height: math.unit(1.93, "feet"),
  36815. name: "Maw",
  36816. image: {
  36817. source: "./media/characters/sykes/maw.svg"
  36818. }
  36819. },
  36820. teeth: {
  36821. height: math.unit(0.51, "feet"),
  36822. name: "Teeth",
  36823. image: {
  36824. source: "./media/characters/sykes/teeth.svg"
  36825. }
  36826. },
  36827. tongue: {
  36828. height: math.unit(2.13, "feet"),
  36829. name: "Tongue",
  36830. image: {
  36831. source: "./media/characters/sykes/tongue.svg"
  36832. }
  36833. },
  36834. uvula: {
  36835. height: math.unit(0.16, "feet"),
  36836. name: "Uvula",
  36837. image: {
  36838. source: "./media/characters/sykes/uvula.svg"
  36839. }
  36840. },
  36841. collar: {
  36842. height: math.unit(0.287, "feet"),
  36843. name: "Collar",
  36844. image: {
  36845. source: "./media/characters/sykes/collar.svg"
  36846. }
  36847. },
  36848. tail: {
  36849. height: math.unit(3.8, "feet"),
  36850. name: "Tail",
  36851. image: {
  36852. source: "./media/characters/sykes/tail.svg"
  36853. }
  36854. },
  36855. },
  36856. [
  36857. {
  36858. name: "Shrunken",
  36859. height: math.unit(5, "inches")
  36860. },
  36861. {
  36862. name: "Normal",
  36863. height: math.unit(6 + 4 / 12, "feet"),
  36864. default: true
  36865. },
  36866. {
  36867. name: "Big",
  36868. height: math.unit(15, "feet")
  36869. },
  36870. ]
  36871. ))
  36872. characterMakers.push(() => makeCharacter(
  36873. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36874. {
  36875. front: {
  36876. height: math.unit(5 + 8/12, "feet"),
  36877. weight: math.unit(190, "lb"),
  36878. name: "Front",
  36879. image: {
  36880. source: "./media/characters/oven-otter/front.svg",
  36881. extra: 1809/1740,
  36882. bottom: 181/1990
  36883. }
  36884. },
  36885. back: {
  36886. height: math.unit(5 + 8/12, "feet"),
  36887. weight: math.unit(190, "lb"),
  36888. name: "Back",
  36889. image: {
  36890. source: "./media/characters/oven-otter/back.svg",
  36891. extra: 1709/1635,
  36892. bottom: 118/1827
  36893. }
  36894. },
  36895. hand: {
  36896. height: math.unit(1.07, "feet"),
  36897. name: "Hand",
  36898. image: {
  36899. source: "./media/characters/oven-otter/hand.svg"
  36900. }
  36901. },
  36902. beans: {
  36903. height: math.unit(1.74, "feet"),
  36904. name: "Beans",
  36905. image: {
  36906. source: "./media/characters/oven-otter/beans.svg"
  36907. }
  36908. },
  36909. },
  36910. [
  36911. {
  36912. name: "Micro",
  36913. height: math.unit(0.5, "inches")
  36914. },
  36915. {
  36916. name: "Normal",
  36917. height: math.unit(5 + 8/12, "feet"),
  36918. default: true
  36919. },
  36920. {
  36921. name: "Macro",
  36922. height: math.unit(250, "feet")
  36923. },
  36924. {
  36925. name: "Really High",
  36926. height: math.unit(420, "feet")
  36927. },
  36928. ]
  36929. ))
  36930. characterMakers.push(() => makeCharacter(
  36931. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36932. {
  36933. front: {
  36934. height: math.unit(5, "meters"),
  36935. weight: math.unit(292000000000000, "kg"),
  36936. name: "Front",
  36937. image: {
  36938. source: "./media/characters/devourer/front.svg",
  36939. extra: 1800/1733,
  36940. bottom: 211/2011
  36941. }
  36942. },
  36943. maw: {
  36944. height: math.unit(1.1, "meter"),
  36945. name: "Maw",
  36946. image: {
  36947. source: "./media/characters/devourer/maw.svg"
  36948. }
  36949. },
  36950. },
  36951. [
  36952. {
  36953. name: "Small",
  36954. height: math.unit(3, "meters")
  36955. },
  36956. {
  36957. name: "Large",
  36958. height: math.unit(5, "meters"),
  36959. default: true
  36960. },
  36961. ]
  36962. ))
  36963. characterMakers.push(() => makeCharacter(
  36964. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36965. {
  36966. front: {
  36967. height: math.unit(6, "feet"),
  36968. weight: math.unit(400, "lb"),
  36969. name: "Front",
  36970. image: {
  36971. source: "./media/characters/ellarby/front.svg",
  36972. extra: 1909/1763,
  36973. bottom: 80/1989
  36974. }
  36975. },
  36976. back: {
  36977. height: math.unit(6, "feet"),
  36978. weight: math.unit(400, "lb"),
  36979. name: "Back",
  36980. image: {
  36981. source: "./media/characters/ellarby/back.svg",
  36982. extra: 1914/1784,
  36983. bottom: 172/2086
  36984. }
  36985. },
  36986. },
  36987. [
  36988. {
  36989. name: "Mischief",
  36990. height: math.unit(18, "inches")
  36991. },
  36992. {
  36993. name: "Trouble",
  36994. height: math.unit(12, "feet")
  36995. },
  36996. {
  36997. name: "Havoc",
  36998. height: math.unit(200, "feet"),
  36999. default: true
  37000. },
  37001. {
  37002. name: "Pandemonium",
  37003. height: math.unit(1, "mile")
  37004. },
  37005. {
  37006. name: "Catastrophe",
  37007. height: math.unit(100, "miles")
  37008. },
  37009. ]
  37010. ))
  37011. characterMakers.push(() => makeCharacter(
  37012. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37013. {
  37014. front: {
  37015. height: math.unit(4.7, "meters"),
  37016. weight: math.unit(6500, "kg"),
  37017. name: "Front",
  37018. image: {
  37019. source: "./media/characters/vex/front.svg",
  37020. extra: 1288/1140,
  37021. bottom: 100/1388
  37022. }
  37023. },
  37024. },
  37025. [
  37026. {
  37027. name: "Normal",
  37028. height: math.unit(4.7, "meters"),
  37029. default: true
  37030. },
  37031. ]
  37032. ))
  37033. characterMakers.push(() => makeCharacter(
  37034. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37035. {
  37036. normal: {
  37037. height: math.unit(6, "feet"),
  37038. weight: math.unit(350, "lb"),
  37039. name: "Normal",
  37040. image: {
  37041. source: "./media/characters/teshy/normal.svg",
  37042. extra: 1795/1735,
  37043. bottom: 16/1811
  37044. }
  37045. },
  37046. monsterFront: {
  37047. height: math.unit(12, "feet"),
  37048. weight: math.unit(4700, "lb"),
  37049. name: "Monster (Front)",
  37050. image: {
  37051. source: "./media/characters/teshy/monster-front.svg",
  37052. extra: 2042/2034,
  37053. bottom: 128/2170
  37054. }
  37055. },
  37056. monsterSide: {
  37057. height: math.unit(12, "feet"),
  37058. weight: math.unit(4700, "lb"),
  37059. name: "Monster (Side)",
  37060. image: {
  37061. source: "./media/characters/teshy/monster-side.svg",
  37062. extra: 2067/2056,
  37063. bottom: 70/2137
  37064. }
  37065. },
  37066. monsterBack: {
  37067. height: math.unit(12, "feet"),
  37068. weight: math.unit(4700, "lb"),
  37069. name: "Monster (Back)",
  37070. image: {
  37071. source: "./media/characters/teshy/monster-back.svg",
  37072. extra: 1921/1914,
  37073. bottom: 171/2092
  37074. }
  37075. },
  37076. },
  37077. [
  37078. {
  37079. name: "Normal",
  37080. height: math.unit(6, "feet"),
  37081. default: true
  37082. },
  37083. ]
  37084. ))
  37085. characterMakers.push(() => makeCharacter(
  37086. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37087. {
  37088. front: {
  37089. height: math.unit(6, "feet"),
  37090. name: "Front",
  37091. image: {
  37092. source: "./media/characters/ramey/front.svg",
  37093. extra: 790/787,
  37094. bottom: 27/817
  37095. }
  37096. },
  37097. },
  37098. [
  37099. {
  37100. name: "Normal",
  37101. height: math.unit(6, "feet"),
  37102. default: true
  37103. },
  37104. ]
  37105. ))
  37106. characterMakers.push(() => makeCharacter(
  37107. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37108. {
  37109. front: {
  37110. height: math.unit(5 + 5/12, "feet"),
  37111. weight: math.unit(120, "lb"),
  37112. name: "Front",
  37113. image: {
  37114. source: "./media/characters/phirae/front.svg",
  37115. extra: 2491/2436,
  37116. bottom: 38/2529
  37117. }
  37118. },
  37119. },
  37120. [
  37121. {
  37122. name: "Normal",
  37123. height: math.unit(5 + 5/12, "feet"),
  37124. default: true
  37125. },
  37126. ]
  37127. ))
  37128. characterMakers.push(() => makeCharacter(
  37129. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37130. {
  37131. front: {
  37132. height: math.unit(5 + 3/12, "feet"),
  37133. name: "Front",
  37134. image: {
  37135. source: "./media/characters/stagglas/front.svg",
  37136. extra: 962/882,
  37137. bottom: 53/1015
  37138. }
  37139. },
  37140. feral: {
  37141. height: math.unit(335, "cm"),
  37142. name: "Feral",
  37143. image: {
  37144. source: "./media/characters/stagglas/feral.svg",
  37145. extra: 1732/1090,
  37146. bottom: 48/1780
  37147. }
  37148. },
  37149. },
  37150. [
  37151. {
  37152. name: "Normal",
  37153. height: math.unit(5 + 3/12, "feet"),
  37154. default: true
  37155. },
  37156. ]
  37157. ))
  37158. characterMakers.push(() => makeCharacter(
  37159. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37160. {
  37161. front: {
  37162. height: math.unit(5 + 4/12, "feet"),
  37163. weight: math.unit(145, "lb"),
  37164. name: "Front",
  37165. image: {
  37166. source: "./media/characters/starra/front.svg",
  37167. extra: 1790/1691,
  37168. bottom: 91/1881
  37169. }
  37170. },
  37171. },
  37172. [
  37173. {
  37174. name: "Normal",
  37175. height: math.unit(5 + 4/12, "feet"),
  37176. default: true
  37177. },
  37178. ]
  37179. ))
  37180. characterMakers.push(() => makeCharacter(
  37181. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37182. {
  37183. front: {
  37184. height: math.unit(3.5, "meters"),
  37185. name: "Front",
  37186. image: {
  37187. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37188. extra: 1248/972,
  37189. bottom: 38/1286
  37190. }
  37191. },
  37192. },
  37193. [
  37194. {
  37195. name: "Normal",
  37196. height: math.unit(3.5, "meters"),
  37197. default: true
  37198. },
  37199. ]
  37200. ))
  37201. characterMakers.push(() => makeCharacter(
  37202. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37203. {
  37204. side: {
  37205. height: math.unit(8 + 2/12, "feet"),
  37206. weight: math.unit(1240, "lb"),
  37207. name: "Side",
  37208. image: {
  37209. source: "./media/characters/mika-valentine/side.svg",
  37210. extra: 2670/2501,
  37211. bottom: 250/2920
  37212. }
  37213. },
  37214. },
  37215. [
  37216. {
  37217. name: "Normal",
  37218. height: math.unit(8 + 2/12, "feet"),
  37219. default: true
  37220. },
  37221. ]
  37222. ))
  37223. characterMakers.push(() => makeCharacter(
  37224. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37225. {
  37226. front: {
  37227. height: math.unit(7 + 2/12, "feet"),
  37228. name: "Front",
  37229. image: {
  37230. source: "./media/characters/xoltol/front.svg",
  37231. extra: 2212/2124,
  37232. bottom: 84/2296
  37233. }
  37234. },
  37235. side: {
  37236. height: math.unit(7 + 2/12, "feet"),
  37237. name: "Side",
  37238. image: {
  37239. source: "./media/characters/xoltol/side.svg",
  37240. extra: 2273/2197,
  37241. bottom: 26/2299
  37242. }
  37243. },
  37244. hand: {
  37245. height: math.unit(2.5, "feet"),
  37246. name: "Hand",
  37247. image: {
  37248. source: "./media/characters/xoltol/hand.svg"
  37249. }
  37250. },
  37251. },
  37252. [
  37253. {
  37254. name: "Small-ish",
  37255. height: math.unit(5 + 11/12, "feet")
  37256. },
  37257. {
  37258. name: "Normal",
  37259. height: math.unit(7 + 2/12, "feet")
  37260. },
  37261. {
  37262. name: "\"Macro\"",
  37263. height: math.unit(14 + 9/12, "feet"),
  37264. default: true
  37265. },
  37266. {
  37267. name: "Alternate Height",
  37268. height: math.unit(20, "feet")
  37269. },
  37270. {
  37271. name: "Actually Macro",
  37272. height: math.unit(100, "feet")
  37273. },
  37274. ]
  37275. ))
  37276. characterMakers.push(() => makeCharacter(
  37277. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37278. {
  37279. front: {
  37280. height: math.unit(5 + 2/12, "feet"),
  37281. weight: math.unit(75, "kg"),
  37282. name: "Front",
  37283. image: {
  37284. source: "./media/characters/kotetsu-redwood/front.svg",
  37285. extra: 1053/942,
  37286. bottom: 60/1113
  37287. }
  37288. },
  37289. },
  37290. [
  37291. {
  37292. name: "Normal",
  37293. height: math.unit(5 + 2/12, "feet"),
  37294. default: true
  37295. },
  37296. ]
  37297. ))
  37298. characterMakers.push(() => makeCharacter(
  37299. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37300. {
  37301. front: {
  37302. height: math.unit(2.4, "meters"),
  37303. weight: math.unit(125, "kg"),
  37304. name: "Front",
  37305. image: {
  37306. source: "./media/characters/lilith/front.svg",
  37307. extra: 1590/1513,
  37308. bottom: 203/1793
  37309. }
  37310. },
  37311. },
  37312. [
  37313. {
  37314. name: "Humanoid",
  37315. height: math.unit(2.4, "meters")
  37316. },
  37317. {
  37318. name: "Normal",
  37319. height: math.unit(6, "meters"),
  37320. default: true
  37321. },
  37322. {
  37323. name: "Largest",
  37324. height: math.unit(55, "meters")
  37325. },
  37326. ]
  37327. ))
  37328. characterMakers.push(() => makeCharacter(
  37329. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37330. {
  37331. front: {
  37332. height: math.unit(8 + 4/12, "feet"),
  37333. weight: math.unit(535, "lb"),
  37334. name: "Front",
  37335. image: {
  37336. source: "./media/characters/beh'kah-bolger/front.svg",
  37337. extra: 1660/1603,
  37338. bottom: 37/1697
  37339. }
  37340. },
  37341. },
  37342. [
  37343. {
  37344. name: "Normal",
  37345. height: math.unit(8 + 4/12, "feet"),
  37346. default: true
  37347. },
  37348. {
  37349. name: "Kaiju",
  37350. height: math.unit(250, "feet")
  37351. },
  37352. {
  37353. name: "Still Growing",
  37354. height: math.unit(10, "miles")
  37355. },
  37356. {
  37357. name: "Continental",
  37358. height: math.unit(5000, "miles")
  37359. },
  37360. {
  37361. name: "Final Form",
  37362. height: math.unit(2500000, "miles")
  37363. },
  37364. ]
  37365. ))
  37366. characterMakers.push(() => makeCharacter(
  37367. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37368. {
  37369. front: {
  37370. height: math.unit(7 + 2/12, "feet"),
  37371. weight: math.unit(230, "kg"),
  37372. name: "Front",
  37373. image: {
  37374. source: "./media/characters/tatyana-milewska/front.svg",
  37375. extra: 1199/1150,
  37376. bottom: 86/1285
  37377. }
  37378. },
  37379. },
  37380. [
  37381. {
  37382. name: "Normal",
  37383. height: math.unit(7 + 2/12, "feet"),
  37384. default: true
  37385. },
  37386. {
  37387. name: "Big",
  37388. height: math.unit(12, "feet")
  37389. },
  37390. {
  37391. name: "Minimacro",
  37392. height: math.unit(20, "feet")
  37393. },
  37394. {
  37395. name: "Macro",
  37396. height: math.unit(120, "feet")
  37397. },
  37398. ]
  37399. ))
  37400. characterMakers.push(() => makeCharacter(
  37401. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37402. {
  37403. front: {
  37404. height: math.unit(7 + 8/12, "feet"),
  37405. weight: math.unit(152, "kg"),
  37406. name: "Front",
  37407. image: {
  37408. source: "./media/characters/helen-arri/front.svg",
  37409. extra: 440/423,
  37410. bottom: 14/454
  37411. }
  37412. },
  37413. back: {
  37414. height: math.unit(7 + 8/12, "feet"),
  37415. weight: math.unit(152, "kg"),
  37416. name: "Back",
  37417. image: {
  37418. source: "./media/characters/helen-arri/back.svg",
  37419. extra: 443/426,
  37420. bottom: 8/451
  37421. }
  37422. },
  37423. },
  37424. [
  37425. {
  37426. name: "Normal",
  37427. height: math.unit(7 + 8/12, "feet"),
  37428. default: true
  37429. },
  37430. {
  37431. name: "Big",
  37432. height: math.unit(14, "feet")
  37433. },
  37434. {
  37435. name: "Minimacro",
  37436. height: math.unit(24, "feet")
  37437. },
  37438. {
  37439. name: "Macro",
  37440. height: math.unit(140, "feet")
  37441. },
  37442. ]
  37443. ))
  37444. characterMakers.push(() => makeCharacter(
  37445. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37446. {
  37447. front: {
  37448. height: math.unit(6, "meters"),
  37449. name: "Front",
  37450. image: {
  37451. source: "./media/characters/ehanu-rehu/front.svg",
  37452. extra: 1800/1800,
  37453. bottom: 59/1859
  37454. }
  37455. },
  37456. },
  37457. [
  37458. {
  37459. name: "Normal",
  37460. height: math.unit(6, "meters"),
  37461. default: true
  37462. },
  37463. ]
  37464. ))
  37465. characterMakers.push(() => makeCharacter(
  37466. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37467. {
  37468. front: {
  37469. height: math.unit(7 + 3/12, "feet"),
  37470. name: "Front",
  37471. image: {
  37472. source: "./media/characters/renholder/front.svg",
  37473. extra: 3096/2960,
  37474. bottom: 250/3346
  37475. }
  37476. },
  37477. },
  37478. [
  37479. {
  37480. name: "Normal Bat",
  37481. height: math.unit(7 + 3/12, "feet"),
  37482. default: true
  37483. },
  37484. {
  37485. name: "Slightly Tall Bat",
  37486. height: math.unit(100, "feet")
  37487. },
  37488. {
  37489. name: "Big Bat",
  37490. height: math.unit(1000, "feet")
  37491. },
  37492. {
  37493. name: "City-Sized Bat",
  37494. height: math.unit(200000, "feet")
  37495. },
  37496. {
  37497. name: "Bigger Bat",
  37498. height: math.unit(10000, "miles")
  37499. },
  37500. {
  37501. name: "Solar Sized Bat",
  37502. height: math.unit(100, "AU")
  37503. },
  37504. {
  37505. name: "Galactic Bat",
  37506. height: math.unit(200000, "lightyears")
  37507. },
  37508. {
  37509. name: "Universally Known Bat",
  37510. height: math.unit(1, "universe")
  37511. },
  37512. ]
  37513. ))
  37514. characterMakers.push(() => makeCharacter(
  37515. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37516. {
  37517. front: {
  37518. height: math.unit(6 + 11/12, "feet"),
  37519. weight: math.unit(250, "lb"),
  37520. name: "Front",
  37521. image: {
  37522. source: "./media/characters/cookiecat/front.svg",
  37523. extra: 893/827,
  37524. bottom: 14/907
  37525. }
  37526. },
  37527. },
  37528. [
  37529. {
  37530. name: "Micro",
  37531. height: math.unit(3, "inches")
  37532. },
  37533. {
  37534. name: "Normal",
  37535. height: math.unit(6 + 11/12, "feet"),
  37536. default: true
  37537. },
  37538. {
  37539. name: "Macro",
  37540. height: math.unit(100, "feet")
  37541. },
  37542. {
  37543. name: "Macro+",
  37544. height: math.unit(404, "feet")
  37545. },
  37546. {
  37547. name: "Megamacro",
  37548. height: math.unit(165, "miles")
  37549. },
  37550. {
  37551. name: "Planetary",
  37552. height: math.unit(4600, "miles")
  37553. },
  37554. ]
  37555. ))
  37556. characterMakers.push(() => makeCharacter(
  37557. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37558. {
  37559. front: {
  37560. height: math.unit(10 + 3/12, "feet"),
  37561. weight: math.unit(1500, "lb"),
  37562. name: "Front",
  37563. image: {
  37564. source: "./media/characters/tux-kusanagi/front.svg",
  37565. extra: 944/840,
  37566. bottom: 39/983
  37567. }
  37568. },
  37569. back: {
  37570. height: math.unit(10 + 3/12, "feet"),
  37571. weight: math.unit(1500, "lb"),
  37572. name: "Back",
  37573. image: {
  37574. source: "./media/characters/tux-kusanagi/back.svg",
  37575. extra: 941/842,
  37576. bottom: 28/969
  37577. }
  37578. },
  37579. rump: {
  37580. height: math.unit(5.25, "feet"),
  37581. name: "Rump",
  37582. image: {
  37583. source: "./media/characters/tux-kusanagi/rump.svg"
  37584. }
  37585. },
  37586. beak: {
  37587. height: math.unit(1.54, "feet"),
  37588. name: "Beak",
  37589. image: {
  37590. source: "./media/characters/tux-kusanagi/beak.svg"
  37591. }
  37592. },
  37593. },
  37594. [
  37595. {
  37596. name: "Normal",
  37597. height: math.unit(10 + 3/12, "feet"),
  37598. default: true
  37599. },
  37600. ]
  37601. ))
  37602. characterMakers.push(() => makeCharacter(
  37603. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37604. {
  37605. front: {
  37606. height: math.unit(58, "feet"),
  37607. weight: math.unit(200, "tons"),
  37608. name: "Front",
  37609. image: {
  37610. source: "./media/characters/uzarmazari/front.svg",
  37611. extra: 1575/1455,
  37612. bottom: 152/1727
  37613. }
  37614. },
  37615. back: {
  37616. height: math.unit(58, "feet"),
  37617. weight: math.unit(200, "tons"),
  37618. name: "Back",
  37619. image: {
  37620. source: "./media/characters/uzarmazari/back.svg",
  37621. extra: 1585/1510,
  37622. bottom: 157/1742
  37623. }
  37624. },
  37625. head: {
  37626. height: math.unit(26, "feet"),
  37627. name: "Head",
  37628. image: {
  37629. source: "./media/characters/uzarmazari/head.svg"
  37630. }
  37631. },
  37632. },
  37633. [
  37634. {
  37635. name: "Normal",
  37636. height: math.unit(58, "feet"),
  37637. default: true
  37638. },
  37639. ]
  37640. ))
  37641. characterMakers.push(() => makeCharacter(
  37642. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37643. {
  37644. side: {
  37645. height: math.unit(15, "feet"),
  37646. name: "Side",
  37647. image: {
  37648. source: "./media/characters/akitu/side.svg",
  37649. extra: 1421/1321,
  37650. bottom: 157/1578
  37651. }
  37652. },
  37653. front: {
  37654. height: math.unit(15, "feet"),
  37655. name: "Front",
  37656. image: {
  37657. source: "./media/characters/akitu/front.svg",
  37658. extra: 1435/1326,
  37659. bottom: 232/1667
  37660. }
  37661. },
  37662. },
  37663. [
  37664. {
  37665. name: "Normal",
  37666. height: math.unit(15, "feet"),
  37667. default: true
  37668. },
  37669. ]
  37670. ))
  37671. characterMakers.push(() => makeCharacter(
  37672. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37673. {
  37674. front: {
  37675. height: math.unit(10 + 8/12, "feet"),
  37676. name: "Front",
  37677. image: {
  37678. source: "./media/characters/azalie-croixland/front.svg",
  37679. extra: 1972/1856,
  37680. bottom: 31/2003
  37681. }
  37682. },
  37683. },
  37684. [
  37685. {
  37686. name: "Original Height",
  37687. height: math.unit(5 + 4/12, "feet")
  37688. },
  37689. {
  37690. name: "Normal Height",
  37691. height: math.unit(10 + 8/12, "feet"),
  37692. default: true
  37693. },
  37694. ]
  37695. ))
  37696. characterMakers.push(() => makeCharacter(
  37697. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37698. {
  37699. side: {
  37700. height: math.unit(7 + 1/12, "feet"),
  37701. weight: math.unit(245, "lb"),
  37702. name: "Side",
  37703. image: {
  37704. source: "./media/characters/kavus-kazian/side.svg",
  37705. extra: 349/342,
  37706. bottom: 15/364
  37707. }
  37708. },
  37709. },
  37710. [
  37711. {
  37712. name: "Normal",
  37713. height: math.unit(7 + 1/12, "feet"),
  37714. default: true
  37715. },
  37716. ]
  37717. ))
  37718. characterMakers.push(() => makeCharacter(
  37719. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37720. {
  37721. normalFront: {
  37722. height: math.unit(5 + 11/12, "feet"),
  37723. name: "Front",
  37724. image: {
  37725. source: "./media/characters/moonlight-rose/normal-front.svg",
  37726. extra: 1980/1825,
  37727. bottom: 18/1998
  37728. },
  37729. form: "normal",
  37730. default: true
  37731. },
  37732. normalBack: {
  37733. height: math.unit(5 + 11/12, "feet"),
  37734. name: "Back",
  37735. image: {
  37736. source: "./media/characters/moonlight-rose/normal-back.svg",
  37737. extra: 2010/1839,
  37738. bottom: 10/2020
  37739. },
  37740. form: "normal"
  37741. },
  37742. demonFront: {
  37743. height: math.unit(1.5, "earths"),
  37744. name: "Front",
  37745. image: {
  37746. source: "./media/characters/moonlight-rose/demon.svg",
  37747. extra: 1400/1294,
  37748. bottom: 45/1445
  37749. },
  37750. form: "demon",
  37751. default: true
  37752. },
  37753. terraFront: {
  37754. height: math.unit(1.5, "earths"),
  37755. name: "Front",
  37756. image: {
  37757. source: "./media/characters/moonlight-rose/terra.svg"
  37758. },
  37759. form: "terra",
  37760. default: true
  37761. },
  37762. jupiterFront: {
  37763. height: math.unit(69911*2, "km"),
  37764. name: "Front",
  37765. image: {
  37766. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37767. extra: 1367/1286,
  37768. bottom: 55/1422
  37769. },
  37770. form: "jupiter",
  37771. default: true
  37772. },
  37773. neptuneFront: {
  37774. height: math.unit(24622*2, "feet"),
  37775. name: "Front",
  37776. image: {
  37777. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37778. extra: 1851/1712,
  37779. bottom: 0/1851
  37780. },
  37781. form: "neptune",
  37782. default: true
  37783. },
  37784. },
  37785. [
  37786. {
  37787. name: "\"Natural\" Height",
  37788. height: math.unit(5 + 11/12, "feet"),
  37789. form: "normal"
  37790. },
  37791. {
  37792. name: "Smallest comfortable size",
  37793. height: math.unit(40, "meters"),
  37794. form: "normal"
  37795. },
  37796. {
  37797. name: "Common size",
  37798. height: math.unit(50, "km"),
  37799. form: "normal",
  37800. default: true
  37801. },
  37802. {
  37803. name: "Normal",
  37804. height: math.unit(1.5, "earths"),
  37805. form: "demon",
  37806. default: true
  37807. },
  37808. {
  37809. name: "Universal",
  37810. height: math.unit(15, "universes"),
  37811. form: "demon"
  37812. },
  37813. {
  37814. name: "Earth",
  37815. height: math.unit(1.5, "earths"),
  37816. form: "terra",
  37817. default: true
  37818. },
  37819. {
  37820. name: "Super Earth",
  37821. height: math.unit(67.5, "earths"),
  37822. form: "terra"
  37823. },
  37824. {
  37825. name: "Doesn't fit in a solar system...",
  37826. height: math.unit(1, "galaxy"),
  37827. form: "terra"
  37828. },
  37829. {
  37830. name: "Saturn",
  37831. height: math.unit(58232*2, "km"),
  37832. form: "jupiter"
  37833. },
  37834. {
  37835. name: "Jupiter",
  37836. height: math.unit(69911*2, "km"),
  37837. form: "jupiter",
  37838. default: true
  37839. },
  37840. {
  37841. name: "HD 100546 b",
  37842. height: math.unit(482938, "km"),
  37843. form: "jupiter"
  37844. },
  37845. {
  37846. name: "Enceladus",
  37847. height: math.unit(513*2, "km"),
  37848. form: "neptune"
  37849. },
  37850. {
  37851. name: "Europe",
  37852. height: math.unit(1560*2, "km"),
  37853. form: "neptune"
  37854. },
  37855. {
  37856. name: "Neptune",
  37857. height: math.unit(24622*2, "km"),
  37858. form: "neptune",
  37859. default: true
  37860. },
  37861. {
  37862. name: "CoRoT-9b",
  37863. height: math.unit(75067*2, "km"),
  37864. form: "neptune"
  37865. },
  37866. ],
  37867. {
  37868. "normal": {
  37869. name: "Normal",
  37870. default: true
  37871. },
  37872. "demon": {
  37873. name: "Demon"
  37874. },
  37875. "terra": {
  37876. name: "Terra"
  37877. },
  37878. "jupiter": {
  37879. name: "Jupiter"
  37880. },
  37881. "neptune": {
  37882. name: "Neptune"
  37883. }
  37884. }
  37885. ))
  37886. characterMakers.push(() => makeCharacter(
  37887. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37888. {
  37889. front: {
  37890. height: math.unit(16, "feet"),
  37891. weight: math.unit(610, "kg"),
  37892. name: "Front",
  37893. image: {
  37894. source: "./media/characters/huckle/front.svg",
  37895. extra: 1731/1625,
  37896. bottom: 33/1764
  37897. }
  37898. },
  37899. back: {
  37900. height: math.unit(16, "feet"),
  37901. weight: math.unit(610, "kg"),
  37902. name: "Back",
  37903. image: {
  37904. source: "./media/characters/huckle/back.svg",
  37905. extra: 1738/1651,
  37906. bottom: 37/1775
  37907. }
  37908. },
  37909. laughing: {
  37910. height: math.unit(3.75, "feet"),
  37911. name: "Laughing",
  37912. image: {
  37913. source: "./media/characters/huckle/laughing.svg"
  37914. }
  37915. },
  37916. angry: {
  37917. height: math.unit(4.15, "feet"),
  37918. name: "Angry",
  37919. image: {
  37920. source: "./media/characters/huckle/angry.svg"
  37921. }
  37922. },
  37923. },
  37924. [
  37925. {
  37926. name: "Normal",
  37927. height: math.unit(16, "feet"),
  37928. default: true
  37929. },
  37930. {
  37931. name: "Mini Macro",
  37932. height: math.unit(463, "feet")
  37933. },
  37934. {
  37935. name: "Macro",
  37936. height: math.unit(1680, "meters")
  37937. },
  37938. {
  37939. name: "Mega Macro",
  37940. height: math.unit(175, "km")
  37941. },
  37942. {
  37943. name: "Terra Macro",
  37944. height: math.unit(32, "gigameters")
  37945. },
  37946. {
  37947. name: "Multiverse+",
  37948. height: math.unit(2.56e23, "yottameters")
  37949. },
  37950. ]
  37951. ))
  37952. characterMakers.push(() => makeCharacter(
  37953. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37954. {
  37955. front: {
  37956. height: math.unit(6 + 9/12, "feet"),
  37957. weight: math.unit(280, "lb"),
  37958. name: "Front",
  37959. image: {
  37960. source: "./media/characters/candy/front.svg",
  37961. extra: 234/217,
  37962. bottom: 11/245
  37963. }
  37964. },
  37965. },
  37966. [
  37967. {
  37968. name: "Really Small",
  37969. height: math.unit(0.1, "nm")
  37970. },
  37971. {
  37972. name: "Micro",
  37973. height: math.unit(2, "inches")
  37974. },
  37975. {
  37976. name: "Normal",
  37977. height: math.unit(6 + 9/12, "feet"),
  37978. default: true
  37979. },
  37980. {
  37981. name: "Small Macro",
  37982. height: math.unit(69, "feet")
  37983. },
  37984. {
  37985. name: "Macro",
  37986. height: math.unit(160, "feet")
  37987. },
  37988. {
  37989. name: "Megamacro",
  37990. height: math.unit(22000, "miles")
  37991. },
  37992. {
  37993. name: "Gigamacro",
  37994. height: math.unit(50000, "miles")
  37995. },
  37996. ]
  37997. ))
  37998. characterMakers.push(() => makeCharacter(
  37999. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38000. {
  38001. front: {
  38002. height: math.unit(4, "feet"),
  38003. weight: math.unit(90, "lb"),
  38004. name: "Front",
  38005. image: {
  38006. source: "./media/characters/joey-mcdonald/front.svg",
  38007. extra: 1059/852,
  38008. bottom: 33/1092
  38009. }
  38010. },
  38011. back: {
  38012. height: math.unit(4, "feet"),
  38013. weight: math.unit(90, "lb"),
  38014. name: "Back",
  38015. image: {
  38016. source: "./media/characters/joey-mcdonald/back.svg",
  38017. extra: 1077/879,
  38018. bottom: 5/1082
  38019. }
  38020. },
  38021. frontKobold: {
  38022. height: math.unit(4, "feet"),
  38023. weight: math.unit(100, "lb"),
  38024. name: "Front-kobold",
  38025. image: {
  38026. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38027. extra: 1480/1367,
  38028. bottom: 0/1480
  38029. }
  38030. },
  38031. backKobold: {
  38032. height: math.unit(4, "feet"),
  38033. weight: math.unit(100, "lb"),
  38034. name: "Back-kobold",
  38035. image: {
  38036. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38037. extra: 1449/1361,
  38038. bottom: 0/1449
  38039. }
  38040. },
  38041. },
  38042. [
  38043. {
  38044. name: "Normal",
  38045. height: math.unit(4, "feet"),
  38046. default: true
  38047. },
  38048. ]
  38049. ))
  38050. characterMakers.push(() => makeCharacter(
  38051. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38052. {
  38053. front: {
  38054. height: math.unit(12 + 6/12, "feet"),
  38055. name: "Front",
  38056. image: {
  38057. source: "./media/characters/kass-lockheed/front.svg",
  38058. extra: 354/343,
  38059. bottom: 9/363
  38060. }
  38061. },
  38062. back: {
  38063. height: math.unit(12 + 6/12, "feet"),
  38064. name: "Back",
  38065. image: {
  38066. source: "./media/characters/kass-lockheed/back.svg",
  38067. extra: 364/352,
  38068. bottom: 3/367
  38069. }
  38070. },
  38071. dick: {
  38072. height: math.unit(3.12, "feet"),
  38073. name: "Dick",
  38074. image: {
  38075. source: "./media/characters/kass-lockheed/dick.svg"
  38076. }
  38077. },
  38078. head: {
  38079. height: math.unit(2.6, "feet"),
  38080. name: "Head",
  38081. image: {
  38082. source: "./media/characters/kass-lockheed/head.svg"
  38083. }
  38084. },
  38085. bleh: {
  38086. height: math.unit(2.85, "feet"),
  38087. name: "Bleh",
  38088. image: {
  38089. source: "./media/characters/kass-lockheed/bleh.svg"
  38090. }
  38091. },
  38092. smug: {
  38093. height: math.unit(2.85, "feet"),
  38094. name: "Smug",
  38095. image: {
  38096. source: "./media/characters/kass-lockheed/smug.svg"
  38097. }
  38098. },
  38099. },
  38100. [
  38101. {
  38102. name: "Normal",
  38103. height: math.unit(12 + 6/12, "feet"),
  38104. default: true
  38105. },
  38106. ]
  38107. ))
  38108. characterMakers.push(() => makeCharacter(
  38109. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38110. {
  38111. front: {
  38112. height: math.unit(6 + 2/12, "feet"),
  38113. name: "Front",
  38114. image: {
  38115. source: "./media/characters/taylor/front.svg",
  38116. extra: 639/495,
  38117. bottom: 12/651
  38118. }
  38119. },
  38120. },
  38121. [
  38122. {
  38123. name: "Normal",
  38124. height: math.unit(6 + 2/12, "feet"),
  38125. default: true
  38126. },
  38127. {
  38128. name: "Big",
  38129. height: math.unit(15, "feet")
  38130. },
  38131. {
  38132. name: "Lorg",
  38133. height: math.unit(80, "feet")
  38134. },
  38135. {
  38136. name: "Too Lorg",
  38137. height: math.unit(120, "feet")
  38138. },
  38139. ]
  38140. ))
  38141. characterMakers.push(() => makeCharacter(
  38142. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38143. {
  38144. front: {
  38145. height: math.unit(15, "feet"),
  38146. name: "Front",
  38147. image: {
  38148. source: "./media/characters/kaizer/front.svg",
  38149. extra: 1612/1436,
  38150. bottom: 43/1655
  38151. }
  38152. },
  38153. },
  38154. [
  38155. {
  38156. name: "Normal",
  38157. height: math.unit(15, "feet"),
  38158. default: true
  38159. },
  38160. ]
  38161. ))
  38162. characterMakers.push(() => makeCharacter(
  38163. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38164. {
  38165. front: {
  38166. height: math.unit(2, "feet"),
  38167. weight: math.unit(30, "lb"),
  38168. name: "Front",
  38169. image: {
  38170. source: "./media/characters/sandy/front.svg",
  38171. extra: 1439/1307,
  38172. bottom: 194/1633
  38173. }
  38174. },
  38175. },
  38176. [
  38177. {
  38178. name: "Normal",
  38179. height: math.unit(2, "feet"),
  38180. default: true
  38181. },
  38182. ]
  38183. ))
  38184. characterMakers.push(() => makeCharacter(
  38185. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38186. {
  38187. front: {
  38188. height: math.unit(3, "feet"),
  38189. name: "Front",
  38190. image: {
  38191. source: "./media/characters/mellvi/front.svg",
  38192. extra: 1831/1630,
  38193. bottom: 58/1889
  38194. }
  38195. },
  38196. },
  38197. [
  38198. {
  38199. name: "Normal",
  38200. height: math.unit(3, "feet"),
  38201. default: true
  38202. },
  38203. ]
  38204. ))
  38205. characterMakers.push(() => makeCharacter(
  38206. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38207. {
  38208. front: {
  38209. height: math.unit(5 + 11/12, "feet"),
  38210. weight: math.unit(200, "lb"),
  38211. name: "Front",
  38212. image: {
  38213. source: "./media/characters/shirou/front.svg",
  38214. extra: 2491/2383,
  38215. bottom: 189/2680
  38216. }
  38217. },
  38218. back: {
  38219. height: math.unit(5 + 11/12, "feet"),
  38220. weight: math.unit(200, "lb"),
  38221. name: "Back",
  38222. image: {
  38223. source: "./media/characters/shirou/back.svg",
  38224. extra: 2554/2450,
  38225. bottom: 76/2630
  38226. }
  38227. },
  38228. },
  38229. [
  38230. {
  38231. name: "Normal",
  38232. height: math.unit(5 + 11/12, "feet"),
  38233. default: true
  38234. },
  38235. ]
  38236. ))
  38237. characterMakers.push(() => makeCharacter(
  38238. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38239. {
  38240. front: {
  38241. height: math.unit(6 + 3/12, "feet"),
  38242. weight: math.unit(177, "lb"),
  38243. name: "Front",
  38244. image: {
  38245. source: "./media/characters/noryu/front.svg",
  38246. extra: 973/885,
  38247. bottom: 10/983
  38248. }
  38249. },
  38250. },
  38251. [
  38252. {
  38253. name: "Normal",
  38254. height: math.unit(6 + 3/12, "feet"),
  38255. default: true
  38256. },
  38257. ]
  38258. ))
  38259. characterMakers.push(() => makeCharacter(
  38260. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38261. {
  38262. front: {
  38263. height: math.unit(5 + 6/12, "feet"),
  38264. weight: math.unit(170, "lb"),
  38265. name: "Front",
  38266. image: {
  38267. source: "./media/characters/mevolas-rubenido/front.svg",
  38268. extra: 2109/1901,
  38269. bottom: 96/2205
  38270. }
  38271. },
  38272. },
  38273. [
  38274. {
  38275. name: "Normal",
  38276. height: math.unit(5 + 6/12, "feet"),
  38277. default: true
  38278. },
  38279. ]
  38280. ))
  38281. characterMakers.push(() => makeCharacter(
  38282. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38283. {
  38284. front: {
  38285. height: math.unit(100, "feet"),
  38286. name: "Front",
  38287. image: {
  38288. source: "./media/characters/dee/front.svg",
  38289. extra: 2153/2036,
  38290. bottom: 59/2212
  38291. }
  38292. },
  38293. back: {
  38294. height: math.unit(100, "feet"),
  38295. name: "Back",
  38296. image: {
  38297. source: "./media/characters/dee/back.svg",
  38298. extra: 2183/2058,
  38299. bottom: 75/2258
  38300. }
  38301. },
  38302. foot: {
  38303. height: math.unit(19.43, "feet"),
  38304. name: "Foot",
  38305. image: {
  38306. source: "./media/characters/dee/foot.svg"
  38307. }
  38308. },
  38309. hoof: {
  38310. height: math.unit(20.6, "feet"),
  38311. name: "Hoof",
  38312. image: {
  38313. source: "./media/characters/dee/hoof.svg"
  38314. }
  38315. },
  38316. },
  38317. [
  38318. {
  38319. name: "Macro",
  38320. height: math.unit(100, "feet"),
  38321. default: true
  38322. },
  38323. ]
  38324. ))
  38325. characterMakers.push(() => makeCharacter(
  38326. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38327. {
  38328. front: {
  38329. height: math.unit(5 + 6/12, "feet"),
  38330. name: "Front",
  38331. image: {
  38332. source: "./media/characters/teh/front.svg",
  38333. extra: 1002/847,
  38334. bottom: 62/1064
  38335. }
  38336. },
  38337. },
  38338. [
  38339. {
  38340. name: "Normal",
  38341. height: math.unit(5 + 6/12, "feet"),
  38342. default: true
  38343. },
  38344. ]
  38345. ))
  38346. characterMakers.push(() => makeCharacter(
  38347. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38348. {
  38349. side: {
  38350. height: math.unit(6 + 1/12, "feet"),
  38351. weight: math.unit(204, "lb"),
  38352. name: "Side",
  38353. image: {
  38354. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38355. extra: 974/775,
  38356. bottom: 169/1143
  38357. }
  38358. },
  38359. sitting: {
  38360. height: math.unit(6 + 2/12, "feet"),
  38361. weight: math.unit(204, "lb"),
  38362. name: "Sitting",
  38363. image: {
  38364. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38365. extra: 1175/964,
  38366. bottom: 378/1553
  38367. }
  38368. },
  38369. },
  38370. [
  38371. {
  38372. name: "Normal",
  38373. height: math.unit(6 + 1/12, "feet"),
  38374. default: true
  38375. },
  38376. ]
  38377. ))
  38378. characterMakers.push(() => makeCharacter(
  38379. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38380. {
  38381. front: {
  38382. height: math.unit(6, "inches"),
  38383. name: "Front",
  38384. image: {
  38385. source: "./media/characters/tululi/front.svg",
  38386. extra: 1997/1876,
  38387. bottom: 20/2017
  38388. }
  38389. },
  38390. },
  38391. [
  38392. {
  38393. name: "Normal",
  38394. height: math.unit(6, "inches"),
  38395. default: true
  38396. },
  38397. ]
  38398. ))
  38399. characterMakers.push(() => makeCharacter(
  38400. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38401. {
  38402. front: {
  38403. height: math.unit(4 + 1/12, "feet"),
  38404. name: "Front",
  38405. image: {
  38406. source: "./media/characters/star/front.svg",
  38407. extra: 1493/1189,
  38408. bottom: 48/1541
  38409. }
  38410. },
  38411. },
  38412. [
  38413. {
  38414. name: "Normal",
  38415. height: math.unit(4 + 1/12, "feet"),
  38416. default: true
  38417. },
  38418. ]
  38419. ))
  38420. characterMakers.push(() => makeCharacter(
  38421. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38422. {
  38423. front: {
  38424. height: math.unit(6 + 3/12, "feet"),
  38425. name: "Front",
  38426. image: {
  38427. source: "./media/characters/comet/front.svg",
  38428. extra: 1681/1462,
  38429. bottom: 26/1707
  38430. }
  38431. },
  38432. },
  38433. [
  38434. {
  38435. name: "Normal",
  38436. height: math.unit(6 + 3/12, "feet"),
  38437. default: true
  38438. },
  38439. ]
  38440. ))
  38441. characterMakers.push(() => makeCharacter(
  38442. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38443. {
  38444. front: {
  38445. height: math.unit(950, "feet"),
  38446. name: "Front",
  38447. image: {
  38448. source: "./media/characters/vortex/front.svg",
  38449. extra: 1497/1434,
  38450. bottom: 56/1553
  38451. }
  38452. },
  38453. maw: {
  38454. height: math.unit(285, "feet"),
  38455. name: "Maw",
  38456. image: {
  38457. source: "./media/characters/vortex/maw.svg"
  38458. }
  38459. },
  38460. },
  38461. [
  38462. {
  38463. name: "Macro",
  38464. height: math.unit(950, "feet"),
  38465. default: true
  38466. },
  38467. ]
  38468. ))
  38469. characterMakers.push(() => makeCharacter(
  38470. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38471. {
  38472. front: {
  38473. height: math.unit(600, "feet"),
  38474. weight: math.unit(0.02, "grams"),
  38475. name: "Front",
  38476. image: {
  38477. source: "./media/characters/doodle/front.svg",
  38478. extra: 1578/1413,
  38479. bottom: 37/1615
  38480. }
  38481. },
  38482. },
  38483. [
  38484. {
  38485. name: "Macro",
  38486. height: math.unit(600, "feet"),
  38487. default: true
  38488. },
  38489. ]
  38490. ))
  38491. characterMakers.push(() => makeCharacter(
  38492. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38493. {
  38494. front: {
  38495. height: math.unit(6 + 6/12, "feet"),
  38496. name: "Front",
  38497. image: {
  38498. source: "./media/characters/jai/front.svg",
  38499. extra: 1645/1534,
  38500. bottom: 115/1760
  38501. }
  38502. },
  38503. },
  38504. [
  38505. {
  38506. name: "Normal",
  38507. height: math.unit(6 + 6/12, "feet"),
  38508. default: true
  38509. },
  38510. ]
  38511. ))
  38512. characterMakers.push(() => makeCharacter(
  38513. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38514. {
  38515. front: {
  38516. height: math.unit(6 + 8/12, "feet"),
  38517. name: "Front",
  38518. image: {
  38519. source: "./media/characters/pixel/front.svg",
  38520. extra: 1900/1735,
  38521. bottom: 63/1963
  38522. }
  38523. },
  38524. },
  38525. [
  38526. {
  38527. name: "Normal",
  38528. height: math.unit(6 + 8/12, "feet"),
  38529. default: true
  38530. },
  38531. ]
  38532. ))
  38533. characterMakers.push(() => makeCharacter(
  38534. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38535. {
  38536. back: {
  38537. height: math.unit(4 + 1/12, "feet"),
  38538. weight: math.unit(75, "lb"),
  38539. name: "Back",
  38540. image: {
  38541. source: "./media/characters/rhett/back.svg",
  38542. extra: 930/878,
  38543. bottom: 25/955
  38544. }
  38545. },
  38546. front: {
  38547. height: math.unit(4 + 1/12, "feet"),
  38548. weight: math.unit(75, "lb"),
  38549. name: "Front",
  38550. image: {
  38551. source: "./media/characters/rhett/front.svg",
  38552. extra: 1682/1586,
  38553. bottom: 92/1774
  38554. }
  38555. },
  38556. },
  38557. [
  38558. {
  38559. name: "Micro",
  38560. height: math.unit(8, "inches")
  38561. },
  38562. {
  38563. name: "Tiny",
  38564. height: math.unit(2, "feet")
  38565. },
  38566. {
  38567. name: "Normal",
  38568. height: math.unit(4 + 1/12, "feet"),
  38569. default: true
  38570. },
  38571. ]
  38572. ))
  38573. characterMakers.push(() => makeCharacter(
  38574. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38575. {
  38576. front: {
  38577. height: math.unit(3 + 3/12, "feet"),
  38578. name: "Front",
  38579. image: {
  38580. source: "./media/characters/penny/front.svg",
  38581. extra: 1406/1311,
  38582. bottom: 26/1432
  38583. }
  38584. },
  38585. },
  38586. [
  38587. {
  38588. name: "Normal",
  38589. height: math.unit(3 + 3/12, "feet"),
  38590. default: true
  38591. },
  38592. ]
  38593. ))
  38594. characterMakers.push(() => makeCharacter(
  38595. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38596. {
  38597. front: {
  38598. height: math.unit(4 + 11/12, "feet"),
  38599. name: "Front",
  38600. image: {
  38601. source: "./media/characters/monty/front.svg",
  38602. extra: 1479/1209,
  38603. bottom: 0/1479
  38604. }
  38605. },
  38606. },
  38607. [
  38608. {
  38609. name: "Normal",
  38610. height: math.unit(4 + 11/12, "feet"),
  38611. default: true
  38612. },
  38613. ]
  38614. ))
  38615. characterMakers.push(() => makeCharacter(
  38616. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38617. {
  38618. front: {
  38619. height: math.unit(8 + 4/12, "feet"),
  38620. name: "Front",
  38621. image: {
  38622. source: "./media/characters/sterling/front.svg",
  38623. extra: 1420/1236,
  38624. bottom: 27/1447
  38625. }
  38626. },
  38627. },
  38628. [
  38629. {
  38630. name: "Normal",
  38631. height: math.unit(8 + 4/12, "feet"),
  38632. default: true
  38633. },
  38634. ]
  38635. ))
  38636. characterMakers.push(() => makeCharacter(
  38637. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38638. {
  38639. front: {
  38640. height: math.unit(15, "feet"),
  38641. name: "Front",
  38642. image: {
  38643. source: "./media/characters/marble/front.svg",
  38644. extra: 973/937,
  38645. bottom: 32/1005
  38646. }
  38647. },
  38648. },
  38649. [
  38650. {
  38651. name: "Normal",
  38652. height: math.unit(15, "feet"),
  38653. default: true
  38654. },
  38655. ]
  38656. ))
  38657. characterMakers.push(() => makeCharacter(
  38658. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38659. {
  38660. front: {
  38661. height: math.unit(3, "inches"),
  38662. name: "Front",
  38663. image: {
  38664. source: "./media/characters/powder/front.svg",
  38665. extra: 1504/1334,
  38666. bottom: 518/2022
  38667. }
  38668. },
  38669. },
  38670. [
  38671. {
  38672. name: "Normal",
  38673. height: math.unit(3, "inches"),
  38674. default: true
  38675. },
  38676. ]
  38677. ))
  38678. characterMakers.push(() => makeCharacter(
  38679. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38680. {
  38681. front: {
  38682. height: math.unit(4 + 5/12, "feet"),
  38683. name: "Front",
  38684. image: {
  38685. source: "./media/characters/joey-raccoon/front.svg",
  38686. extra: 1273/1197,
  38687. bottom: 0/1273
  38688. }
  38689. },
  38690. },
  38691. [
  38692. {
  38693. name: "Normal",
  38694. height: math.unit(4 + 5/12, "feet"),
  38695. default: true
  38696. },
  38697. ]
  38698. ))
  38699. characterMakers.push(() => makeCharacter(
  38700. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38701. {
  38702. front: {
  38703. height: math.unit(8 + 4/12, "feet"),
  38704. name: "Front",
  38705. image: {
  38706. source: "./media/characters/vick/front.svg",
  38707. extra: 2187/2118,
  38708. bottom: 47/2234
  38709. }
  38710. },
  38711. },
  38712. [
  38713. {
  38714. name: "Normal",
  38715. height: math.unit(8 + 4/12, "feet"),
  38716. default: true
  38717. },
  38718. ]
  38719. ))
  38720. characterMakers.push(() => makeCharacter(
  38721. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38722. {
  38723. front: {
  38724. height: math.unit(5 + 5/12, "feet"),
  38725. name: "Front",
  38726. image: {
  38727. source: "./media/characters/mitsy/front.svg",
  38728. extra: 1842/1695,
  38729. bottom: 0/1842
  38730. }
  38731. },
  38732. },
  38733. [
  38734. {
  38735. name: "Normal",
  38736. height: math.unit(5 + 5/12, "feet"),
  38737. default: true
  38738. },
  38739. ]
  38740. ))
  38741. characterMakers.push(() => makeCharacter(
  38742. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38743. {
  38744. front: {
  38745. height: math.unit(6 + 3/12, "feet"),
  38746. name: "Front",
  38747. image: {
  38748. source: "./media/characters/silvy/front.svg",
  38749. extra: 1995/1836,
  38750. bottom: 225/2220
  38751. }
  38752. },
  38753. },
  38754. [
  38755. {
  38756. name: "Normal",
  38757. height: math.unit(6 + 3/12, "feet"),
  38758. default: true
  38759. },
  38760. ]
  38761. ))
  38762. characterMakers.push(() => makeCharacter(
  38763. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38764. {
  38765. front: {
  38766. height: math.unit(3 + 8/12, "feet"),
  38767. name: "Front",
  38768. image: {
  38769. source: "./media/characters/rodney/front.svg",
  38770. extra: 1956/1747,
  38771. bottom: 31/1987
  38772. }
  38773. },
  38774. frontDressed: {
  38775. height: math.unit(2.9, "feet"),
  38776. name: "Front (Dressed)",
  38777. image: {
  38778. source: "./media/characters/rodney/front-dressed.svg",
  38779. extra: 1382/1241,
  38780. bottom: 385/1767
  38781. }
  38782. },
  38783. },
  38784. [
  38785. {
  38786. name: "Normal",
  38787. height: math.unit(3 + 8/12, "feet"),
  38788. default: true
  38789. },
  38790. ]
  38791. ))
  38792. characterMakers.push(() => makeCharacter(
  38793. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38794. {
  38795. front: {
  38796. height: math.unit(5 + 9/12, "feet"),
  38797. weight: math.unit(194, "lbs"),
  38798. name: "Front",
  38799. image: {
  38800. source: "./media/characters/zakail-sudekai/front.svg",
  38801. extra: 2696/2533,
  38802. bottom: 248/2944
  38803. }
  38804. },
  38805. maw: {
  38806. height: math.unit(1.35, "feet"),
  38807. name: "Maw",
  38808. image: {
  38809. source: "./media/characters/zakail-sudekai/maw.svg"
  38810. }
  38811. },
  38812. },
  38813. [
  38814. {
  38815. name: "Normal",
  38816. height: math.unit(5 + 9/12, "feet"),
  38817. default: true
  38818. },
  38819. ]
  38820. ))
  38821. characterMakers.push(() => makeCharacter(
  38822. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38823. {
  38824. front: {
  38825. height: math.unit(8 + 4/12, "feet"),
  38826. weight: math.unit(1200, "lb"),
  38827. name: "Front",
  38828. image: {
  38829. source: "./media/characters/eleanor/front.svg",
  38830. extra: 1226/1192,
  38831. bottom: 52/1278
  38832. }
  38833. },
  38834. back: {
  38835. height: math.unit(8 + 4/12, "feet"),
  38836. weight: math.unit(1200, "lb"),
  38837. name: "Back",
  38838. image: {
  38839. source: "./media/characters/eleanor/back.svg",
  38840. extra: 1242/1184,
  38841. bottom: 60/1302
  38842. }
  38843. },
  38844. head: {
  38845. height: math.unit(2.62, "feet"),
  38846. name: "Head",
  38847. image: {
  38848. source: "./media/characters/eleanor/head.svg"
  38849. }
  38850. },
  38851. },
  38852. [
  38853. {
  38854. name: "Normal",
  38855. height: math.unit(8 + 4/12, "feet"),
  38856. default: true
  38857. },
  38858. ]
  38859. ))
  38860. characterMakers.push(() => makeCharacter(
  38861. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38862. {
  38863. front: {
  38864. height: math.unit(8 + 4/12, "feet"),
  38865. weight: math.unit(750, "lb"),
  38866. name: "Front",
  38867. image: {
  38868. source: "./media/characters/tanya/front.svg",
  38869. extra: 1749/1615,
  38870. bottom: 33/1782
  38871. }
  38872. },
  38873. },
  38874. [
  38875. {
  38876. name: "Normal",
  38877. height: math.unit(8 + 4/12, "feet"),
  38878. default: true
  38879. },
  38880. ]
  38881. ))
  38882. characterMakers.push(() => makeCharacter(
  38883. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38884. {
  38885. front: {
  38886. height: math.unit(5, "feet"),
  38887. weight: math.unit(225, "lb"),
  38888. name: "Front",
  38889. image: {
  38890. source: "./media/characters/cindy/front.svg",
  38891. extra: 1320/1250,
  38892. bottom: 42/1362
  38893. }
  38894. },
  38895. frontDressed: {
  38896. height: math.unit(5, "feet"),
  38897. weight: math.unit(225, "lb"),
  38898. name: "Front (Dressed)",
  38899. image: {
  38900. source: "./media/characters/cindy/front-dressed.svg",
  38901. extra: 1320/1250,
  38902. bottom: 42/1362
  38903. }
  38904. },
  38905. back: {
  38906. height: math.unit(5, "feet"),
  38907. weight: math.unit(225, "lb"),
  38908. name: "Back",
  38909. image: {
  38910. source: "./media/characters/cindy/back.svg",
  38911. extra: 1384/1346,
  38912. bottom: 14/1398
  38913. }
  38914. },
  38915. },
  38916. [
  38917. {
  38918. name: "Normal",
  38919. height: math.unit(5, "feet"),
  38920. default: true
  38921. },
  38922. ]
  38923. ))
  38924. characterMakers.push(() => makeCharacter(
  38925. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38926. {
  38927. front: {
  38928. height: math.unit(6 + 9/12, "feet"),
  38929. weight: math.unit(440, "lb"),
  38930. name: "Front",
  38931. image: {
  38932. source: "./media/characters/wilbur-owen/front.svg",
  38933. extra: 1575/1448,
  38934. bottom: 72/1647
  38935. }
  38936. },
  38937. back: {
  38938. height: math.unit(6 + 9/12, "feet"),
  38939. weight: math.unit(440, "lb"),
  38940. name: "Back",
  38941. image: {
  38942. source: "./media/characters/wilbur-owen/back.svg",
  38943. extra: 1578/1445,
  38944. bottom: 36/1614
  38945. }
  38946. },
  38947. },
  38948. [
  38949. {
  38950. name: "Normal",
  38951. height: math.unit(6 + 9/12, "feet"),
  38952. default: true
  38953. },
  38954. ]
  38955. ))
  38956. characterMakers.push(() => makeCharacter(
  38957. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38958. {
  38959. front: {
  38960. height: math.unit(6 + 5/12, "feet"),
  38961. weight: math.unit(650, "lb"),
  38962. name: "Front",
  38963. image: {
  38964. source: "./media/characters/keegan/front.svg",
  38965. extra: 2387/2198,
  38966. bottom: 33/2420
  38967. }
  38968. },
  38969. side: {
  38970. height: math.unit(6 + 5/12, "feet"),
  38971. weight: math.unit(650, "lb"),
  38972. name: "Side",
  38973. image: {
  38974. source: "./media/characters/keegan/side.svg",
  38975. extra: 2390/2202,
  38976. bottom: 47/2437
  38977. }
  38978. },
  38979. back: {
  38980. height: math.unit(6 + 5/12, "feet"),
  38981. weight: math.unit(650, "lb"),
  38982. name: "Back",
  38983. image: {
  38984. source: "./media/characters/keegan/back.svg",
  38985. extra: 2418/2268,
  38986. bottom: 15/2433
  38987. }
  38988. },
  38989. frontSfw: {
  38990. height: math.unit(6 + 5/12, "feet"),
  38991. weight: math.unit(650, "lb"),
  38992. name: "Front (SFW)",
  38993. image: {
  38994. source: "./media/characters/keegan/front-sfw.svg",
  38995. extra: 2387/2198,
  38996. bottom: 33/2420
  38997. }
  38998. },
  38999. beans: {
  39000. height: math.unit(1.85, "feet"),
  39001. name: "Beans",
  39002. image: {
  39003. source: "./media/characters/keegan/beans.svg"
  39004. }
  39005. },
  39006. },
  39007. [
  39008. {
  39009. name: "Normal",
  39010. height: math.unit(6 + 5/12, "feet"),
  39011. default: true
  39012. },
  39013. ]
  39014. ))
  39015. characterMakers.push(() => makeCharacter(
  39016. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39017. {
  39018. front: {
  39019. height: math.unit(9, "feet"),
  39020. name: "Front",
  39021. image: {
  39022. source: "./media/characters/colton/front.svg",
  39023. extra: 1589/1326,
  39024. bottom: 139/1728
  39025. }
  39026. },
  39027. },
  39028. [
  39029. {
  39030. name: "Normal",
  39031. height: math.unit(9, "feet"),
  39032. default: true
  39033. },
  39034. ]
  39035. ))
  39036. characterMakers.push(() => makeCharacter(
  39037. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39038. {
  39039. front: {
  39040. height: math.unit(2 + 9/12, "feet"),
  39041. name: "Front",
  39042. image: {
  39043. source: "./media/characters/bora/front.svg",
  39044. extra: 1265/1250,
  39045. bottom: 24/1289
  39046. }
  39047. },
  39048. },
  39049. [
  39050. {
  39051. name: "Normal",
  39052. height: math.unit(2 + 9/12, "feet"),
  39053. default: true
  39054. },
  39055. ]
  39056. ))
  39057. characterMakers.push(() => makeCharacter(
  39058. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39059. {
  39060. front: {
  39061. height: math.unit(8, "feet"),
  39062. name: "Front",
  39063. image: {
  39064. source: "./media/characters/myu-myu/front.svg",
  39065. extra: 1949/1857,
  39066. bottom: 90/2039
  39067. }
  39068. },
  39069. },
  39070. [
  39071. {
  39072. name: "Normal",
  39073. height: math.unit(8, "feet"),
  39074. default: true
  39075. },
  39076. {
  39077. name: "Big",
  39078. height: math.unit(15, "feet")
  39079. },
  39080. {
  39081. name: "BIG",
  39082. height: math.unit(25, "feet")
  39083. },
  39084. ]
  39085. ))
  39086. characterMakers.push(() => makeCharacter(
  39087. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39088. {
  39089. side: {
  39090. height: math.unit(7 + 5/12, "feet"),
  39091. weight: math.unit(2800, "lb"),
  39092. name: "Side",
  39093. image: {
  39094. source: "./media/characters/haloren/side.svg",
  39095. extra: 1793/409,
  39096. bottom: 59/1852
  39097. }
  39098. },
  39099. frontPaw: {
  39100. height: math.unit(2.36, "feet"),
  39101. name: "Front paw",
  39102. image: {
  39103. source: "./media/characters/haloren/front-paw.svg"
  39104. }
  39105. },
  39106. hindPaw: {
  39107. height: math.unit(3.18, "feet"),
  39108. name: "Hind paw",
  39109. image: {
  39110. source: "./media/characters/haloren/hind-paw.svg"
  39111. }
  39112. },
  39113. maw: {
  39114. height: math.unit(5.05, "feet"),
  39115. name: "Maw",
  39116. image: {
  39117. source: "./media/characters/haloren/maw.svg"
  39118. }
  39119. },
  39120. dick: {
  39121. height: math.unit(2.90, "feet"),
  39122. name: "Dick",
  39123. image: {
  39124. source: "./media/characters/haloren/dick.svg"
  39125. }
  39126. },
  39127. },
  39128. [
  39129. {
  39130. name: "Normal",
  39131. height: math.unit(7 + 5/12, "feet"),
  39132. default: true
  39133. },
  39134. {
  39135. name: "Enhanced",
  39136. height: math.unit(14 + 3/12, "feet")
  39137. },
  39138. ]
  39139. ))
  39140. characterMakers.push(() => makeCharacter(
  39141. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39142. {
  39143. front: {
  39144. height: math.unit(171, "cm"),
  39145. name: "Front",
  39146. image: {
  39147. source: "./media/characters/kimmy/front.svg",
  39148. extra: 1491/1435,
  39149. bottom: 53/1544
  39150. }
  39151. },
  39152. },
  39153. [
  39154. {
  39155. name: "Small",
  39156. height: math.unit(9, "cm")
  39157. },
  39158. {
  39159. name: "Normal",
  39160. height: math.unit(171, "cm"),
  39161. default: true
  39162. },
  39163. ]
  39164. ))
  39165. characterMakers.push(() => makeCharacter(
  39166. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39167. {
  39168. front: {
  39169. height: math.unit(8, "feet"),
  39170. weight: math.unit(300, "lb"),
  39171. name: "Front",
  39172. image: {
  39173. source: "./media/characters/galeboomer/front.svg",
  39174. extra: 4651/4415,
  39175. bottom: 162/4813
  39176. }
  39177. },
  39178. back: {
  39179. height: math.unit(8, "feet"),
  39180. weight: math.unit(300, "lb"),
  39181. name: "Back",
  39182. image: {
  39183. source: "./media/characters/galeboomer/back.svg",
  39184. extra: 4544/4314,
  39185. bottom: 16/4560
  39186. }
  39187. },
  39188. frontAlt: {
  39189. height: math.unit(8, "feet"),
  39190. weight: math.unit(300, "lb"),
  39191. name: "Front (Alt)",
  39192. image: {
  39193. source: "./media/characters/galeboomer/front-alt.svg",
  39194. extra: 4458/4228,
  39195. bottom: 68/4526
  39196. }
  39197. },
  39198. maw: {
  39199. height: math.unit(1.2, "feet"),
  39200. name: "Maw",
  39201. image: {
  39202. source: "./media/characters/galeboomer/maw.svg"
  39203. }
  39204. },
  39205. },
  39206. [
  39207. {
  39208. name: "Normal",
  39209. height: math.unit(8, "feet"),
  39210. default: true
  39211. },
  39212. ]
  39213. ))
  39214. characterMakers.push(() => makeCharacter(
  39215. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39216. {
  39217. front: {
  39218. height: math.unit(5 + 9/12, "feet"),
  39219. weight: math.unit(120, "lb"),
  39220. name: "Front",
  39221. image: {
  39222. source: "./media/characters/chyr/front.svg",
  39223. extra: 1323/1254,
  39224. bottom: 63/1386
  39225. }
  39226. },
  39227. back: {
  39228. height: math.unit(5 + 9/12, "feet"),
  39229. weight: math.unit(120, "lb"),
  39230. name: "Back",
  39231. image: {
  39232. source: "./media/characters/chyr/back.svg",
  39233. extra: 1323/1252,
  39234. bottom: 48/1371
  39235. }
  39236. },
  39237. },
  39238. [
  39239. {
  39240. name: "Normal",
  39241. height: math.unit(5 + 9/12, "feet"),
  39242. default: true
  39243. },
  39244. ]
  39245. ))
  39246. characterMakers.push(() => makeCharacter(
  39247. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39248. {
  39249. front: {
  39250. height: math.unit(7, "feet"),
  39251. weight: math.unit(310, "lb"),
  39252. name: "Front",
  39253. image: {
  39254. source: "./media/characters/solarus/front.svg",
  39255. extra: 2415/2021,
  39256. bottom: 103/2518
  39257. }
  39258. },
  39259. back: {
  39260. height: math.unit(7, "feet"),
  39261. weight: math.unit(310, "lb"),
  39262. name: "Back",
  39263. image: {
  39264. source: "./media/characters/solarus/back.svg",
  39265. extra: 2463/2089,
  39266. bottom: 79/2542
  39267. }
  39268. },
  39269. },
  39270. [
  39271. {
  39272. name: "Normal",
  39273. height: math.unit(7, "feet"),
  39274. default: true
  39275. },
  39276. ]
  39277. ))
  39278. characterMakers.push(() => makeCharacter(
  39279. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39280. {
  39281. front: {
  39282. height: math.unit(16, "feet"),
  39283. name: "Front",
  39284. image: {
  39285. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39286. extra: 1844/1780,
  39287. bottom: 58/1902
  39288. }
  39289. },
  39290. winterCoat: {
  39291. height: math.unit(16, "feet"),
  39292. name: "Winter Coat",
  39293. image: {
  39294. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39295. extra: 1807/1775,
  39296. bottom: 69/1876
  39297. }
  39298. },
  39299. },
  39300. [
  39301. {
  39302. name: "Normal",
  39303. height: math.unit(16, "feet"),
  39304. default: true
  39305. },
  39306. {
  39307. name: "Chicago Size",
  39308. height: math.unit(560, "feet")
  39309. },
  39310. ]
  39311. ))
  39312. characterMakers.push(() => makeCharacter(
  39313. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39314. {
  39315. front: {
  39316. height: math.unit(11 + 6/12, "feet"),
  39317. weight: math.unit(1366, "lb"),
  39318. name: "Front",
  39319. image: {
  39320. source: "./media/characters/lexor/front.svg",
  39321. extra: 1560/1481,
  39322. bottom: 211/1771
  39323. }
  39324. },
  39325. back: {
  39326. height: math.unit(11 + 6/12, "feet"),
  39327. weight: math.unit(1366, "lb"),
  39328. name: "Back",
  39329. image: {
  39330. source: "./media/characters/lexor/back.svg",
  39331. extra: 1614/1533,
  39332. bottom: 76/1690
  39333. }
  39334. },
  39335. maw: {
  39336. height: math.unit(3, "feet"),
  39337. name: "Maw",
  39338. image: {
  39339. source: "./media/characters/lexor/maw.svg"
  39340. }
  39341. },
  39342. dick: {
  39343. height: math.unit(2.59, "feet"),
  39344. name: "Dick",
  39345. image: {
  39346. source: "./media/characters/lexor/dick.svg"
  39347. }
  39348. },
  39349. },
  39350. [
  39351. {
  39352. name: "Normal",
  39353. height: math.unit(11 + 6/12, "feet"),
  39354. default: true
  39355. },
  39356. ]
  39357. ))
  39358. characterMakers.push(() => makeCharacter(
  39359. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39360. {
  39361. front: {
  39362. height: math.unit(5 + 8/12, "feet"),
  39363. name: "Front",
  39364. image: {
  39365. source: "./media/characters/magnum/front.svg",
  39366. extra: 942/855,
  39367. bottom: 26/968
  39368. }
  39369. },
  39370. },
  39371. [
  39372. {
  39373. name: "Normal",
  39374. height: math.unit(5 + 8/12, "feet"),
  39375. default: true
  39376. },
  39377. ]
  39378. ))
  39379. characterMakers.push(() => makeCharacter(
  39380. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39381. {
  39382. front: {
  39383. height: math.unit(18 + 4/12, "feet"),
  39384. weight: math.unit(1500, "kg"),
  39385. name: "Front",
  39386. image: {
  39387. source: "./media/characters/solas-sharpsman/front.svg",
  39388. extra: 1698/1589,
  39389. bottom: 0/1698
  39390. }
  39391. },
  39392. },
  39393. [
  39394. {
  39395. name: "Normal",
  39396. height: math.unit(18 + 4/12, "feet"),
  39397. default: true
  39398. },
  39399. ]
  39400. ))
  39401. characterMakers.push(() => makeCharacter(
  39402. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39403. {
  39404. front: {
  39405. height: math.unit(5 + 5/12, "feet"),
  39406. weight: math.unit(180, "lb"),
  39407. name: "Front",
  39408. image: {
  39409. source: "./media/characters/october/front.svg",
  39410. extra: 1800/1650,
  39411. bottom: 0/1800
  39412. }
  39413. },
  39414. frontNsfw: {
  39415. height: math.unit(5 + 5/12, "feet"),
  39416. weight: math.unit(180, "lb"),
  39417. name: "Front (NSFW)",
  39418. image: {
  39419. source: "./media/characters/october/front-nsfw.svg",
  39420. extra: 1392/1307,
  39421. bottom: 42/1434
  39422. }
  39423. },
  39424. },
  39425. [
  39426. {
  39427. name: "Normal",
  39428. height: math.unit(5 + 5/12, "feet"),
  39429. default: true
  39430. },
  39431. ]
  39432. ))
  39433. characterMakers.push(() => makeCharacter(
  39434. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39435. {
  39436. front: {
  39437. height: math.unit(8 + 6/12, "feet"),
  39438. name: "Front",
  39439. image: {
  39440. source: "./media/characters/essynkardi/front.svg",
  39441. extra: 1541/1457,
  39442. bottom: 47/1588
  39443. }
  39444. },
  39445. },
  39446. [
  39447. {
  39448. name: "Normal",
  39449. height: math.unit(8 + 6/12, "feet"),
  39450. default: true
  39451. },
  39452. ]
  39453. ))
  39454. characterMakers.push(() => makeCharacter(
  39455. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39456. {
  39457. front: {
  39458. height: math.unit(6 + 6/12, "feet"),
  39459. weight: math.unit(7, "lb"),
  39460. name: "Front",
  39461. image: {
  39462. source: "./media/characters/icky/front.svg",
  39463. extra: 813/782,
  39464. bottom: 66/879
  39465. }
  39466. },
  39467. back: {
  39468. height: math.unit(6 + 6/12, "feet"),
  39469. weight: math.unit(7, "lb"),
  39470. name: "Back",
  39471. image: {
  39472. source: "./media/characters/icky/back.svg",
  39473. extra: 754/735,
  39474. bottom: 56/810
  39475. }
  39476. },
  39477. },
  39478. [
  39479. {
  39480. name: "Normal",
  39481. height: math.unit(6 + 6/12, "feet"),
  39482. default: true
  39483. },
  39484. ]
  39485. ))
  39486. characterMakers.push(() => makeCharacter(
  39487. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39488. {
  39489. front: {
  39490. height: math.unit(15, "feet"),
  39491. name: "Front",
  39492. image: {
  39493. source: "./media/characters/rojas/front.svg",
  39494. extra: 1462/1408,
  39495. bottom: 95/1557
  39496. }
  39497. },
  39498. back: {
  39499. height: math.unit(15, "feet"),
  39500. name: "Back",
  39501. image: {
  39502. source: "./media/characters/rojas/back.svg",
  39503. extra: 1023/954,
  39504. bottom: 28/1051
  39505. }
  39506. },
  39507. },
  39508. [
  39509. {
  39510. name: "Normal",
  39511. height: math.unit(15, "feet"),
  39512. default: true
  39513. },
  39514. ]
  39515. ))
  39516. characterMakers.push(() => makeCharacter(
  39517. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39518. {
  39519. frontHuman: {
  39520. height: math.unit(5 + 7/12, "feet"),
  39521. name: "Front (Human)",
  39522. image: {
  39523. source: "./media/characters/alek-dryagan/front-human.svg",
  39524. extra: 1687/1667,
  39525. bottom: 69/1756
  39526. }
  39527. },
  39528. backHuman: {
  39529. height: math.unit(5 + 7/12, "feet"),
  39530. name: "Back (Human)",
  39531. image: {
  39532. source: "./media/characters/alek-dryagan/back-human.svg",
  39533. extra: 1670/1649,
  39534. bottom: 65/1735
  39535. }
  39536. },
  39537. frontDemi: {
  39538. height: math.unit(65, "feet"),
  39539. name: "Front (Demi)",
  39540. image: {
  39541. source: "./media/characters/alek-dryagan/front-demi.svg",
  39542. extra: 1669/1642,
  39543. bottom: 49/1718
  39544. }
  39545. },
  39546. backDemi: {
  39547. height: math.unit(65, "feet"),
  39548. name: "Back (Demi)",
  39549. image: {
  39550. source: "./media/characters/alek-dryagan/back-demi.svg",
  39551. extra: 1658/1637,
  39552. bottom: 40/1698
  39553. }
  39554. },
  39555. mawHuman: {
  39556. height: math.unit(0.3, "feet"),
  39557. name: "Maw (Human)",
  39558. image: {
  39559. source: "./media/characters/alek-dryagan/maw-human.svg"
  39560. }
  39561. },
  39562. mawDemi: {
  39563. height: math.unit(3.8, "feet"),
  39564. name: "Maw (Demi)",
  39565. image: {
  39566. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39567. }
  39568. },
  39569. },
  39570. [
  39571. {
  39572. name: "Normal",
  39573. height: math.unit(5 + 7/12, "feet"),
  39574. default: true
  39575. },
  39576. ]
  39577. ))
  39578. characterMakers.push(() => makeCharacter(
  39579. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39580. {
  39581. frontHuman: {
  39582. height: math.unit(5 + 2/12, "feet"),
  39583. name: "Front (Human)",
  39584. image: {
  39585. source: "./media/characters/gen/front-human.svg",
  39586. extra: 1627/1538,
  39587. bottom: 71/1698
  39588. }
  39589. },
  39590. backHuman: {
  39591. height: math.unit(5 + 2/12, "feet"),
  39592. name: "Back (Human)",
  39593. image: {
  39594. source: "./media/characters/gen/back-human.svg",
  39595. extra: 1638/1548,
  39596. bottom: 69/1707
  39597. }
  39598. },
  39599. frontDemi: {
  39600. height: math.unit(5 + 2/12, "feet"),
  39601. name: "Front (Demi)",
  39602. image: {
  39603. source: "./media/characters/gen/front-demi.svg",
  39604. extra: 1627/1538,
  39605. bottom: 71/1698
  39606. }
  39607. },
  39608. backDemi: {
  39609. height: math.unit(5 + 2/12, "feet"),
  39610. name: "Back (Demi)",
  39611. image: {
  39612. source: "./media/characters/gen/back-demi.svg",
  39613. extra: 1638/1548,
  39614. bottom: 69/1707
  39615. }
  39616. },
  39617. },
  39618. [
  39619. {
  39620. name: "Normal",
  39621. height: math.unit(5 + 2/12, "feet"),
  39622. default: true
  39623. },
  39624. ]
  39625. ))
  39626. characterMakers.push(() => makeCharacter(
  39627. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39628. {
  39629. frontImp: {
  39630. height: math.unit(1 + 11/12, "feet"),
  39631. name: "Front (Imp)",
  39632. image: {
  39633. source: "./media/characters/max-kobold/front-imp.svg",
  39634. extra: 1238/1134,
  39635. bottom: 81/1319
  39636. }
  39637. },
  39638. backImp: {
  39639. height: math.unit(1 + 11/12, "feet"),
  39640. name: "Back (Imp)",
  39641. image: {
  39642. source: "./media/characters/max-kobold/back-imp.svg",
  39643. extra: 1334/1175,
  39644. bottom: 34/1368
  39645. }
  39646. },
  39647. frontDemi: {
  39648. height: math.unit(5 + 9/12, "feet"),
  39649. name: "Front (Demi)",
  39650. image: {
  39651. source: "./media/characters/max-kobold/front-demi.svg",
  39652. extra: 1715/1685,
  39653. bottom: 54/1769
  39654. }
  39655. },
  39656. backDemi: {
  39657. height: math.unit(5 + 9/12, "feet"),
  39658. name: "Back (Demi)",
  39659. image: {
  39660. source: "./media/characters/max-kobold/back-demi.svg",
  39661. extra: 1752/1729,
  39662. bottom: 41/1793
  39663. }
  39664. },
  39665. handImp: {
  39666. height: math.unit(0.45, "feet"),
  39667. name: "Hand (Imp)",
  39668. image: {
  39669. source: "./media/characters/max-kobold/hand.svg"
  39670. }
  39671. },
  39672. pawImp: {
  39673. height: math.unit(0.46, "feet"),
  39674. name: "Paw (Imp)",
  39675. image: {
  39676. source: "./media/characters/max-kobold/paw.svg"
  39677. }
  39678. },
  39679. handDemi: {
  39680. height: math.unit(0.80, "feet"),
  39681. name: "Hand (Demi)",
  39682. image: {
  39683. source: "./media/characters/max-kobold/hand.svg"
  39684. }
  39685. },
  39686. pawDemi: {
  39687. height: math.unit(1.1, "feet"),
  39688. name: "Paw (Demi)",
  39689. image: {
  39690. source: "./media/characters/max-kobold/paw.svg"
  39691. }
  39692. },
  39693. headImp: {
  39694. height: math.unit(1.33, "feet"),
  39695. name: "Head (Imp)",
  39696. image: {
  39697. source: "./media/characters/max-kobold/head-imp.svg"
  39698. }
  39699. },
  39700. mawImp: {
  39701. height: math.unit(0.75, "feet"),
  39702. name: "Maw (Imp)",
  39703. image: {
  39704. source: "./media/characters/max-kobold/maw-imp.svg"
  39705. }
  39706. },
  39707. mawDemi: {
  39708. height: math.unit(0.42, "feet"),
  39709. name: "Maw (Demi)",
  39710. image: {
  39711. source: "./media/characters/max-kobold/maw-demi.svg"
  39712. }
  39713. },
  39714. },
  39715. [
  39716. {
  39717. name: "Normal",
  39718. height: math.unit(1 + 11/12, "feet"),
  39719. default: true
  39720. },
  39721. ]
  39722. ))
  39723. characterMakers.push(() => makeCharacter(
  39724. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39725. {
  39726. front: {
  39727. height: math.unit(7 + 5/12, "feet"),
  39728. name: "Front",
  39729. image: {
  39730. source: "./media/characters/carbon/front.svg",
  39731. extra: 1754/1689,
  39732. bottom: 65/1819
  39733. }
  39734. },
  39735. back: {
  39736. height: math.unit(7 + 5/12, "feet"),
  39737. name: "Back",
  39738. image: {
  39739. source: "./media/characters/carbon/back.svg",
  39740. extra: 1762/1695,
  39741. bottom: 24/1786
  39742. }
  39743. },
  39744. frontGigantamax: {
  39745. height: math.unit(150, "feet"),
  39746. name: "Front (Gigantamax)",
  39747. image: {
  39748. source: "./media/characters/carbon/front-gigantamax.svg",
  39749. extra: 1826/1669,
  39750. bottom: 59/1885
  39751. }
  39752. },
  39753. backGigantamax: {
  39754. height: math.unit(150, "feet"),
  39755. name: "Back (Gigantamax)",
  39756. image: {
  39757. source: "./media/characters/carbon/back-gigantamax.svg",
  39758. extra: 1796/1653,
  39759. bottom: 53/1849
  39760. }
  39761. },
  39762. maw: {
  39763. height: math.unit(0.48, "feet"),
  39764. name: "Maw",
  39765. image: {
  39766. source: "./media/characters/carbon/maw.svg"
  39767. }
  39768. },
  39769. mawGigantamax: {
  39770. height: math.unit(7.5, "feet"),
  39771. name: "Maw (Gigantamax)",
  39772. image: {
  39773. source: "./media/characters/carbon/maw-gigantamax.svg"
  39774. }
  39775. },
  39776. },
  39777. [
  39778. {
  39779. name: "Normal",
  39780. height: math.unit(7 + 5/12, "feet"),
  39781. default: true
  39782. },
  39783. ]
  39784. ))
  39785. characterMakers.push(() => makeCharacter(
  39786. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39787. {
  39788. front: {
  39789. height: math.unit(6, "feet"),
  39790. name: "Front",
  39791. image: {
  39792. source: "./media/characters/maverick/front.svg",
  39793. extra: 1672/1661,
  39794. bottom: 85/1757
  39795. }
  39796. },
  39797. back: {
  39798. height: math.unit(6, "feet"),
  39799. name: "Back",
  39800. image: {
  39801. source: "./media/characters/maverick/back.svg",
  39802. extra: 1642/1631,
  39803. bottom: 38/1680
  39804. }
  39805. },
  39806. },
  39807. [
  39808. {
  39809. name: "Normal",
  39810. height: math.unit(6, "feet"),
  39811. default: true
  39812. },
  39813. ]
  39814. ))
  39815. characterMakers.push(() => makeCharacter(
  39816. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39817. {
  39818. front: {
  39819. height: math.unit(15, "feet"),
  39820. weight: math.unit(615, "lb"),
  39821. name: "Front",
  39822. image: {
  39823. source: "./media/characters/grockle/front.svg",
  39824. extra: 1535/1427,
  39825. bottom: 56/1591
  39826. }
  39827. },
  39828. },
  39829. [
  39830. {
  39831. name: "Normal",
  39832. height: math.unit(15, "feet"),
  39833. default: true
  39834. },
  39835. {
  39836. name: "Large",
  39837. height: math.unit(150, "feet")
  39838. },
  39839. {
  39840. name: "Macro",
  39841. height: math.unit(1876, "feet")
  39842. },
  39843. {
  39844. name: "Mega Macro",
  39845. height: math.unit(121940, "feet")
  39846. },
  39847. {
  39848. name: "Giga Macro",
  39849. height: math.unit(750, "km")
  39850. },
  39851. {
  39852. name: "Tera Macro",
  39853. height: math.unit(750000, "km")
  39854. },
  39855. {
  39856. name: "Galactic",
  39857. height: math.unit(1.4e5, "km")
  39858. },
  39859. {
  39860. name: "Godlike",
  39861. height: math.unit(9.8e280, "galaxies")
  39862. },
  39863. ]
  39864. ))
  39865. characterMakers.push(() => makeCharacter(
  39866. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39867. {
  39868. front: {
  39869. height: math.unit(11, "meters"),
  39870. weight: math.unit(20, "tonnes"),
  39871. name: "Front",
  39872. image: {
  39873. source: "./media/characters/alistair/front.svg",
  39874. extra: 1265/1009,
  39875. bottom: 93/1358
  39876. }
  39877. },
  39878. },
  39879. [
  39880. {
  39881. name: "Normal",
  39882. height: math.unit(11, "meters"),
  39883. default: true
  39884. },
  39885. ]
  39886. ))
  39887. characterMakers.push(() => makeCharacter(
  39888. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39889. {
  39890. front: {
  39891. height: math.unit(5 + 8/12, "feet"),
  39892. name: "Front",
  39893. image: {
  39894. source: "./media/characters/haruka/front.svg",
  39895. extra: 2012/1952,
  39896. bottom: 0/2012
  39897. }
  39898. },
  39899. },
  39900. [
  39901. {
  39902. name: "Normal",
  39903. height: math.unit(5 + 8/12, "feet"),
  39904. default: true
  39905. },
  39906. ]
  39907. ))
  39908. characterMakers.push(() => makeCharacter(
  39909. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39910. {
  39911. back: {
  39912. height: math.unit(9, "feet"),
  39913. name: "Back",
  39914. image: {
  39915. source: "./media/characters/vivian-sylveon/back.svg",
  39916. extra: 1853/1714,
  39917. bottom: 0/1853
  39918. }
  39919. },
  39920. hyper: {
  39921. height: math.unit(5.58, "feet"),
  39922. name: "Hyper",
  39923. preyCapacity: math.unit(2.80616218797, "m^3"),
  39924. image: {
  39925. source: "./media/characters/vivian-sylveon/hyper.svg",
  39926. extra: 999/676,
  39927. bottom: 697/1696
  39928. },
  39929. },
  39930. paw: {
  39931. height: math.unit(1.8, "feet"),
  39932. name: "Paw",
  39933. image: {
  39934. source: "./media/characters/vivian-sylveon/paw.svg"
  39935. }
  39936. },
  39937. danger: {
  39938. height: math.unit(7.5, "feet"),
  39939. name: "DANGER",
  39940. image: {
  39941. source: "./media/characters/vivian-sylveon/danger.svg"
  39942. }
  39943. },
  39944. },
  39945. [
  39946. {
  39947. name: "Normal",
  39948. height: math.unit(9, "feet"),
  39949. default: true
  39950. },
  39951. {
  39952. name: "Macro",
  39953. height: math.unit(500, "feet")
  39954. },
  39955. {
  39956. name: "Megamacro",
  39957. height: math.unit(600, "miles")
  39958. },
  39959. {
  39960. name: "Gigamacro",
  39961. height: math.unit(30000, "miles")
  39962. },
  39963. ]
  39964. ))
  39965. characterMakers.push(() => makeCharacter(
  39966. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39967. {
  39968. anthro: {
  39969. height: math.unit(5 + 10/12, "feet"),
  39970. weight: math.unit(100, "lb"),
  39971. name: "Anthro",
  39972. image: {
  39973. source: "./media/characters/daiki/anthro.svg",
  39974. extra: 1115/1027,
  39975. bottom: 69/1184
  39976. }
  39977. },
  39978. feral: {
  39979. height: math.unit(200, "feet"),
  39980. name: "Feral",
  39981. image: {
  39982. source: "./media/characters/daiki/feral.svg",
  39983. extra: 1256/313,
  39984. bottom: 39/1295
  39985. }
  39986. },
  39987. feralHead: {
  39988. height: math.unit(171, "feet"),
  39989. name: "Feral Head",
  39990. image: {
  39991. source: "./media/characters/daiki/feral-head.svg"
  39992. }
  39993. },
  39994. manaDragon: {
  39995. height: math.unit(170, "meters"),
  39996. name: "Mana-dragon",
  39997. image: {
  39998. source: "./media/characters/daiki/mana-dragon.svg",
  39999. extra: 763/420,
  40000. bottom: 97/860
  40001. }
  40002. },
  40003. },
  40004. [
  40005. {
  40006. name: "Normal",
  40007. height: math.unit(5 + 10/12, "feet"),
  40008. default: true
  40009. },
  40010. ]
  40011. ))
  40012. characterMakers.push(() => makeCharacter(
  40013. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40014. {
  40015. fullyEquippedFront: {
  40016. height: math.unit(3 + 1/12, "feet"),
  40017. weight: math.unit(24, "lb"),
  40018. name: "Fully Equipped (Front)",
  40019. image: {
  40020. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40021. extra: 687/605,
  40022. bottom: 18/705
  40023. }
  40024. },
  40025. fullyEquippedBack: {
  40026. height: math.unit(3 + 1/12, "feet"),
  40027. weight: math.unit(24, "lb"),
  40028. name: "Fully Equipped (Back)",
  40029. image: {
  40030. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40031. extra: 689/590,
  40032. bottom: 18/707
  40033. }
  40034. },
  40035. dailyWear: {
  40036. height: math.unit(3 + 1/12, "feet"),
  40037. weight: math.unit(24, "lb"),
  40038. name: "Daily Wear",
  40039. image: {
  40040. source: "./media/characters/tea-spot/daily-wear.svg",
  40041. extra: 701/620,
  40042. bottom: 21/722
  40043. }
  40044. },
  40045. maidWork: {
  40046. height: math.unit(3 + 1/12, "feet"),
  40047. weight: math.unit(24, "lb"),
  40048. name: "Maid Work",
  40049. image: {
  40050. source: "./media/characters/tea-spot/maid-work.svg",
  40051. extra: 693/609,
  40052. bottom: 15/708
  40053. }
  40054. },
  40055. },
  40056. [
  40057. {
  40058. name: "Normal",
  40059. height: math.unit(3 + 1/12, "feet"),
  40060. default: true
  40061. },
  40062. ]
  40063. ))
  40064. characterMakers.push(() => makeCharacter(
  40065. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40066. {
  40067. front: {
  40068. height: math.unit(175, "cm"),
  40069. weight: math.unit(75, "kg"),
  40070. name: "Front",
  40071. image: {
  40072. source: "./media/characters/chee/front.svg",
  40073. extra: 1796/1740,
  40074. bottom: 40/1836
  40075. }
  40076. },
  40077. },
  40078. [
  40079. {
  40080. name: "Micro-Micro",
  40081. height: math.unit(1, "nm")
  40082. },
  40083. {
  40084. name: "Micro-erst",
  40085. height: math.unit(1, "micrometer")
  40086. },
  40087. {
  40088. name: "Micro-er",
  40089. height: math.unit(1, "cm")
  40090. },
  40091. {
  40092. name: "Normal",
  40093. height: math.unit(175, "cm"),
  40094. default: true
  40095. },
  40096. {
  40097. name: "Macro",
  40098. height: math.unit(100, "m")
  40099. },
  40100. {
  40101. name: "Macro-er",
  40102. height: math.unit(1, "km")
  40103. },
  40104. {
  40105. name: "Macro-erst",
  40106. height: math.unit(10, "km")
  40107. },
  40108. {
  40109. name: "Macro-Macro",
  40110. height: math.unit(100, "km")
  40111. },
  40112. ]
  40113. ))
  40114. characterMakers.push(() => makeCharacter(
  40115. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40116. {
  40117. front: {
  40118. height: math.unit(11 + 9/12, "feet"),
  40119. weight: math.unit(935, "lb"),
  40120. name: "Front",
  40121. image: {
  40122. source: "./media/characters/kingsley/front.svg",
  40123. extra: 1803/1674,
  40124. bottom: 127/1930
  40125. }
  40126. },
  40127. frontNude: {
  40128. height: math.unit(11 + 9/12, "feet"),
  40129. weight: math.unit(935, "lb"),
  40130. name: "Front (Nude)",
  40131. image: {
  40132. source: "./media/characters/kingsley/front-nude.svg",
  40133. extra: 1803/1674,
  40134. bottom: 127/1930
  40135. }
  40136. },
  40137. },
  40138. [
  40139. {
  40140. name: "Normal",
  40141. height: math.unit(11 + 9/12, "feet"),
  40142. default: true
  40143. },
  40144. ]
  40145. ))
  40146. characterMakers.push(() => makeCharacter(
  40147. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40148. {
  40149. side: {
  40150. height: math.unit(9, "feet"),
  40151. name: "Side",
  40152. image: {
  40153. source: "./media/characters/rymel/side.svg",
  40154. extra: 792/469,
  40155. bottom: 121/913
  40156. }
  40157. },
  40158. maw: {
  40159. height: math.unit(2.4, "meters"),
  40160. name: "Maw",
  40161. image: {
  40162. source: "./media/characters/rymel/maw.svg"
  40163. }
  40164. },
  40165. },
  40166. [
  40167. {
  40168. name: "House Drake",
  40169. height: math.unit(2, "feet")
  40170. },
  40171. {
  40172. name: "Reduced",
  40173. height: math.unit(4.5, "feet")
  40174. },
  40175. {
  40176. name: "Normal",
  40177. height: math.unit(9, "feet"),
  40178. default: true
  40179. },
  40180. ]
  40181. ))
  40182. characterMakers.push(() => makeCharacter(
  40183. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40184. {
  40185. front: {
  40186. height: math.unit(1.74, "meters"),
  40187. weight: math.unit(55, "kg"),
  40188. name: "Front",
  40189. image: {
  40190. source: "./media/characters/rubus/front.svg",
  40191. extra: 1894/1742,
  40192. bottom: 44/1938
  40193. }
  40194. },
  40195. },
  40196. [
  40197. {
  40198. name: "Normal",
  40199. height: math.unit(1.74, "meters"),
  40200. default: true
  40201. },
  40202. ]
  40203. ))
  40204. characterMakers.push(() => makeCharacter(
  40205. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40206. {
  40207. front: {
  40208. height: math.unit(5 + 2/12, "feet"),
  40209. weight: math.unit(112, "lb"),
  40210. name: "Front",
  40211. image: {
  40212. source: "./media/characters/cassie-kingston/front.svg",
  40213. extra: 1438/1390,
  40214. bottom: 47/1485
  40215. }
  40216. },
  40217. },
  40218. [
  40219. {
  40220. name: "Normal",
  40221. height: math.unit(5 + 2/12, "feet"),
  40222. default: true
  40223. },
  40224. {
  40225. name: "Macro",
  40226. height: math.unit(128, "feet")
  40227. },
  40228. {
  40229. name: "Megamacro",
  40230. height: math.unit(2.56, "miles")
  40231. },
  40232. ]
  40233. ))
  40234. characterMakers.push(() => makeCharacter(
  40235. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40236. {
  40237. front: {
  40238. height: math.unit(7, "feet"),
  40239. name: "Front",
  40240. image: {
  40241. source: "./media/characters/fox/front.svg",
  40242. extra: 1798/1703,
  40243. bottom: 55/1853
  40244. }
  40245. },
  40246. back: {
  40247. height: math.unit(7, "feet"),
  40248. name: "Back",
  40249. image: {
  40250. source: "./media/characters/fox/back.svg",
  40251. extra: 1748/1649,
  40252. bottom: 32/1780
  40253. }
  40254. },
  40255. head: {
  40256. height: math.unit(1.95, "feet"),
  40257. name: "Head",
  40258. image: {
  40259. source: "./media/characters/fox/head.svg"
  40260. }
  40261. },
  40262. dick: {
  40263. height: math.unit(1.33, "feet"),
  40264. name: "Dick",
  40265. image: {
  40266. source: "./media/characters/fox/dick.svg"
  40267. }
  40268. },
  40269. foot: {
  40270. height: math.unit(1, "feet"),
  40271. name: "Foot",
  40272. image: {
  40273. source: "./media/characters/fox/foot.svg"
  40274. }
  40275. },
  40276. paw: {
  40277. height: math.unit(0.92, "feet"),
  40278. name: "Paw",
  40279. image: {
  40280. source: "./media/characters/fox/paw.svg"
  40281. }
  40282. },
  40283. },
  40284. [
  40285. {
  40286. name: "Small",
  40287. height: math.unit(3, "inches")
  40288. },
  40289. {
  40290. name: "\"Realistic\"",
  40291. height: math.unit(7, "feet")
  40292. },
  40293. {
  40294. name: "Normal",
  40295. height: math.unit(150, "feet"),
  40296. default: true
  40297. },
  40298. {
  40299. name: "BIG",
  40300. height: math.unit(1200, "feet")
  40301. },
  40302. {
  40303. name: "👀",
  40304. height: math.unit(5, "miles")
  40305. },
  40306. {
  40307. name: "👀👀👀",
  40308. height: math.unit(64, "miles")
  40309. },
  40310. ]
  40311. ))
  40312. characterMakers.push(() => makeCharacter(
  40313. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40314. {
  40315. front: {
  40316. height: math.unit(625, "feet"),
  40317. name: "Front",
  40318. image: {
  40319. source: "./media/characters/asonja-rossa/front.svg",
  40320. extra: 1833/1686,
  40321. bottom: 24/1857
  40322. }
  40323. },
  40324. back: {
  40325. height: math.unit(625, "feet"),
  40326. name: "Back",
  40327. image: {
  40328. source: "./media/characters/asonja-rossa/back.svg",
  40329. extra: 1852/1753,
  40330. bottom: 26/1878
  40331. }
  40332. },
  40333. },
  40334. [
  40335. {
  40336. name: "Macro",
  40337. height: math.unit(625, "feet"),
  40338. default: true
  40339. },
  40340. ]
  40341. ))
  40342. characterMakers.push(() => makeCharacter(
  40343. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40344. {
  40345. side: {
  40346. height: math.unit(8, "feet"),
  40347. name: "Side",
  40348. image: {
  40349. source: "./media/characters/rezukii/side.svg",
  40350. extra: 979/542,
  40351. bottom: 87/1066
  40352. }
  40353. },
  40354. sitting: {
  40355. height: math.unit(14.6, "feet"),
  40356. name: "Sitting",
  40357. image: {
  40358. source: "./media/characters/rezukii/sitting.svg",
  40359. extra: 1023/813,
  40360. bottom: 45/1068
  40361. }
  40362. },
  40363. },
  40364. [
  40365. {
  40366. name: "Tiny",
  40367. height: math.unit(2, "feet")
  40368. },
  40369. {
  40370. name: "Smol",
  40371. height: math.unit(4, "feet")
  40372. },
  40373. {
  40374. name: "Normal",
  40375. height: math.unit(8, "feet"),
  40376. default: true
  40377. },
  40378. {
  40379. name: "Big",
  40380. height: math.unit(12, "feet")
  40381. },
  40382. {
  40383. name: "Macro",
  40384. height: math.unit(30, "feet")
  40385. },
  40386. ]
  40387. ))
  40388. characterMakers.push(() => makeCharacter(
  40389. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40390. {
  40391. front: {
  40392. height: math.unit(14, "feet"),
  40393. weight: math.unit(9.5, "tonnes"),
  40394. name: "Front",
  40395. image: {
  40396. source: "./media/characters/dawnheart/front.svg",
  40397. extra: 2792/2675,
  40398. bottom: 64/2856
  40399. }
  40400. },
  40401. },
  40402. [
  40403. {
  40404. name: "Normal",
  40405. height: math.unit(14, "feet"),
  40406. default: true
  40407. },
  40408. ]
  40409. ))
  40410. characterMakers.push(() => makeCharacter(
  40411. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40412. {
  40413. front: {
  40414. height: math.unit(1.7, "m"),
  40415. name: "Front",
  40416. image: {
  40417. source: "./media/characters/gladi/front.svg",
  40418. extra: 1460/1362,
  40419. bottom: 19/1479
  40420. }
  40421. },
  40422. back: {
  40423. height: math.unit(1.7, "m"),
  40424. name: "Back",
  40425. image: {
  40426. source: "./media/characters/gladi/back.svg",
  40427. extra: 1459/1357,
  40428. bottom: 12/1471
  40429. }
  40430. },
  40431. feral: {
  40432. height: math.unit(2.05, "m"),
  40433. name: "Feral",
  40434. image: {
  40435. source: "./media/characters/gladi/feral.svg",
  40436. extra: 821/557,
  40437. bottom: 91/912
  40438. }
  40439. },
  40440. },
  40441. [
  40442. {
  40443. name: "Shortest",
  40444. height: math.unit(70, "cm")
  40445. },
  40446. {
  40447. name: "Normal",
  40448. height: math.unit(1.7, "m")
  40449. },
  40450. {
  40451. name: "Macro",
  40452. height: math.unit(10, "m"),
  40453. default: true
  40454. },
  40455. {
  40456. name: "Tallest",
  40457. height: math.unit(200, "m")
  40458. },
  40459. ]
  40460. ))
  40461. characterMakers.push(() => makeCharacter(
  40462. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40463. {
  40464. front: {
  40465. height: math.unit(5 + 7/12, "feet"),
  40466. weight: math.unit(2, "tons"),
  40467. name: "Front",
  40468. image: {
  40469. source: "./media/characters/erdno/front.svg",
  40470. extra: 1234/1129,
  40471. bottom: 35/1269
  40472. }
  40473. },
  40474. angled: {
  40475. height: math.unit(5 + 7/12, "feet"),
  40476. weight: math.unit(2, "tons"),
  40477. name: "Angled",
  40478. image: {
  40479. source: "./media/characters/erdno/angled.svg",
  40480. extra: 1185/1139,
  40481. bottom: 36/1221
  40482. }
  40483. },
  40484. side: {
  40485. height: math.unit(5 + 7/12, "feet"),
  40486. weight: math.unit(2, "tons"),
  40487. name: "Side",
  40488. image: {
  40489. source: "./media/characters/erdno/side.svg",
  40490. extra: 1191/1144,
  40491. bottom: 40/1231
  40492. }
  40493. },
  40494. back: {
  40495. height: math.unit(5 + 7/12, "feet"),
  40496. weight: math.unit(2, "tons"),
  40497. name: "Back",
  40498. image: {
  40499. source: "./media/characters/erdno/back.svg",
  40500. extra: 1202/1146,
  40501. bottom: 17/1219
  40502. }
  40503. },
  40504. frontNsfw: {
  40505. height: math.unit(5 + 7/12, "feet"),
  40506. weight: math.unit(2, "tons"),
  40507. name: "Front (NSFW)",
  40508. image: {
  40509. source: "./media/characters/erdno/front-nsfw.svg",
  40510. extra: 1234/1129,
  40511. bottom: 35/1269
  40512. }
  40513. },
  40514. angledNsfw: {
  40515. height: math.unit(5 + 7/12, "feet"),
  40516. weight: math.unit(2, "tons"),
  40517. name: "Angled (NSFW)",
  40518. image: {
  40519. source: "./media/characters/erdno/angled-nsfw.svg",
  40520. extra: 1185/1139,
  40521. bottom: 36/1221
  40522. }
  40523. },
  40524. sideNsfw: {
  40525. height: math.unit(5 + 7/12, "feet"),
  40526. weight: math.unit(2, "tons"),
  40527. name: "Side (NSFW)",
  40528. image: {
  40529. source: "./media/characters/erdno/side-nsfw.svg",
  40530. extra: 1191/1144,
  40531. bottom: 40/1231
  40532. }
  40533. },
  40534. backNsfw: {
  40535. height: math.unit(5 + 7/12, "feet"),
  40536. weight: math.unit(2, "tons"),
  40537. name: "Back (NSFW)",
  40538. image: {
  40539. source: "./media/characters/erdno/back-nsfw.svg",
  40540. extra: 1202/1146,
  40541. bottom: 17/1219
  40542. }
  40543. },
  40544. frontHyper: {
  40545. height: math.unit(5 + 7/12, "feet"),
  40546. weight: math.unit(2, "tons"),
  40547. name: "Front (Hyper)",
  40548. image: {
  40549. source: "./media/characters/erdno/front-hyper.svg",
  40550. extra: 1298/1136,
  40551. bottom: 35/1333
  40552. }
  40553. },
  40554. },
  40555. [
  40556. {
  40557. name: "Normal",
  40558. height: math.unit(5 + 7/12, "feet"),
  40559. default: true
  40560. },
  40561. {
  40562. name: "Big",
  40563. height: math.unit(5.7, "meters")
  40564. },
  40565. {
  40566. name: "Macro",
  40567. height: math.unit(5.7, "kilometers")
  40568. },
  40569. {
  40570. name: "Megamacro",
  40571. height: math.unit(5.7, "earths")
  40572. },
  40573. ]
  40574. ))
  40575. characterMakers.push(() => makeCharacter(
  40576. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40577. {
  40578. front: {
  40579. height: math.unit(5 + 10/12, "feet"),
  40580. weight: math.unit(150, "lb"),
  40581. name: "Front",
  40582. image: {
  40583. source: "./media/characters/jamie/front.svg",
  40584. extra: 1908/1768,
  40585. bottom: 19/1927
  40586. }
  40587. },
  40588. },
  40589. [
  40590. {
  40591. name: "Minimum",
  40592. height: math.unit(2, "cm")
  40593. },
  40594. {
  40595. name: "Micro",
  40596. height: math.unit(3, "inches")
  40597. },
  40598. {
  40599. name: "Normal",
  40600. height: math.unit(5 + 10/12, "feet"),
  40601. default: true
  40602. },
  40603. {
  40604. name: "Macro",
  40605. height: math.unit(150, "feet")
  40606. },
  40607. {
  40608. name: "Megamacro",
  40609. height: math.unit(10000, "m")
  40610. },
  40611. ]
  40612. ))
  40613. characterMakers.push(() => makeCharacter(
  40614. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40615. {
  40616. front: {
  40617. height: math.unit(2, "meters"),
  40618. weight: math.unit(100, "kg"),
  40619. name: "Front",
  40620. image: {
  40621. source: "./media/characters/shiron/front.svg",
  40622. extra: 2103/1985,
  40623. bottom: 98/2201
  40624. }
  40625. },
  40626. back: {
  40627. height: math.unit(2, "meters"),
  40628. weight: math.unit(100, "kg"),
  40629. name: "Back",
  40630. image: {
  40631. source: "./media/characters/shiron/back.svg",
  40632. extra: 2110/2015,
  40633. bottom: 89/2199
  40634. }
  40635. },
  40636. hand: {
  40637. height: math.unit(0.96, "feet"),
  40638. name: "Hand",
  40639. image: {
  40640. source: "./media/characters/shiron/hand.svg"
  40641. }
  40642. },
  40643. foot: {
  40644. height: math.unit(1.464, "feet"),
  40645. name: "Foot",
  40646. image: {
  40647. source: "./media/characters/shiron/foot.svg"
  40648. }
  40649. },
  40650. },
  40651. [
  40652. {
  40653. name: "Normal",
  40654. height: math.unit(2, "meters")
  40655. },
  40656. {
  40657. name: "Macro",
  40658. height: math.unit(500, "meters"),
  40659. default: true
  40660. },
  40661. {
  40662. name: "Megamacro",
  40663. height: math.unit(20, "km")
  40664. },
  40665. ]
  40666. ))
  40667. characterMakers.push(() => makeCharacter(
  40668. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40669. {
  40670. front: {
  40671. height: math.unit(6, "feet"),
  40672. name: "Front",
  40673. image: {
  40674. source: "./media/characters/sam/front.svg",
  40675. extra: 849/826,
  40676. bottom: 19/868
  40677. }
  40678. },
  40679. },
  40680. [
  40681. {
  40682. name: "Normal",
  40683. height: math.unit(6, "feet"),
  40684. default: true
  40685. },
  40686. ]
  40687. ))
  40688. characterMakers.push(() => makeCharacter(
  40689. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40690. {
  40691. front: {
  40692. height: math.unit(8 + 4/12, "feet"),
  40693. weight: math.unit(122, "kg"),
  40694. name: "Front",
  40695. image: {
  40696. source: "./media/characters/namori-kurogawa/front.svg",
  40697. extra: 1894/1576,
  40698. bottom: 34/1928
  40699. }
  40700. },
  40701. },
  40702. [
  40703. {
  40704. name: "Normal",
  40705. height: math.unit(8 + 4/12, "feet"),
  40706. default: true
  40707. },
  40708. ]
  40709. ))
  40710. characterMakers.push(() => makeCharacter(
  40711. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40712. {
  40713. front: {
  40714. height: math.unit(9, "feet"),
  40715. weight: math.unit(621, "lb"),
  40716. name: "Front",
  40717. image: {
  40718. source: "./media/characters/unmru/front.svg",
  40719. extra: 1853/1747,
  40720. bottom: 73/1926
  40721. }
  40722. },
  40723. side: {
  40724. height: math.unit(9, "feet"),
  40725. weight: math.unit(621, "lb"),
  40726. name: "Side",
  40727. image: {
  40728. source: "./media/characters/unmru/side.svg",
  40729. extra: 1781/1671,
  40730. bottom: 127/1908
  40731. }
  40732. },
  40733. back: {
  40734. height: math.unit(9, "feet"),
  40735. weight: math.unit(621, "lb"),
  40736. name: "Back",
  40737. image: {
  40738. source: "./media/characters/unmru/back.svg",
  40739. extra: 1894/1765,
  40740. bottom: 75/1969
  40741. }
  40742. },
  40743. dick: {
  40744. height: math.unit(3, "feet"),
  40745. weight: math.unit(35, "lb"),
  40746. name: "Dick",
  40747. image: {
  40748. source: "./media/characters/unmru/dick.svg"
  40749. }
  40750. },
  40751. },
  40752. [
  40753. {
  40754. name: "Normal",
  40755. height: math.unit(9, "feet")
  40756. },
  40757. {
  40758. name: "Natural",
  40759. height: math.unit(27, "feet"),
  40760. default: true
  40761. },
  40762. {
  40763. name: "Giant",
  40764. height: math.unit(90, "feet")
  40765. },
  40766. {
  40767. name: "Kaiju",
  40768. height: math.unit(270, "feet")
  40769. },
  40770. {
  40771. name: "Macro",
  40772. height: math.unit(900, "feet")
  40773. },
  40774. {
  40775. name: "Macro+",
  40776. height: math.unit(2700, "feet")
  40777. },
  40778. {
  40779. name: "Megamacro",
  40780. height: math.unit(9000, "feet")
  40781. },
  40782. {
  40783. name: "City-Crushing",
  40784. height: math.unit(27000, "feet")
  40785. },
  40786. {
  40787. name: "Mountain-Mashing",
  40788. height: math.unit(90000, "feet")
  40789. },
  40790. {
  40791. name: "Earth-Eclipsing",
  40792. height: math.unit(2.7e8, "feet")
  40793. },
  40794. {
  40795. name: "Sol-Swallowing",
  40796. height: math.unit(9e10, "feet")
  40797. },
  40798. {
  40799. name: "Majoris-Munching",
  40800. height: math.unit(2.7e13, "feet")
  40801. },
  40802. ]
  40803. ))
  40804. characterMakers.push(() => makeCharacter(
  40805. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40806. {
  40807. front: {
  40808. height: math.unit(1, "inch"),
  40809. name: "Front",
  40810. image: {
  40811. source: "./media/characters/squeaks-mouse/front.svg",
  40812. extra: 352/308,
  40813. bottom: 25/377
  40814. }
  40815. },
  40816. },
  40817. [
  40818. {
  40819. name: "Micro",
  40820. height: math.unit(1, "inch"),
  40821. default: true
  40822. },
  40823. ]
  40824. ))
  40825. characterMakers.push(() => makeCharacter(
  40826. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40827. {
  40828. side: {
  40829. height: math.unit(35, "feet"),
  40830. name: "Side",
  40831. image: {
  40832. source: "./media/characters/sayko/side.svg",
  40833. extra: 1697/1021,
  40834. bottom: 82/1779
  40835. }
  40836. },
  40837. head: {
  40838. height: math.unit(16, "feet"),
  40839. name: "Head",
  40840. image: {
  40841. source: "./media/characters/sayko/head.svg"
  40842. }
  40843. },
  40844. forepaw: {
  40845. height: math.unit(7.85, "feet"),
  40846. name: "Forepaw",
  40847. image: {
  40848. source: "./media/characters/sayko/forepaw.svg"
  40849. }
  40850. },
  40851. hindpaw: {
  40852. height: math.unit(8.8, "feet"),
  40853. name: "Hindpaw",
  40854. image: {
  40855. source: "./media/characters/sayko/hindpaw.svg"
  40856. }
  40857. },
  40858. },
  40859. [
  40860. {
  40861. name: "Normal",
  40862. height: math.unit(35, "feet"),
  40863. default: true
  40864. },
  40865. {
  40866. name: "Colossus",
  40867. height: math.unit(100, "meters")
  40868. },
  40869. {
  40870. name: "\"Small\" Deity",
  40871. height: math.unit(1, "km")
  40872. },
  40873. {
  40874. name: "\"Large\" Deity",
  40875. height: math.unit(15, "km")
  40876. },
  40877. ]
  40878. ))
  40879. characterMakers.push(() => makeCharacter(
  40880. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40881. {
  40882. front: {
  40883. height: math.unit(6, "feet"),
  40884. weight: math.unit(250, "lb"),
  40885. name: "Front",
  40886. image: {
  40887. source: "./media/characters/mukiro/front.svg",
  40888. extra: 1368/1310,
  40889. bottom: 34/1402
  40890. }
  40891. },
  40892. },
  40893. [
  40894. {
  40895. name: "Normal",
  40896. height: math.unit(6, "feet"),
  40897. default: true
  40898. },
  40899. ]
  40900. ))
  40901. characterMakers.push(() => makeCharacter(
  40902. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40903. {
  40904. front: {
  40905. height: math.unit(12 + 4/12, "feet"),
  40906. name: "Front",
  40907. image: {
  40908. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40909. extra: 1346/1311,
  40910. bottom: 65/1411
  40911. }
  40912. },
  40913. },
  40914. [
  40915. {
  40916. name: "Base",
  40917. height: math.unit(12 + 4/12, "feet"),
  40918. default: true
  40919. },
  40920. {
  40921. name: "Macro",
  40922. height: math.unit(150, "feet")
  40923. },
  40924. {
  40925. name: "Mega",
  40926. height: math.unit(2, "miles")
  40927. },
  40928. {
  40929. name: "Demi God",
  40930. height: math.unit(4, "AU")
  40931. },
  40932. {
  40933. name: "God Size",
  40934. height: math.unit(1, "universe")
  40935. },
  40936. ]
  40937. ))
  40938. characterMakers.push(() => makeCharacter(
  40939. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40940. {
  40941. front: {
  40942. height: math.unit(3 + 3/12, "feet"),
  40943. weight: math.unit(88, "lb"),
  40944. name: "Front",
  40945. image: {
  40946. source: "./media/characters/trey/front.svg",
  40947. extra: 1815/1509,
  40948. bottom: 60/1875
  40949. }
  40950. },
  40951. },
  40952. [
  40953. {
  40954. name: "Normal",
  40955. height: math.unit(3 + 3/12, "feet"),
  40956. default: true
  40957. },
  40958. ]
  40959. ))
  40960. characterMakers.push(() => makeCharacter(
  40961. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40962. {
  40963. front: {
  40964. height: math.unit(4, "meters"),
  40965. name: "Front",
  40966. image: {
  40967. source: "./media/characters/adelonda/front.svg",
  40968. extra: 1077/982,
  40969. bottom: 39/1116
  40970. }
  40971. },
  40972. back: {
  40973. height: math.unit(4, "meters"),
  40974. name: "Back",
  40975. image: {
  40976. source: "./media/characters/adelonda/back.svg",
  40977. extra: 1105/1003,
  40978. bottom: 25/1130
  40979. }
  40980. },
  40981. feral: {
  40982. height: math.unit(40/1.5, "meters"),
  40983. name: "Feral",
  40984. image: {
  40985. source: "./media/characters/adelonda/feral.svg",
  40986. extra: 597/271,
  40987. bottom: 387/984
  40988. }
  40989. },
  40990. },
  40991. [
  40992. {
  40993. name: "Normal",
  40994. height: math.unit(4, "meters"),
  40995. default: true
  40996. },
  40997. ]
  40998. ))
  40999. characterMakers.push(() => makeCharacter(
  41000. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41001. {
  41002. front: {
  41003. height: math.unit(8 + 4/12, "feet"),
  41004. weight: math.unit(670, "lb"),
  41005. name: "Front",
  41006. image: {
  41007. source: "./media/characters/acadiel/front.svg",
  41008. extra: 1901/1595,
  41009. bottom: 142/2043
  41010. }
  41011. },
  41012. },
  41013. [
  41014. {
  41015. name: "Normal",
  41016. height: math.unit(8 + 4/12, "feet"),
  41017. default: true
  41018. },
  41019. {
  41020. name: "Macro",
  41021. height: math.unit(200, "feet")
  41022. },
  41023. ]
  41024. ))
  41025. characterMakers.push(() => makeCharacter(
  41026. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41027. {
  41028. front: {
  41029. height: math.unit(6 + 2/12, "feet"),
  41030. weight: math.unit(185, "lb"),
  41031. name: "Front",
  41032. image: {
  41033. source: "./media/characters/kayne-ein/front.svg",
  41034. extra: 1780/1560,
  41035. bottom: 81/1861
  41036. }
  41037. },
  41038. },
  41039. [
  41040. {
  41041. name: "Normal",
  41042. height: math.unit(6 + 2/12, "feet"),
  41043. default: true
  41044. },
  41045. {
  41046. name: "Transformation Stage",
  41047. height: math.unit(15, "feet")
  41048. },
  41049. {
  41050. name: "Macro",
  41051. height: math.unit(150, "feet")
  41052. },
  41053. {
  41054. name: "Earth's Shadow",
  41055. height: math.unit(6200, "miles")
  41056. },
  41057. {
  41058. name: "Universal Demon",
  41059. height: math.unit(28e9, "parsecs")
  41060. },
  41061. {
  41062. name: "Multiverse God",
  41063. height: math.unit(3, "multiverses")
  41064. },
  41065. ]
  41066. ))
  41067. characterMakers.push(() => makeCharacter(
  41068. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41069. {
  41070. front: {
  41071. height: math.unit(5 + 5/12, "feet"),
  41072. name: "Front",
  41073. image: {
  41074. source: "./media/characters/fawn/front.svg",
  41075. extra: 1873/1731,
  41076. bottom: 95/1968
  41077. }
  41078. },
  41079. back: {
  41080. height: math.unit(5 + 5/12, "feet"),
  41081. name: "Back",
  41082. image: {
  41083. source: "./media/characters/fawn/back.svg",
  41084. extra: 1813/1700,
  41085. bottom: 14/1827
  41086. }
  41087. },
  41088. hoof: {
  41089. height: math.unit(1.45, "feet"),
  41090. name: "Hoof",
  41091. image: {
  41092. source: "./media/characters/fawn/hoof.svg"
  41093. }
  41094. },
  41095. },
  41096. [
  41097. {
  41098. name: "Normal",
  41099. height: math.unit(5 + 5/12, "feet"),
  41100. default: true
  41101. },
  41102. ]
  41103. ))
  41104. characterMakers.push(() => makeCharacter(
  41105. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41106. {
  41107. front: {
  41108. height: math.unit(2 + 5/12, "feet"),
  41109. name: "Front",
  41110. image: {
  41111. source: "./media/characters/orion/front.svg",
  41112. extra: 1366/1304,
  41113. bottom: 43/1409
  41114. }
  41115. },
  41116. paw: {
  41117. height: math.unit(0.52, "feet"),
  41118. name: "Paw",
  41119. image: {
  41120. source: "./media/characters/orion/paw.svg"
  41121. }
  41122. },
  41123. },
  41124. [
  41125. {
  41126. name: "Normal",
  41127. height: math.unit(2 + 5/12, "feet"),
  41128. default: true
  41129. },
  41130. ]
  41131. ))
  41132. characterMakers.push(() => makeCharacter(
  41133. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41134. {
  41135. front: {
  41136. height: math.unit(5 + 10/12, "feet"),
  41137. name: "Front",
  41138. image: {
  41139. source: "./media/characters/vera/front.svg",
  41140. extra: 1680/1575,
  41141. bottom: 49/1729
  41142. }
  41143. },
  41144. back: {
  41145. height: math.unit(5 + 10/12, "feet"),
  41146. name: "Back",
  41147. image: {
  41148. source: "./media/characters/vera/back.svg",
  41149. extra: 1700/1588,
  41150. bottom: 18/1718
  41151. }
  41152. },
  41153. arcanine: {
  41154. height: math.unit(6 + 8/12, "feet"),
  41155. name: "Arcanine",
  41156. image: {
  41157. source: "./media/characters/vera/arcanine.svg",
  41158. extra: 1590/1511,
  41159. bottom: 71/1661
  41160. }
  41161. },
  41162. maw: {
  41163. height: math.unit(0.82, "feet"),
  41164. name: "Maw",
  41165. image: {
  41166. source: "./media/characters/vera/maw.svg"
  41167. }
  41168. },
  41169. mawArcanine: {
  41170. height: math.unit(0.97, "feet"),
  41171. name: "Maw (Arcanine)",
  41172. image: {
  41173. source: "./media/characters/vera/maw-arcanine.svg"
  41174. }
  41175. },
  41176. paw: {
  41177. height: math.unit(0.75, "feet"),
  41178. name: "Paw",
  41179. image: {
  41180. source: "./media/characters/vera/paw.svg"
  41181. }
  41182. },
  41183. pawprint: {
  41184. height: math.unit(0.52, "feet"),
  41185. name: "Pawprint",
  41186. image: {
  41187. source: "./media/characters/vera/pawprint.svg"
  41188. }
  41189. },
  41190. },
  41191. [
  41192. {
  41193. name: "Normal",
  41194. height: math.unit(5 + 10/12, "feet"),
  41195. default: true
  41196. },
  41197. {
  41198. name: "Macro",
  41199. height: math.unit(75, "feet")
  41200. },
  41201. ]
  41202. ))
  41203. characterMakers.push(() => makeCharacter(
  41204. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41205. {
  41206. front: {
  41207. height: math.unit(4, "feet"),
  41208. weight: math.unit(40, "lb"),
  41209. name: "Front",
  41210. image: {
  41211. source: "./media/characters/orvan-rabbit/front.svg",
  41212. extra: 1896/1642,
  41213. bottom: 29/1925
  41214. }
  41215. },
  41216. },
  41217. [
  41218. {
  41219. name: "Normal",
  41220. height: math.unit(4, "feet"),
  41221. default: true
  41222. },
  41223. ]
  41224. ))
  41225. characterMakers.push(() => makeCharacter(
  41226. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41227. {
  41228. front: {
  41229. height: math.unit(6, "feet"),
  41230. weight: math.unit(168, "lb"),
  41231. name: "Front",
  41232. image: {
  41233. source: "./media/characters/lisa/front.svg",
  41234. extra: 2065/1867,
  41235. bottom: 46/2111
  41236. }
  41237. },
  41238. back: {
  41239. height: math.unit(6, "feet"),
  41240. weight: math.unit(168, "lb"),
  41241. name: "Back",
  41242. image: {
  41243. source: "./media/characters/lisa/back.svg",
  41244. extra: 1982/1838,
  41245. bottom: 29/2011
  41246. }
  41247. },
  41248. maw: {
  41249. height: math.unit(0.81, "feet"),
  41250. name: "Maw",
  41251. image: {
  41252. source: "./media/characters/lisa/maw.svg"
  41253. }
  41254. },
  41255. paw: {
  41256. height: math.unit(0.9, "feet"),
  41257. name: "Paw",
  41258. image: {
  41259. source: "./media/characters/lisa/paw.svg"
  41260. }
  41261. },
  41262. caribousune: {
  41263. height: math.unit(7 + 2/12, "feet"),
  41264. weight: math.unit(268, "lb"),
  41265. name: "Caribousune",
  41266. image: {
  41267. source: "./media/characters/lisa/caribousune.svg",
  41268. extra: 1843/1633,
  41269. bottom: 29/1872
  41270. }
  41271. },
  41272. frontCaribousune: {
  41273. height: math.unit(7 + 2/12, "feet"),
  41274. weight: math.unit(268, "lb"),
  41275. name: "Front (Caribousune)",
  41276. image: {
  41277. source: "./media/characters/lisa/front-caribousune.svg",
  41278. extra: 1818/1638,
  41279. bottom: 52/1870
  41280. }
  41281. },
  41282. sideCaribousune: {
  41283. height: math.unit(7 + 2/12, "feet"),
  41284. weight: math.unit(268, "lb"),
  41285. name: "Side (Caribousune)",
  41286. image: {
  41287. source: "./media/characters/lisa/side-caribousune.svg",
  41288. extra: 1851/1635,
  41289. bottom: 16/1867
  41290. }
  41291. },
  41292. backCaribousune: {
  41293. height: math.unit(7 + 2/12, "feet"),
  41294. weight: math.unit(268, "lb"),
  41295. name: "Back (Caribousune)",
  41296. image: {
  41297. source: "./media/characters/lisa/back-caribousune.svg",
  41298. extra: 1801/1604,
  41299. bottom: 44/1845
  41300. }
  41301. },
  41302. caribou: {
  41303. height: math.unit(7 + 2/12, "feet"),
  41304. weight: math.unit(268, "lb"),
  41305. name: "Caribou",
  41306. image: {
  41307. source: "./media/characters/lisa/caribou.svg",
  41308. extra: 1843/1633,
  41309. bottom: 29/1872
  41310. }
  41311. },
  41312. frontCaribou: {
  41313. height: math.unit(7 + 2/12, "feet"),
  41314. weight: math.unit(268, "lb"),
  41315. name: "Front (Caribou)",
  41316. image: {
  41317. source: "./media/characters/lisa/front-caribou.svg",
  41318. extra: 1818/1638,
  41319. bottom: 52/1870
  41320. }
  41321. },
  41322. sideCaribou: {
  41323. height: math.unit(7 + 2/12, "feet"),
  41324. weight: math.unit(268, "lb"),
  41325. name: "Side (Caribou)",
  41326. image: {
  41327. source: "./media/characters/lisa/side-caribou.svg",
  41328. extra: 1851/1635,
  41329. bottom: 16/1867
  41330. }
  41331. },
  41332. backCaribou: {
  41333. height: math.unit(7 + 2/12, "feet"),
  41334. weight: math.unit(268, "lb"),
  41335. name: "Back (Caribou)",
  41336. image: {
  41337. source: "./media/characters/lisa/back-caribou.svg",
  41338. extra: 1801/1604,
  41339. bottom: 44/1845
  41340. }
  41341. },
  41342. mawCaribou: {
  41343. height: math.unit(1.45, "feet"),
  41344. name: "Maw (Caribou)",
  41345. image: {
  41346. source: "./media/characters/lisa/maw-caribou.svg"
  41347. }
  41348. },
  41349. mawCaribousune: {
  41350. height: math.unit(1.45, "feet"),
  41351. name: "Maw (Caribousune)",
  41352. image: {
  41353. source: "./media/characters/lisa/maw-caribousune.svg"
  41354. }
  41355. },
  41356. pawCaribousune: {
  41357. height: math.unit(1.61, "feet"),
  41358. name: "Paw (Caribou)",
  41359. image: {
  41360. source: "./media/characters/lisa/paw-caribousune.svg"
  41361. }
  41362. },
  41363. },
  41364. [
  41365. {
  41366. name: "Normal",
  41367. height: math.unit(6, "feet")
  41368. },
  41369. {
  41370. name: "God Size",
  41371. height: math.unit(72, "feet"),
  41372. default: true
  41373. },
  41374. {
  41375. name: "Towering",
  41376. height: math.unit(288, "feet")
  41377. },
  41378. {
  41379. name: "City Size",
  41380. height: math.unit(48384, "feet")
  41381. },
  41382. {
  41383. name: "Continental",
  41384. height: math.unit(4200, "miles")
  41385. },
  41386. {
  41387. name: "Planet Eater",
  41388. height: math.unit(42, "earths")
  41389. },
  41390. {
  41391. name: "Star Swallower",
  41392. height: math.unit(42, "solarradii")
  41393. },
  41394. {
  41395. name: "System Swallower",
  41396. height: math.unit(84000, "AU")
  41397. },
  41398. {
  41399. name: "Galaxy Gobbler",
  41400. height: math.unit(42, "galaxies")
  41401. },
  41402. {
  41403. name: "Universe Devourer",
  41404. height: math.unit(42, "universes")
  41405. },
  41406. {
  41407. name: "Multiverse Muncher",
  41408. height: math.unit(42, "multiverses")
  41409. },
  41410. ]
  41411. ))
  41412. characterMakers.push(() => makeCharacter(
  41413. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41414. {
  41415. front: {
  41416. height: math.unit(36, "feet"),
  41417. name: "Front",
  41418. image: {
  41419. source: "./media/characters/shadow-rat/front.svg",
  41420. extra: 1845/1758,
  41421. bottom: 83/1928
  41422. }
  41423. },
  41424. },
  41425. [
  41426. {
  41427. name: "Macro",
  41428. height: math.unit(36, "feet"),
  41429. default: true
  41430. },
  41431. ]
  41432. ))
  41433. characterMakers.push(() => makeCharacter(
  41434. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41435. {
  41436. side: {
  41437. height: math.unit(8, "feet"),
  41438. weight: math.unit(2630, "lb"),
  41439. name: "Side",
  41440. image: {
  41441. source: "./media/characters/torallia/side.svg",
  41442. extra: 2164/2021,
  41443. bottom: 371/2535
  41444. }
  41445. },
  41446. },
  41447. [
  41448. {
  41449. name: "Mortal Interaction",
  41450. height: math.unit(8, "feet")
  41451. },
  41452. {
  41453. name: "Natural",
  41454. height: math.unit(24, "feet"),
  41455. default: true
  41456. },
  41457. {
  41458. name: "Giant",
  41459. height: math.unit(80, "feet")
  41460. },
  41461. {
  41462. name: "Kaiju",
  41463. height: math.unit(240, "feet")
  41464. },
  41465. {
  41466. name: "Macro",
  41467. height: math.unit(800, "feet")
  41468. },
  41469. {
  41470. name: "Macro+",
  41471. height: math.unit(2400, "feet")
  41472. },
  41473. {
  41474. name: "Macro++",
  41475. height: math.unit(8000, "feet")
  41476. },
  41477. {
  41478. name: "City-Crushing",
  41479. height: math.unit(24000, "feet")
  41480. },
  41481. {
  41482. name: "Mountain-Mashing",
  41483. height: math.unit(80000, "feet")
  41484. },
  41485. {
  41486. name: "District Demolisher",
  41487. height: math.unit(240000, "feet")
  41488. },
  41489. {
  41490. name: "Tri-County Terror",
  41491. height: math.unit(800000, "feet")
  41492. },
  41493. {
  41494. name: "State Smasher",
  41495. height: math.unit(2.4e6, "feet")
  41496. },
  41497. {
  41498. name: "Nation Nemesis",
  41499. height: math.unit(8e6, "feet")
  41500. },
  41501. {
  41502. name: "Continent Cracker",
  41503. height: math.unit(2.4e7, "feet")
  41504. },
  41505. {
  41506. name: "Planet-Pillaging",
  41507. height: math.unit(8e7, "feet")
  41508. },
  41509. {
  41510. name: "Earth-Eclipsing",
  41511. height: math.unit(2.4e8, "feet")
  41512. },
  41513. {
  41514. name: "Jovian-Jostling",
  41515. height: math.unit(8e8, "feet")
  41516. },
  41517. {
  41518. name: "Gas Giant Gulper",
  41519. height: math.unit(2.4e9, "feet")
  41520. },
  41521. {
  41522. name: "Astral Annihilator",
  41523. height: math.unit(8e9, "feet")
  41524. },
  41525. {
  41526. name: "Celestial Conqueror",
  41527. height: math.unit(2.4e10, "feet")
  41528. },
  41529. {
  41530. name: "Sol-Swallowing",
  41531. height: math.unit(8e10, "feet")
  41532. },
  41533. {
  41534. name: "Hunter of the Heavens",
  41535. height: math.unit(2.4e13, "feet")
  41536. },
  41537. ]
  41538. ))
  41539. characterMakers.push(() => makeCharacter(
  41540. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41541. {
  41542. front: {
  41543. height: math.unit(10, "feet"),
  41544. weight: math.unit(844, "kilograms"),
  41545. name: "Front",
  41546. image: {
  41547. source: "./media/characters/rebecca-pawlson/front.svg",
  41548. extra: 1196/1099,
  41549. bottom: 81/1277
  41550. },
  41551. extraAttributes: {
  41552. "pawSize": {
  41553. name: "Paw Size",
  41554. power: 2,
  41555. type: "area",
  41556. base: math.unit(0.2 * 0.375, "meters^2")
  41557. },
  41558. "handSize": {
  41559. name: "Hand Size",
  41560. power: 2,
  41561. type: "area",
  41562. base: math.unit(0.2 * 0.35, "meters^2")
  41563. },
  41564. "breastDiameter": {
  41565. name: "Breast Diameter",
  41566. power: 1,
  41567. type: "length",
  41568. base: math.unit(0.5, "meters")
  41569. },
  41570. "breastVolume": {
  41571. name: "Breast Volume",
  41572. power: 3,
  41573. type: "volume",
  41574. base: math.unit(0.065, "m^3")
  41575. },
  41576. "breastMass": {
  41577. name: "Breast Mass",
  41578. power: 3,
  41579. type: "mass",
  41580. base: math.unit(65, "kg")
  41581. },
  41582. "nippleDiameter": {
  41583. name: "Nipple Diameter",
  41584. power: 1,
  41585. type: "length",
  41586. base: math.unit(0.1, "meters")
  41587. },
  41588. }
  41589. },
  41590. back: {
  41591. height: math.unit(10, "feet"),
  41592. weight: math.unit(844, "kilograms"),
  41593. name: "Back",
  41594. image: {
  41595. source: "./media/characters/rebecca-pawlson/back.svg",
  41596. extra: 879/776,
  41597. bottom: 43/922
  41598. },
  41599. extraAttributes: {
  41600. "pawSize": {
  41601. name: "Paw Size",
  41602. power: 2,
  41603. type: "area",
  41604. base: math.unit(0.2 * 0.375, "meters^2")
  41605. },
  41606. "handSize": {
  41607. name: "Hand Size",
  41608. power: 2,
  41609. type: "area",
  41610. base: math.unit(0.2 * 0.35, "meters^2")
  41611. },
  41612. "breastDiameter": {
  41613. name: "Breast Diameter",
  41614. power: 1,
  41615. type: "length",
  41616. base: math.unit(0.5, "meters")
  41617. },
  41618. "breastVolume": {
  41619. name: "Breast Volume",
  41620. power: 3,
  41621. type: "volume",
  41622. base: math.unit(0.065, "m^3")
  41623. },
  41624. "breastMass": {
  41625. name: "Breast Mass",
  41626. power: 3,
  41627. type: "mass",
  41628. base: math.unit(65, "kg")
  41629. },
  41630. "nippleDiameter": {
  41631. name: "Nipple Diameter",
  41632. power: 1,
  41633. type: "length",
  41634. base: math.unit(0.1, "meters")
  41635. },
  41636. }
  41637. },
  41638. },
  41639. [
  41640. {
  41641. name: "Normal",
  41642. height: math.unit(6 + 8/12, "feet")
  41643. },
  41644. {
  41645. name: "Mini Macro",
  41646. height: math.unit(10, "feet"),
  41647. default: true
  41648. },
  41649. {
  41650. name: "Macro",
  41651. height: math.unit(100, "feet")
  41652. },
  41653. {
  41654. name: "Mega Macro",
  41655. height: math.unit(2500, "feet")
  41656. },
  41657. {
  41658. name: "Giga Macro",
  41659. height: math.unit(50, "miles")
  41660. },
  41661. ]
  41662. ))
  41663. characterMakers.push(() => makeCharacter(
  41664. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41665. {
  41666. front: {
  41667. height: math.unit(7 + 6/12, "feet"),
  41668. weight: math.unit(600, "lb"),
  41669. name: "Front",
  41670. image: {
  41671. source: "./media/characters/moxie-nova/front.svg",
  41672. extra: 1734/1652,
  41673. bottom: 41/1775
  41674. }
  41675. },
  41676. },
  41677. [
  41678. {
  41679. name: "Normal",
  41680. height: math.unit(7 + 6/12, "feet"),
  41681. default: true
  41682. },
  41683. ]
  41684. ))
  41685. characterMakers.push(() => makeCharacter(
  41686. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41687. {
  41688. goat: {
  41689. height: math.unit(4, "feet"),
  41690. weight: math.unit(180, "lb"),
  41691. name: "Goat",
  41692. image: {
  41693. source: "./media/characters/tiffany/goat.svg",
  41694. extra: 1845/1595,
  41695. bottom: 106/1951
  41696. }
  41697. },
  41698. front: {
  41699. height: math.unit(5, "feet"),
  41700. weight: math.unit(150, "lb"),
  41701. name: "Foxcoon",
  41702. image: {
  41703. source: "./media/characters/tiffany/foxcoon.svg",
  41704. extra: 1941/1845,
  41705. bottom: 58/1999
  41706. }
  41707. },
  41708. },
  41709. [
  41710. {
  41711. name: "Normal",
  41712. height: math.unit(5, "feet"),
  41713. default: true
  41714. },
  41715. ]
  41716. ))
  41717. characterMakers.push(() => makeCharacter(
  41718. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41719. {
  41720. front: {
  41721. height: math.unit(8, "feet"),
  41722. weight: math.unit(300, "lb"),
  41723. name: "Front",
  41724. image: {
  41725. source: "./media/characters/raxinath/front.svg",
  41726. extra: 1407/1309,
  41727. bottom: 39/1446
  41728. }
  41729. },
  41730. back: {
  41731. height: math.unit(8, "feet"),
  41732. weight: math.unit(300, "lb"),
  41733. name: "Back",
  41734. image: {
  41735. source: "./media/characters/raxinath/back.svg",
  41736. extra: 1405/1315,
  41737. bottom: 9/1414
  41738. }
  41739. },
  41740. },
  41741. [
  41742. {
  41743. name: "Speck",
  41744. height: math.unit(0.5, "nm")
  41745. },
  41746. {
  41747. name: "Micro",
  41748. height: math.unit(3, "inches")
  41749. },
  41750. {
  41751. name: "Kobold",
  41752. height: math.unit(3, "feet")
  41753. },
  41754. {
  41755. name: "Normal",
  41756. height: math.unit(8, "feet"),
  41757. default: true
  41758. },
  41759. {
  41760. name: "Giant",
  41761. height: math.unit(50, "feet")
  41762. },
  41763. {
  41764. name: "Macro",
  41765. height: math.unit(1000, "feet")
  41766. },
  41767. {
  41768. name: "Megamacro",
  41769. height: math.unit(1, "mile")
  41770. },
  41771. ]
  41772. ))
  41773. characterMakers.push(() => makeCharacter(
  41774. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41775. {
  41776. front: {
  41777. height: math.unit(10, "feet"),
  41778. weight: math.unit(1442, "lb"),
  41779. name: "Front",
  41780. image: {
  41781. source: "./media/characters/mal-dragon/front.svg",
  41782. extra: 1515/1444,
  41783. bottom: 113/1628
  41784. }
  41785. },
  41786. back: {
  41787. height: math.unit(10, "feet"),
  41788. weight: math.unit(1442, "lb"),
  41789. name: "Back",
  41790. image: {
  41791. source: "./media/characters/mal-dragon/back.svg",
  41792. extra: 1527/1434,
  41793. bottom: 25/1552
  41794. }
  41795. },
  41796. },
  41797. [
  41798. {
  41799. name: "Mortal Interaction",
  41800. height: math.unit(10, "feet"),
  41801. default: true
  41802. },
  41803. {
  41804. name: "Large",
  41805. height: math.unit(30, "feet")
  41806. },
  41807. {
  41808. name: "Kaiju",
  41809. height: math.unit(300, "feet")
  41810. },
  41811. {
  41812. name: "Megamacro",
  41813. height: math.unit(10000, "feet")
  41814. },
  41815. {
  41816. name: "Continent Cracker",
  41817. height: math.unit(30000000, "feet")
  41818. },
  41819. {
  41820. name: "Sol-Swallowing",
  41821. height: math.unit(1e11, "feet")
  41822. },
  41823. {
  41824. name: "Light Universal",
  41825. height: math.unit(5, "universes")
  41826. },
  41827. {
  41828. name: "Universe Atoms",
  41829. height: math.unit(1.829e9, "universes")
  41830. },
  41831. {
  41832. name: "Light Multiversal",
  41833. height: math.unit(5, "multiverses")
  41834. },
  41835. {
  41836. name: "Multiverse Atoms",
  41837. height: math.unit(1.829e9, "multiverses")
  41838. },
  41839. {
  41840. name: "Fabric of Time",
  41841. height: math.unit(1e262, "multiverses")
  41842. },
  41843. ]
  41844. ))
  41845. characterMakers.push(() => makeCharacter(
  41846. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41847. {
  41848. front: {
  41849. height: math.unit(9, "feet"),
  41850. weight: math.unit(1050, "lb"),
  41851. name: "Front",
  41852. image: {
  41853. source: "./media/characters/tabitha/front.svg",
  41854. extra: 2083/1994,
  41855. bottom: 68/2151
  41856. }
  41857. },
  41858. },
  41859. [
  41860. {
  41861. name: "Baseline",
  41862. height: math.unit(9, "feet"),
  41863. default: true
  41864. },
  41865. {
  41866. name: "Giant",
  41867. height: math.unit(90, "feet")
  41868. },
  41869. {
  41870. name: "Macro",
  41871. height: math.unit(900, "feet")
  41872. },
  41873. {
  41874. name: "Megamacro",
  41875. height: math.unit(9000, "feet")
  41876. },
  41877. {
  41878. name: "City-Crushing",
  41879. height: math.unit(27000, "feet")
  41880. },
  41881. {
  41882. name: "Mountain-Mashing",
  41883. height: math.unit(90000, "feet")
  41884. },
  41885. {
  41886. name: "Nation Nemesis",
  41887. height: math.unit(9e6, "feet")
  41888. },
  41889. {
  41890. name: "Continent Cracker",
  41891. height: math.unit(27e6, "feet")
  41892. },
  41893. {
  41894. name: "Earth-Eclipsing",
  41895. height: math.unit(2.7e8, "feet")
  41896. },
  41897. {
  41898. name: "Gas Giant Gulper",
  41899. height: math.unit(2.7e9, "feet")
  41900. },
  41901. {
  41902. name: "Sol-Swallowing",
  41903. height: math.unit(9e10, "feet")
  41904. },
  41905. {
  41906. name: "Galaxy Gulper",
  41907. height: math.unit(9, "galaxies")
  41908. },
  41909. {
  41910. name: "Cosmos Churner",
  41911. height: math.unit(9, "universes")
  41912. },
  41913. ]
  41914. ))
  41915. characterMakers.push(() => makeCharacter(
  41916. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41917. {
  41918. front: {
  41919. height: math.unit(160, "cm"),
  41920. weight: math.unit(55, "kg"),
  41921. name: "Front",
  41922. image: {
  41923. source: "./media/characters/tow/front.svg",
  41924. extra: 1751/1722,
  41925. bottom: 74/1825
  41926. }
  41927. },
  41928. },
  41929. [
  41930. {
  41931. name: "Norm",
  41932. height: math.unit(160, "cm")
  41933. },
  41934. {
  41935. name: "Casual",
  41936. height: math.unit(3200, "m"),
  41937. default: true
  41938. },
  41939. {
  41940. name: "Show-Off",
  41941. height: math.unit(160, "km")
  41942. },
  41943. ]
  41944. ))
  41945. characterMakers.push(() => makeCharacter(
  41946. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41947. {
  41948. front: {
  41949. height: math.unit(7 + 11/12, "feet"),
  41950. weight: math.unit(342.8, "lb"),
  41951. name: "Front",
  41952. image: {
  41953. source: "./media/characters/vivian-orca-dragon/front.svg",
  41954. extra: 1890/1865,
  41955. bottom: 28/1918
  41956. }
  41957. },
  41958. },
  41959. [
  41960. {
  41961. name: "Micro",
  41962. height: math.unit(5, "inches")
  41963. },
  41964. {
  41965. name: "Normal",
  41966. height: math.unit(7 + 11/12, "feet"),
  41967. default: true
  41968. },
  41969. {
  41970. name: "Macro",
  41971. height: math.unit(395 + 7/12, "feet")
  41972. },
  41973. ]
  41974. ))
  41975. characterMakers.push(() => makeCharacter(
  41976. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41977. {
  41978. side: {
  41979. height: math.unit(10, "feet"),
  41980. weight: math.unit(1442, "lb"),
  41981. name: "Side",
  41982. image: {
  41983. source: "./media/characters/lotherakon/side.svg",
  41984. extra: 1604/1497,
  41985. bottom: 89/1693
  41986. }
  41987. },
  41988. },
  41989. [
  41990. {
  41991. name: "Mortal Interaction",
  41992. height: math.unit(10, "feet")
  41993. },
  41994. {
  41995. name: "Large",
  41996. height: math.unit(30, "feet"),
  41997. default: true
  41998. },
  41999. {
  42000. name: "Giant",
  42001. height: math.unit(100, "feet")
  42002. },
  42003. {
  42004. name: "Kaiju",
  42005. height: math.unit(300, "feet")
  42006. },
  42007. {
  42008. name: "Macro",
  42009. height: math.unit(1000, "feet")
  42010. },
  42011. {
  42012. name: "Macro+",
  42013. height: math.unit(3000, "feet")
  42014. },
  42015. {
  42016. name: "Megamacro",
  42017. height: math.unit(10000, "feet")
  42018. },
  42019. {
  42020. name: "City-Crushing",
  42021. height: math.unit(30000, "feet")
  42022. },
  42023. {
  42024. name: "Continent Cracker",
  42025. height: math.unit(30e6, "feet")
  42026. },
  42027. {
  42028. name: "Earth Eclipsing",
  42029. height: math.unit(3e8, "feet")
  42030. },
  42031. {
  42032. name: "Gas Giant Gulper",
  42033. height: math.unit(3e9, "feet")
  42034. },
  42035. {
  42036. name: "Sol-Swallowing",
  42037. height: math.unit(1e11, "feet")
  42038. },
  42039. {
  42040. name: "System Swallower",
  42041. height: math.unit(3e14, "feet")
  42042. },
  42043. {
  42044. name: "Galaxy Gulper",
  42045. height: math.unit(10, "galaxies")
  42046. },
  42047. {
  42048. name: "Light Universal",
  42049. height: math.unit(5, "universes")
  42050. },
  42051. {
  42052. name: "Universe Palm",
  42053. height: math.unit(20, "universes")
  42054. },
  42055. {
  42056. name: "Light Multiversal",
  42057. height: math.unit(5, "multiverses")
  42058. },
  42059. {
  42060. name: "Multiverse Palm",
  42061. height: math.unit(20, "multiverses")
  42062. },
  42063. {
  42064. name: "Inferno Incarnate",
  42065. height: math.unit(1e7, "multiverses")
  42066. },
  42067. ]
  42068. ))
  42069. characterMakers.push(() => makeCharacter(
  42070. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42071. {
  42072. front: {
  42073. height: math.unit(8, "feet"),
  42074. weight: math.unit(1200, "lb"),
  42075. name: "Front",
  42076. image: {
  42077. source: "./media/characters/malithee/front.svg",
  42078. extra: 1675/1640,
  42079. bottom: 162/1837
  42080. }
  42081. },
  42082. },
  42083. [
  42084. {
  42085. name: "Mortal Interaction",
  42086. height: math.unit(8, "feet"),
  42087. default: true
  42088. },
  42089. {
  42090. name: "Large",
  42091. height: math.unit(24, "feet")
  42092. },
  42093. {
  42094. name: "Kaiju",
  42095. height: math.unit(240, "feet")
  42096. },
  42097. {
  42098. name: "Megamacro",
  42099. height: math.unit(8000, "feet")
  42100. },
  42101. {
  42102. name: "Continent Cracker",
  42103. height: math.unit(24e6, "feet")
  42104. },
  42105. {
  42106. name: "Earth-Eclipsing",
  42107. height: math.unit(2.4e8, "feet")
  42108. },
  42109. {
  42110. name: "Sol-Swallowing",
  42111. height: math.unit(8e10, "feet")
  42112. },
  42113. {
  42114. name: "Galaxy Gulper",
  42115. height: math.unit(8, "galaxies")
  42116. },
  42117. {
  42118. name: "Light Universal",
  42119. height: math.unit(4, "universes")
  42120. },
  42121. {
  42122. name: "Universe Atoms",
  42123. height: math.unit(1.829e9, "universes")
  42124. },
  42125. {
  42126. name: "Light Multiversal",
  42127. height: math.unit(4, "multiverses")
  42128. },
  42129. {
  42130. name: "Multiverse Atoms",
  42131. height: math.unit(1.829e9, "multiverses")
  42132. },
  42133. {
  42134. name: "Nigh-Omnipresence",
  42135. height: math.unit(8e261, "multiverses")
  42136. },
  42137. ]
  42138. ))
  42139. characterMakers.push(() => makeCharacter(
  42140. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42141. {
  42142. front: {
  42143. height: math.unit(10, "feet"),
  42144. weight: math.unit(1500, "lb"),
  42145. name: "Front",
  42146. image: {
  42147. source: "./media/characters/miles-thestia/front.svg",
  42148. extra: 1812/1727,
  42149. bottom: 86/1898
  42150. }
  42151. },
  42152. back: {
  42153. height: math.unit(10, "feet"),
  42154. weight: math.unit(1500, "lb"),
  42155. name: "Back",
  42156. image: {
  42157. source: "./media/characters/miles-thestia/back.svg",
  42158. extra: 1799/1690,
  42159. bottom: 47/1846
  42160. }
  42161. },
  42162. frontNsfw: {
  42163. height: math.unit(10, "feet"),
  42164. weight: math.unit(1500, "lb"),
  42165. name: "Front (NSFW)",
  42166. image: {
  42167. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42168. extra: 1812/1727,
  42169. bottom: 86/1898
  42170. }
  42171. },
  42172. },
  42173. [
  42174. {
  42175. name: "Mini-Macro",
  42176. height: math.unit(10, "feet"),
  42177. default: true
  42178. },
  42179. ]
  42180. ))
  42181. characterMakers.push(() => makeCharacter(
  42182. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42183. {
  42184. front: {
  42185. height: math.unit(25, "feet"),
  42186. name: "Front",
  42187. image: {
  42188. source: "./media/characters/titan-s-wulf/front.svg",
  42189. extra: 1560/1484,
  42190. bottom: 76/1636
  42191. }
  42192. },
  42193. },
  42194. [
  42195. {
  42196. name: "Smallest",
  42197. height: math.unit(25, "feet"),
  42198. default: true
  42199. },
  42200. {
  42201. name: "Normal",
  42202. height: math.unit(200, "feet")
  42203. },
  42204. {
  42205. name: "Macro",
  42206. height: math.unit(200000, "feet")
  42207. },
  42208. {
  42209. name: "Multiversal Original",
  42210. height: math.unit(10000, "multiverses")
  42211. },
  42212. ]
  42213. ))
  42214. characterMakers.push(() => makeCharacter(
  42215. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42216. {
  42217. front: {
  42218. height: math.unit(8, "feet"),
  42219. weight: math.unit(553, "lb"),
  42220. name: "Front",
  42221. image: {
  42222. source: "./media/characters/tawendeh/front.svg",
  42223. extra: 2365/2268,
  42224. bottom: 83/2448
  42225. }
  42226. },
  42227. frontClothed: {
  42228. height: math.unit(8, "feet"),
  42229. weight: math.unit(553, "lb"),
  42230. name: "Front (Clothed)",
  42231. image: {
  42232. source: "./media/characters/tawendeh/front-clothed.svg",
  42233. extra: 2365/2268,
  42234. bottom: 83/2448
  42235. }
  42236. },
  42237. back: {
  42238. height: math.unit(8, "feet"),
  42239. weight: math.unit(553, "lb"),
  42240. name: "Back",
  42241. image: {
  42242. source: "./media/characters/tawendeh/back.svg",
  42243. extra: 2397/2294,
  42244. bottom: 42/2439
  42245. }
  42246. },
  42247. },
  42248. [
  42249. {
  42250. name: "Mortal Interaction",
  42251. height: math.unit(8, "feet"),
  42252. default: true
  42253. },
  42254. {
  42255. name: "Giant",
  42256. height: math.unit(80, "feet")
  42257. },
  42258. {
  42259. name: "Macro",
  42260. height: math.unit(800, "feet")
  42261. },
  42262. {
  42263. name: "Megamacro",
  42264. height: math.unit(8000, "feet")
  42265. },
  42266. {
  42267. name: "City-Crushing",
  42268. height: math.unit(24000, "feet")
  42269. },
  42270. {
  42271. name: "Mountain-Mashing",
  42272. height: math.unit(80000, "feet")
  42273. },
  42274. {
  42275. name: "Nation Nemesis",
  42276. height: math.unit(8e6, "feet")
  42277. },
  42278. {
  42279. name: "Continent Cracker",
  42280. height: math.unit(24e6, "feet")
  42281. },
  42282. {
  42283. name: "Earth-Eclipsing",
  42284. height: math.unit(2.4e8, "feet")
  42285. },
  42286. {
  42287. name: "Gas Giant Gulper",
  42288. height: math.unit(2.4e9, "feet")
  42289. },
  42290. {
  42291. name: "Sol-Swallowing",
  42292. height: math.unit(8e10, "feet")
  42293. },
  42294. {
  42295. name: "Galaxy Gulper",
  42296. height: math.unit(8, "galaxies")
  42297. },
  42298. {
  42299. name: "Cosmos Churner",
  42300. height: math.unit(8, "universes")
  42301. },
  42302. {
  42303. name: "Omnipotent Otter",
  42304. height: math.unit(80, "universes")
  42305. },
  42306. ]
  42307. ))
  42308. characterMakers.push(() => makeCharacter(
  42309. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42310. {
  42311. front: {
  42312. height: math.unit(2.6, "meters"),
  42313. weight: math.unit(900, "kg"),
  42314. name: "Front",
  42315. image: {
  42316. source: "./media/characters/neesha/front.svg",
  42317. extra: 1803/1653,
  42318. bottom: 128/1931
  42319. }
  42320. },
  42321. },
  42322. [
  42323. {
  42324. name: "Normal",
  42325. height: math.unit(2.6, "meters"),
  42326. default: true
  42327. },
  42328. {
  42329. name: "Macro",
  42330. height: math.unit(50, "meters")
  42331. },
  42332. ]
  42333. ))
  42334. characterMakers.push(() => makeCharacter(
  42335. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42336. {
  42337. front: {
  42338. height: math.unit(5, "feet"),
  42339. weight: math.unit(185, "lb"),
  42340. name: "Front",
  42341. image: {
  42342. source: "./media/characters/kyera/front.svg",
  42343. extra: 1875/1790,
  42344. bottom: 96/1971
  42345. }
  42346. },
  42347. },
  42348. [
  42349. {
  42350. name: "Normal",
  42351. height: math.unit(5, "feet"),
  42352. default: true
  42353. },
  42354. ]
  42355. ))
  42356. characterMakers.push(() => makeCharacter(
  42357. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42358. {
  42359. front: {
  42360. height: math.unit(7 + 6/12, "feet"),
  42361. weight: math.unit(540, "lb"),
  42362. name: "Front",
  42363. image: {
  42364. source: "./media/characters/yuko/front.svg",
  42365. extra: 1282/1222,
  42366. bottom: 101/1383
  42367. }
  42368. },
  42369. frontClothed: {
  42370. height: math.unit(7 + 6/12, "feet"),
  42371. weight: math.unit(540, "lb"),
  42372. name: "Front (Clothed)",
  42373. image: {
  42374. source: "./media/characters/yuko/front-clothed.svg",
  42375. extra: 1282/1222,
  42376. bottom: 101/1383
  42377. }
  42378. },
  42379. },
  42380. [
  42381. {
  42382. name: "Normal",
  42383. height: math.unit(7 + 6/12, "feet"),
  42384. default: true
  42385. },
  42386. {
  42387. name: "Macro",
  42388. height: math.unit(26 + 9/12, "feet")
  42389. },
  42390. {
  42391. name: "Megamacro",
  42392. height: math.unit(300, "feet")
  42393. },
  42394. {
  42395. name: "Gigamacro",
  42396. height: math.unit(5000, "feet")
  42397. },
  42398. {
  42399. name: "Planetary",
  42400. height: math.unit(10000, "miles")
  42401. },
  42402. ]
  42403. ))
  42404. characterMakers.push(() => makeCharacter(
  42405. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42406. {
  42407. front: {
  42408. height: math.unit(8 + 2/12, "feet"),
  42409. weight: math.unit(600, "lb"),
  42410. name: "Front",
  42411. image: {
  42412. source: "./media/characters/deam-nitrel/front.svg",
  42413. extra: 1308/1234,
  42414. bottom: 125/1433
  42415. }
  42416. },
  42417. },
  42418. [
  42419. {
  42420. name: "Normal",
  42421. height: math.unit(8 + 2/12, "feet"),
  42422. default: true
  42423. },
  42424. ]
  42425. ))
  42426. characterMakers.push(() => makeCharacter(
  42427. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42428. {
  42429. front: {
  42430. height: math.unit(6.1, "feet"),
  42431. weight: math.unit(180, "lb"),
  42432. name: "Front",
  42433. image: {
  42434. source: "./media/characters/skyress/front.svg",
  42435. extra: 1045/915,
  42436. bottom: 28/1073
  42437. }
  42438. },
  42439. maw: {
  42440. height: math.unit(1, "feet"),
  42441. name: "Maw",
  42442. image: {
  42443. source: "./media/characters/skyress/maw.svg"
  42444. }
  42445. },
  42446. },
  42447. [
  42448. {
  42449. name: "Normal",
  42450. height: math.unit(6.1, "feet"),
  42451. default: true
  42452. },
  42453. {
  42454. name: "Macro",
  42455. height: math.unit(200, "feet")
  42456. },
  42457. ]
  42458. ))
  42459. characterMakers.push(() => makeCharacter(
  42460. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42461. {
  42462. front: {
  42463. height: math.unit(4 + 2/12, "feet"),
  42464. weight: math.unit(40, "kg"),
  42465. name: "Front",
  42466. image: {
  42467. source: "./media/characters/amethyst-jones/front.svg",
  42468. extra: 1220/1150,
  42469. bottom: 101/1321
  42470. }
  42471. },
  42472. },
  42473. [
  42474. {
  42475. name: "Normal",
  42476. height: math.unit(4 + 2/12, "feet"),
  42477. default: true
  42478. },
  42479. ]
  42480. ))
  42481. characterMakers.push(() => makeCharacter(
  42482. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42483. {
  42484. front: {
  42485. height: math.unit(1.7, "m"),
  42486. weight: math.unit(135, "lb"),
  42487. name: "Front",
  42488. image: {
  42489. source: "./media/characters/jade/front.svg",
  42490. extra: 1818/1767,
  42491. bottom: 32/1850
  42492. }
  42493. },
  42494. back: {
  42495. height: math.unit(1.7, "m"),
  42496. weight: math.unit(135, "lb"),
  42497. name: "Back",
  42498. image: {
  42499. source: "./media/characters/jade/back.svg",
  42500. extra: 1869/1809,
  42501. bottom: 35/1904
  42502. }
  42503. },
  42504. hand: {
  42505. height: math.unit(0.24, "m"),
  42506. name: "Hand",
  42507. image: {
  42508. source: "./media/characters/jade/hand.svg"
  42509. }
  42510. },
  42511. foot: {
  42512. height: math.unit(0.263, "m"),
  42513. name: "Foot",
  42514. image: {
  42515. source: "./media/characters/jade/foot.svg"
  42516. }
  42517. },
  42518. dick: {
  42519. height: math.unit(0.47, "m"),
  42520. name: "Dick",
  42521. image: {
  42522. source: "./media/characters/jade/dick.svg"
  42523. }
  42524. },
  42525. },
  42526. [
  42527. {
  42528. name: "Micro",
  42529. height: math.unit(22, "cm")
  42530. },
  42531. {
  42532. name: "Normal",
  42533. height: math.unit(1.7, "m"),
  42534. default: true
  42535. },
  42536. {
  42537. name: "Macro",
  42538. height: math.unit(152, "m")
  42539. },
  42540. ]
  42541. ))
  42542. characterMakers.push(() => makeCharacter(
  42543. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42544. {
  42545. front: {
  42546. height: math.unit(100, "miles"),
  42547. weight: math.unit(20000, "tons"),
  42548. name: "Front",
  42549. image: {
  42550. source: "./media/characters/cookie/front.svg",
  42551. extra: 1125/1070,
  42552. bottom: 30/1155
  42553. }
  42554. },
  42555. },
  42556. [
  42557. {
  42558. name: "Big",
  42559. height: math.unit(50, "feet")
  42560. },
  42561. {
  42562. name: "Macro",
  42563. height: math.unit(100, "miles"),
  42564. default: true
  42565. },
  42566. {
  42567. name: "Megamacro",
  42568. height: math.unit(90000, "miles")
  42569. },
  42570. ]
  42571. ))
  42572. characterMakers.push(() => makeCharacter(
  42573. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42574. {
  42575. front: {
  42576. height: math.unit(6, "feet"),
  42577. weight: math.unit(145, "lb"),
  42578. name: "Front",
  42579. image: {
  42580. source: "./media/characters/farzian/front.svg",
  42581. extra: 1902/1693,
  42582. bottom: 108/2010
  42583. }
  42584. },
  42585. },
  42586. [
  42587. {
  42588. name: "Macro",
  42589. height: math.unit(500, "feet"),
  42590. default: true
  42591. },
  42592. ]
  42593. ))
  42594. characterMakers.push(() => makeCharacter(
  42595. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42596. {
  42597. front: {
  42598. height: math.unit(3 + 6/12, "feet"),
  42599. weight: math.unit(50, "lb"),
  42600. name: "Front",
  42601. image: {
  42602. source: "./media/characters/kimberly-tilson/front.svg",
  42603. extra: 1400/1322,
  42604. bottom: 36/1436
  42605. }
  42606. },
  42607. back: {
  42608. height: math.unit(3 + 6/12, "feet"),
  42609. weight: math.unit(50, "lb"),
  42610. name: "Back",
  42611. image: {
  42612. source: "./media/characters/kimberly-tilson/back.svg",
  42613. extra: 1370/1307,
  42614. bottom: 20/1390
  42615. }
  42616. },
  42617. },
  42618. [
  42619. {
  42620. name: "Normal",
  42621. height: math.unit(3 + 6/12, "feet"),
  42622. default: true
  42623. },
  42624. ]
  42625. ))
  42626. characterMakers.push(() => makeCharacter(
  42627. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42628. {
  42629. front: {
  42630. height: math.unit(350, "meters"),
  42631. weight: math.unit(7.57059e+8, "lb"),
  42632. name: "Front",
  42633. image: {
  42634. source: "./media/characters/harthos/front.svg",
  42635. extra: 455/446,
  42636. bottom: 15/470
  42637. },
  42638. form: "peacekeeper",
  42639. default: true
  42640. },
  42641. allusus_front: {
  42642. height: math.unit(270, "meters"),
  42643. weight: math.unit(3.47550e+8, "lb"),
  42644. name: "Front",
  42645. image: {
  42646. source: "./media/characters/harthos/allusus-front.svg",
  42647. extra: 455/446,
  42648. bottom: 15/470
  42649. },
  42650. form: "allusus",
  42651. },
  42652. },
  42653. [
  42654. {
  42655. name: "Macro",
  42656. height: math.unit(350, "meters"),
  42657. default: true,
  42658. form: "peacekeeper"
  42659. },
  42660. {
  42661. name: "Macro",
  42662. height: math.unit(270, "meters"),
  42663. default: true,
  42664. form: "allusus"
  42665. },
  42666. ],
  42667. {
  42668. "peacekeeper": {
  42669. name: "Peacekeeper",
  42670. default: true
  42671. },
  42672. "allusus": {
  42673. name: "Allusus",
  42674. },
  42675. }
  42676. ))
  42677. characterMakers.push(() => makeCharacter(
  42678. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42679. {
  42680. front: {
  42681. height: math.unit(15, "feet"),
  42682. name: "Front",
  42683. image: {
  42684. source: "./media/characters/hypatia/front.svg",
  42685. extra: 1653/1591,
  42686. bottom: 79/1732
  42687. }
  42688. },
  42689. },
  42690. [
  42691. {
  42692. name: "Normal",
  42693. height: math.unit(15, "feet")
  42694. },
  42695. {
  42696. name: "Small",
  42697. height: math.unit(300, "feet")
  42698. },
  42699. {
  42700. name: "Macro",
  42701. height: math.unit(2500, "feet"),
  42702. default: true
  42703. },
  42704. {
  42705. name: "Mega Macro",
  42706. height: math.unit(1500, "miles")
  42707. },
  42708. {
  42709. name: "Giga Macro",
  42710. height: math.unit(1.5e6, "miles")
  42711. },
  42712. ]
  42713. ))
  42714. characterMakers.push(() => makeCharacter(
  42715. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42716. {
  42717. front: {
  42718. height: math.unit(6, "feet"),
  42719. weight: math.unit(200, "lb"),
  42720. name: "Front",
  42721. image: {
  42722. source: "./media/characters/wulver/front.svg",
  42723. extra: 1724/1632,
  42724. bottom: 130/1854
  42725. }
  42726. },
  42727. frontNsfw: {
  42728. height: math.unit(6, "feet"),
  42729. weight: math.unit(200, "lb"),
  42730. name: "Front (NSFW)",
  42731. image: {
  42732. source: "./media/characters/wulver/front-nsfw.svg",
  42733. extra: 1724/1632,
  42734. bottom: 130/1854
  42735. }
  42736. },
  42737. },
  42738. [
  42739. {
  42740. name: "Human-Sized",
  42741. height: math.unit(6, "feet")
  42742. },
  42743. {
  42744. name: "Normal",
  42745. height: math.unit(4, "meters"),
  42746. default: true
  42747. },
  42748. {
  42749. name: "Large",
  42750. height: math.unit(6, "m")
  42751. },
  42752. ]
  42753. ))
  42754. characterMakers.push(() => makeCharacter(
  42755. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42756. {
  42757. front: {
  42758. height: math.unit(7, "feet"),
  42759. name: "Front",
  42760. image: {
  42761. source: "./media/characters/maru/front.svg",
  42762. extra: 1595/1570,
  42763. bottom: 0/1595
  42764. }
  42765. },
  42766. },
  42767. [
  42768. {
  42769. name: "Normal",
  42770. height: math.unit(7, "feet"),
  42771. default: true
  42772. },
  42773. {
  42774. name: "Macro",
  42775. height: math.unit(700, "feet")
  42776. },
  42777. {
  42778. name: "Mega Macro",
  42779. height: math.unit(25, "miles")
  42780. },
  42781. ]
  42782. ))
  42783. characterMakers.push(() => makeCharacter(
  42784. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42785. {
  42786. front: {
  42787. height: math.unit(6, "feet"),
  42788. weight: math.unit(170, "lb"),
  42789. name: "Front",
  42790. image: {
  42791. source: "./media/characters/xenon/front.svg",
  42792. extra: 1376/1305,
  42793. bottom: 56/1432
  42794. }
  42795. },
  42796. back: {
  42797. height: math.unit(6, "feet"),
  42798. weight: math.unit(170, "lb"),
  42799. name: "Back",
  42800. image: {
  42801. source: "./media/characters/xenon/back.svg",
  42802. extra: 1328/1259,
  42803. bottom: 95/1423
  42804. }
  42805. },
  42806. maw: {
  42807. height: math.unit(0.52, "feet"),
  42808. name: "Maw",
  42809. image: {
  42810. source: "./media/characters/xenon/maw.svg"
  42811. }
  42812. },
  42813. handLeft: {
  42814. height: math.unit(0.82 * 169 / 153, "feet"),
  42815. name: "Hand (Left)",
  42816. image: {
  42817. source: "./media/characters/xenon/hand-left.svg"
  42818. }
  42819. },
  42820. handRight: {
  42821. height: math.unit(0.82, "feet"),
  42822. name: "Hand (Right)",
  42823. image: {
  42824. source: "./media/characters/xenon/hand-right.svg"
  42825. }
  42826. },
  42827. footLeft: {
  42828. height: math.unit(1.13, "feet"),
  42829. name: "Foot (Left)",
  42830. image: {
  42831. source: "./media/characters/xenon/foot-left.svg"
  42832. }
  42833. },
  42834. footRight: {
  42835. height: math.unit(1.13 * 194 / 196, "feet"),
  42836. name: "Foot (Right)",
  42837. image: {
  42838. source: "./media/characters/xenon/foot-right.svg"
  42839. }
  42840. },
  42841. },
  42842. [
  42843. {
  42844. name: "Micro",
  42845. height: math.unit(0.8, "inches")
  42846. },
  42847. {
  42848. name: "Normal",
  42849. height: math.unit(6, "feet")
  42850. },
  42851. {
  42852. name: "Macro",
  42853. height: math.unit(50, "feet"),
  42854. default: true
  42855. },
  42856. {
  42857. name: "Macro+",
  42858. height: math.unit(250, "feet")
  42859. },
  42860. {
  42861. name: "Megamacro",
  42862. height: math.unit(1500, "feet")
  42863. },
  42864. ]
  42865. ))
  42866. characterMakers.push(() => makeCharacter(
  42867. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42868. {
  42869. front: {
  42870. height: math.unit(7 + 5/12, "feet"),
  42871. name: "Front",
  42872. image: {
  42873. source: "./media/characters/zane/front.svg",
  42874. extra: 1260/1203,
  42875. bottom: 94/1354
  42876. }
  42877. },
  42878. back: {
  42879. height: math.unit(5.05, "feet"),
  42880. name: "Back",
  42881. image: {
  42882. source: "./media/characters/zane/back.svg",
  42883. extra: 893/829,
  42884. bottom: 30/923
  42885. }
  42886. },
  42887. werewolf: {
  42888. height: math.unit(11, "feet"),
  42889. name: "Werewolf",
  42890. image: {
  42891. source: "./media/characters/zane/werewolf.svg",
  42892. extra: 1383/1323,
  42893. bottom: 89/1472
  42894. }
  42895. },
  42896. foot: {
  42897. height: math.unit(1.46, "feet"),
  42898. name: "Foot",
  42899. image: {
  42900. source: "./media/characters/zane/foot.svg"
  42901. }
  42902. },
  42903. footFront: {
  42904. height: math.unit(0.784, "feet"),
  42905. name: "Foot (Front)",
  42906. image: {
  42907. source: "./media/characters/zane/foot-front.svg"
  42908. }
  42909. },
  42910. dick: {
  42911. height: math.unit(1.95, "feet"),
  42912. name: "Dick",
  42913. image: {
  42914. source: "./media/characters/zane/dick.svg"
  42915. }
  42916. },
  42917. dickWerewolf: {
  42918. height: math.unit(3.77, "feet"),
  42919. name: "Dick (Werewolf)",
  42920. image: {
  42921. source: "./media/characters/zane/dick.svg"
  42922. }
  42923. },
  42924. },
  42925. [
  42926. {
  42927. name: "Normal",
  42928. height: math.unit(7 + 5/12, "feet"),
  42929. default: true
  42930. },
  42931. ]
  42932. ))
  42933. characterMakers.push(() => makeCharacter(
  42934. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42935. {
  42936. front: {
  42937. height: math.unit(6 + 2/12, "feet"),
  42938. weight: math.unit(284, "lb"),
  42939. name: "Front",
  42940. image: {
  42941. source: "./media/characters/benni-desparque/front.svg",
  42942. extra: 878/729,
  42943. bottom: 58/936
  42944. }
  42945. },
  42946. back: {
  42947. height: math.unit(6 + 2/12, "feet"),
  42948. weight: math.unit(284, "lb"),
  42949. name: "Back",
  42950. image: {
  42951. source: "./media/characters/benni-desparque/back.svg",
  42952. extra: 901/756,
  42953. bottom: 51/952
  42954. }
  42955. },
  42956. dressed: {
  42957. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  42958. weight: math.unit(284, "lb"),
  42959. name: "Dressed",
  42960. image: {
  42961. source: "./media/characters/benni-desparque/dressed.svg",
  42962. extra: 1514/1276,
  42963. bottom: 65/1579
  42964. }
  42965. },
  42966. hand: {
  42967. height: math.unit(1.28, "feet"),
  42968. name: "Hand",
  42969. image: {
  42970. source: "./media/characters/benni-desparque/hand.svg"
  42971. }
  42972. },
  42973. foot: {
  42974. height: math.unit(1.53, "feet"),
  42975. name: "Foot",
  42976. image: {
  42977. source: "./media/characters/benni-desparque/foot.svg"
  42978. }
  42979. },
  42980. aiControlUnit: {
  42981. height: math.unit(0.175, "feet"),
  42982. name: "AI Control Unit",
  42983. image: {
  42984. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  42985. }
  42986. },
  42987. },
  42988. [
  42989. {
  42990. name: "Civilian",
  42991. height: math.unit(6 + 2/12, "feet")
  42992. },
  42993. {
  42994. name: "Normal",
  42995. height: math.unit(98, "feet"),
  42996. default: true
  42997. },
  42998. {
  42999. name: "Kaiju Fighter",
  43000. height: math.unit(268, "feet")
  43001. },
  43002. ]
  43003. ))
  43004. characterMakers.push(() => makeCharacter(
  43005. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43006. {
  43007. front: {
  43008. height: math.unit(5, "feet"),
  43009. weight: math.unit(105, "lb"),
  43010. name: "Front",
  43011. image: {
  43012. source: "./media/characters/maxine/front.svg",
  43013. extra: 1386/1250,
  43014. bottom: 71/1457
  43015. }
  43016. },
  43017. },
  43018. [
  43019. {
  43020. name: "Normal",
  43021. height: math.unit(5, "feet"),
  43022. default: true
  43023. },
  43024. ]
  43025. ))
  43026. characterMakers.push(() => makeCharacter(
  43027. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43028. {
  43029. front: {
  43030. height: math.unit(11 + 7/12, "feet"),
  43031. weight: math.unit(9576, "lb"),
  43032. name: "Front",
  43033. image: {
  43034. source: "./media/characters/scaly/front.svg",
  43035. extra: 888/867,
  43036. bottom: 36/924
  43037. }
  43038. },
  43039. },
  43040. [
  43041. {
  43042. name: "Normal",
  43043. height: math.unit(11 + 7/12, "feet"),
  43044. default: true
  43045. },
  43046. ]
  43047. ))
  43048. characterMakers.push(() => makeCharacter(
  43049. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43050. {
  43051. front: {
  43052. height: math.unit(6 + 3/12, "feet"),
  43053. name: "Front",
  43054. image: {
  43055. source: "./media/characters/saelria/front.svg",
  43056. extra: 1243/1138,
  43057. bottom: 46/1289
  43058. }
  43059. },
  43060. },
  43061. [
  43062. {
  43063. name: "Micro",
  43064. height: math.unit(6, "inches"),
  43065. },
  43066. {
  43067. name: "Normal",
  43068. height: math.unit(6 + 3/12, "feet"),
  43069. default: true
  43070. },
  43071. {
  43072. name: "Macro",
  43073. height: math.unit(25, "feet")
  43074. },
  43075. ]
  43076. ))
  43077. characterMakers.push(() => makeCharacter(
  43078. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43079. {
  43080. front: {
  43081. height: math.unit(80, "meters"),
  43082. weight: math.unit(7000, "tonnes"),
  43083. name: "Front",
  43084. image: {
  43085. source: "./media/characters/tef/front.svg",
  43086. extra: 2036/1991,
  43087. bottom: 54/2090
  43088. }
  43089. },
  43090. back: {
  43091. height: math.unit(80, "meters"),
  43092. weight: math.unit(7000, "tonnes"),
  43093. name: "Back",
  43094. image: {
  43095. source: "./media/characters/tef/back.svg",
  43096. extra: 2036/1991,
  43097. bottom: 54/2090
  43098. }
  43099. },
  43100. },
  43101. [
  43102. {
  43103. name: "Macro",
  43104. height: math.unit(80, "meters"),
  43105. default: true
  43106. },
  43107. ]
  43108. ))
  43109. characterMakers.push(() => makeCharacter(
  43110. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43111. {
  43112. front: {
  43113. height: math.unit(13, "feet"),
  43114. weight: math.unit(6, "tons"),
  43115. name: "Front",
  43116. image: {
  43117. source: "./media/characters/rover/front.svg",
  43118. extra: 1233/1156,
  43119. bottom: 50/1283
  43120. }
  43121. },
  43122. back: {
  43123. height: math.unit(13, "feet"),
  43124. weight: math.unit(6, "tons"),
  43125. name: "Back",
  43126. image: {
  43127. source: "./media/characters/rover/back.svg",
  43128. extra: 1327/1258,
  43129. bottom: 39/1366
  43130. }
  43131. },
  43132. },
  43133. [
  43134. {
  43135. name: "Normal",
  43136. height: math.unit(13, "feet"),
  43137. default: true
  43138. },
  43139. {
  43140. name: "Macro",
  43141. height: math.unit(1300, "feet")
  43142. },
  43143. {
  43144. name: "Megamacro",
  43145. height: math.unit(1300, "miles")
  43146. },
  43147. {
  43148. name: "Gigamacro",
  43149. height: math.unit(1300000, "miles")
  43150. },
  43151. ]
  43152. ))
  43153. characterMakers.push(() => makeCharacter(
  43154. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43155. {
  43156. front: {
  43157. height: math.unit(10, "feet"),
  43158. weight: math.unit(500, "lb"),
  43159. name: "Front",
  43160. image: {
  43161. source: "./media/characters/ariz/front.svg",
  43162. extra: 461/450,
  43163. bottom: 16/477
  43164. }
  43165. },
  43166. },
  43167. [
  43168. {
  43169. name: "MiniMacro",
  43170. height: math.unit(10, "feet"),
  43171. default: true
  43172. },
  43173. ]
  43174. ))
  43175. characterMakers.push(() => makeCharacter(
  43176. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43177. {
  43178. front: {
  43179. height: math.unit(6, "feet"),
  43180. weight: math.unit(140, "lb"),
  43181. name: "Front",
  43182. image: {
  43183. source: "./media/characters/sigrun/front.svg",
  43184. extra: 1418/1359,
  43185. bottom: 27/1445
  43186. }
  43187. },
  43188. },
  43189. [
  43190. {
  43191. name: "Macro",
  43192. height: math.unit(35, "feet"),
  43193. default: true
  43194. },
  43195. ]
  43196. ))
  43197. characterMakers.push(() => makeCharacter(
  43198. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43199. {
  43200. front: {
  43201. height: math.unit(6, "feet"),
  43202. weight: math.unit(150, "lb"),
  43203. name: "Front",
  43204. image: {
  43205. source: "./media/characters/numin/front.svg",
  43206. extra: 1433/1388,
  43207. bottom: 12/1445
  43208. }
  43209. },
  43210. },
  43211. [
  43212. {
  43213. name: "Macro",
  43214. height: math.unit(21.5, "km"),
  43215. default: true
  43216. },
  43217. ]
  43218. ))
  43219. characterMakers.push(() => makeCharacter(
  43220. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43221. {
  43222. front: {
  43223. height: math.unit(6, "feet"),
  43224. weight: math.unit(463, "lb"),
  43225. name: "Front",
  43226. image: {
  43227. source: "./media/characters/melwa/front.svg",
  43228. extra: 1307/1248,
  43229. bottom: 93/1400
  43230. }
  43231. },
  43232. },
  43233. [
  43234. {
  43235. name: "Macro",
  43236. height: math.unit(50, "meters"),
  43237. default: true
  43238. },
  43239. ]
  43240. ))
  43241. characterMakers.push(() => makeCharacter(
  43242. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43243. {
  43244. front: {
  43245. height: math.unit(325, "feet"),
  43246. name: "Front",
  43247. image: {
  43248. source: "./media/characters/zorkaiju/front.svg",
  43249. extra: 1955/1814,
  43250. bottom: 40/1995
  43251. }
  43252. },
  43253. frontExtended: {
  43254. height: math.unit(325, "feet"),
  43255. name: "Front (Extended)",
  43256. image: {
  43257. source: "./media/characters/zorkaiju/front-extended.svg",
  43258. extra: 1955/1814,
  43259. bottom: 40/1995
  43260. }
  43261. },
  43262. side: {
  43263. height: math.unit(325, "feet"),
  43264. name: "Side",
  43265. image: {
  43266. source: "./media/characters/zorkaiju/side.svg",
  43267. extra: 1495/1396,
  43268. bottom: 17/1512
  43269. }
  43270. },
  43271. sideExtended: {
  43272. height: math.unit(325, "feet"),
  43273. name: "Side (Extended)",
  43274. image: {
  43275. source: "./media/characters/zorkaiju/side-extended.svg",
  43276. extra: 1495/1396,
  43277. bottom: 17/1512
  43278. }
  43279. },
  43280. back: {
  43281. height: math.unit(325, "feet"),
  43282. name: "Back",
  43283. image: {
  43284. source: "./media/characters/zorkaiju/back.svg",
  43285. extra: 1959/1821,
  43286. bottom: 31/1990
  43287. }
  43288. },
  43289. backExtended: {
  43290. height: math.unit(325, "feet"),
  43291. name: "Back (Extended)",
  43292. image: {
  43293. source: "./media/characters/zorkaiju/back-extended.svg",
  43294. extra: 1959/1821,
  43295. bottom: 31/1990
  43296. }
  43297. },
  43298. hand: {
  43299. height: math.unit(58.4, "feet"),
  43300. name: "Hand",
  43301. image: {
  43302. source: "./media/characters/zorkaiju/hand.svg"
  43303. }
  43304. },
  43305. handExtended: {
  43306. height: math.unit(61.4, "feet"),
  43307. name: "Hand (Extended)",
  43308. image: {
  43309. source: "./media/characters/zorkaiju/hand-extended.svg"
  43310. }
  43311. },
  43312. foot: {
  43313. height: math.unit(95, "feet"),
  43314. name: "Foot",
  43315. image: {
  43316. source: "./media/characters/zorkaiju/foot.svg"
  43317. }
  43318. },
  43319. leftArm: {
  43320. height: math.unit(59, "feet"),
  43321. name: "Left Arm",
  43322. image: {
  43323. source: "./media/characters/zorkaiju/left-arm.svg"
  43324. }
  43325. },
  43326. rightArm: {
  43327. height: math.unit(59, "feet"),
  43328. name: "Right Arm",
  43329. image: {
  43330. source: "./media/characters/zorkaiju/right-arm.svg"
  43331. }
  43332. },
  43333. leftArmExtended: {
  43334. height: math.unit(59 * 1.033546, "feet"),
  43335. name: "Left Arm (Extended)",
  43336. image: {
  43337. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43338. }
  43339. },
  43340. rightArmExtended: {
  43341. height: math.unit(59 * 1.0496, "feet"),
  43342. name: "Right Arm (Extended)",
  43343. image: {
  43344. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43345. }
  43346. },
  43347. tail: {
  43348. height: math.unit(104, "feet"),
  43349. name: "Tail",
  43350. image: {
  43351. source: "./media/characters/zorkaiju/tail.svg"
  43352. }
  43353. },
  43354. tailExtended: {
  43355. height: math.unit(104, "feet"),
  43356. name: "Tail (Extended)",
  43357. image: {
  43358. source: "./media/characters/zorkaiju/tail-extended.svg"
  43359. }
  43360. },
  43361. tailBottom: {
  43362. height: math.unit(104, "feet"),
  43363. name: "Tail Bottom",
  43364. image: {
  43365. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43366. }
  43367. },
  43368. crystal: {
  43369. height: math.unit(27.54, "feet"),
  43370. name: "Crystal",
  43371. image: {
  43372. source: "./media/characters/zorkaiju/crystal.svg"
  43373. }
  43374. },
  43375. },
  43376. [
  43377. {
  43378. name: "Kaiju",
  43379. height: math.unit(325, "feet"),
  43380. default: true
  43381. },
  43382. ]
  43383. ))
  43384. characterMakers.push(() => makeCharacter(
  43385. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43386. {
  43387. front: {
  43388. height: math.unit(6 + 1/12, "feet"),
  43389. weight: math.unit(115, "lb"),
  43390. name: "Front",
  43391. image: {
  43392. source: "./media/characters/bailey-belfry/front.svg",
  43393. extra: 1240/1121,
  43394. bottom: 101/1341
  43395. }
  43396. },
  43397. },
  43398. [
  43399. {
  43400. name: "Normal",
  43401. height: math.unit(6 + 1/12, "feet"),
  43402. default: true
  43403. },
  43404. ]
  43405. ))
  43406. characterMakers.push(() => makeCharacter(
  43407. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43408. {
  43409. side: {
  43410. height: math.unit(4, "meters"),
  43411. weight: math.unit(250, "kg"),
  43412. name: "Side",
  43413. image: {
  43414. source: "./media/characters/blacky/side.svg",
  43415. extra: 1027/919,
  43416. bottom: 43/1070
  43417. }
  43418. },
  43419. maw: {
  43420. height: math.unit(1, "meters"),
  43421. name: "Maw",
  43422. image: {
  43423. source: "./media/characters/blacky/maw.svg"
  43424. }
  43425. },
  43426. paw: {
  43427. height: math.unit(1, "meters"),
  43428. name: "Paw",
  43429. image: {
  43430. source: "./media/characters/blacky/paw.svg"
  43431. }
  43432. },
  43433. },
  43434. [
  43435. {
  43436. name: "Normal",
  43437. height: math.unit(4, "meters"),
  43438. default: true
  43439. },
  43440. ]
  43441. ))
  43442. characterMakers.push(() => makeCharacter(
  43443. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43444. {
  43445. front: {
  43446. height: math.unit(170, "cm"),
  43447. weight: math.unit(66, "kg"),
  43448. name: "Front",
  43449. image: {
  43450. source: "./media/characters/thux-ei/front.svg",
  43451. extra: 1109/1011,
  43452. bottom: 8/1117
  43453. }
  43454. },
  43455. },
  43456. [
  43457. {
  43458. name: "Normal",
  43459. height: math.unit(170, "cm"),
  43460. default: true
  43461. },
  43462. ]
  43463. ))
  43464. characterMakers.push(() => makeCharacter(
  43465. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43466. {
  43467. front: {
  43468. height: math.unit(5, "feet"),
  43469. weight: math.unit(120, "lb"),
  43470. name: "Front",
  43471. image: {
  43472. source: "./media/characters/roxanne-voltaire/front.svg",
  43473. extra: 1901/1779,
  43474. bottom: 53/1954
  43475. }
  43476. },
  43477. },
  43478. [
  43479. {
  43480. name: "Normal",
  43481. height: math.unit(5, "feet"),
  43482. default: true
  43483. },
  43484. {
  43485. name: "Giant",
  43486. height: math.unit(50, "feet")
  43487. },
  43488. {
  43489. name: "Titan",
  43490. height: math.unit(500, "feet")
  43491. },
  43492. {
  43493. name: "Macro",
  43494. height: math.unit(5000, "feet")
  43495. },
  43496. {
  43497. name: "Megamacro",
  43498. height: math.unit(50000, "feet")
  43499. },
  43500. {
  43501. name: "Gigamacro",
  43502. height: math.unit(500000, "feet")
  43503. },
  43504. {
  43505. name: "Teramacro",
  43506. height: math.unit(5e6, "feet")
  43507. },
  43508. ]
  43509. ))
  43510. characterMakers.push(() => makeCharacter(
  43511. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43512. {
  43513. front: {
  43514. height: math.unit(6 + 2/12, "feet"),
  43515. name: "Front",
  43516. image: {
  43517. source: "./media/characters/squeaks/front.svg",
  43518. extra: 1823/1768,
  43519. bottom: 138/1961
  43520. }
  43521. },
  43522. },
  43523. [
  43524. {
  43525. name: "Micro",
  43526. height: math.unit(0.5, "inches")
  43527. },
  43528. {
  43529. name: "Normal",
  43530. height: math.unit(6 + 2/12, "feet"),
  43531. default: true
  43532. },
  43533. {
  43534. name: "Macro",
  43535. height: math.unit(600, "feet")
  43536. },
  43537. ]
  43538. ))
  43539. characterMakers.push(() => makeCharacter(
  43540. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43541. {
  43542. front: {
  43543. height: math.unit(1.72, "meters"),
  43544. name: "Front",
  43545. image: {
  43546. source: "./media/characters/archinger/front.svg",
  43547. extra: 1861/1675,
  43548. bottom: 125/1986
  43549. }
  43550. },
  43551. back: {
  43552. height: math.unit(1.72, "meters"),
  43553. name: "Back",
  43554. image: {
  43555. source: "./media/characters/archinger/back.svg",
  43556. extra: 1844/1701,
  43557. bottom: 104/1948
  43558. }
  43559. },
  43560. cock: {
  43561. height: math.unit(0.59, "feet"),
  43562. name: "Cock",
  43563. image: {
  43564. source: "./media/characters/archinger/cock.svg"
  43565. }
  43566. },
  43567. },
  43568. [
  43569. {
  43570. name: "Normal",
  43571. height: math.unit(1.72, "meters"),
  43572. default: true
  43573. },
  43574. {
  43575. name: "Macro",
  43576. height: math.unit(84, "meters")
  43577. },
  43578. {
  43579. name: "Macro+",
  43580. height: math.unit(112, "meters")
  43581. },
  43582. {
  43583. name: "Macro++",
  43584. height: math.unit(960, "meters")
  43585. },
  43586. {
  43587. name: "Macro+++",
  43588. height: math.unit(4, "km")
  43589. },
  43590. {
  43591. name: "Macro++++",
  43592. height: math.unit(48, "km")
  43593. },
  43594. {
  43595. name: "Macro+++++",
  43596. height: math.unit(4500, "km")
  43597. },
  43598. ]
  43599. ))
  43600. characterMakers.push(() => makeCharacter(
  43601. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43602. {
  43603. front: {
  43604. height: math.unit(5 + 5/12, "feet"),
  43605. name: "Front",
  43606. image: {
  43607. source: "./media/characters/alsnapz/front.svg",
  43608. extra: 1157/1065,
  43609. bottom: 42/1199
  43610. }
  43611. },
  43612. },
  43613. [
  43614. {
  43615. name: "Normal",
  43616. height: math.unit(5 + 5/12, "feet"),
  43617. default: true
  43618. },
  43619. ]
  43620. ))
  43621. characterMakers.push(() => makeCharacter(
  43622. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43623. {
  43624. side: {
  43625. height: math.unit(3.2, "earths"),
  43626. name: "Side",
  43627. image: {
  43628. source: "./media/characters/mag/side.svg",
  43629. extra: 1331/1008,
  43630. bottom: 52/1383
  43631. }
  43632. },
  43633. wing: {
  43634. height: math.unit(1.94, "earths"),
  43635. name: "Wing",
  43636. image: {
  43637. source: "./media/characters/mag/wing.svg"
  43638. }
  43639. },
  43640. dick: {
  43641. height: math.unit(1.8, "earths"),
  43642. name: "Dick",
  43643. image: {
  43644. source: "./media/characters/mag/dick.svg"
  43645. }
  43646. },
  43647. ass: {
  43648. height: math.unit(1.33, "earths"),
  43649. name: "Ass",
  43650. image: {
  43651. source: "./media/characters/mag/ass.svg"
  43652. }
  43653. },
  43654. head: {
  43655. height: math.unit(1.1, "earths"),
  43656. name: "Head",
  43657. image: {
  43658. source: "./media/characters/mag/head.svg"
  43659. }
  43660. },
  43661. maw: {
  43662. height: math.unit(1.62, "earths"),
  43663. name: "Maw",
  43664. image: {
  43665. source: "./media/characters/mag/maw.svg"
  43666. }
  43667. },
  43668. },
  43669. [
  43670. {
  43671. name: "Small",
  43672. height: math.unit(162, "feet")
  43673. },
  43674. {
  43675. name: "Normal",
  43676. height: math.unit(3.2, "earths"),
  43677. default: true
  43678. },
  43679. ]
  43680. ))
  43681. characterMakers.push(() => makeCharacter(
  43682. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43683. {
  43684. front: {
  43685. height: math.unit(512, "feet"),
  43686. weight: math.unit(63509, "tonnes"),
  43687. name: "Front",
  43688. image: {
  43689. source: "./media/characters/vorrel-harroc/front.svg",
  43690. extra: 1075/1063,
  43691. bottom: 62/1137
  43692. }
  43693. },
  43694. },
  43695. [
  43696. {
  43697. name: "Normal",
  43698. height: math.unit(10, "feet")
  43699. },
  43700. {
  43701. name: "Macro",
  43702. height: math.unit(512, "feet"),
  43703. default: true
  43704. },
  43705. {
  43706. name: "Megamacro",
  43707. height: math.unit(256, "miles")
  43708. },
  43709. {
  43710. name: "Gigamacro",
  43711. height: math.unit(4096, "miles")
  43712. },
  43713. ]
  43714. ))
  43715. characterMakers.push(() => makeCharacter(
  43716. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43717. {
  43718. side: {
  43719. height: math.unit(50, "feet"),
  43720. name: "Side",
  43721. image: {
  43722. source: "./media/characters/froimar/side.svg",
  43723. extra: 855/638,
  43724. bottom: 99/954
  43725. }
  43726. },
  43727. },
  43728. [
  43729. {
  43730. name: "Macro",
  43731. height: math.unit(50, "feet"),
  43732. default: true
  43733. },
  43734. ]
  43735. ))
  43736. characterMakers.push(() => makeCharacter(
  43737. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43738. {
  43739. front: {
  43740. height: math.unit(210, "miles"),
  43741. name: "Front",
  43742. image: {
  43743. source: "./media/characters/timothy/front.svg",
  43744. extra: 1007/943,
  43745. bottom: 62/1069
  43746. }
  43747. },
  43748. frontSkirt: {
  43749. height: math.unit(210, "miles"),
  43750. name: "Front (Skirt)",
  43751. image: {
  43752. source: "./media/characters/timothy/front-skirt.svg",
  43753. extra: 1007/943,
  43754. bottom: 62/1069
  43755. }
  43756. },
  43757. frontCoat: {
  43758. height: math.unit(210, "miles"),
  43759. name: "Front (Coat)",
  43760. image: {
  43761. source: "./media/characters/timothy/front-coat.svg",
  43762. extra: 1007/943,
  43763. bottom: 62/1069
  43764. }
  43765. },
  43766. },
  43767. [
  43768. {
  43769. name: "Macro",
  43770. height: math.unit(210, "miles"),
  43771. default: true
  43772. },
  43773. {
  43774. name: "Megamacro",
  43775. height: math.unit(210000, "miles")
  43776. },
  43777. ]
  43778. ))
  43779. characterMakers.push(() => makeCharacter(
  43780. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43781. {
  43782. front: {
  43783. height: math.unit(188, "feet"),
  43784. name: "Front",
  43785. image: {
  43786. source: "./media/characters/pyotr/front.svg",
  43787. extra: 1912/1826,
  43788. bottom: 18/1930
  43789. }
  43790. },
  43791. },
  43792. [
  43793. {
  43794. name: "Macro",
  43795. height: math.unit(188, "feet"),
  43796. default: true
  43797. },
  43798. {
  43799. name: "Megamacro",
  43800. height: math.unit(8, "miles")
  43801. },
  43802. ]
  43803. ))
  43804. characterMakers.push(() => makeCharacter(
  43805. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43806. {
  43807. side: {
  43808. height: math.unit(10, "feet"),
  43809. weight: math.unit(4500, "lb"),
  43810. name: "Side",
  43811. image: {
  43812. source: "./media/characters/ackart/side.svg",
  43813. extra: 1776/1668,
  43814. bottom: 116/1892
  43815. }
  43816. },
  43817. },
  43818. [
  43819. {
  43820. name: "Normal",
  43821. height: math.unit(10, "feet"),
  43822. default: true
  43823. },
  43824. ]
  43825. ))
  43826. characterMakers.push(() => makeCharacter(
  43827. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43828. {
  43829. side: {
  43830. height: math.unit(21, "feet"),
  43831. name: "Side",
  43832. image: {
  43833. source: "./media/characters/nolow/side.svg",
  43834. extra: 1484/1434,
  43835. bottom: 85/1569
  43836. }
  43837. },
  43838. sideErect: {
  43839. height: math.unit(21, "feet"),
  43840. name: "Side-erect",
  43841. image: {
  43842. source: "./media/characters/nolow/side-erect.svg",
  43843. extra: 1484/1434,
  43844. bottom: 85/1569
  43845. }
  43846. },
  43847. },
  43848. [
  43849. {
  43850. name: "Regular",
  43851. height: math.unit(12, "feet")
  43852. },
  43853. {
  43854. name: "Big Chee",
  43855. height: math.unit(21, "feet"),
  43856. default: true
  43857. },
  43858. ]
  43859. ))
  43860. characterMakers.push(() => makeCharacter(
  43861. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43862. {
  43863. front: {
  43864. height: math.unit(7, "feet"),
  43865. weight: math.unit(250, "lb"),
  43866. name: "Front",
  43867. image: {
  43868. source: "./media/characters/nines/front.svg",
  43869. extra: 1741/1607,
  43870. bottom: 41/1782
  43871. }
  43872. },
  43873. side: {
  43874. height: math.unit(7, "feet"),
  43875. weight: math.unit(250, "lb"),
  43876. name: "Side",
  43877. image: {
  43878. source: "./media/characters/nines/side.svg",
  43879. extra: 1854/1735,
  43880. bottom: 93/1947
  43881. }
  43882. },
  43883. back: {
  43884. height: math.unit(7, "feet"),
  43885. weight: math.unit(250, "lb"),
  43886. name: "Back",
  43887. image: {
  43888. source: "./media/characters/nines/back.svg",
  43889. extra: 1748/1615,
  43890. bottom: 20/1768
  43891. }
  43892. },
  43893. },
  43894. [
  43895. {
  43896. name: "Megamacro",
  43897. height: math.unit(99, "km"),
  43898. default: true
  43899. },
  43900. ]
  43901. ))
  43902. characterMakers.push(() => makeCharacter(
  43903. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43904. {
  43905. front: {
  43906. height: math.unit(5 + 10/12, "feet"),
  43907. weight: math.unit(210, "lb"),
  43908. name: "Front",
  43909. image: {
  43910. source: "./media/characters/zenith/front.svg",
  43911. extra: 1531/1452,
  43912. bottom: 198/1729
  43913. }
  43914. },
  43915. back: {
  43916. height: math.unit(5 + 10/12, "feet"),
  43917. weight: math.unit(210, "lb"),
  43918. name: "Back",
  43919. image: {
  43920. source: "./media/characters/zenith/back.svg",
  43921. extra: 1571/1487,
  43922. bottom: 75/1646
  43923. }
  43924. },
  43925. },
  43926. [
  43927. {
  43928. name: "Normal",
  43929. height: math.unit(5 + 10/12, "feet"),
  43930. default: true
  43931. }
  43932. ]
  43933. ))
  43934. characterMakers.push(() => makeCharacter(
  43935. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43936. {
  43937. front: {
  43938. height: math.unit(4, "feet"),
  43939. weight: math.unit(60, "lb"),
  43940. name: "Front",
  43941. image: {
  43942. source: "./media/characters/jasper/front.svg",
  43943. extra: 1450/1379,
  43944. bottom: 19/1469
  43945. }
  43946. },
  43947. },
  43948. [
  43949. {
  43950. name: "Normal",
  43951. height: math.unit(4, "feet"),
  43952. default: true
  43953. },
  43954. ]
  43955. ))
  43956. characterMakers.push(() => makeCharacter(
  43957. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43958. {
  43959. front: {
  43960. height: math.unit(6 + 5/12, "feet"),
  43961. weight: math.unit(290, "lb"),
  43962. name: "Front",
  43963. image: {
  43964. source: "./media/characters/tiberius-thyben/front.svg",
  43965. extra: 757/739,
  43966. bottom: 39/796
  43967. }
  43968. },
  43969. },
  43970. [
  43971. {
  43972. name: "Micro",
  43973. height: math.unit(1.5, "inches")
  43974. },
  43975. {
  43976. name: "Normal",
  43977. height: math.unit(6 + 5/12, "feet"),
  43978. default: true
  43979. },
  43980. {
  43981. name: "Macro",
  43982. height: math.unit(300, "feet")
  43983. },
  43984. ]
  43985. ))
  43986. characterMakers.push(() => makeCharacter(
  43987. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43988. {
  43989. front: {
  43990. height: math.unit(5 + 6/12, "feet"),
  43991. weight: math.unit(60, "kg"),
  43992. name: "Front",
  43993. image: {
  43994. source: "./media/characters/sabre/front.svg",
  43995. extra: 738/671,
  43996. bottom: 27/765
  43997. }
  43998. },
  43999. },
  44000. [
  44001. {
  44002. name: "Teeny",
  44003. height: math.unit(2, "inches")
  44004. },
  44005. {
  44006. name: "Smol",
  44007. height: math.unit(8, "inches")
  44008. },
  44009. {
  44010. name: "Normal",
  44011. height: math.unit(5 + 6/12, "feet"),
  44012. default: true
  44013. },
  44014. {
  44015. name: "Mini-Macro",
  44016. height: math.unit(15, "feet")
  44017. },
  44018. {
  44019. name: "Macro",
  44020. height: math.unit(50, "feet")
  44021. },
  44022. ]
  44023. ))
  44024. characterMakers.push(() => makeCharacter(
  44025. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44026. {
  44027. front: {
  44028. height: math.unit(6 + 4/12, "feet"),
  44029. weight: math.unit(170, "lb"),
  44030. name: "Front",
  44031. image: {
  44032. source: "./media/characters/charlie/front.svg",
  44033. extra: 1348/1228,
  44034. bottom: 15/1363
  44035. }
  44036. },
  44037. },
  44038. [
  44039. {
  44040. name: "Macro",
  44041. height: math.unit(1700, "meters"),
  44042. default: true
  44043. },
  44044. {
  44045. name: "MegaMacro",
  44046. height: math.unit(20400, "meters")
  44047. },
  44048. ]
  44049. ))
  44050. characterMakers.push(() => makeCharacter(
  44051. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44052. {
  44053. front: {
  44054. height: math.unit(1.96, "meters"),
  44055. weight: math.unit(220, "lb"),
  44056. name: "Front",
  44057. image: {
  44058. source: "./media/characters/susan-grant/front.svg",
  44059. extra: 482/478,
  44060. bottom: 7/489
  44061. }
  44062. },
  44063. },
  44064. [
  44065. {
  44066. name: "Normal",
  44067. height: math.unit(1.96, "meters"),
  44068. default: true
  44069. },
  44070. {
  44071. name: "Macro",
  44072. height: math.unit(76.2, "meters")
  44073. },
  44074. {
  44075. name: "MegaMacro",
  44076. height: math.unit(305, "meters")
  44077. },
  44078. {
  44079. name: "GigaMacro",
  44080. height: math.unit(1220, "meters")
  44081. },
  44082. {
  44083. name: "SuperMacro",
  44084. height: math.unit(4878, "meters")
  44085. },
  44086. ]
  44087. ))
  44088. characterMakers.push(() => makeCharacter(
  44089. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44090. {
  44091. front: {
  44092. height: math.unit(5 + 4/12, "feet"),
  44093. weight: math.unit(110, "lb"),
  44094. name: "Front",
  44095. image: {
  44096. source: "./media/characters/axel-isanov/front.svg",
  44097. extra: 1096/1065,
  44098. bottom: 13/1109
  44099. }
  44100. },
  44101. },
  44102. [
  44103. {
  44104. name: "Normal",
  44105. height: math.unit(5 + 4/12, "feet"),
  44106. default: true
  44107. },
  44108. ]
  44109. ))
  44110. characterMakers.push(() => makeCharacter(
  44111. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44112. {
  44113. front: {
  44114. height: math.unit(9, "feet"),
  44115. weight: math.unit(467, "lb"),
  44116. name: "Front",
  44117. image: {
  44118. source: "./media/characters/necahual/front.svg",
  44119. extra: 920/873,
  44120. bottom: 26/946
  44121. }
  44122. },
  44123. back: {
  44124. height: math.unit(9, "feet"),
  44125. weight: math.unit(467, "lb"),
  44126. name: "Back",
  44127. image: {
  44128. source: "./media/characters/necahual/back.svg",
  44129. extra: 930/884,
  44130. bottom: 16/946
  44131. }
  44132. },
  44133. frontUnderwear: {
  44134. height: math.unit(9, "feet"),
  44135. weight: math.unit(467, "lb"),
  44136. name: "Front (Underwear)",
  44137. image: {
  44138. source: "./media/characters/necahual/front-underwear.svg",
  44139. extra: 920/873,
  44140. bottom: 26/946
  44141. }
  44142. },
  44143. frontDressed: {
  44144. height: math.unit(9, "feet"),
  44145. weight: math.unit(467, "lb"),
  44146. name: "Front (Dressed)",
  44147. image: {
  44148. source: "./media/characters/necahual/front-dressed.svg",
  44149. extra: 920/873,
  44150. bottom: 26/946
  44151. }
  44152. },
  44153. },
  44154. [
  44155. {
  44156. name: "Comprsesed",
  44157. height: math.unit(9, "feet")
  44158. },
  44159. {
  44160. name: "Natural",
  44161. height: math.unit(15, "feet"),
  44162. default: true
  44163. },
  44164. {
  44165. name: "Boosted",
  44166. height: math.unit(50, "feet")
  44167. },
  44168. {
  44169. name: "Boosted+",
  44170. height: math.unit(150, "feet")
  44171. },
  44172. {
  44173. name: "Max",
  44174. height: math.unit(500, "feet")
  44175. },
  44176. ]
  44177. ))
  44178. characterMakers.push(() => makeCharacter(
  44179. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44180. {
  44181. front: {
  44182. height: math.unit(22 + 1/12, "feet"),
  44183. weight: math.unit(3200, "lb"),
  44184. name: "Front",
  44185. image: {
  44186. source: "./media/characters/theo-acacia/front.svg",
  44187. extra: 1796/1741,
  44188. bottom: 83/1879
  44189. }
  44190. },
  44191. frontUnderwear: {
  44192. height: math.unit(22 + 1/12, "feet"),
  44193. weight: math.unit(3200, "lb"),
  44194. name: "Front (Underwear)",
  44195. image: {
  44196. source: "./media/characters/theo-acacia/front-underwear.svg",
  44197. extra: 1796/1741,
  44198. bottom: 83/1879
  44199. }
  44200. },
  44201. frontNude: {
  44202. height: math.unit(22 + 1/12, "feet"),
  44203. weight: math.unit(3200, "lb"),
  44204. name: "Front (Nude)",
  44205. image: {
  44206. source: "./media/characters/theo-acacia/front-nude.svg",
  44207. extra: 1796/1741,
  44208. bottom: 83/1879
  44209. }
  44210. },
  44211. },
  44212. [
  44213. {
  44214. name: "Normal",
  44215. height: math.unit(22 + 1/12, "feet"),
  44216. default: true
  44217. },
  44218. ]
  44219. ))
  44220. characterMakers.push(() => makeCharacter(
  44221. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44222. {
  44223. front: {
  44224. height: math.unit(20, "feet"),
  44225. name: "Front",
  44226. image: {
  44227. source: "./media/characters/astra/front.svg",
  44228. extra: 1850/1714,
  44229. bottom: 106/1956
  44230. }
  44231. },
  44232. frontUndressed: {
  44233. height: math.unit(20, "feet"),
  44234. name: "Front (Undressed)",
  44235. image: {
  44236. source: "./media/characters/astra/front-undressed.svg",
  44237. extra: 1926/1749,
  44238. bottom: 0/1926
  44239. }
  44240. },
  44241. hand: {
  44242. height: math.unit(1.53, "feet"),
  44243. name: "Hand",
  44244. image: {
  44245. source: "./media/characters/astra/hand.svg"
  44246. }
  44247. },
  44248. paw: {
  44249. height: math.unit(1.53, "feet"),
  44250. name: "Paw",
  44251. image: {
  44252. source: "./media/characters/astra/paw.svg"
  44253. }
  44254. },
  44255. },
  44256. [
  44257. {
  44258. name: "Smallest",
  44259. height: math.unit(20, "feet")
  44260. },
  44261. {
  44262. name: "Normal",
  44263. height: math.unit(1e9, "miles"),
  44264. default: true
  44265. },
  44266. {
  44267. name: "Larger",
  44268. height: math.unit(5, "multiverses")
  44269. },
  44270. {
  44271. name: "Largest",
  44272. height: math.unit(1e9, "multiverses")
  44273. },
  44274. ]
  44275. ))
  44276. characterMakers.push(() => makeCharacter(
  44277. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44278. {
  44279. front: {
  44280. height: math.unit(8, "feet"),
  44281. name: "Front",
  44282. image: {
  44283. source: "./media/characters/breanna/front.svg",
  44284. extra: 1912/1632,
  44285. bottom: 33/1945
  44286. }
  44287. },
  44288. },
  44289. [
  44290. {
  44291. name: "Smallest",
  44292. height: math.unit(8, "feet")
  44293. },
  44294. {
  44295. name: "Normal",
  44296. height: math.unit(1, "mile"),
  44297. default: true
  44298. },
  44299. {
  44300. name: "Maximum",
  44301. height: math.unit(1500000000000, "lightyears")
  44302. },
  44303. ]
  44304. ))
  44305. characterMakers.push(() => makeCharacter(
  44306. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44307. {
  44308. front: {
  44309. height: math.unit(5 + 11/12, "feet"),
  44310. weight: math.unit(155, "lb"),
  44311. name: "Front",
  44312. image: {
  44313. source: "./media/characters/cai/front.svg",
  44314. extra: 1823/1702,
  44315. bottom: 32/1855
  44316. }
  44317. },
  44318. back: {
  44319. height: math.unit(5 + 11/12, "feet"),
  44320. weight: math.unit(155, "lb"),
  44321. name: "Back",
  44322. image: {
  44323. source: "./media/characters/cai/back.svg",
  44324. extra: 1809/1708,
  44325. bottom: 31/1840
  44326. }
  44327. },
  44328. },
  44329. [
  44330. {
  44331. name: "Normal",
  44332. height: math.unit(5 + 11/12, "feet"),
  44333. default: true
  44334. },
  44335. {
  44336. name: "Big",
  44337. height: math.unit(15, "feet")
  44338. },
  44339. {
  44340. name: "Macro",
  44341. height: math.unit(200, "feet")
  44342. },
  44343. ]
  44344. ))
  44345. characterMakers.push(() => makeCharacter(
  44346. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44347. {
  44348. front: {
  44349. height: math.unit(5 + 6/12, "feet"),
  44350. weight: math.unit(160, "lb"),
  44351. name: "Front",
  44352. image: {
  44353. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44354. extra: 1227/1174,
  44355. bottom: 37/1264
  44356. }
  44357. },
  44358. },
  44359. [
  44360. {
  44361. name: "Macro",
  44362. height: math.unit(444, "meters"),
  44363. default: true
  44364. },
  44365. ]
  44366. ))
  44367. characterMakers.push(() => makeCharacter(
  44368. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44369. {
  44370. front: {
  44371. height: math.unit(18 + 7/12, "feet"),
  44372. name: "Front",
  44373. image: {
  44374. source: "./media/characters/rex/front.svg",
  44375. extra: 1941/1807,
  44376. bottom: 66/2007
  44377. }
  44378. },
  44379. back: {
  44380. height: math.unit(18 + 7/12, "feet"),
  44381. name: "Back",
  44382. image: {
  44383. source: "./media/characters/rex/back.svg",
  44384. extra: 1937/1822,
  44385. bottom: 42/1979
  44386. }
  44387. },
  44388. boot: {
  44389. height: math.unit(3.45, "feet"),
  44390. name: "Boot",
  44391. image: {
  44392. source: "./media/characters/rex/boot.svg"
  44393. }
  44394. },
  44395. paw: {
  44396. height: math.unit(4.17, "feet"),
  44397. name: "Paw",
  44398. image: {
  44399. source: "./media/characters/rex/paw.svg"
  44400. }
  44401. },
  44402. head: {
  44403. height: math.unit(6.728, "feet"),
  44404. name: "Head",
  44405. image: {
  44406. source: "./media/characters/rex/head.svg"
  44407. }
  44408. },
  44409. },
  44410. [
  44411. {
  44412. name: "Nano",
  44413. height: math.unit(18 + 7/12, "feet")
  44414. },
  44415. {
  44416. name: "Micro",
  44417. height: math.unit(1.5, "megameters")
  44418. },
  44419. {
  44420. name: "Normal",
  44421. height: math.unit(440, "megameters"),
  44422. default: true
  44423. },
  44424. {
  44425. name: "Macro",
  44426. height: math.unit(2.5, "gigameters")
  44427. },
  44428. {
  44429. name: "Gigamacro",
  44430. height: math.unit(2, "galaxies")
  44431. },
  44432. ]
  44433. ))
  44434. characterMakers.push(() => makeCharacter(
  44435. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44436. {
  44437. side: {
  44438. height: math.unit(32, "feet"),
  44439. weight: math.unit(250000, "lb"),
  44440. name: "Side",
  44441. image: {
  44442. source: "./media/characters/silverwing/side.svg",
  44443. extra: 1100/1019,
  44444. bottom: 204/1304
  44445. }
  44446. },
  44447. },
  44448. [
  44449. {
  44450. name: "Normal",
  44451. height: math.unit(32, "feet"),
  44452. default: true
  44453. },
  44454. ]
  44455. ))
  44456. characterMakers.push(() => makeCharacter(
  44457. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44458. {
  44459. front: {
  44460. height: math.unit(6 + 6/12, "feet"),
  44461. weight: math.unit(350, "lb"),
  44462. name: "Front",
  44463. image: {
  44464. source: "./media/characters/tristan-hawthorne/front.svg",
  44465. extra: 1159/1124,
  44466. bottom: 37/1196
  44467. },
  44468. form: "labrador",
  44469. default: true
  44470. },
  44471. skunkFront: {
  44472. height: math.unit(4 + 6/12, "feet"),
  44473. weight: math.unit(120, "lb"),
  44474. name: "Front",
  44475. image: {
  44476. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44477. extra: 1609/1551,
  44478. bottom: 169/1778
  44479. },
  44480. form: "skunk",
  44481. default: true
  44482. },
  44483. },
  44484. [
  44485. {
  44486. name: "Normal",
  44487. height: math.unit(6 + 6/12, "feet"),
  44488. form: "labrador",
  44489. default: true
  44490. },
  44491. {
  44492. name: "Normal",
  44493. height: math.unit(4 + 6/12, "feet"),
  44494. form: "skunk",
  44495. default: true
  44496. },
  44497. ],
  44498. {
  44499. "labrador": {
  44500. name: "Labrador",
  44501. default: true
  44502. },
  44503. "skunk": {
  44504. name: "Skunk"
  44505. }
  44506. }
  44507. ))
  44508. characterMakers.push(() => makeCharacter(
  44509. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44510. {
  44511. front: {
  44512. height: math.unit(5 + 11/12, "feet"),
  44513. weight: math.unit(190, "lb"),
  44514. name: "Front",
  44515. image: {
  44516. source: "./media/characters/mizu/front.svg",
  44517. extra: 1988/1788,
  44518. bottom: 14/2002
  44519. }
  44520. },
  44521. },
  44522. [
  44523. {
  44524. name: "Normal",
  44525. height: math.unit(5 + 11/12, "feet"),
  44526. default: true
  44527. },
  44528. ]
  44529. ))
  44530. characterMakers.push(() => makeCharacter(
  44531. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44532. {
  44533. front: {
  44534. height: math.unit(1.7, "feet"),
  44535. weight: math.unit(50, "lb"),
  44536. name: "Front",
  44537. image: {
  44538. source: "./media/characters/dechroma/front.svg",
  44539. extra: 1095/859,
  44540. bottom: 64/1159
  44541. }
  44542. },
  44543. },
  44544. [
  44545. {
  44546. name: "Normal",
  44547. height: math.unit(1.7, "feet"),
  44548. default: true
  44549. },
  44550. ]
  44551. ))
  44552. characterMakers.push(() => makeCharacter(
  44553. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44554. {
  44555. side: {
  44556. height: math.unit(30, "feet"),
  44557. name: "Side",
  44558. image: {
  44559. source: "./media/characters/veluren-thanazel/side.svg",
  44560. extra: 1611/633,
  44561. bottom: 118/1729
  44562. }
  44563. },
  44564. front: {
  44565. height: math.unit(30, "feet"),
  44566. name: "Front",
  44567. image: {
  44568. source: "./media/characters/veluren-thanazel/front.svg",
  44569. extra: 1486/636,
  44570. bottom: 238/1724
  44571. }
  44572. },
  44573. head: {
  44574. height: math.unit(21.4, "feet"),
  44575. name: "Head",
  44576. image: {
  44577. source: "./media/characters/veluren-thanazel/head.svg"
  44578. }
  44579. },
  44580. genitals: {
  44581. height: math.unit(19.4, "feet"),
  44582. name: "Genitals",
  44583. image: {
  44584. source: "./media/characters/veluren-thanazel/genitals.svg"
  44585. }
  44586. },
  44587. },
  44588. [
  44589. {
  44590. name: "Social",
  44591. height: math.unit(6, "feet")
  44592. },
  44593. {
  44594. name: "Play",
  44595. height: math.unit(12, "feet")
  44596. },
  44597. {
  44598. name: "True",
  44599. height: math.unit(30, "feet"),
  44600. default: true
  44601. },
  44602. ]
  44603. ))
  44604. characterMakers.push(() => makeCharacter(
  44605. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44606. {
  44607. front: {
  44608. height: math.unit(7 + 6/12, "feet"),
  44609. weight: math.unit(500, "kg"),
  44610. name: "Front",
  44611. image: {
  44612. source: "./media/characters/arcturas/front.svg",
  44613. extra: 1700/1500,
  44614. bottom: 145/1845
  44615. }
  44616. },
  44617. },
  44618. [
  44619. {
  44620. name: "Normal",
  44621. height: math.unit(7 + 6/12, "feet"),
  44622. default: true
  44623. },
  44624. ]
  44625. ))
  44626. characterMakers.push(() => makeCharacter(
  44627. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44628. {
  44629. side: {
  44630. height: math.unit(6, "feet"),
  44631. weight: math.unit(2, "tons"),
  44632. name: "Side",
  44633. image: {
  44634. source: "./media/characters/vitaen/side.svg",
  44635. extra: 1157/617,
  44636. bottom: 122/1279
  44637. }
  44638. },
  44639. },
  44640. [
  44641. {
  44642. name: "Normal",
  44643. height: math.unit(6, "feet"),
  44644. default: true
  44645. },
  44646. ]
  44647. ))
  44648. characterMakers.push(() => makeCharacter(
  44649. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44650. {
  44651. front: {
  44652. height: math.unit(19, "feet"),
  44653. name: "Front",
  44654. image: {
  44655. source: "./media/characters/fia-dreamweaver/front.svg",
  44656. extra: 1630/1504,
  44657. bottom: 25/1655
  44658. }
  44659. },
  44660. },
  44661. [
  44662. {
  44663. name: "Normal",
  44664. height: math.unit(19, "feet"),
  44665. default: true
  44666. },
  44667. ]
  44668. ))
  44669. characterMakers.push(() => makeCharacter(
  44670. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44671. {
  44672. front: {
  44673. height: math.unit(5 + 4/12, "feet"),
  44674. name: "Front",
  44675. image: {
  44676. source: "./media/characters/artan/front.svg",
  44677. extra: 1618/1535,
  44678. bottom: 46/1664
  44679. }
  44680. },
  44681. back: {
  44682. height: math.unit(5 + 4/12, "feet"),
  44683. name: "Back",
  44684. image: {
  44685. source: "./media/characters/artan/back.svg",
  44686. extra: 1618/1543,
  44687. bottom: 31/1649
  44688. }
  44689. },
  44690. },
  44691. [
  44692. {
  44693. name: "Normal",
  44694. height: math.unit(5 + 4/12, "feet"),
  44695. default: true
  44696. },
  44697. ]
  44698. ))
  44699. characterMakers.push(() => makeCharacter(
  44700. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44701. {
  44702. side: {
  44703. height: math.unit(182, "cm"),
  44704. weight: math.unit(1000, "lb"),
  44705. name: "Side",
  44706. image: {
  44707. source: "./media/characters/silver-dragon/side.svg",
  44708. extra: 710/287,
  44709. bottom: 88/798
  44710. }
  44711. },
  44712. },
  44713. [
  44714. {
  44715. name: "Normal",
  44716. height: math.unit(182, "cm"),
  44717. default: true
  44718. },
  44719. ]
  44720. ))
  44721. characterMakers.push(() => makeCharacter(
  44722. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44723. {
  44724. side: {
  44725. height: math.unit(6 + 6/12, "feet"),
  44726. weight: math.unit(1.5, "tons"),
  44727. name: "Side",
  44728. image: {
  44729. source: "./media/characters/zephyr/side.svg",
  44730. extra: 1433/586,
  44731. bottom: 109/1542
  44732. }
  44733. },
  44734. },
  44735. [
  44736. {
  44737. name: "Normal",
  44738. height: math.unit(6 + 6/12, "feet"),
  44739. default: true
  44740. },
  44741. ]
  44742. ))
  44743. characterMakers.push(() => makeCharacter(
  44744. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44745. {
  44746. side: {
  44747. height: math.unit(1, "feet"),
  44748. name: "Side",
  44749. image: {
  44750. source: "./media/characters/vixye/side.svg",
  44751. extra: 632/541,
  44752. bottom: 0/632
  44753. }
  44754. },
  44755. },
  44756. [
  44757. {
  44758. name: "Normal",
  44759. height: math.unit(1, "feet"),
  44760. default: true
  44761. },
  44762. {
  44763. name: "True",
  44764. height: math.unit(1e15, "multiverses")
  44765. },
  44766. ]
  44767. ))
  44768. characterMakers.push(() => makeCharacter(
  44769. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44770. {
  44771. front: {
  44772. height: math.unit(8 + 2/12, "feet"),
  44773. weight: math.unit(650, "lb"),
  44774. name: "Front",
  44775. image: {
  44776. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44777. extra: 1174/1137,
  44778. bottom: 82/1256
  44779. }
  44780. },
  44781. back: {
  44782. height: math.unit(8 + 2/12, "feet"),
  44783. weight: math.unit(650, "lb"),
  44784. name: "Back",
  44785. image: {
  44786. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44787. extra: 1204/1157,
  44788. bottom: 46/1250
  44789. }
  44790. },
  44791. },
  44792. [
  44793. {
  44794. name: "Wildform",
  44795. height: math.unit(8 + 2/12, "feet"),
  44796. default: true
  44797. },
  44798. ]
  44799. ))
  44800. characterMakers.push(() => makeCharacter(
  44801. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44802. {
  44803. front: {
  44804. height: math.unit(18, "feet"),
  44805. name: "Front",
  44806. image: {
  44807. source: "./media/characters/cyphin/front.svg",
  44808. extra: 970/886,
  44809. bottom: 42/1012
  44810. }
  44811. },
  44812. back: {
  44813. height: math.unit(18, "feet"),
  44814. name: "Back",
  44815. image: {
  44816. source: "./media/characters/cyphin/back.svg",
  44817. extra: 1009/894,
  44818. bottom: 24/1033
  44819. }
  44820. },
  44821. head: {
  44822. height: math.unit(5.05, "feet"),
  44823. name: "Head",
  44824. image: {
  44825. source: "./media/characters/cyphin/head.svg"
  44826. }
  44827. },
  44828. tailbud: {
  44829. height: math.unit(5, "feet"),
  44830. name: "Tailbud",
  44831. image: {
  44832. source: "./media/characters/cyphin/tailbud.svg"
  44833. }
  44834. },
  44835. },
  44836. [
  44837. ]
  44838. ))
  44839. characterMakers.push(() => makeCharacter(
  44840. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44841. {
  44842. side: {
  44843. height: math.unit(10, "feet"),
  44844. weight: math.unit(6, "tons"),
  44845. name: "Side",
  44846. image: {
  44847. source: "./media/characters/raijin/side.svg",
  44848. extra: 1529/613,
  44849. bottom: 337/1866
  44850. }
  44851. },
  44852. },
  44853. [
  44854. {
  44855. name: "Normal",
  44856. height: math.unit(10, "feet"),
  44857. default: true
  44858. },
  44859. ]
  44860. ))
  44861. characterMakers.push(() => makeCharacter(
  44862. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44863. {
  44864. side: {
  44865. height: math.unit(9, "feet"),
  44866. name: "Side",
  44867. image: {
  44868. source: "./media/characters/nilghais/side.svg",
  44869. extra: 1047/744,
  44870. bottom: 91/1138
  44871. }
  44872. },
  44873. head: {
  44874. height: math.unit(3.14, "feet"),
  44875. name: "Head",
  44876. image: {
  44877. source: "./media/characters/nilghais/head.svg"
  44878. }
  44879. },
  44880. mouth: {
  44881. height: math.unit(4.6, "feet"),
  44882. name: "Mouth",
  44883. image: {
  44884. source: "./media/characters/nilghais/mouth.svg"
  44885. }
  44886. },
  44887. wings: {
  44888. height: math.unit(24, "feet"),
  44889. name: "Wings",
  44890. image: {
  44891. source: "./media/characters/nilghais/wings.svg"
  44892. }
  44893. },
  44894. ass: {
  44895. height: math.unit(6.12, "feet"),
  44896. name: "Ass",
  44897. image: {
  44898. source: "./media/characters/nilghais/ass.svg"
  44899. }
  44900. },
  44901. },
  44902. [
  44903. {
  44904. name: "Normal",
  44905. height: math.unit(9, "feet"),
  44906. default: true
  44907. },
  44908. ]
  44909. ))
  44910. characterMakers.push(() => makeCharacter(
  44911. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44912. {
  44913. regular: {
  44914. height: math.unit(16 + 2/12, "feet"),
  44915. weight: math.unit(2300, "lb"),
  44916. name: "Regular",
  44917. image: {
  44918. source: "./media/characters/zolgar/regular.svg",
  44919. extra: 1246/1004,
  44920. bottom: 124/1370
  44921. }
  44922. },
  44923. boxers: {
  44924. height: math.unit(16 + 2/12, "feet"),
  44925. weight: math.unit(2300, "lb"),
  44926. name: "Boxers",
  44927. image: {
  44928. source: "./media/characters/zolgar/boxers.svg",
  44929. extra: 1246/1004,
  44930. bottom: 124/1370
  44931. }
  44932. },
  44933. armored: {
  44934. height: math.unit(16 + 2/12, "feet"),
  44935. weight: math.unit(2300, "lb"),
  44936. name: "Armored",
  44937. image: {
  44938. source: "./media/characters/zolgar/armored.svg",
  44939. extra: 1246/1004,
  44940. bottom: 124/1370
  44941. }
  44942. },
  44943. goth: {
  44944. height: math.unit(16 + 2/12, "feet"),
  44945. weight: math.unit(2300, "lb"),
  44946. name: "Goth",
  44947. image: {
  44948. source: "./media/characters/zolgar/goth.svg",
  44949. extra: 1246/1004,
  44950. bottom: 124/1370
  44951. }
  44952. },
  44953. },
  44954. [
  44955. {
  44956. name: "Shrunken Down",
  44957. height: math.unit(9 + 2/12, "feet")
  44958. },
  44959. {
  44960. name: "Normal",
  44961. height: math.unit(16 + 2/12, "feet"),
  44962. default: true
  44963. },
  44964. ]
  44965. ))
  44966. characterMakers.push(() => makeCharacter(
  44967. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44968. {
  44969. front: {
  44970. height: math.unit(6, "feet"),
  44971. weight: math.unit(168, "lb"),
  44972. name: "Front",
  44973. image: {
  44974. source: "./media/characters/luca/front.svg",
  44975. extra: 841/667,
  44976. bottom: 102/943
  44977. }
  44978. },
  44979. },
  44980. [
  44981. {
  44982. name: "Normal",
  44983. height: math.unit(6, "feet"),
  44984. default: true
  44985. },
  44986. ]
  44987. ))
  44988. characterMakers.push(() => makeCharacter(
  44989. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44990. {
  44991. side: {
  44992. height: math.unit(7 + 3/12, "feet"),
  44993. weight: math.unit(312, "lb"),
  44994. name: "Side",
  44995. image: {
  44996. source: "./media/characters/zezo/side.svg",
  44997. extra: 1192/1067,
  44998. bottom: 63/1255
  44999. }
  45000. },
  45001. },
  45002. [
  45003. {
  45004. name: "Normal",
  45005. height: math.unit(7 + 3/12, "feet"),
  45006. default: true
  45007. },
  45008. ]
  45009. ))
  45010. characterMakers.push(() => makeCharacter(
  45011. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45012. {
  45013. front: {
  45014. height: math.unit(5 + 5/12, "feet"),
  45015. weight: math.unit(170, "lb"),
  45016. name: "Front",
  45017. image: {
  45018. source: "./media/characters/mayso/front.svg",
  45019. extra: 1215/1108,
  45020. bottom: 16/1231
  45021. }
  45022. },
  45023. },
  45024. [
  45025. {
  45026. name: "Normal",
  45027. height: math.unit(5 + 5/12, "feet"),
  45028. default: true
  45029. },
  45030. ]
  45031. ))
  45032. characterMakers.push(() => makeCharacter(
  45033. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45034. {
  45035. front: {
  45036. height: math.unit(4 + 3/12, "feet"),
  45037. weight: math.unit(80, "lb"),
  45038. name: "Front",
  45039. image: {
  45040. source: "./media/characters/hess/front.svg",
  45041. extra: 1200/1123,
  45042. bottom: 16/1216
  45043. }
  45044. },
  45045. },
  45046. [
  45047. {
  45048. name: "Normal",
  45049. height: math.unit(4 + 3/12, "feet"),
  45050. default: true
  45051. },
  45052. ]
  45053. ))
  45054. characterMakers.push(() => makeCharacter(
  45055. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45056. {
  45057. front: {
  45058. height: math.unit(1.9, "meters"),
  45059. name: "Front",
  45060. image: {
  45061. source: "./media/characters/ashgar/front.svg",
  45062. extra: 1177/1146,
  45063. bottom: 99/1276
  45064. }
  45065. },
  45066. back: {
  45067. height: math.unit(1.9, "meters"),
  45068. name: "Back",
  45069. image: {
  45070. source: "./media/characters/ashgar/back.svg",
  45071. extra: 1201/1183,
  45072. bottom: 53/1254
  45073. }
  45074. },
  45075. feral: {
  45076. height: math.unit(1.4, "meters"),
  45077. name: "Feral",
  45078. image: {
  45079. source: "./media/characters/ashgar/feral.svg",
  45080. extra: 370/345,
  45081. bottom: 45/415
  45082. }
  45083. },
  45084. },
  45085. [
  45086. {
  45087. name: "Normal",
  45088. height: math.unit(1.9, "meters"),
  45089. default: true
  45090. },
  45091. ]
  45092. ))
  45093. characterMakers.push(() => makeCharacter(
  45094. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45095. {
  45096. regular: {
  45097. height: math.unit(6, "feet"),
  45098. weight: math.unit(220, "lb"),
  45099. name: "Regular",
  45100. image: {
  45101. source: "./media/characters/phillip/regular.svg",
  45102. extra: 1373/1277,
  45103. bottom: 75/1448
  45104. }
  45105. },
  45106. dressed: {
  45107. height: math.unit(6, "feet"),
  45108. weight: math.unit(220, "lb"),
  45109. name: "Dressed",
  45110. image: {
  45111. source: "./media/characters/phillip/dressed.svg",
  45112. extra: 1373/1277,
  45113. bottom: 75/1448
  45114. }
  45115. },
  45116. paw: {
  45117. height: math.unit(1.44, "feet"),
  45118. name: "Paw",
  45119. image: {
  45120. source: "./media/characters/phillip/paw.svg"
  45121. }
  45122. },
  45123. },
  45124. [
  45125. {
  45126. name: "Normal",
  45127. height: math.unit(6, "feet"),
  45128. default: true
  45129. },
  45130. ]
  45131. ))
  45132. characterMakers.push(() => makeCharacter(
  45133. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45134. {
  45135. side: {
  45136. height: math.unit(42, "feet"),
  45137. name: "Side",
  45138. image: {
  45139. source: "./media/characters/uvula/side.svg",
  45140. extra: 683/586,
  45141. bottom: 60/743
  45142. }
  45143. },
  45144. front: {
  45145. height: math.unit(42, "feet"),
  45146. name: "Front",
  45147. image: {
  45148. source: "./media/characters/uvula/front.svg",
  45149. extra: 705/613,
  45150. bottom: 54/759
  45151. }
  45152. },
  45153. maw: {
  45154. height: math.unit(23.5, "feet"),
  45155. name: "Maw",
  45156. image: {
  45157. source: "./media/characters/uvula/maw.svg"
  45158. }
  45159. },
  45160. },
  45161. [
  45162. {
  45163. name: "Original Size",
  45164. height: math.unit(14, "inches")
  45165. },
  45166. {
  45167. name: "Human Size",
  45168. height: math.unit(6, "feet")
  45169. },
  45170. {
  45171. name: "Big",
  45172. height: math.unit(42, "feet"),
  45173. default: true
  45174. },
  45175. {
  45176. name: "Bigger",
  45177. height: math.unit(100, "feet")
  45178. },
  45179. ]
  45180. ))
  45181. characterMakers.push(() => makeCharacter(
  45182. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45183. {
  45184. front: {
  45185. height: math.unit(5 + 11/12, "feet"),
  45186. name: "Front",
  45187. image: {
  45188. source: "./media/characters/lannah/front.svg",
  45189. extra: 1208/1113,
  45190. bottom: 97/1305
  45191. }
  45192. },
  45193. },
  45194. [
  45195. {
  45196. name: "Normal",
  45197. height: math.unit(5 + 11/12, "feet"),
  45198. default: true
  45199. },
  45200. ]
  45201. ))
  45202. characterMakers.push(() => makeCharacter(
  45203. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45204. {
  45205. front: {
  45206. height: math.unit(6 + 3/12, "feet"),
  45207. weight: math.unit(3.5, "tons"),
  45208. name: "Front",
  45209. image: {
  45210. source: "./media/characters/emberflame/front.svg",
  45211. extra: 1198/672,
  45212. bottom: 82/1280
  45213. }
  45214. },
  45215. side: {
  45216. height: math.unit(6 + 3/12, "feet"),
  45217. weight: math.unit(3.5, "tons"),
  45218. name: "Side",
  45219. image: {
  45220. source: "./media/characters/emberflame/side.svg",
  45221. extra: 938/527,
  45222. bottom: 56/994
  45223. }
  45224. },
  45225. },
  45226. [
  45227. {
  45228. name: "Normal",
  45229. height: math.unit(6 + 3/12, "feet"),
  45230. default: true
  45231. },
  45232. ]
  45233. ))
  45234. characterMakers.push(() => makeCharacter(
  45235. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45236. {
  45237. side: {
  45238. height: math.unit(17.5, "feet"),
  45239. weight: math.unit(35, "tons"),
  45240. name: "Side",
  45241. image: {
  45242. source: "./media/characters/sophie-ambrose/side.svg",
  45243. extra: 1573/1242,
  45244. bottom: 71/1644
  45245. }
  45246. },
  45247. maw: {
  45248. height: math.unit(7.4, "feet"),
  45249. name: "Maw",
  45250. image: {
  45251. source: "./media/characters/sophie-ambrose/maw.svg"
  45252. }
  45253. },
  45254. },
  45255. [
  45256. {
  45257. name: "Normal",
  45258. height: math.unit(17.5, "feet"),
  45259. default: true
  45260. },
  45261. ]
  45262. ))
  45263. characterMakers.push(() => makeCharacter(
  45264. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45265. {
  45266. front: {
  45267. height: math.unit(280, "feet"),
  45268. weight: math.unit(550, "tons"),
  45269. name: "Front",
  45270. image: {
  45271. source: "./media/characters/king-mugi/front.svg",
  45272. extra: 1102/947,
  45273. bottom: 104/1206
  45274. }
  45275. },
  45276. },
  45277. [
  45278. {
  45279. name: "King Mugi",
  45280. height: math.unit(280, "feet"),
  45281. default: true
  45282. },
  45283. ]
  45284. ))
  45285. characterMakers.push(() => makeCharacter(
  45286. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45287. {
  45288. female: {
  45289. height: math.unit(300, "meters"),
  45290. name: "Front",
  45291. image: {
  45292. source: "./media/characters/nova-fox/female.svg",
  45293. extra: 664/632,
  45294. bottom: 51/715
  45295. },
  45296. form: "female",
  45297. default: true
  45298. },
  45299. male: {
  45300. height: math.unit(300, "meters"),
  45301. name: "Front",
  45302. image: {
  45303. source: "./media/characters/nova-fox/male.svg",
  45304. extra: 663/631,
  45305. bottom: 30/693
  45306. },
  45307. form: "male",
  45308. default: true
  45309. },
  45310. },
  45311. [
  45312. {
  45313. name: "Macro",
  45314. height: math.unit(300, "meters"),
  45315. default: true,
  45316. allForms: true
  45317. },
  45318. ],
  45319. {
  45320. "female": {
  45321. name: "Female",
  45322. default: true
  45323. },
  45324. "male": {
  45325. name: "Male",
  45326. },
  45327. }
  45328. ))
  45329. characterMakers.push(() => makeCharacter(
  45330. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45331. {
  45332. front: {
  45333. height: math.unit(6 + 3/12, "feet"),
  45334. weight: math.unit(170, "lb"),
  45335. name: "Front",
  45336. image: {
  45337. source: "./media/characters/sam-bat/front.svg",
  45338. extra: 1601/1411,
  45339. bottom: 125/1726
  45340. }
  45341. },
  45342. back: {
  45343. height: math.unit(6 + 3/12, "feet"),
  45344. weight: math.unit(170, "lb"),
  45345. name: "Back",
  45346. image: {
  45347. source: "./media/characters/sam-bat/back.svg",
  45348. extra: 1577/1405,
  45349. bottom: 58/1635
  45350. }
  45351. },
  45352. },
  45353. [
  45354. {
  45355. name: "Normal",
  45356. height: math.unit(6 + 3/12, "feet"),
  45357. default: true
  45358. },
  45359. ]
  45360. ))
  45361. characterMakers.push(() => makeCharacter(
  45362. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45363. {
  45364. front: {
  45365. height: math.unit(59, "feet"),
  45366. weight: math.unit(40000, "lb"),
  45367. name: "Front",
  45368. image: {
  45369. source: "./media/characters/inari/front.svg",
  45370. extra: 1884/1350,
  45371. bottom: 95/1979
  45372. }
  45373. },
  45374. },
  45375. [
  45376. {
  45377. name: "Gigantamax",
  45378. height: math.unit(59, "feet"),
  45379. default: true
  45380. },
  45381. ]
  45382. ))
  45383. characterMakers.push(() => makeCharacter(
  45384. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45385. {
  45386. front: {
  45387. height: math.unit(5 + 8/12, "feet"),
  45388. name: "Front",
  45389. image: {
  45390. source: "./media/characters/elizabeth/front.svg",
  45391. extra: 1395/1298,
  45392. bottom: 54/1449
  45393. }
  45394. },
  45395. mouth: {
  45396. height: math.unit(1.97, "feet"),
  45397. name: "Mouth",
  45398. image: {
  45399. source: "./media/characters/elizabeth/mouth.svg"
  45400. }
  45401. },
  45402. foot: {
  45403. height: math.unit(1.17, "feet"),
  45404. name: "Foot",
  45405. image: {
  45406. source: "./media/characters/elizabeth/foot.svg"
  45407. }
  45408. },
  45409. },
  45410. [
  45411. {
  45412. name: "Normal",
  45413. height: math.unit(5 + 8/12, "feet"),
  45414. default: true
  45415. },
  45416. {
  45417. name: "Minimacro",
  45418. height: math.unit(18, "feet")
  45419. },
  45420. {
  45421. name: "Macro",
  45422. height: math.unit(180, "feet")
  45423. },
  45424. ]
  45425. ))
  45426. characterMakers.push(() => makeCharacter(
  45427. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45428. {
  45429. front: {
  45430. height: math.unit(5 + 2/12, "feet"),
  45431. name: "Front",
  45432. image: {
  45433. source: "./media/characters/october-gossamer/front.svg",
  45434. extra: 505/454,
  45435. bottom: 7/512
  45436. }
  45437. },
  45438. back: {
  45439. height: math.unit(5 + 2/12, "feet"),
  45440. name: "Back",
  45441. image: {
  45442. source: "./media/characters/october-gossamer/back.svg",
  45443. extra: 501/454,
  45444. bottom: 11/512
  45445. }
  45446. },
  45447. },
  45448. [
  45449. {
  45450. name: "Normal",
  45451. height: math.unit(5 + 2/12, "feet"),
  45452. default: true
  45453. },
  45454. ]
  45455. ))
  45456. characterMakers.push(() => makeCharacter(
  45457. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45458. {
  45459. front: {
  45460. height: math.unit(5, "feet"),
  45461. name: "Front",
  45462. image: {
  45463. source: "./media/characters/epiglottis/front.svg",
  45464. extra: 923/849,
  45465. bottom: 17/940
  45466. }
  45467. },
  45468. },
  45469. [
  45470. {
  45471. name: "Original Size",
  45472. height: math.unit(10, "inches")
  45473. },
  45474. {
  45475. name: "Human Size",
  45476. height: math.unit(5, "feet"),
  45477. default: true
  45478. },
  45479. {
  45480. name: "Big",
  45481. height: math.unit(25, "feet")
  45482. },
  45483. {
  45484. name: "Bigger",
  45485. height: math.unit(50, "feet")
  45486. },
  45487. {
  45488. name: "oh lawd",
  45489. height: math.unit(75, "feet")
  45490. },
  45491. ]
  45492. ))
  45493. characterMakers.push(() => makeCharacter(
  45494. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45495. {
  45496. front: {
  45497. height: math.unit(2 + 4/12, "feet"),
  45498. weight: math.unit(60, "lb"),
  45499. name: "Front",
  45500. image: {
  45501. source: "./media/characters/lerm/front.svg",
  45502. extra: 796/790,
  45503. bottom: 79/875
  45504. }
  45505. },
  45506. },
  45507. [
  45508. {
  45509. name: "Normal",
  45510. height: math.unit(2 + 4/12, "feet"),
  45511. default: true
  45512. },
  45513. ]
  45514. ))
  45515. characterMakers.push(() => makeCharacter(
  45516. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45517. {
  45518. front: {
  45519. height: math.unit(5.5, "feet"),
  45520. weight: math.unit(130, "lb"),
  45521. name: "Front",
  45522. image: {
  45523. source: "./media/characters/xena-nebadon/front.svg",
  45524. extra: 1828/1730,
  45525. bottom: 79/1907
  45526. }
  45527. },
  45528. },
  45529. [
  45530. {
  45531. name: "Tiny Puppy",
  45532. height: math.unit(3, "inches")
  45533. },
  45534. {
  45535. name: "Normal",
  45536. height: math.unit(5.5, "feet"),
  45537. default: true
  45538. },
  45539. {
  45540. name: "Lotta Lady",
  45541. height: math.unit(12, "feet")
  45542. },
  45543. {
  45544. name: "Pretty Big",
  45545. height: math.unit(100, "feet")
  45546. },
  45547. {
  45548. name: "Big",
  45549. height: math.unit(500, "feet")
  45550. },
  45551. {
  45552. name: "Skyscraper Toys",
  45553. height: math.unit(2500, "feet")
  45554. },
  45555. {
  45556. name: "Plane Catcher",
  45557. height: math.unit(8, "miles")
  45558. },
  45559. {
  45560. name: "Planet Toys",
  45561. height: math.unit(15, "earths")
  45562. },
  45563. {
  45564. name: "Stardust",
  45565. height: math.unit(0.25, "galaxies")
  45566. },
  45567. {
  45568. name: "Snacks",
  45569. height: math.unit(70, "universes")
  45570. },
  45571. ]
  45572. ))
  45573. characterMakers.push(() => makeCharacter(
  45574. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45575. {
  45576. front: {
  45577. height: math.unit(1.6, "meters"),
  45578. weight: math.unit(60, "kg"),
  45579. name: "Front",
  45580. image: {
  45581. source: "./media/characters/bounty/front.svg",
  45582. extra: 1426/1308,
  45583. bottom: 15/1441
  45584. }
  45585. },
  45586. back: {
  45587. height: math.unit(1.6, "meters"),
  45588. weight: math.unit(60, "kg"),
  45589. name: "Back",
  45590. image: {
  45591. source: "./media/characters/bounty/back.svg",
  45592. extra: 1417/1307,
  45593. bottom: 8/1425
  45594. }
  45595. },
  45596. },
  45597. [
  45598. {
  45599. name: "Normal",
  45600. height: math.unit(1.6, "meters"),
  45601. default: true
  45602. },
  45603. {
  45604. name: "Macro",
  45605. height: math.unit(300, "meters")
  45606. },
  45607. ]
  45608. ))
  45609. characterMakers.push(() => makeCharacter(
  45610. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45611. {
  45612. front: {
  45613. height: math.unit(2 + 8/12, "feet"),
  45614. weight: math.unit(15, "lb"),
  45615. name: "Front",
  45616. image: {
  45617. source: "./media/characters/mochi/front.svg",
  45618. extra: 1022/852,
  45619. bottom: 435/1457
  45620. }
  45621. },
  45622. back: {
  45623. height: math.unit(2 + 8/12, "feet"),
  45624. weight: math.unit(15, "lb"),
  45625. name: "Back",
  45626. image: {
  45627. source: "./media/characters/mochi/back.svg",
  45628. extra: 1335/1119,
  45629. bottom: 39/1374
  45630. }
  45631. },
  45632. bird: {
  45633. height: math.unit(2 + 8/12, "feet"),
  45634. weight: math.unit(15, "lb"),
  45635. name: "Bird",
  45636. image: {
  45637. source: "./media/characters/mochi/bird.svg",
  45638. extra: 1251/1113,
  45639. bottom: 178/1429
  45640. }
  45641. },
  45642. kaiju: {
  45643. height: math.unit(154, "feet"),
  45644. weight: math.unit(1e7, "lb"),
  45645. name: "Kaiju",
  45646. image: {
  45647. source: "./media/characters/mochi/kaiju.svg",
  45648. extra: 460/324,
  45649. bottom: 40/500
  45650. }
  45651. },
  45652. head: {
  45653. height: math.unit(1.21, "feet"),
  45654. name: "Head",
  45655. image: {
  45656. source: "./media/characters/mochi/head.svg"
  45657. }
  45658. },
  45659. alternateTail: {
  45660. height: math.unit(2 + 8/12, "feet"),
  45661. weight: math.unit(45, "lb"),
  45662. name: "Alternate Tail",
  45663. image: {
  45664. source: "./media/characters/mochi/alternate-tail.svg",
  45665. extra: 139/76,
  45666. bottom: 45/184
  45667. }
  45668. },
  45669. },
  45670. [
  45671. {
  45672. name: "Micro",
  45673. height: math.unit(2, "inches")
  45674. },
  45675. {
  45676. name: "Normal",
  45677. height: math.unit(2 + 8/12, "feet"),
  45678. default: true
  45679. },
  45680. {
  45681. name: "Macro",
  45682. height: math.unit(106, "feet")
  45683. },
  45684. ]
  45685. ))
  45686. characterMakers.push(() => makeCharacter(
  45687. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45688. {
  45689. front: {
  45690. height: math.unit(5.67, "feet"),
  45691. weight: math.unit(135, "lb"),
  45692. name: "Front",
  45693. image: {
  45694. source: "./media/characters/sarel/front.svg",
  45695. extra: 865/788,
  45696. bottom: 97/962
  45697. }
  45698. },
  45699. back: {
  45700. height: math.unit(5.67, "feet"),
  45701. weight: math.unit(135, "lb"),
  45702. name: "Back",
  45703. image: {
  45704. source: "./media/characters/sarel/back.svg",
  45705. extra: 857/777,
  45706. bottom: 32/889
  45707. }
  45708. },
  45709. chozoan: {
  45710. height: math.unit(5.67, "feet"),
  45711. weight: math.unit(135, "lb"),
  45712. name: "Chozoan",
  45713. image: {
  45714. source: "./media/characters/sarel/chozoan.svg",
  45715. extra: 865/788,
  45716. bottom: 97/962
  45717. }
  45718. },
  45719. current: {
  45720. height: math.unit(5.67, "feet"),
  45721. weight: math.unit(135, "lb"),
  45722. name: "Current",
  45723. image: {
  45724. source: "./media/characters/sarel/current.svg",
  45725. extra: 865/788,
  45726. bottom: 97/962
  45727. }
  45728. },
  45729. head: {
  45730. height: math.unit(1.77, "feet"),
  45731. name: "Head",
  45732. image: {
  45733. source: "./media/characters/sarel/head.svg"
  45734. }
  45735. },
  45736. claws: {
  45737. height: math.unit(1.8, "feet"),
  45738. name: "Claws",
  45739. image: {
  45740. source: "./media/characters/sarel/claws.svg"
  45741. }
  45742. },
  45743. clawsAlt: {
  45744. height: math.unit(1.8, "feet"),
  45745. name: "Claws-alt",
  45746. image: {
  45747. source: "./media/characters/sarel/claws-alt.svg"
  45748. }
  45749. },
  45750. },
  45751. [
  45752. {
  45753. name: "Normal",
  45754. height: math.unit(5.67, "feet"),
  45755. default: true
  45756. },
  45757. ]
  45758. ))
  45759. characterMakers.push(() => makeCharacter(
  45760. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45761. {
  45762. front: {
  45763. height: math.unit(5500, "feet"),
  45764. name: "Front",
  45765. image: {
  45766. source: "./media/characters/alyonia/front.svg",
  45767. extra: 1200/1135,
  45768. bottom: 29/1229
  45769. }
  45770. },
  45771. back: {
  45772. height: math.unit(5500, "feet"),
  45773. name: "Back",
  45774. image: {
  45775. source: "./media/characters/alyonia/back.svg",
  45776. extra: 1205/1138,
  45777. bottom: 10/1215
  45778. }
  45779. },
  45780. },
  45781. [
  45782. {
  45783. name: "Small",
  45784. height: math.unit(10, "feet")
  45785. },
  45786. {
  45787. name: "Macro",
  45788. height: math.unit(500, "feet")
  45789. },
  45790. {
  45791. name: "Mega Macro",
  45792. height: math.unit(5500, "feet"),
  45793. default: true
  45794. },
  45795. {
  45796. name: "Mega Macro+",
  45797. height: math.unit(500000, "feet")
  45798. },
  45799. {
  45800. name: "Giga Macro",
  45801. height: math.unit(3000, "miles")
  45802. },
  45803. {
  45804. name: "Tera Macro",
  45805. height: math.unit(2.8e6, "miles")
  45806. },
  45807. {
  45808. name: "Galactic",
  45809. height: math.unit(120000, "lightyears")
  45810. },
  45811. ]
  45812. ))
  45813. characterMakers.push(() => makeCharacter(
  45814. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45815. {
  45816. werewolf: {
  45817. height: math.unit(8, "feet"),
  45818. weight: math.unit(425, "lb"),
  45819. name: "Werewolf",
  45820. image: {
  45821. source: "./media/characters/autumn/werewolf.svg",
  45822. extra: 2154/2031,
  45823. bottom: 160/2314
  45824. }
  45825. },
  45826. human: {
  45827. height: math.unit(5 + 8/12, "feet"),
  45828. weight: math.unit(150, "lb"),
  45829. name: "Human",
  45830. image: {
  45831. source: "./media/characters/autumn/human.svg",
  45832. extra: 1200/1149,
  45833. bottom: 30/1230
  45834. }
  45835. },
  45836. },
  45837. [
  45838. {
  45839. name: "Normal",
  45840. height: math.unit(8, "feet"),
  45841. default: true
  45842. },
  45843. ]
  45844. ))
  45845. characterMakers.push(() => makeCharacter(
  45846. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45847. {
  45848. front: {
  45849. height: math.unit(8 + 5/12, "feet"),
  45850. weight: math.unit(825, "lb"),
  45851. name: "Front",
  45852. image: {
  45853. source: "./media/characters/cobalt-charizard/front.svg",
  45854. extra: 1268/1155,
  45855. bottom: 122/1390
  45856. }
  45857. },
  45858. side: {
  45859. height: math.unit(8 + 5/12, "feet"),
  45860. weight: math.unit(825, "lb"),
  45861. name: "Side",
  45862. image: {
  45863. source: "./media/characters/cobalt-charizard/side.svg",
  45864. extra: 1348/1257,
  45865. bottom: 58/1406
  45866. }
  45867. },
  45868. gMax: {
  45869. height: math.unit(134 + 11/12, "feet"),
  45870. name: "G-Max",
  45871. image: {
  45872. source: "./media/characters/cobalt-charizard/g-max.svg",
  45873. extra: 1835/1541,
  45874. bottom: 151/1986
  45875. }
  45876. },
  45877. },
  45878. [
  45879. {
  45880. name: "Normal",
  45881. height: math.unit(8 + 5/12, "feet"),
  45882. default: true
  45883. },
  45884. ]
  45885. ))
  45886. characterMakers.push(() => makeCharacter(
  45887. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45888. {
  45889. front: {
  45890. height: math.unit(6 + 3/12, "feet"),
  45891. weight: math.unit(210, "lb"),
  45892. name: "Front",
  45893. image: {
  45894. source: "./media/characters/stella/front.svg",
  45895. extra: 3549/3335,
  45896. bottom: 51/3600
  45897. }
  45898. },
  45899. },
  45900. [
  45901. {
  45902. name: "Normal",
  45903. height: math.unit(6 + 3/12, "feet"),
  45904. default: true
  45905. },
  45906. ]
  45907. ))
  45908. characterMakers.push(() => makeCharacter(
  45909. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45910. {
  45911. front: {
  45912. height: math.unit(5, "feet"),
  45913. weight: math.unit(90, "lb"),
  45914. name: "Front",
  45915. image: {
  45916. source: "./media/characters/riley-bishop/front.svg",
  45917. extra: 1450/1428,
  45918. bottom: 152/1602
  45919. }
  45920. },
  45921. },
  45922. [
  45923. {
  45924. name: "Normal",
  45925. height: math.unit(5, "feet"),
  45926. default: true
  45927. },
  45928. ]
  45929. ))
  45930. characterMakers.push(() => makeCharacter(
  45931. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45932. {
  45933. side: {
  45934. height: math.unit(8 + 2/12, "feet"),
  45935. weight: math.unit(500, "kg"),
  45936. name: "Side",
  45937. image: {
  45938. source: "./media/characters/theo-arcanine/side.svg",
  45939. extra: 1342/1074,
  45940. bottom: 111/1453
  45941. }
  45942. },
  45943. },
  45944. [
  45945. {
  45946. name: "Normal",
  45947. height: math.unit(8 + 2/12, "feet"),
  45948. default: true
  45949. },
  45950. ]
  45951. ))
  45952. characterMakers.push(() => makeCharacter(
  45953. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45954. {
  45955. front: {
  45956. height: math.unit(4, "feet"),
  45957. name: "Front",
  45958. image: {
  45959. source: "./media/characters/kali/front.svg",
  45960. extra: 1074/867,
  45961. bottom: 34/1108
  45962. }
  45963. },
  45964. back: {
  45965. height: math.unit(4, "feet"),
  45966. name: "Back",
  45967. image: {
  45968. source: "./media/characters/kali/back.svg",
  45969. extra: 1068/863,
  45970. bottom: 26/1094
  45971. }
  45972. },
  45973. frontAlt: {
  45974. height: math.unit(4, "feet"),
  45975. name: "Front (Alt)",
  45976. image: {
  45977. source: "./media/characters/kali/front-alt.svg",
  45978. extra: 1921/1357,
  45979. bottom: 70/1991
  45980. }
  45981. },
  45982. },
  45983. [
  45984. {
  45985. name: "Normal",
  45986. height: math.unit(4, "feet"),
  45987. default: true
  45988. },
  45989. {
  45990. name: "Big'vali",
  45991. height: math.unit(11, "feet")
  45992. },
  45993. {
  45994. name: "Macro",
  45995. height: math.unit(32, "meters")
  45996. },
  45997. {
  45998. name: "Macro+",
  45999. height: math.unit(150, "meters")
  46000. },
  46001. {
  46002. name: "Megamacro",
  46003. height: math.unit(7500, "meters")
  46004. },
  46005. {
  46006. name: "Megamacro+",
  46007. height: math.unit(80, "kilometers")
  46008. },
  46009. ]
  46010. ))
  46011. characterMakers.push(() => makeCharacter(
  46012. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46013. {
  46014. side: {
  46015. height: math.unit(5 + 11/12, "feet"),
  46016. weight: math.unit(236, "lb"),
  46017. name: "Side",
  46018. image: {
  46019. source: "./media/characters/gapp/side.svg",
  46020. extra: 775/340,
  46021. bottom: 58/833
  46022. }
  46023. },
  46024. mouth: {
  46025. height: math.unit(2.98, "feet"),
  46026. name: "Mouth",
  46027. image: {
  46028. source: "./media/characters/gapp/mouth.svg"
  46029. }
  46030. },
  46031. },
  46032. [
  46033. {
  46034. name: "Normal",
  46035. height: math.unit(5 + 1/12, "feet"),
  46036. default: true
  46037. },
  46038. ]
  46039. ))
  46040. characterMakers.push(() => makeCharacter(
  46041. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46042. {
  46043. front: {
  46044. height: math.unit(6, "feet"),
  46045. name: "Front",
  46046. image: {
  46047. source: "./media/characters/persephone/front.svg",
  46048. extra: 1895/1717,
  46049. bottom: 96/1991
  46050. }
  46051. },
  46052. back: {
  46053. height: math.unit(6, "feet"),
  46054. name: "Back",
  46055. image: {
  46056. source: "./media/characters/persephone/back.svg",
  46057. extra: 1868/1679,
  46058. bottom: 26/1894
  46059. }
  46060. },
  46061. casual: {
  46062. height: math.unit(6, "feet"),
  46063. name: "Casual",
  46064. image: {
  46065. source: "./media/characters/persephone/casual.svg",
  46066. extra: 1713/1541,
  46067. bottom: 76/1789
  46068. }
  46069. },
  46070. gaming: {
  46071. height: math.unit(3.55, "feet"),
  46072. name: "Gaming",
  46073. image: {
  46074. source: "./media/characters/persephone/gaming.svg",
  46075. extra: 1242/1038,
  46076. bottom: 66/1308
  46077. }
  46078. },
  46079. head: {
  46080. height: math.unit(2.15, "feet"),
  46081. name: "😐",
  46082. image: {
  46083. source: "./media/characters/persephone/head.svg"
  46084. }
  46085. },
  46086. talking: {
  46087. height: math.unit(2.5, "feet"),
  46088. name: "💬",
  46089. image: {
  46090. source: "./media/characters/persephone/talking.svg"
  46091. }
  46092. },
  46093. hmm: {
  46094. height: math.unit(2.28, "feet"),
  46095. name: "🤨",
  46096. image: {
  46097. source: "./media/characters/persephone/hmm.svg"
  46098. }
  46099. },
  46100. },
  46101. [
  46102. {
  46103. name: "Human Size",
  46104. height: math.unit(6, "feet")
  46105. },
  46106. {
  46107. name: "Big Steppy",
  46108. height: math.unit(600, "meters"),
  46109. default: true
  46110. },
  46111. {
  46112. name: "Galaxy Brain",
  46113. height: math.unit(1, "zettameter")
  46114. },
  46115. ]
  46116. ))
  46117. characterMakers.push(() => makeCharacter(
  46118. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46119. {
  46120. front: {
  46121. height: math.unit(1.85, "meters"),
  46122. name: "Front",
  46123. image: {
  46124. source: "./media/characters/riley-foxthing/front.svg",
  46125. extra: 1495/1354,
  46126. bottom: 122/1617
  46127. }
  46128. },
  46129. frontAlt: {
  46130. height: math.unit(1.85, "meters"),
  46131. name: "Front (Alt)",
  46132. image: {
  46133. source: "./media/characters/riley-foxthing/front-alt.svg",
  46134. extra: 1572/1389,
  46135. bottom: 116/1688
  46136. }
  46137. },
  46138. },
  46139. [
  46140. {
  46141. name: "Normal Sized",
  46142. height: math.unit(1.85, "meters"),
  46143. default: true
  46144. },
  46145. {
  46146. name: "Quite Sizable",
  46147. height: math.unit(5, "meters")
  46148. },
  46149. {
  46150. name: "Rather Large",
  46151. height: math.unit(20, "meters")
  46152. },
  46153. {
  46154. name: "Macro",
  46155. height: math.unit(450, "meters")
  46156. },
  46157. {
  46158. name: "Giga",
  46159. height: math.unit(5, "km")
  46160. },
  46161. ]
  46162. ))
  46163. characterMakers.push(() => makeCharacter(
  46164. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46165. {
  46166. front: {
  46167. height: math.unit(6, "feet"),
  46168. weight: math.unit(200, "lb"),
  46169. name: "Front",
  46170. image: {
  46171. source: "./media/characters/blizzard/front.svg",
  46172. extra: 1136/990,
  46173. bottom: 136/1272
  46174. }
  46175. },
  46176. back: {
  46177. height: math.unit(6, "feet"),
  46178. weight: math.unit(200, "lb"),
  46179. name: "Back",
  46180. image: {
  46181. source: "./media/characters/blizzard/back.svg",
  46182. extra: 1175/1034,
  46183. bottom: 97/1272
  46184. }
  46185. },
  46186. sitting: {
  46187. height: math.unit(3.725, "feet"),
  46188. weight: math.unit(200, "lb"),
  46189. name: "Sitting",
  46190. image: {
  46191. source: "./media/characters/blizzard/sitting.svg",
  46192. extra: 581/485,
  46193. bottom: 90/671
  46194. }
  46195. },
  46196. frontWizard: {
  46197. height: math.unit(7.9, "feet"),
  46198. weight: math.unit(200, "lb"),
  46199. name: "Front (Wizard)",
  46200. image: {
  46201. source: "./media/characters/blizzard/front-wizard.svg"
  46202. }
  46203. },
  46204. backWizard: {
  46205. height: math.unit(7.9, "feet"),
  46206. weight: math.unit(200, "lb"),
  46207. name: "Back (Wizard)",
  46208. image: {
  46209. source: "./media/characters/blizzard/back-wizard.svg"
  46210. }
  46211. },
  46212. frontNsfw: {
  46213. height: math.unit(6, "feet"),
  46214. weight: math.unit(200, "lb"),
  46215. name: "Front (NSFW)",
  46216. image: {
  46217. source: "./media/characters/blizzard/front-nsfw.svg",
  46218. extra: 1136/990,
  46219. bottom: 136/1272
  46220. }
  46221. },
  46222. backNsfw: {
  46223. height: math.unit(6, "feet"),
  46224. weight: math.unit(200, "lb"),
  46225. name: "Back (NSFW)",
  46226. image: {
  46227. source: "./media/characters/blizzard/back-nsfw.svg",
  46228. extra: 1175/1034,
  46229. bottom: 97/1272
  46230. }
  46231. },
  46232. sittingNsfw: {
  46233. height: math.unit(3.725, "feet"),
  46234. weight: math.unit(200, "lb"),
  46235. name: "Sitting (NSFW)",
  46236. image: {
  46237. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46238. extra: 581/485,
  46239. bottom: 90/671
  46240. }
  46241. },
  46242. wizardFrontNsfw: {
  46243. height: math.unit(7.9, "feet"),
  46244. weight: math.unit(200, "lb"),
  46245. name: "Wizard (Front, NSFW)",
  46246. image: {
  46247. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46248. }
  46249. },
  46250. },
  46251. [
  46252. {
  46253. name: "Normal",
  46254. height: math.unit(6, "feet"),
  46255. default: true
  46256. },
  46257. ]
  46258. ))
  46259. characterMakers.push(() => makeCharacter(
  46260. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46261. {
  46262. front: {
  46263. height: math.unit(5 + 2/12, "feet"),
  46264. name: "Front",
  46265. image: {
  46266. source: "./media/characters/lumi/front.svg",
  46267. extra: 1328/1268,
  46268. bottom: 103/1431
  46269. }
  46270. },
  46271. back: {
  46272. height: math.unit(5 + 2/12, "feet"),
  46273. name: "Back",
  46274. image: {
  46275. source: "./media/characters/lumi/back.svg",
  46276. extra: 1381/1327,
  46277. bottom: 43/1424
  46278. }
  46279. },
  46280. },
  46281. [
  46282. {
  46283. name: "Normal",
  46284. height: math.unit(5 + 2/12, "feet"),
  46285. default: true
  46286. },
  46287. ]
  46288. ))
  46289. characterMakers.push(() => makeCharacter(
  46290. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46291. {
  46292. front: {
  46293. height: math.unit(5 + 9/12, "feet"),
  46294. name: "Front",
  46295. image: {
  46296. source: "./media/characters/aliya-cotton/front.svg",
  46297. extra: 577/564,
  46298. bottom: 29/606
  46299. }
  46300. },
  46301. },
  46302. [
  46303. {
  46304. name: "Normal",
  46305. height: math.unit(5 + 9/12, "feet"),
  46306. default: true
  46307. },
  46308. ]
  46309. ))
  46310. characterMakers.push(() => makeCharacter(
  46311. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46312. {
  46313. front: {
  46314. height: math.unit(2.7, "meters"),
  46315. weight: math.unit(25000, "lb"),
  46316. name: "Front",
  46317. image: {
  46318. source: "./media/characters/noah-luxray/front.svg",
  46319. extra: 1644/825,
  46320. bottom: 339/1983
  46321. }
  46322. },
  46323. side: {
  46324. height: math.unit(2.97, "meters"),
  46325. weight: math.unit(25000, "lb"),
  46326. name: "Side",
  46327. image: {
  46328. source: "./media/characters/noah-luxray/side.svg",
  46329. extra: 1319/650,
  46330. bottom: 163/1482
  46331. }
  46332. },
  46333. dick: {
  46334. height: math.unit(7.4, "feet"),
  46335. weight: math.unit(2500, "lb"),
  46336. name: "Dick",
  46337. image: {
  46338. source: "./media/characters/noah-luxray/dick.svg"
  46339. }
  46340. },
  46341. dickAlt: {
  46342. height: math.unit(10.83, "feet"),
  46343. weight: math.unit(2500, "lb"),
  46344. name: "Dick-alt",
  46345. image: {
  46346. source: "./media/characters/noah-luxray/dick-alt.svg"
  46347. }
  46348. },
  46349. },
  46350. [
  46351. {
  46352. name: "BIG",
  46353. height: math.unit(2.7, "meters"),
  46354. default: true
  46355. },
  46356. ]
  46357. ))
  46358. characterMakers.push(() => makeCharacter(
  46359. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46360. {
  46361. standing: {
  46362. height: math.unit(183, "cm"),
  46363. weight: math.unit(68, "kg"),
  46364. name: "Standing",
  46365. image: {
  46366. source: "./media/characters/arion/standing.svg",
  46367. extra: 1869/1807,
  46368. bottom: 93/1962
  46369. }
  46370. },
  46371. reclining: {
  46372. height: math.unit(70.5, "cm"),
  46373. weight: math.unit(68, "lb"),
  46374. name: "Reclining",
  46375. image: {
  46376. source: "./media/characters/arion/reclining.svg",
  46377. extra: 937/870,
  46378. bottom: 63/1000
  46379. }
  46380. },
  46381. },
  46382. [
  46383. {
  46384. name: "Colossus Size, Low",
  46385. height: math.unit(33, "meters"),
  46386. default: true
  46387. },
  46388. {
  46389. name: "Colossus Size, Mid",
  46390. height: math.unit(52, "meters")
  46391. },
  46392. {
  46393. name: "Colossus Size, High",
  46394. height: math.unit(60, "meters")
  46395. },
  46396. {
  46397. name: "Titan Size, Low",
  46398. height: math.unit(91, "meters"),
  46399. },
  46400. {
  46401. name: "Titan Size, Mid",
  46402. height: math.unit(122, "meters")
  46403. },
  46404. {
  46405. name: "Titan Size, High",
  46406. height: math.unit(162, "meters")
  46407. },
  46408. ]
  46409. ))
  46410. characterMakers.push(() => makeCharacter(
  46411. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46412. {
  46413. front: {
  46414. height: math.unit(53, "meters"),
  46415. name: "Front",
  46416. image: {
  46417. source: "./media/characters/stellar-marbey/front.svg",
  46418. extra: 1913/1805,
  46419. bottom: 92/2005
  46420. }
  46421. },
  46422. back: {
  46423. height: math.unit(53, "meters"),
  46424. name: "Back",
  46425. image: {
  46426. source: "./media/characters/stellar-marbey/back.svg",
  46427. extra: 1960/1851,
  46428. bottom: 28/1988
  46429. }
  46430. },
  46431. mouth: {
  46432. height: math.unit(3.5, "meters"),
  46433. name: "Mouth",
  46434. image: {
  46435. source: "./media/characters/stellar-marbey/mouth.svg"
  46436. }
  46437. },
  46438. },
  46439. [
  46440. {
  46441. name: "Macro",
  46442. height: math.unit(53, "meters"),
  46443. default: true
  46444. },
  46445. ]
  46446. ))
  46447. characterMakers.push(() => makeCharacter(
  46448. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46449. {
  46450. front: {
  46451. height: math.unit(8 + 1/12, "feet"),
  46452. weight: math.unit(233, "lb"),
  46453. name: "Front",
  46454. image: {
  46455. source: "./media/characters/matsu/front.svg",
  46456. extra: 832/772,
  46457. bottom: 40/872
  46458. }
  46459. },
  46460. back: {
  46461. height: math.unit(8 + 1/12, "feet"),
  46462. weight: math.unit(233, "lb"),
  46463. name: "Back",
  46464. image: {
  46465. source: "./media/characters/matsu/back.svg",
  46466. extra: 839/780,
  46467. bottom: 47/886
  46468. }
  46469. },
  46470. },
  46471. [
  46472. {
  46473. name: "Normal",
  46474. height: math.unit(8 + 1/12, "feet"),
  46475. default: true
  46476. },
  46477. ]
  46478. ))
  46479. characterMakers.push(() => makeCharacter(
  46480. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46481. {
  46482. front: {
  46483. height: math.unit(4, "feet"),
  46484. weight: math.unit(148, "lb"),
  46485. name: "Front",
  46486. image: {
  46487. source: "./media/characters/thiz/front.svg",
  46488. extra: 1913/1748,
  46489. bottom: 62/1975
  46490. }
  46491. },
  46492. },
  46493. [
  46494. {
  46495. name: "Normal",
  46496. height: math.unit(4, "feet"),
  46497. default: true
  46498. },
  46499. ]
  46500. ))
  46501. characterMakers.push(() => makeCharacter(
  46502. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46503. {
  46504. front: {
  46505. height: math.unit(7 + 6/12, "feet"),
  46506. weight: math.unit(267, "lb"),
  46507. name: "Front",
  46508. image: {
  46509. source: "./media/characters/marcel/front.svg",
  46510. extra: 1221/1096,
  46511. bottom: 76/1297
  46512. }
  46513. },
  46514. },
  46515. [
  46516. {
  46517. name: "Normal",
  46518. height: math.unit(7 + 6/12, "feet"),
  46519. default: true
  46520. },
  46521. ]
  46522. ))
  46523. characterMakers.push(() => makeCharacter(
  46524. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46525. {
  46526. side: {
  46527. height: math.unit(42, "meters"),
  46528. name: "Side",
  46529. image: {
  46530. source: "./media/characters/flake/side.svg",
  46531. extra: 1525/1306,
  46532. bottom: 209/1734
  46533. }
  46534. },
  46535. },
  46536. [
  46537. {
  46538. name: "Normal",
  46539. height: math.unit(42, "meters"),
  46540. default: true
  46541. },
  46542. ]
  46543. ))
  46544. characterMakers.push(() => makeCharacter(
  46545. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46546. {
  46547. dressed: {
  46548. height: math.unit(6 + 4/12, "feet"),
  46549. weight: math.unit(520, "lb"),
  46550. name: "Dressed",
  46551. image: {
  46552. source: "./media/characters/someonne/dressed.svg",
  46553. extra: 1020/1010,
  46554. bottom: 178/1198
  46555. }
  46556. },
  46557. undressed: {
  46558. height: math.unit(6 + 4/12, "feet"),
  46559. weight: math.unit(520, "lb"),
  46560. name: "Undressed",
  46561. image: {
  46562. source: "./media/characters/someonne/undressed.svg",
  46563. extra: 1019/1014,
  46564. bottom: 169/1188
  46565. }
  46566. },
  46567. },
  46568. [
  46569. {
  46570. name: "Normal",
  46571. height: math.unit(6 + 4/12, "feet"),
  46572. default: true
  46573. },
  46574. ]
  46575. ))
  46576. characterMakers.push(() => makeCharacter(
  46577. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46578. {
  46579. front: {
  46580. height: math.unit(3, "feet"),
  46581. weight: math.unit(30, "lb"),
  46582. name: "Front",
  46583. image: {
  46584. source: "./media/characters/till/front.svg",
  46585. extra: 892/823,
  46586. bottom: 55/947
  46587. }
  46588. },
  46589. },
  46590. [
  46591. {
  46592. name: "Normal",
  46593. height: math.unit(3, "feet"),
  46594. default: true
  46595. },
  46596. ]
  46597. ))
  46598. characterMakers.push(() => makeCharacter(
  46599. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46600. {
  46601. front: {
  46602. height: math.unit(9 + 8/12, "feet"),
  46603. weight: math.unit(800, "lb"),
  46604. name: "Front",
  46605. image: {
  46606. source: "./media/characters/sydney-heki/front.svg",
  46607. extra: 1360/1300,
  46608. bottom: 22/1382
  46609. }
  46610. },
  46611. back: {
  46612. height: math.unit(9 + 8/12, "feet"),
  46613. weight: math.unit(800, "lb"),
  46614. name: "Back",
  46615. image: {
  46616. source: "./media/characters/sydney-heki/back.svg",
  46617. extra: 1356/1293,
  46618. bottom: 12/1368
  46619. }
  46620. },
  46621. frontDressed: {
  46622. height: math.unit(9 + 8/12, "feet"),
  46623. weight: math.unit(800, "lb"),
  46624. name: "Front-dressed",
  46625. image: {
  46626. source: "./media/characters/sydney-heki/front-dressed.svg",
  46627. extra: 1360/1300,
  46628. bottom: 22/1382
  46629. }
  46630. },
  46631. },
  46632. [
  46633. {
  46634. name: "Normal",
  46635. height: math.unit(9 + 8/12, "feet"),
  46636. default: true
  46637. },
  46638. {
  46639. name: "Macro",
  46640. height: math.unit(500, "feet")
  46641. },
  46642. {
  46643. name: "Megamacro",
  46644. height: math.unit(3.6, "miles")
  46645. },
  46646. ]
  46647. ))
  46648. characterMakers.push(() => makeCharacter(
  46649. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46650. {
  46651. front: {
  46652. height: math.unit(200, "cm"),
  46653. weight: math.unit(250, "lb"),
  46654. name: "Front",
  46655. image: {
  46656. source: "./media/characters/fowler-karlsson/front.svg",
  46657. extra: 897/845,
  46658. bottom: 123/1020
  46659. }
  46660. },
  46661. back: {
  46662. height: math.unit(200, "cm"),
  46663. weight: math.unit(250, "lb"),
  46664. name: "Back",
  46665. image: {
  46666. source: "./media/characters/fowler-karlsson/back.svg",
  46667. extra: 999/944,
  46668. bottom: 26/1025
  46669. }
  46670. },
  46671. dick: {
  46672. height: math.unit(1.92, "feet"),
  46673. weight: math.unit(150, "lb"),
  46674. name: "Dick",
  46675. image: {
  46676. source: "./media/characters/fowler-karlsson/dick.svg"
  46677. }
  46678. },
  46679. },
  46680. [
  46681. {
  46682. name: "Normal",
  46683. height: math.unit(200, "cm"),
  46684. default: true
  46685. },
  46686. {
  46687. name: "Smaller Macro",
  46688. height: math.unit(90, "m")
  46689. },
  46690. {
  46691. name: "Macro",
  46692. height: math.unit(150, "m")
  46693. },
  46694. {
  46695. name: "Bigger Macro",
  46696. height: math.unit(300, "m")
  46697. },
  46698. ]
  46699. ))
  46700. characterMakers.push(() => makeCharacter(
  46701. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46702. {
  46703. side: {
  46704. height: math.unit(8 + 2/12, "feet"),
  46705. weight: math.unit(1, "tonne"),
  46706. name: "Side",
  46707. image: {
  46708. source: "./media/characters/rylide/side.svg",
  46709. extra: 1318/1034,
  46710. bottom: 106/1424
  46711. }
  46712. },
  46713. sitting: {
  46714. height: math.unit(303, "cm"),
  46715. weight: math.unit(1, "tonne"),
  46716. name: "Sitting",
  46717. image: {
  46718. source: "./media/characters/rylide/sitting.svg",
  46719. extra: 1303/1103,
  46720. bottom: 36/1339
  46721. }
  46722. },
  46723. },
  46724. [
  46725. {
  46726. name: "Normal",
  46727. height: math.unit(8 + 2/12, "feet"),
  46728. default: true
  46729. },
  46730. ]
  46731. ))
  46732. characterMakers.push(() => makeCharacter(
  46733. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46734. {
  46735. front: {
  46736. height: math.unit(5 + 10/12, "feet"),
  46737. weight: math.unit(160, "lb"),
  46738. name: "Front",
  46739. image: {
  46740. source: "./media/characters/pudask/front.svg",
  46741. extra: 1616/1590,
  46742. bottom: 161/1777
  46743. }
  46744. },
  46745. },
  46746. [
  46747. {
  46748. name: "Ferret Height",
  46749. height: math.unit(2 + 5/12, "feet")
  46750. },
  46751. {
  46752. name: "Canon Height",
  46753. height: math.unit(5 + 10/12, "feet"),
  46754. default: true
  46755. },
  46756. ]
  46757. ))
  46758. characterMakers.push(() => makeCharacter(
  46759. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46760. {
  46761. front: {
  46762. height: math.unit(3 + 6/12, "feet"),
  46763. weight: math.unit(60, "lb"),
  46764. name: "Front",
  46765. image: {
  46766. source: "./media/characters/ramita/front.svg",
  46767. extra: 1402/1232,
  46768. bottom: 62/1464
  46769. }
  46770. },
  46771. dressed: {
  46772. height: math.unit(3 + 6/12, "feet"),
  46773. weight: math.unit(60, "lb"),
  46774. name: "Dressed",
  46775. image: {
  46776. source: "./media/characters/ramita/dressed.svg",
  46777. extra: 1534/1249,
  46778. bottom: 50/1584
  46779. }
  46780. },
  46781. },
  46782. [
  46783. {
  46784. name: "Normal",
  46785. height: math.unit(3 + 6/12, "feet"),
  46786. default: true
  46787. },
  46788. ]
  46789. ))
  46790. characterMakers.push(() => makeCharacter(
  46791. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46792. {
  46793. front: {
  46794. height: math.unit(8, "feet"),
  46795. name: "Front",
  46796. image: {
  46797. source: "./media/characters/ark/front.svg",
  46798. extra: 772/693,
  46799. bottom: 45/817
  46800. }
  46801. },
  46802. },
  46803. [
  46804. {
  46805. name: "Normal",
  46806. height: math.unit(8, "feet"),
  46807. default: true
  46808. },
  46809. ]
  46810. ))
  46811. characterMakers.push(() => makeCharacter(
  46812. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46813. {
  46814. front: {
  46815. height: math.unit(6, "feet"),
  46816. weight: math.unit(250, "lb"),
  46817. volume: math.unit(5/8, "gallons"),
  46818. name: "Front",
  46819. image: {
  46820. source: "./media/characters/ludwig-horn/front.svg",
  46821. extra: 1782/1635,
  46822. bottom: 96/1878
  46823. }
  46824. },
  46825. back: {
  46826. height: math.unit(6, "feet"),
  46827. weight: math.unit(250, "lb"),
  46828. volume: math.unit(5/8, "gallons"),
  46829. name: "Back",
  46830. image: {
  46831. source: "./media/characters/ludwig-horn/back.svg",
  46832. extra: 1874/1729,
  46833. bottom: 27/1901
  46834. }
  46835. },
  46836. dick: {
  46837. height: math.unit(1.05, "feet"),
  46838. weight: math.unit(15, "lb"),
  46839. volume: math.unit(5/8, "gallons"),
  46840. name: "Dick",
  46841. image: {
  46842. source: "./media/characters/ludwig-horn/dick.svg"
  46843. }
  46844. },
  46845. },
  46846. [
  46847. {
  46848. name: "Small",
  46849. height: math.unit(6, "feet")
  46850. },
  46851. {
  46852. name: "Typical",
  46853. height: math.unit(12, "feet"),
  46854. default: true
  46855. },
  46856. {
  46857. name: "Building",
  46858. height: math.unit(80, "feet")
  46859. },
  46860. {
  46861. name: "Town",
  46862. height: math.unit(800, "feet")
  46863. },
  46864. {
  46865. name: "Kingdom",
  46866. height: math.unit(80000, "feet")
  46867. },
  46868. {
  46869. name: "Planet",
  46870. height: math.unit(8000000, "feet")
  46871. },
  46872. {
  46873. name: "Universe",
  46874. height: math.unit(8000000000, "feet")
  46875. },
  46876. {
  46877. name: "Transcended",
  46878. height: math.unit(8e27, "feet")
  46879. },
  46880. ]
  46881. ))
  46882. characterMakers.push(() => makeCharacter(
  46883. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46884. {
  46885. front: {
  46886. height: math.unit(5, "feet"),
  46887. weight: math.unit(50, "kg"),
  46888. name: "Front",
  46889. image: {
  46890. source: "./media/characters/biot-avery/front.svg",
  46891. extra: 1295/1232,
  46892. bottom: 86/1381
  46893. }
  46894. },
  46895. },
  46896. [
  46897. {
  46898. name: "Normal",
  46899. height: math.unit(5, "feet"),
  46900. default: true
  46901. },
  46902. ]
  46903. ))
  46904. characterMakers.push(() => makeCharacter(
  46905. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46906. {
  46907. front: {
  46908. height: math.unit(6, "feet"),
  46909. name: "Front",
  46910. image: {
  46911. source: "./media/characters/kitsune-kiro/front.svg",
  46912. extra: 1270/1158,
  46913. bottom: 42/1312
  46914. }
  46915. },
  46916. frontAlt: {
  46917. height: math.unit(6, "feet"),
  46918. name: "Front-alt",
  46919. image: {
  46920. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46921. extra: 1130/1081,
  46922. bottom: 36/1166
  46923. }
  46924. },
  46925. },
  46926. [
  46927. {
  46928. name: "Smol",
  46929. height: math.unit(3, "feet")
  46930. },
  46931. {
  46932. name: "Normal",
  46933. height: math.unit(6, "feet"),
  46934. default: true
  46935. },
  46936. ]
  46937. ))
  46938. characterMakers.push(() => makeCharacter(
  46939. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46940. {
  46941. front: {
  46942. height: math.unit(6, "feet"),
  46943. weight: math.unit(125, "lb"),
  46944. name: "Front",
  46945. image: {
  46946. source: "./media/characters/jack-thatcher/front.svg",
  46947. extra: 1474/1370,
  46948. bottom: 26/1500
  46949. }
  46950. },
  46951. back: {
  46952. height: math.unit(6, "feet"),
  46953. weight: math.unit(125, "lb"),
  46954. name: "Back",
  46955. image: {
  46956. source: "./media/characters/jack-thatcher/back.svg",
  46957. extra: 1489/1384,
  46958. bottom: 18/1507
  46959. }
  46960. },
  46961. },
  46962. [
  46963. {
  46964. name: "Normal",
  46965. height: math.unit(6, "feet"),
  46966. default: true
  46967. },
  46968. {
  46969. name: "Macro",
  46970. height: math.unit(75, "feet")
  46971. },
  46972. {
  46973. name: "Macro-er",
  46974. height: math.unit(250, "feet")
  46975. },
  46976. ]
  46977. ))
  46978. characterMakers.push(() => makeCharacter(
  46979. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46980. {
  46981. front: {
  46982. height: math.unit(7, "feet"),
  46983. weight: math.unit(110, "kg"),
  46984. name: "Front",
  46985. image: {
  46986. source: "./media/characters/max-hyper/front.svg",
  46987. extra: 1969/1881,
  46988. bottom: 49/2018
  46989. }
  46990. },
  46991. },
  46992. [
  46993. {
  46994. name: "Normal",
  46995. height: math.unit(7, "feet"),
  46996. default: true
  46997. },
  46998. ]
  46999. ))
  47000. characterMakers.push(() => makeCharacter(
  47001. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47002. {
  47003. front: {
  47004. height: math.unit(5 + 5/12, "feet"),
  47005. weight: math.unit(160, "lb"),
  47006. name: "Front",
  47007. image: {
  47008. source: "./media/characters/spook/front.svg",
  47009. extra: 794/791,
  47010. bottom: 54/848
  47011. }
  47012. },
  47013. back: {
  47014. height: math.unit(5 + 5/12, "feet"),
  47015. weight: math.unit(160, "lb"),
  47016. name: "Back",
  47017. image: {
  47018. source: "./media/characters/spook/back.svg",
  47019. extra: 812/798,
  47020. bottom: 32/844
  47021. }
  47022. },
  47023. },
  47024. [
  47025. {
  47026. name: "Normal",
  47027. height: math.unit(5 + 5/12, "feet"),
  47028. default: true
  47029. },
  47030. ]
  47031. ))
  47032. characterMakers.push(() => makeCharacter(
  47033. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47034. {
  47035. front: {
  47036. height: math.unit(18, "feet"),
  47037. name: "Front",
  47038. image: {
  47039. source: "./media/characters/xeaduulix/front.svg",
  47040. extra: 1380/1166,
  47041. bottom: 110/1490
  47042. }
  47043. },
  47044. back: {
  47045. height: math.unit(18, "feet"),
  47046. name: "Back",
  47047. image: {
  47048. source: "./media/characters/xeaduulix/back.svg",
  47049. extra: 1592/1170,
  47050. bottom: 128/1720
  47051. }
  47052. },
  47053. frontNsfw: {
  47054. height: math.unit(18, "feet"),
  47055. name: "Front (NSFW)",
  47056. image: {
  47057. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47058. extra: 1380/1166,
  47059. bottom: 110/1490
  47060. }
  47061. },
  47062. backNsfw: {
  47063. height: math.unit(18, "feet"),
  47064. name: "Back (NSFW)",
  47065. image: {
  47066. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47067. extra: 1592/1170,
  47068. bottom: 128/1720
  47069. }
  47070. },
  47071. },
  47072. [
  47073. {
  47074. name: "Normal",
  47075. height: math.unit(18, "feet"),
  47076. default: true
  47077. },
  47078. ]
  47079. ))
  47080. characterMakers.push(() => makeCharacter(
  47081. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47082. {
  47083. spreadWings: {
  47084. height: math.unit(20, "feet"),
  47085. name: "Spread Wings",
  47086. image: {
  47087. source: "./media/characters/fledge/spread-wings.svg",
  47088. extra: 693/635,
  47089. bottom: 26/719
  47090. }
  47091. },
  47092. front: {
  47093. height: math.unit(20, "feet"),
  47094. name: "Front",
  47095. image: {
  47096. source: "./media/characters/fledge/front.svg",
  47097. extra: 684/637,
  47098. bottom: 18/702
  47099. }
  47100. },
  47101. frontAlt: {
  47102. height: math.unit(20, "feet"),
  47103. name: "Front (Alt)",
  47104. image: {
  47105. source: "./media/characters/fledge/front-alt.svg",
  47106. extra: 708/664,
  47107. bottom: 13/721
  47108. }
  47109. },
  47110. back: {
  47111. height: math.unit(20, "feet"),
  47112. name: "Back",
  47113. image: {
  47114. source: "./media/characters/fledge/back.svg",
  47115. extra: 718/634,
  47116. bottom: 22/740
  47117. }
  47118. },
  47119. head: {
  47120. height: math.unit(5.55, "feet"),
  47121. name: "Head",
  47122. image: {
  47123. source: "./media/characters/fledge/head.svg"
  47124. }
  47125. },
  47126. headAlt: {
  47127. height: math.unit(5.1, "feet"),
  47128. name: "Head (Alt)",
  47129. image: {
  47130. source: "./media/characters/fledge/head-alt.svg"
  47131. }
  47132. },
  47133. },
  47134. [
  47135. {
  47136. name: "Small",
  47137. height: math.unit(6 + 2/12, "feet")
  47138. },
  47139. {
  47140. name: "Big",
  47141. height: math.unit(20, "feet"),
  47142. default: true
  47143. },
  47144. {
  47145. name: "Giant",
  47146. height: math.unit(100, "feet")
  47147. },
  47148. {
  47149. name: "Macro",
  47150. height: math.unit(200, "feet")
  47151. },
  47152. ]
  47153. ))
  47154. characterMakers.push(() => makeCharacter(
  47155. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47156. {
  47157. front: {
  47158. height: math.unit(1, "meter"),
  47159. name: "Front",
  47160. image: {
  47161. source: "./media/characters/atlas-morenai/front.svg",
  47162. extra: 1275/1043,
  47163. bottom: 19/1294
  47164. }
  47165. },
  47166. back: {
  47167. height: math.unit(1, "meter"),
  47168. name: "Back",
  47169. image: {
  47170. source: "./media/characters/atlas-morenai/back.svg",
  47171. extra: 1141/1001,
  47172. bottom: 25/1166
  47173. }
  47174. },
  47175. },
  47176. [
  47177. {
  47178. name: "Normal",
  47179. height: math.unit(1, "meter"),
  47180. default: true
  47181. },
  47182. {
  47183. name: "Magic-Infused",
  47184. height: math.unit(5, "meters")
  47185. },
  47186. ]
  47187. ))
  47188. characterMakers.push(() => makeCharacter(
  47189. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47190. {
  47191. front: {
  47192. height: math.unit(5, "meters"),
  47193. name: "Front",
  47194. image: {
  47195. source: "./media/characters/cintia/front.svg",
  47196. extra: 1312/1228,
  47197. bottom: 38/1350
  47198. }
  47199. },
  47200. back: {
  47201. height: math.unit(5, "meters"),
  47202. name: "Back",
  47203. image: {
  47204. source: "./media/characters/cintia/back.svg",
  47205. extra: 1260/1166,
  47206. bottom: 98/1358
  47207. }
  47208. },
  47209. frontDick: {
  47210. height: math.unit(5, "meters"),
  47211. name: "Front (Dick)",
  47212. image: {
  47213. source: "./media/characters/cintia/front-dick.svg",
  47214. extra: 1312/1228,
  47215. bottom: 38/1350
  47216. }
  47217. },
  47218. backDick: {
  47219. height: math.unit(5, "meters"),
  47220. name: "Back (Dick)",
  47221. image: {
  47222. source: "./media/characters/cintia/back-dick.svg",
  47223. extra: 1260/1166,
  47224. bottom: 98/1358
  47225. }
  47226. },
  47227. bust: {
  47228. height: math.unit(1.97, "meters"),
  47229. name: "Bust",
  47230. image: {
  47231. source: "./media/characters/cintia/bust.svg",
  47232. extra: 617/565,
  47233. bottom: 0/617
  47234. }
  47235. },
  47236. },
  47237. [
  47238. {
  47239. name: "Normal",
  47240. height: math.unit(5, "meters"),
  47241. default: true
  47242. },
  47243. ]
  47244. ))
  47245. characterMakers.push(() => makeCharacter(
  47246. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47247. {
  47248. side: {
  47249. height: math.unit(100, "feet"),
  47250. name: "Side",
  47251. image: {
  47252. source: "./media/characters/denora/side.svg",
  47253. extra: 875/803,
  47254. bottom: 9/884
  47255. }
  47256. },
  47257. },
  47258. [
  47259. {
  47260. name: "Standard",
  47261. height: math.unit(100, "feet"),
  47262. default: true
  47263. },
  47264. {
  47265. name: "Grand",
  47266. height: math.unit(1000, "feet")
  47267. },
  47268. {
  47269. name: "Conquering",
  47270. height: math.unit(10000, "feet")
  47271. },
  47272. ]
  47273. ))
  47274. characterMakers.push(() => makeCharacter(
  47275. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47276. {
  47277. dressed: {
  47278. height: math.unit(8 + 5/12, "feet"),
  47279. weight: math.unit(700, "lb"),
  47280. name: "Dressed",
  47281. image: {
  47282. source: "./media/characters/kiva/dressed.svg",
  47283. extra: 1102/1055,
  47284. bottom: 60/1162
  47285. }
  47286. },
  47287. nude: {
  47288. height: math.unit(8 + 5/12, "feet"),
  47289. weight: math.unit(700, "lb"),
  47290. name: "Nude",
  47291. image: {
  47292. source: "./media/characters/kiva/nude.svg",
  47293. extra: 1102/1055,
  47294. bottom: 60/1162
  47295. }
  47296. },
  47297. },
  47298. [
  47299. {
  47300. name: "Base Height",
  47301. height: math.unit(8 + 5/12, "feet"),
  47302. default: true
  47303. },
  47304. {
  47305. name: "Macro",
  47306. height: math.unit(100, "feet")
  47307. },
  47308. {
  47309. name: "Max",
  47310. height: math.unit(3280, "feet")
  47311. },
  47312. ]
  47313. ))
  47314. characterMakers.push(() => makeCharacter(
  47315. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47316. {
  47317. front: {
  47318. height: math.unit(6 + 8/12, "feet"),
  47319. weight: math.unit(250, "lb"),
  47320. name: "Front",
  47321. image: {
  47322. source: "./media/characters/ztragon/front.svg",
  47323. extra: 1825/1684,
  47324. bottom: 98/1923
  47325. }
  47326. },
  47327. },
  47328. [
  47329. {
  47330. name: "Normal",
  47331. height: math.unit(6 + 8/12, "feet"),
  47332. default: true
  47333. },
  47334. {
  47335. name: "Macro",
  47336. height: math.unit(80, "feet")
  47337. },
  47338. ]
  47339. ))
  47340. characterMakers.push(() => makeCharacter(
  47341. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47342. {
  47343. front: {
  47344. height: math.unit(10.4, "feet"),
  47345. weight: math.unit(2, "tons"),
  47346. name: "Front",
  47347. image: {
  47348. source: "./media/characters/yesenia/front.svg",
  47349. extra: 1479/1474,
  47350. bottom: 233/1712
  47351. }
  47352. },
  47353. },
  47354. [
  47355. {
  47356. name: "Normal",
  47357. height: math.unit(10.4, "feet"),
  47358. default: true
  47359. },
  47360. ]
  47361. ))
  47362. characterMakers.push(() => makeCharacter(
  47363. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47364. {
  47365. normal: {
  47366. height: math.unit(6 + 1/12, "feet"),
  47367. weight: math.unit(180, "lb"),
  47368. name: "Normal",
  47369. image: {
  47370. source: "./media/characters/leanne-lycheborne/normal.svg",
  47371. extra: 1748/1660,
  47372. bottom: 98/1846
  47373. }
  47374. },
  47375. were: {
  47376. height: math.unit(12, "feet"),
  47377. weight: math.unit(1600, "lb"),
  47378. name: "Were",
  47379. image: {
  47380. source: "./media/characters/leanne-lycheborne/were.svg",
  47381. extra: 1485/1432,
  47382. bottom: 66/1551
  47383. }
  47384. },
  47385. },
  47386. [
  47387. {
  47388. name: "Normal",
  47389. height: math.unit(6 + 1/12, "feet"),
  47390. default: true
  47391. },
  47392. ]
  47393. ))
  47394. characterMakers.push(() => makeCharacter(
  47395. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47396. {
  47397. side: {
  47398. height: math.unit(13, "feet"),
  47399. name: "Side",
  47400. image: {
  47401. source: "./media/characters/kira-tyler/side.svg",
  47402. extra: 693/393,
  47403. bottom: 58/751
  47404. }
  47405. },
  47406. },
  47407. [
  47408. {
  47409. name: "Normal",
  47410. height: math.unit(13, "feet"),
  47411. default: true
  47412. },
  47413. ]
  47414. ))
  47415. characterMakers.push(() => makeCharacter(
  47416. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47417. {
  47418. front: {
  47419. height: math.unit(10.3, "feet"),
  47420. weight: math.unit(150, "lb"),
  47421. name: "Front",
  47422. image: {
  47423. source: "./media/characters/blaze/front.svg",
  47424. extra: 1378/1286,
  47425. bottom: 172/1550
  47426. }
  47427. },
  47428. },
  47429. [
  47430. {
  47431. name: "Normal",
  47432. height: math.unit(10.3, "feet"),
  47433. default: true
  47434. },
  47435. ]
  47436. ))
  47437. characterMakers.push(() => makeCharacter(
  47438. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47439. {
  47440. side: {
  47441. height: math.unit(2, "meters"),
  47442. weight: math.unit(400, "kg"),
  47443. name: "Side",
  47444. image: {
  47445. source: "./media/characters/anu/side.svg",
  47446. extra: 506/394,
  47447. bottom: 18/524
  47448. }
  47449. },
  47450. },
  47451. [
  47452. {
  47453. name: "Humanoid",
  47454. height: math.unit(2, "meters")
  47455. },
  47456. {
  47457. name: "Normal",
  47458. height: math.unit(5, "meters"),
  47459. default: true
  47460. },
  47461. ]
  47462. ))
  47463. characterMakers.push(() => makeCharacter(
  47464. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47465. {
  47466. front: {
  47467. height: math.unit(5 + 5/12, "feet"),
  47468. weight: math.unit(170, "lb"),
  47469. name: "Front",
  47470. image: {
  47471. source: "./media/characters/synx-the-lynx/front.svg",
  47472. extra: 1893/1745,
  47473. bottom: 17/1910
  47474. }
  47475. },
  47476. side: {
  47477. height: math.unit(5 + 5/12, "feet"),
  47478. weight: math.unit(170, "lb"),
  47479. name: "Side",
  47480. image: {
  47481. source: "./media/characters/synx-the-lynx/side.svg",
  47482. extra: 1884/1740,
  47483. bottom: 39/1923
  47484. }
  47485. },
  47486. back: {
  47487. height: math.unit(5 + 5/12, "feet"),
  47488. weight: math.unit(170, "lb"),
  47489. name: "Back",
  47490. image: {
  47491. source: "./media/characters/synx-the-lynx/back.svg",
  47492. extra: 1903/1755,
  47493. bottom: 14/1917
  47494. }
  47495. },
  47496. },
  47497. [
  47498. {
  47499. name: "Normal",
  47500. height: math.unit(5 + 5/12, "feet"),
  47501. default: true
  47502. },
  47503. ]
  47504. ))
  47505. characterMakers.push(() => makeCharacter(
  47506. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47507. {
  47508. back: {
  47509. height: math.unit(15, "feet"),
  47510. name: "Back",
  47511. image: {
  47512. source: "./media/characters/nadezda-fex/back.svg",
  47513. extra: 1695/1481,
  47514. bottom: 25/1720
  47515. }
  47516. },
  47517. },
  47518. [
  47519. {
  47520. name: "Normal",
  47521. height: math.unit(15, "feet"),
  47522. default: true
  47523. },
  47524. {
  47525. name: "Macro",
  47526. height: math.unit(2.5, "miles")
  47527. },
  47528. {
  47529. name: "Goddess",
  47530. height: math.unit(2, "multiverses")
  47531. },
  47532. ]
  47533. ))
  47534. characterMakers.push(() => makeCharacter(
  47535. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47536. {
  47537. front: {
  47538. height: math.unit(216, "cm"),
  47539. name: "Front",
  47540. image: {
  47541. source: "./media/characters/lev/front.svg",
  47542. extra: 1728/1670,
  47543. bottom: 82/1810
  47544. }
  47545. },
  47546. back: {
  47547. height: math.unit(216, "cm"),
  47548. name: "Back",
  47549. image: {
  47550. source: "./media/characters/lev/back.svg",
  47551. extra: 1738/1675,
  47552. bottom: 24/1762
  47553. }
  47554. },
  47555. dressed: {
  47556. height: math.unit(216, "cm"),
  47557. name: "Dressed",
  47558. image: {
  47559. source: "./media/characters/lev/dressed.svg",
  47560. extra: 1397/1351,
  47561. bottom: 73/1470
  47562. }
  47563. },
  47564. head: {
  47565. height: math.unit(0.51, "meter"),
  47566. name: "Head",
  47567. image: {
  47568. source: "./media/characters/lev/head.svg"
  47569. }
  47570. },
  47571. },
  47572. [
  47573. {
  47574. name: "Normal",
  47575. height: math.unit(216, "cm"),
  47576. default: true
  47577. },
  47578. {
  47579. name: "Relatively Macro",
  47580. height: math.unit(80, "meters")
  47581. },
  47582. {
  47583. name: "Megamacro",
  47584. height: math.unit(21600, "meters")
  47585. },
  47586. {
  47587. name: "Megamacro+",
  47588. height: math.unit(64800, "meters")
  47589. },
  47590. ]
  47591. ))
  47592. characterMakers.push(() => makeCharacter(
  47593. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47594. {
  47595. front: {
  47596. height: math.unit(2, "meters"),
  47597. weight: math.unit(80, "kg"),
  47598. name: "Front",
  47599. image: {
  47600. source: "./media/characters/moka/front.svg",
  47601. extra: 1337/1255,
  47602. bottom: 58/1395
  47603. }
  47604. },
  47605. },
  47606. [
  47607. {
  47608. name: "Micro",
  47609. height: math.unit(15, "cm")
  47610. },
  47611. {
  47612. name: "Normal",
  47613. height: math.unit(2, "meters"),
  47614. default: true
  47615. },
  47616. {
  47617. name: "Macro",
  47618. height: math.unit(20, "meters"),
  47619. },
  47620. ]
  47621. ))
  47622. characterMakers.push(() => makeCharacter(
  47623. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47624. {
  47625. front: {
  47626. height: math.unit(9, "feet"),
  47627. weight: math.unit(240, "lb"),
  47628. name: "Front",
  47629. image: {
  47630. source: "./media/characters/kuzco/front.svg",
  47631. extra: 1593/1487,
  47632. bottom: 32/1625
  47633. }
  47634. },
  47635. side: {
  47636. height: math.unit(9, "feet"),
  47637. weight: math.unit(240, "lb"),
  47638. name: "Side",
  47639. image: {
  47640. source: "./media/characters/kuzco/side.svg",
  47641. extra: 1575/1485,
  47642. bottom: 30/1605
  47643. }
  47644. },
  47645. back: {
  47646. height: math.unit(9, "feet"),
  47647. weight: math.unit(240, "lb"),
  47648. name: "Back",
  47649. image: {
  47650. source: "./media/characters/kuzco/back.svg",
  47651. extra: 1603/1514,
  47652. bottom: 14/1617
  47653. }
  47654. },
  47655. },
  47656. [
  47657. {
  47658. name: "Normal",
  47659. height: math.unit(9, "feet"),
  47660. default: true
  47661. },
  47662. ]
  47663. ))
  47664. characterMakers.push(() => makeCharacter(
  47665. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47666. {
  47667. side: {
  47668. height: math.unit(2, "meters"),
  47669. weight: math.unit(300, "kg"),
  47670. name: "Side",
  47671. image: {
  47672. source: "./media/characters/ceruleus/side.svg",
  47673. extra: 1068/974,
  47674. bottom: 126/1194
  47675. }
  47676. },
  47677. maw: {
  47678. height: math.unit(0.8125, "meter"),
  47679. name: "Maw",
  47680. image: {
  47681. source: "./media/characters/ceruleus/maw.svg"
  47682. }
  47683. },
  47684. },
  47685. [
  47686. {
  47687. name: "Normal",
  47688. height: math.unit(16, "meters"),
  47689. default: true
  47690. },
  47691. ]
  47692. ))
  47693. characterMakers.push(() => makeCharacter(
  47694. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47695. {
  47696. front: {
  47697. height: math.unit(9, "feet"),
  47698. weight: math.unit(500, "kg"),
  47699. name: "Front",
  47700. image: {
  47701. source: "./media/characters/acouya/front.svg",
  47702. extra: 1660/1473,
  47703. bottom: 28/1688
  47704. }
  47705. },
  47706. },
  47707. [
  47708. {
  47709. name: "Normal",
  47710. height: math.unit(9, "feet"),
  47711. default: true
  47712. },
  47713. ]
  47714. ))
  47715. characterMakers.push(() => makeCharacter(
  47716. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47717. {
  47718. front: {
  47719. height: math.unit(5 + 6/12, "feet"),
  47720. weight: math.unit(195, "lb"),
  47721. name: "Front",
  47722. image: {
  47723. source: "./media/characters/vant/front.svg",
  47724. extra: 1396/1320,
  47725. bottom: 20/1416
  47726. }
  47727. },
  47728. back: {
  47729. height: math.unit(5 + 6/12, "feet"),
  47730. weight: math.unit(195, "lb"),
  47731. name: "Back",
  47732. image: {
  47733. source: "./media/characters/vant/back.svg",
  47734. extra: 1396/1320,
  47735. bottom: 20/1416
  47736. }
  47737. },
  47738. maw: {
  47739. height: math.unit(0.75, "feet"),
  47740. name: "Maw",
  47741. image: {
  47742. source: "./media/characters/vant/maw.svg"
  47743. }
  47744. },
  47745. paw: {
  47746. height: math.unit(1.07, "feet"),
  47747. name: "Paw",
  47748. image: {
  47749. source: "./media/characters/vant/paw.svg"
  47750. }
  47751. },
  47752. },
  47753. [
  47754. {
  47755. name: "Micro",
  47756. height: math.unit(0.25, "inches")
  47757. },
  47758. {
  47759. name: "Normal",
  47760. height: math.unit(5 + 6/12, "feet"),
  47761. default: true
  47762. },
  47763. {
  47764. name: "Macro",
  47765. height: math.unit(75, "feet")
  47766. },
  47767. ]
  47768. ))
  47769. characterMakers.push(() => makeCharacter(
  47770. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47771. {
  47772. front: {
  47773. height: math.unit(30, "meters"),
  47774. weight: math.unit(363, "tons"),
  47775. name: "Front",
  47776. image: {
  47777. source: "./media/characters/ahra/front.svg",
  47778. extra: 1914/1814,
  47779. bottom: 46/1960
  47780. }
  47781. },
  47782. },
  47783. [
  47784. {
  47785. name: "Macro",
  47786. height: math.unit(30, "meters"),
  47787. default: true
  47788. },
  47789. ]
  47790. ))
  47791. characterMakers.push(() => makeCharacter(
  47792. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47793. {
  47794. undressed: {
  47795. height: math.unit(2, "m"),
  47796. weight: math.unit(250, "kg"),
  47797. name: "Undressed",
  47798. image: {
  47799. source: "./media/characters/coriander/undressed.svg",
  47800. extra: 1757/1606,
  47801. bottom: 107/1864
  47802. }
  47803. },
  47804. dressed: {
  47805. height: math.unit(2, "m"),
  47806. weight: math.unit(250, "kg"),
  47807. name: "Dressed",
  47808. image: {
  47809. source: "./media/characters/coriander/dressed.svg",
  47810. extra: 1757/1606,
  47811. bottom: 107/1864
  47812. }
  47813. },
  47814. },
  47815. [
  47816. {
  47817. name: "Normal",
  47818. height: math.unit(4, "meters"),
  47819. default: true
  47820. },
  47821. {
  47822. name: "XL",
  47823. height: math.unit(6, "meters")
  47824. },
  47825. {
  47826. name: "XXL",
  47827. height: math.unit(8, "meters")
  47828. },
  47829. ]
  47830. ))
  47831. characterMakers.push(() => makeCharacter(
  47832. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47833. {
  47834. front: {
  47835. height: math.unit(6, "feet"),
  47836. name: "Front",
  47837. image: {
  47838. source: "./media/characters/syrinx/front.svg",
  47839. extra: 1557/1259,
  47840. bottom: 171/1728
  47841. }
  47842. },
  47843. },
  47844. [
  47845. {
  47846. name: "Normal",
  47847. height: math.unit(6 + 3/12, "feet"),
  47848. default: true
  47849. },
  47850. ]
  47851. ))
  47852. characterMakers.push(() => makeCharacter(
  47853. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47854. {
  47855. front: {
  47856. height: math.unit(11 + 6/12, "feet"),
  47857. weight: math.unit(1.5, "tons"),
  47858. name: "Front",
  47859. image: {
  47860. source: "./media/characters/bor/front.svg",
  47861. extra: 1189/1109,
  47862. bottom: 170/1359
  47863. }
  47864. },
  47865. },
  47866. [
  47867. {
  47868. name: "Normal",
  47869. height: math.unit(11 + 6/12, "feet"),
  47870. default: true
  47871. },
  47872. {
  47873. name: "Macro",
  47874. height: math.unit(32 + 9/12, "feet")
  47875. },
  47876. ]
  47877. ))
  47878. characterMakers.push(() => makeCharacter(
  47879. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47880. {
  47881. anthro: {
  47882. height: math.unit(9, "feet"),
  47883. weight: math.unit(2076, "lb"),
  47884. name: "Anthro",
  47885. image: {
  47886. source: "./media/characters/abacus/anthro.svg",
  47887. extra: 1540/1494,
  47888. bottom: 233/1773
  47889. }
  47890. },
  47891. pigeon: {
  47892. height: math.unit(1, "feet"),
  47893. name: "Pigeon",
  47894. image: {
  47895. source: "./media/characters/abacus/pigeon.svg",
  47896. extra: 528/525,
  47897. bottom: 46/574
  47898. }
  47899. },
  47900. },
  47901. [
  47902. {
  47903. name: "Normal",
  47904. height: math.unit(9, "feet"),
  47905. default: true
  47906. },
  47907. ]
  47908. ))
  47909. characterMakers.push(() => makeCharacter(
  47910. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47911. {
  47912. side: {
  47913. height: math.unit(6, "feet"),
  47914. name: "Side",
  47915. image: {
  47916. source: "./media/characters/delkhan/side.svg",
  47917. extra: 1884/1786,
  47918. bottom: 308/2192
  47919. }
  47920. },
  47921. head: {
  47922. height: math.unit(3.38, "feet"),
  47923. name: "Head",
  47924. image: {
  47925. source: "./media/characters/delkhan/head.svg"
  47926. }
  47927. },
  47928. },
  47929. [
  47930. {
  47931. name: "Normal",
  47932. height: math.unit(72, "feet"),
  47933. default: true
  47934. },
  47935. {
  47936. name: "Giant",
  47937. height: math.unit(172, "feet")
  47938. },
  47939. ]
  47940. ))
  47941. characterMakers.push(() => makeCharacter(
  47942. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47943. {
  47944. standing: {
  47945. height: math.unit(6, "feet"),
  47946. name: "Standing",
  47947. image: {
  47948. source: "./media/characters/euchidat/standing.svg",
  47949. extra: 1612/1553,
  47950. bottom: 116/1728
  47951. }
  47952. },
  47953. leaning: {
  47954. height: math.unit(6, "feet"),
  47955. name: "Leaning",
  47956. image: {
  47957. source: "./media/characters/euchidat/leaning.svg",
  47958. extra: 1719/1674,
  47959. bottom: 27/1746
  47960. }
  47961. },
  47962. },
  47963. [
  47964. {
  47965. name: "Normal",
  47966. height: math.unit(175, "feet"),
  47967. default: true
  47968. },
  47969. {
  47970. name: "Megamacro",
  47971. height: math.unit(190, "miles")
  47972. },
  47973. {
  47974. name: "Gigamacro",
  47975. height: math.unit(190000, "miles")
  47976. },
  47977. ]
  47978. ))
  47979. characterMakers.push(() => makeCharacter(
  47980. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47981. {
  47982. front: {
  47983. height: math.unit(6, "feet"),
  47984. weight: math.unit(150, "lb"),
  47985. name: "Front",
  47986. image: {
  47987. source: "./media/characters/rebecca-stack/front.svg",
  47988. extra: 1256/1201,
  47989. bottom: 18/1274
  47990. }
  47991. },
  47992. },
  47993. [
  47994. {
  47995. name: "Normal",
  47996. height: math.unit(5 + 8/12, "feet"),
  47997. default: true
  47998. },
  47999. {
  48000. name: "Demolitionist",
  48001. height: math.unit(200, "feet")
  48002. },
  48003. {
  48004. name: "Out of Control",
  48005. height: math.unit(2, "miles")
  48006. },
  48007. {
  48008. name: "Giga",
  48009. height: math.unit(7200, "miles")
  48010. },
  48011. ]
  48012. ))
  48013. characterMakers.push(() => makeCharacter(
  48014. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48015. {
  48016. front: {
  48017. height: math.unit(6, "feet"),
  48018. weight: math.unit(150, "lb"),
  48019. name: "Front",
  48020. image: {
  48021. source: "./media/characters/jenny-cartwright/front.svg",
  48022. extra: 1384/1376,
  48023. bottom: 58/1442
  48024. }
  48025. },
  48026. },
  48027. [
  48028. {
  48029. name: "Normal",
  48030. height: math.unit(6 + 7/12, "feet"),
  48031. default: true
  48032. },
  48033. {
  48034. name: "Librarian",
  48035. height: math.unit(55, "feet")
  48036. },
  48037. {
  48038. name: "Sightseer",
  48039. height: math.unit(50, "miles")
  48040. },
  48041. {
  48042. name: "Giga",
  48043. height: math.unit(30000, "miles")
  48044. },
  48045. ]
  48046. ))
  48047. characterMakers.push(() => makeCharacter(
  48048. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48049. {
  48050. nude: {
  48051. height: math.unit(8, "feet"),
  48052. weight: math.unit(225, "lb"),
  48053. name: "Nude",
  48054. image: {
  48055. source: "./media/characters/marvy/nude.svg",
  48056. extra: 1900/1683,
  48057. bottom: 89/1989
  48058. }
  48059. },
  48060. dressed: {
  48061. height: math.unit(8, "feet"),
  48062. weight: math.unit(225, "lb"),
  48063. name: "Dressed",
  48064. image: {
  48065. source: "./media/characters/marvy/dressed.svg",
  48066. extra: 1900/1683,
  48067. bottom: 89/1989
  48068. }
  48069. },
  48070. head: {
  48071. height: math.unit(2.85, "feet"),
  48072. name: "Head",
  48073. image: {
  48074. source: "./media/characters/marvy/head.svg"
  48075. }
  48076. },
  48077. },
  48078. [
  48079. {
  48080. name: "Normal",
  48081. height: math.unit(8, "feet"),
  48082. default: true
  48083. },
  48084. ]
  48085. ))
  48086. characterMakers.push(() => makeCharacter(
  48087. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48088. {
  48089. front: {
  48090. height: math.unit(8, "feet"),
  48091. weight: math.unit(250, "lb"),
  48092. name: "Front",
  48093. image: {
  48094. source: "./media/characters/leah/front.svg",
  48095. extra: 1257/1149,
  48096. bottom: 109/1366
  48097. }
  48098. },
  48099. },
  48100. [
  48101. {
  48102. name: "Normal",
  48103. height: math.unit(8, "feet"),
  48104. default: true
  48105. },
  48106. {
  48107. name: "Minimacro",
  48108. height: math.unit(40, "feet")
  48109. },
  48110. {
  48111. name: "Macro",
  48112. height: math.unit(124, "feet")
  48113. },
  48114. {
  48115. name: "Megamacro",
  48116. height: math.unit(850, "feet")
  48117. },
  48118. ]
  48119. ))
  48120. characterMakers.push(() => makeCharacter(
  48121. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48122. {
  48123. side: {
  48124. height: math.unit(13 + 6/12, "feet"),
  48125. weight: math.unit(3200, "lb"),
  48126. name: "Side",
  48127. image: {
  48128. source: "./media/characters/alvir/side.svg",
  48129. extra: 896/589,
  48130. bottom: 26/922
  48131. }
  48132. },
  48133. },
  48134. [
  48135. {
  48136. name: "Normal",
  48137. height: math.unit(13 + 6/12, "feet"),
  48138. default: true
  48139. },
  48140. ]
  48141. ))
  48142. characterMakers.push(() => makeCharacter(
  48143. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48144. {
  48145. front: {
  48146. height: math.unit(5 + 4/12, "feet"),
  48147. weight: math.unit(236, "lb"),
  48148. name: "Front",
  48149. image: {
  48150. source: "./media/characters/zaina-khalil/front.svg",
  48151. extra: 1533/1485,
  48152. bottom: 94/1627
  48153. }
  48154. },
  48155. side: {
  48156. height: math.unit(5 + 4/12, "feet"),
  48157. weight: math.unit(236, "lb"),
  48158. name: "Side",
  48159. image: {
  48160. source: "./media/characters/zaina-khalil/side.svg",
  48161. extra: 1537/1498,
  48162. bottom: 66/1603
  48163. }
  48164. },
  48165. back: {
  48166. height: math.unit(5 + 4/12, "feet"),
  48167. weight: math.unit(236, "lb"),
  48168. name: "Back",
  48169. image: {
  48170. source: "./media/characters/zaina-khalil/back.svg",
  48171. extra: 1546/1494,
  48172. bottom: 89/1635
  48173. }
  48174. },
  48175. },
  48176. [
  48177. {
  48178. name: "Normal",
  48179. height: math.unit(5 + 4/12, "feet"),
  48180. default: true
  48181. },
  48182. ]
  48183. ))
  48184. characterMakers.push(() => makeCharacter(
  48185. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48186. {
  48187. side: {
  48188. height: math.unit(12, "feet"),
  48189. weight: math.unit(4000, "lb"),
  48190. name: "Side",
  48191. image: {
  48192. source: "./media/characters/terry/side.svg",
  48193. extra: 1518/1439,
  48194. bottom: 149/1667
  48195. }
  48196. },
  48197. },
  48198. [
  48199. {
  48200. name: "Normal",
  48201. height: math.unit(12, "feet"),
  48202. default: true
  48203. },
  48204. ]
  48205. ))
  48206. characterMakers.push(() => makeCharacter(
  48207. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48208. {
  48209. front: {
  48210. height: math.unit(12, "feet"),
  48211. weight: math.unit(1500, "lb"),
  48212. name: "Front",
  48213. image: {
  48214. source: "./media/characters/kahea/front.svg",
  48215. extra: 1722/1617,
  48216. bottom: 179/1901
  48217. }
  48218. },
  48219. },
  48220. [
  48221. {
  48222. name: "Normal",
  48223. height: math.unit(12, "feet"),
  48224. default: true
  48225. },
  48226. ]
  48227. ))
  48228. characterMakers.push(() => makeCharacter(
  48229. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48230. {
  48231. demonFront: {
  48232. height: math.unit(36, "feet"),
  48233. name: "Front",
  48234. image: {
  48235. source: "./media/characters/alex-xuria/demon-front.svg",
  48236. extra: 1705/1673,
  48237. bottom: 198/1903
  48238. },
  48239. form: "demon",
  48240. default: true
  48241. },
  48242. demonBack: {
  48243. height: math.unit(36, "feet"),
  48244. name: "Back",
  48245. image: {
  48246. source: "./media/characters/alex-xuria/demon-back.svg",
  48247. extra: 1725/1693,
  48248. bottom: 70/1795
  48249. },
  48250. form: "demon"
  48251. },
  48252. demonHead: {
  48253. height: math.unit(2.14, "meters"),
  48254. name: "Head",
  48255. image: {
  48256. source: "./media/characters/alex-xuria/demon-head.svg"
  48257. },
  48258. form: "demon"
  48259. },
  48260. demonHand: {
  48261. height: math.unit(1.61, "meters"),
  48262. name: "Hand",
  48263. image: {
  48264. source: "./media/characters/alex-xuria/demon-hand.svg"
  48265. },
  48266. form: "demon"
  48267. },
  48268. demonPaw: {
  48269. height: math.unit(1.35, "meters"),
  48270. name: "Paw",
  48271. image: {
  48272. source: "./media/characters/alex-xuria/demon-paw.svg"
  48273. },
  48274. form: "demon"
  48275. },
  48276. demonFoot: {
  48277. height: math.unit(2.2, "meters"),
  48278. name: "Foot",
  48279. image: {
  48280. source: "./media/characters/alex-xuria/demon-foot.svg"
  48281. },
  48282. form: "demon"
  48283. },
  48284. demonCock: {
  48285. height: math.unit(1.74, "meters"),
  48286. name: "Cock",
  48287. image: {
  48288. source: "./media/characters/alex-xuria/demon-cock.svg"
  48289. },
  48290. form: "demon"
  48291. },
  48292. demonTailClosed: {
  48293. height: math.unit(1.47, "meters"),
  48294. name: "Tail (Closed)",
  48295. image: {
  48296. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48297. },
  48298. form: "demon"
  48299. },
  48300. demonTailOpen: {
  48301. height: math.unit(2.85, "meters"),
  48302. name: "Tail (Open)",
  48303. image: {
  48304. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48305. },
  48306. form: "demon"
  48307. },
  48308. incubusFront: {
  48309. height: math.unit(12, "feet"),
  48310. name: "Front",
  48311. image: {
  48312. source: "./media/characters/alex-xuria/incubus-front.svg",
  48313. extra: 1754/1677,
  48314. bottom: 125/1879
  48315. },
  48316. form: "incubus",
  48317. default: true
  48318. },
  48319. incubusBack: {
  48320. height: math.unit(12, "feet"),
  48321. name: "Back",
  48322. image: {
  48323. source: "./media/characters/alex-xuria/incubus-back.svg",
  48324. extra: 1702/1647,
  48325. bottom: 30/1732
  48326. },
  48327. form: "incubus"
  48328. },
  48329. incubusHead: {
  48330. height: math.unit(3.45, "feet"),
  48331. name: "Head",
  48332. image: {
  48333. source: "./media/characters/alex-xuria/incubus-head.svg"
  48334. },
  48335. form: "incubus"
  48336. },
  48337. rabbitFront: {
  48338. height: math.unit(6, "feet"),
  48339. name: "Front",
  48340. image: {
  48341. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48342. extra: 1369/1349,
  48343. bottom: 45/1414
  48344. },
  48345. form: "rabbit",
  48346. default: true
  48347. },
  48348. rabbitSide: {
  48349. height: math.unit(6, "feet"),
  48350. name: "Side",
  48351. image: {
  48352. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48353. extra: 1370/1356,
  48354. bottom: 37/1407
  48355. },
  48356. form: "rabbit"
  48357. },
  48358. rabbitBack: {
  48359. height: math.unit(6, "feet"),
  48360. name: "Back",
  48361. image: {
  48362. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48363. extra: 1375/1358,
  48364. bottom: 43/1418
  48365. },
  48366. form: "rabbit"
  48367. },
  48368. },
  48369. [
  48370. {
  48371. name: "Normal",
  48372. height: math.unit(6, "feet"),
  48373. default: true,
  48374. form: "rabbit"
  48375. },
  48376. {
  48377. name: "Incubus",
  48378. height: math.unit(12, "feet"),
  48379. default: true,
  48380. form: "incubus"
  48381. },
  48382. {
  48383. name: "Demon",
  48384. height: math.unit(36, "feet"),
  48385. default: true,
  48386. form: "demon"
  48387. }
  48388. ],
  48389. {
  48390. "demon": {
  48391. name: "Demon",
  48392. default: true
  48393. },
  48394. "incubus": {
  48395. name: "Incubus",
  48396. },
  48397. "rabbit": {
  48398. name: "Rabbit"
  48399. }
  48400. }
  48401. ))
  48402. characterMakers.push(() => makeCharacter(
  48403. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48404. {
  48405. front: {
  48406. height: math.unit(7 + 5/12, "feet"),
  48407. weight: math.unit(510, "lb"),
  48408. name: "Front",
  48409. image: {
  48410. source: "./media/characters/syrup/front.svg",
  48411. extra: 932/916,
  48412. bottom: 26/958
  48413. }
  48414. },
  48415. },
  48416. [
  48417. {
  48418. name: "Normal",
  48419. height: math.unit(7 + 5/12, "feet"),
  48420. default: true
  48421. },
  48422. {
  48423. name: "Big",
  48424. height: math.unit(50, "feet")
  48425. },
  48426. {
  48427. name: "Macro",
  48428. height: math.unit(300, "feet")
  48429. },
  48430. {
  48431. name: "Megamacro",
  48432. height: math.unit(1, "mile")
  48433. },
  48434. ]
  48435. ))
  48436. characterMakers.push(() => makeCharacter(
  48437. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48438. {
  48439. front: {
  48440. height: math.unit(6 + 9/12, "feet"),
  48441. name: "Front",
  48442. image: {
  48443. source: "./media/characters/zeimne/front.svg",
  48444. extra: 1969/1806,
  48445. bottom: 53/2022
  48446. }
  48447. },
  48448. },
  48449. [
  48450. {
  48451. name: "Normal",
  48452. height: math.unit(6 + 9/12, "feet"),
  48453. default: true
  48454. },
  48455. {
  48456. name: "Giant",
  48457. height: math.unit(550, "feet")
  48458. },
  48459. {
  48460. name: "Mega",
  48461. height: math.unit(3, "miles")
  48462. },
  48463. {
  48464. name: "Giga",
  48465. height: math.unit(250, "miles")
  48466. },
  48467. {
  48468. name: "Tera",
  48469. height: math.unit(1, "AU")
  48470. },
  48471. ]
  48472. ))
  48473. characterMakers.push(() => makeCharacter(
  48474. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48475. {
  48476. front: {
  48477. height: math.unit(5 + 2/12, "feet"),
  48478. name: "Front",
  48479. image: {
  48480. source: "./media/characters/grar/front.svg",
  48481. extra: 1331/1119,
  48482. bottom: 60/1391
  48483. }
  48484. },
  48485. back: {
  48486. height: math.unit(5 + 2/12, "feet"),
  48487. name: "Back",
  48488. image: {
  48489. source: "./media/characters/grar/back.svg",
  48490. extra: 1385/1169,
  48491. bottom: 23/1408
  48492. }
  48493. },
  48494. },
  48495. [
  48496. {
  48497. name: "Normal",
  48498. height: math.unit(5 + 2/12, "feet"),
  48499. default: true
  48500. },
  48501. ]
  48502. ))
  48503. characterMakers.push(() => makeCharacter(
  48504. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48505. {
  48506. front: {
  48507. height: math.unit(13 + 7/12, "feet"),
  48508. weight: math.unit(2200, "lb"),
  48509. name: "Front",
  48510. image: {
  48511. source: "./media/characters/endraya/front.svg",
  48512. extra: 1289/1215,
  48513. bottom: 50/1339
  48514. }
  48515. },
  48516. nude: {
  48517. height: math.unit(13 + 7/12, "feet"),
  48518. weight: math.unit(2200, "lb"),
  48519. name: "Nude",
  48520. image: {
  48521. source: "./media/characters/endraya/nude.svg",
  48522. extra: 1247/1171,
  48523. bottom: 40/1287
  48524. }
  48525. },
  48526. head: {
  48527. height: math.unit(2.6, "feet"),
  48528. name: "Head",
  48529. image: {
  48530. source: "./media/characters/endraya/head.svg"
  48531. }
  48532. },
  48533. slit: {
  48534. height: math.unit(3.4, "feet"),
  48535. name: "Slit",
  48536. image: {
  48537. source: "./media/characters/endraya/slit.svg"
  48538. }
  48539. },
  48540. },
  48541. [
  48542. {
  48543. name: "Normal",
  48544. height: math.unit(13 + 7/12, "feet"),
  48545. default: true
  48546. },
  48547. {
  48548. name: "Macro",
  48549. height: math.unit(200, "feet")
  48550. },
  48551. ]
  48552. ))
  48553. characterMakers.push(() => makeCharacter(
  48554. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48555. {
  48556. front: {
  48557. height: math.unit(1.81, "meters"),
  48558. weight: math.unit(69, "kg"),
  48559. name: "Front",
  48560. image: {
  48561. source: "./media/characters/rodryana/front.svg",
  48562. extra: 2002/1921,
  48563. bottom: 53/2055
  48564. }
  48565. },
  48566. back: {
  48567. height: math.unit(1.81, "meters"),
  48568. weight: math.unit(69, "kg"),
  48569. name: "Back",
  48570. image: {
  48571. source: "./media/characters/rodryana/back.svg",
  48572. extra: 1993/1926,
  48573. bottom: 48/2041
  48574. }
  48575. },
  48576. maw: {
  48577. height: math.unit(0.19769417475, "meters"),
  48578. name: "Maw",
  48579. image: {
  48580. source: "./media/characters/rodryana/maw.svg"
  48581. }
  48582. },
  48583. slit: {
  48584. height: math.unit(0.31631067961, "meters"),
  48585. name: "Slit",
  48586. image: {
  48587. source: "./media/characters/rodryana/slit.svg"
  48588. }
  48589. },
  48590. },
  48591. [
  48592. {
  48593. name: "Normal",
  48594. height: math.unit(1.81, "meters")
  48595. },
  48596. {
  48597. name: "Mini Macro",
  48598. height: math.unit(181, "meters")
  48599. },
  48600. {
  48601. name: "Macro",
  48602. height: math.unit(452, "meters"),
  48603. default: true
  48604. },
  48605. {
  48606. name: "Mega Macro",
  48607. height: math.unit(1.375, "km")
  48608. },
  48609. {
  48610. name: "Giga Macro",
  48611. height: math.unit(13.575, "km")
  48612. },
  48613. ]
  48614. ))
  48615. characterMakers.push(() => makeCharacter(
  48616. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48617. {
  48618. front: {
  48619. height: math.unit(6, "feet"),
  48620. weight: math.unit(1000, "lb"),
  48621. name: "Front",
  48622. image: {
  48623. source: "./media/characters/asaya/front.svg",
  48624. extra: 1460/1200,
  48625. bottom: 71/1531
  48626. }
  48627. },
  48628. },
  48629. [
  48630. {
  48631. name: "Normal",
  48632. height: math.unit(8, "km"),
  48633. default: true
  48634. },
  48635. ]
  48636. ))
  48637. characterMakers.push(() => makeCharacter(
  48638. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48639. {
  48640. front: {
  48641. height: math.unit(3.5, "meters"),
  48642. name: "Front",
  48643. image: {
  48644. source: "./media/characters/sarzu-and-israz/front.svg",
  48645. extra: 1570/1558,
  48646. bottom: 150/1720
  48647. },
  48648. },
  48649. back: {
  48650. height: math.unit(3.5, "meters"),
  48651. name: "Back",
  48652. image: {
  48653. source: "./media/characters/sarzu-and-israz/back.svg",
  48654. extra: 1523/1509,
  48655. bottom: 132/1655
  48656. },
  48657. },
  48658. frontFemale: {
  48659. height: math.unit(3.5, "meters"),
  48660. name: "Front (Female)",
  48661. image: {
  48662. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48663. extra: 1570/1558,
  48664. bottom: 150/1720
  48665. },
  48666. },
  48667. frontHerm: {
  48668. height: math.unit(3.5, "meters"),
  48669. name: "Front (Herm)",
  48670. image: {
  48671. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48672. extra: 1570/1558,
  48673. bottom: 150/1720
  48674. },
  48675. },
  48676. },
  48677. [
  48678. {
  48679. name: "Normal",
  48680. height: math.unit(3.5, "meters"),
  48681. default: true,
  48682. },
  48683. {
  48684. name: "Macro",
  48685. height: math.unit(65.5, "meters"),
  48686. },
  48687. ],
  48688. ))
  48689. characterMakers.push(() => makeCharacter(
  48690. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48691. {
  48692. front: {
  48693. height: math.unit(6, "feet"),
  48694. weight: math.unit(250, "lb"),
  48695. name: "Front",
  48696. image: {
  48697. source: "./media/characters/zenimma/front.svg",
  48698. extra: 1346/1320,
  48699. bottom: 58/1404
  48700. }
  48701. },
  48702. back: {
  48703. height: math.unit(6, "feet"),
  48704. weight: math.unit(250, "lb"),
  48705. name: "Back",
  48706. image: {
  48707. source: "./media/characters/zenimma/back.svg",
  48708. extra: 1324/1308,
  48709. bottom: 44/1368
  48710. }
  48711. },
  48712. dick: {
  48713. height: math.unit(1.44, "feet"),
  48714. name: "Dick",
  48715. image: {
  48716. source: "./media/characters/zenimma/dick.svg"
  48717. }
  48718. },
  48719. },
  48720. [
  48721. {
  48722. name: "Canon Height",
  48723. height: math.unit(66, "miles"),
  48724. default: true
  48725. },
  48726. ]
  48727. ))
  48728. characterMakers.push(() => makeCharacter(
  48729. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48730. {
  48731. nude: {
  48732. height: math.unit(6, "feet"),
  48733. weight: math.unit(150, "lb"),
  48734. name: "Nude",
  48735. image: {
  48736. source: "./media/characters/shavon/nude.svg",
  48737. extra: 1242/1096,
  48738. bottom: 98/1340
  48739. }
  48740. },
  48741. dressed: {
  48742. height: math.unit(6, "feet"),
  48743. weight: math.unit(150, "lb"),
  48744. name: "Dressed",
  48745. image: {
  48746. source: "./media/characters/shavon/dressed.svg",
  48747. extra: 1242/1096,
  48748. bottom: 98/1340
  48749. }
  48750. },
  48751. },
  48752. [
  48753. {
  48754. name: "Macro",
  48755. height: math.unit(255, "feet"),
  48756. default: true
  48757. },
  48758. ]
  48759. ))
  48760. characterMakers.push(() => makeCharacter(
  48761. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48762. {
  48763. front: {
  48764. height: math.unit(6, "feet"),
  48765. name: "Front",
  48766. image: {
  48767. source: "./media/characters/steph/front.svg",
  48768. extra: 1430/1330,
  48769. bottom: 54/1484
  48770. }
  48771. },
  48772. },
  48773. [
  48774. {
  48775. name: "Normal",
  48776. height: math.unit(6, "feet"),
  48777. default: true
  48778. },
  48779. ]
  48780. ))
  48781. characterMakers.push(() => makeCharacter(
  48782. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48783. {
  48784. front: {
  48785. height: math.unit(9, "feet"),
  48786. weight: math.unit(400, "lb"),
  48787. name: "Front",
  48788. image: {
  48789. source: "./media/characters/kil'aman/front.svg",
  48790. extra: 1210/1159,
  48791. bottom: 109/1319
  48792. }
  48793. },
  48794. head: {
  48795. height: math.unit(2.14, "feet"),
  48796. name: "Head",
  48797. image: {
  48798. source: "./media/characters/kil'aman/head.svg"
  48799. }
  48800. },
  48801. maw: {
  48802. height: math.unit(1.21, "feet"),
  48803. name: "Maw",
  48804. image: {
  48805. source: "./media/characters/kil'aman/maw.svg"
  48806. }
  48807. },
  48808. foot: {
  48809. height: math.unit(1.7, "feet"),
  48810. name: "Foot",
  48811. image: {
  48812. source: "./media/characters/kil'aman/foot.svg"
  48813. }
  48814. },
  48815. dick: {
  48816. height: math.unit(2.1, "feet"),
  48817. name: "Dick",
  48818. image: {
  48819. source: "./media/characters/kil'aman/dick.svg"
  48820. }
  48821. },
  48822. },
  48823. [
  48824. {
  48825. name: "Normal",
  48826. height: math.unit(9, "feet")
  48827. },
  48828. {
  48829. name: "Canon Height",
  48830. height: math.unit(10, "miles"),
  48831. default: true
  48832. },
  48833. {
  48834. name: "Maximum",
  48835. height: math.unit(6e9, "miles")
  48836. },
  48837. ]
  48838. ))
  48839. characterMakers.push(() => makeCharacter(
  48840. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48841. {
  48842. front: {
  48843. height: math.unit(90, "feet"),
  48844. weight: math.unit(675000, "lb"),
  48845. name: "Front",
  48846. image: {
  48847. source: "./media/characters/qadan/front.svg",
  48848. extra: 1012/1004,
  48849. bottom: 78/1090
  48850. }
  48851. },
  48852. back: {
  48853. height: math.unit(90, "feet"),
  48854. weight: math.unit(675000, "lb"),
  48855. name: "Back",
  48856. image: {
  48857. source: "./media/characters/qadan/back.svg",
  48858. extra: 1042/1031,
  48859. bottom: 55/1097
  48860. }
  48861. },
  48862. armored: {
  48863. height: math.unit(90, "feet"),
  48864. weight: math.unit(675000, "lb"),
  48865. name: "Armored",
  48866. image: {
  48867. source: "./media/characters/qadan/armored.svg",
  48868. extra: 1047/1037,
  48869. bottom: 48/1095
  48870. }
  48871. },
  48872. },
  48873. [
  48874. {
  48875. name: "Normal",
  48876. height: math.unit(90, "feet"),
  48877. default: true
  48878. },
  48879. ]
  48880. ))
  48881. characterMakers.push(() => makeCharacter(
  48882. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48883. {
  48884. front: {
  48885. height: math.unit(6, "feet"),
  48886. weight: math.unit(225, "lb"),
  48887. name: "Front",
  48888. image: {
  48889. source: "./media/characters/brooke/front.svg",
  48890. extra: 1050/1010,
  48891. bottom: 66/1116
  48892. }
  48893. },
  48894. back: {
  48895. height: math.unit(6, "feet"),
  48896. weight: math.unit(225, "lb"),
  48897. name: "Back",
  48898. image: {
  48899. source: "./media/characters/brooke/back.svg",
  48900. extra: 1053/1013,
  48901. bottom: 41/1094
  48902. }
  48903. },
  48904. dressed: {
  48905. height: math.unit(6, "feet"),
  48906. weight: math.unit(225, "lb"),
  48907. name: "Dressed",
  48908. image: {
  48909. source: "./media/characters/brooke/dressed.svg",
  48910. extra: 1050/1010,
  48911. bottom: 66/1116
  48912. }
  48913. },
  48914. },
  48915. [
  48916. {
  48917. name: "Canon Height",
  48918. height: math.unit(500, "miles"),
  48919. default: true
  48920. },
  48921. ]
  48922. ))
  48923. characterMakers.push(() => makeCharacter(
  48924. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48925. {
  48926. front: {
  48927. height: math.unit(6 + 2/12, "feet"),
  48928. weight: math.unit(210, "lb"),
  48929. name: "Front",
  48930. image: {
  48931. source: "./media/characters/wubs/front.svg",
  48932. extra: 1345/1325,
  48933. bottom: 70/1415
  48934. }
  48935. },
  48936. back: {
  48937. height: math.unit(6 + 2/12, "feet"),
  48938. weight: math.unit(210, "lb"),
  48939. name: "Back",
  48940. image: {
  48941. source: "./media/characters/wubs/back.svg",
  48942. extra: 1296/1275,
  48943. bottom: 58/1354
  48944. }
  48945. },
  48946. },
  48947. [
  48948. {
  48949. name: "Normal",
  48950. height: math.unit(6 + 2/12, "feet"),
  48951. default: true
  48952. },
  48953. {
  48954. name: "Macro",
  48955. height: math.unit(1000, "feet")
  48956. },
  48957. {
  48958. name: "Megamacro",
  48959. height: math.unit(1, "mile")
  48960. },
  48961. ]
  48962. ))
  48963. characterMakers.push(() => makeCharacter(
  48964. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48965. {
  48966. front: {
  48967. height: math.unit(4, "feet"),
  48968. weight: math.unit(120, "lb"),
  48969. name: "Front",
  48970. image: {
  48971. source: "./media/characters/blue/front.svg",
  48972. extra: 1636/1525,
  48973. bottom: 43/1679
  48974. }
  48975. },
  48976. back: {
  48977. height: math.unit(4, "feet"),
  48978. weight: math.unit(120, "lb"),
  48979. name: "Back",
  48980. image: {
  48981. source: "./media/characters/blue/back.svg",
  48982. extra: 1660/1560,
  48983. bottom: 57/1717
  48984. }
  48985. },
  48986. paws: {
  48987. height: math.unit(0.826, "feet"),
  48988. name: "Paws",
  48989. image: {
  48990. source: "./media/characters/blue/paws.svg"
  48991. }
  48992. },
  48993. },
  48994. [
  48995. {
  48996. name: "Micro",
  48997. height: math.unit(3, "inches")
  48998. },
  48999. {
  49000. name: "Normal",
  49001. height: math.unit(4, "feet"),
  49002. default: true
  49003. },
  49004. {
  49005. name: "Femenine Form",
  49006. height: math.unit(14, "feet")
  49007. },
  49008. {
  49009. name: "Werebat Form",
  49010. height: math.unit(18, "feet")
  49011. },
  49012. ]
  49013. ))
  49014. characterMakers.push(() => makeCharacter(
  49015. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49016. {
  49017. female: {
  49018. height: math.unit(7 + 4/12, "feet"),
  49019. weight: math.unit(243, "lb"),
  49020. name: "Female",
  49021. image: {
  49022. source: "./media/characters/kaya/female.svg",
  49023. extra: 975/898,
  49024. bottom: 34/1009
  49025. }
  49026. },
  49027. herm: {
  49028. height: math.unit(7 + 4/12, "feet"),
  49029. weight: math.unit(243, "lb"),
  49030. name: "Herm",
  49031. image: {
  49032. source: "./media/characters/kaya/herm.svg",
  49033. extra: 975/898,
  49034. bottom: 34/1009
  49035. }
  49036. },
  49037. },
  49038. [
  49039. {
  49040. name: "Normal",
  49041. height: math.unit(7 + 4/12, "feet"),
  49042. default: true
  49043. },
  49044. ]
  49045. ))
  49046. characterMakers.push(() => makeCharacter(
  49047. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49048. {
  49049. female: {
  49050. height: math.unit(9 + 4/12, "feet"),
  49051. weight: math.unit(398, "lb"),
  49052. name: "Female",
  49053. image: {
  49054. source: "./media/characters/kassandra/female.svg",
  49055. extra: 908/839,
  49056. bottom: 61/969
  49057. }
  49058. },
  49059. intersex: {
  49060. height: math.unit(9 + 4/12, "feet"),
  49061. weight: math.unit(398, "lb"),
  49062. name: "Intersex",
  49063. image: {
  49064. source: "./media/characters/kassandra/intersex.svg",
  49065. extra: 908/839,
  49066. bottom: 61/969
  49067. }
  49068. },
  49069. },
  49070. [
  49071. {
  49072. name: "Normal",
  49073. height: math.unit(9 + 4/12, "feet"),
  49074. default: true
  49075. },
  49076. ]
  49077. ))
  49078. characterMakers.push(() => makeCharacter(
  49079. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49080. {
  49081. front: {
  49082. height: math.unit(3, "meters"),
  49083. name: "Front",
  49084. image: {
  49085. source: "./media/characters/amy/front.svg",
  49086. extra: 1380/1343,
  49087. bottom: 70/1450
  49088. }
  49089. },
  49090. back: {
  49091. height: math.unit(3, "meters"),
  49092. name: "Back",
  49093. image: {
  49094. source: "./media/characters/amy/back.svg",
  49095. extra: 1380/1347,
  49096. bottom: 66/1446
  49097. }
  49098. },
  49099. },
  49100. [
  49101. {
  49102. name: "Normal",
  49103. height: math.unit(3, "meters"),
  49104. default: true
  49105. },
  49106. ]
  49107. ))
  49108. characterMakers.push(() => makeCharacter(
  49109. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49110. {
  49111. side: {
  49112. height: math.unit(47, "cm"),
  49113. weight: math.unit(10.8, "kg"),
  49114. name: "Side",
  49115. image: {
  49116. source: "./media/characters/alphaschakal/side.svg",
  49117. extra: 1058/568,
  49118. bottom: 62/1120
  49119. }
  49120. },
  49121. back: {
  49122. height: math.unit(78, "cm"),
  49123. weight: math.unit(10.8, "kg"),
  49124. name: "Back",
  49125. image: {
  49126. source: "./media/characters/alphaschakal/back.svg",
  49127. extra: 1102/942,
  49128. bottom: 185/1287
  49129. }
  49130. },
  49131. head: {
  49132. height: math.unit(28, "cm"),
  49133. name: "Head",
  49134. image: {
  49135. source: "./media/characters/alphaschakal/head.svg",
  49136. extra: 696/508,
  49137. bottom: 0/696
  49138. }
  49139. },
  49140. paw: {
  49141. height: math.unit(16, "cm"),
  49142. name: "Paw",
  49143. image: {
  49144. source: "./media/characters/alphaschakal/paw.svg"
  49145. }
  49146. },
  49147. },
  49148. [
  49149. {
  49150. name: "Normal",
  49151. height: math.unit(47, "cm"),
  49152. default: true
  49153. },
  49154. {
  49155. name: "Macro",
  49156. height: math.unit(340, "cm")
  49157. },
  49158. ]
  49159. ))
  49160. characterMakers.push(() => makeCharacter(
  49161. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49162. {
  49163. front: {
  49164. height: math.unit(36, "earths"),
  49165. name: "Front",
  49166. image: {
  49167. source: "./media/characters/ecobyss/front.svg",
  49168. extra: 1282/1215,
  49169. bottom: 11/1293
  49170. }
  49171. },
  49172. back: {
  49173. height: math.unit(36, "earths"),
  49174. name: "Back",
  49175. image: {
  49176. source: "./media/characters/ecobyss/back.svg",
  49177. extra: 1291/1222,
  49178. bottom: 8/1299
  49179. }
  49180. },
  49181. },
  49182. [
  49183. {
  49184. name: "Normal",
  49185. height: math.unit(36, "earths"),
  49186. default: true
  49187. },
  49188. ]
  49189. ))
  49190. characterMakers.push(() => makeCharacter(
  49191. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49192. {
  49193. front: {
  49194. height: math.unit(12, "feet"),
  49195. name: "Front",
  49196. image: {
  49197. source: "./media/characters/vasuk/front.svg",
  49198. extra: 1326/1207,
  49199. bottom: 64/1390
  49200. }
  49201. },
  49202. },
  49203. [
  49204. {
  49205. name: "Normal",
  49206. height: math.unit(12, "feet"),
  49207. default: true
  49208. },
  49209. ]
  49210. ))
  49211. characterMakers.push(() => makeCharacter(
  49212. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49213. {
  49214. side: {
  49215. height: math.unit(100, "feet"),
  49216. name: "Side",
  49217. image: {
  49218. source: "./media/characters/linneaus/side.svg",
  49219. extra: 987/807,
  49220. bottom: 47/1034
  49221. }
  49222. },
  49223. },
  49224. [
  49225. {
  49226. name: "Macro",
  49227. height: math.unit(100, "feet"),
  49228. default: true
  49229. },
  49230. ]
  49231. ))
  49232. characterMakers.push(() => makeCharacter(
  49233. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49234. {
  49235. front: {
  49236. height: math.unit(8, "feet"),
  49237. weight: math.unit(1200, "lb"),
  49238. name: "Front",
  49239. image: {
  49240. source: "./media/characters/nyterious-daligdig/front.svg",
  49241. extra: 1284/1094,
  49242. bottom: 84/1368
  49243. }
  49244. },
  49245. back: {
  49246. height: math.unit(8, "feet"),
  49247. weight: math.unit(1200, "lb"),
  49248. name: "Back",
  49249. image: {
  49250. source: "./media/characters/nyterious-daligdig/back.svg",
  49251. extra: 1301/1121,
  49252. bottom: 129/1430
  49253. }
  49254. },
  49255. mouth: {
  49256. height: math.unit(1.464, "feet"),
  49257. name: "Mouth",
  49258. image: {
  49259. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49260. }
  49261. },
  49262. },
  49263. [
  49264. {
  49265. name: "Small",
  49266. height: math.unit(8, "feet"),
  49267. default: true
  49268. },
  49269. {
  49270. name: "Normal",
  49271. height: math.unit(15, "feet")
  49272. },
  49273. {
  49274. name: "Macro",
  49275. height: math.unit(90, "feet")
  49276. },
  49277. ]
  49278. ))
  49279. characterMakers.push(() => makeCharacter(
  49280. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49281. {
  49282. front: {
  49283. height: math.unit(7 + 4/12, "feet"),
  49284. weight: math.unit(252, "lb"),
  49285. name: "Front",
  49286. image: {
  49287. source: "./media/characters/bandel/front.svg",
  49288. extra: 1946/1775,
  49289. bottom: 26/1972
  49290. }
  49291. },
  49292. back: {
  49293. height: math.unit(7 + 4/12, "feet"),
  49294. weight: math.unit(252, "lb"),
  49295. name: "Back",
  49296. image: {
  49297. source: "./media/characters/bandel/back.svg",
  49298. extra: 1940/1770,
  49299. bottom: 25/1965
  49300. }
  49301. },
  49302. maw: {
  49303. height: math.unit(2.15, "feet"),
  49304. name: "Maw",
  49305. image: {
  49306. source: "./media/characters/bandel/maw.svg"
  49307. }
  49308. },
  49309. stomach: {
  49310. height: math.unit(1.95, "feet"),
  49311. name: "Stomach",
  49312. image: {
  49313. source: "./media/characters/bandel/stomach.svg"
  49314. }
  49315. },
  49316. },
  49317. [
  49318. {
  49319. name: "Normal",
  49320. height: math.unit(7 + 4/12, "feet"),
  49321. default: true
  49322. },
  49323. ]
  49324. ))
  49325. characterMakers.push(() => makeCharacter(
  49326. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49327. {
  49328. front: {
  49329. height: math.unit(10 + 5/12, "feet"),
  49330. weight: math.unit(773.5, "kg"),
  49331. name: "Front",
  49332. image: {
  49333. source: "./media/characters/zed/front.svg",
  49334. extra: 987/941,
  49335. bottom: 52/1039
  49336. }
  49337. },
  49338. },
  49339. [
  49340. {
  49341. name: "Short",
  49342. height: math.unit(5 + 4/12, "feet")
  49343. },
  49344. {
  49345. name: "Average",
  49346. height: math.unit(10 + 5/12, "feet"),
  49347. default: true
  49348. },
  49349. {
  49350. name: "Mini-Macro",
  49351. height: math.unit(24 + 9/12, "feet")
  49352. },
  49353. {
  49354. name: "Macro",
  49355. height: math.unit(249, "feet")
  49356. },
  49357. {
  49358. name: "Mega-Macro",
  49359. height: math.unit(12490, "feet")
  49360. },
  49361. {
  49362. name: "Giga-Macro",
  49363. height: math.unit(24.9, "miles")
  49364. },
  49365. {
  49366. name: "Tera-Macro",
  49367. height: math.unit(24900, "miles")
  49368. },
  49369. {
  49370. name: "Cosmic Scale",
  49371. height: math.unit(38.9, "lightyears")
  49372. },
  49373. {
  49374. name: "Universal Scale",
  49375. height: math.unit(138e12, "lightyears")
  49376. },
  49377. ]
  49378. ))
  49379. characterMakers.push(() => makeCharacter(
  49380. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49381. {
  49382. front: {
  49383. height: math.unit(1561, "inches"),
  49384. name: "Front",
  49385. image: {
  49386. source: "./media/characters/ivan/front.svg",
  49387. extra: 1126/1071,
  49388. bottom: 26/1152
  49389. }
  49390. },
  49391. back: {
  49392. height: math.unit(1561, "inches"),
  49393. name: "Back",
  49394. image: {
  49395. source: "./media/characters/ivan/back.svg",
  49396. extra: 1134/1079,
  49397. bottom: 30/1164
  49398. }
  49399. },
  49400. },
  49401. [
  49402. {
  49403. name: "Normal",
  49404. height: math.unit(1561, "inches"),
  49405. default: true
  49406. },
  49407. ]
  49408. ))
  49409. characterMakers.push(() => makeCharacter(
  49410. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49411. {
  49412. front: {
  49413. height: math.unit(5 + 7/12, "feet"),
  49414. weight: math.unit(150, "lb"),
  49415. name: "Front",
  49416. image: {
  49417. source: "./media/characters/robin-arctic-hare/front.svg",
  49418. extra: 1148/974,
  49419. bottom: 20/1168
  49420. }
  49421. },
  49422. },
  49423. [
  49424. {
  49425. name: "Normal",
  49426. height: math.unit(5 + 7/12, "feet"),
  49427. default: true
  49428. },
  49429. ]
  49430. ))
  49431. characterMakers.push(() => makeCharacter(
  49432. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49433. {
  49434. side: {
  49435. height: math.unit(5, "feet"),
  49436. name: "Side",
  49437. image: {
  49438. source: "./media/characters/birch/side.svg",
  49439. extra: 985/796,
  49440. bottom: 111/1096
  49441. }
  49442. },
  49443. },
  49444. [
  49445. {
  49446. name: "Normal",
  49447. height: math.unit(5, "feet"),
  49448. default: true
  49449. },
  49450. ]
  49451. ))
  49452. characterMakers.push(() => makeCharacter(
  49453. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49454. {
  49455. front: {
  49456. height: math.unit(4, "feet"),
  49457. name: "Front",
  49458. image: {
  49459. source: "./media/characters/rasp/front.svg",
  49460. extra: 561/478,
  49461. bottom: 74/635
  49462. }
  49463. },
  49464. },
  49465. [
  49466. {
  49467. name: "Normal",
  49468. height: math.unit(4, "feet"),
  49469. default: true
  49470. },
  49471. ]
  49472. ))
  49473. characterMakers.push(() => makeCharacter(
  49474. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49475. {
  49476. front: {
  49477. height: math.unit(4 + 6/12, "feet"),
  49478. name: "Front",
  49479. image: {
  49480. source: "./media/characters/agatha/front.svg",
  49481. extra: 947/933,
  49482. bottom: 42/989
  49483. }
  49484. },
  49485. back: {
  49486. height: math.unit(4 + 6/12, "feet"),
  49487. name: "Back",
  49488. image: {
  49489. source: "./media/characters/agatha/back.svg",
  49490. extra: 935/922,
  49491. bottom: 48/983
  49492. }
  49493. },
  49494. },
  49495. [
  49496. {
  49497. name: "Normal",
  49498. height: math.unit(4 + 6 /12, "feet"),
  49499. default: true
  49500. },
  49501. {
  49502. name: "Max Size",
  49503. height: math.unit(500, "feet")
  49504. },
  49505. ]
  49506. ))
  49507. characterMakers.push(() => makeCharacter(
  49508. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49509. {
  49510. side: {
  49511. height: math.unit(30, "feet"),
  49512. name: "Side",
  49513. image: {
  49514. source: "./media/characters/roggy/side.svg",
  49515. extra: 909/643,
  49516. bottom: 63/972
  49517. }
  49518. },
  49519. lounging: {
  49520. height: math.unit(20, "feet"),
  49521. name: "Lounging",
  49522. image: {
  49523. source: "./media/characters/roggy/lounging.svg",
  49524. extra: 643/479,
  49525. bottom: 145/788
  49526. }
  49527. },
  49528. handpaw: {
  49529. height: math.unit(13.1, "feet"),
  49530. name: "Handpaw",
  49531. image: {
  49532. source: "./media/characters/roggy/handpaw.svg"
  49533. }
  49534. },
  49535. footpaw: {
  49536. height: math.unit(15.8, "feet"),
  49537. name: "Footpaw",
  49538. image: {
  49539. source: "./media/characters/roggy/footpaw.svg"
  49540. }
  49541. },
  49542. },
  49543. [
  49544. {
  49545. name: "Menacing",
  49546. height: math.unit(30, "feet"),
  49547. default: true
  49548. },
  49549. ]
  49550. ))
  49551. characterMakers.push(() => makeCharacter(
  49552. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49553. {
  49554. front: {
  49555. height: math.unit(5 + 7/12, "feet"),
  49556. weight: math.unit(135, "lb"),
  49557. name: "Front",
  49558. image: {
  49559. source: "./media/characters/naomi/front.svg",
  49560. extra: 1209/1154,
  49561. bottom: 129/1338
  49562. }
  49563. },
  49564. back: {
  49565. height: math.unit(5 + 7/12, "feet"),
  49566. weight: math.unit(135, "lb"),
  49567. name: "Back",
  49568. image: {
  49569. source: "./media/characters/naomi/back.svg",
  49570. extra: 1252/1190,
  49571. bottom: 23/1275
  49572. }
  49573. },
  49574. },
  49575. [
  49576. {
  49577. name: "Normal",
  49578. height: math.unit(5 + 7 /12, "feet"),
  49579. default: true
  49580. },
  49581. ]
  49582. ))
  49583. characterMakers.push(() => makeCharacter(
  49584. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49585. {
  49586. side: {
  49587. height: math.unit(35, "meters"),
  49588. name: "Side",
  49589. image: {
  49590. source: "./media/characters/kimpi/side.svg",
  49591. extra: 419/382,
  49592. bottom: 63/482
  49593. }
  49594. },
  49595. hand: {
  49596. height: math.unit(8.96, "meters"),
  49597. name: "Hand",
  49598. image: {
  49599. source: "./media/characters/kimpi/hand.svg"
  49600. }
  49601. },
  49602. },
  49603. [
  49604. {
  49605. name: "Normal",
  49606. height: math.unit(35, "meters"),
  49607. default: true
  49608. },
  49609. ]
  49610. ))
  49611. characterMakers.push(() => makeCharacter(
  49612. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49613. {
  49614. front: {
  49615. height: math.unit(4 + 4/12, "feet"),
  49616. name: "Front",
  49617. image: {
  49618. source: "./media/characters/pepper-purrloin/front.svg",
  49619. extra: 1141/1024,
  49620. bottom: 21/1162
  49621. }
  49622. },
  49623. },
  49624. [
  49625. {
  49626. name: "Normal",
  49627. height: math.unit(4 + 4/12, "feet"),
  49628. default: true
  49629. },
  49630. ]
  49631. ))
  49632. characterMakers.push(() => makeCharacter(
  49633. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49634. {
  49635. front: {
  49636. height: math.unit(6 + 2/12, "feet"),
  49637. name: "Front",
  49638. image: {
  49639. source: "./media/characters/raphael/front.svg",
  49640. extra: 1101/962,
  49641. bottom: 59/1160
  49642. }
  49643. },
  49644. },
  49645. [
  49646. {
  49647. name: "Normal",
  49648. height: math.unit(6 + 2/12, "feet"),
  49649. default: true
  49650. },
  49651. ]
  49652. ))
  49653. characterMakers.push(() => makeCharacter(
  49654. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49655. {
  49656. front: {
  49657. height: math.unit(6, "feet"),
  49658. weight: math.unit(150, "lb"),
  49659. name: "Front",
  49660. image: {
  49661. source: "./media/characters/victor-williams/front.svg",
  49662. extra: 1894/1825,
  49663. bottom: 67/1961
  49664. }
  49665. },
  49666. },
  49667. [
  49668. {
  49669. name: "Normal",
  49670. height: math.unit(6, "feet"),
  49671. default: true
  49672. },
  49673. ]
  49674. ))
  49675. characterMakers.push(() => makeCharacter(
  49676. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49677. {
  49678. front: {
  49679. height: math.unit(5 + 8/12, "feet"),
  49680. weight: math.unit(150, "lb"),
  49681. name: "Front",
  49682. image: {
  49683. source: "./media/characters/rachel/front.svg",
  49684. extra: 1902/1787,
  49685. bottom: 46/1948
  49686. }
  49687. },
  49688. },
  49689. [
  49690. {
  49691. name: "Base Height",
  49692. height: math.unit(5 + 8/12, "feet"),
  49693. default: true
  49694. },
  49695. {
  49696. name: "Macro",
  49697. height: math.unit(200, "feet")
  49698. },
  49699. {
  49700. name: "Mega Macro",
  49701. height: math.unit(1, "mile")
  49702. },
  49703. {
  49704. name: "Giga Macro",
  49705. height: math.unit(1500, "miles")
  49706. },
  49707. {
  49708. name: "Tera Macro",
  49709. height: math.unit(8000, "miles")
  49710. },
  49711. {
  49712. name: "Tera Macro+",
  49713. height: math.unit(2e5, "miles")
  49714. },
  49715. ]
  49716. ))
  49717. characterMakers.push(() => makeCharacter(
  49718. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49719. {
  49720. front: {
  49721. height: math.unit(6.5, "feet"),
  49722. name: "Front",
  49723. image: {
  49724. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49725. extra: 860/819,
  49726. bottom: 307/1167
  49727. }
  49728. },
  49729. back: {
  49730. height: math.unit(6.5, "feet"),
  49731. name: "Back",
  49732. image: {
  49733. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49734. extra: 880/837,
  49735. bottom: 395/1275
  49736. }
  49737. },
  49738. sleeping: {
  49739. height: math.unit(2.79, "feet"),
  49740. name: "Sleeping",
  49741. image: {
  49742. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49743. extra: 465/383,
  49744. bottom: 263/728
  49745. }
  49746. },
  49747. maw: {
  49748. height: math.unit(2.52, "feet"),
  49749. name: "Maw",
  49750. image: {
  49751. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49752. }
  49753. },
  49754. },
  49755. [
  49756. {
  49757. name: "Normal",
  49758. height: math.unit(6.5, "feet"),
  49759. default: true
  49760. },
  49761. ]
  49762. ))
  49763. characterMakers.push(() => makeCharacter(
  49764. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49765. {
  49766. front: {
  49767. height: math.unit(5, "feet"),
  49768. name: "Front",
  49769. image: {
  49770. source: "./media/characters/nova-nerium/front.svg",
  49771. extra: 1548/1392,
  49772. bottom: 374/1922
  49773. }
  49774. },
  49775. back: {
  49776. height: math.unit(5, "feet"),
  49777. name: "Back",
  49778. image: {
  49779. source: "./media/characters/nova-nerium/back.svg",
  49780. extra: 1658/1468,
  49781. bottom: 257/1915
  49782. }
  49783. },
  49784. },
  49785. [
  49786. {
  49787. name: "Normal",
  49788. height: math.unit(5, "feet"),
  49789. default: true
  49790. },
  49791. ]
  49792. ))
  49793. characterMakers.push(() => makeCharacter(
  49794. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49795. {
  49796. front: {
  49797. height: math.unit(5 + 4/12, "feet"),
  49798. name: "Front",
  49799. image: {
  49800. source: "./media/characters/ashe-pyriph/front.svg",
  49801. extra: 1935/1747,
  49802. bottom: 60/1995
  49803. }
  49804. },
  49805. },
  49806. [
  49807. {
  49808. name: "Normal",
  49809. height: math.unit(5 + 4/12, "feet"),
  49810. default: true
  49811. },
  49812. ]
  49813. ))
  49814. characterMakers.push(() => makeCharacter(
  49815. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49816. {
  49817. front: {
  49818. height: math.unit(8.7, "feet"),
  49819. name: "Front",
  49820. image: {
  49821. source: "./media/characters/flicker-wisp/front.svg",
  49822. extra: 1835/1613,
  49823. bottom: 449/2284
  49824. }
  49825. },
  49826. side: {
  49827. height: math.unit(8.7, "feet"),
  49828. name: "Side",
  49829. image: {
  49830. source: "./media/characters/flicker-wisp/side.svg",
  49831. extra: 1841/1642,
  49832. bottom: 336/2177
  49833. },
  49834. default: true
  49835. },
  49836. maw: {
  49837. height: math.unit(3.35, "feet"),
  49838. name: "Maw",
  49839. image: {
  49840. source: "./media/characters/flicker-wisp/maw.svg",
  49841. extra: 2338/1506,
  49842. bottom: 0/2338
  49843. }
  49844. },
  49845. ovipositor: {
  49846. height: math.unit(4.95, "feet"),
  49847. name: "Ovipositor",
  49848. image: {
  49849. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49850. }
  49851. },
  49852. egg: {
  49853. height: math.unit(0.385, "feet"),
  49854. weight: math.unit(2, "lb"),
  49855. name: "Egg",
  49856. image: {
  49857. source: "./media/characters/flicker-wisp/egg.svg"
  49858. }
  49859. },
  49860. },
  49861. [
  49862. {
  49863. name: "Normal",
  49864. height: math.unit(8.7, "feet"),
  49865. default: true
  49866. },
  49867. ]
  49868. ))
  49869. characterMakers.push(() => makeCharacter(
  49870. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49871. {
  49872. side: {
  49873. height: math.unit(11, "feet"),
  49874. name: "Side",
  49875. image: {
  49876. source: "./media/characters/faefnul/side.svg",
  49877. extra: 1100/1007,
  49878. bottom: 0/1100
  49879. }
  49880. },
  49881. },
  49882. [
  49883. {
  49884. name: "Normal",
  49885. height: math.unit(11, "feet"),
  49886. default: true
  49887. },
  49888. ]
  49889. ))
  49890. characterMakers.push(() => makeCharacter(
  49891. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49892. {
  49893. front: {
  49894. height: math.unit(6 + 2/12, "feet"),
  49895. name: "Front",
  49896. image: {
  49897. source: "./media/characters/shady/front.svg",
  49898. extra: 502/461,
  49899. bottom: 9/511
  49900. }
  49901. },
  49902. kneeling: {
  49903. height: math.unit(4.6, "feet"),
  49904. name: "Kneeling",
  49905. image: {
  49906. source: "./media/characters/shady/kneeling.svg",
  49907. extra: 1328/1219,
  49908. bottom: 117/1445
  49909. }
  49910. },
  49911. maw: {
  49912. height: math.unit(2, "feet"),
  49913. name: "Maw",
  49914. image: {
  49915. source: "./media/characters/shady/maw.svg"
  49916. }
  49917. },
  49918. },
  49919. [
  49920. {
  49921. name: "Nano",
  49922. height: math.unit(1, "mm")
  49923. },
  49924. {
  49925. name: "Micro",
  49926. height: math.unit(12, "mm")
  49927. },
  49928. {
  49929. name: "Tiny",
  49930. height: math.unit(3, "inches")
  49931. },
  49932. {
  49933. name: "Normal",
  49934. height: math.unit(6 + 2/12, "feet"),
  49935. default: true
  49936. },
  49937. {
  49938. name: "Big",
  49939. height: math.unit(15, "feet")
  49940. },
  49941. {
  49942. name: "Macro",
  49943. height: math.unit(150, "feet")
  49944. },
  49945. {
  49946. name: "Titanic",
  49947. height: math.unit(500, "feet")
  49948. },
  49949. ]
  49950. ))
  49951. characterMakers.push(() => makeCharacter(
  49952. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49953. {
  49954. front: {
  49955. height: math.unit(12, "feet"),
  49956. name: "Front",
  49957. image: {
  49958. source: "./media/characters/fenrir/front.svg",
  49959. extra: 968/875,
  49960. bottom: 22/990
  49961. }
  49962. },
  49963. },
  49964. [
  49965. {
  49966. name: "Big",
  49967. height: math.unit(12, "feet"),
  49968. default: true
  49969. },
  49970. ]
  49971. ))
  49972. characterMakers.push(() => makeCharacter(
  49973. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49974. {
  49975. front: {
  49976. height: math.unit(5 + 4/12, "feet"),
  49977. name: "Front",
  49978. image: {
  49979. source: "./media/characters/makar/front.svg",
  49980. extra: 1181/1112,
  49981. bottom: 78/1259
  49982. }
  49983. },
  49984. },
  49985. [
  49986. {
  49987. name: "Normal",
  49988. height: math.unit(5 + 4/12, "feet"),
  49989. default: true
  49990. },
  49991. ]
  49992. ))
  49993. characterMakers.push(() => makeCharacter(
  49994. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49995. {
  49996. front: {
  49997. height: math.unit(5 + 7/12, "feet"),
  49998. name: "Front",
  49999. image: {
  50000. source: "./media/characters/callow/front.svg",
  50001. extra: 1482/1304,
  50002. bottom: 23/1505
  50003. }
  50004. },
  50005. back: {
  50006. height: math.unit(5 + 7/12, "feet"),
  50007. name: "Back",
  50008. image: {
  50009. source: "./media/characters/callow/back.svg",
  50010. extra: 1484/1296,
  50011. bottom: 25/1509
  50012. }
  50013. },
  50014. },
  50015. [
  50016. {
  50017. name: "Micro",
  50018. height: math.unit(3, "inches"),
  50019. default: true
  50020. },
  50021. {
  50022. name: "Normal",
  50023. height: math.unit(5 + 7/12, "feet")
  50024. },
  50025. ]
  50026. ))
  50027. characterMakers.push(() => makeCharacter(
  50028. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50029. {
  50030. front: {
  50031. height: math.unit(6 + 2/12, "feet"),
  50032. name: "Front",
  50033. image: {
  50034. source: "./media/characters/natel/front.svg",
  50035. extra: 1833/1692,
  50036. bottom: 166/1999
  50037. }
  50038. },
  50039. },
  50040. [
  50041. {
  50042. name: "Normal",
  50043. height: math.unit(6 + 2/12, "feet"),
  50044. default: true
  50045. },
  50046. ]
  50047. ))
  50048. characterMakers.push(() => makeCharacter(
  50049. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50050. {
  50051. front: {
  50052. height: math.unit(1.75, "meters"),
  50053. name: "Front",
  50054. image: {
  50055. source: "./media/characters/misu/front.svg",
  50056. extra: 1690/1558,
  50057. bottom: 234/1924
  50058. }
  50059. },
  50060. back: {
  50061. height: math.unit(1.75, "meters"),
  50062. name: "Back",
  50063. image: {
  50064. source: "./media/characters/misu/back.svg",
  50065. extra: 1762/1618,
  50066. bottom: 146/1908
  50067. }
  50068. },
  50069. frontNude: {
  50070. height: math.unit(1.75, "meters"),
  50071. name: "Front (Nude)",
  50072. image: {
  50073. source: "./media/characters/misu/front-nude.svg",
  50074. extra: 1690/1558,
  50075. bottom: 234/1924
  50076. }
  50077. },
  50078. backNude: {
  50079. height: math.unit(1.75, "meters"),
  50080. name: "Back (Nude)",
  50081. image: {
  50082. source: "./media/characters/misu/back-nude.svg",
  50083. extra: 1762/1618,
  50084. bottom: 146/1908
  50085. }
  50086. },
  50087. frontErect: {
  50088. height: math.unit(1.75, "meters"),
  50089. name: "Front (Erect)",
  50090. image: {
  50091. source: "./media/characters/misu/front-erect.svg",
  50092. extra: 1690/1558,
  50093. bottom: 234/1924
  50094. }
  50095. },
  50096. maw: {
  50097. height: math.unit(0.47, "meters"),
  50098. name: "Maw",
  50099. image: {
  50100. source: "./media/characters/misu/maw.svg"
  50101. }
  50102. },
  50103. head: {
  50104. height: math.unit(0.35, "meters"),
  50105. name: "Head",
  50106. image: {
  50107. source: "./media/characters/misu/head.svg"
  50108. }
  50109. },
  50110. rear: {
  50111. height: math.unit(0.47, "meters"),
  50112. name: "Rear",
  50113. image: {
  50114. source: "./media/characters/misu/rear.svg"
  50115. }
  50116. },
  50117. },
  50118. [
  50119. {
  50120. name: "Normal",
  50121. height: math.unit(1.75, "meters")
  50122. },
  50123. {
  50124. name: "Not good for the people",
  50125. height: math.unit(42, "meters")
  50126. },
  50127. {
  50128. name: "Not good for the neighborhood",
  50129. height: math.unit(135, "meters")
  50130. },
  50131. {
  50132. name: "Bit bigger problem",
  50133. height: math.unit(380, "meters"),
  50134. default: true
  50135. },
  50136. {
  50137. name: "Not good for the city",
  50138. height: math.unit(1.5, "km")
  50139. },
  50140. {
  50141. name: "Not good for the county",
  50142. height: math.unit(5.5, "km")
  50143. },
  50144. {
  50145. name: "Not good for the state",
  50146. height: math.unit(25, "km")
  50147. },
  50148. {
  50149. name: "Not good for the country",
  50150. height: math.unit(125, "km")
  50151. },
  50152. {
  50153. name: "Not good for the continent",
  50154. height: math.unit(2100, "km")
  50155. },
  50156. {
  50157. name: "Not good for the planet",
  50158. height: math.unit(35000, "km")
  50159. },
  50160. {
  50161. name: "Just no",
  50162. height: math.unit(8.5e18, "km")
  50163. },
  50164. ]
  50165. ))
  50166. characterMakers.push(() => makeCharacter(
  50167. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50168. {
  50169. front: {
  50170. height: math.unit(6.5, "feet"),
  50171. name: "Front",
  50172. image: {
  50173. source: "./media/characters/poppy/front.svg",
  50174. extra: 1878/1812,
  50175. bottom: 43/1921
  50176. }
  50177. },
  50178. feet: {
  50179. height: math.unit(1.06, "feet"),
  50180. name: "Feet",
  50181. image: {
  50182. source: "./media/characters/poppy/feet.svg",
  50183. extra: 1083/1083,
  50184. bottom: 87/1170
  50185. }
  50186. },
  50187. },
  50188. [
  50189. {
  50190. name: "Human",
  50191. height: math.unit(6.5, "feet")
  50192. },
  50193. {
  50194. name: "Default",
  50195. height: math.unit(300, "feet"),
  50196. default: true
  50197. },
  50198. {
  50199. name: "Huge",
  50200. height: math.unit(850, "feet")
  50201. },
  50202. {
  50203. name: "Mega",
  50204. height: math.unit(8000, "feet")
  50205. },
  50206. {
  50207. name: "Giga",
  50208. height: math.unit(300, "miles")
  50209. },
  50210. ]
  50211. ))
  50212. characterMakers.push(() => makeCharacter(
  50213. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50214. {
  50215. bipedal: {
  50216. height: math.unit(7, "feet"),
  50217. name: "Bipedal",
  50218. image: {
  50219. source: "./media/characters/zener/bipedal.svg",
  50220. extra: 874/805,
  50221. bottom: 109/983
  50222. }
  50223. },
  50224. quadrupedal: {
  50225. height: math.unit(4.64, "feet"),
  50226. name: "Quadrupedal",
  50227. image: {
  50228. source: "./media/characters/zener/quadrupedal.svg",
  50229. extra: 638/507,
  50230. bottom: 190/828
  50231. }
  50232. },
  50233. cock: {
  50234. height: math.unit(18, "inches"),
  50235. name: "Cock",
  50236. image: {
  50237. source: "./media/characters/zener/cock.svg"
  50238. }
  50239. },
  50240. },
  50241. [
  50242. {
  50243. name: "Normal",
  50244. height: math.unit(7, "feet"),
  50245. default: true
  50246. },
  50247. ]
  50248. ))
  50249. characterMakers.push(() => makeCharacter(
  50250. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50251. {
  50252. nude: {
  50253. height: math.unit(5 + 6/12, "feet"),
  50254. name: "Nude",
  50255. image: {
  50256. source: "./media/characters/charlie-dog/nude.svg",
  50257. extra: 768/734,
  50258. bottom: 26/794
  50259. }
  50260. },
  50261. dressed: {
  50262. height: math.unit(5 + 6/12, "feet"),
  50263. name: "Dressed",
  50264. image: {
  50265. source: "./media/characters/charlie-dog/dressed.svg",
  50266. extra: 768/734,
  50267. bottom: 26/794
  50268. }
  50269. },
  50270. },
  50271. [
  50272. {
  50273. name: "Normal",
  50274. height: math.unit(5 + 6/12, "feet"),
  50275. default: true
  50276. },
  50277. ]
  50278. ))
  50279. characterMakers.push(() => makeCharacter(
  50280. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50281. {
  50282. front: {
  50283. height: math.unit(6 + 4/12, "feet"),
  50284. name: "Front",
  50285. image: {
  50286. source: "./media/characters/ir'istrasz/front.svg",
  50287. extra: 1014/977,
  50288. bottom: 65/1079
  50289. }
  50290. },
  50291. back: {
  50292. height: math.unit(6 + 4/12, "feet"),
  50293. name: "Back",
  50294. image: {
  50295. source: "./media/characters/ir'istrasz/back.svg",
  50296. extra: 1024/992,
  50297. bottom: 34/1058
  50298. }
  50299. },
  50300. },
  50301. [
  50302. {
  50303. name: "Normal",
  50304. height: math.unit(6 + 4/12, "feet"),
  50305. default: true
  50306. },
  50307. ]
  50308. ))
  50309. characterMakers.push(() => makeCharacter(
  50310. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50311. {
  50312. front: {
  50313. height: math.unit(5 + 8/12, "feet"),
  50314. name: "Front",
  50315. image: {
  50316. source: "./media/characters/dee-ditto/front.svg",
  50317. extra: 1874/1785,
  50318. bottom: 68/1942
  50319. }
  50320. },
  50321. back: {
  50322. height: math.unit(5 + 8/12, "feet"),
  50323. name: "Back",
  50324. image: {
  50325. source: "./media/characters/dee-ditto/back.svg",
  50326. extra: 1870/1783,
  50327. bottom: 77/1947
  50328. }
  50329. },
  50330. },
  50331. [
  50332. {
  50333. name: "Normal",
  50334. height: math.unit(5 + 8/12, "feet"),
  50335. default: true
  50336. },
  50337. ]
  50338. ))
  50339. characterMakers.push(() => makeCharacter(
  50340. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50341. {
  50342. front: {
  50343. height: math.unit(7 + 6/12, "feet"),
  50344. name: "Front",
  50345. image: {
  50346. source: "./media/characters/fey/front.svg",
  50347. extra: 995/979,
  50348. bottom: 30/1025
  50349. }
  50350. },
  50351. back: {
  50352. height: math.unit(7 + 6/12, "feet"),
  50353. name: "Back",
  50354. image: {
  50355. source: "./media/characters/fey/back.svg",
  50356. extra: 1079/1008,
  50357. bottom: 5/1084
  50358. }
  50359. },
  50360. dressed: {
  50361. height: math.unit(7 + 6/12, "feet"),
  50362. name: "Dressed",
  50363. image: {
  50364. source: "./media/characters/fey/dressed.svg",
  50365. extra: 995/979,
  50366. bottom: 30/1025
  50367. }
  50368. },
  50369. },
  50370. [
  50371. {
  50372. name: "Normal",
  50373. height: math.unit(7 + 6/12, "feet"),
  50374. default: true
  50375. },
  50376. ]
  50377. ))
  50378. characterMakers.push(() => makeCharacter(
  50379. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50380. {
  50381. standing: {
  50382. height: math.unit(17, "feet"),
  50383. name: "Standing",
  50384. image: {
  50385. source: "./media/characters/aster/standing.svg",
  50386. extra: 1798/1598,
  50387. bottom: 117/1915
  50388. }
  50389. },
  50390. },
  50391. [
  50392. {
  50393. name: "Normal",
  50394. height: math.unit(17, "feet"),
  50395. default: true
  50396. },
  50397. {
  50398. name: "Homewrecker",
  50399. height: math.unit(95, "feet")
  50400. },
  50401. {
  50402. name: "Planet Devourer",
  50403. height: math.unit(1008000, "miles")
  50404. },
  50405. ]
  50406. ))
  50407. characterMakers.push(() => makeCharacter(
  50408. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50409. {
  50410. front: {
  50411. height: math.unit(6 + 5/12, "feet"),
  50412. weight: math.unit(265, "lb"),
  50413. name: "Front",
  50414. image: {
  50415. source: "./media/characters/devon-childs/front.svg",
  50416. extra: 1795/1721,
  50417. bottom: 41/1836
  50418. }
  50419. },
  50420. side: {
  50421. height: math.unit(6 + 5/12, "feet"),
  50422. weight: math.unit(265, "lb"),
  50423. name: "Side",
  50424. image: {
  50425. source: "./media/characters/devon-childs/side.svg",
  50426. extra: 1812/1738,
  50427. bottom: 30/1842
  50428. }
  50429. },
  50430. back: {
  50431. height: math.unit(6 + 5/12, "feet"),
  50432. weight: math.unit(265, "lb"),
  50433. name: "Back",
  50434. image: {
  50435. source: "./media/characters/devon-childs/back.svg",
  50436. extra: 1808/1735,
  50437. bottom: 23/1831
  50438. }
  50439. },
  50440. hand: {
  50441. height: math.unit(1.464, "feet"),
  50442. name: "Hand",
  50443. image: {
  50444. source: "./media/characters/devon-childs/hand.svg"
  50445. }
  50446. },
  50447. foot: {
  50448. height: math.unit(1.6, "feet"),
  50449. name: "Foot",
  50450. image: {
  50451. source: "./media/characters/devon-childs/foot.svg"
  50452. }
  50453. },
  50454. },
  50455. [
  50456. {
  50457. name: "Micro",
  50458. height: math.unit(7, "cm")
  50459. },
  50460. {
  50461. name: "Normal",
  50462. height: math.unit(6 + 5/12, "feet"),
  50463. default: true
  50464. },
  50465. {
  50466. name: "Macro",
  50467. height: math.unit(154, "feet")
  50468. },
  50469. ]
  50470. ))
  50471. characterMakers.push(() => makeCharacter(
  50472. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50473. {
  50474. front: {
  50475. height: math.unit(6, "feet"),
  50476. weight: math.unit(180, "lb"),
  50477. name: "Front",
  50478. image: {
  50479. source: "./media/characters/lydemox-vir/front.svg",
  50480. extra: 1632/1435,
  50481. bottom: 58/1690
  50482. }
  50483. },
  50484. frontSFW: {
  50485. height: math.unit(6, "feet"),
  50486. weight: math.unit(180, "lb"),
  50487. name: "Front (SFW)",
  50488. image: {
  50489. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50490. extra: 1632/1435,
  50491. bottom: 58/1690
  50492. }
  50493. },
  50494. back: {
  50495. height: math.unit(6, "feet"),
  50496. weight: math.unit(180, "lb"),
  50497. name: "Back",
  50498. image: {
  50499. source: "./media/characters/lydemox-vir/back.svg",
  50500. extra: 1593/1408,
  50501. bottom: 31/1624
  50502. }
  50503. },
  50504. paw: {
  50505. height: math.unit(1.85, "feet"),
  50506. name: "Paw",
  50507. image: {
  50508. source: "./media/characters/lydemox-vir/paw.svg"
  50509. }
  50510. },
  50511. dick: {
  50512. height: math.unit(1.8, "feet"),
  50513. name: "Dick",
  50514. image: {
  50515. source: "./media/characters/lydemox-vir/dick.svg"
  50516. }
  50517. },
  50518. },
  50519. [
  50520. {
  50521. name: "Macro",
  50522. height: math.unit(100, "feet"),
  50523. default: true
  50524. },
  50525. {
  50526. name: "Teramacro",
  50527. height: math.unit(1, "earth")
  50528. },
  50529. {
  50530. name: "Planetary",
  50531. height: math.unit(20, "earths")
  50532. },
  50533. ]
  50534. ))
  50535. characterMakers.push(() => makeCharacter(
  50536. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50537. {
  50538. front: {
  50539. height: math.unit(15 + 8/12, "feet"),
  50540. weight: math.unit(1237, "kg"),
  50541. name: "Front",
  50542. image: {
  50543. source: "./media/characters/mia/front.svg",
  50544. extra: 1573/1446,
  50545. bottom: 58/1631
  50546. }
  50547. },
  50548. },
  50549. [
  50550. {
  50551. name: "Small",
  50552. height: math.unit(9 + 5/12, "feet")
  50553. },
  50554. {
  50555. name: "Normal",
  50556. height: math.unit(15 + 8/12, "feet"),
  50557. default: true
  50558. },
  50559. ]
  50560. ))
  50561. characterMakers.push(() => makeCharacter(
  50562. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50563. {
  50564. front: {
  50565. height: math.unit(10 + 6/12, "feet"),
  50566. weight: math.unit(1.3, "tons"),
  50567. name: "Front",
  50568. image: {
  50569. source: "./media/characters/mr-graves/front.svg",
  50570. extra: 1779/1695,
  50571. bottom: 198/1977
  50572. }
  50573. },
  50574. },
  50575. [
  50576. {
  50577. name: "Normal",
  50578. height: math.unit(10 + 6 /12, "feet"),
  50579. default: true
  50580. },
  50581. ]
  50582. ))
  50583. characterMakers.push(() => makeCharacter(
  50584. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50585. {
  50586. dressedFront: {
  50587. height: math.unit(5 + 8/12, "feet"),
  50588. weight: math.unit(125, "lb"),
  50589. name: "Dressed (Front)",
  50590. image: {
  50591. source: "./media/characters/jess/dressed-front.svg",
  50592. extra: 1176/1152,
  50593. bottom: 42/1218
  50594. }
  50595. },
  50596. dressedSide: {
  50597. height: math.unit(5 + 8/12, "feet"),
  50598. weight: math.unit(125, "lb"),
  50599. name: "Dressed (Side)",
  50600. image: {
  50601. source: "./media/characters/jess/dressed-side.svg",
  50602. extra: 1204/1190,
  50603. bottom: 6/1210
  50604. }
  50605. },
  50606. nudeFront: {
  50607. height: math.unit(5 + 8/12, "feet"),
  50608. weight: math.unit(125, "lb"),
  50609. name: "Nude (Front)",
  50610. image: {
  50611. source: "./media/characters/jess/nude-front.svg",
  50612. extra: 1176/1152,
  50613. bottom: 42/1218
  50614. }
  50615. },
  50616. nudeSide: {
  50617. height: math.unit(5 + 8/12, "feet"),
  50618. weight: math.unit(125, "lb"),
  50619. name: "Nude (Side)",
  50620. image: {
  50621. source: "./media/characters/jess/nude-side.svg",
  50622. extra: 1204/1190,
  50623. bottom: 6/1210
  50624. }
  50625. },
  50626. organsFront: {
  50627. height: math.unit(2.83799342105, "feet"),
  50628. name: "Organs (Front)",
  50629. image: {
  50630. source: "./media/characters/jess/organs-front.svg"
  50631. }
  50632. },
  50633. organsSide: {
  50634. height: math.unit(2.64225290474, "feet"),
  50635. name: "Organs (Side)",
  50636. image: {
  50637. source: "./media/characters/jess/organs-side.svg"
  50638. }
  50639. },
  50640. digestiveTractFront: {
  50641. height: math.unit(2.8106580871, "feet"),
  50642. name: "Digestive Tract (Front)",
  50643. image: {
  50644. source: "./media/characters/jess/digestive-tract-front.svg"
  50645. }
  50646. },
  50647. digestiveTractSide: {
  50648. height: math.unit(2.54365045014, "feet"),
  50649. name: "Digestive Tract (Side)",
  50650. image: {
  50651. source: "./media/characters/jess/digestive-tract-side.svg"
  50652. }
  50653. },
  50654. respiratorySystemFront: {
  50655. height: math.unit(1.11196233456, "feet"),
  50656. name: "Respiratory System (Front)",
  50657. image: {
  50658. source: "./media/characters/jess/respiratory-system-front.svg"
  50659. }
  50660. },
  50661. respiratorySystemSide: {
  50662. height: math.unit(0.89327966297, "feet"),
  50663. name: "Respiratory System (Side)",
  50664. image: {
  50665. source: "./media/characters/jess/respiratory-system-side.svg"
  50666. }
  50667. },
  50668. urinaryTractFront: {
  50669. height: math.unit(1.16126356186, "feet"),
  50670. name: "Urinary Tract (Front)",
  50671. image: {
  50672. source: "./media/characters/jess/urinary-tract-front.svg"
  50673. }
  50674. },
  50675. urinaryTractSide: {
  50676. height: math.unit(1.20910039627, "feet"),
  50677. name: "Urinary Tract (Side)",
  50678. image: {
  50679. source: "./media/characters/jess/urinary-tract-side.svg"
  50680. }
  50681. },
  50682. reproductiveOrgansFront: {
  50683. height: math.unit(0.48422591566, "feet"),
  50684. name: "Reproductive Organs (Front)",
  50685. image: {
  50686. source: "./media/characters/jess/reproductive-organs-front.svg"
  50687. }
  50688. },
  50689. reproductiveOrgansSide: {
  50690. height: math.unit(0.61553314481, "feet"),
  50691. name: "Reproductive Organs (Side)",
  50692. image: {
  50693. source: "./media/characters/jess/reproductive-organs-side.svg"
  50694. }
  50695. },
  50696. breastsFront: {
  50697. height: math.unit(0.47690395121, "feet"),
  50698. name: "Breasts (Front)",
  50699. image: {
  50700. source: "./media/characters/jess/breasts-front.svg"
  50701. }
  50702. },
  50703. breastsSide: {
  50704. height: math.unit(0.30556998307, "feet"),
  50705. name: "Breasts (Side)",
  50706. image: {
  50707. source: "./media/characters/jess/breasts-side.svg"
  50708. }
  50709. },
  50710. heartFront: {
  50711. height: math.unit(0.53011022622, "feet"),
  50712. name: "Heart (Front)",
  50713. image: {
  50714. source: "./media/characters/jess/heart-front.svg"
  50715. }
  50716. },
  50717. heartSide: {
  50718. height: math.unit(0.51790695213, "feet"),
  50719. name: "Heart (Side)",
  50720. image: {
  50721. source: "./media/characters/jess/heart-side.svg"
  50722. }
  50723. },
  50724. earsAndNoseFront: {
  50725. height: math.unit(0.29385483995, "feet"),
  50726. name: "Ears and Nose (Front)",
  50727. image: {
  50728. source: "./media/characters/jess/ears-and-nose-front.svg"
  50729. }
  50730. },
  50731. earsAndNoseSide: {
  50732. height: math.unit(0.18109658741, "feet"),
  50733. name: "Ears and Nose (Side)",
  50734. image: {
  50735. source: "./media/characters/jess/ears-and-nose-side.svg"
  50736. }
  50737. },
  50738. },
  50739. [
  50740. {
  50741. name: "Normal",
  50742. height: math.unit(5 + 8/12, "feet"),
  50743. default: true
  50744. },
  50745. ]
  50746. ))
  50747. characterMakers.push(() => makeCharacter(
  50748. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50749. {
  50750. front: {
  50751. height: math.unit(6, "feet"),
  50752. weight: math.unit(6.64467e-7, "grams"),
  50753. name: "Front",
  50754. image: {
  50755. source: "./media/characters/wimpering/front.svg",
  50756. extra: 597/587,
  50757. bottom: 34/631
  50758. }
  50759. },
  50760. },
  50761. [
  50762. {
  50763. name: "Micro",
  50764. height: math.unit(0.4, "mm"),
  50765. default: true
  50766. },
  50767. ]
  50768. ))
  50769. characterMakers.push(() => makeCharacter(
  50770. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50771. {
  50772. front: {
  50773. height: math.unit(5 + 2/12, "feet"),
  50774. weight: math.unit(110, "lb"),
  50775. name: "Front",
  50776. image: {
  50777. source: "./media/characters/keltre/front.svg",
  50778. extra: 1099/1057,
  50779. bottom: 22/1121
  50780. }
  50781. },
  50782. back: {
  50783. height: math.unit(5 + 2/12, "feet"),
  50784. weight: math.unit(110, "lb"),
  50785. name: "Back",
  50786. image: {
  50787. source: "./media/characters/keltre/back.svg",
  50788. extra: 1095/1053,
  50789. bottom: 17/1112
  50790. }
  50791. },
  50792. dressed: {
  50793. height: math.unit(5 + 2/12, "feet"),
  50794. weight: math.unit(110, "lb"),
  50795. name: "Dressed",
  50796. image: {
  50797. source: "./media/characters/keltre/dressed.svg",
  50798. extra: 1099/1057,
  50799. bottom: 22/1121
  50800. }
  50801. },
  50802. winter: {
  50803. height: math.unit(5 + 2/12, "feet"),
  50804. weight: math.unit(110, "lb"),
  50805. name: "Winter",
  50806. image: {
  50807. source: "./media/characters/keltre/winter.svg",
  50808. extra: 1099/1057,
  50809. bottom: 22/1121
  50810. }
  50811. },
  50812. head: {
  50813. height: math.unit(1.61 * 0.86, "feet"),
  50814. name: "Head",
  50815. image: {
  50816. source: "./media/characters/keltre/head.svg",
  50817. extra: 534/421,
  50818. bottom: 0/534
  50819. }
  50820. },
  50821. hand: {
  50822. height: math.unit(1.3 * 0.86, "feet"),
  50823. name: "Hand",
  50824. image: {
  50825. source: "./media/characters/keltre/hand.svg"
  50826. }
  50827. },
  50828. foot: {
  50829. height: math.unit(1.8 * 0.86, "feet"),
  50830. name: "Foot",
  50831. image: {
  50832. source: "./media/characters/keltre/foot.svg"
  50833. }
  50834. },
  50835. },
  50836. [
  50837. {
  50838. name: "Fine",
  50839. height: math.unit(1, "inch")
  50840. },
  50841. {
  50842. name: "Dimnutive",
  50843. height: math.unit(4, "inches")
  50844. },
  50845. {
  50846. name: "Tiny",
  50847. height: math.unit(1, "foot")
  50848. },
  50849. {
  50850. name: "Small",
  50851. height: math.unit(3, "feet")
  50852. },
  50853. {
  50854. name: "Normal",
  50855. height: math.unit(5 + 2/12, "feet"),
  50856. default: true
  50857. },
  50858. ]
  50859. ))
  50860. characterMakers.push(() => makeCharacter(
  50861. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50862. {
  50863. front: {
  50864. height: math.unit(6 + 2/12, "feet"),
  50865. name: "Front",
  50866. image: {
  50867. source: "./media/characters/nox/front.svg",
  50868. extra: 1917/1830,
  50869. bottom: 74/1991
  50870. }
  50871. },
  50872. back: {
  50873. height: math.unit(6 + 2/12, "feet"),
  50874. name: "Back",
  50875. image: {
  50876. source: "./media/characters/nox/back.svg",
  50877. extra: 1896/1815,
  50878. bottom: 21/1917
  50879. }
  50880. },
  50881. head: {
  50882. height: math.unit(1.1, "feet"),
  50883. name: "Head",
  50884. image: {
  50885. source: "./media/characters/nox/head.svg",
  50886. extra: 874/704,
  50887. bottom: 0/874
  50888. }
  50889. },
  50890. tattoo: {
  50891. height: math.unit(0.729, "feet"),
  50892. name: "Tattoo",
  50893. image: {
  50894. source: "./media/characters/nox/tattoo.svg"
  50895. }
  50896. },
  50897. },
  50898. [
  50899. {
  50900. name: "Normal",
  50901. height: math.unit(6 + 2/12, "feet")
  50902. },
  50903. {
  50904. name: "Gigamacro",
  50905. height: math.unit(2, "earths"),
  50906. default: true
  50907. },
  50908. {
  50909. name: "Cosmic",
  50910. height: math.unit(867, "yottameters")
  50911. },
  50912. ]
  50913. ))
  50914. characterMakers.push(() => makeCharacter(
  50915. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50916. {
  50917. front: {
  50918. height: math.unit(6, "feet"),
  50919. weight: math.unit(150, "lb"),
  50920. name: "Front",
  50921. image: {
  50922. source: "./media/characters/caspian/front.svg",
  50923. extra: 1443/1359,
  50924. bottom: 0/1443
  50925. }
  50926. },
  50927. back: {
  50928. height: math.unit(6, "feet"),
  50929. weight: math.unit(150, "lb"),
  50930. name: "Back",
  50931. image: {
  50932. source: "./media/characters/caspian/back.svg",
  50933. extra: 1379/1309,
  50934. bottom: 0/1379
  50935. }
  50936. },
  50937. head: {
  50938. height: math.unit(0.9, "feet"),
  50939. name: "Head",
  50940. image: {
  50941. source: "./media/characters/caspian/head.svg",
  50942. extra: 692/492,
  50943. bottom: 0/692
  50944. }
  50945. },
  50946. headAlt: {
  50947. height: math.unit(0.95, "feet"),
  50948. name: "Head (Alt)",
  50949. image: {
  50950. source: "./media/characters/caspian/head-alt.svg",
  50951. extra: 668/508,
  50952. bottom: 0/668
  50953. }
  50954. },
  50955. hand: {
  50956. height: math.unit(0.8, "feet"),
  50957. name: "Hand",
  50958. image: {
  50959. source: "./media/characters/caspian/hand.svg"
  50960. }
  50961. },
  50962. paw: {
  50963. height: math.unit(0.95, "feet"),
  50964. name: "Paw",
  50965. image: {
  50966. source: "./media/characters/caspian/paw.svg"
  50967. }
  50968. },
  50969. },
  50970. [
  50971. {
  50972. name: "Normal",
  50973. height: math.unit(162, "feet"),
  50974. default: true
  50975. },
  50976. ]
  50977. ))
  50978. characterMakers.push(() => makeCharacter(
  50979. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50980. {
  50981. front: {
  50982. height: math.unit(6, "feet"),
  50983. name: "Front",
  50984. image: {
  50985. source: "./media/characters/myra-aisling/front.svg",
  50986. extra: 1268/1166,
  50987. bottom: 73/1341
  50988. }
  50989. },
  50990. back: {
  50991. height: math.unit(6, "feet"),
  50992. name: "Back",
  50993. image: {
  50994. source: "./media/characters/myra-aisling/back.svg",
  50995. extra: 1249/1149,
  50996. bottom: 79/1328
  50997. }
  50998. },
  50999. dressed: {
  51000. height: math.unit(6, "feet"),
  51001. name: "Dressed",
  51002. image: {
  51003. source: "./media/characters/myra-aisling/dressed.svg",
  51004. extra: 1290/1189,
  51005. bottom: 47/1337
  51006. }
  51007. },
  51008. hand: {
  51009. height: math.unit(1.1, "feet"),
  51010. name: "Hand",
  51011. image: {
  51012. source: "./media/characters/myra-aisling/hand.svg"
  51013. }
  51014. },
  51015. paw: {
  51016. height: math.unit(1.23, "feet"),
  51017. name: "Paw",
  51018. image: {
  51019. source: "./media/characters/myra-aisling/paw.svg"
  51020. }
  51021. },
  51022. },
  51023. [
  51024. {
  51025. name: "Normal",
  51026. height: math.unit(160, "feet"),
  51027. default: true
  51028. },
  51029. ]
  51030. ))
  51031. characterMakers.push(() => makeCharacter(
  51032. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51033. {
  51034. front: {
  51035. height: math.unit(6, "feet"),
  51036. name: "Front",
  51037. image: {
  51038. source: "./media/characters/tenley-sidero/front.svg",
  51039. extra: 1365/1276,
  51040. bottom: 47/1412
  51041. }
  51042. },
  51043. back: {
  51044. height: math.unit(6, "feet"),
  51045. name: "Back",
  51046. image: {
  51047. source: "./media/characters/tenley-sidero/back.svg",
  51048. extra: 1383/1283,
  51049. bottom: 35/1418
  51050. }
  51051. },
  51052. dressed: {
  51053. height: math.unit(6, "feet"),
  51054. name: "Dressed",
  51055. image: {
  51056. source: "./media/characters/tenley-sidero/dressed.svg",
  51057. extra: 1364/1275,
  51058. bottom: 42/1406
  51059. }
  51060. },
  51061. head: {
  51062. height: math.unit(1.47, "feet"),
  51063. name: "Head",
  51064. image: {
  51065. source: "./media/characters/tenley-sidero/head.svg",
  51066. extra: 610/490,
  51067. bottom: 0/610
  51068. }
  51069. },
  51070. },
  51071. [
  51072. {
  51073. name: "Normal",
  51074. height: math.unit(154, "feet"),
  51075. default: true
  51076. },
  51077. ]
  51078. ))
  51079. characterMakers.push(() => makeCharacter(
  51080. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51081. {
  51082. front: {
  51083. height: math.unit(5, "inches"),
  51084. name: "Front",
  51085. image: {
  51086. source: "./media/characters/mallory/front.svg",
  51087. extra: 1919/1678,
  51088. bottom: 29/1948
  51089. }
  51090. },
  51091. hand: {
  51092. height: math.unit(0.73, "inches"),
  51093. name: "Hand",
  51094. image: {
  51095. source: "./media/characters/mallory/hand.svg"
  51096. }
  51097. },
  51098. paw: {
  51099. height: math.unit(0.68, "inches"),
  51100. name: "Paw",
  51101. image: {
  51102. source: "./media/characters/mallory/paw.svg"
  51103. }
  51104. },
  51105. },
  51106. [
  51107. {
  51108. name: "Small",
  51109. height: math.unit(5, "inches"),
  51110. default: true
  51111. },
  51112. ]
  51113. ))
  51114. characterMakers.push(() => makeCharacter(
  51115. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51116. {
  51117. naked: {
  51118. height: math.unit(6, "feet"),
  51119. name: "Naked",
  51120. image: {
  51121. source: "./media/characters/mab/naked.svg",
  51122. extra: 1855/1757,
  51123. bottom: 208/2063
  51124. }
  51125. },
  51126. outside: {
  51127. height: math.unit(6, "feet"),
  51128. name: "Outside",
  51129. image: {
  51130. source: "./media/characters/mab/outside.svg",
  51131. extra: 1855/1757,
  51132. bottom: 208/2063
  51133. }
  51134. },
  51135. party: {
  51136. height: math.unit(6, "feet"),
  51137. name: "Party",
  51138. image: {
  51139. source: "./media/characters/mab/party.svg",
  51140. extra: 1855/1757,
  51141. bottom: 208/2063
  51142. }
  51143. },
  51144. },
  51145. [
  51146. {
  51147. name: "Normal",
  51148. height: math.unit(165, "feet"),
  51149. default: true
  51150. },
  51151. ]
  51152. ))
  51153. characterMakers.push(() => makeCharacter(
  51154. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51155. {
  51156. feral: {
  51157. height: math.unit(12, "feet"),
  51158. weight: math.unit(20000, "lb"),
  51159. name: "Side",
  51160. image: {
  51161. source: "./media/characters/winter/feral.svg",
  51162. extra: 1286/943,
  51163. bottom: 112/1398
  51164. },
  51165. form: "feral",
  51166. default: true
  51167. },
  51168. feralNsfw: {
  51169. height: math.unit(12, "feet"),
  51170. weight: math.unit(20000, "lb"),
  51171. name: "Side (NSFW)",
  51172. image: {
  51173. source: "./media/characters/winter/feral-nsfw.svg",
  51174. extra: 1286/943,
  51175. bottom: 112/1398
  51176. },
  51177. form: "feral"
  51178. },
  51179. dick: {
  51180. height: math.unit(3.79, "feet"),
  51181. name: "Dick",
  51182. image: {
  51183. source: "./media/characters/winter/dick.svg"
  51184. },
  51185. form: "feral"
  51186. },
  51187. anthro: {
  51188. height: math.unit(12, "feet"),
  51189. weight: math.unit(10, "tons"),
  51190. name: "Anthro",
  51191. image: {
  51192. source: "./media/characters/winter/anthro.svg",
  51193. extra: 1701/1553,
  51194. bottom: 64/1765
  51195. },
  51196. form: "anthro",
  51197. default: true
  51198. },
  51199. },
  51200. [
  51201. {
  51202. name: "Big",
  51203. height: math.unit(12, "feet"),
  51204. default: true,
  51205. form: "feral"
  51206. },
  51207. {
  51208. name: "Big",
  51209. height: math.unit(12, "feet"),
  51210. default: true,
  51211. form: "anthro"
  51212. },
  51213. ],
  51214. {
  51215. "feral": {
  51216. name: "Feral",
  51217. default: true
  51218. },
  51219. "anthro": {
  51220. name: "Anthro"
  51221. }
  51222. }
  51223. ))
  51224. characterMakers.push(() => makeCharacter(
  51225. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51226. {
  51227. front: {
  51228. height: math.unit(4.1, "inches"),
  51229. name: "Front",
  51230. image: {
  51231. source: "./media/characters/alto/front.svg",
  51232. extra: 736/627,
  51233. bottom: 90/826
  51234. }
  51235. },
  51236. },
  51237. [
  51238. {
  51239. name: "Normal",
  51240. height: math.unit(4.1, "inches"),
  51241. default: true
  51242. },
  51243. ]
  51244. ))
  51245. characterMakers.push(() => makeCharacter(
  51246. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51247. {
  51248. sitting: {
  51249. height: math.unit(3, "feet"),
  51250. name: "Sitting",
  51251. image: {
  51252. source: "./media/characters/ratstrid-v/sitting.svg",
  51253. extra: 355/310,
  51254. bottom: 136/491
  51255. }
  51256. },
  51257. },
  51258. [
  51259. {
  51260. name: "Normal",
  51261. height: math.unit(3, "feet"),
  51262. default: true
  51263. },
  51264. ]
  51265. ))
  51266. characterMakers.push(() => makeCharacter(
  51267. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51268. {
  51269. back: {
  51270. height: math.unit(6, "feet"),
  51271. weight: math.unit(450, "lb"),
  51272. name: "Back",
  51273. image: {
  51274. source: "./media/characters/siz/back.svg",
  51275. extra: 1449/1274,
  51276. bottom: 13/1462
  51277. }
  51278. },
  51279. },
  51280. [
  51281. {
  51282. name: "Smallest",
  51283. height: math.unit(18 + 3/12, "feet")
  51284. },
  51285. {
  51286. name: "Modest",
  51287. height: math.unit(56 + 8/12, "feet"),
  51288. default: true
  51289. },
  51290. {
  51291. name: "Largest",
  51292. height: math.unit(3590, "feet")
  51293. },
  51294. ]
  51295. ))
  51296. characterMakers.push(() => makeCharacter(
  51297. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51298. {
  51299. front: {
  51300. height: math.unit(5 + 9/12, "feet"),
  51301. weight: math.unit(150, "lb"),
  51302. name: "Front",
  51303. image: {
  51304. source: "./media/characters/ven/front.svg",
  51305. extra: 1372/1320,
  51306. bottom: 73/1445
  51307. }
  51308. },
  51309. side: {
  51310. height: math.unit(5 + 9/12, "feet"),
  51311. weight: math.unit(1150, "lb"),
  51312. name: "Side",
  51313. image: {
  51314. source: "./media/characters/ven/side.svg",
  51315. extra: 1119/1070,
  51316. bottom: 42/1161
  51317. },
  51318. default: true
  51319. },
  51320. },
  51321. [
  51322. {
  51323. name: "Normal",
  51324. height: math.unit(5 + 9/12, "feet"),
  51325. default: true
  51326. },
  51327. ]
  51328. ))
  51329. characterMakers.push(() => makeCharacter(
  51330. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51331. {
  51332. front: {
  51333. height: math.unit(12, "feet"),
  51334. weight: math.unit(1000, "kg"),
  51335. name: "Front",
  51336. image: {
  51337. source: "./media/characters/maple/front.svg",
  51338. extra: 1193/1081,
  51339. bottom: 22/1215
  51340. }
  51341. },
  51342. },
  51343. [
  51344. {
  51345. name: "Compressed",
  51346. height: math.unit(7, "feet")
  51347. },
  51348. {
  51349. name: "Normal",
  51350. height: math.unit(12, "feet"),
  51351. default: true
  51352. },
  51353. ]
  51354. ))
  51355. characterMakers.push(() => makeCharacter(
  51356. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51357. {
  51358. front: {
  51359. height: math.unit(9, "feet"),
  51360. weight: math.unit(1500, "lb"),
  51361. name: "Front",
  51362. image: {
  51363. source: "./media/characters/nora/front.svg",
  51364. extra: 1348/1286,
  51365. bottom: 218/1566
  51366. }
  51367. },
  51368. erect: {
  51369. height: math.unit(9, "feet"),
  51370. weight: math.unit(11500, "lb"),
  51371. name: "Erect",
  51372. image: {
  51373. source: "./media/characters/nora/erect.svg",
  51374. extra: 1488/1433,
  51375. bottom: 133/1621
  51376. }
  51377. },
  51378. },
  51379. [
  51380. {
  51381. name: "Normal",
  51382. height: math.unit(9, "feet"),
  51383. default: true
  51384. },
  51385. ]
  51386. ))
  51387. characterMakers.push(() => makeCharacter(
  51388. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51389. {
  51390. front: {
  51391. height: math.unit(25, "feet"),
  51392. weight: math.unit(27500, "lb"),
  51393. name: "Front",
  51394. image: {
  51395. source: "./media/characters/north-caudin/front.svg",
  51396. extra: 1184/1082,
  51397. bottom: 23/1207
  51398. }
  51399. },
  51400. },
  51401. [
  51402. {
  51403. name: "Compressed",
  51404. height: math.unit(10, "feet")
  51405. },
  51406. {
  51407. name: "Normal",
  51408. height: math.unit(25, "feet"),
  51409. default: true
  51410. },
  51411. ]
  51412. ))
  51413. characterMakers.push(() => makeCharacter(
  51414. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51415. {
  51416. front: {
  51417. height: math.unit(9, "feet"),
  51418. weight: math.unit(1250, "lb"),
  51419. name: "Front",
  51420. image: {
  51421. source: "./media/characters/merrian/front.svg",
  51422. extra: 2393/2304,
  51423. bottom: 40/2433
  51424. }
  51425. },
  51426. },
  51427. [
  51428. {
  51429. name: "Normal",
  51430. height: math.unit(9, "feet"),
  51431. default: true
  51432. },
  51433. ]
  51434. ))
  51435. characterMakers.push(() => makeCharacter(
  51436. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51437. {
  51438. front: {
  51439. height: math.unit(9, "feet"),
  51440. weight: math.unit(1000, "lb"),
  51441. name: "Front",
  51442. image: {
  51443. source: "./media/characters/hazel/front.svg",
  51444. extra: 2351/2298,
  51445. bottom: 38/2389
  51446. }
  51447. },
  51448. },
  51449. [
  51450. {
  51451. name: "Normal",
  51452. height: math.unit(9, "feet"),
  51453. default: true
  51454. },
  51455. ]
  51456. ))
  51457. characterMakers.push(() => makeCharacter(
  51458. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51459. {
  51460. front: {
  51461. height: math.unit(13, "feet"),
  51462. weight: math.unit(3200, "lb"),
  51463. name: "Front",
  51464. image: {
  51465. source: "./media/characters/emma/front.svg",
  51466. extra: 2263/2029,
  51467. bottom: 68/2331
  51468. }
  51469. },
  51470. },
  51471. [
  51472. {
  51473. name: "Normal",
  51474. height: math.unit(13, "feet"),
  51475. default: true
  51476. },
  51477. ]
  51478. ))
  51479. characterMakers.push(() => makeCharacter(
  51480. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51481. {
  51482. front: {
  51483. height: math.unit(11 + 9/12, "feet"),
  51484. weight: math.unit(2500, "lb"),
  51485. name: "Front",
  51486. image: {
  51487. source: "./media/characters/ilumina/front.svg",
  51488. extra: 2248/2209,
  51489. bottom: 164/2412
  51490. }
  51491. },
  51492. },
  51493. [
  51494. {
  51495. name: "Normal",
  51496. height: math.unit(11 + 9/12, "feet"),
  51497. default: true
  51498. },
  51499. ]
  51500. ))
  51501. characterMakers.push(() => makeCharacter(
  51502. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51503. {
  51504. front: {
  51505. height: math.unit(8 + 10/12, "feet"),
  51506. weight: math.unit(1350, "lb"),
  51507. name: "Front",
  51508. image: {
  51509. source: "./media/characters/moonshine/front.svg",
  51510. extra: 2395/2288,
  51511. bottom: 40/2435
  51512. }
  51513. },
  51514. },
  51515. [
  51516. {
  51517. name: "Normal",
  51518. height: math.unit(8 + 10/12, "feet"),
  51519. default: true
  51520. },
  51521. ]
  51522. ))
  51523. characterMakers.push(() => makeCharacter(
  51524. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51525. {
  51526. front: {
  51527. height: math.unit(14, "feet"),
  51528. weight: math.unit(3400, "lb"),
  51529. name: "Front",
  51530. image: {
  51531. source: "./media/characters/aletia/front.svg",
  51532. extra: 1185/1052,
  51533. bottom: 21/1206
  51534. }
  51535. },
  51536. },
  51537. [
  51538. {
  51539. name: "Compressed",
  51540. height: math.unit(8, "feet")
  51541. },
  51542. {
  51543. name: "Normal",
  51544. height: math.unit(14, "feet"),
  51545. default: true
  51546. },
  51547. ]
  51548. ))
  51549. characterMakers.push(() => makeCharacter(
  51550. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51551. {
  51552. front: {
  51553. height: math.unit(17, "feet"),
  51554. weight: math.unit(6500, "lb"),
  51555. name: "Front",
  51556. image: {
  51557. source: "./media/characters/deidra/front.svg",
  51558. extra: 1201/1081,
  51559. bottom: 16/1217
  51560. }
  51561. },
  51562. },
  51563. [
  51564. {
  51565. name: "Compressed",
  51566. height: math.unit(9 + 6/12, "feet")
  51567. },
  51568. {
  51569. name: "Normal",
  51570. height: math.unit(17, "feet"),
  51571. default: true
  51572. },
  51573. ]
  51574. ))
  51575. characterMakers.push(() => makeCharacter(
  51576. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51577. {
  51578. front: {
  51579. height: math.unit(7 + 4/12, "feet"),
  51580. weight: math.unit(280, "lb"),
  51581. name: "Front",
  51582. image: {
  51583. source: "./media/characters/freki-yrmori/front.svg",
  51584. extra: 1286/1182,
  51585. bottom: 29/1315
  51586. }
  51587. },
  51588. maw: {
  51589. height: math.unit(0.9, "feet"),
  51590. name: "Maw",
  51591. image: {
  51592. source: "./media/characters/freki-yrmori/maw.svg"
  51593. }
  51594. },
  51595. },
  51596. [
  51597. {
  51598. name: "Normal",
  51599. height: math.unit(7 + 4/12, "feet"),
  51600. default: true
  51601. },
  51602. {
  51603. name: "Macro",
  51604. height: math.unit(38.5, "meters")
  51605. },
  51606. ]
  51607. ))
  51608. characterMakers.push(() => makeCharacter(
  51609. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51610. {
  51611. side: {
  51612. height: math.unit(47.2, "meters"),
  51613. weight: math.unit(10000, "tons"),
  51614. name: "Side",
  51615. image: {
  51616. source: "./media/characters/aetherios/side.svg",
  51617. extra: 2363/642,
  51618. bottom: 221/2584
  51619. }
  51620. },
  51621. top: {
  51622. height: math.unit(240, "meters"),
  51623. weight: math.unit(10000, "tons"),
  51624. name: "Top",
  51625. image: {
  51626. source: "./media/characters/aetherios/top.svg"
  51627. }
  51628. },
  51629. bottom: {
  51630. height: math.unit(240, "meters"),
  51631. weight: math.unit(10000, "tons"),
  51632. name: "Bottom",
  51633. image: {
  51634. source: "./media/characters/aetherios/bottom.svg"
  51635. }
  51636. },
  51637. head: {
  51638. height: math.unit(38.6, "meters"),
  51639. name: "Head",
  51640. image: {
  51641. source: "./media/characters/aetherios/head.svg",
  51642. extra: 1335/1112,
  51643. bottom: 0/1335
  51644. }
  51645. },
  51646. front: {
  51647. height: math.unit(29, "meters"),
  51648. name: "Front",
  51649. image: {
  51650. source: "./media/characters/aetherios/front.svg",
  51651. extra: 1266/953,
  51652. bottom: 158/1424
  51653. }
  51654. },
  51655. maw: {
  51656. height: math.unit(16.37, "meters"),
  51657. name: "Maw",
  51658. image: {
  51659. source: "./media/characters/aetherios/maw.svg",
  51660. extra: 748/637,
  51661. bottom: 0/748
  51662. },
  51663. extraAttributes: {
  51664. preyCapacity: {
  51665. name: "Capacity",
  51666. power: 3,
  51667. type: "volume",
  51668. base: math.unit(1000, "people")
  51669. },
  51670. tongueSize: {
  51671. name: "Tongue Size",
  51672. power: 2,
  51673. type: "area",
  51674. base: math.unit(21, "m^2")
  51675. }
  51676. }
  51677. },
  51678. forepaw: {
  51679. height: math.unit(18, "meters"),
  51680. name: "Forepaw",
  51681. image: {
  51682. source: "./media/characters/aetherios/forepaw.svg"
  51683. }
  51684. },
  51685. hindpaw: {
  51686. height: math.unit(23, "meters"),
  51687. name: "Hindpaw",
  51688. image: {
  51689. source: "./media/characters/aetherios/hindpaw.svg"
  51690. }
  51691. },
  51692. genitals: {
  51693. height: math.unit(42, "meters"),
  51694. name: "Genitals",
  51695. image: {
  51696. source: "./media/characters/aetherios/genitals.svg"
  51697. }
  51698. },
  51699. },
  51700. [
  51701. {
  51702. name: "Normal",
  51703. height: math.unit(47.2, "meters"),
  51704. default: true
  51705. },
  51706. {
  51707. name: "Macro",
  51708. height: math.unit(160, "meters")
  51709. },
  51710. {
  51711. name: "Mega",
  51712. height: math.unit(1.87, "km")
  51713. },
  51714. {
  51715. name: "Giga",
  51716. height: math.unit(40000, "km")
  51717. },
  51718. {
  51719. name: "Stellar",
  51720. height: math.unit(158000000, "km")
  51721. },
  51722. {
  51723. name: "Cosmic",
  51724. height: math.unit(9.46e12, "km")
  51725. },
  51726. ]
  51727. ))
  51728. characterMakers.push(() => makeCharacter(
  51729. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51730. {
  51731. front: {
  51732. height: math.unit(5 + 4/12, "feet"),
  51733. weight: math.unit(80, "lb"),
  51734. name: "Front",
  51735. image: {
  51736. source: "./media/characters/mizu-gieeg/front.svg",
  51737. extra: 850/709,
  51738. bottom: 52/902
  51739. }
  51740. },
  51741. back: {
  51742. height: math.unit(5 + 4/12, "feet"),
  51743. weight: math.unit(80, "lb"),
  51744. name: "Back",
  51745. image: {
  51746. source: "./media/characters/mizu-gieeg/back.svg",
  51747. extra: 882/745,
  51748. bottom: 25/907
  51749. }
  51750. },
  51751. },
  51752. [
  51753. {
  51754. name: "Normal",
  51755. height: math.unit(5 + 4/12, "feet"),
  51756. default: true
  51757. },
  51758. ]
  51759. ))
  51760. characterMakers.push(() => makeCharacter(
  51761. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51762. {
  51763. front: {
  51764. height: math.unit(6, "feet"),
  51765. name: "Front",
  51766. image: {
  51767. source: "./media/characters/roselle-st-papier/front.svg",
  51768. extra: 1430/1280,
  51769. bottom: 37/1467
  51770. }
  51771. },
  51772. back: {
  51773. height: math.unit(6, "feet"),
  51774. name: "Back",
  51775. image: {
  51776. source: "./media/characters/roselle-st-papier/back.svg",
  51777. extra: 1491/1296,
  51778. bottom: 23/1514
  51779. }
  51780. },
  51781. ear: {
  51782. height: math.unit(1.26, "feet"),
  51783. name: "Ear",
  51784. image: {
  51785. source: "./media/characters/roselle-st-papier/ear.svg"
  51786. }
  51787. },
  51788. },
  51789. [
  51790. {
  51791. name: "Normal",
  51792. height: math.unit(150, "feet"),
  51793. default: true
  51794. },
  51795. ]
  51796. ))
  51797. characterMakers.push(() => makeCharacter(
  51798. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51799. {
  51800. front: {
  51801. height: math.unit(1, "inches"),
  51802. name: "Front",
  51803. image: {
  51804. source: "./media/characters/valargent/front.svg",
  51805. extra: 1825/1694,
  51806. bottom: 62/1887
  51807. }
  51808. },
  51809. back: {
  51810. height: math.unit(1, "inches"),
  51811. name: "Back",
  51812. image: {
  51813. source: "./media/characters/valargent/back.svg",
  51814. extra: 1775/1682,
  51815. bottom: 88/1863
  51816. }
  51817. },
  51818. },
  51819. [
  51820. {
  51821. name: "Micro",
  51822. height: math.unit(1, "inch"),
  51823. default: true
  51824. },
  51825. ]
  51826. ))
  51827. characterMakers.push(() => makeCharacter(
  51828. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51829. {
  51830. front: {
  51831. height: math.unit(3.4, "meters"),
  51832. name: "Front",
  51833. image: {
  51834. source: "./media/characters/zarina/front.svg",
  51835. extra: 1733/1425,
  51836. bottom: 93/1826
  51837. }
  51838. },
  51839. squatting: {
  51840. height: math.unit(2.14, "meters"),
  51841. name: "Squatting",
  51842. image: {
  51843. source: "./media/characters/zarina/squatting.svg",
  51844. extra: 1073/788,
  51845. bottom: 63/1136
  51846. }
  51847. },
  51848. back: {
  51849. height: math.unit(2.14, "meters"),
  51850. name: "Back",
  51851. image: {
  51852. source: "./media/characters/zarina/back.svg",
  51853. extra: 1128/885,
  51854. bottom: 0/1128
  51855. }
  51856. },
  51857. },
  51858. [
  51859. {
  51860. name: "Normal",
  51861. height: math.unit(3.4, "meters"),
  51862. default: true
  51863. },
  51864. {
  51865. name: "Big",
  51866. height: math.unit(5, "meters")
  51867. },
  51868. {
  51869. name: "Macro",
  51870. height: math.unit(110, "meters")
  51871. },
  51872. ]
  51873. ))
  51874. characterMakers.push(() => makeCharacter(
  51875. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51876. {
  51877. front: {
  51878. height: math.unit(7, "feet"),
  51879. name: "Front",
  51880. image: {
  51881. source: "./media/characters/ventus-astro-fox/front.svg",
  51882. extra: 1792/1623,
  51883. bottom: 28/1820
  51884. }
  51885. },
  51886. back: {
  51887. height: math.unit(7, "feet"),
  51888. name: "Back",
  51889. image: {
  51890. source: "./media/characters/ventus-astro-fox/back.svg",
  51891. extra: 1789/1620,
  51892. bottom: 31/1820
  51893. }
  51894. },
  51895. outfit: {
  51896. height: math.unit(7, "feet"),
  51897. name: "Outfit",
  51898. image: {
  51899. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51900. extra: 1054/925,
  51901. bottom: 15/1069
  51902. }
  51903. },
  51904. head: {
  51905. height: math.unit(1.12, "feet"),
  51906. name: "Head",
  51907. image: {
  51908. source: "./media/characters/ventus-astro-fox/head.svg",
  51909. extra: 866/504,
  51910. bottom: 0/866
  51911. }
  51912. },
  51913. hand: {
  51914. height: math.unit(1, "feet"),
  51915. name: "Hand",
  51916. image: {
  51917. source: "./media/characters/ventus-astro-fox/hand.svg"
  51918. }
  51919. },
  51920. paw: {
  51921. height: math.unit(1.5, "feet"),
  51922. name: "Paw",
  51923. image: {
  51924. source: "./media/characters/ventus-astro-fox/paw.svg"
  51925. }
  51926. },
  51927. },
  51928. [
  51929. {
  51930. name: "Normal",
  51931. height: math.unit(7, "feet"),
  51932. default: true
  51933. },
  51934. {
  51935. name: "Macro",
  51936. height: math.unit(200, "feet")
  51937. },
  51938. {
  51939. name: "Cosmic",
  51940. height: math.unit(3, "universes")
  51941. },
  51942. ]
  51943. ))
  51944. characterMakers.push(() => makeCharacter(
  51945. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51946. {
  51947. front: {
  51948. height: math.unit(3, "meters"),
  51949. weight: math.unit(7000, "lb"),
  51950. name: "Front",
  51951. image: {
  51952. source: "./media/characters/core-t/front.svg",
  51953. extra: 5729/4941,
  51954. bottom: 1129/6858
  51955. }
  51956. },
  51957. },
  51958. [
  51959. {
  51960. name: "Big",
  51961. height: math.unit(3, "meters"),
  51962. default: true
  51963. },
  51964. ]
  51965. ))
  51966. characterMakers.push(() => makeCharacter(
  51967. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51968. {
  51969. normal: {
  51970. height: math.unit(6 + 6/12, "feet"),
  51971. weight: math.unit(275, "lb"),
  51972. name: "Front",
  51973. image: {
  51974. source: "./media/characters/cadbunny/normal.svg",
  51975. extra: 1129/947,
  51976. bottom: 93/1222
  51977. },
  51978. default: true,
  51979. form: "normal"
  51980. },
  51981. gigantamax: {
  51982. height: math.unit(26, "feet"),
  51983. weight: math.unit(16000, "lb"),
  51984. name: "Front",
  51985. image: {
  51986. source: "./media/characters/cadbunny/gigantamax.svg",
  51987. extra: 1133/944,
  51988. bottom: 90/1223
  51989. },
  51990. default: true,
  51991. form: "gigantamax"
  51992. },
  51993. },
  51994. [
  51995. {
  51996. name: "Normal",
  51997. height: math.unit(6 + 6/12, "feet"),
  51998. default: true,
  51999. form: "normal"
  52000. },
  52001. {
  52002. name: "Small",
  52003. height: math.unit(26, "feet"),
  52004. default: true,
  52005. form: "gigantamax"
  52006. },
  52007. {
  52008. name: "Large",
  52009. height: math.unit(78, "feet"),
  52010. form: "gigantamax"
  52011. },
  52012. ],
  52013. {
  52014. "normal": {
  52015. name: "Normal",
  52016. default: true
  52017. },
  52018. "gigantamax": {
  52019. name: "Gigantamax"
  52020. }
  52021. }
  52022. ))
  52023. characterMakers.push(() => makeCharacter(
  52024. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52025. {
  52026. anthroFront: {
  52027. height: math.unit(8, "feet"),
  52028. weight: math.unit(300, "lb"),
  52029. name: "Front",
  52030. image: {
  52031. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52032. extra: 1272/1176,
  52033. bottom: 53/1325
  52034. },
  52035. form: "anthro",
  52036. default: true
  52037. },
  52038. feralSide: {
  52039. height: math.unit(4, "feet"),
  52040. weight: math.unit(250, "lb"),
  52041. name: "Side",
  52042. image: {
  52043. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52044. extra: 731/621,
  52045. bottom: 0/731
  52046. },
  52047. form: "feral",
  52048. default: true
  52049. },
  52050. },
  52051. [
  52052. {
  52053. name: "Regular",
  52054. height: math.unit(8, "feet"),
  52055. form: "anthro"
  52056. },
  52057. {
  52058. name: "Macro",
  52059. height: math.unit(250, "feet"),
  52060. form: "anthro",
  52061. default: true
  52062. },
  52063. {
  52064. name: "Regular",
  52065. height: math.unit(4, "feet"),
  52066. form: "feral"
  52067. },
  52068. {
  52069. name: "Macro",
  52070. height: math.unit(125, "feet"),
  52071. form: "feral",
  52072. default: true
  52073. },
  52074. ],
  52075. {
  52076. "anthro": {
  52077. name: "Anthro",
  52078. default: true
  52079. },
  52080. "feral": {
  52081. name: "Feral",
  52082. },
  52083. }
  52084. ))
  52085. characterMakers.push(() => makeCharacter(
  52086. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52087. {
  52088. front: {
  52089. height: math.unit(11 + 10/12, "feet"),
  52090. weight: math.unit(1587, "kg"),
  52091. name: "Front",
  52092. image: {
  52093. source: "./media/characters/maple-javira-dragon/front.svg",
  52094. extra: 1136/744,
  52095. bottom: 73/1209
  52096. }
  52097. },
  52098. side: {
  52099. height: math.unit(11 + 10/12, "feet"),
  52100. weight: math.unit(1587, "kg"),
  52101. name: "Side",
  52102. image: {
  52103. source: "./media/characters/maple-javira-dragon/side.svg",
  52104. extra: 712/505,
  52105. bottom: 17/729
  52106. }
  52107. },
  52108. head: {
  52109. height: math.unit(8.05, "feet"),
  52110. name: "Head",
  52111. image: {
  52112. source: "./media/characters/maple-javira-dragon/head.svg",
  52113. extra: 1420/1344,
  52114. bottom: 0/1420
  52115. }
  52116. },
  52117. },
  52118. [
  52119. {
  52120. name: "Normal",
  52121. height: math.unit(11 + 10/12, "feet"),
  52122. default: true
  52123. },
  52124. ]
  52125. ))
  52126. characterMakers.push(() => makeCharacter(
  52127. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52128. {
  52129. front: {
  52130. height: math.unit(117, "cm"),
  52131. weight: math.unit(50, "kg"),
  52132. name: "Front",
  52133. image: {
  52134. source: "./media/characters/sonia-wyverntail/front.svg",
  52135. extra: 708/592,
  52136. bottom: 25/733
  52137. }
  52138. },
  52139. },
  52140. [
  52141. {
  52142. name: "Normal",
  52143. height: math.unit(117, "cm"),
  52144. default: true
  52145. },
  52146. ]
  52147. ))
  52148. characterMakers.push(() => makeCharacter(
  52149. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52150. {
  52151. front: {
  52152. height: math.unit(6 + 5/12, "feet"),
  52153. name: "Front",
  52154. image: {
  52155. source: "./media/characters/micah/front.svg",
  52156. extra: 1758/1546,
  52157. bottom: 214/1972
  52158. }
  52159. },
  52160. },
  52161. [
  52162. {
  52163. name: "Normal",
  52164. height: math.unit(6 + 5/12, "feet"),
  52165. default: true
  52166. },
  52167. ]
  52168. ))
  52169. characterMakers.push(() => makeCharacter(
  52170. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52171. {
  52172. front: {
  52173. height: math.unit(1.75, "meters"),
  52174. weight: math.unit(100, "kg"),
  52175. name: "Front",
  52176. image: {
  52177. source: "./media/characters/zarya/front.svg",
  52178. extra: 741/735,
  52179. bottom: 44/785
  52180. },
  52181. extraAttributes: {
  52182. "tailLength": {
  52183. name: "Tail Length",
  52184. power: 1,
  52185. type: "length",
  52186. base: math.unit(180, "cm")
  52187. },
  52188. "pawLength": {
  52189. name: "Paw Length",
  52190. power: 1,
  52191. type: "length",
  52192. base: math.unit(31, "cm")
  52193. },
  52194. }
  52195. },
  52196. side: {
  52197. height: math.unit(1.75, "meters"),
  52198. weight: math.unit(100, "kg"),
  52199. name: "Side",
  52200. image: {
  52201. source: "./media/characters/zarya/side.svg",
  52202. extra: 776/770,
  52203. bottom: 17/793
  52204. },
  52205. extraAttributes: {
  52206. "tailLength": {
  52207. name: "Tail Length",
  52208. power: 1,
  52209. type: "length",
  52210. base: math.unit(180, "cm")
  52211. },
  52212. "pawLength": {
  52213. name: "Paw Length",
  52214. power: 1,
  52215. type: "length",
  52216. base: math.unit(31, "cm")
  52217. },
  52218. }
  52219. },
  52220. back: {
  52221. height: math.unit(1.75, "meters"),
  52222. weight: math.unit(100, "kg"),
  52223. name: "Back",
  52224. image: {
  52225. source: "./media/characters/zarya/back.svg",
  52226. extra: 741/735,
  52227. bottom: 44/785
  52228. },
  52229. extraAttributes: {
  52230. "tailLength": {
  52231. name: "Tail Length",
  52232. power: 1,
  52233. type: "length",
  52234. base: math.unit(180, "cm")
  52235. },
  52236. "pawLength": {
  52237. name: "Paw Length",
  52238. power: 1,
  52239. type: "length",
  52240. base: math.unit(31, "cm")
  52241. },
  52242. }
  52243. },
  52244. frontNoTail: {
  52245. height: math.unit(1.75, "meters"),
  52246. weight: math.unit(100, "kg"),
  52247. name: "Front (No Tail)",
  52248. image: {
  52249. source: "./media/characters/zarya/front-no-tail.svg",
  52250. extra: 741/735,
  52251. bottom: 44/785
  52252. },
  52253. extraAttributes: {
  52254. "tailLength": {
  52255. name: "Tail Length",
  52256. power: 1,
  52257. type: "length",
  52258. base: math.unit(180, "cm")
  52259. },
  52260. "pawLength": {
  52261. name: "Paw Length",
  52262. power: 1,
  52263. type: "length",
  52264. base: math.unit(31, "cm")
  52265. },
  52266. }
  52267. },
  52268. dressed: {
  52269. height: math.unit(1.75, "meters"),
  52270. weight: math.unit(100, "kg"),
  52271. name: "Dressed",
  52272. image: {
  52273. source: "./media/characters/zarya/dressed.svg",
  52274. extra: 683/672,
  52275. bottom: 79/762
  52276. },
  52277. extraAttributes: {
  52278. "tailLength": {
  52279. name: "Tail Length",
  52280. power: 1,
  52281. type: "length",
  52282. base: math.unit(180, "cm")
  52283. },
  52284. "pawLength": {
  52285. name: "Paw Length",
  52286. power: 1,
  52287. type: "length",
  52288. base: math.unit(31, "cm")
  52289. },
  52290. }
  52291. },
  52292. },
  52293. [
  52294. {
  52295. name: "Micro",
  52296. height: math.unit(5, "cm")
  52297. },
  52298. {
  52299. name: "Normal",
  52300. height: math.unit(1.75, "meters"),
  52301. default: true
  52302. },
  52303. {
  52304. name: "Macro",
  52305. height: math.unit(122, "meters")
  52306. },
  52307. ]
  52308. ))
  52309. characterMakers.push(() => makeCharacter(
  52310. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52311. {
  52312. front: {
  52313. height: math.unit(7.5, "feet"),
  52314. name: "Front",
  52315. image: {
  52316. source: "./media/characters/sven-hatisson/front.svg",
  52317. extra: 917/857,
  52318. bottom: 42/959
  52319. }
  52320. },
  52321. back: {
  52322. height: math.unit(7.5, "feet"),
  52323. name: "Back",
  52324. image: {
  52325. source: "./media/characters/sven-hatisson/back.svg",
  52326. extra: 903/856,
  52327. bottom: 15/918
  52328. }
  52329. },
  52330. },
  52331. [
  52332. {
  52333. name: "Base Height",
  52334. height: math.unit(7.5, "feet")
  52335. },
  52336. {
  52337. name: "Usual Height",
  52338. height: math.unit(13.5, "feet"),
  52339. default: true
  52340. },
  52341. {
  52342. name: "Smaller Macro",
  52343. height: math.unit(85, "feet")
  52344. },
  52345. {
  52346. name: "Moderate Macro",
  52347. height: math.unit(320, "feet")
  52348. },
  52349. {
  52350. name: "Large Macro",
  52351. height: math.unit(1000, "feet")
  52352. },
  52353. {
  52354. name: "Largest Size",
  52355. height: math.unit(2, "miles")
  52356. },
  52357. ]
  52358. ))
  52359. characterMakers.push(() => makeCharacter(
  52360. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52361. {
  52362. side: {
  52363. height: math.unit(1.8, "meters"),
  52364. weight: math.unit(275, "kg"),
  52365. name: "Side",
  52366. image: {
  52367. source: "./media/characters/terra/side.svg",
  52368. extra: 1273/1147,
  52369. bottom: 0/1273
  52370. }
  52371. },
  52372. },
  52373. [
  52374. {
  52375. name: "Normal",
  52376. height: math.unit(16.2, "meters"),
  52377. default: true
  52378. },
  52379. ]
  52380. ))
  52381. characterMakers.push(() => makeCharacter(
  52382. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52383. {
  52384. borzoiFront: {
  52385. height: math.unit(6 + 9/12, "feet"),
  52386. name: "Front",
  52387. image: {
  52388. source: "./media/characters/rae/borzoi-front.svg",
  52389. extra: 1161/1098,
  52390. bottom: 31/1192
  52391. },
  52392. form: "borzoi",
  52393. default: true
  52394. },
  52395. werewolfFront: {
  52396. height: math.unit(8 + 7/12, "feet"),
  52397. name: "Front",
  52398. image: {
  52399. source: "./media/characters/rae/werewolf-front.svg",
  52400. extra: 1411/1334,
  52401. bottom: 127/1538
  52402. },
  52403. form: "werewolf",
  52404. default: true
  52405. },
  52406. },
  52407. [
  52408. {
  52409. name: "Normal",
  52410. height: math.unit(6 + 9/12, "feet"),
  52411. default: true,
  52412. form: "borzoi"
  52413. },
  52414. {
  52415. name: "Normal",
  52416. height: math.unit(8 + 7/12, "feet"),
  52417. default: true,
  52418. form: "werewolf"
  52419. },
  52420. ],
  52421. {
  52422. "borzoi": {
  52423. name: "Borzoi",
  52424. default: true
  52425. },
  52426. "werewolf": {
  52427. name: "Werewolf",
  52428. },
  52429. }
  52430. ))
  52431. characterMakers.push(() => makeCharacter(
  52432. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52433. {
  52434. front: {
  52435. height: math.unit(8 + 7/12, "feet"),
  52436. weight: math.unit(482, "lb"),
  52437. name: "Front",
  52438. image: {
  52439. source: "./media/characters/kit/front.svg",
  52440. extra: 1247/1103,
  52441. bottom: 41/1288
  52442. }
  52443. },
  52444. back: {
  52445. height: math.unit(8 + 7/12, "feet"),
  52446. weight: math.unit(482, "lb"),
  52447. name: "Back",
  52448. image: {
  52449. source: "./media/characters/kit/back.svg",
  52450. extra: 1252/1123,
  52451. bottom: 21/1273
  52452. }
  52453. },
  52454. paw: {
  52455. height: math.unit(1.46, "feet"),
  52456. name: "Paw",
  52457. image: {
  52458. source: "./media/characters/kit/paw.svg"
  52459. }
  52460. },
  52461. },
  52462. [
  52463. {
  52464. name: "Normal",
  52465. height: math.unit(2.61, "meters"),
  52466. default: true
  52467. },
  52468. {
  52469. name: "\"Tall\"",
  52470. height: math.unit(8.21, "meters")
  52471. },
  52472. {
  52473. name: "Tall",
  52474. height: math.unit(19.6, "meters")
  52475. },
  52476. {
  52477. name: "Very Tall",
  52478. height: math.unit(57.91, "meters")
  52479. },
  52480. {
  52481. name: "Semi-Macro",
  52482. height: math.unit(138.64, "meters")
  52483. },
  52484. {
  52485. name: "Macro",
  52486. height: math.unit(831.99, "meters")
  52487. },
  52488. {
  52489. name: "EX-Macro",
  52490. height: math.unit(96451121, "meters")
  52491. },
  52492. {
  52493. name: "S1-Omnipotent",
  52494. height: math.unit(4.42074e+9, "meters")
  52495. },
  52496. {
  52497. name: "S2-Omnipotent",
  52498. height: math.unit(9.42074e+17, "meters")
  52499. },
  52500. {
  52501. name: "Omnipotent",
  52502. height: math.unit(4.23112e+24, "meters")
  52503. },
  52504. {
  52505. name: "Hypergod",
  52506. height: math.unit(5.05176e+27, "meters")
  52507. },
  52508. {
  52509. name: "Hypergod-EX",
  52510. height: math.unit(9.45532e+49, "meters")
  52511. },
  52512. {
  52513. name: "Hypergod-SP",
  52514. height: math.unit(9.45532e+195, "meters")
  52515. },
  52516. ]
  52517. ))
  52518. characterMakers.push(() => makeCharacter(
  52519. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52520. {
  52521. side: {
  52522. height: math.unit(0.6, "meters"),
  52523. weight: math.unit(24, "kg"),
  52524. name: "Side",
  52525. image: {
  52526. source: "./media/characters/celeste/side.svg",
  52527. extra: 810/517,
  52528. bottom: 53/863
  52529. }
  52530. },
  52531. },
  52532. [
  52533. {
  52534. name: "Velociraptor",
  52535. height: math.unit(0.6, "meters"),
  52536. default: true
  52537. },
  52538. {
  52539. name: "Utahraptor",
  52540. height: math.unit(1.8, "meters")
  52541. },
  52542. {
  52543. name: "Gallimimus",
  52544. height: math.unit(4.0, "meters")
  52545. },
  52546. {
  52547. name: "Large",
  52548. height: math.unit(20, "meters")
  52549. },
  52550. {
  52551. name: "Planetary",
  52552. height: math.unit(50, "megameters")
  52553. },
  52554. {
  52555. name: "Stellar",
  52556. height: math.unit(1.5, "gigameters")
  52557. },
  52558. {
  52559. name: "Galactic",
  52560. height: math.unit(100, "exameters")
  52561. },
  52562. ]
  52563. ))
  52564. characterMakers.push(() => makeCharacter(
  52565. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52566. {
  52567. front: {
  52568. height: math.unit(6, "feet"),
  52569. weight: math.unit(210, "lb"),
  52570. name: "Front",
  52571. image: {
  52572. source: "./media/characters/glacia/front.svg",
  52573. extra: 958/901,
  52574. bottom: 45/1003
  52575. }
  52576. },
  52577. },
  52578. [
  52579. {
  52580. name: "Macro",
  52581. height: math.unit(1000, "meters"),
  52582. default: true
  52583. },
  52584. ]
  52585. ))
  52586. characterMakers.push(() => makeCharacter(
  52587. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52588. {
  52589. front: {
  52590. height: math.unit(4, "meters"),
  52591. name: "Front",
  52592. image: {
  52593. source: "./media/characters/giri/front.svg",
  52594. extra: 966/894,
  52595. bottom: 21/987
  52596. }
  52597. },
  52598. },
  52599. [
  52600. {
  52601. name: "Normal",
  52602. height: math.unit(4, "meters"),
  52603. default: true
  52604. },
  52605. ]
  52606. ))
  52607. characterMakers.push(() => makeCharacter(
  52608. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52609. {
  52610. back: {
  52611. height: math.unit(4, "feet"),
  52612. weight: math.unit(37, "lb"),
  52613. name: "Back",
  52614. image: {
  52615. source: "./media/characters/tin/back.svg",
  52616. extra: 845/780,
  52617. bottom: 28/873
  52618. }
  52619. },
  52620. },
  52621. [
  52622. {
  52623. name: "Normal",
  52624. height: math.unit(4, "feet"),
  52625. default: true
  52626. },
  52627. ]
  52628. ))
  52629. characterMakers.push(() => makeCharacter(
  52630. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52631. {
  52632. front: {
  52633. height: math.unit(25, "feet"),
  52634. name: "Front",
  52635. image: {
  52636. source: "./media/characters/cadenza-vivace/front.svg",
  52637. extra: 1842/1578,
  52638. bottom: 30/1872
  52639. }
  52640. },
  52641. },
  52642. [
  52643. {
  52644. name: "Macro",
  52645. height: math.unit(25, "feet"),
  52646. default: true
  52647. },
  52648. ]
  52649. ))
  52650. characterMakers.push(() => makeCharacter(
  52651. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52652. {
  52653. front: {
  52654. height: math.unit(10, "feet"),
  52655. weight: math.unit(625, "kg"),
  52656. name: "Front",
  52657. image: {
  52658. source: "./media/characters/zain/front.svg",
  52659. extra: 1682/1498,
  52660. bottom: 223/1905
  52661. }
  52662. },
  52663. back: {
  52664. height: math.unit(10, "feet"),
  52665. weight: math.unit(625, "kg"),
  52666. name: "Back",
  52667. image: {
  52668. source: "./media/characters/zain/back.svg",
  52669. extra: 1814/1657,
  52670. bottom: 152/1966
  52671. }
  52672. },
  52673. head: {
  52674. height: math.unit(10, "feet"),
  52675. weight: math.unit(625, "kg"),
  52676. name: "Head",
  52677. image: {
  52678. source: "./media/characters/zain/head.svg",
  52679. extra: 1059/762,
  52680. bottom: 0/1059
  52681. }
  52682. },
  52683. },
  52684. [
  52685. {
  52686. name: "Normal",
  52687. height: math.unit(10, "feet"),
  52688. default: true
  52689. },
  52690. ]
  52691. ))
  52692. characterMakers.push(() => makeCharacter(
  52693. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52694. {
  52695. front: {
  52696. height: math.unit(6 + 5/12, "feet"),
  52697. weight: math.unit(750, "lb"),
  52698. name: "Front",
  52699. image: {
  52700. source: "./media/characters/ruchex/front.svg",
  52701. extra: 877/820,
  52702. bottom: 17/894
  52703. },
  52704. extraAttributes: {
  52705. "width": {
  52706. name: "Width",
  52707. power: 1,
  52708. type: "length",
  52709. base: math.unit(4.757, "feet")
  52710. },
  52711. }
  52712. },
  52713. },
  52714. [
  52715. {
  52716. name: "Normal",
  52717. height: math.unit(6 + 5/12, "feet"),
  52718. default: true
  52719. },
  52720. ]
  52721. ))
  52722. characterMakers.push(() => makeCharacter(
  52723. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52724. {
  52725. dressedFront: {
  52726. height: math.unit(191, "cm"),
  52727. weight: math.unit(80, "kg"),
  52728. name: "Front",
  52729. image: {
  52730. source: "./media/characters/buster/dressed-front.svg",
  52731. extra: 1022/973,
  52732. bottom: 69/1091
  52733. }
  52734. },
  52735. dressedBack: {
  52736. height: math.unit(191, "cm"),
  52737. weight: math.unit(80, "kg"),
  52738. name: "Back",
  52739. image: {
  52740. source: "./media/characters/buster/dressed-back.svg",
  52741. extra: 1018/970,
  52742. bottom: 55/1073
  52743. }
  52744. },
  52745. nudeFront: {
  52746. height: math.unit(191, "cm"),
  52747. weight: math.unit(80, "kg"),
  52748. name: "Front (Nude)",
  52749. image: {
  52750. source: "./media/characters/buster/nude-front.svg",
  52751. extra: 1022/973,
  52752. bottom: 69/1091
  52753. }
  52754. },
  52755. nudeBack: {
  52756. height: math.unit(191, "cm"),
  52757. weight: math.unit(80, "kg"),
  52758. name: "Back (Nude)",
  52759. image: {
  52760. source: "./media/characters/buster/nude-back.svg",
  52761. extra: 1018/970,
  52762. bottom: 55/1073
  52763. }
  52764. },
  52765. dick: {
  52766. height: math.unit(2.59, "feet"),
  52767. name: "Dick",
  52768. image: {
  52769. source: "./media/characters/buster/dick.svg"
  52770. }
  52771. },
  52772. ass: {
  52773. height: math.unit(1.2, "feet"),
  52774. name: "Ass",
  52775. image: {
  52776. source: "./media/characters/buster/ass.svg"
  52777. }
  52778. },
  52779. },
  52780. [
  52781. {
  52782. name: "Normal",
  52783. height: math.unit(191, "cm"),
  52784. default: true
  52785. },
  52786. ]
  52787. ))
  52788. characterMakers.push(() => makeCharacter(
  52789. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52790. {
  52791. side: {
  52792. height: math.unit(8.1, "feet"),
  52793. weight: math.unit(3500, "lb"),
  52794. name: "Side",
  52795. image: {
  52796. source: "./media/characters/sonya/side.svg",
  52797. extra: 1730/1317,
  52798. bottom: 86/1816
  52799. }
  52800. },
  52801. },
  52802. [
  52803. {
  52804. name: "Normal",
  52805. height: math.unit(8.1, "feet"),
  52806. default: true
  52807. },
  52808. ]
  52809. ))
  52810. characterMakers.push(() => makeCharacter(
  52811. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52812. {
  52813. front: {
  52814. height: math.unit(6, "feet"),
  52815. weight: math.unit(150, "lb"),
  52816. name: "Front",
  52817. image: {
  52818. source: "./media/characters/cadence-andrysiak/front.svg",
  52819. extra: 1164/1121,
  52820. bottom: 60/1224
  52821. }
  52822. },
  52823. back: {
  52824. height: math.unit(6, "feet"),
  52825. weight: math.unit(150, "lb"),
  52826. name: "Back",
  52827. image: {
  52828. source: "./media/characters/cadence-andrysiak/back.svg",
  52829. extra: 1200/1165,
  52830. bottom: 9/1209
  52831. }
  52832. },
  52833. dressed: {
  52834. height: math.unit(6, "feet"),
  52835. weight: math.unit(150, "lb"),
  52836. name: "Dressed",
  52837. image: {
  52838. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52839. extra: 1164/1121,
  52840. bottom: 60/1224
  52841. }
  52842. },
  52843. },
  52844. [
  52845. {
  52846. name: "Micro",
  52847. height: math.unit(1, "mm")
  52848. },
  52849. {
  52850. name: "Normal",
  52851. height: math.unit(6, "feet"),
  52852. default: true
  52853. },
  52854. ]
  52855. ))
  52856. characterMakers.push(() => makeCharacter(
  52857. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52858. {
  52859. front: {
  52860. height: math.unit(60, "inches"),
  52861. weight: math.unit(16, "lb"),
  52862. preyCapacity: math.unit(80, "liters"),
  52863. name: "Front",
  52864. image: {
  52865. source: "./media/characters/penny-lynx/front.svg",
  52866. extra: 1959/1769,
  52867. bottom: 49/2008
  52868. }
  52869. },
  52870. },
  52871. [
  52872. {
  52873. name: "Nokia",
  52874. height: math.unit(2, "inches")
  52875. },
  52876. {
  52877. name: "Desktop",
  52878. height: math.unit(24, "inches")
  52879. },
  52880. {
  52881. name: "TV",
  52882. height: math.unit(60, "inches")
  52883. },
  52884. {
  52885. name: "Jumbotron",
  52886. height: math.unit(12, "feet")
  52887. },
  52888. {
  52889. name: "Billboard",
  52890. height: math.unit(48, "feet"),
  52891. default: true
  52892. },
  52893. {
  52894. name: "IMAX",
  52895. height: math.unit(96, "feet")
  52896. },
  52897. {
  52898. name: "SINGULARITY",
  52899. height: math.unit(864938, "miles")
  52900. },
  52901. ]
  52902. ))
  52903. characterMakers.push(() => makeCharacter(
  52904. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52905. {
  52906. front: {
  52907. height: math.unit(5 + 4/12, "feet"),
  52908. weight: math.unit(230, "lb"),
  52909. name: "Front",
  52910. image: {
  52911. source: "./media/characters/sukebe/front.svg",
  52912. extra: 2130/2038,
  52913. bottom: 90/2220
  52914. }
  52915. },
  52916. back: {
  52917. height: math.unit(3.48, "feet"),
  52918. weight: math.unit(230, "lb"),
  52919. name: "Back",
  52920. image: {
  52921. source: "./media/characters/sukebe/back.svg",
  52922. extra: 1670/1604,
  52923. bottom: 0/1670
  52924. }
  52925. },
  52926. },
  52927. [
  52928. {
  52929. name: "Normal",
  52930. height: math.unit(5 + 4/12, "feet"),
  52931. default: true
  52932. },
  52933. ]
  52934. ))
  52935. characterMakers.push(() => makeCharacter(
  52936. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52937. {
  52938. front: {
  52939. height: math.unit(6, "feet"),
  52940. name: "Front",
  52941. image: {
  52942. source: "./media/characters/nylla/front.svg",
  52943. extra: 1868/1699,
  52944. bottom: 97/1965
  52945. }
  52946. },
  52947. back: {
  52948. height: math.unit(6, "feet"),
  52949. name: "Back",
  52950. image: {
  52951. source: "./media/characters/nylla/back.svg",
  52952. extra: 1889/1712,
  52953. bottom: 93/1982
  52954. }
  52955. },
  52956. frontNsfw: {
  52957. height: math.unit(6, "feet"),
  52958. name: "Front (NSFW)",
  52959. image: {
  52960. source: "./media/characters/nylla/front-nsfw.svg",
  52961. extra: 1868/1699,
  52962. bottom: 97/1965
  52963. },
  52964. extraAttributes: {
  52965. "dickLength": {
  52966. name: "Dick Length",
  52967. power: 1,
  52968. type: "length",
  52969. base: math.unit(1.4, "feet")
  52970. },
  52971. "cumVolume": {
  52972. name: "Cum Volume",
  52973. power: 3,
  52974. type: "volume",
  52975. base: math.unit(100, "mL")
  52976. },
  52977. }
  52978. },
  52979. backNsfw: {
  52980. height: math.unit(6, "feet"),
  52981. name: "Back (NSFW)",
  52982. image: {
  52983. source: "./media/characters/nylla/back-nsfw.svg",
  52984. extra: 1889/1712,
  52985. bottom: 93/1982
  52986. }
  52987. },
  52988. maw: {
  52989. height: math.unit(2.10, "feet"),
  52990. name: "Maw",
  52991. image: {
  52992. source: "./media/characters/nylla/maw.svg"
  52993. }
  52994. },
  52995. paws: {
  52996. height: math.unit(2.06, "feet"),
  52997. name: "Paws",
  52998. image: {
  52999. source: "./media/characters/nylla/paws.svg"
  53000. }
  53001. },
  53002. muzzle: {
  53003. height: math.unit(0.61, "feet"),
  53004. name: "Muzzle",
  53005. image: {
  53006. source: "./media/characters/nylla/muzzle.svg"
  53007. }
  53008. },
  53009. sheath: {
  53010. height: math.unit(1.305, "feet"),
  53011. name: "Sheath",
  53012. image: {
  53013. source: "./media/characters/nylla/sheath.svg"
  53014. }
  53015. },
  53016. },
  53017. [
  53018. {
  53019. name: "Micro",
  53020. height: math.unit(7.5, "inches")
  53021. },
  53022. {
  53023. name: "Normal",
  53024. height: math.unit(7, "feet"),
  53025. default: true
  53026. },
  53027. {
  53028. name: "Macro",
  53029. height: math.unit(60, "feet")
  53030. },
  53031. {
  53032. name: "Mega",
  53033. height: math.unit(200, "feet")
  53034. },
  53035. ]
  53036. ))
  53037. characterMakers.push(() => makeCharacter(
  53038. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53039. {
  53040. front: {
  53041. height: math.unit(10, "feet"),
  53042. weight: math.unit(2300, "lb"),
  53043. name: "Front",
  53044. image: {
  53045. source: "./media/characters/hunt3r/front.svg",
  53046. extra: 1909/1742,
  53047. bottom: 46/1955
  53048. }
  53049. },
  53050. },
  53051. [
  53052. {
  53053. name: "Normal",
  53054. height: math.unit(10, "feet"),
  53055. default: true
  53056. },
  53057. ]
  53058. ))
  53059. characterMakers.push(() => makeCharacter(
  53060. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53061. {
  53062. dressed: {
  53063. height: math.unit(11, "feet"),
  53064. weight: math.unit(18500, "lb"),
  53065. preyCapacity: math.unit(9, "people"),
  53066. name: "Dressed",
  53067. image: {
  53068. source: "./media/characters/cylphis/dressed.svg",
  53069. extra: 1028/1003,
  53070. bottom: 75/1103
  53071. },
  53072. },
  53073. undressed: {
  53074. height: math.unit(11, "feet"),
  53075. weight: math.unit(18500, "lb"),
  53076. preyCapacity: math.unit(9, "people"),
  53077. name: "Undressed",
  53078. image: {
  53079. source: "./media/characters/cylphis/undressed.svg",
  53080. extra: 1028/1003,
  53081. bottom: 75/1103
  53082. }
  53083. },
  53084. full: {
  53085. height: math.unit(11, "feet"),
  53086. weight: math.unit(18500 + 150*9, "lb"),
  53087. preyCapacity: math.unit(9, "people"),
  53088. name: "Full",
  53089. image: {
  53090. source: "./media/characters/cylphis/full.svg",
  53091. extra: 1028/1003,
  53092. bottom: 75/1103
  53093. }
  53094. },
  53095. },
  53096. [
  53097. {
  53098. name: "Small",
  53099. height: math.unit(8, "feet")
  53100. },
  53101. {
  53102. name: "Normal",
  53103. height: math.unit(11, "feet"),
  53104. default: true
  53105. },
  53106. ]
  53107. ))
  53108. characterMakers.push(() => makeCharacter(
  53109. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53110. {
  53111. front: {
  53112. height: math.unit(2 + 7/12, "feet"),
  53113. name: "Front",
  53114. image: {
  53115. source: "./media/characters/orishan/front.svg",
  53116. extra: 1058/1023,
  53117. bottom: 23/1081
  53118. }
  53119. },
  53120. back: {
  53121. height: math.unit(2 + 7/12, "feet"),
  53122. name: "Back",
  53123. image: {
  53124. source: "./media/characters/orishan/back.svg",
  53125. extra: 1058/1023,
  53126. bottom: 23/1081
  53127. }
  53128. },
  53129. },
  53130. [
  53131. {
  53132. name: "Micro",
  53133. height: math.unit(2, "cm")
  53134. },
  53135. {
  53136. name: "Normal",
  53137. height: math.unit(2 + 7/12, "feet"),
  53138. default: true
  53139. },
  53140. ]
  53141. ))
  53142. characterMakers.push(() => makeCharacter(
  53143. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53144. {
  53145. front: {
  53146. height: math.unit(3, "meters"),
  53147. weight: math.unit(508, "kg"),
  53148. name: "Front",
  53149. image: {
  53150. source: "./media/characters/seranis/front.svg",
  53151. extra: 1478/1454,
  53152. bottom: 41/1519
  53153. }
  53154. },
  53155. },
  53156. [
  53157. {
  53158. name: "Normal",
  53159. height: math.unit(3, "meters"),
  53160. default: true
  53161. },
  53162. {
  53163. name: "Macro",
  53164. height: math.unit(108, "meters")
  53165. },
  53166. {
  53167. name: "Megamacro",
  53168. height: math.unit(1250, "meters")
  53169. },
  53170. ]
  53171. ))
  53172. characterMakers.push(() => makeCharacter(
  53173. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53174. {
  53175. undressed: {
  53176. height: math.unit(5 + 3/12, "feet"),
  53177. name: "Undressed",
  53178. image: {
  53179. source: "./media/characters/ankou/undressed.svg",
  53180. extra: 1301/1213,
  53181. bottom: 87/1388
  53182. }
  53183. },
  53184. dressed: {
  53185. height: math.unit(5 + 3/12, "feet"),
  53186. name: "Dressed",
  53187. image: {
  53188. source: "./media/characters/ankou/dressed.svg",
  53189. extra: 1301/1213,
  53190. bottom: 87/1388
  53191. }
  53192. },
  53193. head: {
  53194. height: math.unit(1.61, "feet"),
  53195. name: "Head",
  53196. image: {
  53197. source: "./media/characters/ankou/head.svg"
  53198. }
  53199. },
  53200. },
  53201. [
  53202. {
  53203. name: "Normal",
  53204. height: math.unit(5 + 3/12, "feet"),
  53205. default: true
  53206. },
  53207. ]
  53208. ))
  53209. characterMakers.push(() => makeCharacter(
  53210. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53211. {
  53212. side: {
  53213. height: math.unit(6 + 3/12, "feet"),
  53214. weight: math.unit(200, "kg"),
  53215. name: "Side",
  53216. image: {
  53217. source: "./media/characters/juniper-skunktaur/side.svg",
  53218. extra: 1574/1229,
  53219. bottom: 38/1612
  53220. }
  53221. },
  53222. front: {
  53223. height: math.unit(6 + 3/12, "feet"),
  53224. weight: math.unit(200, "kg"),
  53225. name: "Front",
  53226. image: {
  53227. source: "./media/characters/juniper-skunktaur/front.svg",
  53228. extra: 1337/1278,
  53229. bottom: 22/1359
  53230. }
  53231. },
  53232. back: {
  53233. height: math.unit(6 + 3/12, "feet"),
  53234. weight: math.unit(200, "kg"),
  53235. name: "Back",
  53236. image: {
  53237. source: "./media/characters/juniper-skunktaur/back.svg",
  53238. extra: 1618/1273,
  53239. bottom: 13/1631
  53240. }
  53241. },
  53242. top: {
  53243. height: math.unit(2.62, "feet"),
  53244. weight: math.unit(200, "kg"),
  53245. name: "Top",
  53246. image: {
  53247. source: "./media/characters/juniper-skunktaur/top.svg"
  53248. }
  53249. },
  53250. },
  53251. [
  53252. {
  53253. name: "Normal",
  53254. height: math.unit(6 + 3/12, "feet"),
  53255. default: true
  53256. },
  53257. ]
  53258. ))
  53259. characterMakers.push(() => makeCharacter(
  53260. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53261. {
  53262. front: {
  53263. height: math.unit(20.5, "feet"),
  53264. name: "Front",
  53265. image: {
  53266. source: "./media/characters/rei/front.svg",
  53267. extra: 1349/1195,
  53268. bottom: 31/1380
  53269. }
  53270. },
  53271. back: {
  53272. height: math.unit(20.5, "feet"),
  53273. name: "Back",
  53274. image: {
  53275. source: "./media/characters/rei/back.svg",
  53276. extra: 1358/1204,
  53277. bottom: 22/1380
  53278. }
  53279. },
  53280. pawsDigi: {
  53281. height: math.unit(3.45, "feet"),
  53282. name: "Paws (Digi)",
  53283. image: {
  53284. source: "./media/characters/rei/paws-digi.svg"
  53285. }
  53286. },
  53287. pawsPlanti: {
  53288. height: math.unit(3.45, "feet"),
  53289. name: "Paws (Planti)",
  53290. image: {
  53291. source: "./media/characters/rei/paws-planti.svg"
  53292. }
  53293. },
  53294. },
  53295. [
  53296. {
  53297. name: "Normal",
  53298. height: math.unit(20.5, "feet"),
  53299. default: true
  53300. },
  53301. ]
  53302. ))
  53303. characterMakers.push(() => makeCharacter(
  53304. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53305. {
  53306. front: {
  53307. height: math.unit(5 + 11/12, "feet"),
  53308. name: "Front",
  53309. image: {
  53310. source: "./media/characters/carina/front.svg",
  53311. extra: 1720/1449,
  53312. bottom: 14/1734
  53313. }
  53314. },
  53315. back: {
  53316. height: math.unit(5 + 11/12, "feet"),
  53317. name: "Back",
  53318. image: {
  53319. source: "./media/characters/carina/back.svg",
  53320. extra: 1493/1445,
  53321. bottom: 17/1510
  53322. }
  53323. },
  53324. paw: {
  53325. height: math.unit(0.92, "feet"),
  53326. name: "Paw",
  53327. image: {
  53328. source: "./media/characters/carina/paw.svg"
  53329. }
  53330. },
  53331. },
  53332. [
  53333. {
  53334. name: "Normal",
  53335. height: math.unit(5 + 11/12, "feet"),
  53336. default: true
  53337. },
  53338. ]
  53339. ))
  53340. characterMakers.push(() => makeCharacter(
  53341. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53342. {
  53343. normal_front: {
  53344. height: math.unit(4.88, "meters"),
  53345. name: "Front",
  53346. image: {
  53347. source: "./media/characters/maya/normal-front.svg",
  53348. extra: 1222/1145,
  53349. bottom: 57/1279
  53350. },
  53351. form: "normal",
  53352. default: true
  53353. },
  53354. monstrous_front: {
  53355. height: math.unit(10, "meters"),
  53356. name: "Front",
  53357. image: {
  53358. source: "./media/characters/maya/monstrous-front.svg",
  53359. extra: 1523/1109,
  53360. bottom: 113/1636
  53361. },
  53362. form: "monstrous",
  53363. extraAttributes: {
  53364. "swallowSize": {
  53365. name: "Tailmaw Bite Size",
  53366. power: 3,
  53367. type: "volume",
  53368. base: math.unit(43000, "liters")
  53369. },
  53370. }
  53371. },
  53372. taur_front: {
  53373. height: math.unit(10, "meters"),
  53374. name: "Front",
  53375. image: {
  53376. source: "./media/characters/maya/taur-front.svg",
  53377. extra: 743/506,
  53378. bottom: 101/844
  53379. },
  53380. form: "taur",
  53381. },
  53382. },
  53383. [
  53384. {
  53385. name: "Normal",
  53386. height: math.unit(4.88, "meters"),
  53387. default: true,
  53388. form: "normal"
  53389. },
  53390. {
  53391. name: "Macro",
  53392. height: math.unit(38.1, "meters"),
  53393. form: "normal"
  53394. },
  53395. {
  53396. name: "Macro+",
  53397. height: math.unit(152.4, "meters"),
  53398. form: "normal"
  53399. },
  53400. {
  53401. name: "Macro++",
  53402. height: math.unit(16.09, "km"),
  53403. form: "normal"
  53404. },
  53405. {
  53406. name: "Mega-macro",
  53407. height: math.unit(700, "megameters"),
  53408. form: "normal"
  53409. },
  53410. {
  53411. name: "Satiated",
  53412. height: math.unit(10, "meters"),
  53413. default: true,
  53414. form: "monstrous"
  53415. },
  53416. {
  53417. name: "Hungry",
  53418. height: math.unit(75, "meters"),
  53419. form: "monstrous"
  53420. },
  53421. {
  53422. name: "Ravenous",
  53423. height: math.unit(500, "meters"),
  53424. form: "monstrous"
  53425. },
  53426. {
  53427. name: "\"Normal\"",
  53428. height: math.unit(10, "meters"),
  53429. form: "taur"
  53430. },
  53431. {
  53432. name: "Macro",
  53433. height: math.unit(50, "meters"),
  53434. form: "taur"
  53435. },
  53436. ],
  53437. {
  53438. "normal": {
  53439. name: "Normal",
  53440. default: true
  53441. },
  53442. "monstrous": {
  53443. name: "Monstrous",
  53444. },
  53445. "taur": {
  53446. name: "Taur",
  53447. },
  53448. }
  53449. ))
  53450. characterMakers.push(() => makeCharacter(
  53451. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53452. {
  53453. front: {
  53454. height: math.unit(6 + 2/12, "feet"),
  53455. weight: math.unit(500, "lb"),
  53456. preyCapacity: math.unit(4, "people"),
  53457. name: "Front",
  53458. image: {
  53459. source: "./media/characters/yepir/front.svg"
  53460. }
  53461. },
  53462. side: {
  53463. height: math.unit(6 + 2/12, "feet"),
  53464. weight: math.unit(500, "lb"),
  53465. preyCapacity: math.unit(4, "people"),
  53466. name: "Side",
  53467. image: {
  53468. source: "./media/characters/yepir/side.svg"
  53469. }
  53470. },
  53471. paw: {
  53472. height: math.unit(1.05, "feet"),
  53473. name: "Paw",
  53474. image: {
  53475. source: "./media/characters/yepir/paw.svg"
  53476. }
  53477. },
  53478. },
  53479. [
  53480. {
  53481. name: "Normal",
  53482. height: math.unit(6 + 2/12, "feet"),
  53483. default: true
  53484. },
  53485. ]
  53486. ))
  53487. characterMakers.push(() => makeCharacter(
  53488. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53489. {
  53490. front: {
  53491. height: math.unit(5 + 4/12, "feet"),
  53492. name: "Front",
  53493. image: {
  53494. source: "./media/characters/russec/front.svg",
  53495. extra: 1926/1626,
  53496. bottom: 72/1998
  53497. }
  53498. },
  53499. back: {
  53500. height: math.unit(5 + 4/12, "feet"),
  53501. name: "Back",
  53502. image: {
  53503. source: "./media/characters/russec/back.svg",
  53504. extra: 1910/1591,
  53505. bottom: 48/1958
  53506. }
  53507. },
  53508. },
  53509. [
  53510. {
  53511. name: "Small",
  53512. height: math.unit(5 + 4/12, "feet")
  53513. },
  53514. {
  53515. name: "Normal",
  53516. height: math.unit(72, "feet"),
  53517. default: true
  53518. },
  53519. ]
  53520. ))
  53521. characterMakers.push(() => makeCharacter(
  53522. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53523. {
  53524. side: {
  53525. height: math.unit(12, "feet"),
  53526. name: "Side",
  53527. image: {
  53528. source: "./media/characters/cianus/side.svg",
  53529. extra: 808/526,
  53530. bottom: 61/869
  53531. }
  53532. },
  53533. },
  53534. [
  53535. {
  53536. name: "Normal",
  53537. height: math.unit(12, "feet"),
  53538. default: true
  53539. },
  53540. ]
  53541. ))
  53542. characterMakers.push(() => makeCharacter(
  53543. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53544. {
  53545. front: {
  53546. height: math.unit(9 + 6/12, "feet"),
  53547. weight: math.unit(300, "lb"),
  53548. name: "Front",
  53549. image: {
  53550. source: "./media/characters/ahab/front.svg",
  53551. extra: 1897/1868,
  53552. bottom: 121/2018
  53553. }
  53554. },
  53555. frontNsfw: {
  53556. height: math.unit(9 + 6/12, "feet"),
  53557. weight: math.unit(300, "lb"),
  53558. name: "Front-nsfw",
  53559. image: {
  53560. source: "./media/characters/ahab/front-nsfw.svg",
  53561. extra: 1897/1868,
  53562. bottom: 121/2018
  53563. }
  53564. },
  53565. },
  53566. [
  53567. {
  53568. name: "Normal",
  53569. height: math.unit(9 + 6/12, "feet")
  53570. },
  53571. {
  53572. name: "Macro",
  53573. height: math.unit(657, "feet"),
  53574. default: true
  53575. },
  53576. ]
  53577. ))
  53578. characterMakers.push(() => makeCharacter(
  53579. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53580. {
  53581. front: {
  53582. height: math.unit(2.69, "meters"),
  53583. weight: math.unit(132, "kg"),
  53584. name: "Front",
  53585. image: {
  53586. source: "./media/characters/aarkus/front.svg",
  53587. extra: 1400/1231,
  53588. bottom: 34/1434
  53589. }
  53590. },
  53591. back: {
  53592. height: math.unit(2.69, "meters"),
  53593. weight: math.unit(132, "kg"),
  53594. name: "Back",
  53595. image: {
  53596. source: "./media/characters/aarkus/back.svg",
  53597. extra: 1381/1218,
  53598. bottom: 30/1411
  53599. }
  53600. },
  53601. frontNsfw: {
  53602. height: math.unit(2.69, "meters"),
  53603. weight: math.unit(132, "kg"),
  53604. name: "Front (NSFW)",
  53605. image: {
  53606. source: "./media/characters/aarkus/front-nsfw.svg",
  53607. extra: 1400/1231,
  53608. bottom: 34/1434
  53609. }
  53610. },
  53611. foot: {
  53612. height: math.unit(1.45, "feet"),
  53613. name: "Foot",
  53614. image: {
  53615. source: "./media/characters/aarkus/foot.svg"
  53616. }
  53617. },
  53618. head: {
  53619. height: math.unit(2.85, "feet"),
  53620. name: "Head",
  53621. image: {
  53622. source: "./media/characters/aarkus/head.svg"
  53623. }
  53624. },
  53625. headAlt: {
  53626. height: math.unit(3.07, "feet"),
  53627. name: "Head (Alt)",
  53628. image: {
  53629. source: "./media/characters/aarkus/head-alt.svg"
  53630. }
  53631. },
  53632. mouth: {
  53633. height: math.unit(1.25, "feet"),
  53634. name: "Mouth",
  53635. image: {
  53636. source: "./media/characters/aarkus/mouth.svg"
  53637. }
  53638. },
  53639. dick: {
  53640. height: math.unit(1.77, "feet"),
  53641. name: "Dick",
  53642. image: {
  53643. source: "./media/characters/aarkus/dick.svg"
  53644. }
  53645. },
  53646. },
  53647. [
  53648. {
  53649. name: "Normal",
  53650. height: math.unit(2.69, "meters"),
  53651. default: true
  53652. },
  53653. {
  53654. name: "Macro",
  53655. height: math.unit(269, "meters")
  53656. },
  53657. {
  53658. name: "Macro+",
  53659. height: math.unit(672.5, "meters")
  53660. },
  53661. {
  53662. name: "Megamacro",
  53663. height: math.unit(2.017, "km")
  53664. },
  53665. ]
  53666. ))
  53667. characterMakers.push(() => makeCharacter(
  53668. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53669. {
  53670. front: {
  53671. height: math.unit(23.47, "cm"),
  53672. weight: math.unit(600, "grams"),
  53673. name: "Front",
  53674. image: {
  53675. source: "./media/characters/diode/front.svg",
  53676. extra: 1778/1396,
  53677. bottom: 95/1873
  53678. }
  53679. },
  53680. side: {
  53681. height: math.unit(23.47, "cm"),
  53682. weight: math.unit(600, "grams"),
  53683. name: "Side",
  53684. image: {
  53685. source: "./media/characters/diode/side.svg",
  53686. extra: 1831/1404,
  53687. bottom: 86/1917
  53688. }
  53689. },
  53690. wings: {
  53691. height: math.unit(0.683, "feet"),
  53692. name: "Wings",
  53693. image: {
  53694. source: "./media/characters/diode/wings.svg"
  53695. }
  53696. },
  53697. },
  53698. [
  53699. {
  53700. name: "Normal",
  53701. height: math.unit(23.47, "cm"),
  53702. default: true
  53703. },
  53704. ]
  53705. ))
  53706. characterMakers.push(() => makeCharacter(
  53707. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53708. {
  53709. front: {
  53710. height: math.unit(6 + 3/12, "feet"),
  53711. weight: math.unit(250, "lb"),
  53712. name: "Front",
  53713. image: {
  53714. source: "./media/characters/reika/front.svg",
  53715. extra: 1120/1078,
  53716. bottom: 86/1206
  53717. }
  53718. },
  53719. },
  53720. [
  53721. {
  53722. name: "Normal",
  53723. height: math.unit(6 + 3/12, "feet"),
  53724. default: true
  53725. },
  53726. ]
  53727. ))
  53728. characterMakers.push(() => makeCharacter(
  53729. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53730. {
  53731. front: {
  53732. height: math.unit(16 + 8/12, "feet"),
  53733. weight: math.unit(9000, "lb"),
  53734. name: "Front",
  53735. image: {
  53736. source: "./media/characters/lokuto-takama/front.svg",
  53737. extra: 1774/1632,
  53738. bottom: 147/1921
  53739. },
  53740. extraAttributes: {
  53741. "bustWidth": {
  53742. name: "Bust Width",
  53743. power: 1,
  53744. type: "length",
  53745. base: math.unit(2.4, "meters")
  53746. },
  53747. "breastWeight": {
  53748. name: "Breast Weight",
  53749. power: 3,
  53750. type: "mass",
  53751. base: math.unit(1000, "kg")
  53752. },
  53753. }
  53754. },
  53755. },
  53756. [
  53757. {
  53758. name: "Normal",
  53759. height: math.unit(16 + 8/12, "feet"),
  53760. default: true
  53761. },
  53762. ]
  53763. ))
  53764. characterMakers.push(() => makeCharacter(
  53765. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53766. {
  53767. front: {
  53768. height: math.unit(10, "cm"),
  53769. weight: math.unit(850, "grams"),
  53770. name: "Front",
  53771. image: {
  53772. source: "./media/characters/owak-bone/front.svg",
  53773. extra: 1965/1801,
  53774. bottom: 31/1996
  53775. }
  53776. },
  53777. },
  53778. [
  53779. {
  53780. name: "Normal",
  53781. height: math.unit(10, "cm"),
  53782. default: true
  53783. },
  53784. ]
  53785. ))
  53786. characterMakers.push(() => makeCharacter(
  53787. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53788. {
  53789. front: {
  53790. height: math.unit(2 + 6/12, "feet"),
  53791. weight: math.unit(9, "lb"),
  53792. name: "Front",
  53793. image: {
  53794. source: "./media/characters/muffin/front.svg",
  53795. extra: 1220/1195,
  53796. bottom: 84/1304
  53797. }
  53798. },
  53799. },
  53800. [
  53801. {
  53802. name: "Normal",
  53803. height: math.unit(2 + 6/12, "feet"),
  53804. default: true
  53805. },
  53806. ]
  53807. ))
  53808. characterMakers.push(() => makeCharacter(
  53809. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53810. {
  53811. front: {
  53812. height: math.unit(7, "feet"),
  53813. name: "Front",
  53814. image: {
  53815. source: "./media/characters/chimera/front.svg",
  53816. extra: 1752/1614,
  53817. bottom: 68/1820
  53818. }
  53819. },
  53820. },
  53821. [
  53822. {
  53823. name: "Normal",
  53824. height: math.unit(7, "feet")
  53825. },
  53826. {
  53827. name: "Gigamacro",
  53828. height: math.unit(2.9, "gigameters"),
  53829. default: true
  53830. },
  53831. {
  53832. name: "Universal",
  53833. height: math.unit(1.56e26, "yottameters")
  53834. },
  53835. ]
  53836. ))
  53837. characterMakers.push(() => makeCharacter(
  53838. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53839. {
  53840. front: {
  53841. height: math.unit(3, "feet"),
  53842. weight: math.unit(20, "lb"),
  53843. name: "Front",
  53844. image: {
  53845. source: "./media/characters/kit-fennec-fox/front.svg",
  53846. extra: 1027/932,
  53847. bottom: 16/1043
  53848. }
  53849. },
  53850. back: {
  53851. height: math.unit(3, "feet"),
  53852. weight: math.unit(20, "lb"),
  53853. name: "Back",
  53854. image: {
  53855. source: "./media/characters/kit-fennec-fox/back.svg",
  53856. extra: 1027/932,
  53857. bottom: 16/1043
  53858. }
  53859. },
  53860. },
  53861. [
  53862. {
  53863. name: "Normal",
  53864. height: math.unit(3, "feet"),
  53865. default: true
  53866. },
  53867. ]
  53868. ))
  53869. characterMakers.push(() => makeCharacter(
  53870. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53871. {
  53872. front: {
  53873. height: math.unit(167, "cm"),
  53874. name: "Front",
  53875. image: {
  53876. source: "./media/characters/blue-otter/front.svg",
  53877. extra: 1951/1920,
  53878. bottom: 31/1982
  53879. }
  53880. },
  53881. },
  53882. [
  53883. {
  53884. name: "Otter-Sized",
  53885. height: math.unit(100, "cm")
  53886. },
  53887. {
  53888. name: "Normal",
  53889. height: math.unit(167, "cm"),
  53890. default: true
  53891. },
  53892. ]
  53893. ))
  53894. characterMakers.push(() => makeCharacter(
  53895. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53896. {
  53897. front: {
  53898. height: math.unit(4 + 4/12, "feet"),
  53899. name: "Front",
  53900. image: {
  53901. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53902. extra: 1072/1067,
  53903. bottom: 117/1189
  53904. }
  53905. },
  53906. back: {
  53907. height: math.unit(4 + 4/12, "feet"),
  53908. name: "Back",
  53909. image: {
  53910. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53911. extra: 1135/1129,
  53912. bottom: 57/1192
  53913. }
  53914. },
  53915. head: {
  53916. height: math.unit(1.77, "feet"),
  53917. name: "Head",
  53918. image: {
  53919. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53920. }
  53921. },
  53922. },
  53923. [
  53924. {
  53925. name: "Normal",
  53926. height: math.unit(4 + 4/12, "feet"),
  53927. default: true
  53928. },
  53929. ]
  53930. ))
  53931. characterMakers.push(() => makeCharacter(
  53932. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53933. {
  53934. front: {
  53935. height: math.unit(2, "inches"),
  53936. name: "Front",
  53937. image: {
  53938. source: "./media/characters/carley-hartford/front.svg",
  53939. extra: 1035/988,
  53940. bottom: 23/1058
  53941. }
  53942. },
  53943. back: {
  53944. height: math.unit(2, "inches"),
  53945. name: "Back",
  53946. image: {
  53947. source: "./media/characters/carley-hartford/back.svg",
  53948. extra: 1035/988,
  53949. bottom: 23/1058
  53950. }
  53951. },
  53952. dressed: {
  53953. height: math.unit(2, "inches"),
  53954. name: "Dressed",
  53955. image: {
  53956. source: "./media/characters/carley-hartford/dressed.svg",
  53957. extra: 651/620,
  53958. bottom: 0/651
  53959. }
  53960. },
  53961. },
  53962. [
  53963. {
  53964. name: "Micro",
  53965. height: math.unit(2, "inches"),
  53966. default: true
  53967. },
  53968. {
  53969. name: "Macro",
  53970. height: math.unit(6 + 3/12, "feet")
  53971. },
  53972. ]
  53973. ))
  53974. characterMakers.push(() => makeCharacter(
  53975. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53976. {
  53977. front: {
  53978. height: math.unit(2 + 3/12, "feet"),
  53979. weight: math.unit(15 + 7/16, "lb"),
  53980. name: "Front",
  53981. image: {
  53982. source: "./media/characters/duke/front.svg",
  53983. extra: 910/815,
  53984. bottom: 30/940
  53985. }
  53986. },
  53987. },
  53988. [
  53989. {
  53990. name: "Normal",
  53991. height: math.unit(2 + 3/12, "feet"),
  53992. default: true
  53993. },
  53994. ]
  53995. ))
  53996. characterMakers.push(() => makeCharacter(
  53997. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53998. {
  53999. front: {
  54000. height: math.unit(5 + 4/12, "feet"),
  54001. weight: math.unit(156, "lb"),
  54002. name: "Front",
  54003. image: {
  54004. source: "./media/characters/dein/front.svg",
  54005. extra: 855/815,
  54006. bottom: 48/903
  54007. }
  54008. },
  54009. side: {
  54010. height: math.unit(5 + 4/12, "feet"),
  54011. weight: math.unit(156, "lb"),
  54012. name: "side",
  54013. image: {
  54014. source: "./media/characters/dein/side.svg",
  54015. extra: 846/803,
  54016. bottom: 25/871
  54017. }
  54018. },
  54019. maw: {
  54020. height: math.unit(1.45, "feet"),
  54021. name: "Maw",
  54022. image: {
  54023. source: "./media/characters/dein/maw.svg"
  54024. }
  54025. },
  54026. },
  54027. [
  54028. {
  54029. name: "Ferret Sized",
  54030. height: math.unit(2 + 5/12, "feet")
  54031. },
  54032. {
  54033. name: "Normal",
  54034. height: math.unit(5 + 4/12, "feet"),
  54035. default: true
  54036. },
  54037. ]
  54038. ))
  54039. characterMakers.push(() => makeCharacter(
  54040. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54041. {
  54042. front: {
  54043. height: math.unit(84 + 8/12, "feet"),
  54044. weight: math.unit(942180, "lb"),
  54045. name: "Front",
  54046. image: {
  54047. source: "./media/characters/daurine-arima/front.svg",
  54048. extra: 1989/1782,
  54049. bottom: 37/2026
  54050. }
  54051. },
  54052. side: {
  54053. height: math.unit(84 + 8/12, "feet"),
  54054. weight: math.unit(942180, "lb"),
  54055. name: "Side",
  54056. image: {
  54057. source: "./media/characters/daurine-arima/side.svg",
  54058. extra: 1997/1790,
  54059. bottom: 21/2018
  54060. }
  54061. },
  54062. back: {
  54063. height: math.unit(84 + 8/12, "feet"),
  54064. weight: math.unit(942180, "lb"),
  54065. name: "Back",
  54066. image: {
  54067. source: "./media/characters/daurine-arima/back.svg",
  54068. extra: 1992/1800,
  54069. bottom: 12/2004
  54070. }
  54071. },
  54072. head: {
  54073. height: math.unit(15.5, "feet"),
  54074. name: "Head",
  54075. image: {
  54076. source: "./media/characters/daurine-arima/head.svg"
  54077. }
  54078. },
  54079. headAlt: {
  54080. height: math.unit(19.19, "feet"),
  54081. name: "Head (Alt)",
  54082. image: {
  54083. source: "./media/characters/daurine-arima/head-alt.svg"
  54084. }
  54085. },
  54086. },
  54087. [
  54088. {
  54089. name: "Minimum height",
  54090. height: math.unit(8 + 10/12, "feet")
  54091. },
  54092. {
  54093. name: "Comfort height",
  54094. height: math.unit(19 + 6 /12, "feet")
  54095. },
  54096. {
  54097. name: "\"Normal\" height",
  54098. height: math.unit(28 + 10/12, "feet")
  54099. },
  54100. {
  54101. name: "Base height",
  54102. height: math.unit(84 + 8/12, "feet"),
  54103. default: true
  54104. },
  54105. {
  54106. name: "Mini-macro",
  54107. height: math.unit(2360, "feet")
  54108. },
  54109. {
  54110. name: "Macro",
  54111. height: math.unit(10, "miles")
  54112. },
  54113. {
  54114. name: "Goddess",
  54115. height: math.unit(9.99e40, "yottameters")
  54116. },
  54117. ]
  54118. ))
  54119. characterMakers.push(() => makeCharacter(
  54120. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54121. {
  54122. front: {
  54123. height: math.unit(2.3, "meters"),
  54124. name: "Front",
  54125. image: {
  54126. source: "./media/characters/cilenomon/front.svg",
  54127. extra: 1963/1778,
  54128. bottom: 54/2017
  54129. }
  54130. },
  54131. },
  54132. [
  54133. {
  54134. name: "Normal",
  54135. height: math.unit(2.3, "meters"),
  54136. default: true
  54137. },
  54138. {
  54139. name: "Big",
  54140. height: math.unit(5, "meters")
  54141. },
  54142. {
  54143. name: "Macro",
  54144. height: math.unit(30, "meters")
  54145. },
  54146. {
  54147. name: "True",
  54148. height: math.unit(1, "universe")
  54149. },
  54150. ]
  54151. ))
  54152. characterMakers.push(() => makeCharacter(
  54153. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54154. {
  54155. front: {
  54156. height: math.unit(5, "feet"),
  54157. name: "Front",
  54158. image: {
  54159. source: "./media/characters/sen-mink/front.svg",
  54160. extra: 1727/1675,
  54161. bottom: 35/1762
  54162. }
  54163. },
  54164. },
  54165. [
  54166. {
  54167. name: "Normal",
  54168. height: math.unit(5, "feet"),
  54169. default: true
  54170. },
  54171. ]
  54172. ))
  54173. characterMakers.push(() => makeCharacter(
  54174. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54175. {
  54176. front: {
  54177. height: math.unit(5.42999, "feet"),
  54178. weight: math.unit(100, "lb"),
  54179. name: "Front",
  54180. image: {
  54181. source: "./media/characters/ophois/front.svg",
  54182. extra: 1429/1286,
  54183. bottom: 60/1489
  54184. }
  54185. },
  54186. },
  54187. [
  54188. {
  54189. name: "Normal",
  54190. height: math.unit(5.42999, "feet"),
  54191. default: true
  54192. },
  54193. ]
  54194. ))
  54195. characterMakers.push(() => makeCharacter(
  54196. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54197. {
  54198. front: {
  54199. height: math.unit(2, "meters"),
  54200. name: "Front",
  54201. image: {
  54202. source: "./media/characters/riley/front.svg",
  54203. extra: 1779/1754,
  54204. bottom: 139/1918
  54205. }
  54206. },
  54207. },
  54208. [
  54209. {
  54210. name: "Normal",
  54211. height: math.unit(2, "meters"),
  54212. default: true
  54213. },
  54214. ]
  54215. ))
  54216. characterMakers.push(() => makeCharacter(
  54217. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54218. {
  54219. front: {
  54220. height: math.unit(6 + 2/12, "feet"),
  54221. weight: math.unit(195, "lb"),
  54222. preyCapacity: math.unit(6, "people"),
  54223. name: "Front",
  54224. image: {
  54225. source: "./media/characters/shuken-flash/front.svg",
  54226. extra: 1905/1739,
  54227. bottom: 65/1970
  54228. }
  54229. },
  54230. back: {
  54231. height: math.unit(6 + 2/12, "feet"),
  54232. weight: math.unit(195, "lb"),
  54233. preyCapacity: math.unit(6, "people"),
  54234. name: "Back",
  54235. image: {
  54236. source: "./media/characters/shuken-flash/back.svg",
  54237. extra: 1912/1751,
  54238. bottom: 13/1925
  54239. }
  54240. },
  54241. },
  54242. [
  54243. {
  54244. name: "Normal",
  54245. height: math.unit(6 + 2/12, "feet"),
  54246. default: true
  54247. },
  54248. ]
  54249. ))
  54250. characterMakers.push(() => makeCharacter(
  54251. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54252. {
  54253. front: {
  54254. height: math.unit(5 + 9/12, "feet"),
  54255. weight: math.unit(150, "lb"),
  54256. name: "Front",
  54257. image: {
  54258. source: "./media/characters/plat/front.svg",
  54259. extra: 1816/1703,
  54260. bottom: 43/1859
  54261. }
  54262. },
  54263. side: {
  54264. height: math.unit(5 + 9/12, "feet"),
  54265. weight: math.unit(300, "lb"),
  54266. name: "Side",
  54267. image: {
  54268. source: "./media/characters/plat/side.svg",
  54269. extra: 1824/1699,
  54270. bottom: 18/1842
  54271. }
  54272. },
  54273. },
  54274. [
  54275. {
  54276. name: "Normal",
  54277. height: math.unit(5 + 9/12, "feet"),
  54278. default: true
  54279. },
  54280. ]
  54281. ))
  54282. characterMakers.push(() => makeCharacter(
  54283. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54284. {
  54285. front: {
  54286. height: math.unit(9, "feet"),
  54287. weight: math.unit(1800, "lb"),
  54288. name: "Front",
  54289. image: {
  54290. source: "./media/characters/elaine/front.svg",
  54291. extra: 1833/1354,
  54292. bottom: 25/1858
  54293. }
  54294. },
  54295. back: {
  54296. height: math.unit(8.8, "feet"),
  54297. weight: math.unit(1800, "lb"),
  54298. name: "Back",
  54299. image: {
  54300. source: "./media/characters/elaine/back.svg",
  54301. extra: 1641/1233,
  54302. bottom: 53/1694
  54303. }
  54304. },
  54305. },
  54306. [
  54307. {
  54308. name: "Normal",
  54309. height: math.unit(9, "feet"),
  54310. default: true
  54311. },
  54312. ]
  54313. ))
  54314. characterMakers.push(() => makeCharacter(
  54315. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54316. {
  54317. front: {
  54318. height: math.unit(17 + 9/12, "feet"),
  54319. weight: math.unit(8000, "lb"),
  54320. name: "Front",
  54321. image: {
  54322. source: "./media/characters/vera-raven/front.svg",
  54323. extra: 1457/1412,
  54324. bottom: 121/1578
  54325. }
  54326. },
  54327. side: {
  54328. height: math.unit(17 + 9/12, "feet"),
  54329. weight: math.unit(8000, "lb"),
  54330. name: "Side",
  54331. image: {
  54332. source: "./media/characters/vera-raven/side.svg",
  54333. extra: 1510/1464,
  54334. bottom: 54/1564
  54335. }
  54336. },
  54337. },
  54338. [
  54339. {
  54340. name: "Normal",
  54341. height: math.unit(17 + 9/12, "feet"),
  54342. default: true
  54343. },
  54344. ]
  54345. ))
  54346. characterMakers.push(() => makeCharacter(
  54347. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54348. {
  54349. dressed: {
  54350. height: math.unit(6 + 9/12, "feet"),
  54351. name: "Dressed",
  54352. image: {
  54353. source: "./media/characters/nakisha/dressed.svg",
  54354. extra: 1909/1757,
  54355. bottom: 48/1957
  54356. }
  54357. },
  54358. nude: {
  54359. height: math.unit(6 + 9/12, "feet"),
  54360. name: "Nude",
  54361. image: {
  54362. source: "./media/characters/nakisha/nude.svg",
  54363. extra: 1917/1765,
  54364. bottom: 34/1951
  54365. }
  54366. },
  54367. },
  54368. [
  54369. {
  54370. name: "Normal",
  54371. height: math.unit(6 + 9/12, "feet"),
  54372. default: true
  54373. },
  54374. ]
  54375. ))
  54376. characterMakers.push(() => makeCharacter(
  54377. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54378. {
  54379. front: {
  54380. height: math.unit(87, "meters"),
  54381. name: "Front",
  54382. image: {
  54383. source: "./media/characters/serafin/front.svg",
  54384. extra: 1919/1776,
  54385. bottom: 65/1984
  54386. }
  54387. },
  54388. },
  54389. [
  54390. {
  54391. name: "Normal",
  54392. height: math.unit(87, "meters"),
  54393. default: true
  54394. },
  54395. ]
  54396. ))
  54397. characterMakers.push(() => makeCharacter(
  54398. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54399. {
  54400. front: {
  54401. height: math.unit(6, "feet"),
  54402. weight: math.unit(200, "lb"),
  54403. name: "Front",
  54404. image: {
  54405. source: "./media/characters/poptart/front.svg",
  54406. extra: 615/583,
  54407. bottom: 23/638
  54408. }
  54409. },
  54410. back: {
  54411. height: math.unit(6, "feet"),
  54412. weight: math.unit(200, "lb"),
  54413. name: "Back",
  54414. image: {
  54415. source: "./media/characters/poptart/back.svg",
  54416. extra: 617/584,
  54417. bottom: 22/639
  54418. }
  54419. },
  54420. frontNsfw: {
  54421. height: math.unit(6, "feet"),
  54422. weight: math.unit(200, "lb"),
  54423. name: "Front (NSFW)",
  54424. image: {
  54425. source: "./media/characters/poptart/front-nsfw.svg",
  54426. extra: 615/583,
  54427. bottom: 23/638
  54428. }
  54429. },
  54430. backNsfw: {
  54431. height: math.unit(6, "feet"),
  54432. weight: math.unit(200, "lb"),
  54433. name: "Back (NSFW)",
  54434. image: {
  54435. source: "./media/characters/poptart/back-nsfw.svg",
  54436. extra: 617/584,
  54437. bottom: 22/639
  54438. }
  54439. },
  54440. hand: {
  54441. height: math.unit(1.14, "feet"),
  54442. name: "Hand",
  54443. image: {
  54444. source: "./media/characters/poptart/hand.svg"
  54445. }
  54446. },
  54447. foot: {
  54448. height: math.unit(1.5, "feet"),
  54449. name: "Foot",
  54450. image: {
  54451. source: "./media/characters/poptart/foot.svg"
  54452. }
  54453. },
  54454. },
  54455. [
  54456. {
  54457. name: "Normal",
  54458. height: math.unit(6, "feet"),
  54459. default: true
  54460. },
  54461. {
  54462. name: "Grande",
  54463. height: math.unit(350, "feet")
  54464. },
  54465. {
  54466. name: "Massif",
  54467. height: math.unit(967, "feet")
  54468. },
  54469. ]
  54470. ))
  54471. characterMakers.push(() => makeCharacter(
  54472. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54473. {
  54474. hyenaSide: {
  54475. height: math.unit(120, "cm"),
  54476. weight: math.unit(120, "lb"),
  54477. name: "Side",
  54478. image: {
  54479. source: "./media/characters/trance/hyena-side.svg",
  54480. extra: 998/904,
  54481. bottom: 76/1074
  54482. }
  54483. },
  54484. },
  54485. [
  54486. {
  54487. name: "Normal",
  54488. height: math.unit(120, "cm"),
  54489. default: true
  54490. },
  54491. {
  54492. name: "Dire",
  54493. height: math.unit(230, "cm")
  54494. },
  54495. {
  54496. name: "Macro",
  54497. height: math.unit(37, "feet")
  54498. },
  54499. ]
  54500. ))
  54501. characterMakers.push(() => makeCharacter(
  54502. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54503. {
  54504. front: {
  54505. height: math.unit(6 + 3/12, "feet"),
  54506. name: "Front",
  54507. image: {
  54508. source: "./media/characters/michael-berretta/front.svg",
  54509. extra: 515/494,
  54510. bottom: 20/535
  54511. }
  54512. },
  54513. back: {
  54514. height: math.unit(6 + 3/12, "feet"),
  54515. name: "Back",
  54516. image: {
  54517. source: "./media/characters/michael-berretta/back.svg",
  54518. extra: 520/497,
  54519. bottom: 21/541
  54520. }
  54521. },
  54522. frontNsfw: {
  54523. height: math.unit(6 + 3/12, "feet"),
  54524. name: "Front (NSFW)",
  54525. image: {
  54526. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54527. extra: 515/494,
  54528. bottom: 20/535
  54529. }
  54530. },
  54531. dick: {
  54532. height: math.unit(1, "feet"),
  54533. name: "Dick",
  54534. image: {
  54535. source: "./media/characters/michael-berretta/dick.svg"
  54536. }
  54537. },
  54538. },
  54539. [
  54540. {
  54541. name: "Normal",
  54542. height: math.unit(6 + 3/12, "feet"),
  54543. default: true
  54544. },
  54545. {
  54546. name: "Big",
  54547. height: math.unit(12, "feet")
  54548. },
  54549. {
  54550. name: "Macro",
  54551. height: math.unit(187.5, "feet")
  54552. },
  54553. ]
  54554. ))
  54555. characterMakers.push(() => makeCharacter(
  54556. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54557. {
  54558. front: {
  54559. height: math.unit(9 + 9/12, "feet"),
  54560. weight: math.unit(1244, "lb"),
  54561. name: "Front",
  54562. image: {
  54563. source: "./media/characters/stella-edgecomb/front.svg",
  54564. extra: 1835/1706,
  54565. bottom: 49/1884
  54566. }
  54567. },
  54568. pen: {
  54569. height: math.unit(0.95, "feet"),
  54570. name: "Pen",
  54571. image: {
  54572. source: "./media/characters/stella-edgecomb/pen.svg"
  54573. }
  54574. },
  54575. },
  54576. [
  54577. {
  54578. name: "Cozy Bear",
  54579. height: math.unit(0.5, "inches")
  54580. },
  54581. {
  54582. name: "Normal",
  54583. height: math.unit(9 + 9/12, "feet"),
  54584. default: true
  54585. },
  54586. {
  54587. name: "Giga Bear",
  54588. height: math.unit(1, "mile")
  54589. },
  54590. {
  54591. name: "Great Bear",
  54592. height: math.unit(53, "miles")
  54593. },
  54594. {
  54595. name: "Goddess Bear",
  54596. height: math.unit(40000, "miles")
  54597. },
  54598. {
  54599. name: "Sun Bear",
  54600. height: math.unit(900000, "miles")
  54601. },
  54602. ]
  54603. ))
  54604. characterMakers.push(() => makeCharacter(
  54605. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54606. {
  54607. anthroFront: {
  54608. height: math.unit(556, "cm"),
  54609. weight: math.unit(2650, "kg"),
  54610. preyCapacity: math.unit(3, "people"),
  54611. name: "Front",
  54612. image: {
  54613. source: "./media/characters/ash´iika/front.svg",
  54614. extra: 710/673,
  54615. bottom: 15/725
  54616. },
  54617. form: "anthro",
  54618. default: true
  54619. },
  54620. anthroSide: {
  54621. height: math.unit(556, "cm"),
  54622. weight: math.unit(2650, "kg"),
  54623. preyCapacity: math.unit(3, "people"),
  54624. name: "Side",
  54625. image: {
  54626. source: "./media/characters/ash´iika/side.svg",
  54627. extra: 696/676,
  54628. bottom: 13/709
  54629. },
  54630. form: "anthro"
  54631. },
  54632. anthroDressed: {
  54633. height: math.unit(556, "cm"),
  54634. weight: math.unit(2650, "kg"),
  54635. preyCapacity: math.unit(3, "people"),
  54636. name: "Dressed",
  54637. image: {
  54638. source: "./media/characters/ash´iika/dressed.svg",
  54639. extra: 710/673,
  54640. bottom: 15/725
  54641. },
  54642. form: "anthro"
  54643. },
  54644. anthroHead: {
  54645. height: math.unit(3.5, "feet"),
  54646. name: "Head",
  54647. image: {
  54648. source: "./media/characters/ash´iika/head.svg",
  54649. extra: 348/291,
  54650. bottom: 45/393
  54651. },
  54652. form: "anthro"
  54653. },
  54654. feralSide: {
  54655. height: math.unit(870, "cm"),
  54656. weight: math.unit(17500, "kg"),
  54657. preyCapacity: math.unit(15, "people"),
  54658. name: "Side",
  54659. image: {
  54660. source: "./media/characters/ash´iika/feral.svg",
  54661. extra: 595/199,
  54662. bottom: 7/602
  54663. },
  54664. form: "feral",
  54665. default: true,
  54666. },
  54667. },
  54668. [
  54669. {
  54670. name: "Normal",
  54671. height: math.unit(556, "cm"),
  54672. default: true,
  54673. form: "anthro"
  54674. },
  54675. {
  54676. name: "Macro",
  54677. height: math.unit(88, "meters"),
  54678. form: "anthro"
  54679. },
  54680. {
  54681. name: "Normal",
  54682. height: math.unit(870, "cm"),
  54683. default: true,
  54684. form: "feral"
  54685. },
  54686. {
  54687. name: "Large",
  54688. height: math.unit(25, "meters"),
  54689. form: "feral"
  54690. },
  54691. ],
  54692. {
  54693. "anthro": {
  54694. name: "Anthro",
  54695. default: true
  54696. },
  54697. "feral": {
  54698. name: "Feral",
  54699. },
  54700. }
  54701. ))
  54702. characterMakers.push(() => makeCharacter(
  54703. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54704. {
  54705. front: {
  54706. height: math.unit(10, "feet"),
  54707. weight: math.unit(800, "lb"),
  54708. name: "Front",
  54709. image: {
  54710. source: "./media/characters/yen/front.svg",
  54711. extra: 443/411,
  54712. bottom: 6/449
  54713. }
  54714. },
  54715. sleeping: {
  54716. height: math.unit(10, "feet"),
  54717. weight: math.unit(800, "lb"),
  54718. name: "Sleeping",
  54719. image: {
  54720. source: "./media/characters/yen/sleeping.svg",
  54721. extra: 470/422,
  54722. bottom: 0/470
  54723. }
  54724. },
  54725. head: {
  54726. height: math.unit(2.2, "feet"),
  54727. name: "Head",
  54728. image: {
  54729. source: "./media/characters/yen/head.svg"
  54730. }
  54731. },
  54732. headAlt: {
  54733. height: math.unit(2.1, "feet"),
  54734. name: "Head (Alt)",
  54735. image: {
  54736. source: "./media/characters/yen/head-alt.svg"
  54737. }
  54738. },
  54739. },
  54740. [
  54741. {
  54742. name: "Normal",
  54743. height: math.unit(10, "feet"),
  54744. default: true
  54745. },
  54746. ]
  54747. ))
  54748. characterMakers.push(() => makeCharacter(
  54749. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54750. {
  54751. front: {
  54752. height: math.unit(12, "feet"),
  54753. name: "Front",
  54754. image: {
  54755. source: "./media/characters/citra/front.svg",
  54756. extra: 1950/1710,
  54757. bottom: 47/1997
  54758. }
  54759. },
  54760. },
  54761. [
  54762. {
  54763. name: "Normal",
  54764. height: math.unit(12, "feet"),
  54765. default: true
  54766. },
  54767. ]
  54768. ))
  54769. characterMakers.push(() => makeCharacter(
  54770. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54771. {
  54772. side: {
  54773. height: math.unit(7 + 10/12, "feet"),
  54774. name: "Side",
  54775. image: {
  54776. source: "./media/characters/sholstim/side.svg",
  54777. extra: 786/682,
  54778. bottom: 40/826
  54779. }
  54780. },
  54781. },
  54782. [
  54783. {
  54784. name: "Normal",
  54785. height: math.unit(7 + 10/12, "feet"),
  54786. default: true
  54787. },
  54788. ]
  54789. ))
  54790. characterMakers.push(() => makeCharacter(
  54791. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54792. {
  54793. front: {
  54794. height: math.unit(3.10, "meters"),
  54795. name: "Front",
  54796. image: {
  54797. source: "./media/characters/aggyn/front.svg",
  54798. extra: 1188/963,
  54799. bottom: 24/1212
  54800. }
  54801. },
  54802. },
  54803. [
  54804. {
  54805. name: "Normal",
  54806. height: math.unit(3.10, "meters"),
  54807. default: true
  54808. },
  54809. ]
  54810. ))
  54811. characterMakers.push(() => makeCharacter(
  54812. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54813. {
  54814. front: {
  54815. height: math.unit(7 + 5/12, "feet"),
  54816. weight: math.unit(687, "lb"),
  54817. name: "Front",
  54818. image: {
  54819. source: "./media/characters/alsandair-hergenroether/front.svg",
  54820. extra: 1251/1186,
  54821. bottom: 75/1326
  54822. }
  54823. },
  54824. back: {
  54825. height: math.unit(7 + 5/12, "feet"),
  54826. weight: math.unit(687, "lb"),
  54827. name: "Back",
  54828. image: {
  54829. source: "./media/characters/alsandair-hergenroether/back.svg",
  54830. extra: 1290/1229,
  54831. bottom: 17/1307
  54832. }
  54833. },
  54834. },
  54835. [
  54836. {
  54837. name: "Max Compression",
  54838. height: math.unit(7 + 5/12, "feet"),
  54839. default: true
  54840. },
  54841. {
  54842. name: "\"Normal\"",
  54843. height: math.unit(2, "universes")
  54844. },
  54845. ]
  54846. ))
  54847. characterMakers.push(() => makeCharacter(
  54848. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54849. {
  54850. front: {
  54851. height: math.unit(4 + 1/12, "feet"),
  54852. weight: math.unit(92, "lb"),
  54853. name: "Front",
  54854. image: {
  54855. source: "./media/characters/ie/front.svg",
  54856. extra: 1585/1352,
  54857. bottom: 91/1676
  54858. }
  54859. },
  54860. },
  54861. [
  54862. {
  54863. name: "Normal",
  54864. height: math.unit(4 + 1/12, "feet"),
  54865. default: true
  54866. },
  54867. ]
  54868. ))
  54869. characterMakers.push(() => makeCharacter(
  54870. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54871. {
  54872. anthro: {
  54873. height: math.unit(6, "feet"),
  54874. weight: math.unit(150, "lb"),
  54875. name: "Front",
  54876. image: {
  54877. source: "./media/characters/willow/anthro.svg",
  54878. extra: 1073/986,
  54879. bottom: 34/1107
  54880. },
  54881. form: "anthro",
  54882. default: true
  54883. },
  54884. taur: {
  54885. height: math.unit(6, "feet"),
  54886. weight: math.unit(150, "lb"),
  54887. name: "Side",
  54888. image: {
  54889. source: "./media/characters/willow/taur.svg",
  54890. extra: 647/512,
  54891. bottom: 136/783
  54892. },
  54893. form: "taur",
  54894. default: true
  54895. },
  54896. },
  54897. [
  54898. {
  54899. name: "Humanoid",
  54900. height: math.unit(2.7, "meters"),
  54901. form: "anthro"
  54902. },
  54903. {
  54904. name: "Normal",
  54905. height: math.unit(9, "meters"),
  54906. form: "anthro",
  54907. default: true
  54908. },
  54909. {
  54910. name: "Humanoid",
  54911. height: math.unit(2.1, "meters"),
  54912. form: "taur"
  54913. },
  54914. {
  54915. name: "Normal",
  54916. height: math.unit(7, "meters"),
  54917. form: "taur",
  54918. default: true
  54919. },
  54920. ],
  54921. {
  54922. "anthro": {
  54923. name: "Anthro",
  54924. default: true
  54925. },
  54926. "taur": {
  54927. name: "Taur",
  54928. },
  54929. }
  54930. ))
  54931. characterMakers.push(() => makeCharacter(
  54932. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54933. {
  54934. front: {
  54935. height: math.unit(2 + 5/12, "feet"),
  54936. name: "Front",
  54937. image: {
  54938. source: "./media/characters/kyan/front.svg",
  54939. extra: 460/334,
  54940. bottom: 23/483
  54941. },
  54942. extraAttributes: {
  54943. "toeLength": {
  54944. name: "Toe Length",
  54945. power: 1,
  54946. type: "length",
  54947. base: math.unit(7, "cm")
  54948. },
  54949. "toeclawLength": {
  54950. name: "Toeclaw Length",
  54951. power: 1,
  54952. type: "length",
  54953. base: math.unit(4.7, "cm")
  54954. },
  54955. "earHeight": {
  54956. name: "Ear Height",
  54957. power: 1,
  54958. type: "length",
  54959. base: math.unit(14.1, "cm")
  54960. },
  54961. }
  54962. },
  54963. paws: {
  54964. height: math.unit(0.45, "feet"),
  54965. name: "Paws",
  54966. image: {
  54967. source: "./media/characters/kyan/paws.svg",
  54968. extra: 581/581,
  54969. bottom: 114/695
  54970. }
  54971. },
  54972. },
  54973. [
  54974. {
  54975. name: "Normal",
  54976. height: math.unit(2 + 5/12, "feet"),
  54977. default: true
  54978. },
  54979. ]
  54980. ))
  54981. characterMakers.push(() => makeCharacter(
  54982. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54983. {
  54984. front: {
  54985. height: math.unit(2 + 2/3, "feet"),
  54986. name: "Front",
  54987. image: {
  54988. source: "./media/characters/xazzon/front.svg",
  54989. extra: 1109/984,
  54990. bottom: 42/1151
  54991. }
  54992. },
  54993. back: {
  54994. height: math.unit(2 + 2/3, "feet"),
  54995. name: "Back",
  54996. image: {
  54997. source: "./media/characters/xazzon/back.svg",
  54998. extra: 1095/971,
  54999. bottom: 23/1118
  55000. }
  55001. },
  55002. },
  55003. [
  55004. {
  55005. name: "Normal",
  55006. height: math.unit(2 + 2/3, "feet"),
  55007. default: true
  55008. },
  55009. ]
  55010. ))
  55011. characterMakers.push(() => makeCharacter(
  55012. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55013. {
  55014. front: {
  55015. height: math.unit(8, "feet"),
  55016. weight: math.unit(300, "lb"),
  55017. name: "Front",
  55018. image: {
  55019. source: "./media/characters/khyla-shadowsong/front.svg",
  55020. extra: 861/798,
  55021. bottom: 32/893
  55022. }
  55023. },
  55024. side: {
  55025. height: math.unit(8, "feet"),
  55026. weight: math.unit(300, "lb"),
  55027. name: "Side",
  55028. image: {
  55029. source: "./media/characters/khyla-shadowsong/side.svg",
  55030. extra: 790/750,
  55031. bottom: 87/877
  55032. }
  55033. },
  55034. back: {
  55035. height: math.unit(8, "feet"),
  55036. weight: math.unit(300, "lb"),
  55037. name: "Back",
  55038. image: {
  55039. source: "./media/characters/khyla-shadowsong/back.svg",
  55040. extra: 855/808,
  55041. bottom: 14/869
  55042. }
  55043. },
  55044. head: {
  55045. height: math.unit(2.7, "feet"),
  55046. name: "Head",
  55047. image: {
  55048. source: "./media/characters/khyla-shadowsong/head.svg"
  55049. }
  55050. },
  55051. },
  55052. [
  55053. {
  55054. name: "Micro",
  55055. height: math.unit(6, "inches")
  55056. },
  55057. {
  55058. name: "Normal",
  55059. height: math.unit(8, "feet"),
  55060. default: true
  55061. },
  55062. ]
  55063. ))
  55064. characterMakers.push(() => makeCharacter(
  55065. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55066. {
  55067. hyperFront: {
  55068. height: math.unit(9 + 4/12, "feet"),
  55069. weight: math.unit(2000, "lb"),
  55070. name: "Front",
  55071. image: {
  55072. source: "./media/characters/tiden/hyper-front.svg",
  55073. extra: 400/382,
  55074. bottom: 6/406
  55075. },
  55076. form: "hyper",
  55077. },
  55078. regularFront: {
  55079. height: math.unit(7 + 10/12, "feet"),
  55080. weight: math.unit(470, "lb"),
  55081. name: "Front",
  55082. image: {
  55083. source: "./media/characters/tiden/regular-front.svg",
  55084. extra: 468/442,
  55085. bottom: 6/474
  55086. },
  55087. form: "regular",
  55088. },
  55089. },
  55090. [
  55091. {
  55092. name: "Normal",
  55093. height: math.unit(9 + 4/12, "feet"),
  55094. default: true,
  55095. form: "hyper"
  55096. },
  55097. {
  55098. name: "Normal",
  55099. height: math.unit(7 + 10/12, "feet"),
  55100. default: true,
  55101. form: "regular"
  55102. },
  55103. ],
  55104. {
  55105. "hyper": {
  55106. name: "Hyper",
  55107. default: true
  55108. },
  55109. "regular": {
  55110. name: "Regular",
  55111. },
  55112. }
  55113. ))
  55114. characterMakers.push(() => makeCharacter(
  55115. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55116. {
  55117. side: {
  55118. height: math.unit(6, "feet"),
  55119. weight: math.unit(150, "lb"),
  55120. name: "Side",
  55121. image: {
  55122. source: "./media/characters/jason-crowe/side.svg",
  55123. extra: 1771/766,
  55124. bottom: 219/1990
  55125. }
  55126. },
  55127. },
  55128. [
  55129. {
  55130. name: "Pocket Gryphon",
  55131. height: math.unit(6, "cm")
  55132. },
  55133. {
  55134. name: "Raven",
  55135. height: math.unit(60, "cm")
  55136. },
  55137. {
  55138. name: "Normal",
  55139. height: math.unit(1, "meter"),
  55140. default: true
  55141. },
  55142. ]
  55143. ))
  55144. characterMakers.push(() => makeCharacter(
  55145. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55146. {
  55147. front: {
  55148. height: math.unit(9 + 6/12, "feet"),
  55149. weight: math.unit(1100, "lb"),
  55150. name: "Front",
  55151. image: {
  55152. source: "./media/characters/django/front.svg",
  55153. extra: 1231/1136,
  55154. bottom: 34/1265
  55155. }
  55156. },
  55157. side: {
  55158. height: math.unit(9 + 6/12, "feet"),
  55159. weight: math.unit(1100, "lb"),
  55160. name: "Side",
  55161. image: {
  55162. source: "./media/characters/django/side.svg",
  55163. extra: 1267/1174,
  55164. bottom: 9/1276
  55165. }
  55166. },
  55167. },
  55168. [
  55169. {
  55170. name: "Normal",
  55171. height: math.unit(9 + 6/12, "feet"),
  55172. default: true
  55173. },
  55174. {
  55175. name: "Macro 1",
  55176. height: math.unit(50, "feet")
  55177. },
  55178. {
  55179. name: "Macro 2",
  55180. height: math.unit(500, "feet")
  55181. },
  55182. {
  55183. name: "Mega Macro",
  55184. height: math.unit(5300, "feet")
  55185. },
  55186. ]
  55187. ))
  55188. characterMakers.push(() => makeCharacter(
  55189. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55190. {
  55191. frontSfw: {
  55192. height: math.unit(120, "cm"),
  55193. weight: math.unit(15, "kg"),
  55194. name: "Front (SFW)",
  55195. image: {
  55196. source: "./media/characters/eri/front-sfw.svg",
  55197. extra: 1014/939,
  55198. bottom: 37/1051
  55199. },
  55200. form: "moth",
  55201. },
  55202. frontNsfw: {
  55203. height: math.unit(120, "cm"),
  55204. weight: math.unit(15, "kg"),
  55205. name: "Front (NSFW)",
  55206. image: {
  55207. source: "./media/characters/eri/front-nsfw.svg",
  55208. extra: 1014/939,
  55209. bottom: 37/1051
  55210. },
  55211. form: "moth",
  55212. default: true
  55213. },
  55214. egg: {
  55215. height: math.unit(10, "cm"),
  55216. name: "Egg",
  55217. image: {
  55218. source: "./media/characters/eri/egg.svg"
  55219. },
  55220. form: "egg",
  55221. default: true
  55222. },
  55223. },
  55224. [
  55225. {
  55226. name: "Normal",
  55227. height: math.unit(120, "cm"),
  55228. default: true,
  55229. form: "moth"
  55230. },
  55231. {
  55232. name: "Normal",
  55233. height: math.unit(10, "cm"),
  55234. default: true,
  55235. form: "egg"
  55236. },
  55237. ],
  55238. {
  55239. "moth": {
  55240. name: "Moth",
  55241. default: true
  55242. },
  55243. "egg": {
  55244. name: "Egg",
  55245. },
  55246. }
  55247. ))
  55248. characterMakers.push(() => makeCharacter(
  55249. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55250. {
  55251. front: {
  55252. height: math.unit(200, "feet"),
  55253. name: "Front",
  55254. image: {
  55255. source: "./media/characters/bishop-dowser/front.svg",
  55256. extra: 933/868,
  55257. bottom: 106/1039
  55258. }
  55259. },
  55260. },
  55261. [
  55262. {
  55263. name: "Giant",
  55264. height: math.unit(200, "feet"),
  55265. default: true
  55266. },
  55267. ]
  55268. ))
  55269. characterMakers.push(() => makeCharacter(
  55270. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55271. {
  55272. front: {
  55273. height: math.unit(2, "meters"),
  55274. preyCapacity: math.unit(3, "people"),
  55275. name: "Front",
  55276. image: {
  55277. source: "./media/characters/fryra/front.svg",
  55278. extra: 1025/948,
  55279. bottom: 30/1055
  55280. },
  55281. extraAttributes: {
  55282. "breastVolume": {
  55283. name: "Breast Volume",
  55284. power: 3,
  55285. type: "volume",
  55286. base: math.unit(8, "liters")
  55287. },
  55288. }
  55289. },
  55290. back: {
  55291. height: math.unit(2, "meters"),
  55292. preyCapacity: math.unit(3, "people"),
  55293. name: "Back",
  55294. image: {
  55295. source: "./media/characters/fryra/back.svg",
  55296. extra: 993/938,
  55297. bottom: 38/1031
  55298. },
  55299. extraAttributes: {
  55300. "breastVolume": {
  55301. name: "Breast Volume",
  55302. power: 3,
  55303. type: "volume",
  55304. base: math.unit(8, "liters")
  55305. },
  55306. }
  55307. },
  55308. head: {
  55309. height: math.unit(1.33, "feet"),
  55310. name: "Head",
  55311. image: {
  55312. source: "./media/characters/fryra/head.svg"
  55313. }
  55314. },
  55315. maw: {
  55316. height: math.unit(0.56, "feet"),
  55317. name: "Maw",
  55318. image: {
  55319. source: "./media/characters/fryra/maw.svg"
  55320. }
  55321. },
  55322. },
  55323. [
  55324. {
  55325. name: "Micro",
  55326. height: math.unit(5, "cm")
  55327. },
  55328. {
  55329. name: "Normal",
  55330. height: math.unit(2, "meters"),
  55331. default: true
  55332. },
  55333. {
  55334. name: "Small Macro",
  55335. height: math.unit(8, "meters")
  55336. },
  55337. {
  55338. name: "Macro",
  55339. height: math.unit(50, "meters")
  55340. },
  55341. {
  55342. name: "Megamacro",
  55343. height: math.unit(1, "km")
  55344. },
  55345. {
  55346. name: "Planetary",
  55347. height: math.unit(300000, "km")
  55348. },
  55349. {
  55350. name: "Universal",
  55351. height: math.unit(250, "lightyears")
  55352. },
  55353. {
  55354. name: "Fabric of Reality",
  55355. height: math.unit(1000, "multiverses")
  55356. },
  55357. ]
  55358. ))
  55359. characterMakers.push(() => makeCharacter(
  55360. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55361. {
  55362. frontDressed: {
  55363. height: math.unit(6 + 2/12, "feet"),
  55364. name: "Front (Dressed)",
  55365. image: {
  55366. source: "./media/characters/fiera/front-dressed.svg",
  55367. extra: 1883/1793,
  55368. bottom: 70/1953
  55369. }
  55370. },
  55371. backDressed: {
  55372. height: math.unit(6 + 2/12, "feet"),
  55373. name: "Back (Dressed)",
  55374. image: {
  55375. source: "./media/characters/fiera/back-dressed.svg",
  55376. extra: 1847/1780,
  55377. bottom: 70/1917
  55378. }
  55379. },
  55380. frontNude: {
  55381. height: math.unit(6 + 2/12, "feet"),
  55382. name: "Front (Nude)",
  55383. image: {
  55384. source: "./media/characters/fiera/front-nude.svg",
  55385. extra: 1875/1785,
  55386. bottom: 66/1941
  55387. }
  55388. },
  55389. backNude: {
  55390. height: math.unit(6 + 2/12, "feet"),
  55391. name: "Back (Nude)",
  55392. image: {
  55393. source: "./media/characters/fiera/back-nude.svg",
  55394. extra: 1855/1788,
  55395. bottom: 44/1899
  55396. }
  55397. },
  55398. maw: {
  55399. height: math.unit(1.3, "feet"),
  55400. name: "Maw",
  55401. image: {
  55402. source: "./media/characters/fiera/maw.svg"
  55403. }
  55404. },
  55405. paw: {
  55406. height: math.unit(1, "feet"),
  55407. name: "Paw",
  55408. image: {
  55409. source: "./media/characters/fiera/paw.svg"
  55410. }
  55411. },
  55412. shoe: {
  55413. height: math.unit(1.05, "feet"),
  55414. name: "Shoe",
  55415. image: {
  55416. source: "./media/characters/fiera/shoe.svg"
  55417. }
  55418. },
  55419. },
  55420. [
  55421. {
  55422. name: "Normal",
  55423. height: math.unit(6 + 2/12, "feet"),
  55424. default: true
  55425. },
  55426. {
  55427. name: "Size Difference",
  55428. height: math.unit(13, "feet")
  55429. },
  55430. {
  55431. name: "Macro",
  55432. height: math.unit(60, "feet")
  55433. },
  55434. {
  55435. name: "Mega Macro",
  55436. height: math.unit(200, "feet")
  55437. },
  55438. ]
  55439. ))
  55440. characterMakers.push(() => makeCharacter(
  55441. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55442. {
  55443. back: {
  55444. height: math.unit(6, "feet"),
  55445. name: "Back",
  55446. image: {
  55447. source: "./media/characters/flare/back.svg",
  55448. extra: 1883/1765,
  55449. bottom: 32/1915
  55450. }
  55451. },
  55452. },
  55453. [
  55454. {
  55455. name: "Normal",
  55456. height: math.unit(6 + 2/12, "feet"),
  55457. default: true
  55458. },
  55459. {
  55460. name: "Size Difference",
  55461. height: math.unit(13, "feet")
  55462. },
  55463. {
  55464. name: "Macro",
  55465. height: math.unit(60, "feet")
  55466. },
  55467. {
  55468. name: "Macro 2",
  55469. height: math.unit(100, "feet")
  55470. },
  55471. {
  55472. name: "Mega Macro",
  55473. height: math.unit(200, "feet")
  55474. },
  55475. ]
  55476. ))
  55477. characterMakers.push(() => makeCharacter(
  55478. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55479. {
  55480. front: {
  55481. height: math.unit(2.2, "m"),
  55482. weight: math.unit(300, "kg"),
  55483. name: "Front",
  55484. image: {
  55485. source: "./media/characters/hanna/front.svg",
  55486. extra: 1696/1502,
  55487. bottom: 206/1902
  55488. }
  55489. },
  55490. },
  55491. [
  55492. {
  55493. name: "Humanoid",
  55494. height: math.unit(2.2, "meters")
  55495. },
  55496. {
  55497. name: "Normal",
  55498. height: math.unit(4.8, "meters"),
  55499. default: true
  55500. },
  55501. ]
  55502. ))
  55503. characterMakers.push(() => makeCharacter(
  55504. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55505. {
  55506. front: {
  55507. height: math.unit(2.8, "meters"),
  55508. name: "Front",
  55509. image: {
  55510. source: "./media/characters/argo/front.svg",
  55511. extra: 731/518,
  55512. bottom: 84/815
  55513. }
  55514. },
  55515. },
  55516. [
  55517. {
  55518. name: "Normal",
  55519. height: math.unit(3, "meters"),
  55520. default: true
  55521. },
  55522. ]
  55523. ))
  55524. characterMakers.push(() => makeCharacter(
  55525. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55526. {
  55527. side: {
  55528. height: math.unit(3.8, "meters"),
  55529. name: "Side",
  55530. image: {
  55531. source: "./media/characters/sybil/side.svg",
  55532. extra: 382/361,
  55533. bottom: 25/407
  55534. }
  55535. },
  55536. },
  55537. [
  55538. {
  55539. name: "Normal",
  55540. height: math.unit(3.8, "meters"),
  55541. default: true
  55542. },
  55543. ]
  55544. ))
  55545. characterMakers.push(() => makeCharacter(
  55546. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55547. {
  55548. side: {
  55549. height: math.unit(6, "meters"),
  55550. name: "Side",
  55551. image: {
  55552. source: "./media/characters/plum/side.svg",
  55553. extra: 858/755,
  55554. bottom: 45/903
  55555. },
  55556. form: "taur",
  55557. default: true
  55558. },
  55559. back: {
  55560. height: math.unit(6.3, "meters"),
  55561. name: "Back",
  55562. image: {
  55563. source: "./media/characters/plum/back.svg",
  55564. extra: 887/813,
  55565. bottom: 32/919
  55566. },
  55567. form: "taur",
  55568. },
  55569. feral: {
  55570. height: math.unit(5.5, "meter"),
  55571. name: "Front",
  55572. image: {
  55573. source: "./media/characters/plum/feral.svg",
  55574. extra: 568/403,
  55575. bottom: 51/619
  55576. },
  55577. form: "feral",
  55578. default: true
  55579. },
  55580. head: {
  55581. height: math.unit(1.46, "meter"),
  55582. name: "Head",
  55583. image: {
  55584. source: "./media/characters/plum/head.svg"
  55585. },
  55586. form: "taur"
  55587. },
  55588. tailTop: {
  55589. height: math.unit(5.6, "meter"),
  55590. name: "Tail (Top)",
  55591. image: {
  55592. source: "./media/characters/plum/tail-top.svg"
  55593. },
  55594. form: "taur",
  55595. },
  55596. tailBottom: {
  55597. height: math.unit(5.6, "meter"),
  55598. name: "Tail (Bottom)",
  55599. image: {
  55600. source: "./media/characters/plum/tail-bottom.svg"
  55601. },
  55602. form: "taur",
  55603. },
  55604. feralHead: {
  55605. height: math.unit(2.56549521, "meter"),
  55606. name: "Head",
  55607. image: {
  55608. source: "./media/characters/plum/head.svg"
  55609. },
  55610. form: "feral"
  55611. },
  55612. feralTailTop: {
  55613. height: math.unit(5.44728435, "meter"),
  55614. name: "Tail (Top)",
  55615. image: {
  55616. source: "./media/characters/plum/tail-top.svg"
  55617. },
  55618. form: "feral",
  55619. },
  55620. feralTailBottom: {
  55621. height: math.unit(5.44728435, "meter"),
  55622. name: "Tail (Bottom)",
  55623. image: {
  55624. source: "./media/characters/plum/tail-bottom.svg"
  55625. },
  55626. form: "feral",
  55627. },
  55628. },
  55629. [
  55630. {
  55631. name: "Normal",
  55632. height: math.unit(6, "meters"),
  55633. default: true,
  55634. form: "taur"
  55635. },
  55636. {
  55637. name: "Normal",
  55638. height: math.unit(5.5, "meters"),
  55639. default: true,
  55640. form: "feral"
  55641. },
  55642. ],
  55643. {
  55644. "taur": {
  55645. name: "Taur",
  55646. default: true
  55647. },
  55648. "feral": {
  55649. name: "Feral",
  55650. },
  55651. }
  55652. ))
  55653. characterMakers.push(() => makeCharacter(
  55654. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55655. {
  55656. front: {
  55657. height: math.unit(6, "feet"),
  55658. weight: math.unit(115, "lb"),
  55659. name: "Front",
  55660. image: {
  55661. source: "./media/characters/celeste-kitsune/front.svg",
  55662. extra: 393/366,
  55663. bottom: 7/400
  55664. }
  55665. },
  55666. side: {
  55667. height: math.unit(6, "feet"),
  55668. weight: math.unit(115, "lb"),
  55669. name: "Side",
  55670. image: {
  55671. source: "./media/characters/celeste-kitsune/side.svg",
  55672. extra: 818/765,
  55673. bottom: 40/858
  55674. }
  55675. },
  55676. },
  55677. [
  55678. {
  55679. name: "Megamacro",
  55680. height: math.unit(1500, "miles"),
  55681. default: true
  55682. },
  55683. ]
  55684. ))
  55685. characterMakers.push(() => makeCharacter(
  55686. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55687. {
  55688. front: {
  55689. height: math.unit(8, "meters"),
  55690. name: "Front",
  55691. image: {
  55692. source: "./media/characters/io/front.svg",
  55693. extra: 865/722,
  55694. bottom: 58/923
  55695. }
  55696. },
  55697. back: {
  55698. height: math.unit(8, "meters"),
  55699. name: "Back",
  55700. image: {
  55701. source: "./media/characters/io/back.svg",
  55702. extra: 920/776,
  55703. bottom: 42/962
  55704. }
  55705. },
  55706. head: {
  55707. height: math.unit(5.09, "meters"),
  55708. name: "Head",
  55709. image: {
  55710. source: "./media/characters/io/head.svg"
  55711. }
  55712. },
  55713. hand: {
  55714. height: math.unit(1.6, "meters"),
  55715. name: "Hand",
  55716. image: {
  55717. source: "./media/characters/io/hand.svg"
  55718. }
  55719. },
  55720. foot: {
  55721. height: math.unit(2.4, "meters"),
  55722. name: "Foot",
  55723. image: {
  55724. source: "./media/characters/io/foot.svg"
  55725. }
  55726. },
  55727. },
  55728. [
  55729. {
  55730. name: "Normal",
  55731. height: math.unit(8, "meters"),
  55732. default: true
  55733. },
  55734. ]
  55735. ))
  55736. characterMakers.push(() => makeCharacter(
  55737. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55738. {
  55739. side: {
  55740. height: math.unit(6 + 3/12, "feet"),
  55741. weight: math.unit(225, "lb"),
  55742. name: "Side",
  55743. image: {
  55744. source: "./media/characters/silas/side.svg",
  55745. extra: 703/653,
  55746. bottom: 23/726
  55747. },
  55748. extraAttributes: {
  55749. "pawLength": {
  55750. name: "Paw Length",
  55751. power: 1,
  55752. type: "length",
  55753. base: math.unit(12, "inches")
  55754. },
  55755. "pawWidth": {
  55756. name: "Paw Width",
  55757. power: 1,
  55758. type: "length",
  55759. base: math.unit(4.5, "inches")
  55760. },
  55761. "pawArea": {
  55762. name: "Paw Area",
  55763. power: 2,
  55764. type: "area",
  55765. base: math.unit(12 * 4.5, "inches^2")
  55766. },
  55767. }
  55768. },
  55769. },
  55770. [
  55771. {
  55772. name: "Normal",
  55773. height: math.unit(6 + 3/12, "feet"),
  55774. default: true
  55775. },
  55776. ]
  55777. ))
  55778. characterMakers.push(() => makeCharacter(
  55779. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55780. {
  55781. back: {
  55782. height: math.unit(1.6, "meters"),
  55783. weight: math.unit(150, "lb"),
  55784. name: "Back",
  55785. image: {
  55786. source: "./media/characters/zari/back.svg",
  55787. extra: 424/411,
  55788. bottom: 32/456
  55789. },
  55790. extraAttributes: {
  55791. "bladderCapacity": {
  55792. name: "Bladder Size",
  55793. power: 3,
  55794. type: "volume",
  55795. base: math.unit(500, "mL")
  55796. },
  55797. "bladderFlow": {
  55798. name: "Flow Rate",
  55799. power: 3,
  55800. type: "volume",
  55801. base: math.unit(25, "mL")
  55802. },
  55803. }
  55804. },
  55805. },
  55806. [
  55807. {
  55808. name: "Normal",
  55809. height: math.unit(1.6, "meters"),
  55810. default: true
  55811. },
  55812. ]
  55813. ))
  55814. characterMakers.push(() => makeCharacter(
  55815. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55816. {
  55817. front: {
  55818. height: math.unit(25, "feet"),
  55819. weight: math.unit(5, "tons"),
  55820. name: "Front",
  55821. image: {
  55822. source: "./media/characters/charlie-human/front.svg",
  55823. extra: 1870/1740,
  55824. bottom: 102/1972
  55825. },
  55826. extraAttributes: {
  55827. "dickLength": {
  55828. name: "Dick Length",
  55829. power: 1,
  55830. type: "length",
  55831. base: math.unit(9, "feet")
  55832. },
  55833. }
  55834. },
  55835. back: {
  55836. height: math.unit(25, "feet"),
  55837. weight: math.unit(5, "tons"),
  55838. name: "Back",
  55839. image: {
  55840. source: "./media/characters/charlie-human/back.svg",
  55841. extra: 1858/1733,
  55842. bottom: 105/1963
  55843. },
  55844. extraAttributes: {
  55845. "dickLength": {
  55846. name: "Dick Length",
  55847. power: 1,
  55848. type: "length",
  55849. base: math.unit(9, "feet")
  55850. },
  55851. }
  55852. },
  55853. },
  55854. [
  55855. {
  55856. name: "\"Normal\"",
  55857. height: math.unit(6 + 4/12, "feet")
  55858. },
  55859. {
  55860. name: "Big",
  55861. height: math.unit(25, "feet"),
  55862. default: true
  55863. },
  55864. ]
  55865. ))
  55866. characterMakers.push(() => makeCharacter(
  55867. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55868. {
  55869. front: {
  55870. height: math.unit(6 + 4/12, "feet"),
  55871. weight: math.unit(320, "lb"),
  55872. name: "Front",
  55873. image: {
  55874. source: "./media/characters/ookitsu/front.svg",
  55875. extra: 1160/976,
  55876. bottom: 38/1198
  55877. }
  55878. },
  55879. frontNsfw: {
  55880. height: math.unit(6 + 4/12, "feet"),
  55881. weight: math.unit(320, "lb"),
  55882. name: "Front (NSFW)",
  55883. image: {
  55884. source: "./media/characters/ookitsu/front-nsfw.svg",
  55885. extra: 1160/976,
  55886. bottom: 38/1198
  55887. }
  55888. },
  55889. back: {
  55890. height: math.unit(6 + 4/12, "feet"),
  55891. weight: math.unit(320, "lb"),
  55892. name: "Back",
  55893. image: {
  55894. source: "./media/characters/ookitsu/back.svg",
  55895. extra: 1030/975,
  55896. bottom: 70/1100
  55897. }
  55898. },
  55899. head: {
  55900. height: math.unit(1.79, "feet"),
  55901. name: "Head",
  55902. image: {
  55903. source: "./media/characters/ookitsu/head.svg"
  55904. }
  55905. },
  55906. hand: {
  55907. height: math.unit(0.92, "feet"),
  55908. name: "Hand",
  55909. image: {
  55910. source: "./media/characters/ookitsu/hand.svg"
  55911. }
  55912. },
  55913. tails: {
  55914. height: math.unit(3.3, "feet"),
  55915. name: "Tails",
  55916. image: {
  55917. source: "./media/characters/ookitsu/tails.svg"
  55918. }
  55919. },
  55920. dick: {
  55921. height: math.unit(1.10833, "feet"),
  55922. name: "Dick",
  55923. image: {
  55924. source: "./media/characters/ookitsu/dick.svg"
  55925. }
  55926. },
  55927. },
  55928. [
  55929. {
  55930. name: "Normal",
  55931. height: math.unit(6 + 4/12, "feet"),
  55932. default: true
  55933. },
  55934. {
  55935. name: "Macro",
  55936. height: math.unit(30, "feet")
  55937. },
  55938. ]
  55939. ))
  55940. characterMakers.push(() => makeCharacter(
  55941. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55942. {
  55943. anthroFront: {
  55944. height: math.unit(6, "feet"),
  55945. weight: math.unit(250, "lb"),
  55946. name: "Front",
  55947. image: {
  55948. source: "./media/characters/jhusky/anthro-front.svg",
  55949. extra: 474/439,
  55950. bottom: 7/481
  55951. },
  55952. form: "anthro",
  55953. default: true
  55954. },
  55955. taurSideSfw: {
  55956. height: math.unit(6 + 4/12, "feet"),
  55957. weight: math.unit(500, "lb"),
  55958. name: "Side (SFW)",
  55959. image: {
  55960. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55961. extra: 1741/1629,
  55962. bottom: 196/1937
  55963. },
  55964. form: "taur",
  55965. default: true
  55966. },
  55967. taurSideNsfw: {
  55968. height: math.unit(6 + 4/12, "feet"),
  55969. weight: math.unit(500, "lb"),
  55970. name: "Taur (NSFW)",
  55971. image: {
  55972. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55973. extra: 1741/1629,
  55974. bottom: 196/1937
  55975. },
  55976. form: "taur",
  55977. },
  55978. },
  55979. [
  55980. {
  55981. name: "Huge",
  55982. height: math.unit(500, "feet"),
  55983. form: "anthro"
  55984. },
  55985. {
  55986. name: "Macro",
  55987. height: math.unit(1000, "feet"),
  55988. default: true,
  55989. form: "anthro"
  55990. },
  55991. {
  55992. name: "Megamacro",
  55993. height: math.unit(10000, "feet"),
  55994. form: "anthro"
  55995. },
  55996. {
  55997. name: "Huge",
  55998. height: math.unit(528, "feet"),
  55999. form: "taur"
  56000. },
  56001. {
  56002. name: "Macro",
  56003. height: math.unit(1056, "feet"),
  56004. default: true,
  56005. form: "taur"
  56006. },
  56007. {
  56008. name: "Megamacro",
  56009. height: math.unit(10556, "feet"),
  56010. form: "taur"
  56011. },
  56012. ],
  56013. {
  56014. "anthro": {
  56015. name: "Anthro",
  56016. default: true
  56017. },
  56018. "taur": {
  56019. name: "Taur",
  56020. },
  56021. }
  56022. ))
  56023. characterMakers.push(() => makeCharacter(
  56024. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56025. {
  56026. front: {
  56027. height: math.unit(8, "feet"),
  56028. weight: math.unit(500, "lb"),
  56029. name: "Front",
  56030. image: {
  56031. source: "./media/characters/armail/front.svg",
  56032. extra: 1753/1669,
  56033. bottom: 155/1908
  56034. }
  56035. },
  56036. back: {
  56037. height: math.unit(8, "feet"),
  56038. weight: math.unit(500, "lb"),
  56039. name: "Back",
  56040. image: {
  56041. source: "./media/characters/armail/back.svg",
  56042. extra: 1872/1803,
  56043. bottom: 63/1935
  56044. }
  56045. },
  56046. },
  56047. [
  56048. {
  56049. name: "Micro",
  56050. height: math.unit(0.25, "feet")
  56051. },
  56052. {
  56053. name: "Normal",
  56054. height: math.unit(8, "feet"),
  56055. default: true
  56056. },
  56057. {
  56058. name: "Mini-macro",
  56059. height: math.unit(30, "feet")
  56060. },
  56061. {
  56062. name: "Macro",
  56063. height: math.unit(400, "feet")
  56064. },
  56065. {
  56066. name: "Mega-macro",
  56067. height: math.unit(6000, "feet")
  56068. },
  56069. ]
  56070. ))
  56071. characterMakers.push(() => makeCharacter(
  56072. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56073. {
  56074. front: {
  56075. height: math.unit(6 + 7/12, "feet"),
  56076. weight: math.unit(210, "lb"),
  56077. name: "Front",
  56078. image: {
  56079. source: "./media/characters/wilfred-t-buxton/front.svg",
  56080. extra: 1068/882,
  56081. bottom: 28/1096
  56082. }
  56083. },
  56084. },
  56085. [
  56086. {
  56087. name: "Normal",
  56088. height: math.unit(6 + 7/12, "feet"),
  56089. default: true
  56090. },
  56091. ]
  56092. ))
  56093. characterMakers.push(() => makeCharacter(
  56094. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56095. {
  56096. front: {
  56097. height: math.unit(5 + 2/12, "feet"),
  56098. weight: math.unit(120, "lb"),
  56099. name: "Front",
  56100. image: {
  56101. source: "./media/characters/leighton-marrow/front.svg",
  56102. extra: 441/409,
  56103. bottom: 37/478
  56104. }
  56105. },
  56106. },
  56107. [
  56108. {
  56109. name: "Normal",
  56110. height: math.unit(5 + 2/12, "feet"),
  56111. default: true
  56112. },
  56113. ]
  56114. ))
  56115. characterMakers.push(() => makeCharacter(
  56116. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56117. {
  56118. front: {
  56119. height: math.unit(4, "meters"),
  56120. weight: math.unit(1200, "kg"),
  56121. name: "Front",
  56122. image: {
  56123. source: "./media/characters/licos/front.svg",
  56124. extra: 1727/1604,
  56125. bottom: 101/1828
  56126. },
  56127. form: "anthro",
  56128. default: true
  56129. },
  56130. taur_side: {
  56131. height: math.unit(20, "meters"),
  56132. weight: math.unit(1100000, "kg"),
  56133. name: "Side",
  56134. image: {
  56135. source: "./media/characters/licos/taur.svg",
  56136. extra: 1158/1091,
  56137. bottom: 80/1238
  56138. },
  56139. form: "taur",
  56140. default: true
  56141. },
  56142. },
  56143. [
  56144. {
  56145. name: "Normal",
  56146. height: math.unit(4, "meters"),
  56147. default: true,
  56148. form: "anthro"
  56149. },
  56150. {
  56151. name: "Normal",
  56152. height: math.unit(20, "meters"),
  56153. default: true,
  56154. form: "taur"
  56155. },
  56156. ],
  56157. {
  56158. "anthro": {
  56159. name: "Anthro",
  56160. default: true
  56161. },
  56162. "taur": {
  56163. name: "Taur",
  56164. },
  56165. }
  56166. ))
  56167. characterMakers.push(() => makeCharacter(
  56168. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56169. {
  56170. front: {
  56171. height: math.unit(10 + 3/12, "feet"),
  56172. name: "Front",
  56173. image: {
  56174. source: "./media/characters/theo-monkey/front.svg",
  56175. extra: 1735/1658,
  56176. bottom: 73/1808
  56177. }
  56178. },
  56179. back: {
  56180. height: math.unit(10 + 3/12, "feet"),
  56181. name: "Back",
  56182. image: {
  56183. source: "./media/characters/theo-monkey/back.svg",
  56184. extra: 1742/1664,
  56185. bottom: 33/1775
  56186. }
  56187. },
  56188. head: {
  56189. height: math.unit(2.29, "feet"),
  56190. name: "Head",
  56191. image: {
  56192. source: "./media/characters/theo-monkey/head.svg"
  56193. }
  56194. },
  56195. handPalm: {
  56196. height: math.unit(1.73, "feet"),
  56197. name: "Hand (Palm)",
  56198. image: {
  56199. source: "./media/characters/theo-monkey/hand-palm.svg"
  56200. }
  56201. },
  56202. handBack: {
  56203. height: math.unit(1.63, "feet"),
  56204. name: "Hand (Back)",
  56205. image: {
  56206. source: "./media/characters/theo-monkey/hand-back.svg"
  56207. }
  56208. },
  56209. footSole: {
  56210. height: math.unit(2.15, "feet"),
  56211. name: "Foot (Sole)",
  56212. image: {
  56213. source: "./media/characters/theo-monkey/foot-sole.svg"
  56214. }
  56215. },
  56216. footSide: {
  56217. height: math.unit(1.6, "feet"),
  56218. name: "Foot (Side)",
  56219. image: {
  56220. source: "./media/characters/theo-monkey/foot-side.svg"
  56221. }
  56222. },
  56223. },
  56224. [
  56225. {
  56226. name: "Normal",
  56227. height: math.unit(10 + 3/12, "feet"),
  56228. default: true
  56229. },
  56230. ]
  56231. ))
  56232. characterMakers.push(() => makeCharacter(
  56233. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56234. {
  56235. front: {
  56236. height: math.unit(11, "feet"),
  56237. weight: math.unit(3000, "lb"),
  56238. preyCapacity: math.unit(10, "people"),
  56239. name: "Front",
  56240. image: {
  56241. source: "./media/characters/brook/front.svg",
  56242. extra: 909/835,
  56243. bottom: 108/1017
  56244. }
  56245. },
  56246. back: {
  56247. height: math.unit(11, "feet"),
  56248. weight: math.unit(3000, "lb"),
  56249. preyCapacity: math.unit(10, "people"),
  56250. name: "Back",
  56251. image: {
  56252. source: "./media/characters/brook/back.svg",
  56253. extra: 976/916,
  56254. bottom: 34/1010
  56255. }
  56256. },
  56257. backAlt: {
  56258. height: math.unit(11, "feet"),
  56259. weight: math.unit(3000, "lb"),
  56260. preyCapacity: math.unit(10, "people"),
  56261. name: "Back (Alt)",
  56262. image: {
  56263. source: "./media/characters/brook/back-alt.svg",
  56264. extra: 1283/1213,
  56265. bottom: 35/1318
  56266. }
  56267. },
  56268. bust: {
  56269. height: math.unit(9.0859030837, "feet"),
  56270. weight: math.unit(3000, "lb"),
  56271. preyCapacity: math.unit(10, "people"),
  56272. name: "Bust",
  56273. image: {
  56274. source: "./media/characters/brook/bust.svg",
  56275. extra: 2043/1923,
  56276. bottom: 0/2043
  56277. }
  56278. },
  56279. },
  56280. [
  56281. {
  56282. name: "Small",
  56283. height: math.unit(11, "feet"),
  56284. default: true
  56285. },
  56286. {
  56287. name: "Towering",
  56288. height: math.unit(5, "km")
  56289. },
  56290. {
  56291. name: "Enormous",
  56292. height: math.unit(25, "earths")
  56293. },
  56294. ]
  56295. ))
  56296. characterMakers.push(() => makeCharacter(
  56297. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56298. {
  56299. front: {
  56300. height: math.unit(4, "feet"),
  56301. weight: math.unit(150, "lb"),
  56302. name: "Front",
  56303. image: {
  56304. source: "./media/characters/squishi/front.svg",
  56305. extra: 1428/1271,
  56306. bottom: 30/1458
  56307. },
  56308. extraAttributes: {
  56309. "pawSize": {
  56310. name: "Paw Size",
  56311. power: 1,
  56312. type: "length",
  56313. base: math.unit(14, "ShoeSizeMensUS"),
  56314. defaultUnit: "ShoeSizeMensUS"
  56315. },
  56316. }
  56317. },
  56318. side: {
  56319. height: math.unit(4, "feet"),
  56320. weight: math.unit(150, "lb"),
  56321. name: "Side",
  56322. image: {
  56323. source: "./media/characters/squishi/side.svg",
  56324. extra: 1428/1271,
  56325. bottom: 30/1458
  56326. },
  56327. extraAttributes: {
  56328. "pawSize": {
  56329. name: "Paw Size",
  56330. power: 1,
  56331. type: "length",
  56332. base: math.unit(14, "ShoeSizeMensUS"),
  56333. defaultUnit: "ShoeSizeMensUS"
  56334. },
  56335. }
  56336. },
  56337. back: {
  56338. height: math.unit(4, "feet"),
  56339. weight: math.unit(150, "lb"),
  56340. name: "Back",
  56341. image: {
  56342. source: "./media/characters/squishi/back.svg",
  56343. extra: 1428/1271,
  56344. bottom: 30/1458
  56345. },
  56346. extraAttributes: {
  56347. "pawSize": {
  56348. name: "Paw Size",
  56349. power: 1,
  56350. type: "length",
  56351. base: math.unit(14, "ShoeSizeMensUS"),
  56352. defaultUnit: "ShoeSizeMensUS"
  56353. },
  56354. }
  56355. },
  56356. },
  56357. [
  56358. {
  56359. name: "Normal",
  56360. height: math.unit(4, "feet"),
  56361. default: true
  56362. },
  56363. ]
  56364. ))
  56365. characterMakers.push(() => makeCharacter(
  56366. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56367. {
  56368. front: {
  56369. height: math.unit(7 + 8/12, "feet"),
  56370. weight: math.unit(333, "lb"),
  56371. name: "Front",
  56372. image: {
  56373. source: "./media/characters/vincent-vasroc/front.svg",
  56374. extra: 1962/1860,
  56375. bottom: 41/2003
  56376. }
  56377. },
  56378. back: {
  56379. height: math.unit(7 + 8/12, "feet"),
  56380. weight: math.unit(333, "lb"),
  56381. name: "Back",
  56382. image: {
  56383. source: "./media/characters/vincent-vasroc/back.svg",
  56384. extra: 1952/1815,
  56385. bottom: 33/1985
  56386. }
  56387. },
  56388. paw: {
  56389. height: math.unit(1.24, "feet"),
  56390. name: "Paw",
  56391. image: {
  56392. source: "./media/characters/vincent-vasroc/paw.svg"
  56393. }
  56394. },
  56395. ear: {
  56396. height: math.unit(0.75, "feet"),
  56397. name: "Ear",
  56398. image: {
  56399. source: "./media/characters/vincent-vasroc/ear.svg"
  56400. }
  56401. },
  56402. },
  56403. [
  56404. {
  56405. name: "Nano",
  56406. height: math.unit(92, "micrometers")
  56407. },
  56408. {
  56409. name: "Normal",
  56410. height: math.unit(7 + 8/12, "feet"),
  56411. default: true
  56412. },
  56413. ]
  56414. ))
  56415. characterMakers.push(() => makeCharacter(
  56416. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56417. {
  56418. frontNsfw: {
  56419. height: math.unit(40, "feet"),
  56420. weight: math.unit(58, "tons"),
  56421. name: "Front (NSFW)",
  56422. image: {
  56423. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56424. extra: 1265/965,
  56425. bottom: 155/1420
  56426. }
  56427. },
  56428. frontSfw: {
  56429. height: math.unit(40, "feet"),
  56430. weight: math.unit(58, "tons"),
  56431. name: "Front (SFW)",
  56432. image: {
  56433. source: "./media/characters/ru-kahn/front-sfw.svg",
  56434. extra: 1265/965,
  56435. bottom: 80/1345
  56436. }
  56437. },
  56438. },
  56439. [
  56440. {
  56441. name: "Small",
  56442. height: math.unit(4, "feet")
  56443. },
  56444. {
  56445. name: "Normal",
  56446. height: math.unit(40, "feet"),
  56447. default: true
  56448. },
  56449. {
  56450. name: "Macro",
  56451. height: math.unit(400, "feet")
  56452. },
  56453. ]
  56454. ))
  56455. characterMakers.push(() => makeCharacter(
  56456. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56457. {
  56458. frontNude: {
  56459. height: math.unit(6 + 5/12, "feet"),
  56460. name: "Front (Nude)",
  56461. image: {
  56462. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56463. extra: 1369/1366,
  56464. bottom: 68/1437
  56465. }
  56466. },
  56467. frontDressed: {
  56468. height: math.unit(6 + 5/12, "feet"),
  56469. name: "Front (Dressed)",
  56470. image: {
  56471. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56472. extra: 1369/1366,
  56473. bottom: 68/1437
  56474. }
  56475. },
  56476. },
  56477. [
  56478. {
  56479. name: "Normal",
  56480. height: math.unit(6 + 5/12, "feet"),
  56481. default: true
  56482. },
  56483. {
  56484. name: "Maximum",
  56485. height: math.unit(1930, "feet")
  56486. },
  56487. ]
  56488. ))
  56489. characterMakers.push(() => makeCharacter(
  56490. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56491. {
  56492. front: {
  56493. height: math.unit(5 + 6/12, "feet"),
  56494. name: "Front",
  56495. image: {
  56496. source: "./media/characters/kaja/front.svg",
  56497. extra: 1874/1514,
  56498. bottom: 117/1991
  56499. }
  56500. },
  56501. },
  56502. [
  56503. {
  56504. name: "Normal",
  56505. height: math.unit(5 + 6/12, "feet"),
  56506. default: true
  56507. },
  56508. ]
  56509. ))
  56510. characterMakers.push(() => makeCharacter(
  56511. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56512. {
  56513. front: {
  56514. height: math.unit(5 + 9/12, "feet"),
  56515. weight: math.unit(200, "lb"),
  56516. name: "Front",
  56517. image: {
  56518. source: "./media/characters/mark-smith/front.svg",
  56519. extra: 1004/943,
  56520. bottom: 58/1062
  56521. }
  56522. },
  56523. back: {
  56524. height: math.unit(5 + 9/12, "feet"),
  56525. weight: math.unit(200, "lb"),
  56526. name: "Back",
  56527. image: {
  56528. source: "./media/characters/mark-smith/back.svg",
  56529. extra: 1023/953,
  56530. bottom: 24/1047
  56531. }
  56532. },
  56533. head: {
  56534. height: math.unit(1.82, "feet"),
  56535. name: "Head",
  56536. image: {
  56537. source: "./media/characters/mark-smith/head.svg"
  56538. }
  56539. },
  56540. hand: {
  56541. height: math.unit(1.4, "feet"),
  56542. name: "Hand",
  56543. image: {
  56544. source: "./media/characters/mark-smith/hand.svg"
  56545. }
  56546. },
  56547. paw: {
  56548. height: math.unit(1.69, "feet"),
  56549. name: "Paw",
  56550. image: {
  56551. source: "./media/characters/mark-smith/paw.svg"
  56552. }
  56553. },
  56554. },
  56555. [
  56556. {
  56557. name: "Micro",
  56558. height: math.unit(0.25, "inches")
  56559. },
  56560. {
  56561. name: "Normal",
  56562. height: math.unit(5 + 9/12, "feet"),
  56563. default: true
  56564. },
  56565. {
  56566. name: "Macro",
  56567. height: math.unit(500, "feet")
  56568. },
  56569. ]
  56570. ))
  56571. characterMakers.push(() => makeCharacter(
  56572. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56573. {
  56574. frontNude: {
  56575. height: math.unit(6, "feet"),
  56576. name: "Front (Nude)",
  56577. image: {
  56578. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56579. extra: 1384/1321,
  56580. bottom: 57/1441
  56581. }
  56582. },
  56583. frontDressed: {
  56584. height: math.unit(6, "feet"),
  56585. name: "Front (Dressed)",
  56586. image: {
  56587. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56588. extra: 1384/1321,
  56589. bottom: 57/1441
  56590. }
  56591. },
  56592. },
  56593. [
  56594. {
  56595. name: "Normal",
  56596. height: math.unit(6, "feet"),
  56597. default: true
  56598. },
  56599. {
  56600. name: "Maximum",
  56601. height: math.unit(1776, "feet")
  56602. },
  56603. ]
  56604. ))
  56605. characterMakers.push(() => makeCharacter(
  56606. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56607. {
  56608. front: {
  56609. height: math.unit(2 + 4/12, "feet"),
  56610. weight: math.unit(350, "lb"),
  56611. name: "Front",
  56612. image: {
  56613. source: "./media/characters/devos/front.svg",
  56614. extra: 958/852,
  56615. bottom: 143/1101
  56616. }
  56617. },
  56618. },
  56619. [
  56620. {
  56621. name: "Base",
  56622. height: math.unit(2 + 4/12, "feet"),
  56623. default: true
  56624. },
  56625. ]
  56626. ))
  56627. characterMakers.push(() => makeCharacter(
  56628. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56629. {
  56630. front: {
  56631. height: math.unit(9 + 2/12, "feet"),
  56632. name: "Front",
  56633. image: {
  56634. source: "./media/characters/hiveheart/front.svg",
  56635. extra: 394/364,
  56636. bottom: 65/459
  56637. }
  56638. },
  56639. back: {
  56640. height: math.unit(9 + 2/12, "feet"),
  56641. name: "Back",
  56642. image: {
  56643. source: "./media/characters/hiveheart/back.svg",
  56644. extra: 374/357,
  56645. bottom: 63/437
  56646. }
  56647. },
  56648. },
  56649. [
  56650. {
  56651. name: "Base",
  56652. height: math.unit(9 + 2/12, "feet"),
  56653. default: true
  56654. },
  56655. ]
  56656. ))
  56657. characterMakers.push(() => makeCharacter(
  56658. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56659. {
  56660. front: {
  56661. height: math.unit(2.5, "inches"),
  56662. weight: math.unit(0.6, "oz"),
  56663. name: "Front",
  56664. image: {
  56665. source: "./media/characters/bryn/front.svg",
  56666. extra: 1480/1205,
  56667. bottom: 27/1507
  56668. }
  56669. },
  56670. back: {
  56671. height: math.unit(2.5, "inches"),
  56672. weight: math.unit(0.6, "oz"),
  56673. name: "Back",
  56674. image: {
  56675. source: "./media/characters/bryn/back.svg",
  56676. extra: 1475/1201,
  56677. bottom: 39/1514
  56678. }
  56679. },
  56680. foot: {
  56681. height: math.unit(0.4, "inches"),
  56682. name: "Foot",
  56683. image: {
  56684. source: "./media/characters/bryn/foot.svg"
  56685. }
  56686. },
  56687. },
  56688. [
  56689. {
  56690. name: "Normal",
  56691. height: math.unit(2.5, "inches"),
  56692. default: true
  56693. },
  56694. ]
  56695. ))
  56696. characterMakers.push(() => makeCharacter(
  56697. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56698. {
  56699. side: {
  56700. height: math.unit(7, "feet"),
  56701. weight: math.unit(657, "kg"),
  56702. name: "Side",
  56703. image: {
  56704. source: "./media/characters/delta/side.svg",
  56705. extra: 781/212,
  56706. bottom: 7/788
  56707. },
  56708. extraAttributes: {
  56709. "wingspan": {
  56710. name: "Wingspan",
  56711. power: 1,
  56712. type: "length",
  56713. base: math.unit(48, "feet")
  56714. },
  56715. "length": {
  56716. name: "Length",
  56717. power: 1,
  56718. type: "length",
  56719. base: math.unit(21, "feet")
  56720. },
  56721. "pawSize": {
  56722. name: "Paw Size",
  56723. power: 2,
  56724. type: "area",
  56725. base: math.unit(1.5*1.4, "feet^2")
  56726. },
  56727. }
  56728. },
  56729. },
  56730. [
  56731. {
  56732. name: "Normal",
  56733. height: math.unit(6, "feet"),
  56734. default: true
  56735. },
  56736. ]
  56737. ))
  56738. characterMakers.push(() => makeCharacter(
  56739. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56740. {
  56741. front: {
  56742. height: math.unit(6, "feet"),
  56743. name: "Front",
  56744. image: {
  56745. source: "./media/characters/pyrow/front.svg",
  56746. extra: 513/486,
  56747. bottom: 14/527
  56748. }
  56749. },
  56750. frontWing: {
  56751. height: math.unit(6, "feet"),
  56752. name: "Front (Wing)",
  56753. image: {
  56754. source: "./media/characters/pyrow/front-wing.svg",
  56755. extra: 539/383,
  56756. bottom: 20/559
  56757. }
  56758. },
  56759. back: {
  56760. height: math.unit(6, "feet"),
  56761. name: "Back",
  56762. image: {
  56763. source: "./media/characters/pyrow/back.svg",
  56764. extra: 500/473,
  56765. bottom: 9/509
  56766. }
  56767. },
  56768. },
  56769. [
  56770. {
  56771. name: "Normal",
  56772. height: math.unit(6, "feet"),
  56773. default: true
  56774. },
  56775. ]
  56776. ))
  56777. characterMakers.push(() => makeCharacter(
  56778. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56779. {
  56780. front: {
  56781. height: math.unit(5, "meters"),
  56782. weight: math.unit(3, "tonnes"),
  56783. name: "Front",
  56784. image: {
  56785. source: "./media/characters/velikan/front.svg",
  56786. extra: 867/744,
  56787. bottom: 71/938
  56788. },
  56789. extraAttributes: {
  56790. "shoeSize": {
  56791. name: "Shoe Size",
  56792. power: 1,
  56793. type: "length",
  56794. base: math.unit(135, "ShoeSizeUK"),
  56795. defaultUnit: "ShoeSizeUK"
  56796. },
  56797. }
  56798. },
  56799. },
  56800. [
  56801. {
  56802. name: "Normal",
  56803. height: math.unit(5, "meters"),
  56804. default: true
  56805. },
  56806. {
  56807. name: "Macro",
  56808. height: math.unit(1, "km")
  56809. },
  56810. {
  56811. name: "Mega Macro",
  56812. height: math.unit(100, "km")
  56813. },
  56814. {
  56815. name: "Giga Macro",
  56816. height: math.unit(2, "megameters")
  56817. },
  56818. {
  56819. name: "Planetary",
  56820. height: math.unit(22, "megameters")
  56821. },
  56822. {
  56823. name: "Solar",
  56824. height: math.unit(8, "gigameters")
  56825. },
  56826. {
  56827. name: "Cosmic",
  56828. height: math.unit(10, "zettameters")
  56829. },
  56830. {
  56831. name: "Omni",
  56832. height: math.unit(9e260, "multiverses")
  56833. },
  56834. ]
  56835. ))
  56836. characterMakers.push(() => makeCharacter(
  56837. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56838. {
  56839. front: {
  56840. height: math.unit(4 + 3/12, "feet"),
  56841. weight: math.unit(90, "lb"),
  56842. name: "Front",
  56843. image: {
  56844. source: "./media/characters/sabiki/front.svg",
  56845. extra: 1662/1423,
  56846. bottom: 65/1727
  56847. }
  56848. },
  56849. },
  56850. [
  56851. {
  56852. name: "Normal",
  56853. height: math.unit(4 + 3/12, "feet"),
  56854. default: true
  56855. },
  56856. ]
  56857. ))
  56858. characterMakers.push(() => makeCharacter(
  56859. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56860. {
  56861. frontSfw: {
  56862. height: math.unit(2, "mm"),
  56863. name: "Front (SFW)",
  56864. image: {
  56865. source: "./media/characters/carmel/front-sfw.svg",
  56866. extra: 1131/1006,
  56867. bottom: 66/1197
  56868. }
  56869. },
  56870. frontNsfw: {
  56871. height: math.unit(2, "mm"),
  56872. name: "Front (NSFW)",
  56873. image: {
  56874. source: "./media/characters/carmel/front-nsfw.svg",
  56875. extra: 1131/1006,
  56876. bottom: 66/1197
  56877. }
  56878. },
  56879. foot: {
  56880. height: math.unit(0.3, "mm"),
  56881. name: "Foot",
  56882. image: {
  56883. source: "./media/characters/carmel/foot.svg"
  56884. }
  56885. },
  56886. tongue: {
  56887. height: math.unit(0.71, "mm"),
  56888. name: "Tongue",
  56889. image: {
  56890. source: "./media/characters/carmel/tongue.svg"
  56891. }
  56892. },
  56893. dick: {
  56894. height: math.unit(0.085, "mm"),
  56895. name: "Dick",
  56896. image: {
  56897. source: "./media/characters/carmel/dick.svg"
  56898. }
  56899. },
  56900. },
  56901. [
  56902. {
  56903. name: "Micro",
  56904. height: math.unit(2, "mm"),
  56905. default: true
  56906. },
  56907. {
  56908. name: "Normal",
  56909. height: math.unit(4 + 8/12, "feet")
  56910. },
  56911. {
  56912. name: "Mega Macro",
  56913. height: math.unit(250, "feet")
  56914. },
  56915. {
  56916. name: "BIGGER",
  56917. height: math.unit(1000, "feet")
  56918. },
  56919. {
  56920. name: "BIGGEST",
  56921. height: math.unit(2, "miles")
  56922. },
  56923. ]
  56924. ))
  56925. characterMakers.push(() => makeCharacter(
  56926. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56927. {
  56928. front: {
  56929. height: math.unit(6.5, "feet"),
  56930. weight: math.unit(198, "lb"),
  56931. name: "Front",
  56932. image: {
  56933. source: "./media/characters/tamani/anthro.svg",
  56934. extra: 930/890,
  56935. bottom: 34/964
  56936. },
  56937. form: "anthro",
  56938. default: true
  56939. },
  56940. side: {
  56941. height: math.unit(6, "feet"),
  56942. weight: math.unit(198*2, "lb"),
  56943. name: "Side",
  56944. image: {
  56945. source: "./media/characters/tamani/feral.svg",
  56946. extra: 559/519,
  56947. bottom: 43/602
  56948. },
  56949. form: "feral"
  56950. },
  56951. },
  56952. [
  56953. {
  56954. name: "Normal",
  56955. height: math.unit(6.5, "feet"),
  56956. default: true,
  56957. form: "anthro"
  56958. },
  56959. {
  56960. name: "Normal",
  56961. height: math.unit(6, "feet"),
  56962. default: true,
  56963. form: "feral"
  56964. },
  56965. ],
  56966. {
  56967. "anthro": {
  56968. name: "Anthro",
  56969. default: true
  56970. },
  56971. "feral": {
  56972. name: "Feral",
  56973. },
  56974. }
  56975. ))
  56976. characterMakers.push(() => makeCharacter(
  56977. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56978. {
  56979. front: {
  56980. height: math.unit(4 + 1/12, "feet"),
  56981. weight: math.unit(114, "lb"),
  56982. name: "Front",
  56983. image: {
  56984. source: "./media/characters/dex/front.svg",
  56985. extra: 787/680,
  56986. bottom: 18/805
  56987. }
  56988. },
  56989. side: {
  56990. height: math.unit(4 + 1/12, "feet"),
  56991. weight: math.unit(114, "lb"),
  56992. name: "Side",
  56993. image: {
  56994. source: "./media/characters/dex/side.svg",
  56995. extra: 785/680,
  56996. bottom: 12/797
  56997. }
  56998. },
  56999. back: {
  57000. height: math.unit(4 + 1/12, "feet"),
  57001. weight: math.unit(114, "lb"),
  57002. name: "Back",
  57003. image: {
  57004. source: "./media/characters/dex/back.svg",
  57005. extra: 785/681,
  57006. bottom: 17/802
  57007. }
  57008. },
  57009. loungewear: {
  57010. height: math.unit(4 + 1/12, "feet"),
  57011. weight: math.unit(114, "lb"),
  57012. name: "Loungewear",
  57013. image: {
  57014. source: "./media/characters/dex/loungewear.svg",
  57015. extra: 787/680,
  57016. bottom: 18/805
  57017. }
  57018. },
  57019. workout: {
  57020. height: math.unit(4 + 1/12, "feet"),
  57021. weight: math.unit(114, "lb"),
  57022. name: "Workout",
  57023. image: {
  57024. source: "./media/characters/dex/workout.svg",
  57025. extra: 787/680,
  57026. bottom: 18/805
  57027. }
  57028. },
  57029. schoolUniform: {
  57030. height: math.unit(4 + 1/12, "feet"),
  57031. weight: math.unit(114, "lb"),
  57032. name: "School-uniform",
  57033. image: {
  57034. source: "./media/characters/dex/school-uniform.svg",
  57035. extra: 787/680,
  57036. bottom: 18/805
  57037. }
  57038. },
  57039. maw: {
  57040. height: math.unit(0.55, "feet"),
  57041. name: "Maw",
  57042. image: {
  57043. source: "./media/characters/dex/maw.svg"
  57044. }
  57045. },
  57046. paw: {
  57047. height: math.unit(0.87, "feet"),
  57048. name: "Paw",
  57049. image: {
  57050. source: "./media/characters/dex/paw.svg"
  57051. }
  57052. },
  57053. bust: {
  57054. height: math.unit(1.67, "feet"),
  57055. name: "Bust",
  57056. image: {
  57057. source: "./media/characters/dex/bust.svg"
  57058. }
  57059. },
  57060. },
  57061. [
  57062. {
  57063. name: "Normal",
  57064. height: math.unit(4 + 1/12, "feet"),
  57065. default: true
  57066. },
  57067. ]
  57068. ))
  57069. characterMakers.push(() => makeCharacter(
  57070. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57071. {
  57072. front: {
  57073. height: math.unit(4 + 3/12, "feet"),
  57074. weight: math.unit(60, "lb"),
  57075. name: "Front",
  57076. image: {
  57077. source: "./media/characters/silke/front.svg",
  57078. extra: 1334/1122,
  57079. bottom: 21/1355
  57080. }
  57081. },
  57082. back: {
  57083. height: math.unit(4 + 3/12, "feet"),
  57084. weight: math.unit(60, "lb"),
  57085. name: "Back",
  57086. image: {
  57087. source: "./media/characters/silke/back.svg",
  57088. extra: 1328/1092,
  57089. bottom: 16/1344
  57090. }
  57091. },
  57092. dressed: {
  57093. height: math.unit(4 + 3/12, "feet"),
  57094. weight: math.unit(60, "lb"),
  57095. name: "Dressed",
  57096. image: {
  57097. source: "./media/characters/silke/dressed.svg",
  57098. extra: 1334/1122,
  57099. bottom: 43/1377
  57100. }
  57101. },
  57102. },
  57103. [
  57104. {
  57105. name: "Normal",
  57106. height: math.unit(4 + 3/12, "feet"),
  57107. default: true
  57108. },
  57109. ]
  57110. ))
  57111. characterMakers.push(() => makeCharacter(
  57112. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57113. {
  57114. front: {
  57115. height: math.unit(1.58, "meters"),
  57116. weight: math.unit(47, "kg"),
  57117. name: "Front",
  57118. image: {
  57119. source: "./media/characters/wireshark/front.svg",
  57120. extra: 883/838,
  57121. bottom: 66/949
  57122. }
  57123. },
  57124. },
  57125. [
  57126. {
  57127. name: "Normal",
  57128. height: math.unit(1.58, "meters"),
  57129. default: true
  57130. },
  57131. ]
  57132. ))
  57133. characterMakers.push(() => makeCharacter(
  57134. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57135. {
  57136. front: {
  57137. height: math.unit(6, "meters"),
  57138. weight: math.unit(15000, "kg"),
  57139. name: "Front",
  57140. image: {
  57141. source: "./media/characters/gallagher/front.svg",
  57142. extra: 532/493,
  57143. bottom: 0/532
  57144. }
  57145. },
  57146. },
  57147. [
  57148. {
  57149. name: "Normal",
  57150. height: math.unit(6, "meters"),
  57151. default: true
  57152. },
  57153. ]
  57154. ))
  57155. characterMakers.push(() => makeCharacter(
  57156. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57157. {
  57158. front: {
  57159. height: math.unit(2.4, "meters"),
  57160. weight: math.unit(270, "kg"),
  57161. name: "Front",
  57162. image: {
  57163. source: "./media/characters/alice/front.svg",
  57164. extra: 950/900,
  57165. bottom: 36/986
  57166. }
  57167. },
  57168. side: {
  57169. height: math.unit(2.4, "meters"),
  57170. weight: math.unit(270, "kg"),
  57171. name: "Side",
  57172. image: {
  57173. source: "./media/characters/alice/side.svg",
  57174. extra: 921/876,
  57175. bottom: 19/940
  57176. }
  57177. },
  57178. dressed: {
  57179. height: math.unit(2.4, "meters"),
  57180. weight: math.unit(270, "kg"),
  57181. name: "Dressed",
  57182. image: {
  57183. source: "./media/characters/alice/dressed.svg",
  57184. extra: 905/850,
  57185. bottom: 81/986
  57186. }
  57187. },
  57188. fishnet: {
  57189. height: math.unit(2.4, "meters"),
  57190. weight: math.unit(270, "kg"),
  57191. name: "Fishnet",
  57192. image: {
  57193. source: "./media/characters/alice/fishnet.svg",
  57194. extra: 905/850,
  57195. bottom: 81/986
  57196. }
  57197. },
  57198. },
  57199. [
  57200. {
  57201. name: "Normal",
  57202. height: math.unit(2.4, "meters"),
  57203. default: true
  57204. },
  57205. ]
  57206. ))
  57207. characterMakers.push(() => makeCharacter(
  57208. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57209. {
  57210. front: {
  57211. height: math.unit(175.25, "feet"),
  57212. name: "Front",
  57213. image: {
  57214. source: "./media/characters/fio/front.svg",
  57215. extra: 1883/1591,
  57216. bottom: 34/1917
  57217. }
  57218. },
  57219. },
  57220. [
  57221. {
  57222. name: "Normal",
  57223. height: math.unit(175.25, "cm"),
  57224. default: true
  57225. },
  57226. ]
  57227. ))
  57228. characterMakers.push(() => makeCharacter(
  57229. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57230. {
  57231. side: {
  57232. height: math.unit(6, "meters"),
  57233. weight: math.unit(3400, "kg"),
  57234. preyCapacity: math.unit(1700, "liters"),
  57235. name: "Side",
  57236. image: {
  57237. source: "./media/characters/hass/side.svg",
  57238. extra: 1058/997,
  57239. bottom: 177/1235
  57240. }
  57241. },
  57242. feeding: {
  57243. height: math.unit(6*0.63, "meters"),
  57244. weight: math.unit(3400, "kg"),
  57245. preyCapacity: math.unit(1700, "liters"),
  57246. name: "Feeding",
  57247. image: {
  57248. source: "./media/characters/hass/feeding.svg",
  57249. extra: 689/579,
  57250. bottom: 146/835
  57251. }
  57252. },
  57253. guts: {
  57254. height: math.unit(6, "meters"),
  57255. weight: math.unit(3400, "kg"),
  57256. name: "Guts",
  57257. image: {
  57258. source: "./media/characters/hass/guts.svg",
  57259. extra: 1223/1198,
  57260. bottom: 182/1405
  57261. }
  57262. },
  57263. dickFront: {
  57264. height: math.unit(1.4, "meters"),
  57265. name: "Dick (Front)",
  57266. image: {
  57267. source: "./media/characters/hass/dick-front.svg"
  57268. }
  57269. },
  57270. dickSide: {
  57271. height: math.unit(1.3, "meters"),
  57272. name: "Dick (Side)",
  57273. image: {
  57274. source: "./media/characters/hass/dick-side.svg"
  57275. }
  57276. },
  57277. dickBack: {
  57278. height: math.unit(1.4, "meters"),
  57279. name: "Dick (Back)",
  57280. image: {
  57281. source: "./media/characters/hass/dick-back.svg"
  57282. }
  57283. },
  57284. },
  57285. [
  57286. {
  57287. name: "Normal",
  57288. height: math.unit(6, "meters"),
  57289. default: true
  57290. },
  57291. ]
  57292. ))
  57293. characterMakers.push(() => makeCharacter(
  57294. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57295. {
  57296. front: {
  57297. height: math.unit(4, "feet"),
  57298. weight: math.unit(60, "lb"),
  57299. name: "Front",
  57300. image: {
  57301. source: "./media/characters/hickory-finnegan/front.svg",
  57302. extra: 444/411,
  57303. bottom: 10/454
  57304. }
  57305. },
  57306. side: {
  57307. height: math.unit(4, "feet"),
  57308. weight: math.unit(60, "lb"),
  57309. name: "Side",
  57310. image: {
  57311. source: "./media/characters/hickory-finnegan/side.svg",
  57312. extra: 444/411,
  57313. bottom: 10/454
  57314. }
  57315. },
  57316. back: {
  57317. height: math.unit(4, "feet"),
  57318. weight: math.unit(60, "lb"),
  57319. name: "Back",
  57320. image: {
  57321. source: "./media/characters/hickory-finnegan/back.svg",
  57322. extra: 444/411,
  57323. bottom: 10/454
  57324. }
  57325. },
  57326. },
  57327. [
  57328. {
  57329. name: "Normal",
  57330. height: math.unit(4, "feet"),
  57331. default: true
  57332. },
  57333. ]
  57334. ))
  57335. characterMakers.push(() => makeCharacter(
  57336. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57337. {
  57338. snivy_front: {
  57339. height: math.unit(2, "feet"),
  57340. weight: math.unit(17.9, "lb"),
  57341. name: "Front",
  57342. image: {
  57343. source: "./media/characters/robin-phox/snivy-front.svg",
  57344. extra: 569/504,
  57345. bottom: 33/602
  57346. },
  57347. form: "snivy",
  57348. default: true
  57349. },
  57350. snivy_frontNsfw: {
  57351. height: math.unit(2, "feet"),
  57352. weight: math.unit(17.9, "lb"),
  57353. name: "Front (NSFW)",
  57354. image: {
  57355. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57356. extra: 569/504,
  57357. bottom: 33/602
  57358. },
  57359. form: "snivy",
  57360. },
  57361. snivy_back: {
  57362. height: math.unit(2, "feet"),
  57363. weight: math.unit(17.9, "lb"),
  57364. name: "Back",
  57365. image: {
  57366. source: "./media/characters/robin-phox/snivy-back.svg",
  57367. extra: 577/508,
  57368. bottom: 21/598
  57369. },
  57370. form: "snivy",
  57371. },
  57372. snivy_foot: {
  57373. height: math.unit(0.68, "feet"),
  57374. name: "Foot",
  57375. image: {
  57376. source: "./media/characters/robin-phox/snivy-foot.svg"
  57377. },
  57378. form: "snivy",
  57379. },
  57380. snivy_sole: {
  57381. height: math.unit(0.68, "feet"),
  57382. name: "Sole",
  57383. image: {
  57384. source: "./media/characters/robin-phox/snivy-sole.svg"
  57385. },
  57386. form: "snivy",
  57387. },
  57388. yoshi_front: {
  57389. height: math.unit(6, "feet"),
  57390. weight: math.unit(150, "lb"),
  57391. name: "Front",
  57392. image: {
  57393. source: "./media/characters/robin-phox/yoshi-front.svg",
  57394. extra: 890/792,
  57395. bottom: 29/919
  57396. },
  57397. form: "yoshi",
  57398. default: true
  57399. },
  57400. yoshi_frontNsfw: {
  57401. height: math.unit(6, "feet"),
  57402. weight: math.unit(150, "lb"),
  57403. name: "Front (NSFW)",
  57404. image: {
  57405. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57406. extra: 890/792,
  57407. bottom: 29/919
  57408. },
  57409. form: "yoshi",
  57410. },
  57411. yoshi_back: {
  57412. height: math.unit(6, "feet"),
  57413. weight: math.unit(150, "lb"),
  57414. name: "Back",
  57415. image: {
  57416. source: "./media/characters/robin-phox/yoshi-back.svg",
  57417. extra: 890/792,
  57418. bottom: 29/919
  57419. },
  57420. form: "yoshi",
  57421. },
  57422. yoshi_foot: {
  57423. height: math.unit(1.5, "feet"),
  57424. name: "Foot",
  57425. image: {
  57426. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57427. },
  57428. form: "yoshi",
  57429. },
  57430. delphox_front: {
  57431. height: math.unit(4 + 11/12, "feet"),
  57432. weight: math.unit(86, "lb"),
  57433. name: "Front",
  57434. image: {
  57435. source: "./media/characters/robin-phox/delphox-front.svg",
  57436. extra: 1266/1069,
  57437. bottom: 32/1298
  57438. },
  57439. form: "delphox",
  57440. default: true
  57441. },
  57442. delphox_frontNsfw: {
  57443. height: math.unit(4 + 11/12, "feet"),
  57444. weight: math.unit(86, "lb"),
  57445. name: "Front (NSFW)",
  57446. image: {
  57447. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57448. extra: 1266/1069,
  57449. bottom: 32/1298
  57450. },
  57451. form: "delphox",
  57452. },
  57453. delphox_back: {
  57454. height: math.unit(4 + 11/12, "feet"),
  57455. weight: math.unit(86, "lb"),
  57456. name: "Back",
  57457. image: {
  57458. source: "./media/characters/robin-phox/delphox-back.svg",
  57459. extra: 1269/1083,
  57460. bottom: 15/1284
  57461. },
  57462. form: "delphox",
  57463. },
  57464. mienshao_front: {
  57465. height: math.unit(4 + 7/12, "feet"),
  57466. weight: math.unit(78.3, "lb"),
  57467. name: "Front",
  57468. image: {
  57469. source: "./media/characters/robin-phox/mienshao-front.svg",
  57470. extra: 1052/970,
  57471. bottom: 108/1160
  57472. },
  57473. form: "mienshao",
  57474. default: true
  57475. },
  57476. mienshao_frontNsfw: {
  57477. height: math.unit(4 + 7/12, "feet"),
  57478. weight: math.unit(78.3, "lb"),
  57479. name: "Front (NSFW)",
  57480. image: {
  57481. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57482. extra: 1052/970,
  57483. bottom: 108/1160
  57484. },
  57485. form: "mienshao",
  57486. },
  57487. mienshao_back: {
  57488. height: math.unit(4 + 7/12, "feet"),
  57489. weight: math.unit(78.3, "lb"),
  57490. name: "Back",
  57491. image: {
  57492. source: "./media/characters/robin-phox/mienshao-back.svg",
  57493. extra: 1102/982,
  57494. bottom: 32/1134
  57495. },
  57496. form: "mienshao",
  57497. },
  57498. inteleon_front: {
  57499. height: math.unit(6 + 3/12, "feet"),
  57500. weight: math.unit(99.6, "lb"),
  57501. name: "Front",
  57502. image: {
  57503. source: "./media/characters/robin-phox/inteleon-front.svg",
  57504. extra: 910/799,
  57505. bottom: 76/986
  57506. },
  57507. form: "inteleon",
  57508. default: true
  57509. },
  57510. inteleon_frontNsfw: {
  57511. height: math.unit(6 + 3/12, "feet"),
  57512. weight: math.unit(99.6, "lb"),
  57513. name: "Front (NSFW)",
  57514. image: {
  57515. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57516. extra: 910/799,
  57517. bottom: 76/986
  57518. },
  57519. form: "inteleon",
  57520. },
  57521. inteleon_back: {
  57522. height: math.unit(6 + 3/12, "feet"),
  57523. weight: math.unit(99.6, "lb"),
  57524. name: "Back",
  57525. image: {
  57526. source: "./media/characters/robin-phox/inteleon-back.svg",
  57527. extra: 907/796,
  57528. bottom: 25/932
  57529. },
  57530. form: "inteleon",
  57531. },
  57532. reshiram_front: {
  57533. height: math.unit(10 + 6/12, "feet"),
  57534. weight: math.unit(727.5, "lb"),
  57535. name: "Front",
  57536. image: {
  57537. source: "./media/characters/robin-phox/reshiram-front.svg",
  57538. extra: 1198/940,
  57539. bottom: 123/1321
  57540. },
  57541. form: "reshiram",
  57542. },
  57543. reshiram_frontNsfw: {
  57544. height: math.unit(10 + 6/12, "feet"),
  57545. weight: math.unit(727.5, "lb"),
  57546. name: "Front-nsfw",
  57547. image: {
  57548. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57549. extra: 1198/940,
  57550. bottom: 123/1321
  57551. },
  57552. form: "reshiram",
  57553. },
  57554. reshiram_back: {
  57555. height: math.unit(10 + 6/12, "feet"),
  57556. weight: math.unit(727.5, "lb"),
  57557. name: "Back",
  57558. image: {
  57559. source: "./media/characters/robin-phox/reshiram-back.svg",
  57560. extra: 1024/904,
  57561. bottom: 85/1109
  57562. },
  57563. form: "reshiram",
  57564. },
  57565. samurott_front: {
  57566. height: math.unit(8, "feet"),
  57567. weight: math.unit(208.6, "lb"),
  57568. name: "Front",
  57569. image: {
  57570. source: "./media/characters/robin-phox/samurott-front.svg",
  57571. extra: 1048/984,
  57572. bottom: 100/1148
  57573. },
  57574. form: "samurott",
  57575. },
  57576. samurott_frontNsfw: {
  57577. height: math.unit(8, "feet"),
  57578. weight: math.unit(208.6, "lb"),
  57579. name: "Front-nsfw",
  57580. image: {
  57581. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57582. extra: 1048/984,
  57583. bottom: 100/1148
  57584. },
  57585. form: "samurott",
  57586. },
  57587. samurott_back: {
  57588. height: math.unit(8, "feet"),
  57589. weight: math.unit(208.6, "lb"),
  57590. name: "Back",
  57591. image: {
  57592. source: "./media/characters/robin-phox/samurott-back.svg",
  57593. extra: 1110/1042,
  57594. bottom: 12/1122
  57595. },
  57596. form: "samurott",
  57597. },
  57598. samurott_feral: {
  57599. height: math.unit(4 + 11/12, "feet"),
  57600. weight: math.unit(208.6, "lb"),
  57601. name: "Feral",
  57602. image: {
  57603. source: "./media/characters/robin-phox/samurott-feral.svg",
  57604. extra: 766/681,
  57605. bottom: 108/874
  57606. },
  57607. form: "samurott",
  57608. },
  57609. },
  57610. [
  57611. {
  57612. name: "Normal",
  57613. height: math.unit(2, "feet"),
  57614. default: true,
  57615. form: "snivy"
  57616. },
  57617. {
  57618. name: "Normal",
  57619. height: math.unit(6, "feet"),
  57620. default: true,
  57621. form: "yoshi"
  57622. },
  57623. {
  57624. name: "Normal",
  57625. height: math.unit(4 + 11/12, "feet"),
  57626. default: true,
  57627. form: "delphox"
  57628. },
  57629. {
  57630. name: "Normal",
  57631. height: math.unit(4 + 7/12, "feet"),
  57632. default: true,
  57633. form: "mienshao"
  57634. },
  57635. {
  57636. name: "Normal",
  57637. height: math.unit(6 + 3/12, "feet"),
  57638. default: true,
  57639. form: "inteleon"
  57640. },
  57641. {
  57642. name: "Normal",
  57643. height: math.unit(10 + 6/12, "feet"),
  57644. default: true,
  57645. form: "reshiram"
  57646. },
  57647. {
  57648. name: "Normal",
  57649. height: math.unit(8, "feet"),
  57650. default: true,
  57651. form: "samurott"
  57652. },
  57653. {
  57654. name: "Macro",
  57655. height: math.unit(500, "feet"),
  57656. allForms: true
  57657. },
  57658. {
  57659. name: "Mega Macro",
  57660. height: math.unit(10, "earths"),
  57661. allForms: true
  57662. },
  57663. {
  57664. name: "Giga Macro",
  57665. height: math.unit(1, "galaxy"),
  57666. allForms: true
  57667. },
  57668. {
  57669. name: "Godly Macro",
  57670. height: math.unit(1e10, "multiverses"),
  57671. allForms: true
  57672. },
  57673. ],
  57674. {
  57675. "snivy": {
  57676. name: "Snivy",
  57677. default: true
  57678. },
  57679. "yoshi": {
  57680. name: "Yoshi",
  57681. },
  57682. "delphox": {
  57683. name: "Delphox",
  57684. },
  57685. "mienshao": {
  57686. name: "Mienshao",
  57687. },
  57688. "inteleon": {
  57689. name: "Inteleon",
  57690. },
  57691. "reshiram": {
  57692. name: "Reshiram",
  57693. },
  57694. "samurott": {
  57695. name: "Samurott",
  57696. },
  57697. }
  57698. ))
  57699. characterMakers.push(() => makeCharacter(
  57700. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57701. {
  57702. front: {
  57703. height: math.unit(4, "feet"),
  57704. name: "Front",
  57705. image: {
  57706. source: "./media/characters/ash-leung/front.svg",
  57707. extra: 1916/1792,
  57708. bottom: 50/1966
  57709. }
  57710. },
  57711. },
  57712. [
  57713. {
  57714. name: "Atomic",
  57715. height: math.unit(1, "angstrom")
  57716. },
  57717. {
  57718. name: "Microscopic",
  57719. height: math.unit(4000, "angstroms")
  57720. },
  57721. {
  57722. name: "Speck",
  57723. height: math.unit(1, "mm")
  57724. },
  57725. {
  57726. name: "Small",
  57727. height: math.unit(1, "inch")
  57728. },
  57729. {
  57730. name: "Normal",
  57731. height: math.unit(4, "feet"),
  57732. default: true
  57733. },
  57734. ]
  57735. ))
  57736. characterMakers.push(() => makeCharacter(
  57737. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57738. {
  57739. frontDressed: {
  57740. height: math.unit(2.08, "meters"),
  57741. weight: math.unit(175, "lb"),
  57742. name: "Front (Dressed)",
  57743. image: {
  57744. source: "./media/characters/carie/front-dressed.svg",
  57745. extra: 456/417,
  57746. bottom: 7/463
  57747. }
  57748. },
  57749. backDressed: {
  57750. height: math.unit(2.08, "meters"),
  57751. weight: math.unit(175, "lb"),
  57752. name: "Back (Dressed)",
  57753. image: {
  57754. source: "./media/characters/carie/back-dressed.svg",
  57755. extra: 455/414,
  57756. bottom: 11/466
  57757. }
  57758. },
  57759. front: {
  57760. height: math.unit(2, "meters"),
  57761. weight: math.unit(175, "lb"),
  57762. name: "Front",
  57763. image: {
  57764. source: "./media/characters/carie/front.svg",
  57765. extra: 438/399,
  57766. bottom: 12/450
  57767. }
  57768. },
  57769. back: {
  57770. height: math.unit(2, "meters"),
  57771. weight: math.unit(175, "lb"),
  57772. name: "Back",
  57773. image: {
  57774. source: "./media/characters/carie/back.svg",
  57775. extra: 438/397,
  57776. bottom: 7/445
  57777. }
  57778. },
  57779. },
  57780. [
  57781. {
  57782. name: "Normal",
  57783. height: math.unit(2.08, "meters"),
  57784. default: true
  57785. },
  57786. {
  57787. name: "Macro",
  57788. height: math.unit(2.08e3, "meters")
  57789. },
  57790. {
  57791. name: "Mega Macro",
  57792. height: math.unit(2.08e6, "meters")
  57793. },
  57794. {
  57795. name: "Giga Macro",
  57796. height: math.unit(2.08e9, "meters")
  57797. },
  57798. {
  57799. name: "Tera Macro",
  57800. height: math.unit(2.08e12, "meters")
  57801. },
  57802. {
  57803. name: "Peta Macro",
  57804. height: math.unit(2.08e15, "meters")
  57805. },
  57806. {
  57807. name: "Exa Macro",
  57808. height: math.unit(2.08e18, "meters")
  57809. },
  57810. {
  57811. name: "Zetta Macro",
  57812. height: math.unit(2.08e21, "meters")
  57813. },
  57814. {
  57815. name: "Yotta Macro",
  57816. height: math.unit(2.08e24, "meters")
  57817. },
  57818. ]
  57819. ))
  57820. characterMakers.push(() => makeCharacter(
  57821. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57822. {
  57823. front: {
  57824. height: math.unit(5 + 2/12, "feet"),
  57825. weight: math.unit(120, "lb"),
  57826. name: "Front",
  57827. image: {
  57828. source: "./media/characters/sai-bree/front.svg",
  57829. extra: 1843/1702,
  57830. bottom: 91/1934
  57831. }
  57832. },
  57833. back: {
  57834. height: math.unit(5 + 2/12, "feet"),
  57835. weight: math.unit(120, "lb"),
  57836. name: "Back",
  57837. image: {
  57838. source: "./media/characters/sai-bree/back.svg",
  57839. extra: 1809/1637,
  57840. bottom: 56/1865
  57841. }
  57842. },
  57843. },
  57844. [
  57845. {
  57846. name: "Normal",
  57847. height: math.unit(5 + 2/12, "feet"),
  57848. default: true
  57849. },
  57850. {
  57851. name: "Macro",
  57852. height: math.unit(500, "feet")
  57853. },
  57854. ]
  57855. ))
  57856. characterMakers.push(() => makeCharacter(
  57857. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57858. {
  57859. side: {
  57860. height: math.unit(0.77, "meters"),
  57861. weight: math.unit(120, "lb"),
  57862. name: "Side",
  57863. image: {
  57864. source: "./media/characters/davwyn/side.svg",
  57865. extra: 1557/1225,
  57866. bottom: 131/1688
  57867. }
  57868. },
  57869. front: {
  57870. height: math.unit(0.835410, "meters"),
  57871. weight: math.unit(120, "lb"),
  57872. name: "Front",
  57873. image: {
  57874. source: "./media/characters/davwyn/front.svg",
  57875. extra: 870/843,
  57876. bottom: 175/1045
  57877. }
  57878. },
  57879. },
  57880. [
  57881. {
  57882. name: "Minidrake",
  57883. height: math.unit(0.77/4, "meters")
  57884. },
  57885. {
  57886. name: "Normal",
  57887. height: math.unit(0.77, "meters"),
  57888. default: true
  57889. },
  57890. ]
  57891. ))
  57892. characterMakers.push(() => makeCharacter(
  57893. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57894. {
  57895. front: {
  57896. height: math.unit(10 + 3/12, "feet"),
  57897. weight: math.unit(2857, "lb"),
  57898. name: "Front",
  57899. image: {
  57900. source: "./media/characters/balans/front.svg",
  57901. extra: 427/402,
  57902. bottom: 26/453
  57903. }
  57904. },
  57905. side: {
  57906. height: math.unit(10 + 3/12, "feet"),
  57907. weight: math.unit(2857, "lb"),
  57908. name: "Side",
  57909. image: {
  57910. source: "./media/characters/balans/side.svg",
  57911. extra: 397/371,
  57912. bottom: 17/414
  57913. }
  57914. },
  57915. back: {
  57916. height: math.unit(10 + 3/12, "feet"),
  57917. weight: math.unit(2857, "lb"),
  57918. name: "Back",
  57919. image: {
  57920. source: "./media/characters/balans/back.svg",
  57921. extra: 408/381,
  57922. bottom: 14/422
  57923. }
  57924. },
  57925. hand: {
  57926. height: math.unit(1.15, "feet"),
  57927. name: "Hand",
  57928. image: {
  57929. source: "./media/characters/balans/hand.svg"
  57930. }
  57931. },
  57932. footRest: {
  57933. height: math.unit(3.1, "feet"),
  57934. name: "Foot (Rest)",
  57935. image: {
  57936. source: "./media/characters/balans/foot-rest.svg"
  57937. }
  57938. },
  57939. footActive: {
  57940. height: math.unit(3.5, "feet"),
  57941. name: "Foot (Active)",
  57942. image: {
  57943. source: "./media/characters/balans/foot-active.svg"
  57944. }
  57945. },
  57946. },
  57947. [
  57948. {
  57949. name: "Normal",
  57950. height: math.unit(10 + 3/12, "feet"),
  57951. default: true
  57952. },
  57953. ]
  57954. ))
  57955. characterMakers.push(() => makeCharacter(
  57956. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57957. {
  57958. side: {
  57959. height: math.unit(9, "meters"),
  57960. weight: math.unit(114, "tonnes"),
  57961. name: "Side",
  57962. image: {
  57963. source: "./media/characters/eldkveikir/side.svg",
  57964. extra: 1927/338,
  57965. bottom: 42/1969
  57966. }
  57967. },
  57968. sitting: {
  57969. height: math.unit(13.4, "meters"),
  57970. weight: math.unit(114, "tonnes"),
  57971. name: "Sitting",
  57972. image: {
  57973. source: "./media/characters/eldkveikir/sitting.svg",
  57974. extra: 1108/963,
  57975. bottom: 610/1718
  57976. }
  57977. },
  57978. maw: {
  57979. height: math.unit(8.36, "meters"),
  57980. name: "Maw",
  57981. image: {
  57982. source: "./media/characters/eldkveikir/maw.svg"
  57983. }
  57984. },
  57985. hand: {
  57986. height: math.unit(4.84, "meters"),
  57987. name: "Hand",
  57988. image: {
  57989. source: "./media/characters/eldkveikir/hand.svg"
  57990. }
  57991. },
  57992. foot: {
  57993. height: math.unit(6.9, "meters"),
  57994. name: "Foot",
  57995. image: {
  57996. source: "./media/characters/eldkveikir/foot.svg"
  57997. }
  57998. },
  57999. genitals: {
  58000. height: math.unit(9.6, "meters"),
  58001. name: "Genitals",
  58002. image: {
  58003. source: "./media/characters/eldkveikir/genitals.svg"
  58004. }
  58005. },
  58006. },
  58007. [
  58008. {
  58009. name: "Normal",
  58010. height: math.unit(9, "meters"),
  58011. default: true
  58012. },
  58013. ]
  58014. ))
  58015. characterMakers.push(() => makeCharacter(
  58016. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58017. {
  58018. front: {
  58019. height: math.unit(14, "feet"),
  58020. weight: math.unit(4100, "lb"),
  58021. name: "Front",
  58022. image: {
  58023. source: "./media/characters/arrow/front.svg",
  58024. extra: 330/318,
  58025. bottom: 56/386
  58026. }
  58027. },
  58028. },
  58029. [
  58030. {
  58031. name: "Normal",
  58032. height: math.unit(14, "feet"),
  58033. default: true
  58034. },
  58035. {
  58036. name: "Minimacro",
  58037. height: math.unit(63, "feet")
  58038. },
  58039. {
  58040. name: "Macro",
  58041. height: math.unit(630, "feet")
  58042. },
  58043. {
  58044. name: "Megamacro",
  58045. height: math.unit(12600, "feet")
  58046. },
  58047. {
  58048. name: "Gigamacro",
  58049. height: math.unit(18000, "miles")
  58050. },
  58051. ]
  58052. ))
  58053. characterMakers.push(() => makeCharacter(
  58054. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58055. {
  58056. front: {
  58057. height: math.unit(10, "feet"),
  58058. weight: math.unit(2.4, "tons"),
  58059. name: "Front",
  58060. image: {
  58061. source: "./media/characters/3yk-k0-unit/front.svg",
  58062. extra: 573/561,
  58063. bottom: 33/606
  58064. }
  58065. },
  58066. back: {
  58067. height: math.unit(10, "feet"),
  58068. weight: math.unit(2.4, "tons"),
  58069. name: "Back",
  58070. image: {
  58071. source: "./media/characters/3yk-k0-unit/back.svg",
  58072. extra: 614/573,
  58073. bottom: 32/646
  58074. }
  58075. },
  58076. maw: {
  58077. height: math.unit(2.15, "feet"),
  58078. name: "Maw",
  58079. image: {
  58080. source: "./media/characters/3yk-k0-unit/maw.svg"
  58081. }
  58082. },
  58083. },
  58084. [
  58085. {
  58086. name: "Normal",
  58087. height: math.unit(10, "feet"),
  58088. default: true
  58089. },
  58090. ]
  58091. ))
  58092. characterMakers.push(() => makeCharacter(
  58093. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58094. {
  58095. front: {
  58096. height: math.unit(8 + 8/12, "feet"),
  58097. name: "Front",
  58098. image: {
  58099. source: "./media/characters/nemo/front.svg",
  58100. extra: 1308/1217,
  58101. bottom: 57/1365
  58102. }
  58103. },
  58104. },
  58105. [
  58106. {
  58107. name: "Normal",
  58108. height: math.unit(8 + 8/12, "feet"),
  58109. default: true
  58110. },
  58111. ]
  58112. ))
  58113. characterMakers.push(() => makeCharacter(
  58114. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58115. {
  58116. front: {
  58117. height: math.unit(8, "feet"),
  58118. weight: math.unit(760, "lb"),
  58119. name: "Front",
  58120. image: {
  58121. source: "./media/characters/rexx/front.svg",
  58122. extra: 786/750,
  58123. bottom: 17/803
  58124. },
  58125. extraAttributes: {
  58126. "pawLength": {
  58127. name: "Paw Length",
  58128. power: 1,
  58129. type: "length",
  58130. base: math.unit(27, "inches")
  58131. },
  58132. }
  58133. },
  58134. },
  58135. [
  58136. {
  58137. name: "Micro",
  58138. height: math.unit(2, "inches")
  58139. },
  58140. {
  58141. name: "Normal",
  58142. height: math.unit(8, "feet"),
  58143. default: true
  58144. },
  58145. {
  58146. name: "Macro",
  58147. height: math.unit(150, "feet")
  58148. },
  58149. ]
  58150. ))
  58151. characterMakers.push(() => makeCharacter(
  58152. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58153. {
  58154. front: {
  58155. height: math.unit(18, "feet"),
  58156. weight: math.unit(1975, "lb"),
  58157. name: "Front",
  58158. image: {
  58159. source: "./media/characters/draco/front.svg",
  58160. extra: 1325/1241,
  58161. bottom: 83/1408
  58162. }
  58163. },
  58164. back: {
  58165. height: math.unit(18, "feet"),
  58166. weight: math.unit(1975, "lb"),
  58167. name: "Back",
  58168. image: {
  58169. source: "./media/characters/draco/back.svg",
  58170. extra: 1332/1250,
  58171. bottom: 43/1375
  58172. }
  58173. },
  58174. dick: {
  58175. height: math.unit(7.5, "feet"),
  58176. name: "Dick",
  58177. image: {
  58178. source: "./media/characters/draco/dick.svg"
  58179. }
  58180. },
  58181. },
  58182. [
  58183. {
  58184. name: "Normal",
  58185. height: math.unit(18, "feet"),
  58186. default: true
  58187. },
  58188. ]
  58189. ))
  58190. characterMakers.push(() => makeCharacter(
  58191. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58192. {
  58193. front: {
  58194. height: math.unit(3.2, "meters"),
  58195. name: "Front",
  58196. image: {
  58197. source: "./media/characters/harriett/front.svg",
  58198. extra: 1966/1915,
  58199. bottom: 9/1975
  58200. }
  58201. },
  58202. },
  58203. [
  58204. {
  58205. name: "Normal",
  58206. height: math.unit(3.2, "meters"),
  58207. default: true
  58208. },
  58209. ]
  58210. ))
  58211. characterMakers.push(() => makeCharacter(
  58212. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58213. {
  58214. sitting: {
  58215. height: math.unit(0.8, "meter"),
  58216. name: "Sitting",
  58217. image: {
  58218. source: "./media/characters/serpentus/sitting.svg",
  58219. extra: 293/290,
  58220. bottom: 140/433
  58221. }
  58222. },
  58223. },
  58224. [
  58225. {
  58226. name: "Normal",
  58227. height: math.unit(0.8, "meter"),
  58228. default: true
  58229. },
  58230. ]
  58231. ))
  58232. characterMakers.push(() => makeCharacter(
  58233. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58234. {
  58235. front: {
  58236. height: math.unit(5.7174385736, "feet"),
  58237. name: "Front",
  58238. image: {
  58239. source: "./media/characters/nova-polecat/front.svg",
  58240. extra: 1317/1216,
  58241. bottom: 92/1409
  58242. }
  58243. },
  58244. },
  58245. [
  58246. {
  58247. name: "Normal",
  58248. height: math.unit(5.7174385736, "feet"),
  58249. default: true
  58250. },
  58251. ]
  58252. ))
  58253. characterMakers.push(() => makeCharacter(
  58254. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58255. {
  58256. front: {
  58257. height: math.unit(5 + 4/12, "feet"),
  58258. weight: math.unit(250, "lb"),
  58259. name: "Front",
  58260. image: {
  58261. source: "./media/characters/mook/front.svg",
  58262. extra: 1088/1037,
  58263. bottom: 132/1220
  58264. }
  58265. },
  58266. back: {
  58267. height: math.unit(5 + 1/12, "feet"),
  58268. weight: math.unit(250, "lb"),
  58269. name: "Back",
  58270. image: {
  58271. source: "./media/characters/mook/back.svg",
  58272. extra: 1184/905,
  58273. bottom: 96/1280
  58274. }
  58275. },
  58276. head: {
  58277. height: math.unit(1.85, "feet"),
  58278. name: "Head",
  58279. image: {
  58280. source: "./media/characters/mook/head.svg"
  58281. }
  58282. },
  58283. hand: {
  58284. height: math.unit(1.9, "feet"),
  58285. name: "Hand",
  58286. image: {
  58287. source: "./media/characters/mook/hand.svg"
  58288. }
  58289. },
  58290. palm: {
  58291. height: math.unit(1.84, "feet"),
  58292. name: "Palm",
  58293. image: {
  58294. source: "./media/characters/mook/palm.svg"
  58295. }
  58296. },
  58297. foot: {
  58298. height: math.unit(1.44, "feet"),
  58299. name: "Foot",
  58300. image: {
  58301. source: "./media/characters/mook/foot.svg"
  58302. }
  58303. },
  58304. sole: {
  58305. height: math.unit(1.44, "feet"),
  58306. name: "Sole",
  58307. image: {
  58308. source: "./media/characters/mook/sole.svg"
  58309. }
  58310. },
  58311. },
  58312. [
  58313. {
  58314. name: "Normal",
  58315. height: math.unit(5 + 4/12, "feet"),
  58316. default: true
  58317. },
  58318. {
  58319. name: "Big",
  58320. height: math.unit(12, "feet")
  58321. },
  58322. ]
  58323. ))
  58324. characterMakers.push(() => makeCharacter(
  58325. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58326. {
  58327. front: {
  58328. height: math.unit(6 + 10/12, "feet"),
  58329. weight: math.unit(233, "lb"),
  58330. name: "Front",
  58331. image: {
  58332. source: "./media/characters/kayla/front.svg",
  58333. extra: 1850/1775,
  58334. bottom: 65/1915
  58335. }
  58336. },
  58337. },
  58338. [
  58339. {
  58340. name: "Normal",
  58341. height: math.unit(6 + 10/12, "feet"),
  58342. default: true
  58343. },
  58344. {
  58345. name: "Amazonian",
  58346. height: math.unit(12 + 5/12, "feet")
  58347. },
  58348. {
  58349. name: "Mini Giantess",
  58350. height: math.unit(26, "feet")
  58351. },
  58352. {
  58353. name: "Giantess",
  58354. height: math.unit(200, "feet")
  58355. },
  58356. {
  58357. name: "Mega Giantess",
  58358. height: math.unit(2500, "feet")
  58359. },
  58360. {
  58361. name: "City Sized",
  58362. height: math.unit(50, "miles")
  58363. },
  58364. {
  58365. name: "Country Sized",
  58366. height: math.unit(500, "miles")
  58367. },
  58368. {
  58369. name: "Continent Sized",
  58370. height: math.unit(2500, "miles")
  58371. },
  58372. {
  58373. name: "Planet Sized",
  58374. height: math.unit(10000, "miles")
  58375. },
  58376. {
  58377. name: "Star Sized",
  58378. height: math.unit(5e6, "miles")
  58379. },
  58380. {
  58381. name: "Solar System Sized",
  58382. height: math.unit(125, "AU")
  58383. },
  58384. {
  58385. name: "Galaxy Sized",
  58386. height: math.unit(300e3, "lightyears")
  58387. },
  58388. {
  58389. name: "Universe Sized",
  58390. height: math.unit(200e9, "lightyears")
  58391. },
  58392. {
  58393. name: "Multiverse Sized",
  58394. height: math.unit(20, "exauniverses")
  58395. },
  58396. {
  58397. name: "Mother of Existence",
  58398. height: math.unit(1e6, "yottauniverses")
  58399. },
  58400. ]
  58401. ))
  58402. characterMakers.push(() => makeCharacter(
  58403. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58404. {
  58405. side: {
  58406. height: math.unit(9.5, "meters"),
  58407. name: "Side",
  58408. image: {
  58409. source: "./media/characters/kulve-ragnarok/side.svg",
  58410. extra: 364/326,
  58411. bottom: 50/414
  58412. }
  58413. },
  58414. },
  58415. [
  58416. {
  58417. name: "Normal",
  58418. height: math.unit(9.5, "meters"),
  58419. default: true
  58420. },
  58421. ]
  58422. ))
  58423. characterMakers.push(() => makeCharacter(
  58424. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58425. {
  58426. front: {
  58427. height: math.unit(8 + 9/12, "feet"),
  58428. name: "Front",
  58429. image: {
  58430. source: "./media/characters/atlas-goat/front.svg",
  58431. extra: 1462/1323,
  58432. bottom: 12/1474
  58433. }
  58434. },
  58435. },
  58436. [
  58437. {
  58438. name: "Normal",
  58439. height: math.unit(8 + 9/12, "feet"),
  58440. default: true
  58441. },
  58442. {
  58443. name: "Skyline",
  58444. height: math.unit(845, "feet")
  58445. },
  58446. {
  58447. name: "Orbital",
  58448. height: math.unit(93000, "miles")
  58449. },
  58450. {
  58451. name: "Constellation",
  58452. height: math.unit(27000, "lightyears")
  58453. },
  58454. ]
  58455. ))
  58456. characterMakers.push(() => makeCharacter(
  58457. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58458. {
  58459. side: {
  58460. height: math.unit(1.8, "meters"),
  58461. weight: math.unit(120, "kg"),
  58462. name: "Side",
  58463. image: {
  58464. source: "./media/characters/xie-ling/side.svg",
  58465. extra: 646/574,
  58466. bottom: 44/690
  58467. }
  58468. },
  58469. },
  58470. [
  58471. {
  58472. name: "Tiny",
  58473. height: math.unit(1.80, "meters")
  58474. },
  58475. {
  58476. name: "Small",
  58477. height: math.unit(6, "meters")
  58478. },
  58479. {
  58480. name: "Medium",
  58481. height: math.unit(15, "meters")
  58482. },
  58483. {
  58484. name: "Normal",
  58485. height: math.unit(30, "meters"),
  58486. default: true
  58487. },
  58488. {
  58489. name: "Above Normal",
  58490. height: math.unit(60, "meters")
  58491. },
  58492. {
  58493. name: "Big",
  58494. height: math.unit(220, "meters")
  58495. },
  58496. {
  58497. name: "Giant",
  58498. height: math.unit(2.2, "km")
  58499. },
  58500. {
  58501. name: "Macro",
  58502. height: math.unit(25, "km")
  58503. },
  58504. {
  58505. name: "Mega Macro",
  58506. height: math.unit(350, "km")
  58507. },
  58508. {
  58509. name: "Mega Macro+",
  58510. height: math.unit(5000, "km")
  58511. },
  58512. {
  58513. name: "Goddess",
  58514. height: math.unit(3, "multiverses")
  58515. },
  58516. ]
  58517. ))
  58518. characterMakers.push(() => makeCharacter(
  58519. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58520. {
  58521. frontSfw: {
  58522. height: math.unit(5 + 11/12, "feet"),
  58523. weight: math.unit(210, "lb"),
  58524. name: "Front",
  58525. image: {
  58526. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58527. extra: 1928/1821,
  58528. bottom: 45/1973
  58529. }
  58530. },
  58531. backSfw: {
  58532. height: math.unit(5 + 11/12, "feet"),
  58533. weight: math.unit(210, "lb"),
  58534. name: "Back",
  58535. image: {
  58536. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58537. extra: 1920/1813,
  58538. bottom: 34/1954
  58539. }
  58540. },
  58541. frontNsfw: {
  58542. height: math.unit(5 + 11/12, "feet"),
  58543. weight: math.unit(210, "lb"),
  58544. name: "Front (NSFW)",
  58545. image: {
  58546. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58547. extra: 1928/1821,
  58548. bottom: 45/1973
  58549. }
  58550. },
  58551. backNsfw: {
  58552. height: math.unit(5 + 11/12, "feet"),
  58553. weight: math.unit(210, "lb"),
  58554. name: "Back (NSFW)",
  58555. image: {
  58556. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58557. extra: 1920/1813,
  58558. bottom: 34/1954
  58559. }
  58560. },
  58561. },
  58562. [
  58563. {
  58564. name: "Normal",
  58565. height: math.unit(5 + 11/12, "feet"),
  58566. default: true
  58567. },
  58568. {
  58569. name: "Goddess",
  58570. height: math.unit(20 + 3/12, "feet")
  58571. },
  58572. {
  58573. name: "Breaker of Man",
  58574. height: math.unit(329 + 9/12, "feet")
  58575. },
  58576. {
  58577. name: "Solar Justice",
  58578. height: math.unit(0.6, "solarradii")
  58579. },
  58580. {
  58581. name: "She Who Judges",
  58582. height: math.unit(1, "universe")
  58583. },
  58584. ]
  58585. ))
  58586. characterMakers.push(() => makeCharacter(
  58587. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58588. {
  58589. casual_front: {
  58590. height: math.unit(6 + 1/12, "feet"),
  58591. weight: math.unit(190, "lb"),
  58592. preyCapacity: math.unit(1, "people"),
  58593. name: "Front",
  58594. image: {
  58595. source: "./media/characters/managarmr/casual-front.svg",
  58596. extra: 411/381,
  58597. bottom: 15/426
  58598. },
  58599. extraAttributes: {
  58600. "pawSize": {
  58601. name: "Paw Size",
  58602. power: 1,
  58603. type: "length",
  58604. base: math.unit(0.2, "meters")
  58605. },
  58606. },
  58607. form: "casual",
  58608. },
  58609. casual_back: {
  58610. height: math.unit(6 + 1/12, "feet"),
  58611. weight: math.unit(190, "lb"),
  58612. preyCapacity: math.unit(1, "people"),
  58613. name: "Back",
  58614. image: {
  58615. source: "./media/characters/managarmr/casual-back.svg",
  58616. extra: 413/383,
  58617. bottom: 13/426
  58618. },
  58619. extraAttributes: {
  58620. "pawSize": {
  58621. name: "Paw Size",
  58622. power: 1,
  58623. type: "length",
  58624. base: math.unit(0.2, "meters")
  58625. },
  58626. },
  58627. form: "casual",
  58628. },
  58629. base_front: {
  58630. height: math.unit(7, "feet"),
  58631. weight: math.unit(210, "lb"),
  58632. preyCapacity: math.unit(2, "people"),
  58633. name: "Front",
  58634. image: {
  58635. source: "./media/characters/managarmr/base-front.svg",
  58636. extra: 580/485,
  58637. bottom: 32/612
  58638. },
  58639. extraAttributes: {
  58640. "wingspan": {
  58641. name: "Wingspan",
  58642. power: 1,
  58643. type: "length",
  58644. base: math.unit(4, "meters")
  58645. },
  58646. "pawSize": {
  58647. name: "Paw Size",
  58648. power: 1,
  58649. type: "length",
  58650. base: math.unit(0.2, "meters")
  58651. },
  58652. },
  58653. form: "base",
  58654. },
  58655. "true-divine_front": {
  58656. height: math.unit(40, "feet"),
  58657. weight: math.unit(39000, "lb"),
  58658. preyCapacity: math.unit(375, "people"),
  58659. name: "Front",
  58660. image: {
  58661. source: "./media/characters/managarmr/true-divine-front.svg",
  58662. extra: 725/573,
  58663. bottom: 120/845
  58664. },
  58665. extraAttributes: {
  58666. "wingspan": {
  58667. name: "Wingspan",
  58668. power: 1,
  58669. type: "length",
  58670. base: math.unit(20, "meters")
  58671. },
  58672. "pawSize": {
  58673. name: "Paw Size",
  58674. power: 1,
  58675. type: "length",
  58676. base: math.unit(1.5, "meters")
  58677. },
  58678. },
  58679. form: "true-divine",
  58680. },
  58681. },
  58682. [
  58683. {
  58684. name: "Normal",
  58685. height: math.unit(6 + 1/12, "feet"),
  58686. form: "casual",
  58687. default: true
  58688. },
  58689. {
  58690. name: "Normal",
  58691. height: math.unit(7, "feet"),
  58692. form: "base",
  58693. default: true
  58694. },
  58695. ],
  58696. {
  58697. "casual": {
  58698. name: "Casual",
  58699. default: true
  58700. },
  58701. "base": {
  58702. name: "Base",
  58703. },
  58704. "true-divine": {
  58705. name: "True Divine",
  58706. },
  58707. }
  58708. ))
  58709. characterMakers.push(() => makeCharacter(
  58710. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58711. {
  58712. front: {
  58713. height: math.unit(1.8, "meters"),
  58714. weight: math.unit(110, "kg"),
  58715. name: "Front",
  58716. image: {
  58717. source: "./media/characters/mystra/front.svg",
  58718. extra: 529/442,
  58719. bottom: 31/560
  58720. }
  58721. },
  58722. frontLewd: {
  58723. height: math.unit(1.8, "meters"),
  58724. weight: math.unit(110, "kg"),
  58725. name: "Front (Lewd)",
  58726. image: {
  58727. source: "./media/characters/mystra/front-lewd.svg",
  58728. extra: 529/442,
  58729. bottom: 31/560
  58730. }
  58731. },
  58732. head: {
  58733. height: math.unit(1.63, "feet"),
  58734. name: "Head",
  58735. image: {
  58736. source: "./media/characters/mystra/head.svg"
  58737. }
  58738. },
  58739. paw: {
  58740. height: math.unit(1.9, "feet"),
  58741. name: "Paw",
  58742. image: {
  58743. source: "./media/characters/mystra/paw.svg"
  58744. }
  58745. },
  58746. },
  58747. [
  58748. {
  58749. name: "Incognito",
  58750. height: math.unit(2.3, "meters")
  58751. },
  58752. {
  58753. name: "Small Macro",
  58754. height: math.unit(300, "meters")
  58755. },
  58756. {
  58757. name: "Small Mega",
  58758. height: math.unit(2, "km")
  58759. },
  58760. {
  58761. name: "Mega",
  58762. height: math.unit(30, "km")
  58763. },
  58764. {
  58765. name: "Small Giga",
  58766. height: math.unit(100, "km")
  58767. },
  58768. {
  58769. name: "Giga",
  58770. height: math.unit(1000, "km"),
  58771. default: true
  58772. },
  58773. {
  58774. name: "Continental",
  58775. height: math.unit(5000, "km")
  58776. },
  58777. {
  58778. name: "Terra",
  58779. height: math.unit(20000, "km")
  58780. },
  58781. {
  58782. name: "Solar",
  58783. height: math.unit(2e6, "km")
  58784. },
  58785. {
  58786. name: "Galactic",
  58787. height: math.unit(528502, "lightyears")
  58788. },
  58789. {
  58790. name: "Universal",
  58791. height: math.unit(20, "universes")
  58792. },
  58793. ]
  58794. ))
  58795. characterMakers.push(() => makeCharacter(
  58796. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58797. {
  58798. front: {
  58799. height: math.unit(2, "meters"),
  58800. weight: math.unit(140, "kg"),
  58801. name: "Front",
  58802. image: {
  58803. source: "./media/characters/caleb/front.svg",
  58804. extra: 873/817,
  58805. bottom: 47/920
  58806. }
  58807. },
  58808. back: {
  58809. height: math.unit(2, "meters"),
  58810. weight: math.unit(140, "kg"),
  58811. name: "Back",
  58812. image: {
  58813. source: "./media/characters/caleb/back.svg",
  58814. extra: 877/828,
  58815. bottom: 24/901
  58816. }
  58817. },
  58818. snakeTail: {
  58819. height: math.unit(1.44, "feet"),
  58820. name: "Snake Tail",
  58821. image: {
  58822. source: "./media/characters/caleb/snake-tail.svg"
  58823. }
  58824. },
  58825. dick: {
  58826. height: math.unit(2.6, "feet"),
  58827. name: "Dick",
  58828. image: {
  58829. source: "./media/characters/caleb/dick.svg"
  58830. }
  58831. },
  58832. },
  58833. [
  58834. {
  58835. name: "Incognito",
  58836. height: math.unit(3, "meters")
  58837. },
  58838. {
  58839. name: "Home Size",
  58840. height: math.unit(200, "meters"),
  58841. default: true
  58842. },
  58843. {
  58844. name: "Macro",
  58845. height: math.unit(500, "meters")
  58846. },
  58847. {
  58848. name: "Big Macro",
  58849. height: math.unit(5, "km")
  58850. },
  58851. {
  58852. name: "Giga",
  58853. height: math.unit(250, "km")
  58854. },
  58855. {
  58856. name: "Giga+",
  58857. height: math.unit(5000, "km")
  58858. },
  58859. {
  58860. name: "Small Terra",
  58861. height: math.unit(35e3, "km")
  58862. },
  58863. {
  58864. name: "Terra",
  58865. height: math.unit(2e6, "km")
  58866. },
  58867. {
  58868. name: "Terra+",
  58869. height: math.unit(1.5e6, "km")
  58870. },
  58871. ]
  58872. ))
  58873. characterMakers.push(() => makeCharacter(
  58874. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58875. {
  58876. front: {
  58877. height: math.unit(2, "meters"),
  58878. weight: math.unit(120, "kg"),
  58879. name: "Front",
  58880. image: {
  58881. source: "./media/characters/gilirian/front.svg",
  58882. extra: 805/737,
  58883. bottom: 13/818
  58884. }
  58885. },
  58886. side: {
  58887. height: math.unit(2, "meters"),
  58888. weight: math.unit(120, "kg"),
  58889. name: "Side",
  58890. image: {
  58891. source: "./media/characters/gilirian/side.svg",
  58892. extra: 810/746,
  58893. bottom: 6/816
  58894. }
  58895. },
  58896. back: {
  58897. height: math.unit(2, "meters"),
  58898. weight: math.unit(120, "kg"),
  58899. name: "Back",
  58900. image: {
  58901. source: "./media/characters/gilirian/back.svg",
  58902. extra: 815/745,
  58903. bottom: 15/830
  58904. }
  58905. },
  58906. frontNsfw: {
  58907. height: math.unit(2, "meters"),
  58908. weight: math.unit(120, "kg"),
  58909. name: "Front (NSFW)",
  58910. image: {
  58911. source: "./media/characters/gilirian/front-nsfw.svg",
  58912. extra: 805/737,
  58913. bottom: 13/818
  58914. }
  58915. },
  58916. sideNsfw: {
  58917. height: math.unit(2, "meters"),
  58918. weight: math.unit(120, "kg"),
  58919. name: "Side (NSFW)",
  58920. image: {
  58921. source: "./media/characters/gilirian/side-nsfw.svg",
  58922. extra: 810/746,
  58923. bottom: 6/816
  58924. }
  58925. },
  58926. },
  58927. [
  58928. {
  58929. name: "Incognito",
  58930. height: math.unit(2, "meters"),
  58931. default: true
  58932. },
  58933. {
  58934. name: "Macro",
  58935. height: math.unit(250, "meters")
  58936. },
  58937. {
  58938. name: "Big Macro",
  58939. height: math.unit(1500, "meters")
  58940. },
  58941. {
  58942. name: "Mega",
  58943. height: math.unit(40, "km")
  58944. },
  58945. {
  58946. name: "Giga",
  58947. height: math.unit(300, "km")
  58948. },
  58949. {
  58950. name: "Extra Giga",
  58951. height: math.unit(5000, "km")
  58952. },
  58953. {
  58954. name: "Small Terra",
  58955. height: math.unit(10e3, "km")
  58956. },
  58957. {
  58958. name: "Terra",
  58959. height: math.unit(3e5, "km")
  58960. },
  58961. {
  58962. name: "Galactic",
  58963. height: math.unit(369950, "lightyears")
  58964. },
  58965. ]
  58966. ))
  58967. characterMakers.push(() => makeCharacter(
  58968. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58969. {
  58970. front: {
  58971. height: math.unit(2.5, "meters"),
  58972. weight: math.unit(230, "lb"),
  58973. name: "Front",
  58974. image: {
  58975. source: "./media/characters/tarken/front.svg",
  58976. extra: 764/720,
  58977. bottom: 49/813
  58978. }
  58979. },
  58980. back: {
  58981. height: math.unit(2.5, "meters"),
  58982. weight: math.unit(230, "lb"),
  58983. name: "Back",
  58984. image: {
  58985. source: "./media/characters/tarken/back.svg",
  58986. extra: 756/720,
  58987. bottom: 35/791
  58988. }
  58989. },
  58990. frontNsfw: {
  58991. height: math.unit(2.5, "meters"),
  58992. weight: math.unit(230, "lb"),
  58993. name: "Front (NSFW)",
  58994. image: {
  58995. source: "./media/characters/tarken/front-nsfw.svg",
  58996. extra: 764/720,
  58997. bottom: 49/813
  58998. }
  58999. },
  59000. backNsfw: {
  59001. height: math.unit(2.5, "meters"),
  59002. weight: math.unit(230, "lb"),
  59003. name: "Back (NSFW)",
  59004. image: {
  59005. source: "./media/characters/tarken/back-nsfw.svg",
  59006. extra: 756/720,
  59007. bottom: 35/791
  59008. }
  59009. },
  59010. head: {
  59011. height: math.unit(2.22, "feet"),
  59012. name: "Head",
  59013. image: {
  59014. source: "./media/characters/tarken/head.svg"
  59015. }
  59016. },
  59017. tail: {
  59018. height: math.unit(5.25, "feet"),
  59019. name: "Tail",
  59020. image: {
  59021. source: "./media/characters/tarken/tail.svg"
  59022. }
  59023. },
  59024. dick: {
  59025. height: math.unit(1.95, "feet"),
  59026. name: "Dick",
  59027. image: {
  59028. source: "./media/characters/tarken/dick.svg"
  59029. }
  59030. },
  59031. hand: {
  59032. height: math.unit(1.78, "feet"),
  59033. name: "Hand",
  59034. image: {
  59035. source: "./media/characters/tarken/hand.svg"
  59036. }
  59037. },
  59038. beam: {
  59039. height: math.unit(1.5, "feet"),
  59040. name: "Beam",
  59041. image: {
  59042. source: "./media/characters/tarken/beam.svg"
  59043. }
  59044. },
  59045. },
  59046. [
  59047. {
  59048. name: "Original Size",
  59049. height: math.unit(2.5, "meters")
  59050. },
  59051. {
  59052. name: "Macro",
  59053. height: math.unit(150, "meters"),
  59054. default: true
  59055. },
  59056. {
  59057. name: "Macro+",
  59058. height: math.unit(300, "meters")
  59059. },
  59060. {
  59061. name: "Mega",
  59062. height: math.unit(2, "km")
  59063. },
  59064. {
  59065. name: "Mega+",
  59066. height: math.unit(35, "km")
  59067. },
  59068.  {
  59069. name: "Mega++",
  59070. height: math.unit(60, "km")
  59071. },
  59072. {
  59073. name: "Giga",
  59074. height: math.unit(200, "km")
  59075. },
  59076. {
  59077. name: "Giga+",
  59078. height: math.unit(2500, "km")
  59079. },
  59080. {
  59081. name: "Giga++",
  59082. height: math.unit(6600, "km")
  59083. },
  59084. {
  59085. name: "Terra",
  59086. height: math.unit(20000, "km")
  59087. },
  59088. {
  59089. name: "Terra+",
  59090. height: math.unit(300000, "km")
  59091. },
  59092. ]
  59093. ))
  59094. characterMakers.push(() => makeCharacter(
  59095. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59096. {
  59097. magpie_dressed: {
  59098. height: math.unit(1.7, "meters"),
  59099. weight: math.unit(70, "kg"),
  59100. name: "Dressed",
  59101. image: {
  59102. source: "./media/characters/otreus/magpie-dressed.svg",
  59103. extra: 691/672,
  59104. bottom: 116/807
  59105. },
  59106. form: "magpie",
  59107. default: true
  59108. },
  59109. magpie_nude: {
  59110. height: math.unit(1.7, "meters"),
  59111. weight: math.unit(70, "kg"),
  59112. name: "Nude",
  59113. image: {
  59114. source: "./media/characters/otreus/magpie-nude.svg",
  59115. extra: 691/672,
  59116. bottom: 116/807
  59117. },
  59118. form: "magpie",
  59119. },
  59120. magpie_dressedLewd: {
  59121. height: math.unit(1.7, "meters"),
  59122. weight: math.unit(70, "kg"),
  59123. name: "Dressed (Lewd)",
  59124. image: {
  59125. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59126. extra: 691/672,
  59127. bottom: 116/807
  59128. },
  59129. form: "magpie",
  59130. },
  59131. magpie_nudeLewd: {
  59132. height: math.unit(1.7, "meters"),
  59133. weight: math.unit(70, "kg"),
  59134. name: "Nude (Lewd)",
  59135. image: {
  59136. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59137. extra: 691/672,
  59138. bottom: 116/807
  59139. },
  59140. form: "magpie",
  59141. },
  59142. magpie_leftFoot: {
  59143. height: math.unit(1.58, "feet"),
  59144. name: "Left Foot",
  59145. image: {
  59146. source: "./media/characters/otreus/magpie-left-foot.svg"
  59147. },
  59148. form: "magpie",
  59149. },
  59150. magpie_rightFoot: {
  59151. height: math.unit(1.58, "feet"),
  59152. name: "Right Foot",
  59153. image: {
  59154. source: "./media/characters/otreus/magpie-right-foot.svg"
  59155. },
  59156. form: "magpie",
  59157. },
  59158. magpie_wingspan: {
  59159. height: math.unit(2, "meters"),
  59160. weight: math.unit(70, "kg"),
  59161. name: "Wingspan",
  59162. image: {
  59163. source: "./media/characters/otreus/magpie-wingspan.svg"
  59164. },
  59165. extraAttributes: {
  59166. "wingspan": {
  59167. name: "Wingspan",
  59168. power: 1,
  59169. type: "length",
  59170. base: math.unit(3.35, "meters")
  59171. },
  59172. },
  59173. form: "magpie",
  59174. },
  59175. hippogriff_dressed: {
  59176. height: math.unit(1.7, "meters"),
  59177. weight: math.unit(70, "kg"),
  59178. name: "Dressed",
  59179. image: {
  59180. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59181. extra: 710/689,
  59182. bottom: 67/777
  59183. },
  59184. form: "hippogriff",
  59185. default: true
  59186. },
  59187. hippogriff_nude: {
  59188. height: math.unit(1.7, "meters"),
  59189. weight: math.unit(70, "kg"),
  59190. name: "Nude",
  59191. image: {
  59192. source: "./media/characters/otreus/hippogriff-nude.svg",
  59193. extra: 710/689,
  59194. bottom: 67/777
  59195. },
  59196. form: "hippogriff",
  59197. },
  59198. hippogriff_dressedLewd: {
  59199. height: math.unit(1.7, "meters"),
  59200. weight: math.unit(70, "kg"),
  59201. name: "Dressed (Lewd)",
  59202. image: {
  59203. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59204. extra: 710/689,
  59205. bottom: 67/777
  59206. },
  59207. form: "hippogriff",
  59208. },
  59209. hippogriff_nudeLewd: {
  59210. height: math.unit(1.7, "meters"),
  59211. weight: math.unit(70, "kg"),
  59212. name: "Nude (Lewd)",
  59213. image: {
  59214. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59215. extra: 710/689,
  59216. bottom: 67/777
  59217. },
  59218. form: "hippogriff",
  59219. },
  59220. },
  59221. [
  59222. {
  59223. name: "Original Size",
  59224. height: math.unit(1.7, "meters"),
  59225. allForms: true
  59226. },
  59227. {
  59228. name: "Incognito Size",
  59229. height: math.unit(2, "meters"),
  59230. allForms: true
  59231. },
  59232. {
  59233. name: "Mega",
  59234. height: math.unit(2, "km"),
  59235. allForms: true
  59236. },
  59237. {
  59238. name: "Mega+",
  59239. height: math.unit(40, "km"),
  59240. allForms: true
  59241. },
  59242. {
  59243. name: "Giga",
  59244. height: math.unit(250, "km"),
  59245. allForms: true
  59246. },
  59247. {
  59248. name: "Giga+",
  59249. height: math.unit(3000, "km"),
  59250. allForms: true
  59251. },
  59252. {
  59253. name: "Terra",
  59254. height: math.unit(20000, "km"),
  59255. allForms: true
  59256. },
  59257. {
  59258. name: "Solar (Home Size)",
  59259. height: math.unit(3e6, "km"),
  59260. allForms: true,
  59261. default: true
  59262. },
  59263. ],
  59264. {
  59265. "magpie": {
  59266. name: "Magpie",
  59267. default: true
  59268. },
  59269. "hippogriff": {
  59270. name: "Hippogriff",
  59271. },
  59272. }
  59273. ))
  59274. characterMakers.push(() => makeCharacter(
  59275. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59276. {
  59277. frontDressed: {
  59278. height: math.unit(1.8, "meters"),
  59279. weight: math.unit(90, "kg"),
  59280. name: "Front (Dressed)",
  59281. image: {
  59282. source: "./media/characters/thalia/front-dressed.svg",
  59283. extra: 478/402,
  59284. bottom: 55/533
  59285. }
  59286. },
  59287. backDressed: {
  59288. height: math.unit(1.8, "meters"),
  59289. weight: math.unit(90, "kg"),
  59290. name: "Back (Dressed)",
  59291. image: {
  59292. source: "./media/characters/thalia/back-dressed.svg",
  59293. extra: 500/424,
  59294. bottom: 15/515
  59295. }
  59296. },
  59297. frontNude: {
  59298. height: math.unit(1.8, "meters"),
  59299. weight: math.unit(90, "kg"),
  59300. name: "Front (Nude)",
  59301. image: {
  59302. source: "./media/characters/thalia/front-nude.svg",
  59303. extra: 478/402,
  59304. bottom: 55/533
  59305. }
  59306. },
  59307. backNude: {
  59308. height: math.unit(1.8, "meters"),
  59309. weight: math.unit(90, "kg"),
  59310. name: "Back (Nude)",
  59311. image: {
  59312. source: "./media/characters/thalia/back-nude.svg",
  59313. extra: 500/424,
  59314. bottom: 15/515
  59315. }
  59316. },
  59317. },
  59318. [
  59319. {
  59320. name: "Incognito",
  59321. height: math.unit(3, "meters")
  59322. },
  59323. {
  59324. name: "Macro",
  59325. height: math.unit(500, "meters")
  59326. },
  59327. {
  59328. name: "Mega",
  59329. height: math.unit(5, "km")
  59330. },
  59331. {
  59332. name: "Mega+",
  59333. height: math.unit(30, "km")
  59334. },
  59335. {
  59336. name: "Giga",
  59337. height: math.unit(350, "km")
  59338. },
  59339. {
  59340. name: "Giga+",
  59341. height: math.unit(4000, "km")
  59342. },
  59343. {
  59344. name: "Terra",
  59345. height: math.unit(35000, "km")
  59346. },
  59347. {
  59348. name: "Original Size",
  59349. height: math.unit(130000, "km")
  59350. },
  59351. {
  59352. name: "Solar (Home Size)",
  59353. height: math.unit(4e6, "km"),
  59354. default: true
  59355. },
  59356. ]
  59357. ))
  59358. characterMakers.push(() => makeCharacter(
  59359. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59360. {
  59361. front: {
  59362. height: math.unit(1.8, "meters"),
  59363. weight: math.unit(95, "kg"),
  59364. name: "Front",
  59365. image: {
  59366. source: "./media/characters/shango/front.svg",
  59367. extra: 1925/1774,
  59368. bottom: 67/1992
  59369. }
  59370. },
  59371. back: {
  59372. height: math.unit(1.8, "meters"),
  59373. weight: math.unit(95, "kg"),
  59374. name: "Back",
  59375. image: {
  59376. source: "./media/characters/shango/back.svg",
  59377. extra: 1915/1766,
  59378. bottom: 52/1967
  59379. }
  59380. },
  59381. frontLewd: {
  59382. height: math.unit(1.8, "meters"),
  59383. weight: math.unit(95, "kg"),
  59384. name: "Front (Lewd)",
  59385. image: {
  59386. source: "./media/characters/shango/front-lewd.svg",
  59387. extra: 1925/1774,
  59388. bottom: 67/1992
  59389. }
  59390. },
  59391. backLewd: {
  59392. height: math.unit(1.8, "meters"),
  59393. weight: math.unit(95, "kg"),
  59394. name: "Back (Lewd)",
  59395. image: {
  59396. source: "./media/characters/shango/back-lewd.svg",
  59397. extra: 1915/1766,
  59398. bottom: 52/1967
  59399. }
  59400. },
  59401. maw: {
  59402. height: math.unit(1.64, "feet"),
  59403. name: "Maw",
  59404. image: {
  59405. source: "./media/characters/shango/maw.svg"
  59406. }
  59407. },
  59408. dick: {
  59409. height: math.unit(2.14, "feet"),
  59410. name: "Dick",
  59411. image: {
  59412. source: "./media/characters/shango/dick.svg"
  59413. }
  59414. },
  59415. },
  59416. [
  59417. {
  59418. name: "Incognito",
  59419. height: math.unit(1.8, "meters")
  59420. },
  59421. {
  59422. name: "Home Size",
  59423. height: math.unit(60, "meters"),
  59424. default: true
  59425. },
  59426. {
  59427. name: "Macro",
  59428. height: math.unit(450, "meters")
  59429. },
  59430. {
  59431. name: "Mega",
  59432. height: math.unit(6, "km")
  59433. },
  59434. {
  59435. name: "Mega+",
  59436. height: math.unit(35, "km")
  59437. },
  59438. {
  59439. name: "Giga",
  59440. height: math.unit(500, "km")
  59441. },
  59442. {
  59443. name: "Giga+",
  59444. height: math.unit(5000, "km")
  59445. },
  59446. {
  59447. name: "Terra",
  59448. height: math.unit(60000, "km")
  59449. },
  59450. {
  59451. name: "Terra+",
  59452. height: math.unit(400000, "km")
  59453. },
  59454. ]
  59455. ))
  59456. characterMakers.push(() => makeCharacter(
  59457. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59458. {
  59459. front: {
  59460. height: math.unit(2, "meters"),
  59461. weight: math.unit(95, "kg"),
  59462. name: "Front",
  59463. image: {
  59464. source: "./media/characters/osiris-gryphon/front.svg",
  59465. extra: 1508/1313,
  59466. bottom: 87/1595
  59467. }
  59468. },
  59469. back: {
  59470. height: math.unit(2, "meters"),
  59471. weight: math.unit(95, "kg"),
  59472. name: "Back",
  59473. image: {
  59474. source: "./media/characters/osiris-gryphon/back.svg",
  59475. extra: 1436/1309,
  59476. bottom: 64/1500
  59477. }
  59478. },
  59479. frontLewd: {
  59480. height: math.unit(2, "meters"),
  59481. weight: math.unit(95, "kg"),
  59482. name: "Front-lewd",
  59483. image: {
  59484. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59485. extra: 1508/1313,
  59486. bottom: 87/1595
  59487. }
  59488. },
  59489. wing: {
  59490. height: math.unit(6.3333, "feet"),
  59491. name: "Wing",
  59492. image: {
  59493. source: "./media/characters/osiris-gryphon/wing.svg"
  59494. }
  59495. },
  59496. },
  59497. [
  59498. {
  59499. name: "Incognito",
  59500. height: math.unit(2, "meters")
  59501. },
  59502. {
  59503. name: "Home Size",
  59504. height: math.unit(30, "meters"),
  59505. default: true
  59506. },
  59507. {
  59508. name: "Macro",
  59509. height: math.unit(100, "meters")
  59510. },
  59511. {
  59512. name: "Macro+",
  59513. height: math.unit(350, "meters")
  59514. },
  59515. {
  59516. name: "Mega",
  59517. height: math.unit(40, "km")
  59518. },
  59519. {
  59520. name: "Giga",
  59521. height: math.unit(300, "km")
  59522. },
  59523. {
  59524. name: "Giga+",
  59525. height: math.unit(2000, "km")
  59526. },
  59527. {
  59528. name: "Terra",
  59529. height: math.unit(30000, "km")
  59530. },
  59531. ]
  59532. ))
  59533. characterMakers.push(() => makeCharacter(
  59534. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59535. {
  59536. front: {
  59537. height: math.unit(2.5, "meters"),
  59538. weight: math.unit(200, "kg"),
  59539. name: "Front",
  59540. image: {
  59541. source: "./media/characters/atlas-dragon/front.svg",
  59542. extra: 745/462,
  59543. bottom: 36/781
  59544. }
  59545. },
  59546. back: {
  59547. height: math.unit(2.5, "meters"),
  59548. weight: math.unit(200, "kg"),
  59549. name: "Back",
  59550. image: {
  59551. source: "./media/characters/atlas-dragon/back.svg",
  59552. extra: 848/822,
  59553. bottom: 57/905
  59554. }
  59555. },
  59556. frontLewd: {
  59557. height: math.unit(2.5, "meters"),
  59558. weight: math.unit(200, "kg"),
  59559. name: "Front (Lewd)",
  59560. image: {
  59561. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59562. extra: 745/462,
  59563. bottom: 36/781
  59564. }
  59565. },
  59566. backLewd: {
  59567. height: math.unit(2.5, "meters"),
  59568. weight: math.unit(200, "kg"),
  59569. name: "Back (Lewd)",
  59570. image: {
  59571. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59572. extra: 848/822,
  59573. bottom: 57/905
  59574. }
  59575. },
  59576. },
  59577. [
  59578. {
  59579. name: "Incognito",
  59580. height: math.unit(2.5, "meters")
  59581. },
  59582. {
  59583. name: "Small Macro",
  59584. height: math.unit(50, "meters")
  59585. },
  59586. {
  59587. name: "Macro",
  59588. height: math.unit(350, "meters")
  59589. },
  59590. {
  59591. name: "Mega",
  59592. height: math.unit(5.5, "kilometers")
  59593. },
  59594. {
  59595. name: "Mega+",
  59596. height: math.unit(50, "km")
  59597. },
  59598. {
  59599. name: "Giga",
  59600. height: math.unit(350, "km")
  59601. },
  59602. {
  59603. name: "Giga+",
  59604. height: math.unit(2000, "km")
  59605. },
  59606. {
  59607. name: "Giga++",
  59608. height: math.unit(6500, "km")
  59609. },
  59610. {
  59611. name: "Terra",
  59612. height: math.unit(30000, "km")
  59613. },
  59614. {
  59615. name: "Terra+",
  59616. height: math.unit(250000, "km")
  59617. },
  59618. {
  59619. name: "True Size",
  59620. height: math.unit(100, "multiverses"),
  59621. default: true
  59622. },
  59623. ]
  59624. ))
  59625. characterMakers.push(() => makeCharacter(
  59626. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59627. {
  59628. front: {
  59629. height: math.unit(1.8, "m"),
  59630. weight: math.unit(120, "kg"),
  59631. name: "Front",
  59632. image: {
  59633. source: "./media/characters/chey/front.svg",
  59634. extra: 1359/1270,
  59635. bottom: 18/1377
  59636. }
  59637. },
  59638. arm: {
  59639. height: math.unit(2.05, "feet"),
  59640. name: "Arm",
  59641. image: {
  59642. source: "./media/characters/chey/arm.svg"
  59643. }
  59644. },
  59645. head: {
  59646. height: math.unit(1.89, "feet"),
  59647. name: "Head",
  59648. image: {
  59649. source: "./media/characters/chey/head.svg"
  59650. }
  59651. },
  59652. },
  59653. [
  59654. {
  59655. name: "Original Size",
  59656. height: math.unit(5, "cm")
  59657. },
  59658. {
  59659. name: "Incognito Size",
  59660. height: math.unit(2.4, "m")
  59661. },
  59662. {
  59663. name: "Home Size",
  59664. height: math.unit(200, "meters"),
  59665. default: true
  59666. },
  59667. {
  59668. name: "Mega",
  59669. height: math.unit(2, "km")
  59670. },
  59671. {
  59672. name: "Giga (Preferred Size)",
  59673. height: math.unit(2000, "km")
  59674. },
  59675. {
  59676. name: "Giga+",
  59677. height: math.unit(6000, "km")
  59678. },
  59679. {
  59680. name: "Terra",
  59681. height: math.unit(17000, "km")
  59682. },
  59683. {
  59684. name: "Terra+",
  59685. height: math.unit(75000, "km")
  59686. },
  59687. {
  59688. name: "Terra++",
  59689. height: math.unit(225000, "km")
  59690. },
  59691. ]
  59692. ))
  59693. characterMakers.push(() => makeCharacter(
  59694. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59695. {
  59696. side: {
  59697. height: math.unit(7.8, "meters"),
  59698. name: "Side",
  59699. image: {
  59700. source: "./media/characters/ragnarok/side.svg",
  59701. extra: 725/621,
  59702. bottom: 72/797
  59703. }
  59704. },
  59705. },
  59706. [
  59707. {
  59708. name: "Normal",
  59709. height: math.unit(7.8, "meters"),
  59710. default: true
  59711. },
  59712. ]
  59713. ))
  59714. characterMakers.push(() => makeCharacter(
  59715. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59716. {
  59717. hyena_front: {
  59718. height: math.unit(2.1, "meters"),
  59719. weight: math.unit(110, "kg"),
  59720. name: "Front",
  59721. image: {
  59722. source: "./media/characters/nima/hyena-front.svg",
  59723. extra: 1904/1796,
  59724. bottom: 67/1971
  59725. },
  59726. form: "hyena",
  59727. },
  59728. hyena_back: {
  59729. height: math.unit(2.1, "meters"),
  59730. weight: math.unit(110, "kg"),
  59731. name: "Back",
  59732. image: {
  59733. source: "./media/characters/nima/hyena-back.svg",
  59734. extra: 1964/1884,
  59735. bottom: 35/1999
  59736. },
  59737. form: "hyena",
  59738. },
  59739. shark_front: {
  59740. height: math.unit(1.95, "meters"),
  59741. weight: math.unit(110, "kg"),
  59742. name: "Front",
  59743. image: {
  59744. source: "./media/characters/nima/shark-front.svg",
  59745. extra: 2238/2013,
  59746. bottom: 0/223
  59747. },
  59748. form: "shark",
  59749. },
  59750. paw: {
  59751. height: math.unit(1, "feet"),
  59752. name: "Paw",
  59753. image: {
  59754. source: "./media/characters/nima/paw.svg"
  59755. }
  59756. },
  59757. circlet: {
  59758. height: math.unit(0.3, "feet"),
  59759. name: "Circlet",
  59760. image: {
  59761. source: "./media/characters/nima/circlet.svg"
  59762. }
  59763. },
  59764. necklace: {
  59765. height: math.unit(1.2, "feet"),
  59766. name: "Necklace",
  59767. image: {
  59768. source: "./media/characters/nima/necklace.svg"
  59769. }
  59770. },
  59771. bracelet: {
  59772. height: math.unit(0.51, "feet"),
  59773. name: "Bracelet",
  59774. image: {
  59775. source: "./media/characters/nima/bracelet.svg"
  59776. }
  59777. },
  59778. armband: {
  59779. height: math.unit(1.3, "feet"),
  59780. name: "Armband",
  59781. image: {
  59782. source: "./media/characters/nima/armband.svg"
  59783. }
  59784. },
  59785. },
  59786. [
  59787. {
  59788. name: "Incognito",
  59789. height: math.unit(2.1, "meters"),
  59790. allForms: true
  59791. },
  59792. {
  59793. name: "Small Macro",
  59794. height: math.unit(50, "meters"),
  59795. allForms: true
  59796. },
  59797. {
  59798. name: "Macro",
  59799. height: math.unit(200, "meters"),
  59800. allForms: true
  59801. },
  59802. {
  59803. name: "Mega",
  59804. height: math.unit(2.5, "km"),
  59805. allForms: true
  59806. },
  59807. {
  59808. name: "Mega+",
  59809. height: math.unit(30, "km"),
  59810. allForms: true
  59811. },
  59812. {
  59813. name: "Giga (Home Size)",
  59814. height: math.unit(400, "km"),
  59815. allForms: true,
  59816. default: true
  59817. },
  59818. {
  59819. name: "Giga+",
  59820. height: math.unit(2500, "km"),
  59821. allForms: true
  59822. },
  59823. {
  59824. name: "Giga++",
  59825. height: math.unit(8000, "km"),
  59826. allForms: true
  59827. },
  59828. {
  59829. name: "Terra",
  59830. height: math.unit(20000, "km"),
  59831. allForms: true
  59832. },
  59833. {
  59834. name: "Terra+",
  59835. height: math.unit(70000, "km"),
  59836. allForms: true
  59837. },
  59838. {
  59839. name: "Terra++",
  59840. height: math.unit(600000, "km"),
  59841. allForms: true
  59842. },
  59843. {
  59844. name: "Galactic",
  59845. height: math.unit(40, "galaxies"),
  59846. allForms: true
  59847. },
  59848. {
  59849. name: "Universal",
  59850. height: math.unit(40, "universes"),
  59851. allForms: true
  59852. },
  59853. ],
  59854. {
  59855. "hyena": {
  59856. name: "Hyena",
  59857. default: true
  59858. },
  59859. "shark": {
  59860. name: "Shark",
  59861. },
  59862. }
  59863. ))
  59864. characterMakers.push(() => makeCharacter(
  59865. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59866. {
  59867. anthro_front: {
  59868. height: math.unit(1.5, "meters"),
  59869. name: "Front",
  59870. image: {
  59871. source: "./media/characters/adelaide/anthro-front.svg",
  59872. extra: 860/783,
  59873. bottom: 60/920
  59874. },
  59875. form: "anthro",
  59876. default: true
  59877. },
  59878. hand: {
  59879. height: math.unit(0.65, "feet"),
  59880. name: "Hand",
  59881. image: {
  59882. source: "./media/characters/adelaide/hand.svg"
  59883. },
  59884. form: "anthro"
  59885. },
  59886. foot: {
  59887. height: math.unit(1.38 * 259 / 314, "feet"),
  59888. name: "Foot",
  59889. image: {
  59890. source: "./media/characters/adelaide/foot.svg",
  59891. extra: 259/259,
  59892. bottom: 55/314
  59893. },
  59894. form: "anthro"
  59895. },
  59896. feather: {
  59897. height: math.unit(0.85, "feet"),
  59898. name: "Feather",
  59899. image: {
  59900. source: "./media/characters/adelaide/feather.svg"
  59901. },
  59902. form: "anthro"
  59903. },
  59904. feral_side: {
  59905. height: math.unit(1, "meters"),
  59906. name: "Side",
  59907. image: {
  59908. source: "./media/characters/adelaide/feral-side.svg",
  59909. extra: 550/467,
  59910. bottom: 37/587
  59911. },
  59912. form: "feral",
  59913. default: true
  59914. },
  59915. feral_hand: {
  59916. height: math.unit(0.58, "feet"),
  59917. name: "Hand",
  59918. image: {
  59919. source: "./media/characters/adelaide/hand.svg"
  59920. },
  59921. form: "feral"
  59922. },
  59923. feral_foot: {
  59924. height: math.unit(1.2 * 259 / 314, "feet"),
  59925. name: "Foot",
  59926. image: {
  59927. source: "./media/characters/adelaide/foot.svg",
  59928. extra: 259/259,
  59929. bottom: 55/314
  59930. },
  59931. form: "feral"
  59932. },
  59933. feral_feather: {
  59934. height: math.unit(0.63, "feet"),
  59935. name: "Feather",
  59936. image: {
  59937. source: "./media/characters/adelaide/feather.svg"
  59938. },
  59939. form: "feral"
  59940. },
  59941. },
  59942. [
  59943. {
  59944. name: "Normal",
  59945. height: math.unit(1.5, "meters"),
  59946. form: "anthro",
  59947. default: true
  59948. },
  59949. {
  59950. name: "Normal",
  59951. height: math.unit(1, "meters"),
  59952. form: "feral",
  59953. default: true
  59954. },
  59955. ],
  59956. {
  59957. "anthro": {
  59958. name: "Anthro",
  59959. default: true
  59960. },
  59961. "feral": {
  59962. name: "Feral",
  59963. },
  59964. }
  59965. ))
  59966. characterMakers.push(() => makeCharacter(
  59967. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59968. {
  59969. front: {
  59970. height: math.unit(2.5, "meters"),
  59971. name: "Front",
  59972. image: {
  59973. source: "./media/characters/goa/front.svg",
  59974. extra: 1109/1013,
  59975. bottom: 150/1259
  59976. }
  59977. },
  59978. },
  59979. [
  59980. {
  59981. name: "Normal",
  59982. height: math.unit(2.5, "meters"),
  59983. default: true
  59984. },
  59985. ]
  59986. ))
  59987. characterMakers.push(() => makeCharacter(
  59988. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59989. {
  59990. front: {
  59991. height: math.unit(2, "meters"),
  59992. weight: math.unit(100, "kg"),
  59993. name: "Front",
  59994. image: {
  59995. source: "./media/characters/kiki-weavile/front.svg",
  59996. extra: 357/332,
  59997. bottom: 60/417
  59998. }
  59999. },
  60000. },
  60001. [
  60002. {
  60003. name: "Normal",
  60004. height: math.unit(2, "meters"),
  60005. default: true
  60006. },
  60007. ]
  60008. ))
  60009. characterMakers.push(() => makeCharacter(
  60010. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60011. {
  60012. side: {
  60013. height: math.unit(1.6, "meters"),
  60014. name: "Side",
  60015. image: {
  60016. source: "./media/characters/liza/side.svg",
  60017. extra: 943/915,
  60018. bottom: 72/1015
  60019. }
  60020. },
  60021. },
  60022. [
  60023. {
  60024. name: "Normal",
  60025. height: math.unit(1.6, "meters"),
  60026. default: true
  60027. },
  60028. ]
  60029. ))
  60030. characterMakers.push(() => makeCharacter(
  60031. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60032. {
  60033. side: {
  60034. height: math.unit(2.5, "meters"),
  60035. preyCapacity: math.unit(1, "people"),
  60036. name: "Side",
  60037. image: {
  60038. source: "./media/characters/persephone-sweetbreath/side.svg",
  60039. extra: 796/700,
  60040. bottom: 44/840
  60041. }
  60042. },
  60043. sideVore: {
  60044. height: math.unit(2.5, "meters"),
  60045. preyCapacity: math.unit(1, "people"),
  60046. name: "Side (Full)",
  60047. image: {
  60048. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60049. extra: 796/700,
  60050. bottom: 44/840
  60051. }
  60052. },
  60053. },
  60054. [
  60055. {
  60056. name: "Normal",
  60057. height: math.unit(2.5, "meters"),
  60058. default: true
  60059. },
  60060. ]
  60061. ))
  60062. characterMakers.push(() => makeCharacter(
  60063. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60064. {
  60065. front: {
  60066. height: math.unit(32, "meters"),
  60067. name: "Front",
  60068. image: {
  60069. source: "./media/characters/pierce/front.svg",
  60070. extra: 1695/1475,
  60071. bottom: 185/1880
  60072. }
  60073. },
  60074. side: {
  60075. height: math.unit(32, "meters"),
  60076. name: "Side",
  60077. image: {
  60078. source: "./media/characters/pierce/side.svg",
  60079. extra: 974/859,
  60080. bottom: 43/1017
  60081. }
  60082. },
  60083. frontWingless: {
  60084. height: math.unit(32, "meters"),
  60085. name: "Front (Wingless)",
  60086. image: {
  60087. source: "./media/characters/pierce/front-wingless.svg",
  60088. extra: 1695/1475,
  60089. bottom: 185/1880
  60090. }
  60091. },
  60092. sideWingless: {
  60093. height: math.unit(32, "meters"),
  60094. name: "Side (Wingless)",
  60095. image: {
  60096. source: "./media/characters/pierce/side-wingless.svg",
  60097. extra: 974/859,
  60098. bottom: 43/1017
  60099. }
  60100. },
  60101. maw: {
  60102. height: math.unit(19.3, "meters"),
  60103. name: "Maw",
  60104. image: {
  60105. source: "./media/characters/pierce/maw.svg"
  60106. }
  60107. },
  60108. },
  60109. [
  60110. {
  60111. name: "Small",
  60112. height: math.unit(8.5, "meters")
  60113. },
  60114. {
  60115. name: "Normal",
  60116. height: math.unit(32, "meters"),
  60117. default: true
  60118. },
  60119. ]
  60120. ))
  60121. characterMakers.push(() => makeCharacter(
  60122. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60123. {
  60124. front: {
  60125. height: math.unit(2.3, "meters"),
  60126. weight: math.unit(165, "kg"),
  60127. name: "Front",
  60128. image: {
  60129. source: "./media/characters/shira/front.svg",
  60130. extra: 924/919,
  60131. bottom: 17/941
  60132. },
  60133. form: "cobra",
  60134. default: true
  60135. },
  60136. back: {
  60137. height: math.unit(2.3, "meters"),
  60138. weight: math.unit(165, "kg"),
  60139. name: "Back",
  60140. image: {
  60141. source: "./media/characters/shira/back.svg",
  60142. extra: 928/922,
  60143. bottom: 18/946
  60144. },
  60145. form: "cobra"
  60146. },
  60147. frontLewd: {
  60148. height: math.unit(2.3, "meters"),
  60149. weight: math.unit(165, "kg"),
  60150. name: "Front (Lewd)",
  60151. image: {
  60152. source: "./media/characters/shira/front-lewd.svg",
  60153. extra: 924/919,
  60154. bottom: 17/941
  60155. },
  60156. form: "cobra"
  60157. },
  60158. backLewd: {
  60159. height: math.unit(2.3, "meters"),
  60160. weight: math.unit(165, "kg"),
  60161. name: "Back (Lewd)",
  60162. image: {
  60163. source: "./media/characters/shira/back-lewd.svg",
  60164. extra: 928/922,
  60165. bottom: 18/946
  60166. },
  60167. form: "cobra"
  60168. },
  60169. maw: {
  60170. height: math.unit(1.14, "feet"),
  60171. name: "Maw",
  60172. image: {
  60173. source: "./media/characters/shira/maw.svg"
  60174. },
  60175. form: "cobra"
  60176. },
  60177. magma_front: {
  60178. height: math.unit(2.3, "meters"),
  60179. weight: math.unit(165, "kg"),
  60180. name: "Front",
  60181. image: {
  60182. source: "./media/characters/shira/magma-front.svg",
  60183. extra: 1870/1693,
  60184. bottom: 24/1894
  60185. },
  60186. form: "magma",
  60187. },
  60188. magma_back: {
  60189. height: math.unit(2.3, "meters"),
  60190. weight: math.unit(165, "kg"),
  60191. name: "Back",
  60192. image: {
  60193. source: "./media/characters/shira/magma-back.svg",
  60194. extra: 1918/1756,
  60195. bottom: 46/1964
  60196. },
  60197. form: "magma",
  60198. },
  60199. },
  60200. [
  60201. {
  60202. name: "Incognito",
  60203. height: math.unit(2.3, "meters"),
  60204. allForms: true
  60205. },
  60206. {
  60207. name: "Home Size",
  60208. height: math.unit(150, "meters"),
  60209. default: true,
  60210. allForms: true
  60211. },
  60212. {
  60213. name: "Macro",
  60214. height: math.unit(2, "km"),
  60215. allForms: true
  60216. },
  60217. {
  60218. name: "Mega",
  60219. height: math.unit(30, "km"),
  60220. allForms: true
  60221. },
  60222. {
  60223. name: "Giga",
  60224. height: math.unit(450, "km"),
  60225. allForms: true
  60226. },
  60227. {
  60228. name: "Giga+",
  60229. height: math.unit(3000, "km"),
  60230. allForms: true
  60231. },
  60232. {
  60233. name: "Giga++",
  60234. height: math.unit(6000, "km"),
  60235. allForms: true
  60236. },
  60237. {
  60238. name: "Terra",
  60239. height: math.unit(80000, "km"),
  60240. allForms: true
  60241. },
  60242. {
  60243. name: "Terra+",
  60244. height: math.unit(350000, "km"),
  60245. allForms: true
  60246. },
  60247. {
  60248. name: "Solar",
  60249. height: math.unit(1e6, "km"),
  60250. allForms: true
  60251. },
  60252. ],
  60253. {
  60254. "cobra": {
  60255. name: "Cobra",
  60256. default: true
  60257. },
  60258. "magma": {
  60259. name: "Magma Dragon",
  60260. },
  60261. }
  60262. ))
  60263. characterMakers.push(() => makeCharacter(
  60264. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60265. {
  60266. front: {
  60267. height: math.unit(2, "meters"),
  60268. weight: math.unit(160, "kg"),
  60269. name: "Front",
  60270. image: {
  60271. source: "./media/characters/daxerios/front.svg",
  60272. extra: 1334/1277,
  60273. bottom: 45/1379
  60274. }
  60275. },
  60276. frontLewd: {
  60277. height: math.unit(2, "meters"),
  60278. weight: math.unit(160, "kg"),
  60279. name: "Front (Lewd)",
  60280. image: {
  60281. source: "./media/characters/daxerios/front-lewd.svg",
  60282. extra: 1334/1277,
  60283. bottom: 45/1379
  60284. }
  60285. },
  60286. dick: {
  60287. height: math.unit(2.35, "feet"),
  60288. name: "Dick",
  60289. image: {
  60290. source: "./media/characters/daxerios/dick.svg"
  60291. }
  60292. },
  60293. },
  60294. [
  60295. {
  60296. name: "\"Small\"",
  60297. height: math.unit(5, "meters")
  60298. },
  60299. {
  60300. name: "Original Size",
  60301. height: math.unit(500, "meters"),
  60302. default: true
  60303. },
  60304. {
  60305. name: "Mega",
  60306. height: math.unit(2, "km")
  60307. },
  60308. {
  60309. name: "Mega+",
  60310. height: math.unit(35, "km")
  60311. },
  60312. {
  60313. name: "Giga",
  60314. height: math.unit(250, "km")
  60315. },
  60316. {
  60317. name: "Giga+",
  60318. height: math.unit(3000, "km")
  60319. },
  60320. {
  60321. name: "Terra",
  60322. height: math.unit(25000, "km")
  60323. },
  60324. {
  60325. name: "Terra+",
  60326. height: math.unit(300000, "km")
  60327. },
  60328. {
  60329. name: "Solar",
  60330. height: math.unit(1e6, "km")
  60331. },
  60332. ]
  60333. ))
  60334. characterMakers.push(() => makeCharacter(
  60335. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60336. {
  60337. front: {
  60338. height: math.unit(8 + 4/12, "feet"),
  60339. weight: math.unit(464, "lb"),
  60340. name: "Front",
  60341. image: {
  60342. source: "./media/characters/caveat/front.svg",
  60343. extra: 1861/1678,
  60344. bottom: 40/1901
  60345. }
  60346. },
  60347. },
  60348. [
  60349. {
  60350. name: "Normal",
  60351. height: math.unit(8 + 4/12, "feet"),
  60352. default: true
  60353. },
  60354. ]
  60355. ))
  60356. characterMakers.push(() => makeCharacter(
  60357. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60358. {
  60359. front: {
  60360. height: math.unit(12, "feet"),
  60361. weight: math.unit(1800, "lb"),
  60362. name: "Front",
  60363. image: {
  60364. source: "./media/characters/centbair/front.svg",
  60365. extra: 781/663,
  60366. bottom: 25/806
  60367. }
  60368. },
  60369. frontNsfw: {
  60370. height: math.unit(12, "feet"),
  60371. weight: math.unit(1800, "lb"),
  60372. name: "Front (NSFW)",
  60373. image: {
  60374. source: "./media/characters/centbair/front-nsfw.svg",
  60375. extra: 781/663,
  60376. bottom: 25/806
  60377. }
  60378. },
  60379. back: {
  60380. height: math.unit(12, "feet"),
  60381. weight: math.unit(1800, "lb"),
  60382. name: "Back",
  60383. image: {
  60384. source: "./media/characters/centbair/back.svg",
  60385. extra: 808/761,
  60386. bottom: 19/827
  60387. }
  60388. },
  60389. dick: {
  60390. height: math.unit(6.5, "feet"),
  60391. name: "Dick",
  60392. image: {
  60393. source: "./media/characters/centbair/dick.svg"
  60394. }
  60395. },
  60396. slit: {
  60397. height: math.unit(3.25, "feet"),
  60398. name: "Slit",
  60399. image: {
  60400. source: "./media/characters/centbair/slit.svg"
  60401. }
  60402. },
  60403. },
  60404. [
  60405. {
  60406. name: "Normal",
  60407. height: math.unit(12, "feet"),
  60408. default: true
  60409. },
  60410. ]
  60411. ))
  60412. characterMakers.push(() => makeCharacter(
  60413. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60414. {
  60415. front: {
  60416. height: math.unit(5 + 7/12, "feet"),
  60417. name: "Front",
  60418. image: {
  60419. source: "./media/characters/andy/front.svg",
  60420. extra: 634/588,
  60421. bottom: 36/670
  60422. },
  60423. extraAttributes: {
  60424. "pawLength": {
  60425. name: "Paw Length",
  60426. power: 1,
  60427. type: "length",
  60428. base: math.unit(1, "feet")
  60429. },
  60430. }
  60431. },
  60432. side: {
  60433. height: math.unit(5 + 7/12, "feet"),
  60434. name: "Side",
  60435. image: {
  60436. source: "./media/characters/andy/side.svg",
  60437. extra: 641/596,
  60438. bottom: 34/675
  60439. },
  60440. extraAttributes: {
  60441. "pawLength": {
  60442. name: "Paw Length",
  60443. power: 1,
  60444. type: "length",
  60445. base: math.unit(1, "feet")
  60446. },
  60447. }
  60448. },
  60449. back: {
  60450. height: math.unit(5 + 7/12, "feet"),
  60451. name: "Back",
  60452. image: {
  60453. source: "./media/characters/andy/back.svg",
  60454. extra: 618/583,
  60455. bottom: 39/657
  60456. },
  60457. extraAttributes: {
  60458. "pawLength": {
  60459. name: "Paw Length",
  60460. power: 1,
  60461. type: "length",
  60462. base: math.unit(1, "feet")
  60463. },
  60464. }
  60465. },
  60466. paw: {
  60467. height: math.unit(1.13, "feet"),
  60468. name: "Paw",
  60469. image: {
  60470. source: "./media/characters/andy/paw.svg"
  60471. }
  60472. },
  60473. },
  60474. [
  60475. {
  60476. name: "Micro",
  60477. height: math.unit(4, "inches")
  60478. },
  60479. {
  60480. name: "Normal",
  60481. height: math.unit(5 + 7/12, "feet"),
  60482. default: true
  60483. },
  60484. {
  60485. name: "Macro",
  60486. height: math.unit(390.42, "feet")
  60487. },
  60488. ]
  60489. ))
  60490. characterMakers.push(() => makeCharacter(
  60491. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60492. {
  60493. front: {
  60494. height: math.unit(7, "feet"),
  60495. weight: math.unit(250, "lb"),
  60496. name: "Front",
  60497. image: {
  60498. source: "./media/characters/vix-titan/front.svg",
  60499. extra: 460/428,
  60500. bottom: 15/475
  60501. },
  60502. extraAttributes: {
  60503. "pawWidth": {
  60504. name: "Paw Width",
  60505. power: 1,
  60506. type: "length",
  60507. base: math.unit(0.75, "feet")
  60508. },
  60509. }
  60510. },
  60511. },
  60512. [
  60513. {
  60514. name: "Normal",
  60515. height: math.unit(7, "feet"),
  60516. default: true
  60517. },
  60518. {
  60519. name: "Giant",
  60520. height: math.unit(1500, "feet")
  60521. },
  60522. {
  60523. name: "Mega",
  60524. height: math.unit(10, "miles")
  60525. },
  60526. {
  60527. name: "Giga",
  60528. height: math.unit(150, "miles")
  60529. },
  60530. {
  60531. name: "Tera",
  60532. height: math.unit(144000, "miles")
  60533. },
  60534. ]
  60535. ))
  60536. characterMakers.push(() => makeCharacter(
  60537. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60538. {
  60539. front: {
  60540. height: math.unit(6 + 2/12, "feet"),
  60541. name: "Front",
  60542. image: {
  60543. source: "./media/characters/reiku/front.svg",
  60544. extra: 1910/1757,
  60545. bottom: 103/2013
  60546. },
  60547. extraAttributes: {
  60548. "thighThickness": {
  60549. name: "Thigh Thickness",
  60550. power: 1,
  60551. type: "length",
  60552. base: math.unit(1.12, "feet")
  60553. },
  60554. "assThickness": {
  60555. name: "Ass Thickness",
  60556. power: 1,
  60557. type: "length",
  60558. base: math.unit(1.12*2, "feet")
  60559. },
  60560. }
  60561. },
  60562. side: {
  60563. height: math.unit(6 + 2/12, "feet"),
  60564. name: "Side",
  60565. image: {
  60566. source: "./media/characters/reiku/side.svg",
  60567. extra: 1846/1748,
  60568. bottom: 99/1945
  60569. },
  60570. extraAttributes: {
  60571. "thighThickness": {
  60572. name: "Thigh Thickness",
  60573. power: 1,
  60574. type: "length",
  60575. base: math.unit(1.12, "feet")
  60576. },
  60577. "assThickness": {
  60578. name: "Ass Thickness",
  60579. power: 1,
  60580. type: "length",
  60581. base: math.unit(1.12*2, "feet")
  60582. },
  60583. }
  60584. },
  60585. back: {
  60586. height: math.unit(6 + 2/12, "feet"),
  60587. name: "Back",
  60588. image: {
  60589. source: "./media/characters/reiku/back.svg",
  60590. extra: 1941/1786,
  60591. bottom: 34/1975
  60592. },
  60593. extraAttributes: {
  60594. "thighThickness": {
  60595. name: "Thigh Thickness",
  60596. power: 1,
  60597. type: "length",
  60598. base: math.unit(1.12, "feet")
  60599. },
  60600. "assThickness": {
  60601. name: "Ass Thickness",
  60602. power: 1,
  60603. type: "length",
  60604. base: math.unit(1.12*2, "feet")
  60605. },
  60606. }
  60607. },
  60608. head: {
  60609. height: math.unit(1.8, "feet"),
  60610. name: "Head",
  60611. image: {
  60612. source: "./media/characters/reiku/head.svg"
  60613. }
  60614. },
  60615. tailTop: {
  60616. height: math.unit(8.4, "feet"),
  60617. name: "Tail (Top)",
  60618. image: {
  60619. source: "./media/characters/reiku/tail-top.svg"
  60620. }
  60621. },
  60622. tailBottom: {
  60623. height: math.unit(8.4, "feet"),
  60624. name: "Tail (Bottom)",
  60625. image: {
  60626. source: "./media/characters/reiku/tail-bottom.svg"
  60627. }
  60628. },
  60629. foot: {
  60630. height: math.unit(2.6, "feet"),
  60631. name: "Foot",
  60632. image: {
  60633. source: "./media/characters/reiku/foot.svg"
  60634. }
  60635. },
  60636. footCurled: {
  60637. height: math.unit(2.3, "feet"),
  60638. name: "Foot (Curled)",
  60639. image: {
  60640. source: "./media/characters/reiku/foot-curled.svg"
  60641. }
  60642. },
  60643. footSide: {
  60644. height: math.unit(1.26, "feet"),
  60645. name: "Foot (Side)",
  60646. image: {
  60647. source: "./media/characters/reiku/foot-side.svg"
  60648. }
  60649. },
  60650. },
  60651. [
  60652. {
  60653. name: "Normal",
  60654. height: math.unit(6 + 2/12, "feet"),
  60655. default: true
  60656. },
  60657. ]
  60658. ))
  60659. characterMakers.push(() => makeCharacter(
  60660. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60661. {
  60662. front: {
  60663. height: math.unit(7, "feet"),
  60664. weight: math.unit(500, "kg"),
  60665. name: "Front",
  60666. image: {
  60667. source: "./media/characters/cialda/front.svg",
  60668. extra: 912/745,
  60669. bottom: 55/967
  60670. }
  60671. },
  60672. },
  60673. [
  60674. {
  60675. name: "Normal",
  60676. height: math.unit(7, "feet"),
  60677. default: true
  60678. },
  60679. ]
  60680. ))
  60681. characterMakers.push(() => makeCharacter(
  60682. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60683. {
  60684. side: {
  60685. height: math.unit(6, "feet"),
  60686. weight: math.unit(600, "lb"),
  60687. preyCapacity: math.unit(25, "liters"),
  60688. name: "Side",
  60689. image: {
  60690. source: "./media/characters/darkkin/side.svg",
  60691. extra: 1597/1447,
  60692. bottom: 101/1698
  60693. }
  60694. },
  60695. },
  60696. [
  60697. {
  60698. name: "Canon Height",
  60699. height: math.unit(568, "feet"),
  60700. default: true
  60701. },
  60702. ]
  60703. ))
  60704. characterMakers.push(() => makeCharacter(
  60705. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60706. {
  60707. front: {
  60708. height: math.unit(6, "feet"),
  60709. weight: math.unit(1500, "lb"),
  60710. preyCapacity: math.unit(3, "people"),
  60711. name: "Front",
  60712. image: {
  60713. source: "./media/characters/livnia/front.svg",
  60714. extra: 934/932,
  60715. bottom: 83/1017
  60716. }
  60717. },
  60718. back: {
  60719. height: math.unit(6, "feet"),
  60720. weight: math.unit(1500, "lb"),
  60721. preyCapacity: math.unit(3, "people"),
  60722. name: "Back",
  60723. image: {
  60724. source: "./media/characters/livnia/back.svg",
  60725. extra: 916/915,
  60726. bottom: 58/974
  60727. }
  60728. },
  60729. head: {
  60730. height: math.unit(1.53, "feet"),
  60731. name: "Head",
  60732. image: {
  60733. source: "./media/characters/livnia/head.svg"
  60734. }
  60735. },
  60736. maw: {
  60737. height: math.unit(0.78, "feet"),
  60738. name: "Maw",
  60739. image: {
  60740. source: "./media/characters/livnia/maw.svg"
  60741. }
  60742. },
  60743. genitals: {
  60744. height: math.unit(0.35, "feet"),
  60745. name: "Genitals",
  60746. image: {
  60747. source: "./media/characters/livnia/genitals.svg"
  60748. }
  60749. },
  60750. },
  60751. [
  60752. {
  60753. name: "Normal",
  60754. height: math.unit(1000, "feet"),
  60755. default: true
  60756. },
  60757. ]
  60758. ))
  60759. characterMakers.push(() => makeCharacter(
  60760. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60761. {
  60762. front: {
  60763. height: math.unit(4, "feet"),
  60764. weight: math.unit(73, "lb"),
  60765. name: "Front",
  60766. image: {
  60767. source: "./media/characters/hayaku/front.svg",
  60768. extra: 1011/888,
  60769. bottom: 33/1044
  60770. }
  60771. },
  60772. back: {
  60773. height: math.unit(4, "feet"),
  60774. weight: math.unit(73, "lb"),
  60775. name: "Back",
  60776. image: {
  60777. source: "./media/characters/hayaku/back.svg",
  60778. extra: 1040/930,
  60779. bottom: 20/1060
  60780. }
  60781. },
  60782. },
  60783. [
  60784. {
  60785. name: "Normal",
  60786. height: math.unit(4, "feet"),
  60787. default: true
  60788. },
  60789. ]
  60790. ))
  60791. characterMakers.push(() => makeCharacter(
  60792. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60793. {
  60794. front: {
  60795. height: math.unit(6 + 7/12, "feet"),
  60796. weight: math.unit(300, "lb"),
  60797. name: "Front",
  60798. image: {
  60799. source: "./media/characters/athena-bryzant/front.svg",
  60800. extra: 870/835,
  60801. bottom: 33/903
  60802. }
  60803. },
  60804. back: {
  60805. height: math.unit(6 + 7/12, "feet"),
  60806. weight: math.unit(300, "lb"),
  60807. name: "Back",
  60808. image: {
  60809. source: "./media/characters/athena-bryzant/back.svg",
  60810. extra: 858/823,
  60811. bottom: 30/888
  60812. }
  60813. },
  60814. head: {
  60815. height: math.unit(2.38, "feet"),
  60816. name: "Head",
  60817. image: {
  60818. source: "./media/characters/athena-bryzant/head.svg"
  60819. }
  60820. },
  60821. wings: {
  60822. height: math.unit(2.85, "feet"),
  60823. name: "Wings",
  60824. image: {
  60825. source: "./media/characters/athena-bryzant/wings.svg"
  60826. }
  60827. },
  60828. },
  60829. [
  60830. {
  60831. name: "Normal",
  60832. height: math.unit(6 + 7/12, "feet"),
  60833. default: true
  60834. },
  60835. {
  60836. name: "Big",
  60837. height: math.unit(8, "feet")
  60838. },
  60839. {
  60840. name: "Very Big",
  60841. height: math.unit(11, "feet")
  60842. },
  60843. ]
  60844. ))
  60845. characterMakers.push(() => makeCharacter(
  60846. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60847. {
  60848. side: {
  60849. height: math.unit(3, "meters"),
  60850. weight: math.unit(7500, "kg"),
  60851. preyCapacity: math.unit(1e12, "people"),
  60852. name: "Side",
  60853. image: {
  60854. source: "./media/characters/zel-kesh/side.svg",
  60855. extra: 910/407,
  60856. bottom: 147/1057
  60857. }
  60858. },
  60859. },
  60860. [
  60861. {
  60862. name: "Normal",
  60863. height: math.unit(3, "meters"),
  60864. default: true
  60865. },
  60866. ]
  60867. ))
  60868. characterMakers.push(() => makeCharacter(
  60869. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60870. {
  60871. front: {
  60872. height: math.unit(2, "meters"),
  60873. weight: math.unit(95, "kg"),
  60874. name: "Front",
  60875. image: {
  60876. source: "./media/characters/kane-fox/front.svg",
  60877. extra: 945/888,
  60878. bottom: 27/972
  60879. }
  60880. },
  60881. back: {
  60882. height: math.unit(2, "meters"),
  60883. weight: math.unit(95, "kg"),
  60884. name: "Back",
  60885. image: {
  60886. source: "./media/characters/kane-fox/back.svg",
  60887. extra: 959/914,
  60888. bottom: 15/974
  60889. }
  60890. },
  60891. frontLewd: {
  60892. height: math.unit(2, "meters"),
  60893. weight: math.unit(95, "kg"),
  60894. name: "Front (Lewd)",
  60895. image: {
  60896. source: "./media/characters/kane-fox/front-lewd.svg",
  60897. extra: 945/888,
  60898. bottom: 27/972
  60899. }
  60900. },
  60901. },
  60902. [
  60903. {
  60904. name: "Home Size",
  60905. height: math.unit(2, "meters"),
  60906. default: true
  60907. },
  60908. {
  60909. name: "Macro",
  60910. height: math.unit(200, "meters")
  60911. },
  60912. {
  60913. name: "Small Mega",
  60914. height: math.unit(3, "km")
  60915. },
  60916. {
  60917. name: "Mega",
  60918. height: math.unit(50, "km")
  60919. },
  60920. {
  60921. name: "Giga",
  60922. height: math.unit(200, "km")
  60923. },
  60924. {
  60925. name: "Giga+",
  60926. height: math.unit(2500, "km")
  60927. },
  60928. {
  60929. name: "Terra",
  60930. height: math.unit(70000, "km")
  60931. },
  60932. {
  60933. name: "Terra+",
  60934. height: math.unit(150000, "km")
  60935. },
  60936. {
  60937. name: "Terra++",
  60938. height: math.unit(400000, "km")
  60939. },
  60940. ]
  60941. ))
  60942. characterMakers.push(() => makeCharacter(
  60943. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60944. {
  60945. otter_front: {
  60946. height: math.unit(1.8, "meters"),
  60947. weight: math.unit(90, "kg"),
  60948. name: "Front",
  60949. image: {
  60950. source: "./media/characters/ayranus/otter-front.svg",
  60951. extra: 468/452,
  60952. bottom: 43/511
  60953. },
  60954. form: "otter",
  60955. },
  60956. otter_frontLewd: {
  60957. height: math.unit(1.8, "meters"),
  60958. weight: math.unit(90, "kg"),
  60959. name: "Front (Lewd)",
  60960. image: {
  60961. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60962. extra: 468/452,
  60963. bottom: 43/511
  60964. },
  60965. form: "otter",
  60966. },
  60967. lionbat_front: {
  60968. height: math.unit(1.8, "meters"),
  60969. weight: math.unit(90, "kg"),
  60970. name: "Front (Lewd)",
  60971. image: {
  60972. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60973. extra: 797/740,
  60974. bottom: 78/875
  60975. },
  60976. form: "lionbat",
  60977. },
  60978. paw: {
  60979. height: math.unit(1.5, "feet"),
  60980. name: "Paw",
  60981. image: {
  60982. source: "./media/characters/ayranus/paw.svg"
  60983. },
  60984. },
  60985. },
  60986. [
  60987. {
  60988. name: "Incognito",
  60989. height: math.unit(1.8, "meters"),
  60990. allForms: true
  60991. },
  60992. {
  60993. name: "Macro",
  60994. height: math.unit(60, "meters"),
  60995. allForms: true
  60996. },
  60997. {
  60998. name: "Macro+",
  60999. height: math.unit(200, "meters"),
  61000. allForms: true
  61001. },
  61002. {
  61003. name: "Mega",
  61004. height: math.unit(35, "km"),
  61005. allForms: true
  61006. },
  61007. {
  61008. name: "Giga",
  61009. height: math.unit(220, "km"),
  61010. allForms: true
  61011. },
  61012. {
  61013. name: "Giga+",
  61014. height: math.unit(1500, "km"),
  61015. allForms: true
  61016. },
  61017. {
  61018. name: "Terra",
  61019. height: math.unit(13000, "km"),
  61020. allForms: true
  61021. },
  61022. {
  61023. name: "Terra+",
  61024. height: math.unit(500000, "km"),
  61025. allForms: true
  61026. },
  61027. {
  61028. name: "Galactic",
  61029. height: math.unit(486080, "parsecs"),
  61030. default: true,
  61031. allForms: true
  61032. },
  61033. ],
  61034. {
  61035. "otter": {
  61036. name: "Otter",
  61037. default: true
  61038. },
  61039. "lionbat": {
  61040. name: "Lionbat",
  61041. },
  61042. }
  61043. ))
  61044. characterMakers.push(() => makeCharacter(
  61045. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61046. {
  61047. front: {
  61048. height: math.unit(7 + 4/12, "feet"),
  61049. weight: math.unit(400, "lb"),
  61050. name: "Front",
  61051. image: {
  61052. source: "./media/characters/proxy/front.svg",
  61053. extra: 1605/1542,
  61054. bottom: 55/1660
  61055. }
  61056. },
  61057. side: {
  61058. height: math.unit(7 + 4/12, "feet"),
  61059. weight: math.unit(400, "lb"),
  61060. name: "Side",
  61061. image: {
  61062. source: "./media/characters/proxy/side.svg",
  61063. extra: 794/759,
  61064. bottom: 6/800
  61065. }
  61066. },
  61067. hand: {
  61068. height: math.unit(1.54, "feet"),
  61069. name: "Hand",
  61070. image: {
  61071. source: "./media/characters/proxy/hand.svg"
  61072. }
  61073. },
  61074. paw: {
  61075. height: math.unit(1.53, "feet"),
  61076. name: "Paw",
  61077. image: {
  61078. source: "./media/characters/proxy/paw.svg"
  61079. }
  61080. },
  61081. maw: {
  61082. height: math.unit(1.9, "feet"),
  61083. name: "Maw",
  61084. image: {
  61085. source: "./media/characters/proxy/maw.svg"
  61086. }
  61087. },
  61088. },
  61089. [
  61090. {
  61091. name: "Normal",
  61092. height: math.unit(7 + 4/12, "feet"),
  61093. default: true
  61094. },
  61095. ]
  61096. ))
  61097. characterMakers.push(() => makeCharacter(
  61098. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61099. {
  61100. front: {
  61101. height: math.unit(4, "meters"),
  61102. name: "Front",
  61103. image: {
  61104. source: "./media/characters/crocozilla/front.svg",
  61105. extra: 1790/1742,
  61106. bottom: 78/1868
  61107. }
  61108. },
  61109. },
  61110. [
  61111. {
  61112. name: "Normal",
  61113. height: math.unit(4, "meters"),
  61114. default: true
  61115. },
  61116. ]
  61117. ))
  61118. characterMakers.push(() => makeCharacter(
  61119. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61120. {
  61121. front: {
  61122. height: math.unit(1.8, "meters"),
  61123. weight: math.unit(120, "kg"),
  61124. name: "Front",
  61125. image: {
  61126. source: "./media/characters/kurz/front.svg",
  61127. extra: 1960/1824,
  61128. bottom: 41/2001
  61129. }
  61130. },
  61131. back: {
  61132. height: math.unit(1.8, "meters"),
  61133. weight: math.unit(120, "kg"),
  61134. name: "Back",
  61135. image: {
  61136. source: "./media/characters/kurz/back.svg",
  61137. extra: 1906/1787,
  61138. bottom: 60/1966
  61139. }
  61140. },
  61141. frontLewd: {
  61142. height: math.unit(1.8, "meters"),
  61143. weight: math.unit(120, "kg"),
  61144. name: "Front (Lewd)",
  61145. image: {
  61146. source: "./media/characters/kurz/front-lewd.svg",
  61147. extra: 1960/1824,
  61148. bottom: 41/2001
  61149. }
  61150. },
  61151. maw: {
  61152. height: math.unit(0.69, "meters"),
  61153. name: "Maw",
  61154. image: {
  61155. source: "./media/characters/kurz/maw.svg"
  61156. }
  61157. },
  61158. },
  61159. [
  61160. {
  61161. name: "Original Size",
  61162. height: math.unit(1.8, "meters")
  61163. },
  61164. {
  61165. name: "Incognito Size",
  61166. height: math.unit(2.4, "meters"),
  61167. default: true
  61168. },
  61169. {
  61170. name: "Macro",
  61171. height: math.unit(30, "meters")
  61172. },
  61173. {
  61174. name: "Macro+",
  61175. height: math.unit(250, "meters")
  61176. },
  61177. {
  61178. name: "Mega",
  61179. height: math.unit(2, "km")
  61180. },
  61181. {
  61182. name: "Mega+",
  61183. height: math.unit(35, "km")
  61184. },
  61185. {
  61186. name: "Mega++",
  61187. height: math.unit(75, "km")
  61188. },
  61189. {
  61190. name: "Giga",
  61191. height: math.unit(250, "km")
  61192. },
  61193. {
  61194. name: "Terra",
  61195. height: math.unit(15000, "km")
  61196. },
  61197. {
  61198. name: "Terra+",
  61199. height: math.unit(2250000, "km")
  61200. },
  61201. ]
  61202. ))
  61203. characterMakers.push(() => makeCharacter(
  61204. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61205. {
  61206. front: {
  61207. height: math.unit(16 + 3/12, "feet"),
  61208. weight: math.unit(3575, "lb"),
  61209. name: "Front",
  61210. image: {
  61211. source: "./media/characters/nikita/front.svg",
  61212. extra: 1064/955,
  61213. bottom: 47/1111
  61214. }
  61215. },
  61216. },
  61217. [
  61218. {
  61219. name: "Normal",
  61220. height: math.unit(16 + 3/12, "feet"),
  61221. default: true
  61222. },
  61223. {
  61224. name: "Big",
  61225. height: math.unit(21, "feet")
  61226. },
  61227. {
  61228. name: "Biggest",
  61229. height: math.unit(50, "feet")
  61230. },
  61231. ]
  61232. ))
  61233. characterMakers.push(() => makeCharacter(
  61234. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61235. {
  61236. front: {
  61237. height: math.unit(1.92, "m"),
  61238. weight: math.unit(76, "kg"),
  61239. name: "Front",
  61240. image: {
  61241. source: "./media/characters/kyara/front.svg",
  61242. extra: 1550/1438,
  61243. bottom: 139/1689
  61244. }
  61245. },
  61246. back: {
  61247. height: math.unit(1.92, "m"),
  61248. weight: math.unit(76, "kg"),
  61249. name: "Back",
  61250. image: {
  61251. source: "./media/characters/kyara/back.svg",
  61252. extra: 1523/1427,
  61253. bottom: 83/1606
  61254. }
  61255. },
  61256. head: {
  61257. height: math.unit(1.22, "feet"),
  61258. name: "Head",
  61259. image: {
  61260. source: "./media/characters/kyara/head.svg"
  61261. }
  61262. },
  61263. maw: {
  61264. height: math.unit(0.73, "feet"),
  61265. name: "Maw",
  61266. image: {
  61267. source: "./media/characters/kyara/maw.svg"
  61268. }
  61269. },
  61270. paws: {
  61271. height: math.unit(0.95, "feet"),
  61272. name: "Paws",
  61273. image: {
  61274. source: "./media/characters/kyara/paws.svg"
  61275. }
  61276. },
  61277. },
  61278. [
  61279. {
  61280. name: "Normal",
  61281. height: math.unit(1.92, "meters"),
  61282. default: true
  61283. },
  61284. {
  61285. name: "Mini Macro",
  61286. height: math.unit(192, "meters")
  61287. },
  61288. {
  61289. name: "Macro",
  61290. height: math.unit(480, "meters")
  61291. },
  61292. {
  61293. name: "Mega Macro",
  61294. height: math.unit(1440, "meters")
  61295. },
  61296. ]
  61297. ))
  61298. characterMakers.push(() => makeCharacter(
  61299. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61300. {
  61301. front: {
  61302. height: math.unit(6, "feet"),
  61303. weight: math.unit(160, "lbs"),
  61304. preyCapacity: math.unit(0.05, "people"),
  61305. name: "Front",
  61306. image: {
  61307. source: "./media/characters/layla-amari/front.svg",
  61308. extra: 1922/1723,
  61309. bottom: 90/2012
  61310. }
  61311. },
  61312. back: {
  61313. height: math.unit(6, "feet"),
  61314. weight: math.unit(160, "lbs"),
  61315. preyCapacity: math.unit(0.05, "people"),
  61316. name: "Back",
  61317. image: {
  61318. source: "./media/characters/layla-amari/back.svg",
  61319. extra: 1917/1718,
  61320. bottom: 50/1967
  61321. }
  61322. },
  61323. frontDressed: {
  61324. height: math.unit(6, "feet"),
  61325. weight: math.unit(160, "lbs"),
  61326. preyCapacity: math.unit(0.05, "people"),
  61327. name: "Front (Dressed)",
  61328. image: {
  61329. source: "./media/characters/layla-amari/front-dressed.svg",
  61330. extra: 1922/1723,
  61331. bottom: 90/2012
  61332. }
  61333. },
  61334. face: {
  61335. height: math.unit(0.93, "feet"),
  61336. name: "Face",
  61337. image: {
  61338. source: "./media/characters/layla-amari/face.svg"
  61339. }
  61340. },
  61341. hand: {
  61342. height: math.unit(0.66 , "feet"),
  61343. name: "Hand",
  61344. image: {
  61345. source: "./media/characters/layla-amari/hand.svg"
  61346. }
  61347. },
  61348. foot: {
  61349. height: math.unit(1, "feet"),
  61350. name: "Foot",
  61351. image: {
  61352. source: "./media/characters/layla-amari/foot.svg"
  61353. }
  61354. },
  61355. necklace: {
  61356. height: math.unit(0.32, "feet"),
  61357. name: "Necklace",
  61358. image: {
  61359. source: "./media/characters/layla-amari/necklace.svg"
  61360. }
  61361. },
  61362. nipple: {
  61363. height: math.unit(0.2, "feet"),
  61364. name: "Nipple",
  61365. image: {
  61366. source: "./media/characters/layla-amari/nipple.svg"
  61367. }
  61368. },
  61369. slit: {
  61370. height: math.unit(0.26, "feet"),
  61371. name: "Slit",
  61372. image: {
  61373. source: "./media/characters/layla-amari/slit.svg"
  61374. }
  61375. },
  61376. },
  61377. [
  61378. {
  61379. name: "Natural",
  61380. height: math.unit(825, "feet"),
  61381. default: true
  61382. },
  61383. {
  61384. name: "Enhanced",
  61385. height: math.unit(8250, "feet")
  61386. },
  61387. {
  61388. name: "Apparent Size",
  61389. height: math.unit(9.04363e+8, "meters")
  61390. },
  61391. ]
  61392. ))
  61393. characterMakers.push(() => makeCharacter(
  61394. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61395. {
  61396. front: {
  61397. height: math.unit(1.3, "meters"),
  61398. name: "Front",
  61399. image: {
  61400. source: "./media/characters/percy/front.svg",
  61401. extra: 1444/1289,
  61402. bottom: 54/1498
  61403. }
  61404. },
  61405. },
  61406. [
  61407. {
  61408. name: "Normal",
  61409. height: math.unit(1.3, "meters"),
  61410. default: true
  61411. },
  61412. ]
  61413. ))
  61414. characterMakers.push(() => makeCharacter(
  61415. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61416. {
  61417. side: {
  61418. height: math.unit(10, "meters"),
  61419. name: "Side",
  61420. image: {
  61421. source: "./media/characters/grev/side.svg",
  61422. extra: 653/266,
  61423. bottom: 77/730
  61424. }
  61425. },
  61426. head: {
  61427. height: math.unit(16.2, "m"),
  61428. name: "Head",
  61429. image: {
  61430. source: "./media/characters/grev/head.svg"
  61431. }
  61432. },
  61433. dick: {
  61434. height: math.unit(2.8135932034, "m"),
  61435. name: "Dick",
  61436. image: {
  61437. source: "./media/characters/grev/dick.svg"
  61438. }
  61439. },
  61440. },
  61441. [
  61442. {
  61443. name: "Friend-Sized",
  61444. height: math.unit(80, "cm")
  61445. },
  61446. {
  61447. name: "Normal",
  61448. height: math.unit(10, "meters"),
  61449. default: true
  61450. },
  61451. {
  61452. name: "Macro",
  61453. height: math.unit(200, "meters")
  61454. },
  61455. ]
  61456. ))
  61457. characterMakers.push(() => makeCharacter(
  61458. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61459. {
  61460. front: {
  61461. height: math.unit(19.75, "feet"),
  61462. weight: math.unit(20000, "lb"),
  61463. name: "Front",
  61464. image: {
  61465. source: "./media/characters/azuuca/front.svg",
  61466. extra: 1593/1511,
  61467. bottom: 55/1648
  61468. }
  61469. },
  61470. },
  61471. [
  61472. {
  61473. name: "Normal",
  61474. height: math.unit(19.75, "feet"),
  61475. default: true
  61476. },
  61477. ]
  61478. ))
  61479. characterMakers.push(() => makeCharacter(
  61480. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61481. {
  61482. front: {
  61483. height: math.unit(15, "feet"),
  61484. weight: math.unit(1500, "lb"),
  61485. name: "Front",
  61486. image: {
  61487. source: "./media/characters/valuria/front.svg",
  61488. extra: 1588/1486,
  61489. bottom: 31/1619
  61490. }
  61491. },
  61492. },
  61493. [
  61494. {
  61495. name: "Normal",
  61496. height: math.unit(15, "feet"),
  61497. default: true
  61498. },
  61499. {
  61500. name: "Small",
  61501. height: math.unit(500, "feet")
  61502. },
  61503. {
  61504. name: "Macro",
  61505. height: math.unit(4000, "feet")
  61506. },
  61507. {
  61508. name: "Mega Macro",
  61509. height: math.unit(2000, "miles")
  61510. },
  61511. {
  61512. name: "Giga Macro",
  61513. height: math.unit(3e6, "miles")
  61514. },
  61515. ]
  61516. ))
  61517. characterMakers.push(() => makeCharacter(
  61518. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61519. {
  61520. front: {
  61521. height: math.unit(3500, "solarradii"),
  61522. name: "Front",
  61523. image: {
  61524. source: "./media/characters/terigaia/front.svg",
  61525. extra: 1531/1451,
  61526. bottom: 98/1629
  61527. }
  61528. },
  61529. },
  61530. [
  61531. {
  61532. name: "Normal",
  61533. height: math.unit(3500, "solarradii"),
  61534. default: true
  61535. },
  61536. ]
  61537. ))
  61538. characterMakers.push(() => makeCharacter(
  61539. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61540. {
  61541. front: {
  61542. height: math.unit(9.34, "feet"),
  61543. weight: math.unit(600, "lb"),
  61544. name: "Front",
  61545. image: {
  61546. source: "./media/characters/blair-blaziken/front.svg",
  61547. extra: 1557/1462,
  61548. bottom: 55/1612
  61549. }
  61550. },
  61551. },
  61552. [
  61553. {
  61554. name: "Normal",
  61555. height: math.unit(9.34, "feet"),
  61556. default: true
  61557. },
  61558. ]
  61559. ))
  61560. characterMakers.push(() => makeCharacter(
  61561. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61562. {
  61563. pistrogre_front: {
  61564. height: math.unit(10, "feet"),
  61565. weight: math.unit(10, "tons"),
  61566. name: "Front",
  61567. image: {
  61568. source: "./media/characters/braxia/pistrogre-front.svg",
  61569. extra: 1531/1334,
  61570. bottom: 114/1645
  61571. },
  61572. form: "pistrogre",
  61573. default: true
  61574. },
  61575. human_front: {
  61576. height: math.unit(10, "feet"),
  61577. weight: math.unit(10, "tons"),
  61578. name: "Front",
  61579. image: {
  61580. source: "./media/characters/braxia/human-front.svg",
  61581. extra: 1574/1501,
  61582. bottom: 37/1611
  61583. },
  61584. form: "human",
  61585. default: true
  61586. },
  61587. },
  61588. [
  61589. {
  61590. name: "Normal",
  61591. height: math.unit(10, "feet"),
  61592. default: true,
  61593. allForms: true
  61594. },
  61595. {
  61596. name: "Macro",
  61597. height: math.unit(1000, "feet"),
  61598. allForms: true
  61599. },
  61600. {
  61601. name: "Mega Macro",
  61602. height: math.unit(100, "miles"),
  61603. allForms: true
  61604. },
  61605. {
  61606. name: "Cosmic",
  61607. height: math.unit(1000000, "lightyears"),
  61608. allForms: true
  61609. },
  61610. {
  61611. name: "ϐѮԆԬӁꭍϞԢ",
  61612. height: math.unit(1000, "multiverses"),
  61613. allForms: true
  61614. },
  61615. ],
  61616. {
  61617. "pistrogre": {
  61618. name: "Pistrogre",
  61619. default: true
  61620. },
  61621. "human": {
  61622. name: "Human",
  61623. },
  61624. }
  61625. ))
  61626. characterMakers.push(() => makeCharacter(
  61627. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61628. {
  61629. front: {
  61630. height: math.unit(6 + 1/12, "feet"),
  61631. weight: math.unit(280, "lb"),
  61632. name: "Front",
  61633. image: {
  61634. source: "./media/characters/kiriga-yato/front.svg",
  61635. extra: 445/394,
  61636. bottom: 11/456
  61637. }
  61638. },
  61639. },
  61640. [
  61641. {
  61642. name: "Descended",
  61643. height: math.unit(3, "feet")
  61644. },
  61645. {
  61646. name: "Average",
  61647. height: math.unit(6 + 1/12, "feet"),
  61648. default: true
  61649. },
  61650. {
  61651. name: "Ascended",
  61652. height: math.unit(9 + 2/12, "feet")
  61653. },
  61654. ]
  61655. ))
  61656. characterMakers.push(() => makeCharacter(
  61657. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61658. {
  61659. front: {
  61660. height: math.unit(6, "feet"),
  61661. weight: math.unit(150, "lb"),
  61662. name: "Front",
  61663. image: {
  61664. source: "./media/characters/kylie/front.svg",
  61665. extra: 1114/1046,
  61666. bottom: 65/1179
  61667. },
  61668. extraAttributes: {
  61669. "hoofSize": {
  61670. name: "Hoof Size",
  61671. power: 2,
  61672. type: "area",
  61673. base: math.unit(0.034, "m^2")
  61674. },
  61675. "footSize": {
  61676. name: "Foot Size",
  61677. power: 2,
  61678. type: "area",
  61679. base: math.unit(0.75, "m^2")
  61680. },
  61681. }
  61682. },
  61683. side: {
  61684. height: math.unit(6, "feet"),
  61685. weight: math.unit(150, "lb"),
  61686. name: "Side",
  61687. image: {
  61688. source: "./media/characters/kylie/side.svg",
  61689. extra: 1178/1110,
  61690. bottom: 21/1199
  61691. },
  61692. extraAttributes: {
  61693. "hoofSize": {
  61694. name: "Hoof Size",
  61695. power: 2,
  61696. type: "area",
  61697. base: math.unit(0.034, "m^2")
  61698. },
  61699. "footSize": {
  61700. name: "Foot Size",
  61701. power: 2,
  61702. type: "area",
  61703. base: math.unit(0.75, "m^2")
  61704. },
  61705. }
  61706. },
  61707. back: {
  61708. height: math.unit(6, "feet"),
  61709. weight: math.unit(150, "lb"),
  61710. name: "Back",
  61711. image: {
  61712. source: "./media/characters/kylie/back.svg",
  61713. extra: 1115/1047,
  61714. bottom: 66/1181
  61715. },
  61716. extraAttributes: {
  61717. "hoofSize": {
  61718. name: "Hoof Size",
  61719. power: 2,
  61720. type: "area",
  61721. base: math.unit(0.034, "m^2")
  61722. },
  61723. "footSize": {
  61724. name: "Foot Size",
  61725. power: 2,
  61726. type: "area",
  61727. base: math.unit(0.75, "m^2")
  61728. },
  61729. }
  61730. },
  61731. head: {
  61732. height: math.unit(1.85, "feet"),
  61733. name: "Head",
  61734. image: {
  61735. source: "./media/characters/kylie/head.svg"
  61736. }
  61737. },
  61738. },
  61739. [
  61740. {
  61741. name: "Normal",
  61742. height: math.unit(90, "meters"),
  61743. default: true
  61744. },
  61745. ]
  61746. ))
  61747. characterMakers.push(() => makeCharacter(
  61748. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61749. {
  61750. front: {
  61751. height: math.unit(245, "feet"),
  61752. weight: math.unit(400000, "lb"),
  61753. name: "Front",
  61754. image: {
  61755. source: "./media/characters/sabado/front.svg",
  61756. extra: 1309/1164,
  61757. bottom: 29/1338
  61758. }
  61759. },
  61760. },
  61761. [
  61762. {
  61763. name: "Normal",
  61764. height: math.unit(245, "feet"),
  61765. default: true
  61766. },
  61767. ]
  61768. ))
  61769. characterMakers.push(() => makeCharacter(
  61770. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61771. {
  61772. shark_front: {
  61773. height: math.unit(2, "meters"),
  61774. weight: math.unit(200, "kg"),
  61775. name: "Front",
  61776. image: {
  61777. source: "./media/characters/zechal/shark-front.svg",
  61778. extra: 969/925,
  61779. bottom: 74/1043
  61780. },
  61781. form: "shark",
  61782. },
  61783. shark_back: {
  61784. height: math.unit(2, "meters"),
  61785. weight: math.unit(200, "kg"),
  61786. name: "Back",
  61787. image: {
  61788. source: "./media/characters/zechal/shark-back.svg",
  61789. extra: 994/949,
  61790. bottom: 176/1170
  61791. },
  61792. form: "shark",
  61793. },
  61794. shark_frontLewd: {
  61795. height: math.unit(2, "meters"),
  61796. weight: math.unit(200, "kg"),
  61797. name: "Front (Lewd)",
  61798. image: {
  61799. source: "./media/characters/zechal/shark-front-lewd.svg",
  61800. extra: 969/925,
  61801. bottom: 74/1043
  61802. },
  61803. form: "shark",
  61804. },
  61805. shark_side: {
  61806. height: math.unit(1.56, "meters"),
  61807. weight: math.unit(200, "kg"),
  61808. name: "Side",
  61809. image: {
  61810. source: "./media/characters/zechal/shark-side.svg"
  61811. },
  61812. form: "shark",
  61813. },
  61814. dragon_front: {
  61815. height: math.unit(2, "meters"),
  61816. weight: math.unit(200, "kg"),
  61817. name: "Front",
  61818. image: {
  61819. source: "./media/characters/zechal/dragon-front.svg",
  61820. extra: 1041/925,
  61821. bottom: 74/1115
  61822. },
  61823. form: "dragon",
  61824. },
  61825. dragon_back: {
  61826. height: math.unit(2, "meters"),
  61827. weight: math.unit(200, "kg"),
  61828. name: "Back",
  61829. image: {
  61830. source: "./media/characters/zechal/dragon-back.svg",
  61831. extra: 1061/949,
  61832. bottom: 176/1237
  61833. },
  61834. form: "dragon",
  61835. },
  61836. dragon_frontLewd: {
  61837. height: math.unit(2, "meters"),
  61838. weight: math.unit(200, "kg"),
  61839. name: "Front (Lewd)",
  61840. image: {
  61841. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61842. extra: 1041/925,
  61843. bottom: 74/1115
  61844. },
  61845. form: "dragon",
  61846. },
  61847. dragon_side: {
  61848. height: math.unit(1.56, "meters"),
  61849. weight: math.unit(200, "kg"),
  61850. name: "Side",
  61851. image: {
  61852. source: "./media/characters/zechal/dragon-side.svg"
  61853. },
  61854. form: "dragon",
  61855. },
  61856. foot: {
  61857. height: math.unit(0.5, "meters"),
  61858. name: "Foot",
  61859. image: {
  61860. source: "./media/characters/zechal/foot.svg"
  61861. }
  61862. },
  61863. sheathFront: {
  61864. height: math.unit(0.45, "meters"),
  61865. name: "Sheath (Front)",
  61866. image: {
  61867. source: "./media/characters/zechal/sheath-front.svg"
  61868. }
  61869. },
  61870. sheathSide: {
  61871. height: math.unit(0.45, "meters"),
  61872. name: "Sheath (Side)",
  61873. image: {
  61874. source: "./media/characters/zechal/sheath-side.svg"
  61875. }
  61876. },
  61877. },
  61878. [
  61879. {
  61880. name: "Incognito",
  61881. height: math.unit(2, "meters"),
  61882. allForms: true
  61883. },
  61884. {
  61885. name: "Small Rampage",
  61886. height: math.unit(25, "meters"),
  61887. allForms: true
  61888. },
  61889. {
  61890. name: "Home Size",
  61891. height: math.unit(250, "meters"),
  61892. allForms: true,
  61893. default: true
  61894. },
  61895. {
  61896. name: "Macro+",
  61897. height: math.unit(700, "meters"),
  61898. allForms: true
  61899. },
  61900. {
  61901. name: "Small Mega",
  61902. height: math.unit(3, "km"),
  61903. allForms: true
  61904. },
  61905. {
  61906. name: "Mega",
  61907. height: math.unit(15, "km"),
  61908. allForms: true
  61909. },
  61910. {
  61911. name: "Giga",
  61912. height: math.unit(300, "km"),
  61913. allForms: true
  61914. },
  61915. {
  61916. name: "Giga+",
  61917. height: math.unit(1750, "km"),
  61918. allForms: true
  61919. },
  61920. {
  61921. name: "Continental",
  61922. height: math.unit(5000, "km"),
  61923. allForms: true
  61924. },
  61925. {
  61926. name: "Terra",
  61927. height: math.unit(20000, "km"),
  61928. allForms: true
  61929. },
  61930. {
  61931. name: "Terra+",
  61932. height: math.unit(300000, "km"),
  61933. allForms: true
  61934. },
  61935. {
  61936. name: "Solar",
  61937. height: math.unit(40000000, "km"),
  61938. allForms: true
  61939. },
  61940. {
  61941. name: "Galactic",
  61942. height: math.unit(810133, "parsecs"),
  61943. allForms: true
  61944. },
  61945. {
  61946. name: "Universal",
  61947. height: math.unit(25, "universes"),
  61948. allForms: true
  61949. },
  61950. ],
  61951. {
  61952. "shark": {
  61953. name: "Shark",
  61954. default: true
  61955. },
  61956. "dragon": {
  61957. name: "Dragon",
  61958. },
  61959. }
  61960. ))
  61961. characterMakers.push(() => makeCharacter(
  61962. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61963. {
  61964. front: {
  61965. height: math.unit(2.2, "meters"),
  61966. weight: math.unit(150, "kg"),
  61967. name: "Front",
  61968. image: {
  61969. source: "./media/characters/sergis/front.svg",
  61970. extra: 1314/1312,
  61971. bottom: 112/1426
  61972. }
  61973. },
  61974. back: {
  61975. height: math.unit(2.2, "meters"),
  61976. weight: math.unit(150, "kg"),
  61977. name: "Back",
  61978. image: {
  61979. source: "./media/characters/sergis/back.svg",
  61980. extra: 1335/1333,
  61981. bottom: 19/1354
  61982. }
  61983. },
  61984. frontLewd: {
  61985. height: math.unit(2.2, "meters"),
  61986. weight: math.unit(150, "kg"),
  61987. name: "Front (Lewd)",
  61988. image: {
  61989. source: "./media/characters/sergis/front-lewd.svg",
  61990. extra: 1314/1312,
  61991. bottom: 112/1426
  61992. }
  61993. },
  61994. frontDressed: {
  61995. height: math.unit(2.2, "meters"),
  61996. weight: math.unit(150, "kg"),
  61997. name: "Front (Dressed)",
  61998. image: {
  61999. source: "./media/characters/sergis/front-dressed.svg",
  62000. extra: 1330/1328,
  62001. bottom: 95/1425
  62002. }
  62003. },
  62004. frontDressedLewd: {
  62005. height: math.unit(2.2, "meters"),
  62006. weight: math.unit(150, "kg"),
  62007. name: "Front (Dressed, Lewd)",
  62008. image: {
  62009. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62010. extra: 1330/1328,
  62011. bottom: 95/1425
  62012. }
  62013. },
  62014. maw: {
  62015. height: math.unit(0.48, "meters"),
  62016. name: "Maw",
  62017. image: {
  62018. source: "./media/characters/sergis/maw.svg"
  62019. }
  62020. },
  62021. sheath: {
  62022. height: math.unit(0.38, "meters"),
  62023. name: "Sheath",
  62024. image: {
  62025. source: "./media/characters/sergis/sheath.svg"
  62026. }
  62027. },
  62028. },
  62029. [
  62030. {
  62031. name: "Incognito Size",
  62032. height: math.unit(2.2, "meters")
  62033. },
  62034. {
  62035. name: "Small Macro",
  62036. height: math.unit(40, "meters")
  62037. },
  62038. {
  62039. name: "Macro",
  62040. height: math.unit(150, "meters")
  62041. },
  62042. {
  62043. name: "Macro+",
  62044. height: math.unit(300, "meters")
  62045. },
  62046. {
  62047. name: "Mega",
  62048. height: math.unit(2.5, "km")
  62049. },
  62050. {
  62051. name: "Mega+",
  62052. height: math.unit(30, "km")
  62053. },
  62054. {
  62055. name: "Home Size",
  62056. height: math.unit(300, "km"),
  62057. default: true
  62058. },
  62059. {
  62060. name: "Giga+",
  62061. height: math.unit(1000, "km")
  62062. },
  62063. {
  62064. name: "Giga++",
  62065. height: math.unit(6000, "km")
  62066. },
  62067. {
  62068. name: "Terra",
  62069. height: math.unit(70000, "km")
  62070. },
  62071. {
  62072. name: "Terra+",
  62073. height: math.unit(200000, "km")
  62074. },
  62075. {
  62076. name: "Galactic",
  62077. height: math.unit(634200, "lightyears")
  62078. },
  62079. ]
  62080. ))
  62081. characterMakers.push(() => makeCharacter(
  62082. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62083. {
  62084. standard: {
  62085. height: math.unit(1 + 5/12, "feet"),
  62086. name: "Standard",
  62087. image: {
  62088. source: "./media/characters/spade/standard.svg",
  62089. extra: 1794/1703,
  62090. bottom: 115/1909
  62091. }
  62092. },
  62093. disguised: {
  62094. height: math.unit(1 + 5/12, "feet"),
  62095. name: "Disguised",
  62096. image: {
  62097. source: "./media/characters/spade/disguised.svg",
  62098. extra: 1794/1700,
  62099. bottom: 98/1892
  62100. }
  62101. },
  62102. },
  62103. [
  62104. {
  62105. name: "Normal",
  62106. height: math.unit(1 + 5/12, "feet"),
  62107. default: true
  62108. },
  62109. ]
  62110. ))
  62111. characterMakers.push(() => makeCharacter(
  62112. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62113. {
  62114. frontNsfw: {
  62115. height: math.unit(5, "meters"),
  62116. weight: math.unit(2000, "kg"),
  62117. preyCapacity: math.unit(5, "people"),
  62118. name: "Front (NSFW)",
  62119. image: {
  62120. source: "./media/characters/zeanlain/front-nsfw.svg",
  62121. extra: 1087/938,
  62122. bottom: 93/1180
  62123. },
  62124. extraAttributes: {
  62125. "wingspan": {
  62126. name: "Wingspan",
  62127. power: 1,
  62128. type: "length",
  62129. base: math.unit(10, "meters")
  62130. },
  62131. "footSize": {
  62132. name: "Foot Size",
  62133. power: 1,
  62134. type: "length",
  62135. base: math.unit(0.68, "meters")
  62136. },
  62137. "cockLength": {
  62138. name: "Cock Length",
  62139. power: 1,
  62140. type: "length",
  62141. base: math.unit(1.69, "meters")
  62142. },
  62143. "ballVolume": {
  62144. name: "Ball Volume",
  62145. power: 3,
  62146. type: "volume",
  62147. base: math.unit(0.028, "m^3")
  62148. },
  62149. }
  62150. },
  62151. front: {
  62152. height: math.unit(5, "meters"),
  62153. weight: math.unit(2000, "kg"),
  62154. preyCapacity: math.unit(3, "people"),
  62155. name: "Front",
  62156. image: {
  62157. source: "./media/characters/zeanlain/front.svg",
  62158. extra: 1087/938,
  62159. bottom: 93/1180
  62160. },
  62161. extraAttributes: {
  62162. "wingspan": {
  62163. name: "Wingspan",
  62164. power: 1,
  62165. type: "length",
  62166. base: math.unit(10, "meters")
  62167. },
  62168. "footSize": {
  62169. name: "Foot Size",
  62170. power: 1,
  62171. type: "length",
  62172. base: math.unit(0.68, "meters")
  62173. },
  62174. }
  62175. },
  62176. },
  62177. [
  62178. {
  62179. name: "Normal",
  62180. height: math.unit(5, "meters"),
  62181. default: true
  62182. },
  62183. ]
  62184. ))
  62185. characterMakers.push(() => makeCharacter(
  62186. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62187. {
  62188. front: {
  62189. height: math.unit(10, "meters"),
  62190. weight: math.unit(250000, "kg"),
  62191. name: "Front",
  62192. image: {
  62193. source: "./media/characters/airamis/front.svg",
  62194. extra: 865/835,
  62195. bottom: 13/878
  62196. }
  62197. },
  62198. },
  62199. [
  62200. {
  62201. name: "Normal",
  62202. height: math.unit(10, "meters"),
  62203. default: true
  62204. },
  62205. ]
  62206. ))
  62207. characterMakers.push(() => makeCharacter(
  62208. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62209. {
  62210. front: {
  62211. height: math.unit(3 + 3/12, "feet"),
  62212. weight: math.unit(75, "lb"),
  62213. name: "Front",
  62214. image: {
  62215. source: "./media/characters/corra-tourmaline/front.svg",
  62216. extra: 1037/864,
  62217. bottom: 39/1076
  62218. }
  62219. },
  62220. back: {
  62221. height: math.unit(3 + 3/12, "feet"),
  62222. weight: math.unit(75, "lb"),
  62223. name: "Back",
  62224. image: {
  62225. source: "./media/characters/corra-tourmaline/back.svg",
  62226. extra: 1022/849,
  62227. bottom: 26/1048
  62228. }
  62229. },
  62230. dressed: {
  62231. height: math.unit(3 + 3/12, "feet"),
  62232. weight: math.unit(75, "lb"),
  62233. name: "Dressed",
  62234. image: {
  62235. source: "./media/characters/corra-tourmaline/dressed.svg",
  62236. extra: 1037/864,
  62237. bottom: 39/1076
  62238. }
  62239. },
  62240. beans: {
  62241. height: math.unit(0.37, "feet"),
  62242. name: "Beans",
  62243. image: {
  62244. source: "./media/characters/corra-tourmaline/beans.svg"
  62245. }
  62246. },
  62247. },
  62248. [
  62249. {
  62250. name: "Normal",
  62251. height: math.unit(3 + 3/12, "feet"),
  62252. default: true
  62253. },
  62254. {
  62255. name: "Macro",
  62256. height: math.unit(32, "feet")
  62257. },
  62258. ]
  62259. ))
  62260. characterMakers.push(() => makeCharacter(
  62261. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62262. {
  62263. front: {
  62264. height: math.unit(6 + 2/12, "feet"),
  62265. weight: math.unit(203, "lb"),
  62266. name: "Front",
  62267. image: {
  62268. source: "./media/characters/maki-kawa/front.svg",
  62269. extra: 950/890,
  62270. bottom: 62/1012
  62271. }
  62272. },
  62273. back: {
  62274. height: math.unit(6 + 2/12, "feet"),
  62275. weight: math.unit(203, "lb"),
  62276. name: "Back",
  62277. image: {
  62278. source: "./media/characters/maki-kawa/back.svg",
  62279. extra: 953/878,
  62280. bottom: 49/1002
  62281. }
  62282. },
  62283. frontBarista: {
  62284. height: math.unit(6 + 2/12, "feet"),
  62285. weight: math.unit(203, "lb"),
  62286. name: "Front (Barista)",
  62287. image: {
  62288. source: "./media/characters/maki-kawa/front-barista.svg",
  62289. extra: 943/883,
  62290. bottom: 69/1012
  62291. }
  62292. },
  62293. backBarista: {
  62294. height: math.unit(6 + 2/12, "feet"),
  62295. weight: math.unit(203, "lb"),
  62296. name: "Back (Barista)",
  62297. image: {
  62298. source: "./media/characters/maki-kawa/back-barista.svg",
  62299. extra: 953/878,
  62300. bottom: 49/1002
  62301. }
  62302. },
  62303. frontWrestler: {
  62304. height: math.unit(6 + 2/12, "feet"),
  62305. weight: math.unit(203, "lb"),
  62306. name: "Front (Wrestler)",
  62307. image: {
  62308. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62309. extra: 950/890,
  62310. bottom: 62/1012
  62311. }
  62312. },
  62313. backWrestler: {
  62314. height: math.unit(6 + 2/12, "feet"),
  62315. weight: math.unit(203, "lb"),
  62316. name: "Back (Wrestler)",
  62317. image: {
  62318. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62319. extra: 953/878,
  62320. bottom: 49/1002
  62321. }
  62322. },
  62323. headFront: {
  62324. height: math.unit(1.64, "feet"),
  62325. name: "Head (Front)",
  62326. image: {
  62327. source: "./media/characters/maki-kawa/head-front.svg"
  62328. }
  62329. },
  62330. headSide: {
  62331. height: math.unit(1.59, "feet"),
  62332. name: "Head (Side)",
  62333. image: {
  62334. source: "./media/characters/maki-kawa/head-side.svg"
  62335. }
  62336. },
  62337. paw: {
  62338. height: math.unit(0.9, "feet"),
  62339. name: "Paw",
  62340. image: {
  62341. source: "./media/characters/maki-kawa/paw.svg"
  62342. }
  62343. },
  62344. },
  62345. [
  62346. {
  62347. name: "Normal",
  62348. height: math.unit(6 + 2/12, "feet"),
  62349. default: true
  62350. },
  62351. {
  62352. name: "Macro",
  62353. height: math.unit(617, "feet")
  62354. },
  62355. ]
  62356. ))
  62357. characterMakers.push(() => makeCharacter(
  62358. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62359. {
  62360. front: {
  62361. height: math.unit(10, "feet"),
  62362. weight: math.unit(1500, "lb"),
  62363. name: "Front",
  62364. image: {
  62365. source: "./media/characters/lennox/front.svg",
  62366. extra: 1623/1496,
  62367. bottom: 18/1641
  62368. }
  62369. },
  62370. back: {
  62371. height: math.unit(10, "feet"),
  62372. weight: math.unit(1500, "lb"),
  62373. name: "Back",
  62374. image: {
  62375. source: "./media/characters/lennox/back.svg",
  62376. extra: 1641/1481,
  62377. bottom: 13/1654
  62378. }
  62379. },
  62380. maw: {
  62381. height: math.unit(2.94, "feet"),
  62382. name: "Maw",
  62383. image: {
  62384. source: "./media/characters/lennox/maw.svg"
  62385. }
  62386. },
  62387. },
  62388. [
  62389. {
  62390. name: "Micro",
  62391. height: math.unit(1, "inch")
  62392. },
  62393. {
  62394. name: "Normal",
  62395. height: math.unit(10, "feet"),
  62396. default: true
  62397. },
  62398. {
  62399. name: "Macro",
  62400. height: math.unit(200, "feet")
  62401. },
  62402. ]
  62403. ))
  62404. characterMakers.push(() => makeCharacter(
  62405. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62406. {
  62407. frontDressed: {
  62408. height: math.unit(15 + 7/12, "feet"),
  62409. weight: math.unit(5000, "lb"),
  62410. name: "Front (Dressed)",
  62411. image: {
  62412. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62413. extra: 1136/1023,
  62414. bottom: 51/1187
  62415. }
  62416. },
  62417. backDressed: {
  62418. height: math.unit(15 + 7/12, "feet"),
  62419. weight: math.unit(5000, "lb"),
  62420. name: "Back (Dressed)",
  62421. image: {
  62422. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62423. extra: 2359/2143,
  62424. bottom: 103/2462
  62425. }
  62426. },
  62427. front: {
  62428. height: math.unit(15 + 7/12, "feet"),
  62429. weight: math.unit(5000, "lb"),
  62430. name: "Front",
  62431. image: {
  62432. source: "./media/characters/vyse-iron-thunder/front.svg",
  62433. extra: 1136/1023,
  62434. bottom: 51/1187
  62435. }
  62436. },
  62437. hand: {
  62438. height: math.unit(2.36, "feet"),
  62439. name: "Hand",
  62440. image: {
  62441. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62442. }
  62443. },
  62444. foot: {
  62445. height: math.unit(1.72, "feet"),
  62446. name: "Foot",
  62447. image: {
  62448. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62449. }
  62450. },
  62451. mouth: {
  62452. height: math.unit(2, "feet"),
  62453. name: "Mouth",
  62454. image: {
  62455. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62456. }
  62457. },
  62458. eye: {
  62459. height: math.unit(0.58, "feet"),
  62460. name: "Eye",
  62461. image: {
  62462. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62463. }
  62464. },
  62465. },
  62466. [
  62467. {
  62468. name: "Normal",
  62469. height: math.unit(15 + 7/12, "feet"),
  62470. default: true
  62471. },
  62472. {
  62473. name: "Macro",
  62474. height: math.unit(157, "feet")
  62475. },
  62476. {
  62477. name: "Macro+",
  62478. height: math.unit(1570, "feet")
  62479. },
  62480. {
  62481. name: "Macro++",
  62482. height: math.unit(15700, "feet")
  62483. },
  62484. {
  62485. name: "Macro+++",
  62486. height: math.unit(157000, "feet")
  62487. },
  62488. {
  62489. name: "Macro++++",
  62490. height: math.unit(1570000, "feet")
  62491. },
  62492. ]
  62493. ))
  62494. characterMakers.push(() => makeCharacter(
  62495. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62496. {
  62497. side: {
  62498. height: math.unit(6, "feet"),
  62499. weight: math.unit(115, "lb"),
  62500. name: "Side",
  62501. image: {
  62502. source: "./media/characters/moonbeam/side.svg",
  62503. extra: 839/485,
  62504. bottom: 60/899
  62505. }
  62506. },
  62507. },
  62508. [
  62509. {
  62510. name: "Normal",
  62511. height: math.unit(6, "feet"),
  62512. default: true
  62513. },
  62514. ]
  62515. ))
  62516. characterMakers.push(() => makeCharacter(
  62517. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62518. {
  62519. front: {
  62520. height: math.unit(3500, "miles"),
  62521. weight: math.unit(1659, "petatonnes"),
  62522. name: "Front",
  62523. image: {
  62524. source: "./media/characters/baltica/front.svg",
  62525. extra: 429/428,
  62526. bottom: 41/470
  62527. }
  62528. },
  62529. back: {
  62530. height: math.unit(3500, "miles"),
  62531. weight: math.unit(1659, "petatonnes"),
  62532. name: "Back",
  62533. image: {
  62534. source: "./media/characters/baltica/back.svg",
  62535. extra: 452/451,
  62536. bottom: 8/460
  62537. }
  62538. },
  62539. },
  62540. [
  62541. {
  62542. name: "Gigamacro",
  62543. height: math.unit(3500, "miles"),
  62544. default: true
  62545. },
  62546. ]
  62547. ))
  62548. characterMakers.push(() => makeCharacter(
  62549. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62550. {
  62551. front: {
  62552. height: math.unit(6 + 10/12, "feet"),
  62553. weight: math.unit(200, "lb"),
  62554. name: "Front",
  62555. image: {
  62556. source: "./media/characters/shadow-wolf/front.svg",
  62557. extra: 1931/1760,
  62558. bottom: 88/2019
  62559. }
  62560. },
  62561. },
  62562. [
  62563. {
  62564. name: "Normal",
  62565. height: math.unit(6 + 10/12, "feet"),
  62566. default: true
  62567. },
  62568. ]
  62569. ))
  62570. characterMakers.push(() => makeCharacter(
  62571. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62572. {
  62573. front: {
  62574. height: math.unit(5 + 10/12, "feet"),
  62575. name: "Front",
  62576. image: {
  62577. source: "./media/characters/quincy-praying-mantis/front.svg",
  62578. extra: 1055/891,
  62579. bottom: 92/1147
  62580. }
  62581. },
  62582. soles: {
  62583. height: math.unit(0.85, "feet"),
  62584. name: "Soles",
  62585. image: {
  62586. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62587. extra: 429/324,
  62588. bottom: 89/518
  62589. },
  62590. extraAttributes: {
  62591. "shoeSize": {
  62592. name: "Shoe Size",
  62593. power: 1,
  62594. type: "length",
  62595. base: math.unit(23, "ShoeSizeMensUS"),
  62596. defaultUnit: "ShoeSizeMensUS"
  62597. },
  62598. }
  62599. },
  62600. foot: {
  62601. height: math.unit(0.72, "feet"),
  62602. name: "Foot",
  62603. image: {
  62604. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62605. extra: 349/349,
  62606. bottom: 76/425
  62607. }
  62608. },
  62609. },
  62610. [
  62611. {
  62612. name: "Normal",
  62613. height: math.unit(5 + 10/12, "feet"),
  62614. default: true
  62615. },
  62616. ]
  62617. ))
  62618. characterMakers.push(() => makeCharacter(
  62619. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62620. {
  62621. front: {
  62622. height: math.unit(6, "feet"),
  62623. name: "Front",
  62624. image: {
  62625. source: "./media/characters/christopher-redwood/front.svg",
  62626. extra: 1402/1341,
  62627. bottom: 23/1425
  62628. }
  62629. },
  62630. back: {
  62631. height: math.unit(6, "feet"),
  62632. name: "Back",
  62633. image: {
  62634. source: "./media/characters/christopher-redwood/back.svg",
  62635. extra: 1406/1345,
  62636. bottom: 36/1442
  62637. }
  62638. },
  62639. head: {
  62640. height: math.unit(1.685, "feet"),
  62641. name: "Head",
  62642. image: {
  62643. source: "./media/characters/christopher-redwood/head.svg"
  62644. }
  62645. },
  62646. },
  62647. [
  62648. {
  62649. name: "Normal",
  62650. height: math.unit(6, "feet"),
  62651. default: true
  62652. },
  62653. ]
  62654. ))
  62655. characterMakers.push(() => makeCharacter(
  62656. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62657. {
  62658. front: {
  62659. height: math.unit(1.9, "meters"),
  62660. weight: math.unit(140, "lb"),
  62661. name: "Front",
  62662. image: {
  62663. source: "./media/characters/kara-fox/front.svg",
  62664. extra: 766/711,
  62665. bottom: 41/807
  62666. }
  62667. },
  62668. back: {
  62669. height: math.unit(1.9, "meters"),
  62670. weight: math.unit(140, "lb"),
  62671. name: "Back",
  62672. image: {
  62673. source: "./media/characters/kara-fox/back.svg",
  62674. extra: 766/596,
  62675. bottom: 29/795
  62676. }
  62677. },
  62678. maw: {
  62679. height: math.unit(0.78, "feet"),
  62680. name: "Maw",
  62681. image: {
  62682. source: "./media/characters/kara-fox/maw.svg"
  62683. }
  62684. },
  62685. pawpads: {
  62686. height: math.unit(0.96, "feet"),
  62687. name: "Pawpads",
  62688. image: {
  62689. source: "./media/characters/kara-fox/pawpads.svg"
  62690. }
  62691. },
  62692. },
  62693. [
  62694. {
  62695. name: "Normal",
  62696. height: math.unit(1.9, "meters"),
  62697. default: true
  62698. },
  62699. {
  62700. name: "Giantess",
  62701. height: math.unit(80, "meters")
  62702. },
  62703. ]
  62704. ))
  62705. characterMakers.push(() => makeCharacter(
  62706. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62707. {
  62708. front: {
  62709. height: math.unit(12, "feet"),
  62710. name: "Front",
  62711. image: {
  62712. source: "./media/characters/naomi-espeon/front.svg",
  62713. extra: 892/797,
  62714. bottom: 5/897
  62715. }
  62716. },
  62717. back: {
  62718. height: math.unit(12, "feet"),
  62719. name: "Back",
  62720. image: {
  62721. source: "./media/characters/naomi-espeon/back.svg",
  62722. extra: 890/785,
  62723. bottom: 12/902
  62724. }
  62725. },
  62726. },
  62727. [
  62728. {
  62729. name: "Normal",
  62730. height: math.unit(12, "feet"),
  62731. default: true
  62732. },
  62733. ]
  62734. ))
  62735. characterMakers.push(() => makeCharacter(
  62736. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62737. {
  62738. anthro_front: {
  62739. height: math.unit(8, "feet"),
  62740. weight: math.unit(625, "lb"),
  62741. name: "Front",
  62742. image: {
  62743. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62744. extra: 638/574,
  62745. bottom: 73/711
  62746. },
  62747. form: "anthro",
  62748. default: true
  62749. },
  62750. anthro_back: {
  62751. height: math.unit(8, "feet"),
  62752. weight: math.unit(625, "lb"),
  62753. name: "Back",
  62754. image: {
  62755. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62756. extra: 674/614,
  62757. bottom: 7/681
  62758. },
  62759. form: "anthro",
  62760. },
  62761. taur_side: {
  62762. height: math.unit(16, "feet"),
  62763. weight: math.unit(4.5, "tons"),
  62764. name: "Side",
  62765. image: {
  62766. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62767. extra: 704/646,
  62768. bottom: 132/836
  62769. },
  62770. form: "taur",
  62771. default: true
  62772. },
  62773. },
  62774. [
  62775. {
  62776. name: "Normal",
  62777. height: math.unit(8, "feet"),
  62778. default: true,
  62779. form: "anthro"
  62780. },
  62781. {
  62782. name: "Normal",
  62783. height: math.unit(16, "feet"),
  62784. default: true,
  62785. form: "taur"
  62786. },
  62787. ],
  62788. {
  62789. "anthro": {
  62790. name: "Anthro",
  62791. default: true
  62792. },
  62793. "taur": {
  62794. name: "Taur",
  62795. },
  62796. }
  62797. ))
  62798. characterMakers.push(() => makeCharacter(
  62799. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62800. {
  62801. front: {
  62802. height: math.unit(190, "cm"),
  62803. weight: math.unit(110, "kg"),
  62804. name: "Front",
  62805. image: {
  62806. source: "./media/characters/amelie/front.svg",
  62807. extra: 530/442,
  62808. bottom: 35/565
  62809. }
  62810. },
  62811. },
  62812. [
  62813. {
  62814. name: "Normal",
  62815. height: math.unit(190, "cm"),
  62816. default: true
  62817. },
  62818. ]
  62819. ))
  62820. characterMakers.push(() => makeCharacter(
  62821. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62822. {
  62823. front: {
  62824. height: math.unit(21, "feet"),
  62825. weight: math.unit(30000, "lb"),
  62826. name: "Front",
  62827. image: {
  62828. source: "./media/characters/valence/front.svg",
  62829. extra: 1430/1306,
  62830. bottom: 51/1481
  62831. }
  62832. },
  62833. },
  62834. [
  62835. {
  62836. name: "Normal",
  62837. height: math.unit(21, "feet"),
  62838. default: true
  62839. },
  62840. ]
  62841. ))
  62842. characterMakers.push(() => makeCharacter(
  62843. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62844. {
  62845. front: {
  62846. height: math.unit(5 + 9/12, "feet"),
  62847. weight: math.unit(170, "lb"),
  62848. name: "Front",
  62849. image: {
  62850. source: "./media/characters/aurora-adkins/front.svg",
  62851. extra: 1141/1089,
  62852. bottom: 41/1182
  62853. }
  62854. },
  62855. },
  62856. [
  62857. {
  62858. name: "Tiny",
  62859. height: math.unit(7, "mm")
  62860. },
  62861. {
  62862. name: "Small",
  62863. height: math.unit(3.4, "inches")
  62864. },
  62865. {
  62866. name: "Normal",
  62867. height: math.unit(5 + 9/12, "feet"),
  62868. default: true
  62869. },
  62870. {
  62871. name: "Big",
  62872. height: math.unit(31, "feet")
  62873. },
  62874. {
  62875. name: "Giant",
  62876. height: math.unit(300, "feet")
  62877. },
  62878. ]
  62879. ))
  62880. characterMakers.push(() => makeCharacter(
  62881. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62882. {
  62883. front: {
  62884. height: math.unit(5 + 6/12, "feet"),
  62885. weight: math.unit(210, "lb"),
  62886. name: "Front",
  62887. image: {
  62888. source: "./media/characters/cyber/front.svg",
  62889. extra: 1968/1798,
  62890. bottom: 10/1978
  62891. },
  62892. extraAttributes: {
  62893. "shoeSize": {
  62894. name: "Shoe Size",
  62895. power: 1,
  62896. type: "length",
  62897. base: math.unit(30, "ShoeSizeMensUS")
  62898. },
  62899. }
  62900. },
  62901. },
  62902. [
  62903. {
  62904. name: "Normal",
  62905. height: math.unit(5 + 6/12, "feet"),
  62906. default: true
  62907. },
  62908. ]
  62909. ))
  62910. characterMakers.push(() => makeCharacter(
  62911. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62912. {
  62913. front: {
  62914. height: math.unit(6 + 6/12, "feet"),
  62915. weight: math.unit(140, "lb"),
  62916. name: "Front",
  62917. image: {
  62918. source: "./media/characters/sapphire-wairimea/front.svg",
  62919. extra: 475/458,
  62920. bottom: 14/489
  62921. }
  62922. },
  62923. },
  62924. [
  62925. {
  62926. name: "Normal",
  62927. height: math.unit(6 + 6/12, "feet")
  62928. },
  62929. {
  62930. name: "Macro",
  62931. height: math.unit(132, "feet"),
  62932. default: true
  62933. },
  62934. ]
  62935. ))
  62936. characterMakers.push(() => makeCharacter(
  62937. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  62938. {
  62939. front: {
  62940. height: math.unit(1.6, "meters"),
  62941. weight: math.unit(100, "lb"),
  62942. name: "Front",
  62943. image: {
  62944. source: "./media/characters/cirkazi/front.svg",
  62945. extra: 489/477,
  62946. bottom: 0/489
  62947. }
  62948. },
  62949. },
  62950. [
  62951. {
  62952. name: "Normal",
  62953. height: math.unit(1.6, "meters")
  62954. },
  62955. {
  62956. name: "Macro",
  62957. height: math.unit(800, "feet"),
  62958. default: true
  62959. },
  62960. ]
  62961. ))
  62962. characterMakers.push(() => makeCharacter(
  62963. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  62964. {
  62965. front: {
  62966. height: math.unit(5 + 10/12, "feet"),
  62967. weight: math.unit(145, "lb"),
  62968. name: "Front",
  62969. image: {
  62970. source: "./media/characters/corrin-cavelli/front.svg",
  62971. extra: 483/464,
  62972. bottom: 6/489
  62973. }
  62974. },
  62975. },
  62976. [
  62977. {
  62978. name: "Human",
  62979. height: math.unit(5 + 10/12, "feet")
  62980. },
  62981. {
  62982. name: "Giant",
  62983. height: math.unit(210, "feet"),
  62984. default: true
  62985. },
  62986. ]
  62987. ))
  62988. characterMakers.push(() => makeCharacter(
  62989. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  62990. {
  62991. back: {
  62992. height: math.unit(5 + 6/12, "feet"),
  62993. weight: math.unit(115, "lb"),
  62994. name: "Back",
  62995. image: {
  62996. source: "./media/characters/lori-lopez/back.svg",
  62997. extra: 483/474,
  62998. bottom: 6/489
  62999. }
  63000. },
  63001. },
  63002. [
  63003. {
  63004. name: "Human",
  63005. height: math.unit(5 + 6/12, "feet")
  63006. },
  63007. {
  63008. name: "Macro",
  63009. height: math.unit(198, "feet"),
  63010. default: true
  63011. },
  63012. ]
  63013. ))
  63014. characterMakers.push(() => makeCharacter(
  63015. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63016. {
  63017. front: {
  63018. height: math.unit(6, "feet"),
  63019. weight: math.unit(220, "lb"),
  63020. name: "Front",
  63021. image: {
  63022. source: "./media/characters/sylvia-beauregard/front.svg",
  63023. extra: 483/479,
  63024. bottom: 6/489
  63025. }
  63026. },
  63027. },
  63028. [
  63029. {
  63030. name: "Macro",
  63031. height: math.unit(2071, "feet"),
  63032. default: true
  63033. },
  63034. ]
  63035. ))
  63036. characterMakers.push(() => makeCharacter(
  63037. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63038. {
  63039. back: {
  63040. height: math.unit(5 + 6/12, "feet"),
  63041. weight: math.unit(160, "lb"),
  63042. name: "Back",
  63043. image: {
  63044. source: "./media/characters/akiko-takahashi/back.svg",
  63045. extra: 459/454,
  63046. bottom: 27/486
  63047. }
  63048. },
  63049. },
  63050. [
  63051. {
  63052. name: "Human",
  63053. height: math.unit(5 + 6/12, "feet")
  63054. },
  63055. {
  63056. name: "Macro",
  63057. height: math.unit(198, "feet"),
  63058. default: true
  63059. },
  63060. {
  63061. name: "Megamacro",
  63062. height: math.unit(7128, "feet")
  63063. },
  63064. ]
  63065. ))
  63066. characterMakers.push(() => makeCharacter(
  63067. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63068. {
  63069. front: {
  63070. height: math.unit(6, "feet"),
  63071. weight: math.unit(140, "lb"),
  63072. name: "Front",
  63073. image: {
  63074. source: "./media/characters/velvet-garza/front.svg",
  63075. extra: 480/462,
  63076. bottom: 7/487
  63077. }
  63078. },
  63079. },
  63080. [
  63081. {
  63082. name: "Macro",
  63083. height: math.unit(37, "feet"),
  63084. default: true
  63085. },
  63086. ]
  63087. ))
  63088. characterMakers.push(() => makeCharacter(
  63089. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63090. {
  63091. front: {
  63092. height: math.unit(7 + 6/12, "feet"),
  63093. weight: math.unit(400, "lb"),
  63094. name: "Front",
  63095. image: {
  63096. source: "./media/characters/gaia/front.svg",
  63097. extra: 474/463,
  63098. bottom: 13/487
  63099. }
  63100. },
  63101. },
  63102. [
  63103. {
  63104. name: "MiniMacro",
  63105. height: math.unit(7 + 6/12, "feet")
  63106. },
  63107. {
  63108. name: "GigaMacro",
  63109. height: math.unit(14500, "feet"),
  63110. default: true
  63111. },
  63112. ]
  63113. ))
  63114. characterMakers.push(() => makeCharacter(
  63115. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63116. {
  63117. front: {
  63118. height: math.unit(6, "feet"),
  63119. weight: math.unit(150, "lb"),
  63120. name: "Front",
  63121. image: {
  63122. source: "./media/characters/tim/front.svg",
  63123. extra: 1878/1743,
  63124. bottom: 9/1887
  63125. }
  63126. },
  63127. frontDressed: {
  63128. height: math.unit(6, "feet"),
  63129. weight: math.unit(150, "lb"),
  63130. name: "Front (Dressed)",
  63131. image: {
  63132. source: "./media/characters/tim/front-dressed.svg",
  63133. extra: 1765/1485,
  63134. bottom: 48/1813
  63135. }
  63136. },
  63137. backDressed: {
  63138. height: math.unit(6, "feet"),
  63139. weight: math.unit(150, "lb"),
  63140. name: "Back (Dressed)",
  63141. image: {
  63142. source: "./media/characters/tim/back-dressed.svg",
  63143. extra: 1750/1465,
  63144. bottom: 25/1775
  63145. }
  63146. },
  63147. dick: {
  63148. height: math.unit(1.5, "feet"),
  63149. weight: math.unit(6, "lb"),
  63150. name: "Dick",
  63151. image: {
  63152. source: "./media/characters/tim/dick.svg"
  63153. }
  63154. },
  63155. hand: {
  63156. height: math.unit(0.522, "feet"),
  63157. name: "Hand",
  63158. image: {
  63159. source: "./media/characters/tim/hand.svg"
  63160. }
  63161. },
  63162. palm: {
  63163. height: math.unit(0.48, "feet"),
  63164. name: "Palm",
  63165. image: {
  63166. source: "./media/characters/tim/palm.svg"
  63167. }
  63168. },
  63169. paw: {
  63170. height: math.unit(0.9, "feet"),
  63171. name: "Paw",
  63172. image: {
  63173. source: "./media/characters/tim/paw.svg"
  63174. }
  63175. },
  63176. sole: {
  63177. height: math.unit(0.88, "feet"),
  63178. name: "Sole",
  63179. image: {
  63180. source: "./media/characters/tim/sole.svg"
  63181. }
  63182. },
  63183. },
  63184. [
  63185. {
  63186. name: "Macro",
  63187. height: math.unit(1000, "feet")
  63188. },
  63189. {
  63190. name: "Megamacro",
  63191. height: math.unit(10000, "feet"),
  63192. default: true
  63193. },
  63194. {
  63195. name: "Megamacro+",
  63196. height: math.unit(50000, "feet")
  63197. },
  63198. {
  63199. name: "Gigamacro",
  63200. height: math.unit(150000, "km")
  63201. },
  63202. ]
  63203. ))
  63204. characterMakers.push(() => makeCharacter(
  63205. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63206. {
  63207. front: {
  63208. height: math.unit(5 + 8/12, "feet"),
  63209. weight: math.unit(170, "lb"),
  63210. name: "Front",
  63211. image: {
  63212. source: "./media/characters/abel-delreoux/front.svg",
  63213. extra: 1615/1500,
  63214. bottom: 82/1697
  63215. }
  63216. },
  63217. back: {
  63218. height: math.unit(5 + 8/12, "feet"),
  63219. weight: math.unit(170, "lb"),
  63220. name: "Back",
  63221. image: {
  63222. source: "./media/characters/abel-delreoux/back.svg",
  63223. extra: 1644/1534,
  63224. bottom: 24/1668
  63225. }
  63226. },
  63227. casual: {
  63228. height: math.unit(5 + 8/12, "feet"),
  63229. weight: math.unit(170, "lb"),
  63230. name: "Casual",
  63231. image: {
  63232. source: "./media/characters/abel-delreoux/casual.svg",
  63233. extra: 1716/1598,
  63234. bottom: 29/1745
  63235. }
  63236. },
  63237. sleepy: {
  63238. height: math.unit(5 + 8/12, "feet"),
  63239. weight: math.unit(170, "lb"),
  63240. name: "Sleepy",
  63241. image: {
  63242. source: "./media/characters/abel-delreoux/sleepy.svg",
  63243. extra: 1649/1573,
  63244. bottom: 22/1671
  63245. }
  63246. },
  63247. fem: {
  63248. height: math.unit(5 + 8/12, "feet"),
  63249. weight: math.unit(170, "lb"),
  63250. name: "Fem",
  63251. image: {
  63252. source: "./media/characters/abel-delreoux/fem.svg",
  63253. extra: 1680/1564,
  63254. bottom: 17/1697
  63255. }
  63256. },
  63257. hand: {
  63258. height: math.unit(0.78, "feet"),
  63259. name: "Hand",
  63260. image: {
  63261. source: "./media/characters/abel-delreoux/hand.svg"
  63262. }
  63263. },
  63264. paw: {
  63265. height: math.unit(0.78, "feet"),
  63266. name: "Paw",
  63267. image: {
  63268. source: "./media/characters/abel-delreoux/paw.svg"
  63269. }
  63270. },
  63271. },
  63272. [
  63273. {
  63274. name: "Normal",
  63275. height: math.unit(5 + 8/12, "feet"),
  63276. default: true
  63277. },
  63278. ]
  63279. ))
  63280. characterMakers.push(() => makeCharacter(
  63281. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63282. {
  63283. front: {
  63284. height: math.unit(6, "feet"),
  63285. weight: math.unit(159, "lb"),
  63286. name: "Front",
  63287. image: {
  63288. source: "./media/characters/meus/front.svg",
  63289. extra: 938/843,
  63290. bottom: 37/975
  63291. }
  63292. },
  63293. back: {
  63294. height: math.unit(6, "feet"),
  63295. weight: math.unit(159, "lb"),
  63296. name: "Back",
  63297. image: {
  63298. source: "./media/characters/meus/back.svg",
  63299. extra: 967/873,
  63300. bottom: 12/979
  63301. }
  63302. },
  63303. },
  63304. [
  63305. {
  63306. name: "Micro",
  63307. height: math.unit(2, "inches")
  63308. },
  63309. {
  63310. name: "Mini",
  63311. height: math.unit(6, "inches")
  63312. },
  63313. {
  63314. name: "Normal",
  63315. height: math.unit(6, "feet"),
  63316. default: true
  63317. },
  63318. {
  63319. name: "Macro",
  63320. height: math.unit(84, "feet")
  63321. },
  63322. ]
  63323. ))
  63324. characterMakers.push(() => makeCharacter(
  63325. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63326. {
  63327. front: {
  63328. height: math.unit(60, "cm"),
  63329. weight: math.unit(18, "kg"),
  63330. name: "Front",
  63331. image: {
  63332. source: "./media/characters/yamato/front.svg",
  63333. extra: 733/688,
  63334. bottom: 29/762
  63335. }
  63336. },
  63337. },
  63338. [
  63339. {
  63340. name: "Micro",
  63341. height: math.unit(6, "cm")
  63342. },
  63343. {
  63344. name: "Normal",
  63345. height: math.unit(60, "cm"),
  63346. default: true
  63347. },
  63348. ]
  63349. ))
  63350. characterMakers.push(() => makeCharacter(
  63351. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63352. {
  63353. front: {
  63354. height: math.unit(9, "feet"),
  63355. weight: math.unit(518, "lb"),
  63356. name: "Front",
  63357. image: {
  63358. source: "./media/characters/barus/front.svg",
  63359. extra: 1877/1795,
  63360. bottom: 55/1932
  63361. }
  63362. },
  63363. },
  63364. [
  63365. {
  63366. name: "Base Height",
  63367. height: math.unit(9, "feet"),
  63368. default: true
  63369. },
  63370. {
  63371. name: "Large",
  63372. height: math.unit(18, "feet")
  63373. },
  63374. {
  63375. name: "Giant",
  63376. height: math.unit(100, "feet")
  63377. },
  63378. {
  63379. name: "Huge",
  63380. height: math.unit(500, "feet")
  63381. },
  63382. {
  63383. name: "Enormous",
  63384. height: math.unit(300, "meters")
  63385. },
  63386. {
  63387. name: "Deity Among Man",
  63388. height: math.unit(3000, "meters")
  63389. },
  63390. ]
  63391. ))
  63392. characterMakers.push(() => makeCharacter(
  63393. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63394. {
  63395. front: {
  63396. height: math.unit(1.7, "meters"),
  63397. name: "Front",
  63398. image: {
  63399. source: "./media/characters/yari/front.svg",
  63400. extra: 1210/1125,
  63401. bottom: 283/1493
  63402. }
  63403. },
  63404. back: {
  63405. height: math.unit(1.7, "meters"),
  63406. name: "Back",
  63407. image: {
  63408. source: "./media/characters/yari/back.svg",
  63409. extra: 1240/1195,
  63410. bottom: 180/1420
  63411. }
  63412. },
  63413. head: {
  63414. height: math.unit(1.26, "feet"),
  63415. name: "Head",
  63416. image: {
  63417. source: "./media/characters/yari/head.svg"
  63418. }
  63419. },
  63420. },
  63421. [
  63422. {
  63423. name: "Nano",
  63424. height: math.unit(0.5, "mm")
  63425. },
  63426. {
  63427. name: "Micro",
  63428. height: math.unit(3, "inches")
  63429. },
  63430. {
  63431. name: "Short",
  63432. height: math.unit(1.5, "meters")
  63433. },
  63434. {
  63435. name: "Norm",
  63436. height: math.unit(1.7, "meters"),
  63437. default: true
  63438. },
  63439. ]
  63440. ))
  63441. characterMakers.push(() => makeCharacter(
  63442. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63443. {
  63444. front: {
  63445. height: math.unit(5 + 2/12, "feet"),
  63446. weight: math.unit(110, "lb"),
  63447. name: "Front",
  63448. image: {
  63449. source: "./media/characters/salem/front.svg",
  63450. extra: 1895/1800,
  63451. bottom: 23/1918
  63452. }
  63453. },
  63454. back: {
  63455. height: math.unit(5 + 2/12, "feet"),
  63456. weight: math.unit(110, "lb"),
  63457. name: "Back",
  63458. image: {
  63459. source: "./media/characters/salem/back.svg",
  63460. extra: 1875/1802,
  63461. bottom: 20/1895
  63462. }
  63463. },
  63464. head: {
  63465. height: math.unit(1, "feet"),
  63466. name: "Head",
  63467. image: {
  63468. source: "./media/characters/salem/head.svg"
  63469. }
  63470. },
  63471. paw: {
  63472. height: math.unit(0.59, "feet"),
  63473. name: "Paw",
  63474. image: {
  63475. source: "./media/characters/salem/paw.svg"
  63476. }
  63477. },
  63478. beans: {
  63479. height: math.unit(0.66, "feet"),
  63480. name: "Beans",
  63481. image: {
  63482. source: "./media/characters/salem/beans.svg"
  63483. }
  63484. },
  63485. eye: {
  63486. height: math.unit(0.224, "feet"),
  63487. name: "Eye",
  63488. image: {
  63489. source: "./media/characters/salem/eye.svg"
  63490. }
  63491. },
  63492. semiferal: {
  63493. height: math.unit(2.3, "feet"),
  63494. name: "Semiferal",
  63495. image: {
  63496. source: "./media/characters/salem/semiferal.svg",
  63497. extra: 914/839,
  63498. bottom: 32/946
  63499. }
  63500. },
  63501. },
  63502. [
  63503. {
  63504. name: "Micro",
  63505. height: math.unit(4, "inches")
  63506. },
  63507. {
  63508. name: "Normal",
  63509. height: math.unit(5 + 2/12, "feet"),
  63510. default: true
  63511. },
  63512. {
  63513. name: "Macro",
  63514. height: math.unit(108, "feet")
  63515. },
  63516. {
  63517. name: "Macro+",
  63518. height: math.unit(1500, "feet")
  63519. },
  63520. ]
  63521. ))
  63522. characterMakers.push(() => makeCharacter(
  63523. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63524. {
  63525. front: {
  63526. height: math.unit(7 + 6/12, "feet"),
  63527. weight: math.unit(600, "kg"),
  63528. preyCapacity: math.unit(10, "people"),
  63529. name: "Front",
  63530. image: {
  63531. source: "./media/characters/kii/front.svg",
  63532. extra: 3296/3087,
  63533. bottom: 130/3426
  63534. }
  63535. },
  63536. },
  63537. [
  63538. {
  63539. name: "Normal",
  63540. height: math.unit(7 + 6/12, "feet"),
  63541. default: true
  63542. },
  63543. ]
  63544. ))
  63545. characterMakers.push(() => makeCharacter(
  63546. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63547. {
  63548. front: {
  63549. height: math.unit(2, "meters"),
  63550. weight: math.unit(200, "lb"),
  63551. name: "Front",
  63552. image: {
  63553. source: "./media/characters/taffy/front.svg",
  63554. extra: 1666/1618,
  63555. bottom: 157/1823
  63556. }
  63557. },
  63558. back: {
  63559. height: math.unit(2, "meters"),
  63560. weight: math.unit(200, "lb"),
  63561. name: "Back",
  63562. image: {
  63563. source: "./media/characters/taffy/back.svg",
  63564. extra: 1635/1583,
  63565. bottom: 153/1788
  63566. }
  63567. },
  63568. },
  63569. [
  63570. {
  63571. name: "Normal",
  63572. height: math.unit(2, "meters"),
  63573. default: true
  63574. },
  63575. ]
  63576. ))
  63577. characterMakers.push(() => makeCharacter(
  63578. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63579. {
  63580. front: {
  63581. height: math.unit(1.55, "meters"),
  63582. weight: math.unit(60, "kg"),
  63583. name: "Front",
  63584. image: {
  63585. source: "./media/characters/barley/front.svg",
  63586. extra: 1520/1340,
  63587. bottom: 47/1567
  63588. }
  63589. },
  63590. back: {
  63591. height: math.unit(1.55, "meters"),
  63592. weight: math.unit(60, "kg"),
  63593. name: "Back",
  63594. image: {
  63595. source: "./media/characters/barley/back.svg",
  63596. extra: 1543/1341,
  63597. bottom: 12/1555
  63598. }
  63599. },
  63600. feet: {
  63601. height: math.unit(2.18, "feet"),
  63602. name: "Feet",
  63603. image: {
  63604. source: "./media/characters/barley/feet.svg"
  63605. }
  63606. },
  63607. },
  63608. [
  63609. {
  63610. name: "Normal",
  63611. height: math.unit(1.55, "meters"),
  63612. default: true
  63613. },
  63614. ]
  63615. ))
  63616. characterMakers.push(() => makeCharacter(
  63617. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63618. {
  63619. dressed: {
  63620. height: math.unit(6, "feet"),
  63621. name: "Dressed",
  63622. image: {
  63623. source: "./media/characters/lydia-lopez/dressed.svg",
  63624. extra: 1319/1277,
  63625. bottom: 90/1409
  63626. }
  63627. },
  63628. nude: {
  63629. height: math.unit(6, "feet"),
  63630. name: "Nude",
  63631. image: {
  63632. source: "./media/characters/lydia-lopez/nude.svg",
  63633. extra: 1319/1277,
  63634. bottom: 90/1409
  63635. }
  63636. },
  63637. },
  63638. [
  63639. {
  63640. name: "Normal",
  63641. height: math.unit(6, "feet"),
  63642. default: true
  63643. },
  63644. {
  63645. name: "Maximum",
  63646. height: math.unit(2101, "feet")
  63647. },
  63648. ]
  63649. ))
  63650. characterMakers.push(() => makeCharacter(
  63651. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63652. {
  63653. front: {
  63654. height: math.unit(5 + 4/12, "feet"),
  63655. weight: math.unit(250, "lb"),
  63656. volume: math.unit(20, "gallons"),
  63657. name: "Front",
  63658. image: {
  63659. source: "./media/characters/kira-slime/front.svg",
  63660. extra: 442/403,
  63661. bottom: 18/460
  63662. }
  63663. },
  63664. frontNsfw: {
  63665. height: math.unit(5 + 4/12, "feet"),
  63666. weight: math.unit(250, "lb"),
  63667. volume: math.unit(20, "gallons"),
  63668. name: "Front (NSFW)",
  63669. image: {
  63670. source: "./media/characters/kira-slime/front-nsfw.svg",
  63671. extra: 442/403,
  63672. bottom: 18/460
  63673. }
  63674. },
  63675. },
  63676. [
  63677. {
  63678. name: "Droplet",
  63679. height: math.unit(0.0464452, "feet")
  63680. },
  63681. {
  63682. name: "Pint",
  63683. height: math.unit(0.9824, "feet")
  63684. },
  63685. {
  63686. name: "Bucket",
  63687. height: math.unit(2.83, "feet")
  63688. },
  63689. {
  63690. name: "Normal",
  63691. height: math.unit(5 + 4/12, "feet"),
  63692. default: true
  63693. },
  63694. {
  63695. name: "Tub",
  63696. height: math.unit(8.46614, "feet")
  63697. },
  63698. {
  63699. name: "Pool",
  63700. height: math.unit(31.1895, "feet")
  63701. },
  63702. {
  63703. name: "Pond",
  63704. height: math.unit(170.349, "feet")
  63705. },
  63706. {
  63707. name: "Lake",
  63708. height: math.unit(289334, "feet")
  63709. },
  63710. {
  63711. name: "Ocean",
  63712. height: math.unit(1.11940e+7, "feet")
  63713. },
  63714. ]
  63715. ))
  63716. characterMakers.push(() => makeCharacter(
  63717. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  63718. {
  63719. front: {
  63720. height: math.unit(5 + 6/12, "feet"),
  63721. weight: math.unit(120, "lb"),
  63722. name: "Front",
  63723. image: {
  63724. source: "./media/characters/holiday/front.svg",
  63725. extra: 456/403,
  63726. bottom: 4/460
  63727. }
  63728. },
  63729. back: {
  63730. height: math.unit(5 + 6/12, "feet"),
  63731. weight: math.unit(120, "lb"),
  63732. name: "Back",
  63733. image: {
  63734. source: "./media/characters/holiday/back.svg",
  63735. extra: 450/404,
  63736. bottom: 12/462
  63737. }
  63738. },
  63739. head: {
  63740. height: math.unit(2.3, "feet"),
  63741. name: "Head",
  63742. image: {
  63743. source: "./media/characters/holiday/head.svg"
  63744. }
  63745. },
  63746. },
  63747. [
  63748. {
  63749. name: "Normal",
  63750. height: math.unit(5 + 6/12, "feet"),
  63751. default: true
  63752. },
  63753. {
  63754. name: "Macro",
  63755. height: math.unit(6574.25, "feet")
  63756. },
  63757. ]
  63758. ))
  63759. characterMakers.push(() => makeCharacter(
  63760. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  63761. {
  63762. front: {
  63763. height: math.unit(6 + 2/12, "feet"),
  63764. weight: math.unit(200, "lb"),
  63765. name: "Front",
  63766. image: {
  63767. source: "./media/characters/camina/front.svg",
  63768. extra: 1048/985,
  63769. bottom: 30/1078
  63770. }
  63771. },
  63772. },
  63773. [
  63774. {
  63775. name: "Normal",
  63776. height: math.unit(6 + 2/12, "feet"),
  63777. default: true
  63778. },
  63779. ]
  63780. ))
  63781. characterMakers.push(() => makeCharacter(
  63782. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  63783. {
  63784. front: {
  63785. height: math.unit(30, "cm"),
  63786. weight: math.unit(420, "grams"),
  63787. name: "Front",
  63788. image: {
  63789. source: "./media/characters/smuck/front.svg",
  63790. extra: 379/345,
  63791. bottom: 36/415
  63792. }
  63793. },
  63794. },
  63795. [
  63796. {
  63797. name: "Smuck-Sized",
  63798. height: math.unit(30, "cm"),
  63799. default: true
  63800. },
  63801. ]
  63802. ))
  63803. characterMakers.push(() => makeCharacter(
  63804. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  63805. {
  63806. frontSfw: {
  63807. height: math.unit(10, "feet"),
  63808. weight: math.unit(1000, "kg"),
  63809. preyCapacity: math.unit(2, "people"),
  63810. name: "Front (SFW)",
  63811. image: {
  63812. source: "./media/characters/bylur/front-sfw.svg",
  63813. extra: 419/343,
  63814. bottom: 3/422
  63815. },
  63816. default: true
  63817. },
  63818. frontSheath: {
  63819. height: math.unit(10, "feet"),
  63820. weight: math.unit(1000, "kg"),
  63821. preyCapacity: math.unit(2, "people"),
  63822. name: "Front (Sheath)",
  63823. image: {
  63824. source: "./media/characters/bylur/front-sheath.svg",
  63825. extra: 419/343,
  63826. bottom: 3/422
  63827. }
  63828. },
  63829. frontErect: {
  63830. height: math.unit(10, "feet"),
  63831. weight: math.unit(1000, "kg"),
  63832. preyCapacity: math.unit(2, "people"),
  63833. name: "Front (Erect)",
  63834. image: {
  63835. source: "./media/characters/bylur/front-erect.svg",
  63836. extra: 419/343,
  63837. bottom: 3/422
  63838. }
  63839. },
  63840. back: {
  63841. height: math.unit(10, "feet"),
  63842. weight: math.unit(1000, "kg"),
  63843. preyCapacity: math.unit(2, "people"),
  63844. name: "Back",
  63845. image: {
  63846. source: "./media/characters/bylur/back.svg",
  63847. extra: 392/315,
  63848. bottom: 3/395
  63849. }
  63850. },
  63851. maw: {
  63852. height: math.unit(3.65, "feet"),
  63853. name: "Maw",
  63854. image: {
  63855. source: "./media/characters/bylur/maw.svg"
  63856. }
  63857. },
  63858. },
  63859. [
  63860. {
  63861. name: "Slightly Human Sized",
  63862. height: math.unit(10, "feet")
  63863. },
  63864. {
  63865. name: "Normal",
  63866. height: math.unit(35, "feet"),
  63867. default: true
  63868. },
  63869. {
  63870. name: "Macro",
  63871. height: math.unit(130, "feet")
  63872. },
  63873. ]
  63874. ))
  63875. characterMakers.push(() => makeCharacter(
  63876. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  63877. {
  63878. frontNsfw: {
  63879. height: math.unit(6, "feet"),
  63880. weight: math.unit(250, "lb"),
  63881. preyCapacity: math.unit(0.05, "people"),
  63882. name: "Front (NSFW)",
  63883. image: {
  63884. source: "./media/characters/oarven/front-nsfw.svg",
  63885. extra: 1795/1783,
  63886. bottom: 142/1937
  63887. }
  63888. },
  63889. frontSfw: {
  63890. height: math.unit(6, "feet"),
  63891. weight: math.unit(250, "lb"),
  63892. preyCapacity: math.unit(0.05, "people"),
  63893. name: "Front (SFW)",
  63894. image: {
  63895. source: "./media/characters/oarven/front-sfw.svg",
  63896. extra: 1795/1783,
  63897. bottom: 142/1937
  63898. }
  63899. },
  63900. },
  63901. [
  63902. {
  63903. name: "Megamacro",
  63904. height: math.unit(5, "miles"),
  63905. default: true
  63906. },
  63907. {
  63908. name: "Maximum Height",
  63909. height: math.unit(5, "AUs")
  63910. },
  63911. ]
  63912. ))
  63913. characterMakers.push(() => makeCharacter(
  63914. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  63915. {
  63916. side: {
  63917. height: math.unit(1065, "meters"),
  63918. weight: math.unit(1e12, "kg"),
  63919. volume: math.unit(3265000000, "m^3"),
  63920. name: "Side",
  63921. image: {
  63922. source: "./media/characters/solidarity/side.svg"
  63923. }
  63924. },
  63925. front: {
  63926. height: math.unit(1065, "meters"),
  63927. weight: math.unit(3265000000000, "kg"),
  63928. volume: math.unit(3265000000, "m^3"),
  63929. name: "Front",
  63930. image: {
  63931. source: "./media/characters/solidarity/front.svg"
  63932. }
  63933. },
  63934. top: {
  63935. height: math.unit(5823, "meters"),
  63936. weight: math.unit(3265000000000, "kg"),
  63937. volume: math.unit(3265000000, "m^3"),
  63938. name: "Top",
  63939. image: {
  63940. source: "./media/characters/solidarity/top.svg"
  63941. }
  63942. },
  63943. },
  63944. [
  63945. {
  63946. name: "Normal",
  63947. height: math.unit(1065, "meters"),
  63948. default: true
  63949. },
  63950. ]
  63951. ))
  63952. characterMakers.push(() => makeCharacter(
  63953. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  63954. {
  63955. side: {
  63956. height: math.unit(18 + 4/12, "feet"),
  63957. weight: math.unit(13000, "kg"),
  63958. name: "Side",
  63959. image: {
  63960. source: "./media/characters/ani'szi/side.svg",
  63961. extra: 468/459,
  63962. bottom: 60/528
  63963. }
  63964. },
  63965. head: {
  63966. height: math.unit(4.8, "feet"),
  63967. name: "Head",
  63968. image: {
  63969. source: "./media/characters/ani'szi/head.svg"
  63970. }
  63971. },
  63972. jaws: {
  63973. height: math.unit(2.25, "feet"),
  63974. name: "Jaws",
  63975. image: {
  63976. source: "./media/characters/ani'szi/jaws.svg"
  63977. }
  63978. },
  63979. bust: {
  63980. height: math.unit(8.9, "feet"),
  63981. name: "Bust",
  63982. image: {
  63983. source: "./media/characters/ani'szi/bust.svg"
  63984. }
  63985. },
  63986. back: {
  63987. height: math.unit(13.53, "feet"),
  63988. name: "Back",
  63989. image: {
  63990. source: "./media/characters/ani'szi/back.svg"
  63991. }
  63992. },
  63993. eye: {
  63994. height: math.unit(0.44, "feet"),
  63995. name: "Eye",
  63996. image: {
  63997. source: "./media/characters/ani'szi/eye.svg"
  63998. }
  63999. },
  64000. },
  64001. [
  64002. {
  64003. name: "Normal",
  64004. height: math.unit(18 + 4/12, "feet"),
  64005. default: true
  64006. },
  64007. ]
  64008. ))
  64009. characterMakers.push(() => makeCharacter(
  64010. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64011. {
  64012. front: {
  64013. height: math.unit(7 + 6/12, "feet"),
  64014. weight: math.unit(300, "lb"),
  64015. name: "Front",
  64016. image: {
  64017. source: "./media/characters/rain/front.svg",
  64018. extra: 2955/2698,
  64019. bottom: 235/3190
  64020. }
  64021. },
  64022. dressed: {
  64023. height: math.unit(7 + 6/12, "feet"),
  64024. weight: math.unit(300, "lb"),
  64025. name: "Dressed",
  64026. image: {
  64027. source: "./media/characters/rain/dressed.svg",
  64028. extra: 2783/2572,
  64029. bottom: 430/3213
  64030. }
  64031. },
  64032. },
  64033. [
  64034. {
  64035. name: "Normal",
  64036. height: math.unit(7 + 6/12, "feet"),
  64037. default: true
  64038. },
  64039. {
  64040. name: "Macro",
  64041. height: math.unit(200, "feet")
  64042. },
  64043. {
  64044. name: "Macro+",
  64045. height: math.unit(500, "feet")
  64046. },
  64047. {
  64048. name: "Megamacro",
  64049. height: math.unit(5, "miles")
  64050. },
  64051. ]
  64052. ))
  64053. characterMakers.push(() => makeCharacter(
  64054. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64055. {
  64056. taur_side: {
  64057. height: math.unit(3, "meters"),
  64058. name: "Side",
  64059. image: {
  64060. source: "./media/characters/anise/taur-side.svg",
  64061. extra: 1833/926,
  64062. bottom: 134/1967
  64063. },
  64064. form: "taur",
  64065. default: true
  64066. },
  64067. feral_side: {
  64068. height: math.unit(3, "meters"),
  64069. name: "Side",
  64070. image: {
  64071. source: "./media/characters/anise/feral-side.svg",
  64072. extra: 681/349,
  64073. bottom: 26/707
  64074. },
  64075. form: "feral"
  64076. },
  64077. },
  64078. [
  64079. {
  64080. name: "Normal",
  64081. height: math.unit(3, "meters"),
  64082. default: true,
  64083. allForms: true
  64084. },
  64085. ],
  64086. {
  64087. "taur": {
  64088. name: "Taur",
  64089. default: true
  64090. },
  64091. "feral": {
  64092. name: "Feral",
  64093. },
  64094. }
  64095. ))
  64096. characterMakers.push(() => makeCharacter(
  64097. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64098. {
  64099. front: {
  64100. height: math.unit(1.9, "meters"),
  64101. weight: math.unit(75, "kg"),
  64102. name: "Front",
  64103. image: {
  64104. source: "./media/characters/sarina/front.svg",
  64105. extra: 1275/1200,
  64106. bottom: 49/1324
  64107. }
  64108. },
  64109. back: {
  64110. height: math.unit(1.9, "meters"),
  64111. weight: math.unit(75, "kg"),
  64112. name: "Back",
  64113. image: {
  64114. source: "./media/characters/sarina/back.svg",
  64115. extra: 1279/1209,
  64116. bottom: 14/1293
  64117. }
  64118. },
  64119. dressed: {
  64120. height: math.unit(1.9, "meters"),
  64121. weight: math.unit(75, "kg"),
  64122. name: "Dressed",
  64123. image: {
  64124. source: "./media/characters/sarina/dressed.svg",
  64125. extra: 1256/1187,
  64126. bottom: 56/1312
  64127. }
  64128. },
  64129. paw: {
  64130. height: math.unit(0.57, "feet"),
  64131. name: "Paw",
  64132. image: {
  64133. source: "./media/characters/sarina/paw.svg"
  64134. }
  64135. },
  64136. toering: {
  64137. height: math.unit(0.27, "feet"),
  64138. name: "Toering",
  64139. image: {
  64140. source: "./media/characters/sarina/toering.svg"
  64141. }
  64142. },
  64143. },
  64144. [
  64145. {
  64146. name: "Incognito",
  64147. height: math.unit(1.9, "meters")
  64148. },
  64149. {
  64150. name: "Home Size",
  64151. height: math.unit(160, "meters"),
  64152. default: true
  64153. },
  64154. {
  64155. name: "Mega",
  64156. height: math.unit(50, "km")
  64157. },
  64158. {
  64159. name: "Small Giga",
  64160. height: math.unit(250, "km")
  64161. },
  64162. {
  64163. name: "Giga (Preferred Size)",
  64164. height: math.unit(3000, "km")
  64165. },
  64166. {
  64167. name: "Terra",
  64168. height: math.unit(40000, "km")
  64169. },
  64170. {
  64171. name: "Terra+",
  64172. height: math.unit(400000, "km")
  64173. },
  64174. {
  64175. name: "Solar",
  64176. height: math.unit(35e6, "km")
  64177. },
  64178. {
  64179. name: "Galactic",
  64180. height: math.unit(648106, "parsecs")
  64181. },
  64182. {
  64183. name: "Universal",
  64184. height: math.unit(7, "universes")
  64185. },
  64186. {
  64187. name: "Universal+",
  64188. height: math.unit(30, "universes")
  64189. },
  64190. ]
  64191. ))
  64192. characterMakers.push(() => makeCharacter(
  64193. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64194. {
  64195. front: {
  64196. height: math.unit(5 + 6/12, "feet"),
  64197. name: "Front",
  64198. image: {
  64199. source: "./media/characters/sifray/front.svg",
  64200. extra: 722/691,
  64201. bottom: 64/786
  64202. }
  64203. },
  64204. },
  64205. [
  64206. {
  64207. name: "Normal",
  64208. height: math.unit(5 + 6/12, "feet"),
  64209. default: true
  64210. },
  64211. ]
  64212. ))
  64213. //characters
  64214. function makeCharacters() {
  64215. const results = [];
  64216. characterMakers.forEach(character => {
  64217. results.push(character());
  64218. });
  64219. return results;
  64220. }