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.
 
 
 

62395 lines
1.5 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"]
  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. }
  2299. //species
  2300. function getSpeciesInfo(speciesList) {
  2301. let result = new Set();
  2302. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2303. result.add(entry)
  2304. });
  2305. return Array.from(result);
  2306. };
  2307. function getSpeciesInfoHelper(species) {
  2308. if (!speciesData[species]) {
  2309. console.warn(species + " doesn't exist");
  2310. return [];
  2311. }
  2312. if (speciesData[species].parents) {
  2313. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2314. } else {
  2315. return [species];
  2316. }
  2317. }
  2318. characterMakers.push(() => makeCharacter(
  2319. {
  2320. name: "Fen",
  2321. species: ["crux"],
  2322. description: {
  2323. title: "Bio",
  2324. text: "Very furry. Sheds on everything."
  2325. },
  2326. tags: [
  2327. "anthro",
  2328. "goo"
  2329. ]
  2330. },
  2331. {
  2332. front: {
  2333. height: math.unit(12, "feet"),
  2334. weight: math.unit(2400, "lb"),
  2335. preyCapacity: math.unit(1, "people"),
  2336. name: "Front",
  2337. image: {
  2338. source: "./media/characters/fen/front.svg",
  2339. extra: 1804/1562,
  2340. bottom: 205/2009
  2341. },
  2342. extraAttributes: {
  2343. pawSize: {
  2344. name: "Paw Size",
  2345. power: 2,
  2346. type: "area",
  2347. base: math.unit(0.35, "m^2")
  2348. }
  2349. }
  2350. },
  2351. diving: {
  2352. height: math.unit(4.9, "meters"),
  2353. weight: math.unit(2400, "lb"),
  2354. name: "Diving",
  2355. image: {
  2356. source: "./media/characters/fen/diving.svg"
  2357. }
  2358. },
  2359. sleeby: {
  2360. height: math.unit(3.45, "meters"),
  2361. weight: math.unit(2400, "lb"),
  2362. name: "Sleeby",
  2363. image: {
  2364. source: "./media/characters/fen/sleeby.svg"
  2365. }
  2366. },
  2367. goo: {
  2368. height: math.unit(12, "feet"),
  2369. weight: math.unit(3600, "lb"),
  2370. volume: math.unit(1000, "liters"),
  2371. preyCapacity: math.unit(6, "people"),
  2372. name: "Goo",
  2373. image: {
  2374. source: "./media/characters/fen/goo.svg",
  2375. extra: 1307/1071,
  2376. bottom: 134/1441
  2377. }
  2378. },
  2379. horror: {
  2380. height: math.unit(13.6, "feet"),
  2381. weight: math.unit(2400, "lb"),
  2382. preyCapacity: math.unit(1, "people"),
  2383. name: "Horror",
  2384. image: {
  2385. source: "./media/characters/fen/horror.svg",
  2386. extra: 893/797,
  2387. bottom: 0/893
  2388. }
  2389. },
  2390. gooNsfw: {
  2391. height: math.unit(12, "feet"),
  2392. weight: math.unit(3750, "lb"),
  2393. volume: math.unit(1000, "liters"),
  2394. preyCapacity: math.unit(6, "people"),
  2395. name: "Goo (NSFW)",
  2396. image: {
  2397. source: "./media/characters/fen/goo-nsfw.svg",
  2398. extra: 1875/1734,
  2399. bottom: 122/1997
  2400. }
  2401. },
  2402. maw: {
  2403. height: math.unit(5.03, "feet"),
  2404. name: "Maw",
  2405. image: {
  2406. source: "./media/characters/fen/maw.svg"
  2407. }
  2408. },
  2409. gooCeiling: {
  2410. height: math.unit(6.6, "feet"),
  2411. weight: math.unit(3000, "lb"),
  2412. volume: math.unit(1000, "liters"),
  2413. preyCapacity: math.unit(6, "people"),
  2414. name: "Maw (Goo)",
  2415. image: {
  2416. source: "./media/characters/fen/goo-maw.svg"
  2417. }
  2418. },
  2419. paw: {
  2420. height: math.unit(3.77, "feet"),
  2421. name: "Paw",
  2422. image: {
  2423. source: "./media/characters/fen/paw.svg"
  2424. },
  2425. extraAttributes: {
  2426. "toeSize": {
  2427. name: "Toe Size",
  2428. power: 2,
  2429. type: "area",
  2430. base: math.unit(0.02875, "m^2")
  2431. },
  2432. "pawSize": {
  2433. name: "Paw Size",
  2434. power: 2,
  2435. type: "area",
  2436. base: math.unit(0.378, "m^2")
  2437. },
  2438. }
  2439. },
  2440. tail: {
  2441. height: math.unit(12.1, "feet"),
  2442. name: "Tail",
  2443. image: {
  2444. source: "./media/characters/fen/tail.svg"
  2445. }
  2446. },
  2447. tailFull: {
  2448. height: math.unit(12.1, "feet"),
  2449. name: "Full Tail",
  2450. image: {
  2451. source: "./media/characters/fen/tail-full.svg"
  2452. }
  2453. },
  2454. back: {
  2455. height: math.unit(12, "feet"),
  2456. weight: math.unit(2400, "lb"),
  2457. name: "Back",
  2458. image: {
  2459. source: "./media/characters/fen/back.svg",
  2460. },
  2461. info: {
  2462. description: {
  2463. mode: "append",
  2464. text: "\n\nHe is not currently looking at you."
  2465. }
  2466. }
  2467. },
  2468. full: {
  2469. height: math.unit(1.85, "meter"),
  2470. weight: math.unit(3200, "lb"),
  2471. preyCapacity: math.unit(3, "people"),
  2472. name: "Full",
  2473. image: {
  2474. source: "./media/characters/fen/full.svg",
  2475. extra: 1133/859,
  2476. bottom: 145/1278
  2477. },
  2478. info: {
  2479. description: {
  2480. mode: "append",
  2481. text: "\n\nMunch."
  2482. }
  2483. }
  2484. },
  2485. gooLounging: {
  2486. height: math.unit(4.53, "feet"),
  2487. weight: math.unit(3000, "lb"),
  2488. preyCapacity: math.unit(6, "people"),
  2489. name: "Goo (Lounging)",
  2490. image: {
  2491. source: "./media/characters/fen/goo-lounging.svg",
  2492. bottom: 116 / 613
  2493. }
  2494. },
  2495. lounging: {
  2496. height: math.unit(10.52, "feet"),
  2497. weight: math.unit(2400, "lb"),
  2498. name: "Lounging",
  2499. image: {
  2500. source: "./media/characters/fen/lounging.svg"
  2501. }
  2502. },
  2503. },
  2504. [
  2505. {
  2506. name: "Small",
  2507. height: math.unit(2.2428, "meter")
  2508. },
  2509. {
  2510. name: "Normal",
  2511. height: math.unit(12, "feet"),
  2512. default: true,
  2513. },
  2514. {
  2515. name: "Big",
  2516. height: math.unit(20, "feet")
  2517. },
  2518. {
  2519. name: "Minimacro",
  2520. height: math.unit(40, "feet"),
  2521. info: {
  2522. description: {
  2523. mode: "append",
  2524. text: "\n\nTOO DAMN BIG"
  2525. }
  2526. }
  2527. },
  2528. {
  2529. name: "Macro",
  2530. height: math.unit(100, "feet"),
  2531. info: {
  2532. description: {
  2533. mode: "append",
  2534. text: "\n\nTOO DAMN BIG"
  2535. }
  2536. }
  2537. },
  2538. {
  2539. name: "Megamacro",
  2540. height: math.unit(2, "miles")
  2541. },
  2542. {
  2543. name: "Gigamacro",
  2544. height: math.unit(10, "earths")
  2545. },
  2546. ]
  2547. ))
  2548. characterMakers.push(() => makeCharacter(
  2549. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2550. {
  2551. front: {
  2552. height: math.unit(183, "cm"),
  2553. weight: math.unit(80, "kg"),
  2554. name: "Front",
  2555. image: {
  2556. source: "./media/characters/sofia-fluttertail/front.svg",
  2557. bottom: 0.01,
  2558. extra: 2154 / 2081
  2559. }
  2560. },
  2561. frontAlt: {
  2562. height: math.unit(183, "cm"),
  2563. weight: math.unit(80, "kg"),
  2564. name: "Front (alt)",
  2565. image: {
  2566. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2567. }
  2568. },
  2569. back: {
  2570. height: math.unit(183, "cm"),
  2571. weight: math.unit(80, "kg"),
  2572. name: "Back",
  2573. image: {
  2574. source: "./media/characters/sofia-fluttertail/back.svg"
  2575. }
  2576. },
  2577. kneeling: {
  2578. height: math.unit(125, "cm"),
  2579. weight: math.unit(80, "kg"),
  2580. name: "Kneeling",
  2581. image: {
  2582. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2583. extra: 1033 / 977,
  2584. bottom: 23.7 / 1057
  2585. }
  2586. },
  2587. maw: {
  2588. height: math.unit(183 / 5, "cm"),
  2589. name: "Maw",
  2590. image: {
  2591. source: "./media/characters/sofia-fluttertail/maw.svg"
  2592. }
  2593. },
  2594. mawcloseup: {
  2595. height: math.unit(183 / 5 * 0.41, "cm"),
  2596. name: "Maw (Closeup)",
  2597. image: {
  2598. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2599. }
  2600. },
  2601. paws: {
  2602. height: math.unit(1.17, "feet"),
  2603. name: "Paws",
  2604. image: {
  2605. source: "./media/characters/sofia-fluttertail/paws.svg",
  2606. extra: 851 / 851,
  2607. bottom: 17 / 868
  2608. }
  2609. },
  2610. },
  2611. [
  2612. {
  2613. name: "Normal",
  2614. height: math.unit(1.83, "meter")
  2615. },
  2616. {
  2617. name: "Size Thief",
  2618. height: math.unit(18, "feet")
  2619. },
  2620. {
  2621. name: "50 Foot Collie",
  2622. height: math.unit(50, "feet")
  2623. },
  2624. {
  2625. name: "Macro",
  2626. height: math.unit(96, "feet"),
  2627. default: true
  2628. },
  2629. {
  2630. name: "Megamerger",
  2631. height: math.unit(650, "feet")
  2632. },
  2633. ]
  2634. ))
  2635. characterMakers.push(() => makeCharacter(
  2636. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2637. {
  2638. front: {
  2639. height: math.unit(7, "feet"),
  2640. weight: math.unit(100, "kg"),
  2641. name: "Front",
  2642. image: {
  2643. source: "./media/characters/march/front.svg",
  2644. extra: 1992/1851,
  2645. bottom: 39/2031
  2646. }
  2647. },
  2648. foot: {
  2649. height: math.unit(0.9, "feet"),
  2650. name: "Foot",
  2651. image: {
  2652. source: "./media/characters/march/foot.svg"
  2653. }
  2654. },
  2655. },
  2656. [
  2657. {
  2658. name: "Normal",
  2659. height: math.unit(7.9, "feet")
  2660. },
  2661. {
  2662. name: "Macro",
  2663. height: math.unit(220, "meters")
  2664. },
  2665. {
  2666. name: "Megamacro",
  2667. height: math.unit(2.98, "km"),
  2668. default: true
  2669. },
  2670. {
  2671. name: "Gigamacro",
  2672. height: math.unit(15963, "km")
  2673. },
  2674. {
  2675. name: "Teramacro",
  2676. height: math.unit(2980000000, "km")
  2677. },
  2678. {
  2679. name: "Examacro",
  2680. height: math.unit(250, "parsecs")
  2681. },
  2682. ]
  2683. ))
  2684. characterMakers.push(() => makeCharacter(
  2685. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2686. {
  2687. front: {
  2688. height: math.unit(6, "feet"),
  2689. weight: math.unit(60, "kg"),
  2690. name: "Front",
  2691. image: {
  2692. source: "./media/characters/noir/front.svg",
  2693. extra: 1,
  2694. bottom: 0.032
  2695. }
  2696. },
  2697. },
  2698. [
  2699. {
  2700. name: "Normal",
  2701. height: math.unit(6.6, "feet")
  2702. },
  2703. {
  2704. name: "Macro",
  2705. height: math.unit(500, "feet")
  2706. },
  2707. {
  2708. name: "Megamacro",
  2709. height: math.unit(2.5, "km"),
  2710. default: true
  2711. },
  2712. {
  2713. name: "Gigamacro",
  2714. height: math.unit(22500, "km")
  2715. },
  2716. {
  2717. name: "Teramacro",
  2718. height: math.unit(2500000000, "km")
  2719. },
  2720. {
  2721. name: "Examacro",
  2722. height: math.unit(200, "parsecs")
  2723. },
  2724. ]
  2725. ))
  2726. characterMakers.push(() => makeCharacter(
  2727. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2728. {
  2729. front: {
  2730. height: math.unit(7, "feet"),
  2731. weight: math.unit(100, "kg"),
  2732. name: "Front",
  2733. image: {
  2734. source: "./media/characters/okuri/front.svg",
  2735. extra: 739/665,
  2736. bottom: 39/778
  2737. }
  2738. },
  2739. back: {
  2740. height: math.unit(7, "feet"),
  2741. weight: math.unit(100, "kg"),
  2742. name: "Back",
  2743. image: {
  2744. source: "./media/characters/okuri/back.svg",
  2745. extra: 734/653,
  2746. bottom: 13/747
  2747. }
  2748. },
  2749. sitting: {
  2750. height: math.unit(2.95, "feet"),
  2751. weight: math.unit(100, "kg"),
  2752. name: "Sitting",
  2753. image: {
  2754. source: "./media/characters/okuri/sitting.svg",
  2755. extra: 370/318,
  2756. bottom: 99/469
  2757. }
  2758. },
  2759. },
  2760. [
  2761. {
  2762. name: "Smallest",
  2763. height: math.unit(5 + 2/12, "feet")
  2764. },
  2765. {
  2766. name: "Smaller",
  2767. height: math.unit(300, "feet")
  2768. },
  2769. {
  2770. name: "Small",
  2771. height: math.unit(1000, "feet")
  2772. },
  2773. {
  2774. name: "Macro",
  2775. height: math.unit(1, "mile")
  2776. },
  2777. {
  2778. name: "Mega Macro (Small)",
  2779. height: math.unit(20, "km")
  2780. },
  2781. {
  2782. name: "Mega Macro (Large)",
  2783. height: math.unit(600, "km")
  2784. },
  2785. {
  2786. name: "Giga Macro",
  2787. height: math.unit(10000, "km")
  2788. },
  2789. {
  2790. name: "Normal",
  2791. height: math.unit(577560, "km"),
  2792. default: true
  2793. },
  2794. {
  2795. name: "Large",
  2796. height: math.unit(4, "galaxies")
  2797. },
  2798. {
  2799. name: "Largest",
  2800. height: math.unit(15, "multiverses")
  2801. },
  2802. ]
  2803. ))
  2804. characterMakers.push(() => makeCharacter(
  2805. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2806. {
  2807. front: {
  2808. height: math.unit(7, "feet"),
  2809. weight: math.unit(100, "kg"),
  2810. name: "Front",
  2811. image: {
  2812. source: "./media/characters/manny/front.svg",
  2813. extra: 1,
  2814. bottom: 0.06
  2815. }
  2816. },
  2817. back: {
  2818. height: math.unit(7, "feet"),
  2819. weight: math.unit(100, "kg"),
  2820. name: "Back",
  2821. image: {
  2822. source: "./media/characters/manny/back.svg",
  2823. extra: 1,
  2824. bottom: 0.014
  2825. }
  2826. },
  2827. },
  2828. [
  2829. {
  2830. name: "Normal",
  2831. height: math.unit(7, "feet"),
  2832. },
  2833. {
  2834. name: "Macro",
  2835. height: math.unit(78, "feet"),
  2836. default: true
  2837. },
  2838. {
  2839. name: "Macro+",
  2840. height: math.unit(300, "meters")
  2841. },
  2842. {
  2843. name: "Macro++",
  2844. height: math.unit(2400, "meters")
  2845. },
  2846. {
  2847. name: "Megamacro",
  2848. height: math.unit(5167, "meters")
  2849. },
  2850. {
  2851. name: "Gigamacro",
  2852. height: math.unit(41769, "miles")
  2853. },
  2854. ]
  2855. ))
  2856. characterMakers.push(() => makeCharacter(
  2857. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2858. {
  2859. front: {
  2860. height: math.unit(7, "feet"),
  2861. weight: math.unit(100, "kg"),
  2862. name: "Front",
  2863. image: {
  2864. source: "./media/characters/adake/front-1.svg"
  2865. }
  2866. },
  2867. frontAlt: {
  2868. height: math.unit(7, "feet"),
  2869. weight: math.unit(100, "kg"),
  2870. name: "Front (Alt)",
  2871. image: {
  2872. source: "./media/characters/adake/front-2.svg",
  2873. extra: 1,
  2874. bottom: 0.01
  2875. }
  2876. },
  2877. back: {
  2878. height: math.unit(7, "feet"),
  2879. weight: math.unit(100, "kg"),
  2880. name: "Back",
  2881. image: {
  2882. source: "./media/characters/adake/back.svg",
  2883. }
  2884. },
  2885. kneel: {
  2886. height: math.unit(5.385, "feet"),
  2887. weight: math.unit(100, "kg"),
  2888. name: "Kneeling",
  2889. image: {
  2890. source: "./media/characters/adake/kneel.svg",
  2891. bottom: 0.052
  2892. }
  2893. },
  2894. },
  2895. [
  2896. {
  2897. name: "Normal",
  2898. height: math.unit(7, "feet"),
  2899. },
  2900. {
  2901. name: "Macro",
  2902. height: math.unit(78, "feet"),
  2903. default: true
  2904. },
  2905. {
  2906. name: "Macro+",
  2907. height: math.unit(300, "meters")
  2908. },
  2909. {
  2910. name: "Macro++",
  2911. height: math.unit(2400, "meters")
  2912. },
  2913. {
  2914. name: "Megamacro",
  2915. height: math.unit(5167, "meters")
  2916. },
  2917. {
  2918. name: "Gigamacro",
  2919. height: math.unit(41769, "miles")
  2920. },
  2921. ]
  2922. ))
  2923. characterMakers.push(() => makeCharacter(
  2924. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2925. {
  2926. front: {
  2927. height: math.unit(1.65, "meters"),
  2928. weight: math.unit(50, "kg"),
  2929. name: "Front",
  2930. image: {
  2931. source: "./media/characters/elijah/front.svg",
  2932. extra: 858 / 830,
  2933. bottom: 95.5 / 953.8559
  2934. }
  2935. },
  2936. back: {
  2937. height: math.unit(1.65, "meters"),
  2938. weight: math.unit(50, "kg"),
  2939. name: "Back",
  2940. image: {
  2941. source: "./media/characters/elijah/back.svg",
  2942. extra: 895 / 850,
  2943. bottom: 5.3 / 897.956
  2944. }
  2945. },
  2946. frontNsfw: {
  2947. height: math.unit(1.65, "meters"),
  2948. weight: math.unit(50, "kg"),
  2949. name: "Front (NSFW)",
  2950. image: {
  2951. source: "./media/characters/elijah/front-nsfw.svg",
  2952. extra: 858 / 830,
  2953. bottom: 95.5 / 953.8559
  2954. }
  2955. },
  2956. backNsfw: {
  2957. height: math.unit(1.65, "meters"),
  2958. weight: math.unit(50, "kg"),
  2959. name: "Back (NSFW)",
  2960. image: {
  2961. source: "./media/characters/elijah/back-nsfw.svg",
  2962. extra: 895 / 850,
  2963. bottom: 5.3 / 897.956
  2964. }
  2965. },
  2966. dick: {
  2967. height: math.unit(1, "feet"),
  2968. name: "Dick",
  2969. image: {
  2970. source: "./media/characters/elijah/dick.svg"
  2971. }
  2972. },
  2973. beakOpen: {
  2974. height: math.unit(1.25, "feet"),
  2975. name: "Beak (Open)",
  2976. image: {
  2977. source: "./media/characters/elijah/beak-open.svg"
  2978. }
  2979. },
  2980. beakShut: {
  2981. height: math.unit(1.25, "feet"),
  2982. name: "Beak (Shut)",
  2983. image: {
  2984. source: "./media/characters/elijah/beak-shut.svg"
  2985. }
  2986. },
  2987. footFlexing: {
  2988. height: math.unit(1.61, "feet"),
  2989. name: "Foot (Flexing)",
  2990. image: {
  2991. source: "./media/characters/elijah/foot-flexing.svg"
  2992. }
  2993. },
  2994. footStepping: {
  2995. height: math.unit(1.44, "feet"),
  2996. name: "Foot (Stepping)",
  2997. image: {
  2998. source: "./media/characters/elijah/foot-stepping.svg"
  2999. }
  3000. },
  3001. plantigradeLeg: {
  3002. height: math.unit(2.34, "feet"),
  3003. name: "Plantigrade Leg",
  3004. image: {
  3005. source: "./media/characters/elijah/plantigrade-leg.svg"
  3006. }
  3007. },
  3008. plantigradeFootLeft: {
  3009. height: math.unit(0.9, "feet"),
  3010. name: "Plantigrade Foot (Left)",
  3011. image: {
  3012. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3013. }
  3014. },
  3015. plantigradeFootRight: {
  3016. height: math.unit(0.9, "feet"),
  3017. name: "Plantigrade Foot (Right)",
  3018. image: {
  3019. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3020. }
  3021. },
  3022. },
  3023. [
  3024. {
  3025. name: "Normal",
  3026. height: math.unit(1.65, "meters")
  3027. },
  3028. {
  3029. name: "Macro",
  3030. height: math.unit(55, "meters"),
  3031. default: true
  3032. },
  3033. {
  3034. name: "Macro+",
  3035. height: math.unit(105, "meters")
  3036. },
  3037. ]
  3038. ))
  3039. characterMakers.push(() => makeCharacter(
  3040. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3041. {
  3042. front: {
  3043. height: math.unit(7 + 2/12, "feet"),
  3044. weight: math.unit(320, "kg"),
  3045. preyCapacity: math.unit(0.276549935, "people"),
  3046. name: "Front",
  3047. image: {
  3048. source: "./media/characters/rai/front.svg",
  3049. extra: 1802/1696,
  3050. bottom: 68/1870
  3051. },
  3052. form: "anthro",
  3053. default: true
  3054. },
  3055. frontDressed: {
  3056. height: math.unit(7 + 2/12, "feet"),
  3057. weight: math.unit(320, "kg"),
  3058. preyCapacity: math.unit(0.276549935, "people"),
  3059. name: "Front (Dressed)",
  3060. image: {
  3061. source: "./media/characters/rai/front-dressed.svg",
  3062. extra: 1802/1696,
  3063. bottom: 68/1870
  3064. },
  3065. form: "anthro"
  3066. },
  3067. side: {
  3068. height: math.unit(7 + 2/12, "feet"),
  3069. weight: math.unit(320, "kg"),
  3070. preyCapacity: math.unit(0.276549935, "people"),
  3071. name: "Side",
  3072. image: {
  3073. source: "./media/characters/rai/side.svg",
  3074. extra: 1789/1710,
  3075. bottom: 115/1904
  3076. },
  3077. form: "anthro"
  3078. },
  3079. back: {
  3080. height: math.unit(7 + 2/12, "feet"),
  3081. weight: math.unit(320, "kg"),
  3082. preyCapacity: math.unit(0.276549935, "people"),
  3083. name: "Back",
  3084. image: {
  3085. source: "./media/characters/rai/back.svg",
  3086. extra: 1770/1707,
  3087. bottom: 28/1798
  3088. },
  3089. form: "anthro"
  3090. },
  3091. feral: {
  3092. height: math.unit(9.5, "feet"),
  3093. weight: math.unit(640, "kg"),
  3094. preyCapacity: math.unit(4, "people"),
  3095. name: "Feral",
  3096. image: {
  3097. source: "./media/characters/rai/feral.svg",
  3098. extra: 945/553,
  3099. bottom: 176/1121
  3100. },
  3101. form: "feral",
  3102. default: true
  3103. },
  3104. dragon: {
  3105. height: math.unit(23, "feet"),
  3106. weight: math.unit(50000, "lb"),
  3107. name: "Dragon",
  3108. image: {
  3109. source: "./media/characters/rai/dragon.svg",
  3110. extra: 2498 / 2030,
  3111. bottom: 85.2 / 2584
  3112. },
  3113. form: "dragon",
  3114. default: true
  3115. },
  3116. maw: {
  3117. height: math.unit(1.69, "feet"),
  3118. name: "Maw",
  3119. image: {
  3120. source: "./media/characters/rai/maw.svg"
  3121. },
  3122. form: "anthro"
  3123. },
  3124. },
  3125. [
  3126. {
  3127. name: "Normal",
  3128. height: math.unit(7 + 2/12, "feet"),
  3129. form: "anthro"
  3130. },
  3131. {
  3132. name: "Big",
  3133. height: math.unit(11, "feet"),
  3134. form: "anthro"
  3135. },
  3136. {
  3137. name: "Minimacro",
  3138. height: math.unit(77, "feet"),
  3139. form: "anthro"
  3140. },
  3141. {
  3142. name: "Macro",
  3143. height: math.unit(302, "feet"),
  3144. default: true,
  3145. form: "anthro"
  3146. },
  3147. {
  3148. name: "Normal",
  3149. height: math.unit(9.5, "feet"),
  3150. form: "feral",
  3151. default: true
  3152. },
  3153. {
  3154. name: "Normal",
  3155. height: math.unit(23, "feet"),
  3156. form: "dragon",
  3157. default: true
  3158. }
  3159. ],
  3160. {
  3161. "anthro": {
  3162. name: "Anthro",
  3163. default: true
  3164. },
  3165. "feral": {
  3166. name: "Feral",
  3167. },
  3168. "dragon": {
  3169. name: "Dragon",
  3170. },
  3171. }
  3172. ))
  3173. characterMakers.push(() => makeCharacter(
  3174. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3175. {
  3176. frontDressed: {
  3177. height: math.unit(216, "feet"),
  3178. weight: math.unit(7000000, "lb"),
  3179. preyCapacity: math.unit(1321, "people"),
  3180. name: "Front (Dressed)",
  3181. image: {
  3182. source: "./media/characters/jazzy/front-dressed.svg",
  3183. extra: 2738 / 2651,
  3184. bottom: 41.8 / 2786
  3185. }
  3186. },
  3187. backDressed: {
  3188. height: math.unit(216, "feet"),
  3189. weight: math.unit(7000000, "lb"),
  3190. preyCapacity: math.unit(1321, "people"),
  3191. name: "Back (Dressed)",
  3192. image: {
  3193. source: "./media/characters/jazzy/back-dressed.svg",
  3194. extra: 2775 / 2673,
  3195. bottom: 36.8 / 2817
  3196. }
  3197. },
  3198. front: {
  3199. height: math.unit(216, "feet"),
  3200. weight: math.unit(7000000, "lb"),
  3201. preyCapacity: math.unit(1321, "people"),
  3202. name: "Front",
  3203. image: {
  3204. source: "./media/characters/jazzy/front.svg",
  3205. extra: 2738 / 2651,
  3206. bottom: 41.8 / 2786
  3207. }
  3208. },
  3209. back: {
  3210. height: math.unit(216, "feet"),
  3211. weight: math.unit(7000000, "lb"),
  3212. preyCapacity: math.unit(1321, "people"),
  3213. name: "Back",
  3214. image: {
  3215. source: "./media/characters/jazzy/back.svg",
  3216. extra: 2775 / 2673,
  3217. bottom: 36.8 / 2817
  3218. }
  3219. },
  3220. maw: {
  3221. height: math.unit(20, "feet"),
  3222. name: "Maw",
  3223. image: {
  3224. source: "./media/characters/jazzy/maw.svg"
  3225. }
  3226. },
  3227. paws: {
  3228. height: math.unit(27.5, "feet"),
  3229. name: "Paws",
  3230. image: {
  3231. source: "./media/characters/jazzy/paws.svg"
  3232. }
  3233. },
  3234. eye: {
  3235. height: math.unit(4.4, "feet"),
  3236. name: "Eye",
  3237. image: {
  3238. source: "./media/characters/jazzy/eye.svg"
  3239. }
  3240. },
  3241. droneOffense: {
  3242. height: math.unit(9.5, "inches"),
  3243. name: "Drone (Offense)",
  3244. image: {
  3245. source: "./media/characters/jazzy/drone-offense.svg"
  3246. }
  3247. },
  3248. droneRecon: {
  3249. height: math.unit(9.5, "inches"),
  3250. name: "Drone (Recon)",
  3251. image: {
  3252. source: "./media/characters/jazzy/drone-recon.svg"
  3253. }
  3254. },
  3255. droneDefense: {
  3256. height: math.unit(9.5, "inches"),
  3257. name: "Drone (Defense)",
  3258. image: {
  3259. source: "./media/characters/jazzy/drone-defense.svg"
  3260. }
  3261. },
  3262. },
  3263. [
  3264. {
  3265. name: "Macro",
  3266. height: math.unit(216, "feet"),
  3267. default: true
  3268. },
  3269. ]
  3270. ))
  3271. characterMakers.push(() => makeCharacter(
  3272. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3273. {
  3274. front: {
  3275. height: math.unit(9 + 6/12, "feet"),
  3276. weight: math.unit(700, "lb"),
  3277. name: "Front",
  3278. image: {
  3279. source: "./media/characters/flamm/front.svg",
  3280. extra: 1736/1596,
  3281. bottom: 93/1829
  3282. }
  3283. },
  3284. buff: {
  3285. height: math.unit(9 + 6/12, "feet"),
  3286. weight: math.unit(950, "lb"),
  3287. name: "Buff",
  3288. image: {
  3289. source: "./media/characters/flamm/buff.svg",
  3290. extra: 3018/2874,
  3291. bottom: 221/3239
  3292. }
  3293. },
  3294. },
  3295. [
  3296. {
  3297. name: "Normal",
  3298. height: math.unit(9.5, "feet")
  3299. },
  3300. {
  3301. name: "Macro",
  3302. height: math.unit(200, "feet"),
  3303. default: true
  3304. },
  3305. ]
  3306. ))
  3307. characterMakers.push(() => makeCharacter(
  3308. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3309. {
  3310. front: {
  3311. height: math.unit(5 + 3/12, "feet"),
  3312. weight: math.unit(60, "kg"),
  3313. name: "Front",
  3314. image: {
  3315. source: "./media/characters/zephiro/front.svg",
  3316. extra: 1873/1761,
  3317. bottom: 147/2020
  3318. }
  3319. },
  3320. side: {
  3321. height: math.unit(5 + 3/12, "feet"),
  3322. weight: math.unit(60, "kg"),
  3323. name: "Side",
  3324. image: {
  3325. source: "./media/characters/zephiro/side.svg",
  3326. extra: 1929/1827,
  3327. bottom: 65/1994
  3328. }
  3329. },
  3330. back: {
  3331. height: math.unit(5 + 3/12, "feet"),
  3332. weight: math.unit(60, "kg"),
  3333. name: "Back",
  3334. image: {
  3335. source: "./media/characters/zephiro/back.svg",
  3336. extra: 1926/1816,
  3337. bottom: 41/1967
  3338. }
  3339. },
  3340. hand: {
  3341. height: math.unit(0.68, "feet"),
  3342. name: "Hand",
  3343. image: {
  3344. source: "./media/characters/zephiro/hand.svg"
  3345. }
  3346. },
  3347. paw: {
  3348. height: math.unit(1, "feet"),
  3349. name: "Paw",
  3350. image: {
  3351. source: "./media/characters/zephiro/paw.svg"
  3352. }
  3353. },
  3354. beans: {
  3355. height: math.unit(0.93, "feet"),
  3356. name: "Beans",
  3357. image: {
  3358. source: "./media/characters/zephiro/beans.svg"
  3359. }
  3360. },
  3361. },
  3362. [
  3363. {
  3364. name: "Micro",
  3365. height: math.unit(3, "inches")
  3366. },
  3367. {
  3368. name: "Normal",
  3369. height: math.unit(5 + 3 / 12, "feet"),
  3370. default: true
  3371. },
  3372. {
  3373. name: "Macro",
  3374. height: math.unit(118, "feet")
  3375. },
  3376. ]
  3377. ))
  3378. characterMakers.push(() => makeCharacter(
  3379. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3380. {
  3381. front: {
  3382. height: math.unit(5, "feet"),
  3383. weight: math.unit(90, "kg"),
  3384. preyCapacity: math.unit(14, "people"),
  3385. name: "Front",
  3386. image: {
  3387. source: "./media/characters/fory/front.svg",
  3388. extra: 2862 / 2674,
  3389. bottom: 180 / 3043.8
  3390. },
  3391. form: "weaselbun",
  3392. default: true,
  3393. extraAttributes: {
  3394. "pawSize": {
  3395. name: "Paw Size",
  3396. power: 2,
  3397. type: "area",
  3398. base: math.unit(0.1596, "m^2")
  3399. },
  3400. "pawLength": {
  3401. name: "Paw Length",
  3402. power: 1,
  3403. type: "length",
  3404. base: math.unit(0.7, "m")
  3405. }
  3406. }
  3407. },
  3408. back: {
  3409. height: math.unit(5, "feet"),
  3410. weight: math.unit(90, "kg"),
  3411. preyCapacity: math.unit(14, "people"),
  3412. name: "Back",
  3413. image: {
  3414. source: "./media/characters/fory/back.svg",
  3415. extra: 1790/1672,
  3416. bottom: 84/1874
  3417. },
  3418. form: "weaselbun",
  3419. extraAttributes: {
  3420. "pawSize": {
  3421. name: "Paw Size",
  3422. power: 2,
  3423. type: "area",
  3424. base: math.unit(0.1596, "m^2")
  3425. },
  3426. "pawLength": {
  3427. name: "Paw Length",
  3428. power: 1,
  3429. type: "length",
  3430. base: math.unit(0.7, "m")
  3431. }
  3432. }
  3433. },
  3434. paw: {
  3435. height: math.unit(2.14, "feet"),
  3436. name: "Paw",
  3437. image: {
  3438. source: "./media/characters/fory/paw.svg"
  3439. },
  3440. form: "weaselbun",
  3441. extraAttributes: {
  3442. "pawSize": {
  3443. name: "Paw Size",
  3444. power: 2,
  3445. type: "area",
  3446. base: math.unit(0.1596, "m^2")
  3447. },
  3448. "pawLength": {
  3449. name: "Paw Length",
  3450. power: 1,
  3451. type: "length",
  3452. base: math.unit(0.48, "m")
  3453. }
  3454. }
  3455. },
  3456. bunBack: {
  3457. height: math.unit(3, "feet"),
  3458. weight: math.unit(20, "kg"),
  3459. preyCapacity: math.unit(3, "people"),
  3460. name: "Back",
  3461. image: {
  3462. source: "./media/characters/fory/bun-back.svg",
  3463. extra: 1749/1564,
  3464. bottom: 246/1995
  3465. },
  3466. form: "bun",
  3467. default: true,
  3468. extraAttributes: {
  3469. "pawSize": {
  3470. name: "Paw Size",
  3471. power: 2,
  3472. type: "area",
  3473. base: math.unit(0.072, "m^2")
  3474. },
  3475. "pawLength": {
  3476. name: "Paw Length",
  3477. power: 1,
  3478. type: "length",
  3479. base: math.unit(0.45, "m")
  3480. }
  3481. }
  3482. },
  3483. },
  3484. [
  3485. {
  3486. name: "Normal",
  3487. height: math.unit(5, "feet"),
  3488. form: "weaselbun"
  3489. },
  3490. {
  3491. name: "Macro",
  3492. height: math.unit(50, "feet"),
  3493. default: true,
  3494. form: "weaselbun"
  3495. },
  3496. {
  3497. name: "Megamacro",
  3498. height: math.unit(10, "miles"),
  3499. form: "weaselbun"
  3500. },
  3501. {
  3502. name: "Gigamacro",
  3503. height: math.unit(5, "earths"),
  3504. form: "weaselbun"
  3505. },
  3506. {
  3507. name: "Normal",
  3508. height: math.unit(3, "feet"),
  3509. default: true,
  3510. form: "bun"
  3511. },
  3512. {
  3513. name: "Fun-Size",
  3514. height: math.unit(12, "feet"),
  3515. form: "bun"
  3516. },
  3517. {
  3518. name: "Macro",
  3519. height: math.unit(100, "feet"),
  3520. form: "bun"
  3521. },
  3522. {
  3523. name: "Planetary",
  3524. height: math.unit(3, "earths"),
  3525. form: "bun"
  3526. },
  3527. ],
  3528. {
  3529. "weaselbun": {
  3530. name: "Weaselbun",
  3531. default: true
  3532. },
  3533. "bun": {
  3534. name: "Bun",
  3535. },
  3536. }
  3537. ))
  3538. characterMakers.push(() => makeCharacter(
  3539. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3540. {
  3541. front: {
  3542. height: math.unit(7, "feet"),
  3543. weight: math.unit(90, "kg"),
  3544. name: "Front",
  3545. image: {
  3546. source: "./media/characters/kurrikage/front.svg",
  3547. extra: 1845/1733,
  3548. bottom: 119/1964
  3549. }
  3550. },
  3551. back: {
  3552. height: math.unit(7, "feet"),
  3553. weight: math.unit(90, "kg"),
  3554. name: "Back",
  3555. image: {
  3556. source: "./media/characters/kurrikage/back.svg",
  3557. extra: 1790/1677,
  3558. bottom: 61/1851
  3559. }
  3560. },
  3561. dressed: {
  3562. height: math.unit(7, "feet"),
  3563. weight: math.unit(90, "kg"),
  3564. name: "Dressed",
  3565. image: {
  3566. source: "./media/characters/kurrikage/dressed.svg",
  3567. extra: 1845/1733,
  3568. bottom: 119/1964
  3569. }
  3570. },
  3571. foot: {
  3572. height: math.unit(1.5, "feet"),
  3573. name: "Foot",
  3574. image: {
  3575. source: "./media/characters/kurrikage/foot.svg"
  3576. }
  3577. },
  3578. staff: {
  3579. height: math.unit(6.7, "feet"),
  3580. name: "Staff",
  3581. image: {
  3582. source: "./media/characters/kurrikage/staff.svg"
  3583. }
  3584. },
  3585. peek: {
  3586. height: math.unit(1.05, "feet"),
  3587. name: "Peeking",
  3588. image: {
  3589. source: "./media/characters/kurrikage/peek.svg",
  3590. bottom: 0.08
  3591. }
  3592. },
  3593. },
  3594. [
  3595. {
  3596. name: "Normal",
  3597. height: math.unit(12, "feet"),
  3598. default: true
  3599. },
  3600. {
  3601. name: "Big",
  3602. height: math.unit(20, "feet")
  3603. },
  3604. {
  3605. name: "Macro",
  3606. height: math.unit(500, "feet")
  3607. },
  3608. {
  3609. name: "Megamacro",
  3610. height: math.unit(20, "miles")
  3611. },
  3612. ]
  3613. ))
  3614. characterMakers.push(() => makeCharacter(
  3615. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3616. {
  3617. front: {
  3618. height: math.unit(6, "feet"),
  3619. weight: math.unit(75, "kg"),
  3620. name: "Front",
  3621. image: {
  3622. source: "./media/characters/shingo/front.svg",
  3623. extra: 1900/1825,
  3624. bottom: 82/1982
  3625. }
  3626. },
  3627. side: {
  3628. height: math.unit(6, "feet"),
  3629. weight: math.unit(75, "kg"),
  3630. name: "Side",
  3631. image: {
  3632. source: "./media/characters/shingo/side.svg",
  3633. extra: 1930/1865,
  3634. bottom: 16/1946
  3635. }
  3636. },
  3637. back: {
  3638. height: math.unit(6, "feet"),
  3639. weight: math.unit(75, "kg"),
  3640. name: "Back",
  3641. image: {
  3642. source: "./media/characters/shingo/back.svg",
  3643. extra: 1922/1852,
  3644. bottom: 16/1938
  3645. }
  3646. },
  3647. frontDressed: {
  3648. height: math.unit(6, "feet"),
  3649. weight: math.unit(150, "lb"),
  3650. name: "Front-dressed",
  3651. image: {
  3652. source: "./media/characters/shingo/front-dressed.svg",
  3653. extra: 1900/1825,
  3654. bottom: 82/1982
  3655. }
  3656. },
  3657. paw: {
  3658. height: math.unit(1.29, "feet"),
  3659. name: "Paw",
  3660. image: {
  3661. source: "./media/characters/shingo/paw.svg"
  3662. }
  3663. },
  3664. hand: {
  3665. height: math.unit(1.07, "feet"),
  3666. name: "Hand",
  3667. image: {
  3668. source: "./media/characters/shingo/hand.svg"
  3669. }
  3670. },
  3671. frontAlt: {
  3672. height: math.unit(6, "feet"),
  3673. weight: math.unit(75, "kg"),
  3674. name: "Front (Alt)",
  3675. image: {
  3676. source: "./media/characters/shingo/front-alt.svg",
  3677. extra: 3511 / 3338,
  3678. bottom: 0.005
  3679. }
  3680. },
  3681. frontAlt2: {
  3682. height: math.unit(6, "feet"),
  3683. weight: math.unit(75, "kg"),
  3684. name: "Front (Alt 2)",
  3685. image: {
  3686. source: "./media/characters/shingo/front-alt-2.svg",
  3687. extra: 706/681,
  3688. bottom: 11/717
  3689. }
  3690. },
  3691. pawAlt: {
  3692. height: math.unit(1, "feet"),
  3693. name: "Paw (Alt)",
  3694. image: {
  3695. source: "./media/characters/shingo/paw-alt.svg"
  3696. }
  3697. },
  3698. },
  3699. [
  3700. {
  3701. name: "Micro",
  3702. height: math.unit(4, "inches")
  3703. },
  3704. {
  3705. name: "Normal",
  3706. height: math.unit(6, "feet"),
  3707. default: true
  3708. },
  3709. {
  3710. name: "Macro",
  3711. height: math.unit(108, "feet")
  3712. },
  3713. {
  3714. name: "Macro+",
  3715. height: math.unit(1500, "feet")
  3716. },
  3717. ]
  3718. ))
  3719. characterMakers.push(() => makeCharacter(
  3720. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3721. {
  3722. side: {
  3723. height: math.unit(6, "feet"),
  3724. weight: math.unit(75, "kg"),
  3725. name: "Side",
  3726. image: {
  3727. source: "./media/characters/aigey/side.svg"
  3728. }
  3729. },
  3730. },
  3731. [
  3732. {
  3733. name: "Macro",
  3734. height: math.unit(200, "feet"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Megamacro",
  3739. height: math.unit(100, "miles")
  3740. },
  3741. ]
  3742. )
  3743. )
  3744. characterMakers.push(() => makeCharacter(
  3745. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3746. {
  3747. front: {
  3748. height: math.unit(5 + 5 / 12, "feet"),
  3749. weight: math.unit(75, "kg"),
  3750. name: "Front",
  3751. image: {
  3752. source: "./media/characters/natasha/front.svg",
  3753. extra: 859 / 824,
  3754. bottom: 23 / 879.6
  3755. }
  3756. },
  3757. frontNsfw: {
  3758. height: math.unit(5 + 5 / 12, "feet"),
  3759. weight: math.unit(75, "kg"),
  3760. name: "Front (NSFW)",
  3761. image: {
  3762. source: "./media/characters/natasha/front-nsfw.svg",
  3763. extra: 859 / 824,
  3764. bottom: 23 / 879.6
  3765. }
  3766. },
  3767. frontErect: {
  3768. height: math.unit(5 + 5 / 12, "feet"),
  3769. weight: math.unit(75, "kg"),
  3770. name: "Front (Erect)",
  3771. image: {
  3772. source: "./media/characters/natasha/front-erect.svg",
  3773. extra: 859 / 824,
  3774. bottom: 23 / 879.6
  3775. }
  3776. },
  3777. back: {
  3778. height: math.unit(5 + 5 / 12, "feet"),
  3779. weight: math.unit(75, "kg"),
  3780. name: "Back",
  3781. image: {
  3782. source: "./media/characters/natasha/back.svg",
  3783. extra: 887.9 / 852.6,
  3784. bottom: 9.7 / 896.4
  3785. }
  3786. },
  3787. backAlt: {
  3788. height: math.unit(5 + 5 / 12, "feet"),
  3789. weight: math.unit(75, "kg"),
  3790. name: "Back (Alt)",
  3791. image: {
  3792. source: "./media/characters/natasha/back-alt.svg",
  3793. extra: 1236.7 / 1192,
  3794. bottom: 22.3 / 1258.2
  3795. }
  3796. },
  3797. dick: {
  3798. height: math.unit(1.772, "feet"),
  3799. name: "Dick",
  3800. image: {
  3801. source: "./media/characters/natasha/dick.svg"
  3802. }
  3803. },
  3804. paw: {
  3805. height: math.unit(0.250, "meters"),
  3806. name: "Paw",
  3807. image: {
  3808. source: "./media/characters/natasha/paw.svg"
  3809. },
  3810. extraAttributes: {
  3811. "toeSize": {
  3812. name: "Toe Size",
  3813. power: 2,
  3814. type: "area",
  3815. base: math.unit(0.0024, "m^2")
  3816. },
  3817. "padSize": {
  3818. name: "Pad Size",
  3819. power: 2,
  3820. type: "area",
  3821. base: math.unit(0.00889, "m^2")
  3822. },
  3823. "pawSize": {
  3824. name: "Paw Size",
  3825. power: 2,
  3826. type: "area",
  3827. base: math.unit(0.023667, "m^2")
  3828. },
  3829. }
  3830. },
  3831. },
  3832. [
  3833. {
  3834. name: "Shortstack",
  3835. height: math.unit(3, "feet"),
  3836. default: true
  3837. },
  3838. {
  3839. name: "Normal",
  3840. height: math.unit(5 + 5 / 12, "feet")
  3841. },
  3842. {
  3843. name: "Large",
  3844. height: math.unit(12, "feet")
  3845. },
  3846. {
  3847. name: "Macro",
  3848. height: math.unit(100, "feet")
  3849. },
  3850. {
  3851. name: "Macro+",
  3852. height: math.unit(260, "feet")
  3853. },
  3854. {
  3855. name: "Macro++",
  3856. height: math.unit(1, "mile")
  3857. },
  3858. ]
  3859. ))
  3860. characterMakers.push(() => makeCharacter(
  3861. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3862. {
  3863. front: {
  3864. height: math.unit(6, "feet"),
  3865. weight: math.unit(75, "kg"),
  3866. name: "Front",
  3867. image: {
  3868. source: "./media/characters/malik/front.svg",
  3869. extra: 1750/1561,
  3870. bottom: 80/1830
  3871. },
  3872. extraAttributes: {
  3873. "toeSize": {
  3874. name: "Toe Size",
  3875. power: 2,
  3876. type: "area",
  3877. base: math.unit(0.0159, "m^2")
  3878. },
  3879. "pawSize": {
  3880. name: "Paw Size",
  3881. power: 2,
  3882. type: "area",
  3883. base: math.unit(0.09834, "m^2")
  3884. },
  3885. }
  3886. },
  3887. side: {
  3888. height: math.unit(6, "feet"),
  3889. weight: math.unit(75, "kg"),
  3890. name: "Side",
  3891. image: {
  3892. source: "./media/characters/malik/side.svg",
  3893. extra: 1802/1685,
  3894. bottom: 42/1844
  3895. },
  3896. extraAttributes: {
  3897. "toeSize": {
  3898. name: "Toe Size",
  3899. power: 2,
  3900. type: "area",
  3901. base: math.unit(0.0159, "m^2")
  3902. },
  3903. "pawSize": {
  3904. name: "Paw Size",
  3905. power: 2,
  3906. type: "area",
  3907. base: math.unit(0.09834, "m^2")
  3908. },
  3909. }
  3910. },
  3911. back: {
  3912. height: math.unit(6, "feet"),
  3913. weight: math.unit(75, "kg"),
  3914. name: "Back",
  3915. image: {
  3916. source: "./media/characters/malik/back.svg",
  3917. extra: 1803/1607,
  3918. bottom: 33/1836
  3919. },
  3920. extraAttributes: {
  3921. "toeSize": {
  3922. name: "Toe Size",
  3923. power: 2,
  3924. type: "area",
  3925. base: math.unit(0.0159, "m^2")
  3926. },
  3927. "pawSize": {
  3928. name: "Paw Size",
  3929. power: 2,
  3930. type: "area",
  3931. base: math.unit(0.09834, "m^2")
  3932. },
  3933. }
  3934. },
  3935. },
  3936. [
  3937. {
  3938. name: "Macro",
  3939. height: math.unit(156, "feet"),
  3940. default: true
  3941. },
  3942. {
  3943. name: "Macro+",
  3944. height: math.unit(1188, "feet")
  3945. },
  3946. ]
  3947. ))
  3948. characterMakers.push(() => makeCharacter(
  3949. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3950. {
  3951. front: {
  3952. height: math.unit(6, "feet"),
  3953. weight: math.unit(75, "kg"),
  3954. name: "Front",
  3955. image: {
  3956. source: "./media/characters/sefer/front.svg",
  3957. extra: 848 / 659,
  3958. bottom: 28.3 / 876.442
  3959. }
  3960. },
  3961. back: {
  3962. height: math.unit(6, "feet"),
  3963. weight: math.unit(75, "kg"),
  3964. name: "Back",
  3965. image: {
  3966. source: "./media/characters/sefer/back.svg",
  3967. extra: 864 / 695,
  3968. bottom: 10 / 871
  3969. }
  3970. },
  3971. frontDressed: {
  3972. height: math.unit(6, "feet"),
  3973. weight: math.unit(75, "kg"),
  3974. name: "Dressed",
  3975. image: {
  3976. source: "./media/characters/sefer/dressed.svg",
  3977. extra: 839 / 653,
  3978. bottom: 37.6 / 878
  3979. }
  3980. },
  3981. },
  3982. [
  3983. {
  3984. name: "Normal",
  3985. height: math.unit(6, "feet"),
  3986. default: true
  3987. },
  3988. {
  3989. name: "Big",
  3990. height: math.unit(8, "meters")
  3991. },
  3992. ]
  3993. ))
  3994. characterMakers.push(() => makeCharacter(
  3995. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3996. {
  3997. body: {
  3998. height: math.unit(2.2428, "meter"),
  3999. weight: math.unit(124.738, "kg"),
  4000. name: "Body",
  4001. image: {
  4002. extra: 1225 / 1050,
  4003. source: "./media/characters/north/front.svg"
  4004. }
  4005. }
  4006. },
  4007. [
  4008. {
  4009. name: "Micro",
  4010. height: math.unit(4, "inches")
  4011. },
  4012. {
  4013. name: "Macro",
  4014. height: math.unit(63, "meters")
  4015. },
  4016. {
  4017. name: "Megamacro",
  4018. height: math.unit(101, "miles"),
  4019. default: true
  4020. }
  4021. ]
  4022. ))
  4023. characterMakers.push(() => makeCharacter(
  4024. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4025. {
  4026. angled: {
  4027. height: math.unit(4, "meter"),
  4028. weight: math.unit(150, "kg"),
  4029. name: "Angled",
  4030. image: {
  4031. source: "./media/characters/talan/angled-sfw.svg",
  4032. bottom: 29 / 3734
  4033. }
  4034. },
  4035. angledNsfw: {
  4036. height: math.unit(4, "meter"),
  4037. weight: math.unit(150, "kg"),
  4038. name: "Angled (NSFW)",
  4039. image: {
  4040. source: "./media/characters/talan/angled-nsfw.svg",
  4041. bottom: 29 / 3734
  4042. }
  4043. },
  4044. frontNsfw: {
  4045. height: math.unit(4, "meter"),
  4046. weight: math.unit(150, "kg"),
  4047. name: "Front (NSFW)",
  4048. image: {
  4049. source: "./media/characters/talan/front-nsfw.svg",
  4050. bottom: 29 / 3734
  4051. }
  4052. },
  4053. sideNsfw: {
  4054. height: math.unit(4, "meter"),
  4055. weight: math.unit(150, "kg"),
  4056. name: "Side (NSFW)",
  4057. image: {
  4058. source: "./media/characters/talan/side-nsfw.svg",
  4059. bottom: 29 / 3734
  4060. }
  4061. },
  4062. back: {
  4063. height: math.unit(4, "meter"),
  4064. weight: math.unit(150, "kg"),
  4065. name: "Back",
  4066. image: {
  4067. source: "./media/characters/talan/back.svg"
  4068. }
  4069. },
  4070. dickBottom: {
  4071. height: math.unit(0.621, "meter"),
  4072. name: "Dick (Bottom)",
  4073. image: {
  4074. source: "./media/characters/talan/dick-bottom.svg"
  4075. }
  4076. },
  4077. dickTop: {
  4078. height: math.unit(0.621, "meter"),
  4079. name: "Dick (Top)",
  4080. image: {
  4081. source: "./media/characters/talan/dick-top.svg"
  4082. }
  4083. },
  4084. dickSide: {
  4085. height: math.unit(0.305, "meter"),
  4086. name: "Dick (Side)",
  4087. image: {
  4088. source: "./media/characters/talan/dick-side.svg"
  4089. }
  4090. },
  4091. dickFront: {
  4092. height: math.unit(0.305, "meter"),
  4093. name: "Dick (Front)",
  4094. image: {
  4095. source: "./media/characters/talan/dick-front.svg"
  4096. }
  4097. },
  4098. },
  4099. [
  4100. {
  4101. name: "Normal",
  4102. height: math.unit(4, "meters")
  4103. },
  4104. {
  4105. name: "Macro",
  4106. height: math.unit(100, "meters")
  4107. },
  4108. {
  4109. name: "Megamacro",
  4110. height: math.unit(2, "miles"),
  4111. default: true
  4112. },
  4113. {
  4114. name: "Gigamacro",
  4115. height: math.unit(5000, "miles")
  4116. },
  4117. {
  4118. name: "Teramacro",
  4119. height: math.unit(100, "parsecs")
  4120. }
  4121. ]
  4122. ))
  4123. characterMakers.push(() => makeCharacter(
  4124. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4125. {
  4126. front: {
  4127. height: math.unit(2, "meter"),
  4128. weight: math.unit(90, "kg"),
  4129. name: "Front",
  4130. image: {
  4131. source: "./media/characters/gael'rathus/front.svg"
  4132. }
  4133. },
  4134. frontAlt: {
  4135. height: math.unit(2, "meter"),
  4136. weight: math.unit(90, "kg"),
  4137. name: "Front (alt)",
  4138. image: {
  4139. source: "./media/characters/gael'rathus/front-alt.svg"
  4140. }
  4141. },
  4142. frontAlt2: {
  4143. height: math.unit(2, "meter"),
  4144. weight: math.unit(90, "kg"),
  4145. name: "Front (alt 2)",
  4146. image: {
  4147. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4148. }
  4149. }
  4150. },
  4151. [
  4152. {
  4153. name: "Normal",
  4154. height: math.unit(9, "feet"),
  4155. default: true
  4156. },
  4157. {
  4158. name: "Large",
  4159. height: math.unit(25, "feet")
  4160. },
  4161. {
  4162. name: "Macro",
  4163. height: math.unit(0.25, "miles")
  4164. },
  4165. {
  4166. name: "Megamacro",
  4167. height: math.unit(10, "miles")
  4168. }
  4169. ]
  4170. ))
  4171. characterMakers.push(() => makeCharacter(
  4172. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4173. {
  4174. side: {
  4175. height: math.unit(2, "meter"),
  4176. weight: math.unit(140, "kg"),
  4177. name: "Side",
  4178. image: {
  4179. source: "./media/characters/sosha/side.svg",
  4180. extra: 1170/1006,
  4181. bottom: 94/1264
  4182. }
  4183. },
  4184. maw: {
  4185. height: math.unit(2.87, "feet"),
  4186. name: "Maw",
  4187. image: {
  4188. source: "./media/characters/sosha/maw.svg",
  4189. extra: 966/865,
  4190. bottom: 0/966
  4191. }
  4192. },
  4193. cooch: {
  4194. height: math.unit(5.6, "feet"),
  4195. name: "Cooch",
  4196. image: {
  4197. source: "./media/characters/sosha/cooch.svg"
  4198. }
  4199. },
  4200. },
  4201. [
  4202. {
  4203. name: "Normal",
  4204. height: math.unit(12, "feet"),
  4205. default: true
  4206. }
  4207. ]
  4208. ))
  4209. characterMakers.push(() => makeCharacter(
  4210. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4211. {
  4212. side: {
  4213. height: math.unit(5 + 5 / 12, "feet"),
  4214. weight: math.unit(170, "kg"),
  4215. name: "Side",
  4216. image: {
  4217. source: "./media/characters/runnola/side.svg",
  4218. extra: 741 / 448,
  4219. bottom: 0.05
  4220. }
  4221. },
  4222. },
  4223. [
  4224. {
  4225. name: "Small",
  4226. height: math.unit(3, "feet")
  4227. },
  4228. {
  4229. name: "Normal",
  4230. height: math.unit(5 + 5 / 12, "feet"),
  4231. default: true
  4232. },
  4233. {
  4234. name: "Big",
  4235. height: math.unit(10, "feet")
  4236. },
  4237. ]
  4238. ))
  4239. characterMakers.push(() => makeCharacter(
  4240. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4241. {
  4242. front: {
  4243. height: math.unit(2, "meter"),
  4244. weight: math.unit(50, "kg"),
  4245. name: "Front",
  4246. image: {
  4247. source: "./media/characters/kurribird/front.svg",
  4248. bottom: 0.015
  4249. }
  4250. },
  4251. frontAlt: {
  4252. height: math.unit(1.5, "meter"),
  4253. weight: math.unit(50, "kg"),
  4254. name: "Front (Alt)",
  4255. image: {
  4256. source: "./media/characters/kurribird/front-alt.svg",
  4257. extra: 1.45
  4258. }
  4259. },
  4260. },
  4261. [
  4262. {
  4263. name: "Normal",
  4264. height: math.unit(7, "feet")
  4265. },
  4266. {
  4267. name: "Big",
  4268. height: math.unit(12, "feet"),
  4269. default: true
  4270. },
  4271. {
  4272. name: "Macro",
  4273. height: math.unit(1500, "feet")
  4274. },
  4275. {
  4276. name: "Megamacro",
  4277. height: math.unit(2, "miles")
  4278. }
  4279. ]
  4280. ))
  4281. characterMakers.push(() => makeCharacter(
  4282. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4283. {
  4284. front: {
  4285. height: math.unit(2, "meter"),
  4286. weight: math.unit(80, "kg"),
  4287. name: "Front",
  4288. image: {
  4289. source: "./media/characters/elbial/front.svg",
  4290. extra: 1643 / 1556,
  4291. bottom: 60.2 / 1696
  4292. }
  4293. },
  4294. side: {
  4295. height: math.unit(2, "meter"),
  4296. weight: math.unit(80, "kg"),
  4297. name: "Side",
  4298. image: {
  4299. source: "./media/characters/elbial/side.svg",
  4300. extra: 1601/1528,
  4301. bottom: 97/1698
  4302. }
  4303. },
  4304. back: {
  4305. height: math.unit(2, "meter"),
  4306. weight: math.unit(80, "kg"),
  4307. name: "Back",
  4308. image: {
  4309. source: "./media/characters/elbial/back.svg",
  4310. extra: 1653/1569,
  4311. bottom: 20/1673
  4312. }
  4313. },
  4314. frontDressed: {
  4315. height: math.unit(2, "meter"),
  4316. weight: math.unit(80, "kg"),
  4317. name: "Front (Dressed)",
  4318. image: {
  4319. source: "./media/characters/elbial/front-dressed.svg",
  4320. extra: 1638/1569,
  4321. bottom: 70/1708
  4322. }
  4323. },
  4324. genitals: {
  4325. height: math.unit(2 / 3.367, "meter"),
  4326. name: "Genitals",
  4327. image: {
  4328. source: "./media/characters/elbial/genitals.svg"
  4329. }
  4330. },
  4331. },
  4332. [
  4333. {
  4334. name: "Large",
  4335. height: math.unit(100, "feet")
  4336. },
  4337. {
  4338. name: "Macro",
  4339. height: math.unit(500, "feet"),
  4340. default: true
  4341. },
  4342. {
  4343. name: "Megamacro",
  4344. height: math.unit(10, "miles")
  4345. },
  4346. {
  4347. name: "Gigamacro",
  4348. height: math.unit(25000, "miles")
  4349. },
  4350. {
  4351. name: "Full-Size",
  4352. height: math.unit(8000000, "gigaparsecs")
  4353. }
  4354. ]
  4355. ))
  4356. characterMakers.push(() => makeCharacter(
  4357. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4358. {
  4359. front: {
  4360. height: math.unit(2, "meter"),
  4361. weight: math.unit(60, "kg"),
  4362. name: "Front",
  4363. image: {
  4364. source: "./media/characters/noah/front.svg",
  4365. extra: 1383/1313,
  4366. bottom: 104/1487
  4367. }
  4368. },
  4369. hand: {
  4370. height: math.unit(0.6, "feet"),
  4371. name: "Hand",
  4372. image: {
  4373. source: "./media/characters/noah/hand.svg"
  4374. }
  4375. },
  4376. talons: {
  4377. height: math.unit(1.385, "feet"),
  4378. name: "Talons",
  4379. image: {
  4380. source: "./media/characters/noah/talons.svg"
  4381. }
  4382. },
  4383. beak: {
  4384. height: math.unit(0.43, "feet"),
  4385. name: "Beak",
  4386. image: {
  4387. source: "./media/characters/noah/beak.svg"
  4388. }
  4389. },
  4390. collar: {
  4391. height: math.unit(0.88, "feet"),
  4392. name: "Collar",
  4393. image: {
  4394. source: "./media/characters/noah/collar.svg"
  4395. }
  4396. },
  4397. eyeNarrow: {
  4398. height: math.unit(0.18, "feet"),
  4399. name: "Eye (Narrow)",
  4400. image: {
  4401. source: "./media/characters/noah/eye-narrow.svg"
  4402. }
  4403. },
  4404. eyeNormal: {
  4405. height: math.unit(0.18, "feet"),
  4406. name: "Eye (Normal)",
  4407. image: {
  4408. source: "./media/characters/noah/eye-normal.svg"
  4409. }
  4410. },
  4411. eyeWide: {
  4412. height: math.unit(0.18, "feet"),
  4413. name: "Eye (Wide)",
  4414. image: {
  4415. source: "./media/characters/noah/eye-wide.svg"
  4416. }
  4417. },
  4418. ear: {
  4419. height: math.unit(0.64, "feet"),
  4420. name: "Ear",
  4421. image: {
  4422. source: "./media/characters/noah/ear.svg"
  4423. }
  4424. },
  4425. },
  4426. [
  4427. {
  4428. name: "Large",
  4429. height: math.unit(50, "feet")
  4430. },
  4431. {
  4432. name: "Macro",
  4433. height: math.unit(750, "feet"),
  4434. default: true
  4435. },
  4436. {
  4437. name: "Megamacro",
  4438. height: math.unit(50, "miles")
  4439. },
  4440. {
  4441. name: "Gigamacro",
  4442. height: math.unit(100000, "miles")
  4443. },
  4444. {
  4445. name: "Full-Size",
  4446. height: math.unit(3000000000, "miles")
  4447. }
  4448. ]
  4449. ))
  4450. characterMakers.push(() => makeCharacter(
  4451. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4452. {
  4453. front: {
  4454. height: math.unit(2, "meter"),
  4455. weight: math.unit(80, "kg"),
  4456. name: "Front",
  4457. image: {
  4458. source: "./media/characters/natalya/front.svg"
  4459. }
  4460. },
  4461. back: {
  4462. height: math.unit(2, "meter"),
  4463. weight: math.unit(80, "kg"),
  4464. name: "Back",
  4465. image: {
  4466. source: "./media/characters/natalya/back.svg"
  4467. }
  4468. }
  4469. },
  4470. [
  4471. {
  4472. name: "Normal",
  4473. height: math.unit(150, "feet"),
  4474. default: true
  4475. },
  4476. {
  4477. name: "Megamacro",
  4478. height: math.unit(5, "miles")
  4479. },
  4480. {
  4481. name: "Full-Size",
  4482. height: math.unit(600, "kiloparsecs")
  4483. }
  4484. ]
  4485. ))
  4486. characterMakers.push(() => makeCharacter(
  4487. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4488. {
  4489. front: {
  4490. height: math.unit(2, "meter"),
  4491. weight: math.unit(50, "kg"),
  4492. name: "Front",
  4493. image: {
  4494. source: "./media/characters/erestrebah/front.svg",
  4495. extra: 1262/1162,
  4496. bottom: 96/1358
  4497. }
  4498. },
  4499. back: {
  4500. height: math.unit(2, "meter"),
  4501. weight: math.unit(50, "kg"),
  4502. name: "Back",
  4503. image: {
  4504. source: "./media/characters/erestrebah/back.svg",
  4505. extra: 1257/1139,
  4506. bottom: 13/1270
  4507. }
  4508. },
  4509. wing: {
  4510. height: math.unit(2, "meter"),
  4511. weight: math.unit(50, "kg"),
  4512. name: "Wing",
  4513. image: {
  4514. source: "./media/characters/erestrebah/wing.svg",
  4515. extra: 1262/1162,
  4516. bottom: 96/1358
  4517. }
  4518. },
  4519. mouth: {
  4520. height: math.unit(0.39, "feet"),
  4521. name: "Mouth",
  4522. image: {
  4523. source: "./media/characters/erestrebah/mouth.svg"
  4524. }
  4525. }
  4526. },
  4527. [
  4528. {
  4529. name: "Normal",
  4530. height: math.unit(10, "feet")
  4531. },
  4532. {
  4533. name: "Large",
  4534. height: math.unit(50, "feet"),
  4535. default: true
  4536. },
  4537. {
  4538. name: "Macro",
  4539. height: math.unit(300, "feet")
  4540. },
  4541. {
  4542. name: "Macro+",
  4543. height: math.unit(750, "feet")
  4544. },
  4545. {
  4546. name: "Megamacro",
  4547. height: math.unit(3, "miles")
  4548. }
  4549. ]
  4550. ))
  4551. characterMakers.push(() => makeCharacter(
  4552. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4553. {
  4554. front: {
  4555. height: math.unit(2, "meter"),
  4556. weight: math.unit(80, "kg"),
  4557. name: "Front",
  4558. image: {
  4559. source: "./media/characters/jennifer/front.svg",
  4560. bottom: 0.11,
  4561. extra: 1.16
  4562. }
  4563. },
  4564. frontAlt: {
  4565. height: math.unit(2, "meter"),
  4566. weight: math.unit(80, "kg"),
  4567. name: "Front (Alt)",
  4568. image: {
  4569. source: "./media/characters/jennifer/front-alt.svg"
  4570. }
  4571. }
  4572. },
  4573. [
  4574. {
  4575. name: "Canon Height",
  4576. height: math.unit(120, "feet"),
  4577. default: true
  4578. },
  4579. {
  4580. name: "Macro+",
  4581. height: math.unit(300, "feet")
  4582. },
  4583. {
  4584. name: "Megamacro",
  4585. height: math.unit(20000, "feet")
  4586. }
  4587. ]
  4588. ))
  4589. characterMakers.push(() => makeCharacter(
  4590. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4591. {
  4592. front: {
  4593. height: math.unit(2, "meter"),
  4594. weight: math.unit(50, "kg"),
  4595. name: "Front",
  4596. image: {
  4597. source: "./media/characters/kalista/front.svg",
  4598. extra: 1314/1145,
  4599. bottom: 101/1415
  4600. }
  4601. },
  4602. back: {
  4603. height: math.unit(2, "meter"),
  4604. weight: math.unit(50, "kg"),
  4605. name: "Back",
  4606. image: {
  4607. source: "./media/characters/kalista/back.svg",
  4608. extra: 1366 / 1156,
  4609. bottom: 33.9 / 1362.78
  4610. }
  4611. }
  4612. },
  4613. [
  4614. {
  4615. name: "Uncomfortably Small",
  4616. height: math.unit(10, "feet")
  4617. },
  4618. {
  4619. name: "Small",
  4620. height: math.unit(30, "feet")
  4621. },
  4622. {
  4623. name: "Macro",
  4624. height: math.unit(100, "feet"),
  4625. default: true
  4626. },
  4627. {
  4628. name: "Macro+",
  4629. height: math.unit(2000, "feet")
  4630. },
  4631. {
  4632. name: "True Form",
  4633. height: math.unit(8924, "miles")
  4634. }
  4635. ]
  4636. ))
  4637. characterMakers.push(() => makeCharacter(
  4638. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4639. {
  4640. front: {
  4641. height: math.unit(2, "meter"),
  4642. weight: math.unit(120, "kg"),
  4643. name: "Front",
  4644. image: {
  4645. source: "./media/characters/ggv/front.svg"
  4646. }
  4647. },
  4648. side: {
  4649. height: math.unit(2, "meter"),
  4650. weight: math.unit(120, "kg"),
  4651. name: "Side",
  4652. image: {
  4653. source: "./media/characters/ggv/side.svg"
  4654. }
  4655. }
  4656. },
  4657. [
  4658. {
  4659. name: "Extremely Puny",
  4660. height: math.unit(9 + 5 / 12, "feet")
  4661. },
  4662. {
  4663. name: "Horribly Small",
  4664. height: math.unit(47.7, "miles"),
  4665. default: true
  4666. },
  4667. {
  4668. name: "Reasonably Sized",
  4669. height: math.unit(25000, "parsecs")
  4670. },
  4671. {
  4672. name: "Slightly Uncompressed",
  4673. height: math.unit(7.77e31, "parsecs")
  4674. },
  4675. {
  4676. name: "Omniversal",
  4677. height: math.unit(1e300, "meters")
  4678. },
  4679. ]
  4680. ))
  4681. characterMakers.push(() => makeCharacter(
  4682. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4683. {
  4684. front: {
  4685. height: math.unit(2, "meter"),
  4686. weight: math.unit(75, "lb"),
  4687. name: "Front",
  4688. image: {
  4689. source: "./media/characters/napalm/front.svg"
  4690. }
  4691. },
  4692. back: {
  4693. height: math.unit(2, "meter"),
  4694. weight: math.unit(75, "lb"),
  4695. name: "Back",
  4696. image: {
  4697. source: "./media/characters/napalm/back.svg"
  4698. }
  4699. }
  4700. },
  4701. [
  4702. {
  4703. name: "Standard",
  4704. height: math.unit(55, "feet"),
  4705. default: true
  4706. }
  4707. ]
  4708. ))
  4709. characterMakers.push(() => makeCharacter(
  4710. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4711. {
  4712. front: {
  4713. height: math.unit(7 + 5 / 6, "feet"),
  4714. weight: math.unit(325, "lb"),
  4715. name: "Front",
  4716. image: {
  4717. source: "./media/characters/asana/front.svg",
  4718. extra: 1133 / 1060,
  4719. bottom: 15.2 / 1148.6
  4720. }
  4721. },
  4722. back: {
  4723. height: math.unit(7 + 5 / 6, "feet"),
  4724. weight: math.unit(325, "lb"),
  4725. name: "Back",
  4726. image: {
  4727. source: "./media/characters/asana/back.svg",
  4728. extra: 1114 / 1043,
  4729. bottom: 5 / 1120
  4730. }
  4731. },
  4732. dressedDark: {
  4733. height: math.unit(7 + 5 / 6, "feet"),
  4734. weight: math.unit(325, "lb"),
  4735. name: "Dressed (Dark)",
  4736. image: {
  4737. source: "./media/characters/asana/dressed-dark.svg",
  4738. extra: 1133 / 1060,
  4739. bottom: 15.2 / 1148.6
  4740. }
  4741. },
  4742. dressedLight: {
  4743. height: math.unit(7 + 5 / 6, "feet"),
  4744. weight: math.unit(325, "lb"),
  4745. name: "Dressed (Light)",
  4746. image: {
  4747. source: "./media/characters/asana/dressed-light.svg",
  4748. extra: 1133 / 1060,
  4749. bottom: 15.2 / 1148.6
  4750. }
  4751. },
  4752. },
  4753. [
  4754. {
  4755. name: "Standard",
  4756. height: math.unit(7 + 5 / 6, "feet"),
  4757. default: true
  4758. },
  4759. {
  4760. name: "Large",
  4761. height: math.unit(10, "meters")
  4762. },
  4763. {
  4764. name: "Macro",
  4765. height: math.unit(2500, "meters")
  4766. },
  4767. {
  4768. name: "Megamacro",
  4769. height: math.unit(5e6, "meters")
  4770. },
  4771. {
  4772. name: "Examacro",
  4773. height: math.unit(5e12, "lightyears")
  4774. },
  4775. {
  4776. name: "Max Size",
  4777. height: math.unit(1e31, "lightyears")
  4778. }
  4779. ]
  4780. ))
  4781. characterMakers.push(() => makeCharacter(
  4782. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4783. {
  4784. front: {
  4785. height: math.unit(2, "meter"),
  4786. weight: math.unit(60, "kg"),
  4787. name: "Front",
  4788. image: {
  4789. source: "./media/characters/ebony/front.svg",
  4790. bottom: 0.03,
  4791. extra: 1045 / 810 + 0.03
  4792. }
  4793. },
  4794. side: {
  4795. height: math.unit(2, "meter"),
  4796. weight: math.unit(60, "kg"),
  4797. name: "Side",
  4798. image: {
  4799. source: "./media/characters/ebony/side.svg",
  4800. bottom: 0.03,
  4801. extra: 1045 / 810 + 0.03
  4802. }
  4803. },
  4804. back: {
  4805. height: math.unit(2, "meter"),
  4806. weight: math.unit(60, "kg"),
  4807. name: "Back",
  4808. image: {
  4809. source: "./media/characters/ebony/back.svg",
  4810. bottom: 0.01,
  4811. extra: 1045 / 810 + 0.01
  4812. }
  4813. },
  4814. },
  4815. [
  4816. // TODO check why I did this lol
  4817. {
  4818. name: "Standard",
  4819. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4820. default: true
  4821. },
  4822. {
  4823. name: "Macro",
  4824. height: math.unit(200, "feet")
  4825. },
  4826. {
  4827. name: "Gigamacro",
  4828. height: math.unit(13000, "km")
  4829. }
  4830. ]
  4831. ))
  4832. characterMakers.push(() => makeCharacter(
  4833. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4834. {
  4835. front: {
  4836. height: math.unit(6, "feet"),
  4837. weight: math.unit(175, "lb"),
  4838. name: "Front",
  4839. image: {
  4840. source: "./media/characters/mountain/front.svg",
  4841. extra: 972 / 955,
  4842. bottom: 64 / 1036.6
  4843. }
  4844. },
  4845. back: {
  4846. height: math.unit(6, "feet"),
  4847. weight: math.unit(175, "lb"),
  4848. name: "Back",
  4849. image: {
  4850. source: "./media/characters/mountain/back.svg",
  4851. extra: 970 / 950,
  4852. bottom: 28.25 / 999
  4853. }
  4854. },
  4855. },
  4856. [
  4857. {
  4858. name: "Large",
  4859. height: math.unit(20, "meters")
  4860. },
  4861. {
  4862. name: "Macro",
  4863. height: math.unit(300, "meters")
  4864. },
  4865. {
  4866. name: "Gigamacro",
  4867. height: math.unit(10000, "km"),
  4868. default: true
  4869. },
  4870. {
  4871. name: "Examacro",
  4872. height: math.unit(10e9, "lightyears")
  4873. }
  4874. ]
  4875. ))
  4876. characterMakers.push(() => makeCharacter(
  4877. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4878. {
  4879. front: {
  4880. height: math.unit(8, "feet"),
  4881. weight: math.unit(500, "lb"),
  4882. name: "Front",
  4883. image: {
  4884. source: "./media/characters/rick/front.svg"
  4885. }
  4886. }
  4887. },
  4888. [
  4889. {
  4890. name: "Normal",
  4891. height: math.unit(8, "feet"),
  4892. default: true
  4893. },
  4894. {
  4895. name: "Macro",
  4896. height: math.unit(5, "km")
  4897. }
  4898. ]
  4899. ))
  4900. characterMakers.push(() => makeCharacter(
  4901. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4902. {
  4903. front: {
  4904. height: math.unit(8, "feet"),
  4905. weight: math.unit(120, "lb"),
  4906. name: "Front",
  4907. image: {
  4908. source: "./media/characters/ona/front.svg"
  4909. }
  4910. },
  4911. frontAlt: {
  4912. height: math.unit(8, "feet"),
  4913. weight: math.unit(120, "lb"),
  4914. name: "Front (Alt)",
  4915. image: {
  4916. source: "./media/characters/ona/front-alt.svg"
  4917. }
  4918. },
  4919. back: {
  4920. height: math.unit(8, "feet"),
  4921. weight: math.unit(120, "lb"),
  4922. name: "Back",
  4923. image: {
  4924. source: "./media/characters/ona/back.svg"
  4925. }
  4926. },
  4927. foot: {
  4928. height: math.unit(1.1, "feet"),
  4929. name: "Foot",
  4930. image: {
  4931. source: "./media/characters/ona/foot.svg"
  4932. }
  4933. }
  4934. },
  4935. [
  4936. {
  4937. name: "Megamacro",
  4938. height: math.unit(70, "km"),
  4939. default: true
  4940. },
  4941. {
  4942. name: "Gigamacro",
  4943. height: math.unit(681818, "miles")
  4944. },
  4945. {
  4946. name: "Examacro",
  4947. height: math.unit(3800000, "lightyears")
  4948. },
  4949. ]
  4950. ))
  4951. characterMakers.push(() => makeCharacter(
  4952. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4953. {
  4954. front: {
  4955. height: math.unit(12, "feet"),
  4956. weight: math.unit(3000, "lb"),
  4957. name: "Front",
  4958. image: {
  4959. source: "./media/characters/mech/front.svg",
  4960. extra: 2900 / 2770,
  4961. bottom: 110 / 3010
  4962. }
  4963. },
  4964. back: {
  4965. height: math.unit(12, "feet"),
  4966. weight: math.unit(3000, "lb"),
  4967. name: "Back",
  4968. image: {
  4969. source: "./media/characters/mech/back.svg",
  4970. extra: 3011 / 2890,
  4971. bottom: 94 / 3105
  4972. }
  4973. },
  4974. maw: {
  4975. height: math.unit(3.07, "feet"),
  4976. name: "Maw",
  4977. image: {
  4978. source: "./media/characters/mech/maw.svg"
  4979. }
  4980. },
  4981. head: {
  4982. height: math.unit(3.07, "feet"),
  4983. name: "Head",
  4984. image: {
  4985. source: "./media/characters/mech/head.svg"
  4986. }
  4987. },
  4988. dick: {
  4989. height: math.unit(1.43, "feet"),
  4990. name: "Dick",
  4991. image: {
  4992. source: "./media/characters/mech/dick.svg"
  4993. }
  4994. },
  4995. },
  4996. [
  4997. {
  4998. name: "Normal",
  4999. height: math.unit(12, "feet")
  5000. },
  5001. {
  5002. name: "Macro",
  5003. height: math.unit(300, "feet"),
  5004. default: true
  5005. },
  5006. {
  5007. name: "Macro+",
  5008. height: math.unit(1500, "feet")
  5009. },
  5010. ]
  5011. ))
  5012. characterMakers.push(() => makeCharacter(
  5013. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5014. {
  5015. front: {
  5016. height: math.unit(1.3, "meter"),
  5017. weight: math.unit(30, "kg"),
  5018. name: "Front",
  5019. image: {
  5020. source: "./media/characters/gregory/front.svg",
  5021. }
  5022. }
  5023. },
  5024. [
  5025. {
  5026. name: "Normal",
  5027. height: math.unit(1.3, "meter"),
  5028. default: true
  5029. },
  5030. {
  5031. name: "Macro",
  5032. height: math.unit(20, "meter")
  5033. }
  5034. ]
  5035. ))
  5036. characterMakers.push(() => makeCharacter(
  5037. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5038. {
  5039. front: {
  5040. height: math.unit(2.8, "meter"),
  5041. weight: math.unit(200, "kg"),
  5042. name: "Front",
  5043. image: {
  5044. source: "./media/characters/elory/front.svg",
  5045. }
  5046. }
  5047. },
  5048. [
  5049. {
  5050. name: "Normal",
  5051. height: math.unit(2.8, "meter"),
  5052. default: true
  5053. },
  5054. {
  5055. name: "Macro",
  5056. height: math.unit(38, "meter")
  5057. }
  5058. ]
  5059. ))
  5060. characterMakers.push(() => makeCharacter(
  5061. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5062. {
  5063. front: {
  5064. height: math.unit(470, "feet"),
  5065. weight: math.unit(924, "tons"),
  5066. name: "Front",
  5067. image: {
  5068. source: "./media/characters/angelpatamon/front.svg",
  5069. }
  5070. }
  5071. },
  5072. [
  5073. {
  5074. name: "Normal",
  5075. height: math.unit(470, "feet"),
  5076. default: true
  5077. },
  5078. {
  5079. name: "Deity Size I",
  5080. height: math.unit(28651.2, "km")
  5081. },
  5082. {
  5083. name: "Deity Size II",
  5084. height: math.unit(171907.2, "km")
  5085. }
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5090. {
  5091. side: {
  5092. height: math.unit(7.2, "meter"),
  5093. weight: math.unit(8.2, "tons"),
  5094. name: "Side",
  5095. image: {
  5096. source: "./media/characters/cryae/side.svg",
  5097. extra: 3500 / 1500
  5098. }
  5099. }
  5100. },
  5101. [
  5102. {
  5103. name: "Normal",
  5104. height: math.unit(7.2, "meter"),
  5105. default: true
  5106. }
  5107. ]
  5108. ))
  5109. characterMakers.push(() => makeCharacter(
  5110. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5111. {
  5112. front: {
  5113. height: math.unit(6, "feet"),
  5114. weight: math.unit(175, "lb"),
  5115. name: "Front",
  5116. image: {
  5117. source: "./media/characters/xera/front.svg",
  5118. extra: 2377 / 1972,
  5119. bottom: 75.5 / 2452
  5120. }
  5121. },
  5122. side: {
  5123. height: math.unit(6, "feet"),
  5124. weight: math.unit(175, "lb"),
  5125. name: "Side",
  5126. image: {
  5127. source: "./media/characters/xera/side.svg",
  5128. extra: 2345 / 2019,
  5129. bottom: 39.7 / 2384
  5130. }
  5131. },
  5132. back: {
  5133. height: math.unit(6, "feet"),
  5134. weight: math.unit(175, "lb"),
  5135. name: "Back",
  5136. image: {
  5137. source: "./media/characters/xera/back.svg",
  5138. extra: 2095 / 1984,
  5139. bottom: 67 / 2166
  5140. }
  5141. },
  5142. },
  5143. [
  5144. {
  5145. name: "Small",
  5146. height: math.unit(10, "feet")
  5147. },
  5148. {
  5149. name: "Macro",
  5150. height: math.unit(500, "meters"),
  5151. default: true
  5152. },
  5153. {
  5154. name: "Macro+",
  5155. height: math.unit(10, "km")
  5156. },
  5157. {
  5158. name: "Gigamacro",
  5159. height: math.unit(25000, "km")
  5160. },
  5161. {
  5162. name: "Teramacro",
  5163. height: math.unit(3e6, "km")
  5164. }
  5165. ]
  5166. ))
  5167. characterMakers.push(() => makeCharacter(
  5168. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5169. {
  5170. front: {
  5171. height: math.unit(6, "feet"),
  5172. weight: math.unit(175, "lb"),
  5173. name: "Front",
  5174. image: {
  5175. source: "./media/characters/nebula/front.svg",
  5176. extra: 2566 / 2362,
  5177. bottom: 81 / 2644
  5178. }
  5179. }
  5180. },
  5181. [
  5182. {
  5183. name: "Small",
  5184. height: math.unit(4.5, "meters")
  5185. },
  5186. {
  5187. name: "Macro",
  5188. height: math.unit(1500, "meters"),
  5189. default: true
  5190. },
  5191. {
  5192. name: "Megamacro",
  5193. height: math.unit(150, "km")
  5194. },
  5195. {
  5196. name: "Gigamacro",
  5197. height: math.unit(27000, "km")
  5198. }
  5199. ]
  5200. ))
  5201. characterMakers.push(() => makeCharacter(
  5202. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5203. {
  5204. front: {
  5205. height: math.unit(6, "feet"),
  5206. weight: math.unit(225, "lb"),
  5207. name: "Front",
  5208. image: {
  5209. source: "./media/characters/abysgar/front.svg",
  5210. extra: 1739/1614,
  5211. bottom: 71/1810
  5212. }
  5213. },
  5214. frontNsfw: {
  5215. height: math.unit(6, "feet"),
  5216. weight: math.unit(225, "lb"),
  5217. name: "Front (NSFW)",
  5218. image: {
  5219. source: "./media/characters/abysgar/front-nsfw.svg",
  5220. extra: 1739/1614,
  5221. bottom: 71/1810
  5222. }
  5223. },
  5224. back: {
  5225. height: math.unit(4.6, "feet"),
  5226. weight: math.unit(225, "lb"),
  5227. name: "Back",
  5228. image: {
  5229. source: "./media/characters/abysgar/back.svg",
  5230. extra: 1384/1327,
  5231. bottom: 0/1384
  5232. }
  5233. },
  5234. head: {
  5235. height: math.unit(1.25, "feet"),
  5236. name: "Head",
  5237. image: {
  5238. source: "./media/characters/abysgar/head.svg",
  5239. extra: 669/569,
  5240. bottom: 0/669
  5241. }
  5242. },
  5243. },
  5244. [
  5245. {
  5246. name: "Small",
  5247. height: math.unit(4.5, "meters")
  5248. },
  5249. {
  5250. name: "Macro",
  5251. height: math.unit(1250, "meters"),
  5252. default: true
  5253. },
  5254. {
  5255. name: "Megamacro",
  5256. height: math.unit(125, "km")
  5257. },
  5258. {
  5259. name: "Gigamacro",
  5260. height: math.unit(26000, "km")
  5261. }
  5262. ]
  5263. ))
  5264. characterMakers.push(() => makeCharacter(
  5265. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5266. {
  5267. front: {
  5268. height: math.unit(6, "feet"),
  5269. weight: math.unit(180, "lb"),
  5270. name: "Front",
  5271. image: {
  5272. source: "./media/characters/yakuz/front.svg"
  5273. }
  5274. }
  5275. },
  5276. [
  5277. {
  5278. name: "Small",
  5279. height: math.unit(5, "meters")
  5280. },
  5281. {
  5282. name: "Macro",
  5283. height: math.unit(1500, "meters"),
  5284. default: true
  5285. },
  5286. {
  5287. name: "Megamacro",
  5288. height: math.unit(200, "km")
  5289. },
  5290. {
  5291. name: "Gigamacro",
  5292. height: math.unit(100000, "km")
  5293. }
  5294. ]
  5295. ))
  5296. characterMakers.push(() => makeCharacter(
  5297. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5298. {
  5299. front: {
  5300. height: math.unit(6, "feet"),
  5301. weight: math.unit(175, "lb"),
  5302. name: "Front",
  5303. image: {
  5304. source: "./media/characters/mirova/front.svg",
  5305. extra: 3334 / 3071,
  5306. bottom: 42 / 3375.6
  5307. }
  5308. }
  5309. },
  5310. [
  5311. {
  5312. name: "Small",
  5313. height: math.unit(5, "meters")
  5314. },
  5315. {
  5316. name: "Macro",
  5317. height: math.unit(900, "meters"),
  5318. default: true
  5319. },
  5320. {
  5321. name: "Megamacro",
  5322. height: math.unit(135, "km")
  5323. },
  5324. {
  5325. name: "Gigamacro",
  5326. height: math.unit(20000, "km")
  5327. }
  5328. ]
  5329. ))
  5330. characterMakers.push(() => makeCharacter(
  5331. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5332. {
  5333. side: {
  5334. height: math.unit(28.35, "feet"),
  5335. weight: math.unit(99.75, "tons"),
  5336. name: "Side",
  5337. image: {
  5338. source: "./media/characters/asana-mech/side.svg",
  5339. extra: 923 / 699,
  5340. bottom: 50 / 975
  5341. }
  5342. },
  5343. chaingun: {
  5344. height: math.unit(7, "feet"),
  5345. weight: math.unit(2400, "lb"),
  5346. name: "Chaingun",
  5347. image: {
  5348. source: "./media/characters/asana-mech/chaingun.svg"
  5349. }
  5350. },
  5351. laser: {
  5352. height: math.unit(7.12, "feet"),
  5353. weight: math.unit(2000, "lb"),
  5354. name: "Laser",
  5355. image: {
  5356. source: "./media/characters/asana-mech/laser.svg"
  5357. }
  5358. },
  5359. },
  5360. [
  5361. {
  5362. name: "Normal",
  5363. height: math.unit(28.35, "feet"),
  5364. default: true
  5365. },
  5366. {
  5367. name: "Macro",
  5368. height: math.unit(2500, "feet")
  5369. },
  5370. {
  5371. name: "Megamacro",
  5372. height: math.unit(25, "miles")
  5373. },
  5374. {
  5375. name: "Examacro",
  5376. height: math.unit(6e8, "lightyears")
  5377. },
  5378. ]
  5379. ))
  5380. characterMakers.push(() => makeCharacter(
  5381. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5382. {
  5383. front: {
  5384. height: math.unit(5, "meters"),
  5385. weight: math.unit(1000, "kg"),
  5386. name: "Front",
  5387. image: {
  5388. source: "./media/characters/asche/front.svg",
  5389. extra: 1258 / 1190,
  5390. bottom: 47 / 1305
  5391. }
  5392. },
  5393. frontUnderwear: {
  5394. height: math.unit(5, "meters"),
  5395. weight: math.unit(1000, "kg"),
  5396. name: "Front (Underwear)",
  5397. image: {
  5398. source: "./media/characters/asche/front-underwear.svg",
  5399. extra: 1258 / 1190,
  5400. bottom: 47 / 1305
  5401. }
  5402. },
  5403. frontDressed: {
  5404. height: math.unit(5, "meters"),
  5405. weight: math.unit(1000, "kg"),
  5406. name: "Front (Dressed)",
  5407. image: {
  5408. source: "./media/characters/asche/front-dressed.svg",
  5409. extra: 1258 / 1190,
  5410. bottom: 47 / 1305
  5411. }
  5412. },
  5413. frontArmor: {
  5414. height: math.unit(5, "meters"),
  5415. weight: math.unit(1000, "kg"),
  5416. name: "Front (Armored)",
  5417. image: {
  5418. source: "./media/characters/asche/front-armored.svg",
  5419. extra: 1374 / 1308,
  5420. bottom: 23 / 1397
  5421. }
  5422. },
  5423. mp724: {
  5424. height: math.unit(0.96, "meters"),
  5425. weight: math.unit(38, "kg"),
  5426. name: "H&K MP724",
  5427. image: {
  5428. source: "./media/characters/asche/h&k-mp724.svg"
  5429. }
  5430. },
  5431. side: {
  5432. height: math.unit(5, "meters"),
  5433. weight: math.unit(1000, "kg"),
  5434. name: "Side",
  5435. image: {
  5436. source: "./media/characters/asche/side.svg",
  5437. extra: 1717 / 1609,
  5438. bottom: 0.005
  5439. }
  5440. },
  5441. back: {
  5442. height: math.unit(5, "meters"),
  5443. weight: math.unit(1000, "kg"),
  5444. name: "Back",
  5445. image: {
  5446. source: "./media/characters/asche/back.svg",
  5447. extra: 1570 / 1501
  5448. }
  5449. },
  5450. },
  5451. [
  5452. {
  5453. name: "DEFCON 5",
  5454. height: math.unit(5, "meters")
  5455. },
  5456. {
  5457. name: "DEFCON 4",
  5458. height: math.unit(500, "meters"),
  5459. default: true
  5460. },
  5461. {
  5462. name: "DEFCON 3",
  5463. height: math.unit(5, "km")
  5464. },
  5465. {
  5466. name: "DEFCON 2",
  5467. height: math.unit(500, "km")
  5468. },
  5469. {
  5470. name: "DEFCON 1",
  5471. height: math.unit(500000, "km")
  5472. },
  5473. {
  5474. name: "DEFCON 0",
  5475. height: math.unit(3, "gigaparsecs")
  5476. },
  5477. ]
  5478. ))
  5479. characterMakers.push(() => makeCharacter(
  5480. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5481. {
  5482. front: {
  5483. height: math.unit(7, "feet"),
  5484. weight: math.unit(92.7, "kg"),
  5485. name: "Front",
  5486. image: {
  5487. source: "./media/characters/gale/front.svg",
  5488. extra: 977/919,
  5489. bottom: 105/1082
  5490. }
  5491. },
  5492. side: {
  5493. height: math.unit(6.7, "feet"),
  5494. weight: math.unit(92.7, "kg"),
  5495. name: "Side",
  5496. image: {
  5497. source: "./media/characters/gale/side.svg",
  5498. extra: 978/922,
  5499. bottom: 140/1118
  5500. }
  5501. },
  5502. back: {
  5503. height: math.unit(7, "feet"),
  5504. weight: math.unit(92.7, "kg"),
  5505. name: "Back",
  5506. image: {
  5507. source: "./media/characters/gale/back.svg",
  5508. extra: 966/920,
  5509. bottom: 61/1027
  5510. }
  5511. },
  5512. maw: {
  5513. height: math.unit(2.23, "feet"),
  5514. name: "Maw",
  5515. image: {
  5516. source: "./media/characters/gale/maw.svg"
  5517. }
  5518. },
  5519. foot: {
  5520. height: math.unit(2.1, "feet"),
  5521. name: "Foot",
  5522. image: {
  5523. source: "./media/characters/gale/foot.svg"
  5524. }
  5525. },
  5526. },
  5527. [
  5528. {
  5529. name: "Normal",
  5530. height: math.unit(7, "feet")
  5531. },
  5532. {
  5533. name: "Macro",
  5534. height: math.unit(150, "feet"),
  5535. default: true
  5536. },
  5537. {
  5538. name: "Macro+",
  5539. height: math.unit(300, "feet")
  5540. },
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5545. {
  5546. front: {
  5547. height: math.unit(5 + 10/12, "feet"),
  5548. weight: math.unit(67, "kg"),
  5549. name: "Front",
  5550. image: {
  5551. source: "./media/characters/draylen/front.svg",
  5552. extra: 832/777,
  5553. bottom: 85/917
  5554. }
  5555. }
  5556. },
  5557. [
  5558. {
  5559. name: "Normal",
  5560. height: math.unit(5 + 10/12, "feet")
  5561. },
  5562. {
  5563. name: "Macro",
  5564. height: math.unit(150, "feet"),
  5565. default: true
  5566. }
  5567. ]
  5568. ))
  5569. characterMakers.push(() => makeCharacter(
  5570. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5571. {
  5572. front: {
  5573. height: math.unit(7 + 9 / 12, "feet"),
  5574. weight: math.unit(379, "lbs"),
  5575. name: "Front",
  5576. image: {
  5577. source: "./media/characters/chez/front.svg"
  5578. }
  5579. },
  5580. side: {
  5581. height: math.unit(7 + 9 / 12, "feet"),
  5582. weight: math.unit(379, "lbs"),
  5583. name: "Side",
  5584. image: {
  5585. source: "./media/characters/chez/side.svg"
  5586. }
  5587. }
  5588. },
  5589. [
  5590. {
  5591. name: "Normal",
  5592. height: math.unit(7 + 9 / 12, "feet"),
  5593. default: true
  5594. },
  5595. {
  5596. name: "God King",
  5597. height: math.unit(9750000, "meters")
  5598. }
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(275, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/kaylum/front.svg",
  5610. bottom: 0.01,
  5611. extra: 1166 / 1031
  5612. }
  5613. },
  5614. frontWingless: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(275, "lbs"),
  5617. name: "Front (Wingless)",
  5618. image: {
  5619. source: "./media/characters/kaylum/front-wingless.svg",
  5620. bottom: 0.01,
  5621. extra: 1117 / 1031
  5622. }
  5623. }
  5624. },
  5625. [
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(3.05, "meters")
  5629. },
  5630. {
  5631. name: "Master",
  5632. height: math.unit(5.5, "meters")
  5633. },
  5634. {
  5635. name: "Rampage",
  5636. height: math.unit(19, "meters")
  5637. },
  5638. {
  5639. name: "Macro Lite",
  5640. height: math.unit(37, "meters")
  5641. },
  5642. {
  5643. name: "Hyper Predator",
  5644. height: math.unit(61, "meters")
  5645. },
  5646. {
  5647. name: "Macro",
  5648. height: math.unit(138, "meters"),
  5649. default: true
  5650. }
  5651. ]
  5652. ))
  5653. characterMakers.push(() => makeCharacter(
  5654. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5655. {
  5656. front: {
  5657. height: math.unit(5 + 5 / 12, "feet"),
  5658. weight: math.unit(120, "lbs"),
  5659. name: "Front",
  5660. image: {
  5661. source: "./media/characters/geta/front.svg",
  5662. extra: 1003/933,
  5663. bottom: 21/1024
  5664. }
  5665. },
  5666. paw: {
  5667. height: math.unit(0.35, "feet"),
  5668. name: "Paw",
  5669. image: {
  5670. source: "./media/characters/geta/paw.svg"
  5671. }
  5672. },
  5673. },
  5674. [
  5675. {
  5676. name: "Micro",
  5677. height: math.unit(3, "inches"),
  5678. default: true
  5679. },
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(5 + 5 / 12, "feet")
  5683. }
  5684. ]
  5685. ))
  5686. characterMakers.push(() => makeCharacter(
  5687. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5688. {
  5689. front: {
  5690. height: math.unit(6, "feet"),
  5691. weight: math.unit(300, "lbs"),
  5692. name: "Front",
  5693. image: {
  5694. source: "./media/characters/tyrnn/front.svg"
  5695. }
  5696. }
  5697. },
  5698. [
  5699. {
  5700. name: "Main Height",
  5701. height: math.unit(355, "feet"),
  5702. default: true
  5703. },
  5704. {
  5705. name: "Fave. Height",
  5706. height: math.unit(2400, "feet")
  5707. }
  5708. ]
  5709. ))
  5710. characterMakers.push(() => makeCharacter(
  5711. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5712. {
  5713. front: {
  5714. height: math.unit(6, "feet"),
  5715. weight: math.unit(300, "lbs"),
  5716. name: "Front",
  5717. image: {
  5718. source: "./media/characters/appledectomy/front.svg"
  5719. }
  5720. }
  5721. },
  5722. [
  5723. {
  5724. name: "Macro",
  5725. height: math.unit(2500, "feet")
  5726. },
  5727. {
  5728. name: "Megamacro",
  5729. height: math.unit(50, "miles"),
  5730. default: true
  5731. },
  5732. {
  5733. name: "Gigamacro",
  5734. height: math.unit(5000, "miles")
  5735. },
  5736. {
  5737. name: "Teramacro",
  5738. height: math.unit(250000, "miles")
  5739. },
  5740. ]
  5741. ))
  5742. characterMakers.push(() => makeCharacter(
  5743. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5744. {
  5745. front: {
  5746. height: math.unit(6, "feet"),
  5747. weight: math.unit(200, "lbs"),
  5748. name: "Front",
  5749. image: {
  5750. source: "./media/characters/vulpes/front.svg",
  5751. extra: 573 / 543,
  5752. bottom: 0.033
  5753. }
  5754. },
  5755. side: {
  5756. height: math.unit(6, "feet"),
  5757. weight: math.unit(200, "lbs"),
  5758. name: "Side",
  5759. image: {
  5760. source: "./media/characters/vulpes/side.svg",
  5761. extra: 577 / 549,
  5762. bottom: 11 / 588
  5763. }
  5764. },
  5765. back: {
  5766. height: math.unit(6, "feet"),
  5767. weight: math.unit(200, "lbs"),
  5768. name: "Back",
  5769. image: {
  5770. source: "./media/characters/vulpes/back.svg",
  5771. extra: 573 / 549,
  5772. bottom: 20 / 593
  5773. }
  5774. },
  5775. feet: {
  5776. height: math.unit(1.276, "feet"),
  5777. name: "Feet",
  5778. image: {
  5779. source: "./media/characters/vulpes/feet.svg"
  5780. }
  5781. },
  5782. maw: {
  5783. height: math.unit(1.18, "feet"),
  5784. name: "Maw",
  5785. image: {
  5786. source: "./media/characters/vulpes/maw.svg"
  5787. }
  5788. },
  5789. },
  5790. [
  5791. {
  5792. name: "Micro",
  5793. height: math.unit(2, "inches")
  5794. },
  5795. {
  5796. name: "Normal",
  5797. height: math.unit(6.3, "feet")
  5798. },
  5799. {
  5800. name: "Macro",
  5801. height: math.unit(850, "feet")
  5802. },
  5803. {
  5804. name: "Megamacro",
  5805. height: math.unit(7500, "feet"),
  5806. default: true
  5807. },
  5808. {
  5809. name: "Gigamacro",
  5810. height: math.unit(570000, "miles")
  5811. }
  5812. ]
  5813. ))
  5814. characterMakers.push(() => makeCharacter(
  5815. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5816. {
  5817. front: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(210, "lbs"),
  5820. name: "Front",
  5821. image: {
  5822. source: "./media/characters/rain-fallen/front.svg"
  5823. }
  5824. },
  5825. side: {
  5826. height: math.unit(6, "feet"),
  5827. weight: math.unit(210, "lbs"),
  5828. name: "Side",
  5829. image: {
  5830. source: "./media/characters/rain-fallen/side.svg"
  5831. }
  5832. },
  5833. back: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(210, "lbs"),
  5836. name: "Back",
  5837. image: {
  5838. source: "./media/characters/rain-fallen/back.svg"
  5839. }
  5840. },
  5841. feral: {
  5842. height: math.unit(9, "feet"),
  5843. weight: math.unit(700, "lbs"),
  5844. name: "Feral",
  5845. image: {
  5846. source: "./media/characters/rain-fallen/feral.svg"
  5847. }
  5848. },
  5849. },
  5850. [
  5851. {
  5852. name: "Meddling with Mortals",
  5853. height: math.unit(8 + 8/12, "feet")
  5854. },
  5855. {
  5856. name: "Normal",
  5857. height: math.unit(5, "meter")
  5858. },
  5859. {
  5860. name: "Macro",
  5861. height: math.unit(150, "meter"),
  5862. default: true
  5863. },
  5864. {
  5865. name: "Megamacro",
  5866. height: math.unit(278e6, "meter")
  5867. },
  5868. {
  5869. name: "Gigamacro",
  5870. height: math.unit(2e9, "meter")
  5871. },
  5872. {
  5873. name: "Teramacro",
  5874. height: math.unit(8e12, "meter")
  5875. },
  5876. {
  5877. name: "Devourer",
  5878. height: math.unit(14, "zettameters")
  5879. },
  5880. {
  5881. name: "Scarlet King",
  5882. height: math.unit(18, "yottameters")
  5883. },
  5884. {
  5885. name: "Void",
  5886. height: math.unit(1e88, "yottameters")
  5887. }
  5888. ]
  5889. ))
  5890. characterMakers.push(() => makeCharacter(
  5891. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5892. {
  5893. standing: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(180, "lbs"),
  5896. name: "Standing",
  5897. image: {
  5898. source: "./media/characters/zaakira/standing.svg",
  5899. extra: 1599/1504,
  5900. bottom: 39/1638
  5901. }
  5902. },
  5903. laying: {
  5904. height: math.unit(3.3, "feet"),
  5905. weight: math.unit(180, "lbs"),
  5906. name: "Laying",
  5907. image: {
  5908. source: "./media/characters/zaakira/laying.svg"
  5909. }
  5910. },
  5911. },
  5912. [
  5913. {
  5914. name: "Normal",
  5915. height: math.unit(12, "feet")
  5916. },
  5917. {
  5918. name: "Macro",
  5919. height: math.unit(279, "feet"),
  5920. default: true
  5921. }
  5922. ]
  5923. ))
  5924. characterMakers.push(() => makeCharacter(
  5925. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5926. {
  5927. femSfw: {
  5928. height: math.unit(8, "feet"),
  5929. weight: math.unit(350, "lb"),
  5930. name: "Fem",
  5931. image: {
  5932. source: "./media/characters/sigvald/fem-sfw.svg",
  5933. extra: 182 / 164,
  5934. bottom: 8.7 / 190.5
  5935. }
  5936. },
  5937. femNsfw: {
  5938. height: math.unit(8, "feet"),
  5939. weight: math.unit(350, "lb"),
  5940. name: "Fem (NSFW)",
  5941. image: {
  5942. source: "./media/characters/sigvald/fem-nsfw.svg",
  5943. extra: 182 / 164,
  5944. bottom: 8.7 / 190.5
  5945. }
  5946. },
  5947. maleNsfw: {
  5948. height: math.unit(8, "feet"),
  5949. weight: math.unit(350, "lb"),
  5950. name: "Male (NSFW)",
  5951. image: {
  5952. source: "./media/characters/sigvald/male-nsfw.svg",
  5953. extra: 182 / 164,
  5954. bottom: 8.7 / 190.5
  5955. }
  5956. },
  5957. hermNsfw: {
  5958. height: math.unit(8, "feet"),
  5959. weight: math.unit(350, "lb"),
  5960. name: "Herm (NSFW)",
  5961. image: {
  5962. source: "./media/characters/sigvald/herm-nsfw.svg",
  5963. extra: 182 / 164,
  5964. bottom: 8.7 / 190.5
  5965. }
  5966. },
  5967. dick: {
  5968. height: math.unit(2.36, "feet"),
  5969. name: "Dick",
  5970. image: {
  5971. source: "./media/characters/sigvald/dick.svg"
  5972. }
  5973. },
  5974. eye: {
  5975. height: math.unit(0.31, "feet"),
  5976. name: "Eye",
  5977. image: {
  5978. source: "./media/characters/sigvald/eye.svg"
  5979. }
  5980. },
  5981. mouth: {
  5982. height: math.unit(0.92, "feet"),
  5983. name: "Mouth",
  5984. image: {
  5985. source: "./media/characters/sigvald/mouth.svg"
  5986. }
  5987. },
  5988. paws: {
  5989. height: math.unit(2.2, "feet"),
  5990. name: "Paws",
  5991. image: {
  5992. source: "./media/characters/sigvald/paws.svg"
  5993. }
  5994. }
  5995. },
  5996. [
  5997. {
  5998. name: "Normal",
  5999. height: math.unit(8, "feet")
  6000. },
  6001. {
  6002. name: "Large",
  6003. height: math.unit(12, "feet")
  6004. },
  6005. {
  6006. name: "Larger",
  6007. height: math.unit(20, "feet")
  6008. },
  6009. {
  6010. name: "Macro",
  6011. height: math.unit(150, "feet")
  6012. },
  6013. {
  6014. name: "Macro+",
  6015. height: math.unit(200, "feet"),
  6016. default: true
  6017. },
  6018. ]
  6019. ))
  6020. characterMakers.push(() => makeCharacter(
  6021. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6022. {
  6023. side: {
  6024. height: math.unit(12, "feet"),
  6025. weight: math.unit(2000, "kg"),
  6026. name: "Side",
  6027. image: {
  6028. source: "./media/characters/scott/side.svg",
  6029. extra: 754 / 724,
  6030. bottom: 0.069
  6031. }
  6032. },
  6033. upright: {
  6034. height: math.unit(12, "feet"),
  6035. weight: math.unit(2000, "kg"),
  6036. name: "Upright",
  6037. image: {
  6038. source: "./media/characters/scott/upright.svg",
  6039. extra: 3881 / 3722,
  6040. bottom: 0.05
  6041. }
  6042. },
  6043. },
  6044. [
  6045. {
  6046. name: "Normal",
  6047. height: math.unit(12, "feet"),
  6048. default: true
  6049. },
  6050. ]
  6051. ))
  6052. characterMakers.push(() => makeCharacter(
  6053. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6054. {
  6055. side: {
  6056. height: math.unit(8, "meters"),
  6057. weight: math.unit(84755, "lbs"),
  6058. name: "Side",
  6059. image: {
  6060. source: "./media/characters/tobias/side.svg",
  6061. extra: 1474 / 1096,
  6062. bottom: 38.9 / 1513.1235
  6063. }
  6064. },
  6065. },
  6066. [
  6067. {
  6068. name: "Normal",
  6069. height: math.unit(8, "meters"),
  6070. default: true
  6071. },
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6076. {
  6077. front: {
  6078. height: math.unit(5.5, "feet"),
  6079. weight: math.unit(400, "lbs"),
  6080. name: "Front",
  6081. image: {
  6082. source: "./media/characters/kieran/front.svg",
  6083. extra: 2694 / 2364,
  6084. bottom: 217 / 2908
  6085. }
  6086. },
  6087. side: {
  6088. height: math.unit(5.5, "feet"),
  6089. weight: math.unit(400, "lbs"),
  6090. name: "Side",
  6091. image: {
  6092. source: "./media/characters/kieran/side.svg",
  6093. extra: 875 / 777,
  6094. bottom: 84.6 / 959
  6095. }
  6096. },
  6097. },
  6098. [
  6099. {
  6100. name: "Normal",
  6101. height: math.unit(5.5, "feet"),
  6102. default: true
  6103. },
  6104. ]
  6105. ))
  6106. characterMakers.push(() => makeCharacter(
  6107. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6108. {
  6109. side: {
  6110. height: math.unit(2, "meters"),
  6111. weight: math.unit(70, "kg"),
  6112. name: "Side",
  6113. image: {
  6114. source: "./media/characters/sanya/side.svg",
  6115. bottom: 0.02,
  6116. extra: 1.02
  6117. }
  6118. },
  6119. },
  6120. [
  6121. {
  6122. name: "Small",
  6123. height: math.unit(2, "meters")
  6124. },
  6125. {
  6126. name: "Normal",
  6127. height: math.unit(3, "meters")
  6128. },
  6129. {
  6130. name: "Macro",
  6131. height: math.unit(16, "meters"),
  6132. default: true
  6133. },
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6138. {
  6139. front: {
  6140. height: math.unit(2, "meters"),
  6141. weight: math.unit(120, "kg"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/miranda/front.svg",
  6145. extra: 195 / 185,
  6146. bottom: 10.9 / 206.5
  6147. }
  6148. },
  6149. back: {
  6150. height: math.unit(2, "meters"),
  6151. weight: math.unit(120, "kg"),
  6152. name: "Back",
  6153. image: {
  6154. source: "./media/characters/miranda/back.svg",
  6155. extra: 201 / 193,
  6156. bottom: 2.3 / 203.7
  6157. }
  6158. },
  6159. },
  6160. [
  6161. {
  6162. name: "Normal",
  6163. height: math.unit(10, "feet"),
  6164. default: true
  6165. }
  6166. ]
  6167. ))
  6168. characterMakers.push(() => makeCharacter(
  6169. { name: "James", species: ["deer"], tags: ["anthro"] },
  6170. {
  6171. side: {
  6172. height: math.unit(2, "meters"),
  6173. weight: math.unit(100, "kg"),
  6174. name: "Front",
  6175. image: {
  6176. source: "./media/characters/james/front.svg",
  6177. extra: 10 / 8.5
  6178. }
  6179. },
  6180. },
  6181. [
  6182. {
  6183. name: "Normal",
  6184. height: math.unit(8.5, "feet"),
  6185. default: true
  6186. }
  6187. ]
  6188. ))
  6189. characterMakers.push(() => makeCharacter(
  6190. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6191. {
  6192. side: {
  6193. height: math.unit(9.5, "feet"),
  6194. weight: math.unit(2500, "lbs"),
  6195. name: "Side",
  6196. image: {
  6197. source: "./media/characters/heather/side.svg"
  6198. }
  6199. },
  6200. },
  6201. [
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(9.5, "feet"),
  6205. default: true
  6206. }
  6207. ]
  6208. ))
  6209. characterMakers.push(() => makeCharacter(
  6210. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6211. {
  6212. side: {
  6213. height: math.unit(6.5, "feet"),
  6214. weight: math.unit(400, "lbs"),
  6215. name: "Side",
  6216. image: {
  6217. source: "./media/characters/lukas/side.svg",
  6218. extra: 7.25 / 6.5
  6219. }
  6220. },
  6221. },
  6222. [
  6223. {
  6224. name: "Normal",
  6225. height: math.unit(6.5, "feet"),
  6226. default: true
  6227. }
  6228. ]
  6229. ))
  6230. characterMakers.push(() => makeCharacter(
  6231. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6232. {
  6233. side: {
  6234. height: math.unit(5, "feet"),
  6235. weight: math.unit(3000, "lbs"),
  6236. name: "Side",
  6237. image: {
  6238. source: "./media/characters/louise/side.svg"
  6239. }
  6240. },
  6241. },
  6242. [
  6243. {
  6244. name: "Normal",
  6245. height: math.unit(5, "feet"),
  6246. default: true
  6247. }
  6248. ]
  6249. ))
  6250. characterMakers.push(() => makeCharacter(
  6251. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6252. {
  6253. side: {
  6254. height: math.unit(6, "feet"),
  6255. weight: math.unit(150, "lbs"),
  6256. name: "Side",
  6257. image: {
  6258. source: "./media/characters/ramona/side.svg",
  6259. extra: 871/854,
  6260. bottom: 41/912
  6261. }
  6262. },
  6263. },
  6264. [
  6265. {
  6266. name: "Normal",
  6267. height: math.unit(6 + 4/12, "feet")
  6268. },
  6269. {
  6270. name: "Minimacro",
  6271. height: math.unit(5.3, "meters"),
  6272. default: true
  6273. },
  6274. {
  6275. name: "Macro",
  6276. height: math.unit(20, "stories")
  6277. },
  6278. {
  6279. name: "Macro+",
  6280. height: math.unit(50, "stories")
  6281. },
  6282. ]
  6283. ))
  6284. characterMakers.push(() => makeCharacter(
  6285. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6286. {
  6287. standing: {
  6288. height: math.unit(5.75, "feet"),
  6289. weight: math.unit(160, "lbs"),
  6290. name: "Standing",
  6291. image: {
  6292. source: "./media/characters/deerpuff/standing.svg",
  6293. extra: 682 / 624
  6294. }
  6295. },
  6296. sitting: {
  6297. height: math.unit(5.75 / 1.79, "feet"),
  6298. weight: math.unit(160, "lbs"),
  6299. name: "Sitting",
  6300. image: {
  6301. source: "./media/characters/deerpuff/sitting.svg",
  6302. bottom: 44 / 400,
  6303. extra: 1
  6304. }
  6305. },
  6306. taurLaying: {
  6307. height: math.unit(6, "feet"),
  6308. weight: math.unit(400, "lbs"),
  6309. name: "Taur (Laying)",
  6310. image: {
  6311. source: "./media/characters/deerpuff/taur-laying.svg"
  6312. }
  6313. },
  6314. },
  6315. [
  6316. {
  6317. name: "Puffball",
  6318. height: math.unit(6, "inches")
  6319. },
  6320. {
  6321. name: "Normalpuff",
  6322. height: math.unit(5.75, "feet")
  6323. },
  6324. {
  6325. name: "Macropuff",
  6326. height: math.unit(1500, "feet"),
  6327. default: true
  6328. },
  6329. {
  6330. name: "Megapuff",
  6331. height: math.unit(500, "miles")
  6332. },
  6333. {
  6334. name: "Gigapuff",
  6335. height: math.unit(250000, "miles")
  6336. },
  6337. {
  6338. name: "Omegapuff",
  6339. height: math.unit(1000, "lightyears")
  6340. },
  6341. ]
  6342. ))
  6343. characterMakers.push(() => makeCharacter(
  6344. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6345. {
  6346. stomping: {
  6347. height: math.unit(6, "feet"),
  6348. weight: math.unit(170, "lbs"),
  6349. name: "Stomping",
  6350. image: {
  6351. source: "./media/characters/vivian/stomping.svg"
  6352. }
  6353. },
  6354. sitting: {
  6355. height: math.unit(6 / 1.75, "feet"),
  6356. weight: math.unit(170, "lbs"),
  6357. name: "Sitting",
  6358. image: {
  6359. source: "./media/characters/vivian/sitting.svg",
  6360. bottom: 1 / 6.4,
  6361. extra: 1,
  6362. }
  6363. },
  6364. },
  6365. [
  6366. {
  6367. name: "Normal",
  6368. height: math.unit(7, "feet"),
  6369. default: true
  6370. },
  6371. {
  6372. name: "Macro",
  6373. height: math.unit(10, "stories")
  6374. },
  6375. {
  6376. name: "Macro+",
  6377. height: math.unit(30, "stories")
  6378. },
  6379. {
  6380. name: "Megamacro",
  6381. height: math.unit(10, "miles")
  6382. },
  6383. {
  6384. name: "Megamacro+",
  6385. height: math.unit(2750000, "meters")
  6386. },
  6387. ]
  6388. ))
  6389. characterMakers.push(() => makeCharacter(
  6390. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6391. {
  6392. front: {
  6393. height: math.unit(6, "feet"),
  6394. weight: math.unit(160, "lbs"),
  6395. name: "Front",
  6396. image: {
  6397. source: "./media/characters/prince/front.svg",
  6398. extra: 1938/1682,
  6399. bottom: 45/1983
  6400. }
  6401. },
  6402. back: {
  6403. height: math.unit(6, "feet"),
  6404. weight: math.unit(160, "lbs"),
  6405. name: "Back",
  6406. image: {
  6407. source: "./media/characters/prince/back.svg",
  6408. extra: 1955/1726,
  6409. bottom: 6/1961
  6410. }
  6411. },
  6412. },
  6413. [
  6414. {
  6415. name: "Normal",
  6416. height: math.unit(7.75, "feet"),
  6417. default: true
  6418. },
  6419. {
  6420. name: "Not cute",
  6421. height: math.unit(17, "feet")
  6422. },
  6423. {
  6424. name: "I said NOT",
  6425. height: math.unit(91, "feet")
  6426. },
  6427. {
  6428. name: "Please stop",
  6429. height: math.unit(560, "feet")
  6430. },
  6431. {
  6432. name: "What have you done",
  6433. height: math.unit(2200, "feet")
  6434. },
  6435. {
  6436. name: "Deer God",
  6437. height: math.unit(3.6, "miles")
  6438. },
  6439. ]
  6440. ))
  6441. characterMakers.push(() => makeCharacter(
  6442. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6443. {
  6444. standing: {
  6445. height: math.unit(6, "feet"),
  6446. weight: math.unit(300, "lbs"),
  6447. name: "Standing",
  6448. image: {
  6449. source: "./media/characters/psymon/standing.svg",
  6450. extra: 1888 / 1810,
  6451. bottom: 0.05
  6452. }
  6453. },
  6454. slithering: {
  6455. height: math.unit(6, "feet"),
  6456. weight: math.unit(300, "lbs"),
  6457. name: "Slithering",
  6458. image: {
  6459. source: "./media/characters/psymon/slithering.svg",
  6460. extra: 1330 / 1224
  6461. }
  6462. },
  6463. slitheringAlt: {
  6464. height: math.unit(6, "feet"),
  6465. weight: math.unit(300, "lbs"),
  6466. name: "Slithering (Alt)",
  6467. image: {
  6468. source: "./media/characters/psymon/slithering-alt.svg",
  6469. extra: 1330 / 1224
  6470. }
  6471. },
  6472. },
  6473. [
  6474. {
  6475. name: "Normal",
  6476. height: math.unit(11.25, "feet"),
  6477. default: true
  6478. },
  6479. {
  6480. name: "Large",
  6481. height: math.unit(27, "feet")
  6482. },
  6483. {
  6484. name: "Giant",
  6485. height: math.unit(87, "feet")
  6486. },
  6487. {
  6488. name: "Macro",
  6489. height: math.unit(365, "feet")
  6490. },
  6491. {
  6492. name: "Megamacro",
  6493. height: math.unit(3, "miles")
  6494. },
  6495. {
  6496. name: "World Serpent",
  6497. height: math.unit(8000, "miles")
  6498. },
  6499. ]
  6500. ))
  6501. characterMakers.push(() => makeCharacter(
  6502. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6503. {
  6504. front: {
  6505. height: math.unit(6, "feet"),
  6506. weight: math.unit(180, "lbs"),
  6507. name: "Front",
  6508. image: {
  6509. source: "./media/characters/daimos/front.svg",
  6510. extra: 4160 / 3897,
  6511. bottom: 0.021
  6512. }
  6513. }
  6514. },
  6515. [
  6516. {
  6517. name: "Normal",
  6518. height: math.unit(8, "feet"),
  6519. default: true
  6520. },
  6521. {
  6522. name: "Big Dog",
  6523. height: math.unit(22, "feet")
  6524. },
  6525. {
  6526. name: "Macro",
  6527. height: math.unit(127, "feet")
  6528. },
  6529. {
  6530. name: "Megamacro",
  6531. height: math.unit(3600, "feet")
  6532. },
  6533. ]
  6534. ))
  6535. characterMakers.push(() => makeCharacter(
  6536. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6537. {
  6538. side: {
  6539. height: math.unit(6, "feet"),
  6540. weight: math.unit(180, "lbs"),
  6541. name: "Side",
  6542. image: {
  6543. source: "./media/characters/blake/side.svg",
  6544. extra: 1212 / 1120,
  6545. bottom: 0.05
  6546. }
  6547. },
  6548. crouched: {
  6549. height: math.unit(6 * 0.57, "feet"),
  6550. weight: math.unit(180, "lbs"),
  6551. name: "Crouched",
  6552. image: {
  6553. source: "./media/characters/blake/crouched.svg",
  6554. extra: 840 / 587,
  6555. bottom: 0.04
  6556. }
  6557. },
  6558. bent: {
  6559. height: math.unit(6 * 0.75, "feet"),
  6560. weight: math.unit(180, "lbs"),
  6561. name: "Bent",
  6562. image: {
  6563. source: "./media/characters/blake/bent.svg",
  6564. extra: 592 / 544,
  6565. bottom: 0.035
  6566. }
  6567. },
  6568. },
  6569. [
  6570. {
  6571. name: "Normal",
  6572. height: math.unit(8 + 1 / 6, "feet"),
  6573. default: true
  6574. },
  6575. {
  6576. name: "Big Backside",
  6577. height: math.unit(37, "feet")
  6578. },
  6579. {
  6580. name: "Subway Shredder",
  6581. height: math.unit(72, "feet")
  6582. },
  6583. {
  6584. name: "City Carver",
  6585. height: math.unit(1675, "feet")
  6586. },
  6587. {
  6588. name: "Tectonic Tweaker",
  6589. height: math.unit(2300, "miles")
  6590. },
  6591. ]
  6592. ))
  6593. characterMakers.push(() => makeCharacter(
  6594. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6595. {
  6596. front: {
  6597. height: math.unit(6, "feet"),
  6598. weight: math.unit(180, "lbs"),
  6599. name: "Front",
  6600. image: {
  6601. source: "./media/characters/guisetto/front.svg",
  6602. extra: 856 / 817,
  6603. bottom: 0.06
  6604. }
  6605. },
  6606. airborne: {
  6607. height: math.unit(6, "feet"),
  6608. weight: math.unit(180, "lbs"),
  6609. name: "Airborne",
  6610. image: {
  6611. source: "./media/characters/guisetto/airborne.svg",
  6612. extra: 584 / 525
  6613. }
  6614. },
  6615. },
  6616. [
  6617. {
  6618. name: "Normal",
  6619. height: math.unit(10 + 11 / 12, "feet"),
  6620. default: true
  6621. },
  6622. {
  6623. name: "Large",
  6624. height: math.unit(35, "feet")
  6625. },
  6626. {
  6627. name: "Macro",
  6628. height: math.unit(475, "feet")
  6629. },
  6630. ]
  6631. ))
  6632. characterMakers.push(() => makeCharacter(
  6633. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6634. {
  6635. front: {
  6636. height: math.unit(6, "feet"),
  6637. weight: math.unit(180, "lbs"),
  6638. name: "Front",
  6639. image: {
  6640. source: "./media/characters/luxor/front.svg",
  6641. extra: 2940 / 2152
  6642. }
  6643. },
  6644. back: {
  6645. height: math.unit(6, "feet"),
  6646. weight: math.unit(180, "lbs"),
  6647. name: "Back",
  6648. image: {
  6649. source: "./media/characters/luxor/back.svg",
  6650. extra: 1083 / 960
  6651. }
  6652. },
  6653. },
  6654. [
  6655. {
  6656. name: "Normal",
  6657. height: math.unit(5 + 5 / 6, "feet"),
  6658. default: true
  6659. },
  6660. {
  6661. name: "Lamp",
  6662. height: math.unit(50, "feet")
  6663. },
  6664. {
  6665. name: "Lämp",
  6666. height: math.unit(300, "feet")
  6667. },
  6668. {
  6669. name: "The sun is a lamp",
  6670. height: math.unit(250000, "miles")
  6671. },
  6672. ]
  6673. ))
  6674. characterMakers.push(() => makeCharacter(
  6675. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6676. {
  6677. front: {
  6678. height: math.unit(6, "feet"),
  6679. weight: math.unit(50, "lbs"),
  6680. name: "Front",
  6681. image: {
  6682. source: "./media/characters/huoyan/front.svg"
  6683. }
  6684. },
  6685. side: {
  6686. height: math.unit(6, "feet"),
  6687. weight: math.unit(180, "lbs"),
  6688. name: "Side",
  6689. image: {
  6690. source: "./media/characters/huoyan/side.svg"
  6691. }
  6692. },
  6693. },
  6694. [
  6695. {
  6696. name: "Chef",
  6697. height: math.unit(9, "feet")
  6698. },
  6699. {
  6700. name: "Normal",
  6701. height: math.unit(65, "feet"),
  6702. default: true
  6703. },
  6704. {
  6705. name: "Macro",
  6706. height: math.unit(780, "feet")
  6707. },
  6708. {
  6709. name: "Flaming Mountain",
  6710. height: math.unit(4.8, "miles")
  6711. },
  6712. {
  6713. name: "Celestial",
  6714. height: math.unit(765000, "miles")
  6715. },
  6716. ]
  6717. ))
  6718. characterMakers.push(() => makeCharacter(
  6719. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6720. {
  6721. front: {
  6722. height: math.unit(5 + 3 / 4, "feet"),
  6723. weight: math.unit(120, "lbs"),
  6724. name: "Front",
  6725. image: {
  6726. source: "./media/characters/tails/front.svg"
  6727. }
  6728. }
  6729. },
  6730. [
  6731. {
  6732. name: "Normal",
  6733. height: math.unit(5 + 3 / 4, "feet"),
  6734. default: true
  6735. }
  6736. ]
  6737. ))
  6738. characterMakers.push(() => makeCharacter(
  6739. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6740. {
  6741. front: {
  6742. height: math.unit(4, "feet"),
  6743. weight: math.unit(50, "lbs"),
  6744. name: "Front",
  6745. image: {
  6746. source: "./media/characters/rainy/front.svg"
  6747. }
  6748. }
  6749. },
  6750. [
  6751. {
  6752. name: "Macro",
  6753. height: math.unit(800, "feet"),
  6754. default: true
  6755. }
  6756. ]
  6757. ))
  6758. characterMakers.push(() => makeCharacter(
  6759. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6760. {
  6761. front: {
  6762. height: math.unit(6, "feet"),
  6763. weight: math.unit(150, "lbs"),
  6764. name: "Front",
  6765. image: {
  6766. source: "./media/characters/rainier/front.svg"
  6767. }
  6768. }
  6769. },
  6770. [
  6771. {
  6772. name: "Micro",
  6773. height: math.unit(2, "mm"),
  6774. default: true
  6775. }
  6776. ]
  6777. ))
  6778. characterMakers.push(() => makeCharacter(
  6779. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6780. {
  6781. front: {
  6782. height: math.unit(8 + 4/12, "feet"),
  6783. weight: math.unit(450, "kilograms"),
  6784. volume: math.unit(5, "cups"),
  6785. name: "Front",
  6786. image: {
  6787. source: "./media/characters/andy-renard/front.svg",
  6788. extra: 1839/1726,
  6789. bottom: 134/1973
  6790. }
  6791. },
  6792. back: {
  6793. height: math.unit(8 + 4/12, "feet"),
  6794. weight: math.unit(450, "kilograms"),
  6795. volume: math.unit(5, "cups"),
  6796. name: "Back",
  6797. image: {
  6798. source: "./media/characters/andy-renard/back.svg",
  6799. extra: 1838/1710,
  6800. bottom: 105/1943
  6801. }
  6802. },
  6803. },
  6804. [
  6805. {
  6806. name: "Tall",
  6807. height: math.unit(8 + 4/12, "feet")
  6808. },
  6809. {
  6810. name: "Mini Macro",
  6811. height: math.unit(15, "feet"),
  6812. default: true
  6813. },
  6814. {
  6815. name: "Macro",
  6816. height: math.unit(100, "feet")
  6817. },
  6818. {
  6819. name: "Mega Macro",
  6820. height: math.unit(1000, "feet")
  6821. },
  6822. {
  6823. name: "Giga Macro",
  6824. height: math.unit(10, "miles")
  6825. },
  6826. {
  6827. name: "God Macro",
  6828. height: math.unit(1, "multiverse")
  6829. },
  6830. ]
  6831. ))
  6832. characterMakers.push(() => makeCharacter(
  6833. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6834. {
  6835. front: {
  6836. height: math.unit(6, "feet"),
  6837. weight: math.unit(210, "lbs"),
  6838. name: "Front",
  6839. image: {
  6840. source: "./media/characters/cimmaron/front-sfw.svg",
  6841. extra: 701 / 676,
  6842. bottom: 0.046
  6843. }
  6844. },
  6845. back: {
  6846. height: math.unit(6, "feet"),
  6847. weight: math.unit(210, "lbs"),
  6848. name: "Back",
  6849. image: {
  6850. source: "./media/characters/cimmaron/back-sfw.svg",
  6851. extra: 701 / 676,
  6852. bottom: 0.046
  6853. }
  6854. },
  6855. frontNsfw: {
  6856. height: math.unit(6, "feet"),
  6857. weight: math.unit(210, "lbs"),
  6858. name: "Front (NSFW)",
  6859. image: {
  6860. source: "./media/characters/cimmaron/front-nsfw.svg",
  6861. extra: 701 / 676,
  6862. bottom: 0.046
  6863. }
  6864. },
  6865. backNsfw: {
  6866. height: math.unit(6, "feet"),
  6867. weight: math.unit(210, "lbs"),
  6868. name: "Back (NSFW)",
  6869. image: {
  6870. source: "./media/characters/cimmaron/back-nsfw.svg",
  6871. extra: 701 / 676,
  6872. bottom: 0.046
  6873. }
  6874. },
  6875. dick: {
  6876. height: math.unit(1.714, "feet"),
  6877. name: "Dick",
  6878. image: {
  6879. source: "./media/characters/cimmaron/dick.svg"
  6880. }
  6881. },
  6882. },
  6883. [
  6884. {
  6885. name: "Normal",
  6886. height: math.unit(6, "feet"),
  6887. default: true
  6888. },
  6889. {
  6890. name: "Macro Mayor",
  6891. height: math.unit(350, "meters")
  6892. },
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6897. {
  6898. front: {
  6899. height: math.unit(6, "feet"),
  6900. weight: math.unit(200, "lbs"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/akari/front.svg",
  6904. extra: 962 / 901,
  6905. bottom: 0.04
  6906. }
  6907. }
  6908. },
  6909. [
  6910. {
  6911. name: "Micro",
  6912. height: math.unit(5, "inches"),
  6913. default: true
  6914. },
  6915. {
  6916. name: "Normal",
  6917. height: math.unit(7, "feet")
  6918. },
  6919. ]
  6920. ))
  6921. characterMakers.push(() => makeCharacter(
  6922. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6923. {
  6924. front: {
  6925. height: math.unit(6, "feet"),
  6926. weight: math.unit(140, "lbs"),
  6927. name: "Front",
  6928. image: {
  6929. source: "./media/characters/cynosura/front.svg",
  6930. extra: 437/410,
  6931. bottom: 9/446
  6932. }
  6933. },
  6934. back: {
  6935. height: math.unit(6, "feet"),
  6936. weight: math.unit(140, "lbs"),
  6937. name: "Back",
  6938. image: {
  6939. source: "./media/characters/cynosura/back.svg",
  6940. extra: 1304/1160,
  6941. bottom: 71/1375
  6942. }
  6943. },
  6944. },
  6945. [
  6946. {
  6947. name: "Micro",
  6948. height: math.unit(4, "inches")
  6949. },
  6950. {
  6951. name: "Normal",
  6952. height: math.unit(5.75, "feet"),
  6953. default: true
  6954. },
  6955. {
  6956. name: "Tall",
  6957. height: math.unit(10, "feet")
  6958. },
  6959. {
  6960. name: "Big",
  6961. height: math.unit(20, "feet")
  6962. },
  6963. {
  6964. name: "Macro",
  6965. height: math.unit(50, "feet")
  6966. },
  6967. ]
  6968. ))
  6969. characterMakers.push(() => makeCharacter(
  6970. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6971. {
  6972. front: {
  6973. height: math.unit(13 + 2/12, "feet"),
  6974. weight: math.unit(800, "kg"),
  6975. name: "Front",
  6976. image: {
  6977. source: "./media/characters/gin/front.svg",
  6978. extra: 1312/1191,
  6979. bottom: 45/1357
  6980. }
  6981. },
  6982. mouth: {
  6983. height: math.unit(2.39 * 1.8, "feet"),
  6984. name: "Mouth",
  6985. image: {
  6986. source: "./media/characters/gin/mouth.svg"
  6987. }
  6988. },
  6989. hand: {
  6990. height: math.unit(1.57 * 2.19, "feet"),
  6991. name: "Hand",
  6992. image: {
  6993. source: "./media/characters/gin/hand.svg"
  6994. }
  6995. },
  6996. foot: {
  6997. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6998. name: "Foot",
  6999. image: {
  7000. source: "./media/characters/gin/foot.svg"
  7001. }
  7002. },
  7003. sole: {
  7004. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7005. name: "Sole",
  7006. image: {
  7007. source: "./media/characters/gin/sole.svg"
  7008. }
  7009. },
  7010. },
  7011. [
  7012. {
  7013. name: "Very Small",
  7014. height: math.unit(13 + 2 / 12, "feet")
  7015. },
  7016. {
  7017. name: "Micro",
  7018. height: math.unit(600, "miles")
  7019. },
  7020. {
  7021. name: "Regular",
  7022. height: math.unit(20, "earths"),
  7023. default: true
  7024. },
  7025. {
  7026. name: "Macro",
  7027. height: math.unit(2.2, "solarradii")
  7028. },
  7029. {
  7030. name: "Teramacro",
  7031. height: math.unit(1.2, "galaxies")
  7032. },
  7033. {
  7034. name: "Omegamacro",
  7035. height: math.unit(200, "universes")
  7036. },
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7041. {
  7042. front: {
  7043. height: math.unit(6 + 1 / 6, "feet"),
  7044. weight: math.unit(178, "lbs"),
  7045. name: "Front",
  7046. image: {
  7047. source: "./media/characters/guy/front.svg"
  7048. }
  7049. }
  7050. },
  7051. [
  7052. {
  7053. name: "Normal",
  7054. height: math.unit(6 + 1 / 6, "feet"),
  7055. default: true
  7056. },
  7057. {
  7058. name: "Large",
  7059. height: math.unit(25 + 7 / 12, "feet")
  7060. },
  7061. {
  7062. name: "Macro",
  7063. height: math.unit(60 + 9 / 12, "feet")
  7064. },
  7065. {
  7066. name: "Macro+",
  7067. height: math.unit(246, "feet")
  7068. },
  7069. {
  7070. name: "Macro++",
  7071. height: math.unit(878, "feet")
  7072. }
  7073. ]
  7074. ))
  7075. characterMakers.push(() => makeCharacter(
  7076. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7077. {
  7078. front: {
  7079. height: math.unit(9, "feet"),
  7080. weight: math.unit(800, "lbs"),
  7081. name: "Front",
  7082. image: {
  7083. source: "./media/characters/tiberius/front.svg",
  7084. extra: 2295 / 2071
  7085. }
  7086. },
  7087. back: {
  7088. height: math.unit(9, "feet"),
  7089. weight: math.unit(800, "lbs"),
  7090. name: "Back",
  7091. image: {
  7092. source: "./media/characters/tiberius/back.svg",
  7093. extra: 2373 / 2160
  7094. }
  7095. },
  7096. },
  7097. [
  7098. {
  7099. name: "Normal",
  7100. height: math.unit(9, "feet"),
  7101. default: true
  7102. }
  7103. ]
  7104. ))
  7105. characterMakers.push(() => makeCharacter(
  7106. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7107. {
  7108. front: {
  7109. height: math.unit(6, "feet"),
  7110. weight: math.unit(600, "lbs"),
  7111. name: "Front",
  7112. image: {
  7113. source: "./media/characters/surgo/front.svg",
  7114. extra: 3591 / 2227
  7115. }
  7116. },
  7117. back: {
  7118. height: math.unit(6, "feet"),
  7119. weight: math.unit(600, "lbs"),
  7120. name: "Back",
  7121. image: {
  7122. source: "./media/characters/surgo/back.svg",
  7123. extra: 3557 / 2228
  7124. }
  7125. },
  7126. laying: {
  7127. height: math.unit(6 * 0.85, "feet"),
  7128. weight: math.unit(600, "lbs"),
  7129. name: "Laying",
  7130. image: {
  7131. source: "./media/characters/surgo/laying.svg"
  7132. }
  7133. },
  7134. },
  7135. [
  7136. {
  7137. name: "Normal",
  7138. height: math.unit(6, "feet"),
  7139. default: true
  7140. }
  7141. ]
  7142. ))
  7143. characterMakers.push(() => makeCharacter(
  7144. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7145. {
  7146. side: {
  7147. height: math.unit(6, "feet"),
  7148. weight: math.unit(150, "lbs"),
  7149. name: "Side",
  7150. image: {
  7151. source: "./media/characters/cibus/side.svg",
  7152. extra: 800 / 400
  7153. }
  7154. },
  7155. },
  7156. [
  7157. {
  7158. name: "Normal",
  7159. height: math.unit(6, "feet"),
  7160. default: true
  7161. }
  7162. ]
  7163. ))
  7164. characterMakers.push(() => makeCharacter(
  7165. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7166. {
  7167. front: {
  7168. height: math.unit(6, "feet"),
  7169. weight: math.unit(240, "lbs"),
  7170. name: "Front",
  7171. image: {
  7172. source: "./media/characters/nibbles/front.svg"
  7173. }
  7174. },
  7175. side: {
  7176. height: math.unit(6, "feet"),
  7177. weight: math.unit(240, "lbs"),
  7178. name: "Side",
  7179. image: {
  7180. source: "./media/characters/nibbles/side.svg"
  7181. }
  7182. },
  7183. },
  7184. [
  7185. {
  7186. name: "Normal",
  7187. height: math.unit(9, "feet"),
  7188. default: true
  7189. }
  7190. ]
  7191. ))
  7192. characterMakers.push(() => makeCharacter(
  7193. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7194. {
  7195. side: {
  7196. height: math.unit(5 + 1 / 6, "feet"),
  7197. weight: math.unit(130, "lbs"),
  7198. name: "Side",
  7199. image: {
  7200. source: "./media/characters/rikky/side.svg",
  7201. extra: 851 / 801
  7202. }
  7203. },
  7204. },
  7205. [
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(5 + 1 / 6, "feet")
  7209. },
  7210. {
  7211. name: "Macro",
  7212. height: math.unit(152, "feet"),
  7213. default: true
  7214. },
  7215. {
  7216. name: "Megamacro",
  7217. height: math.unit(7, "miles")
  7218. }
  7219. ]
  7220. ))
  7221. characterMakers.push(() => makeCharacter(
  7222. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7223. {
  7224. side: {
  7225. height: math.unit(370, "cm"),
  7226. weight: math.unit(350, "lbs"),
  7227. name: "Side",
  7228. image: {
  7229. source: "./media/characters/malfressa/side.svg"
  7230. }
  7231. },
  7232. walking: {
  7233. height: math.unit(370, "cm"),
  7234. weight: math.unit(350, "lbs"),
  7235. name: "Walking",
  7236. image: {
  7237. source: "./media/characters/malfressa/walking.svg"
  7238. }
  7239. },
  7240. feral: {
  7241. height: math.unit(2500, "cm"),
  7242. weight: math.unit(100000, "lbs"),
  7243. name: "Feral",
  7244. image: {
  7245. source: "./media/characters/malfressa/feral.svg",
  7246. extra: 2108 / 837,
  7247. bottom: 0.02
  7248. }
  7249. },
  7250. },
  7251. [
  7252. {
  7253. name: "Normal",
  7254. height: math.unit(370, "cm")
  7255. },
  7256. {
  7257. name: "Macro",
  7258. height: math.unit(300, "meters"),
  7259. default: true
  7260. }
  7261. ]
  7262. ))
  7263. characterMakers.push(() => makeCharacter(
  7264. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7265. {
  7266. front: {
  7267. height: math.unit(6, "feet"),
  7268. weight: math.unit(60, "kg"),
  7269. name: "Front",
  7270. image: {
  7271. source: "./media/characters/jaro/front.svg",
  7272. extra: 845/817,
  7273. bottom: 45/890
  7274. }
  7275. },
  7276. back: {
  7277. height: math.unit(6, "feet"),
  7278. weight: math.unit(60, "kg"),
  7279. name: "Back",
  7280. image: {
  7281. source: "./media/characters/jaro/back.svg",
  7282. extra: 847/817,
  7283. bottom: 34/881
  7284. }
  7285. },
  7286. },
  7287. [
  7288. {
  7289. name: "Micro",
  7290. height: math.unit(7, "inches")
  7291. },
  7292. {
  7293. name: "Normal",
  7294. height: math.unit(5.5, "feet"),
  7295. default: true
  7296. },
  7297. {
  7298. name: "Minimacro",
  7299. height: math.unit(20, "feet")
  7300. },
  7301. {
  7302. name: "Macro",
  7303. height: math.unit(200, "meters")
  7304. }
  7305. ]
  7306. ))
  7307. characterMakers.push(() => makeCharacter(
  7308. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7309. {
  7310. front: {
  7311. height: math.unit(6, "feet"),
  7312. weight: math.unit(195, "lb"),
  7313. name: "Front",
  7314. image: {
  7315. source: "./media/characters/rogue/front.svg"
  7316. }
  7317. },
  7318. },
  7319. [
  7320. {
  7321. name: "Macro",
  7322. height: math.unit(90, "feet"),
  7323. default: true
  7324. },
  7325. ]
  7326. ))
  7327. characterMakers.push(() => makeCharacter(
  7328. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7329. {
  7330. standing: {
  7331. height: math.unit(5 + 8 / 12, "feet"),
  7332. weight: math.unit(140, "lb"),
  7333. name: "Standing",
  7334. image: {
  7335. source: "./media/characters/piper/standing.svg",
  7336. extra: 1440/1284,
  7337. bottom: 66/1506
  7338. }
  7339. },
  7340. running: {
  7341. height: math.unit(5 + 8 / 12, "feet"),
  7342. weight: math.unit(140, "lb"),
  7343. name: "Running",
  7344. image: {
  7345. source: "./media/characters/piper/running.svg",
  7346. extra: 3948/3655,
  7347. bottom: 0/3948
  7348. }
  7349. },
  7350. sole: {
  7351. height: math.unit(0.81, "feet"),
  7352. weight: math.unit(2, "kg"),
  7353. name: "Sole",
  7354. image: {
  7355. source: "./media/characters/piper/sole.svg"
  7356. }
  7357. },
  7358. nipple: {
  7359. height: math.unit(0.25, "feet"),
  7360. weight: math.unit(1.5, "lb"),
  7361. name: "Nipple",
  7362. image: {
  7363. source: "./media/characters/piper/nipple.svg"
  7364. }
  7365. },
  7366. head: {
  7367. height: math.unit(1.1, "feet"),
  7368. name: "Head",
  7369. image: {
  7370. source: "./media/characters/piper/head.svg"
  7371. }
  7372. },
  7373. },
  7374. [
  7375. {
  7376. name: "Micro",
  7377. height: math.unit(2, "inches")
  7378. },
  7379. {
  7380. name: "Normal",
  7381. height: math.unit(5 + 8 / 12, "feet")
  7382. },
  7383. {
  7384. name: "Macro",
  7385. height: math.unit(250, "feet"),
  7386. default: true
  7387. },
  7388. {
  7389. name: "Megamacro",
  7390. height: math.unit(7, "miles")
  7391. },
  7392. ]
  7393. ))
  7394. characterMakers.push(() => makeCharacter(
  7395. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7396. {
  7397. front: {
  7398. height: math.unit(6, "feet"),
  7399. weight: math.unit(220, "lb"),
  7400. name: "Front",
  7401. image: {
  7402. source: "./media/characters/gemini/front.svg"
  7403. }
  7404. },
  7405. back: {
  7406. height: math.unit(6, "feet"),
  7407. weight: math.unit(220, "lb"),
  7408. name: "Back",
  7409. image: {
  7410. source: "./media/characters/gemini/back.svg"
  7411. }
  7412. },
  7413. kneeling: {
  7414. height: math.unit(6 / 1.5, "feet"),
  7415. weight: math.unit(220, "lb"),
  7416. name: "Kneeling",
  7417. image: {
  7418. source: "./media/characters/gemini/kneeling.svg",
  7419. bottom: 0.02
  7420. }
  7421. },
  7422. },
  7423. [
  7424. {
  7425. name: "Macro",
  7426. height: math.unit(300, "meters"),
  7427. default: true
  7428. },
  7429. {
  7430. name: "Megamacro",
  7431. height: math.unit(6900, "meters")
  7432. },
  7433. ]
  7434. ))
  7435. characterMakers.push(() => makeCharacter(
  7436. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7437. {
  7438. anthro: {
  7439. height: math.unit(2.35, "meters"),
  7440. weight: math.unit(73, "kg"),
  7441. name: "Anthro",
  7442. image: {
  7443. source: "./media/characters/alicia/anthro.svg",
  7444. extra: 2571 / 2385,
  7445. bottom: 75 / 2648
  7446. }
  7447. },
  7448. paw: {
  7449. height: math.unit(1.32, "feet"),
  7450. name: "Paw",
  7451. image: {
  7452. source: "./media/characters/alicia/paw.svg"
  7453. }
  7454. },
  7455. feral: {
  7456. height: math.unit(1.69, "meters"),
  7457. weight: math.unit(73, "kg"),
  7458. name: "Feral",
  7459. image: {
  7460. source: "./media/characters/alicia/feral.svg",
  7461. extra: 2123 / 1715,
  7462. bottom: 222 / 2349
  7463. }
  7464. },
  7465. },
  7466. [
  7467. {
  7468. name: "Normal",
  7469. height: math.unit(2.35, "meters")
  7470. },
  7471. {
  7472. name: "Macro",
  7473. height: math.unit(60, "meters"),
  7474. default: true
  7475. },
  7476. {
  7477. name: "Megamacro",
  7478. height: math.unit(10000, "kilometers")
  7479. },
  7480. ]
  7481. ))
  7482. characterMakers.push(() => makeCharacter(
  7483. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7484. {
  7485. front: {
  7486. height: math.unit(7, "feet"),
  7487. weight: math.unit(250, "lbs"),
  7488. name: "Front",
  7489. image: {
  7490. source: "./media/characters/archy/front.svg"
  7491. }
  7492. }
  7493. },
  7494. [
  7495. {
  7496. name: "Micro",
  7497. height: math.unit(1, "inch")
  7498. },
  7499. {
  7500. name: "Shorty",
  7501. height: math.unit(5, "feet")
  7502. },
  7503. {
  7504. name: "Normal",
  7505. height: math.unit(7, "feet")
  7506. },
  7507. {
  7508. name: "Macro",
  7509. height: math.unit(600, "meters"),
  7510. default: true
  7511. },
  7512. {
  7513. name: "Megamacro",
  7514. height: math.unit(1, "mile")
  7515. },
  7516. ]
  7517. ))
  7518. characterMakers.push(() => makeCharacter(
  7519. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7520. {
  7521. front: {
  7522. height: math.unit(1.65, "meters"),
  7523. weight: math.unit(74, "kg"),
  7524. name: "Front",
  7525. image: {
  7526. source: "./media/characters/berri/front.svg",
  7527. extra: 857 / 837,
  7528. bottom: 18 / 877
  7529. }
  7530. },
  7531. bum: {
  7532. height: math.unit(1.46, "feet"),
  7533. name: "Bum",
  7534. image: {
  7535. source: "./media/characters/berri/bum.svg"
  7536. }
  7537. },
  7538. mouth: {
  7539. height: math.unit(0.44, "feet"),
  7540. name: "Mouth",
  7541. image: {
  7542. source: "./media/characters/berri/mouth.svg"
  7543. }
  7544. },
  7545. paw: {
  7546. height: math.unit(0.826, "feet"),
  7547. name: "Paw",
  7548. image: {
  7549. source: "./media/characters/berri/paw.svg"
  7550. }
  7551. },
  7552. },
  7553. [
  7554. {
  7555. name: "Normal",
  7556. height: math.unit(1.65, "meters")
  7557. },
  7558. {
  7559. name: "Macro",
  7560. height: math.unit(60, "m"),
  7561. default: true
  7562. },
  7563. {
  7564. name: "Megamacro",
  7565. height: math.unit(9.213, "km")
  7566. },
  7567. {
  7568. name: "Planet Eater",
  7569. height: math.unit(489, "megameters")
  7570. },
  7571. {
  7572. name: "Teramacro",
  7573. height: math.unit(2471635000000, "meters")
  7574. },
  7575. {
  7576. name: "Examacro",
  7577. height: math.unit(8.0624e+26, "meters")
  7578. }
  7579. ]
  7580. ))
  7581. characterMakers.push(() => makeCharacter(
  7582. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7583. {
  7584. front: {
  7585. height: math.unit(1.72, "meters"),
  7586. weight: math.unit(68, "kg"),
  7587. name: "Front",
  7588. image: {
  7589. source: "./media/characters/lexi/front.svg"
  7590. }
  7591. }
  7592. },
  7593. [
  7594. {
  7595. name: "Very Smol",
  7596. height: math.unit(10, "mm")
  7597. },
  7598. {
  7599. name: "Micro",
  7600. height: math.unit(6.8, "cm"),
  7601. default: true
  7602. },
  7603. {
  7604. name: "Normal",
  7605. height: math.unit(1.72, "m")
  7606. }
  7607. ]
  7608. ))
  7609. characterMakers.push(() => makeCharacter(
  7610. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7611. {
  7612. front: {
  7613. height: math.unit(1.69, "meters"),
  7614. weight: math.unit(68, "kg"),
  7615. name: "Front",
  7616. image: {
  7617. source: "./media/characters/martin/front.svg",
  7618. extra: 596 / 581
  7619. }
  7620. }
  7621. },
  7622. [
  7623. {
  7624. name: "Micro",
  7625. height: math.unit(6.85, "cm"),
  7626. default: true
  7627. },
  7628. {
  7629. name: "Normal",
  7630. height: math.unit(1.69, "m")
  7631. }
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(1.69, "meters"),
  7639. weight: math.unit(68, "kg"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/juno/front.svg"
  7643. }
  7644. }
  7645. },
  7646. [
  7647. {
  7648. name: "Micro",
  7649. height: math.unit(7, "cm")
  7650. },
  7651. {
  7652. name: "Normal",
  7653. height: math.unit(1.89, "m")
  7654. },
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(353, "meters"),
  7658. default: true
  7659. }
  7660. ]
  7661. ))
  7662. characterMakers.push(() => makeCharacter(
  7663. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7664. {
  7665. front: {
  7666. height: math.unit(1.93, "meters"),
  7667. weight: math.unit(83, "kg"),
  7668. name: "Front",
  7669. image: {
  7670. source: "./media/characters/samantha/front.svg"
  7671. }
  7672. },
  7673. frontClothed: {
  7674. height: math.unit(1.93, "meters"),
  7675. weight: math.unit(83, "kg"),
  7676. name: "Front (Clothed)",
  7677. image: {
  7678. source: "./media/characters/samantha/front-clothed.svg"
  7679. }
  7680. },
  7681. back: {
  7682. height: math.unit(1.93, "meters"),
  7683. weight: math.unit(83, "kg"),
  7684. name: "Back",
  7685. image: {
  7686. source: "./media/characters/samantha/back.svg"
  7687. }
  7688. },
  7689. },
  7690. [
  7691. {
  7692. name: "Normal",
  7693. height: math.unit(1.93, "m")
  7694. },
  7695. {
  7696. name: "Macro",
  7697. height: math.unit(74, "meters"),
  7698. default: true
  7699. },
  7700. {
  7701. name: "Macro+",
  7702. height: math.unit(223, "meters"),
  7703. },
  7704. {
  7705. name: "Megamacro",
  7706. height: math.unit(8381, "meters"),
  7707. },
  7708. {
  7709. name: "Megamacro+",
  7710. height: math.unit(12000, "kilometers")
  7711. },
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7716. {
  7717. front: {
  7718. height: math.unit(1.92, "meters"),
  7719. weight: math.unit(80, "kg"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/dr-clay/front.svg"
  7723. }
  7724. },
  7725. frontClothed: {
  7726. height: math.unit(1.92, "meters"),
  7727. weight: math.unit(80, "kg"),
  7728. name: "Front (Clothed)",
  7729. image: {
  7730. source: "./media/characters/dr-clay/front-clothed.svg"
  7731. }
  7732. }
  7733. },
  7734. [
  7735. {
  7736. name: "Normal",
  7737. height: math.unit(1.92, "m")
  7738. },
  7739. {
  7740. name: "Macro",
  7741. height: math.unit(214, "meters"),
  7742. default: true
  7743. },
  7744. {
  7745. name: "Macro+",
  7746. height: math.unit(12.237, "meters"),
  7747. },
  7748. {
  7749. name: "Megamacro",
  7750. height: math.unit(557, "megameters"),
  7751. },
  7752. {
  7753. name: "Unimaginable",
  7754. height: math.unit(120e9, "lightyears")
  7755. },
  7756. ]
  7757. ))
  7758. characterMakers.push(() => makeCharacter(
  7759. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7760. {
  7761. front: {
  7762. height: math.unit(2, "meters"),
  7763. weight: math.unit(80, "kg"),
  7764. name: "Front",
  7765. image: {
  7766. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7767. }
  7768. }
  7769. },
  7770. [
  7771. {
  7772. name: "Teramacro",
  7773. height: math.unit(500000, "lightyears"),
  7774. default: true
  7775. },
  7776. ]
  7777. ))
  7778. characterMakers.push(() => makeCharacter(
  7779. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7780. {
  7781. crux: {
  7782. height: math.unit(2, "meters"),
  7783. weight: math.unit(150, "kg"),
  7784. name: "Crux",
  7785. image: {
  7786. source: "./media/characters/vemus/crux.svg",
  7787. extra: 1074/936,
  7788. bottom: 23/1097
  7789. }
  7790. },
  7791. skunkTanuki: {
  7792. height: math.unit(2, "meters"),
  7793. weight: math.unit(150, "kg"),
  7794. name: "Skunk-Tanuki",
  7795. image: {
  7796. source: "./media/characters/vemus/skunk-tanuki.svg",
  7797. extra: 926/893,
  7798. bottom: 20/946
  7799. }
  7800. },
  7801. },
  7802. [
  7803. {
  7804. name: "Normal",
  7805. height: math.unit(4, "meters"),
  7806. default: true
  7807. },
  7808. {
  7809. name: "Big",
  7810. height: math.unit(8, "meters")
  7811. },
  7812. {
  7813. name: "Macro",
  7814. height: math.unit(100, "meters")
  7815. },
  7816. {
  7817. name: "Macro+",
  7818. height: math.unit(1500, "meters")
  7819. },
  7820. {
  7821. name: "Stellar",
  7822. height: math.unit(14e8, "meters")
  7823. },
  7824. ]
  7825. ))
  7826. characterMakers.push(() => makeCharacter(
  7827. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7828. {
  7829. front: {
  7830. height: math.unit(2, "meters"),
  7831. weight: math.unit(70, "kg"),
  7832. name: "Front",
  7833. image: {
  7834. source: "./media/characters/beherit/front.svg",
  7835. extra: 1234/1109,
  7836. bottom: 55/1289
  7837. }
  7838. }
  7839. },
  7840. [
  7841. {
  7842. name: "Normal",
  7843. height: math.unit(6, "feet")
  7844. },
  7845. {
  7846. name: "Lorg",
  7847. height: math.unit(25, "feet"),
  7848. default: true
  7849. },
  7850. {
  7851. name: "Lorger",
  7852. height: math.unit(75, "feet")
  7853. },
  7854. {
  7855. name: "Macro",
  7856. height: math.unit(200, "meters")
  7857. },
  7858. ]
  7859. ))
  7860. characterMakers.push(() => makeCharacter(
  7861. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7862. {
  7863. front: {
  7864. height: math.unit(2, "meters"),
  7865. weight: math.unit(150, "kg"),
  7866. name: "Front",
  7867. image: {
  7868. source: "./media/characters/everett/front.svg",
  7869. extra: 1017/866,
  7870. bottom: 86/1103
  7871. }
  7872. },
  7873. paw: {
  7874. height: math.unit(2 / 3.6, "meters"),
  7875. name: "Paw",
  7876. image: {
  7877. source: "./media/characters/everett/paw.svg"
  7878. }
  7879. },
  7880. },
  7881. [
  7882. {
  7883. name: "Normal",
  7884. height: math.unit(15, "feet"),
  7885. default: true
  7886. },
  7887. {
  7888. name: "Lorg",
  7889. height: math.unit(70, "feet"),
  7890. default: true
  7891. },
  7892. {
  7893. name: "Lorger",
  7894. height: math.unit(250, "feet")
  7895. },
  7896. {
  7897. name: "Macro",
  7898. height: math.unit(500, "meters")
  7899. },
  7900. ]
  7901. ))
  7902. characterMakers.push(() => makeCharacter(
  7903. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7904. {
  7905. front: {
  7906. height: math.unit(2, "meters"),
  7907. weight: math.unit(86, "kg"),
  7908. name: "Front",
  7909. image: {
  7910. source: "./media/characters/rose/front.svg",
  7911. extra: 1785/1636,
  7912. bottom: 30/1815
  7913. },
  7914. form: "liom",
  7915. default: true
  7916. },
  7917. frontSporty: {
  7918. height: math.unit(2, "meters"),
  7919. weight: math.unit(86, "kg"),
  7920. name: "Front (Sporty)",
  7921. image: {
  7922. source: "./media/characters/rose/front-sporty.svg",
  7923. extra: 350/335,
  7924. bottom: 10/360
  7925. },
  7926. form: "liom"
  7927. },
  7928. frontAlt: {
  7929. height: math.unit(1.6, "meters"),
  7930. weight: math.unit(86, "kg"),
  7931. name: "Front (Alt)",
  7932. image: {
  7933. source: "./media/characters/rose/front-alt.svg",
  7934. extra: 299/283,
  7935. bottom: 3/302
  7936. },
  7937. form: "liom"
  7938. },
  7939. plush: {
  7940. height: math.unit(2, "meters"),
  7941. weight: math.unit(86/3, "kg"),
  7942. name: "Plush",
  7943. image: {
  7944. source: "./media/characters/rose/plush.svg",
  7945. extra: 361/337,
  7946. bottom: 11/372
  7947. },
  7948. form: "plush",
  7949. default: true
  7950. },
  7951. faeStanding: {
  7952. height: math.unit(10, "cm"),
  7953. weight: math.unit(10, "grams"),
  7954. name: "Standing",
  7955. image: {
  7956. source: "./media/characters/rose/fae-standing.svg",
  7957. extra: 1189/1060,
  7958. bottom: 27/1216
  7959. },
  7960. form: "fae",
  7961. default: true
  7962. },
  7963. faeSitting: {
  7964. height: math.unit(5, "cm"),
  7965. weight: math.unit(10, "grams"),
  7966. name: "Sitting",
  7967. image: {
  7968. source: "./media/characters/rose/fae-sitting.svg",
  7969. extra: 737/577,
  7970. bottom: 356/1093
  7971. },
  7972. form: "fae"
  7973. },
  7974. faePaw: {
  7975. height: math.unit(1.35, "cm"),
  7976. name: "Paw",
  7977. image: {
  7978. source: "./media/characters/rose/fae-paw.svg"
  7979. },
  7980. form: "fae"
  7981. },
  7982. },
  7983. [
  7984. {
  7985. name: "True Micro",
  7986. height: math.unit(9, "cm"),
  7987. form: "liom"
  7988. },
  7989. {
  7990. name: "Micro",
  7991. height: math.unit(16, "cm"),
  7992. form: "liom"
  7993. },
  7994. {
  7995. name: "Normal",
  7996. height: math.unit(1.85, "meters"),
  7997. default: true,
  7998. form: "liom"
  7999. },
  8000. {
  8001. name: "Mini-Macro",
  8002. height: math.unit(5, "meters"),
  8003. form: "liom"
  8004. },
  8005. {
  8006. name: "Macro",
  8007. height: math.unit(15, "meters"),
  8008. form: "liom"
  8009. },
  8010. {
  8011. name: "True Macro",
  8012. height: math.unit(40, "meters"),
  8013. form: "liom"
  8014. },
  8015. {
  8016. name: "City Scale",
  8017. height: math.unit(1, "km"),
  8018. form: "liom"
  8019. },
  8020. {
  8021. name: "Plushie",
  8022. height: math.unit(9, "cm"),
  8023. form: "plush",
  8024. default: true
  8025. },
  8026. {
  8027. name: "Fae",
  8028. height: math.unit(10, "cm"),
  8029. form: "fae",
  8030. default: true
  8031. },
  8032. ],
  8033. {
  8034. "liom": {
  8035. name: "Liom"
  8036. },
  8037. "plush": {
  8038. name: "Plush"
  8039. },
  8040. "fae": {
  8041. name: "Fae Fox",
  8042. default: true
  8043. }
  8044. }
  8045. ))
  8046. characterMakers.push(() => makeCharacter(
  8047. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8048. {
  8049. front: {
  8050. height: math.unit(2, "meters"),
  8051. weight: math.unit(350, "lbs"),
  8052. name: "Front",
  8053. image: {
  8054. source: "./media/characters/regal/front.svg"
  8055. }
  8056. },
  8057. back: {
  8058. height: math.unit(2, "meters"),
  8059. weight: math.unit(350, "lbs"),
  8060. name: "Back",
  8061. image: {
  8062. source: "./media/characters/regal/back.svg"
  8063. }
  8064. },
  8065. },
  8066. [
  8067. {
  8068. name: "Macro",
  8069. height: math.unit(350, "feet"),
  8070. default: true
  8071. }
  8072. ]
  8073. ))
  8074. characterMakers.push(() => makeCharacter(
  8075. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8076. {
  8077. front: {
  8078. height: math.unit(4 + 11 / 12, "feet"),
  8079. weight: math.unit(100, "lbs"),
  8080. name: "Front",
  8081. image: {
  8082. source: "./media/characters/opal/front.svg"
  8083. }
  8084. },
  8085. frontAlt: {
  8086. height: math.unit(4 + 11 / 12, "feet"),
  8087. weight: math.unit(100, "lbs"),
  8088. name: "Front (Alt)",
  8089. image: {
  8090. source: "./media/characters/opal/front-alt.svg"
  8091. }
  8092. },
  8093. },
  8094. [
  8095. {
  8096. name: "Small",
  8097. height: math.unit(4 + 11 / 12, "feet")
  8098. },
  8099. {
  8100. name: "Normal",
  8101. height: math.unit(20, "feet"),
  8102. default: true
  8103. },
  8104. {
  8105. name: "Macro",
  8106. height: math.unit(120, "feet")
  8107. },
  8108. {
  8109. name: "Megamacro",
  8110. height: math.unit(80, "miles")
  8111. },
  8112. {
  8113. name: "True Size",
  8114. height: math.unit(100000, "lightyears")
  8115. },
  8116. ]
  8117. ))
  8118. characterMakers.push(() => makeCharacter(
  8119. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8120. {
  8121. front: {
  8122. height: math.unit(6, "feet"),
  8123. weight: math.unit(200, "lbs"),
  8124. name: "Front",
  8125. image: {
  8126. source: "./media/characters/vector-wuff/front.svg"
  8127. }
  8128. }
  8129. },
  8130. [
  8131. {
  8132. name: "Normal",
  8133. height: math.unit(2.8, "meters")
  8134. },
  8135. {
  8136. name: "Macro",
  8137. height: math.unit(450, "meters"),
  8138. default: true
  8139. },
  8140. {
  8141. name: "Megamacro",
  8142. height: math.unit(15, "kilometers")
  8143. }
  8144. ]
  8145. ))
  8146. characterMakers.push(() => makeCharacter(
  8147. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8148. {
  8149. front: {
  8150. height: math.unit(6, "feet"),
  8151. weight: math.unit(256, "lbs"),
  8152. name: "Front",
  8153. image: {
  8154. source: "./media/characters/dannik/front.svg"
  8155. }
  8156. }
  8157. },
  8158. [
  8159. {
  8160. name: "Macro",
  8161. height: math.unit(69.57, "meters"),
  8162. default: true
  8163. },
  8164. ]
  8165. ))
  8166. characterMakers.push(() => makeCharacter(
  8167. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8168. {
  8169. front: {
  8170. height: math.unit(6, "feet"),
  8171. weight: math.unit(120, "lbs"),
  8172. name: "Front",
  8173. image: {
  8174. source: "./media/characters/azura-saharah/front.svg"
  8175. }
  8176. },
  8177. back: {
  8178. height: math.unit(6, "feet"),
  8179. weight: math.unit(120, "lbs"),
  8180. name: "Back",
  8181. image: {
  8182. source: "./media/characters/azura-saharah/back.svg"
  8183. }
  8184. },
  8185. },
  8186. [
  8187. {
  8188. name: "Macro",
  8189. height: math.unit(100, "feet"),
  8190. default: true
  8191. },
  8192. ]
  8193. ))
  8194. characterMakers.push(() => makeCharacter(
  8195. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8196. {
  8197. side: {
  8198. height: math.unit(5 + 4 / 12, "feet"),
  8199. weight: math.unit(163, "lbs"),
  8200. name: "Side",
  8201. image: {
  8202. source: "./media/characters/kennedy/side.svg"
  8203. }
  8204. }
  8205. },
  8206. [
  8207. {
  8208. name: "Standard Doggo",
  8209. height: math.unit(5 + 4 / 12, "feet")
  8210. },
  8211. {
  8212. name: "Big Doggo",
  8213. height: math.unit(25 + 3 / 12, "feet"),
  8214. default: true
  8215. },
  8216. ]
  8217. ))
  8218. characterMakers.push(() => makeCharacter(
  8219. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8220. {
  8221. front: {
  8222. height: math.unit(5 + 5/12, "feet"),
  8223. weight: math.unit(100, "lbs"),
  8224. name: "Front",
  8225. image: {
  8226. source: "./media/characters/odios-de-lunar/front.svg",
  8227. extra: 1468/1323,
  8228. bottom: 22/1490
  8229. }
  8230. }
  8231. },
  8232. [
  8233. {
  8234. name: "Micro",
  8235. height: math.unit(3, "inches")
  8236. },
  8237. {
  8238. name: "Normal",
  8239. height: math.unit(5.5, "feet"),
  8240. default: true
  8241. },
  8242. {
  8243. name: "Macro",
  8244. height: math.unit(100, "feet")
  8245. },
  8246. ]
  8247. ))
  8248. characterMakers.push(() => makeCharacter(
  8249. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8250. {
  8251. back: {
  8252. height: math.unit(6, "feet"),
  8253. weight: math.unit(220, "lbs"),
  8254. name: "Back",
  8255. image: {
  8256. source: "./media/characters/mandake/back.svg"
  8257. }
  8258. }
  8259. },
  8260. [
  8261. {
  8262. name: "Normal",
  8263. height: math.unit(7, "feet"),
  8264. default: true
  8265. },
  8266. {
  8267. name: "Macro",
  8268. height: math.unit(78, "feet")
  8269. },
  8270. {
  8271. name: "Macro+",
  8272. height: math.unit(300, "meters")
  8273. },
  8274. {
  8275. name: "Macro++",
  8276. height: math.unit(2400, "feet")
  8277. },
  8278. {
  8279. name: "Megamacro",
  8280. height: math.unit(5167, "meters")
  8281. },
  8282. {
  8283. name: "Gigamacro",
  8284. height: math.unit(41769, "miles")
  8285. },
  8286. ]
  8287. ))
  8288. characterMakers.push(() => makeCharacter(
  8289. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8290. {
  8291. front: {
  8292. height: math.unit(6, "feet"),
  8293. weight: math.unit(120, "lbs"),
  8294. name: "Front",
  8295. image: {
  8296. source: "./media/characters/yozey/front.svg"
  8297. }
  8298. },
  8299. frontAlt: {
  8300. height: math.unit(6, "feet"),
  8301. weight: math.unit(120, "lbs"),
  8302. name: "Front (Alt)",
  8303. image: {
  8304. source: "./media/characters/yozey/front-alt.svg"
  8305. }
  8306. },
  8307. side: {
  8308. height: math.unit(6, "feet"),
  8309. weight: math.unit(120, "lbs"),
  8310. name: "Side",
  8311. image: {
  8312. source: "./media/characters/yozey/side.svg"
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Micro",
  8319. height: math.unit(3, "inches"),
  8320. default: true
  8321. },
  8322. {
  8323. name: "Normal",
  8324. height: math.unit(6, "feet")
  8325. }
  8326. ]
  8327. ))
  8328. characterMakers.push(() => makeCharacter(
  8329. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8330. {
  8331. front: {
  8332. height: math.unit(6, "feet"),
  8333. weight: math.unit(103, "lbs"),
  8334. name: "Front",
  8335. image: {
  8336. source: "./media/characters/valeska-voss/front.svg"
  8337. }
  8338. }
  8339. },
  8340. [
  8341. {
  8342. name: "Mini-Sized Sub",
  8343. height: math.unit(3.1, "inches")
  8344. },
  8345. {
  8346. name: "Mid-Sized Sub",
  8347. height: math.unit(6.2, "inches")
  8348. },
  8349. {
  8350. name: "Full-Sized Sub",
  8351. height: math.unit(9.3, "inches")
  8352. },
  8353. {
  8354. name: "Normal",
  8355. height: math.unit(5 + 2 / 12, "foot"),
  8356. default: true
  8357. },
  8358. ]
  8359. ))
  8360. characterMakers.push(() => makeCharacter(
  8361. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8362. {
  8363. front: {
  8364. height: math.unit(6, "feet"),
  8365. weight: math.unit(160, "lbs"),
  8366. name: "Front",
  8367. image: {
  8368. source: "./media/characters/gene-zeta/front.svg",
  8369. extra: 3006 / 2826,
  8370. bottom: 182 / 3188
  8371. }
  8372. }
  8373. },
  8374. [
  8375. {
  8376. name: "Micro",
  8377. height: math.unit(6, "inches")
  8378. },
  8379. {
  8380. name: "Normal",
  8381. height: math.unit(5 + 11 / 12, "foot"),
  8382. default: true
  8383. },
  8384. {
  8385. name: "Macro",
  8386. height: math.unit(140, "feet")
  8387. },
  8388. {
  8389. name: "Supercharged",
  8390. height: math.unit(2500, "feet")
  8391. },
  8392. ]
  8393. ))
  8394. characterMakers.push(() => makeCharacter(
  8395. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8396. {
  8397. front: {
  8398. height: math.unit(6, "feet"),
  8399. weight: math.unit(350, "lbs"),
  8400. name: "Front",
  8401. image: {
  8402. source: "./media/characters/razinox/front.svg",
  8403. extra: 1686 / 1548,
  8404. bottom: 28.2 / 1868
  8405. }
  8406. },
  8407. back: {
  8408. height: math.unit(6, "feet"),
  8409. weight: math.unit(350, "lbs"),
  8410. name: "Back",
  8411. image: {
  8412. source: "./media/characters/razinox/back.svg",
  8413. extra: 1660 / 1590,
  8414. bottom: 15 / 1665
  8415. }
  8416. },
  8417. },
  8418. [
  8419. {
  8420. name: "Normal",
  8421. height: math.unit(10 + 8 / 12, "foot")
  8422. },
  8423. {
  8424. name: "Minimacro",
  8425. height: math.unit(15, "foot")
  8426. },
  8427. {
  8428. name: "Macro",
  8429. height: math.unit(60, "foot"),
  8430. default: true
  8431. },
  8432. {
  8433. name: "Megamacro",
  8434. height: math.unit(5, "miles")
  8435. },
  8436. {
  8437. name: "Gigamacro",
  8438. height: math.unit(6000, "miles")
  8439. },
  8440. ]
  8441. ))
  8442. characterMakers.push(() => makeCharacter(
  8443. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8444. {
  8445. front: {
  8446. height: math.unit(6, "feet"),
  8447. weight: math.unit(150, "lbs"),
  8448. name: "Front",
  8449. image: {
  8450. source: "./media/characters/cobalt/front.svg"
  8451. }
  8452. }
  8453. },
  8454. [
  8455. {
  8456. name: "Normal",
  8457. height: math.unit(8 + 1 / 12, "foot")
  8458. },
  8459. {
  8460. name: "Macro",
  8461. height: math.unit(111, "foot"),
  8462. default: true
  8463. },
  8464. {
  8465. name: "Supracosmic",
  8466. height: math.unit(1e42, "feet")
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8472. {
  8473. front: {
  8474. height: math.unit(5, "inches"),
  8475. name: "Front",
  8476. image: {
  8477. source: "./media/characters/amanda/front.svg",
  8478. extra: 926/791,
  8479. bottom: 38/964
  8480. }
  8481. },
  8482. back: {
  8483. height: math.unit(5, "inches"),
  8484. name: "Back",
  8485. image: {
  8486. source: "./media/characters/amanda/back.svg",
  8487. extra: 909/805,
  8488. bottom: 43/952
  8489. }
  8490. },
  8491. },
  8492. [
  8493. {
  8494. name: "Micro",
  8495. height: math.unit(5, "inches"),
  8496. default: true
  8497. },
  8498. ]
  8499. ))
  8500. characterMakers.push(() => makeCharacter(
  8501. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8502. {
  8503. front: {
  8504. height: math.unit(2.75, "meters"),
  8505. weight: math.unit(1200, "lb"),
  8506. name: "Front",
  8507. image: {
  8508. source: "./media/characters/teal/front.svg",
  8509. extra: 2463 / 2320,
  8510. bottom: 166 / 2629
  8511. }
  8512. },
  8513. back: {
  8514. height: math.unit(2.75, "meters"),
  8515. weight: math.unit(1200, "lb"),
  8516. name: "Back",
  8517. image: {
  8518. source: "./media/characters/teal/back.svg",
  8519. extra: 2580 / 2489,
  8520. bottom: 151 / 2731
  8521. }
  8522. },
  8523. sitting: {
  8524. height: math.unit(1.9, "meters"),
  8525. weight: math.unit(1200, "lb"),
  8526. name: "Sitting",
  8527. image: {
  8528. source: "./media/characters/teal/sitting.svg",
  8529. extra: 623 / 590,
  8530. bottom: 121 / 744
  8531. }
  8532. },
  8533. standing: {
  8534. height: math.unit(2.75, "meters"),
  8535. weight: math.unit(1200, "lb"),
  8536. name: "Standing",
  8537. image: {
  8538. source: "./media/characters/teal/standing.svg",
  8539. extra: 923 / 893,
  8540. bottom: 60 / 983
  8541. }
  8542. },
  8543. stretching: {
  8544. height: math.unit(3.65, "meters"),
  8545. weight: math.unit(1200, "lb"),
  8546. name: "Stretching",
  8547. image: {
  8548. source: "./media/characters/teal/stretching.svg",
  8549. extra: 1276 / 1244,
  8550. bottom: 0 / 1276
  8551. }
  8552. },
  8553. legged: {
  8554. height: math.unit(1.3, "meters"),
  8555. weight: math.unit(100, "lb"),
  8556. name: "Legged",
  8557. image: {
  8558. source: "./media/characters/teal/legged.svg",
  8559. extra: 462 / 437,
  8560. bottom: 24 / 486
  8561. }
  8562. },
  8563. naga: {
  8564. height: math.unit(5.4, "meters"),
  8565. weight: math.unit(4000, "lb"),
  8566. name: "Naga",
  8567. image: {
  8568. source: "./media/characters/teal/naga.svg",
  8569. extra: 1902 / 1858,
  8570. bottom: 0 / 1902
  8571. }
  8572. },
  8573. hand: {
  8574. height: math.unit(0.52, "meters"),
  8575. name: "Hand",
  8576. image: {
  8577. source: "./media/characters/teal/hand.svg"
  8578. }
  8579. },
  8580. maw: {
  8581. height: math.unit(0.43, "meters"),
  8582. name: "Maw",
  8583. image: {
  8584. source: "./media/characters/teal/maw.svg"
  8585. }
  8586. },
  8587. slit: {
  8588. height: math.unit(0.25, "meters"),
  8589. name: "Slit",
  8590. image: {
  8591. source: "./media/characters/teal/slit.svg"
  8592. }
  8593. },
  8594. },
  8595. [
  8596. {
  8597. name: "Normal",
  8598. height: math.unit(2.75, "meters"),
  8599. default: true
  8600. },
  8601. {
  8602. name: "Macro",
  8603. height: math.unit(300, "feet")
  8604. },
  8605. {
  8606. name: "Macro+",
  8607. height: math.unit(2000, "feet")
  8608. },
  8609. ]
  8610. ))
  8611. characterMakers.push(() => makeCharacter(
  8612. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8613. {
  8614. frontCat: {
  8615. height: math.unit(6, "feet"),
  8616. weight: math.unit(180, "lbs"),
  8617. name: "Front (Cat)",
  8618. image: {
  8619. source: "./media/characters/ravin-amulet/front-cat.svg"
  8620. }
  8621. },
  8622. frontCatAlt: {
  8623. height: math.unit(6, "feet"),
  8624. weight: math.unit(180, "lbs"),
  8625. name: "Front (Alt, Cat)",
  8626. image: {
  8627. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8628. }
  8629. },
  8630. frontWerewolf: {
  8631. height: math.unit(6 * 1.2, "feet"),
  8632. weight: math.unit(225, "lbs"),
  8633. name: "Front (Werewolf)",
  8634. image: {
  8635. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8636. }
  8637. },
  8638. backWerewolf: {
  8639. height: math.unit(6 * 1.2, "feet"),
  8640. weight: math.unit(225, "lbs"),
  8641. name: "Back (Werewolf)",
  8642. image: {
  8643. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8644. }
  8645. },
  8646. },
  8647. [
  8648. {
  8649. name: "Nano",
  8650. height: math.unit(1, "micrometer")
  8651. },
  8652. {
  8653. name: "Micro",
  8654. height: math.unit(1, "inch")
  8655. },
  8656. {
  8657. name: "Normal",
  8658. height: math.unit(6, "feet"),
  8659. default: true
  8660. },
  8661. {
  8662. name: "Macro",
  8663. height: math.unit(60, "feet")
  8664. }
  8665. ]
  8666. ))
  8667. characterMakers.push(() => makeCharacter(
  8668. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8669. {
  8670. front: {
  8671. height: math.unit(6, "feet"),
  8672. weight: math.unit(165, "lbs"),
  8673. name: "Front",
  8674. image: {
  8675. source: "./media/characters/fluoresce/front.svg"
  8676. }
  8677. }
  8678. },
  8679. [
  8680. {
  8681. name: "Micro",
  8682. height: math.unit(6, "cm")
  8683. },
  8684. {
  8685. name: "Normal",
  8686. height: math.unit(5 + 7 / 12, "feet"),
  8687. default: true
  8688. },
  8689. {
  8690. name: "Macro",
  8691. height: math.unit(56, "feet")
  8692. },
  8693. {
  8694. name: "Megamacro",
  8695. height: math.unit(1.9, "miles")
  8696. },
  8697. ]
  8698. ))
  8699. characterMakers.push(() => makeCharacter(
  8700. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8701. {
  8702. front: {
  8703. height: math.unit(9 + 6 / 12, "feet"),
  8704. weight: math.unit(523, "lbs"),
  8705. name: "Side",
  8706. image: {
  8707. source: "./media/characters/aurora/side.svg",
  8708. extra: 474/393,
  8709. bottom: 5/479
  8710. }
  8711. }
  8712. },
  8713. [
  8714. {
  8715. name: "Normal",
  8716. height: math.unit(9 + 6 / 12, "feet")
  8717. },
  8718. {
  8719. name: "Macro",
  8720. height: math.unit(96, "feet"),
  8721. default: true
  8722. },
  8723. {
  8724. name: "Macro+",
  8725. height: math.unit(243, "feet")
  8726. },
  8727. ]
  8728. ))
  8729. characterMakers.push(() => makeCharacter(
  8730. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8731. {
  8732. front: {
  8733. height: math.unit(194, "cm"),
  8734. weight: math.unit(90, "kg"),
  8735. name: "Front",
  8736. image: {
  8737. source: "./media/characters/ranek/front.svg",
  8738. extra: 1862/1791,
  8739. bottom: 80/1942
  8740. }
  8741. },
  8742. back: {
  8743. height: math.unit(194, "cm"),
  8744. weight: math.unit(90, "kg"),
  8745. name: "Back",
  8746. image: {
  8747. source: "./media/characters/ranek/back.svg",
  8748. extra: 1853/1787,
  8749. bottom: 74/1927
  8750. }
  8751. },
  8752. feral: {
  8753. height: math.unit(30, "cm"),
  8754. weight: math.unit(1.6, "lbs"),
  8755. name: "Feral",
  8756. image: {
  8757. source: "./media/characters/ranek/feral.svg",
  8758. extra: 990/631,
  8759. bottom: 29/1019
  8760. }
  8761. },
  8762. },
  8763. [
  8764. {
  8765. name: "Normal",
  8766. height: math.unit(194, "cm"),
  8767. default: true
  8768. },
  8769. {
  8770. name: "Macro",
  8771. height: math.unit(100, "meters")
  8772. },
  8773. ]
  8774. ))
  8775. characterMakers.push(() => makeCharacter(
  8776. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8777. {
  8778. front: {
  8779. height: math.unit(5 + 6 / 12, "feet"),
  8780. weight: math.unit(153, "lbs"),
  8781. name: "Front",
  8782. image: {
  8783. source: "./media/characters/andrew-cooper/front.svg"
  8784. }
  8785. },
  8786. },
  8787. [
  8788. {
  8789. name: "Nano",
  8790. height: math.unit(1, "mm")
  8791. },
  8792. {
  8793. name: "Micro",
  8794. height: math.unit(2, "inches")
  8795. },
  8796. {
  8797. name: "Normal",
  8798. height: math.unit(5 + 6 / 12, "feet"),
  8799. default: true
  8800. }
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8805. {
  8806. front: {
  8807. height: math.unit(6, "feet"),
  8808. weight: math.unit(180, "lbs"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/akane-sato/front.svg",
  8812. extra: 1219 / 1140
  8813. }
  8814. },
  8815. back: {
  8816. height: math.unit(6, "feet"),
  8817. weight: math.unit(180, "lbs"),
  8818. name: "Back",
  8819. image: {
  8820. source: "./media/characters/akane-sato/back.svg",
  8821. extra: 1219 / 1170
  8822. }
  8823. },
  8824. },
  8825. [
  8826. {
  8827. name: "Normal",
  8828. height: math.unit(2.5, "meters")
  8829. },
  8830. {
  8831. name: "Macro",
  8832. height: math.unit(250, "meters"),
  8833. default: true
  8834. },
  8835. {
  8836. name: "Megamacro",
  8837. height: math.unit(25, "km")
  8838. },
  8839. ]
  8840. ))
  8841. characterMakers.push(() => makeCharacter(
  8842. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8843. {
  8844. front: {
  8845. height: math.unit(6, "feet"),
  8846. weight: math.unit(65, "kg"),
  8847. name: "Front",
  8848. image: {
  8849. source: "./media/characters/rook/front.svg",
  8850. extra: 960 / 950
  8851. }
  8852. }
  8853. },
  8854. [
  8855. {
  8856. name: "Normal",
  8857. height: math.unit(8.8, "feet")
  8858. },
  8859. {
  8860. name: "Macro",
  8861. height: math.unit(88, "feet"),
  8862. default: true
  8863. },
  8864. {
  8865. name: "Megamacro",
  8866. height: math.unit(8, "miles")
  8867. },
  8868. ]
  8869. ))
  8870. characterMakers.push(() => makeCharacter(
  8871. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8872. {
  8873. front: {
  8874. height: math.unit(12 + 2 / 12, "feet"),
  8875. weight: math.unit(808, "lbs"),
  8876. name: "Front",
  8877. image: {
  8878. source: "./media/characters/prodigy/front.svg"
  8879. }
  8880. }
  8881. },
  8882. [
  8883. {
  8884. name: "Normal",
  8885. height: math.unit(12 + 2 / 12, "feet"),
  8886. default: true
  8887. },
  8888. {
  8889. name: "Macro",
  8890. height: math.unit(143, "feet")
  8891. },
  8892. {
  8893. name: "Macro+",
  8894. height: math.unit(400, "feet")
  8895. },
  8896. ]
  8897. ))
  8898. characterMakers.push(() => makeCharacter(
  8899. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8900. {
  8901. front: {
  8902. height: math.unit(6, "feet"),
  8903. weight: math.unit(225, "lbs"),
  8904. name: "Front",
  8905. image: {
  8906. source: "./media/characters/daniel/front.svg"
  8907. }
  8908. },
  8909. leaning: {
  8910. height: math.unit(6, "feet"),
  8911. weight: math.unit(225, "lbs"),
  8912. name: "Leaning",
  8913. image: {
  8914. source: "./media/characters/daniel/leaning.svg"
  8915. }
  8916. },
  8917. },
  8918. [
  8919. {
  8920. name: "Macro",
  8921. height: math.unit(1000, "feet"),
  8922. default: true
  8923. },
  8924. ]
  8925. ))
  8926. characterMakers.push(() => makeCharacter(
  8927. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8928. {
  8929. front: {
  8930. height: math.unit(6, "feet"),
  8931. weight: math.unit(88, "lbs"),
  8932. name: "Front",
  8933. image: {
  8934. source: "./media/characters/chiros/front.svg",
  8935. extra: 306 / 226
  8936. }
  8937. },
  8938. side: {
  8939. height: math.unit(6, "feet"),
  8940. weight: math.unit(88, "lbs"),
  8941. name: "Side",
  8942. image: {
  8943. source: "./media/characters/chiros/side.svg",
  8944. extra: 306 / 226
  8945. }
  8946. },
  8947. },
  8948. [
  8949. {
  8950. name: "Normal",
  8951. height: math.unit(6, "cm"),
  8952. default: true
  8953. },
  8954. ]
  8955. ))
  8956. characterMakers.push(() => makeCharacter(
  8957. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8958. {
  8959. front: {
  8960. height: math.unit(6, "feet"),
  8961. weight: math.unit(100, "lbs"),
  8962. name: "Front",
  8963. image: {
  8964. source: "./media/characters/selka/front.svg",
  8965. extra: 947 / 887
  8966. }
  8967. }
  8968. },
  8969. [
  8970. {
  8971. name: "Normal",
  8972. height: math.unit(5, "cm"),
  8973. default: true
  8974. },
  8975. ]
  8976. ))
  8977. characterMakers.push(() => makeCharacter(
  8978. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8979. {
  8980. front: {
  8981. height: math.unit(8 + 3 / 12, "feet"),
  8982. weight: math.unit(424, "lbs"),
  8983. name: "Front",
  8984. image: {
  8985. source: "./media/characters/verin/front.svg",
  8986. extra: 1845 / 1550
  8987. }
  8988. },
  8989. frontArmored: {
  8990. height: math.unit(8 + 3 / 12, "feet"),
  8991. weight: math.unit(424, "lbs"),
  8992. name: "Front (Armored)",
  8993. image: {
  8994. source: "./media/characters/verin/front-armor.svg",
  8995. extra: 1845 / 1550,
  8996. bottom: 0.01
  8997. }
  8998. },
  8999. back: {
  9000. height: math.unit(8 + 3 / 12, "feet"),
  9001. weight: math.unit(424, "lbs"),
  9002. name: "Back",
  9003. image: {
  9004. source: "./media/characters/verin/back.svg",
  9005. bottom: 0.1,
  9006. extra: 1
  9007. }
  9008. },
  9009. foot: {
  9010. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9011. name: "Foot",
  9012. image: {
  9013. source: "./media/characters/verin/foot.svg"
  9014. }
  9015. },
  9016. },
  9017. [
  9018. {
  9019. name: "Normal",
  9020. height: math.unit(8 + 3 / 12, "feet")
  9021. },
  9022. {
  9023. name: "Minimacro",
  9024. height: math.unit(21, "feet"),
  9025. default: true
  9026. },
  9027. {
  9028. name: "Macro",
  9029. height: math.unit(626, "feet")
  9030. },
  9031. ]
  9032. ))
  9033. characterMakers.push(() => makeCharacter(
  9034. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9035. {
  9036. front: {
  9037. height: math.unit(2.718, "meters"),
  9038. weight: math.unit(150, "lbs"),
  9039. name: "Front",
  9040. image: {
  9041. source: "./media/characters/sovrim-terraquian/front.svg",
  9042. extra: 1752/1689,
  9043. bottom: 36/1788
  9044. }
  9045. },
  9046. back: {
  9047. height: math.unit(2.718, "meters"),
  9048. weight: math.unit(150, "lbs"),
  9049. name: "Back",
  9050. image: {
  9051. source: "./media/characters/sovrim-terraquian/back.svg",
  9052. extra: 1698/1657,
  9053. bottom: 58/1756
  9054. }
  9055. },
  9056. tongue: {
  9057. height: math.unit(2.865, "feet"),
  9058. name: "Tongue",
  9059. image: {
  9060. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9061. }
  9062. },
  9063. hand: {
  9064. height: math.unit(1.61, "feet"),
  9065. name: "Hand",
  9066. image: {
  9067. source: "./media/characters/sovrim-terraquian/hand.svg"
  9068. }
  9069. },
  9070. foot: {
  9071. height: math.unit(1.05, "feet"),
  9072. name: "Foot",
  9073. image: {
  9074. source: "./media/characters/sovrim-terraquian/foot.svg"
  9075. }
  9076. },
  9077. footAlt: {
  9078. height: math.unit(0.88, "feet"),
  9079. name: "Foot (Alt)",
  9080. image: {
  9081. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9082. }
  9083. },
  9084. },
  9085. [
  9086. {
  9087. name: "Micro",
  9088. height: math.unit(2, "inches")
  9089. },
  9090. {
  9091. name: "Small",
  9092. height: math.unit(1, "meter")
  9093. },
  9094. {
  9095. name: "Normal",
  9096. height: math.unit(Math.E, "meters"),
  9097. default: true
  9098. },
  9099. {
  9100. name: "Macro",
  9101. height: math.unit(20, "meters")
  9102. },
  9103. {
  9104. name: "Macro+",
  9105. height: math.unit(400, "meters")
  9106. },
  9107. ]
  9108. ))
  9109. characterMakers.push(() => makeCharacter(
  9110. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9111. {
  9112. front: {
  9113. height: math.unit(7, "feet"),
  9114. weight: math.unit(489, "lbs"),
  9115. name: "Front",
  9116. image: {
  9117. source: "./media/characters/reece-silvermane/front.svg",
  9118. bottom: 0.02,
  9119. extra: 1
  9120. }
  9121. },
  9122. },
  9123. [
  9124. {
  9125. name: "Macro",
  9126. height: math.unit(1.5, "miles"),
  9127. default: true
  9128. },
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9133. {
  9134. front: {
  9135. height: math.unit(6, "feet"),
  9136. weight: math.unit(78, "kg"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/kane/front.svg",
  9140. extra: 978 / 899
  9141. }
  9142. },
  9143. back: {
  9144. height: math.unit(6, "feet"),
  9145. weight: math.unit(78, "kg"),
  9146. name: "Back",
  9147. image: {
  9148. source: "./media/characters/kane/back.svg",
  9149. extra: 1966/1800,
  9150. bottom: 0/1966
  9151. }
  9152. },
  9153. head: {
  9154. height: math.unit(1.4, "feet"),
  9155. name: "Head",
  9156. image: {
  9157. source: "./media/characters/kane/head.svg"
  9158. }
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Normal",
  9164. height: math.unit(2.1, "m"),
  9165. },
  9166. {
  9167. name: "Macro",
  9168. height: math.unit(1, "km"),
  9169. default: true
  9170. },
  9171. ]
  9172. ))
  9173. characterMakers.push(() => makeCharacter(
  9174. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9175. {
  9176. front: {
  9177. height: math.unit(6, "feet"),
  9178. weight: math.unit(200, "kg"),
  9179. name: "Front",
  9180. image: {
  9181. source: "./media/characters/tegon/front.svg",
  9182. bottom: 0.01,
  9183. extra: 1
  9184. }
  9185. },
  9186. },
  9187. [
  9188. {
  9189. name: "Micro",
  9190. height: math.unit(1, "inch")
  9191. },
  9192. {
  9193. name: "Normal",
  9194. height: math.unit(6 + 3 / 12, "feet"),
  9195. default: true
  9196. },
  9197. {
  9198. name: "Macro",
  9199. height: math.unit(300, "feet")
  9200. },
  9201. {
  9202. name: "Megamacro",
  9203. height: math.unit(69, "miles")
  9204. },
  9205. ]
  9206. ))
  9207. characterMakers.push(() => makeCharacter(
  9208. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9209. {
  9210. side: {
  9211. height: math.unit(6, "feet"),
  9212. weight: math.unit(2304, "lbs"),
  9213. name: "Side",
  9214. image: {
  9215. source: "./media/characters/arcturax/side.svg",
  9216. extra: 790 / 376,
  9217. bottom: 0.01
  9218. }
  9219. },
  9220. },
  9221. [
  9222. {
  9223. name: "Micro",
  9224. height: math.unit(2, "inch")
  9225. },
  9226. {
  9227. name: "Normal",
  9228. height: math.unit(6, "feet")
  9229. },
  9230. {
  9231. name: "Macro",
  9232. height: math.unit(39, "feet"),
  9233. default: true
  9234. },
  9235. {
  9236. name: "Megamacro",
  9237. height: math.unit(7, "miles")
  9238. },
  9239. ]
  9240. ))
  9241. characterMakers.push(() => makeCharacter(
  9242. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9243. {
  9244. front: {
  9245. height: math.unit(6, "feet"),
  9246. weight: math.unit(50, "lbs"),
  9247. name: "Front",
  9248. image: {
  9249. source: "./media/characters/sentri/front.svg",
  9250. extra: 1750 / 1570,
  9251. bottom: 0.025
  9252. }
  9253. },
  9254. frontAlt: {
  9255. height: math.unit(6, "feet"),
  9256. weight: math.unit(50, "lbs"),
  9257. name: "Front (Alt)",
  9258. image: {
  9259. source: "./media/characters/sentri/front-alt.svg",
  9260. extra: 1750 / 1570,
  9261. bottom: 0.025
  9262. }
  9263. },
  9264. },
  9265. [
  9266. {
  9267. name: "Normal",
  9268. height: math.unit(15, "feet"),
  9269. default: true
  9270. },
  9271. {
  9272. name: "Macro",
  9273. height: math.unit(2500, "feet")
  9274. }
  9275. ]
  9276. ))
  9277. characterMakers.push(() => makeCharacter(
  9278. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9279. {
  9280. front: {
  9281. height: math.unit(5 + 8 / 12, "feet"),
  9282. weight: math.unit(130, "lbs"),
  9283. name: "Front",
  9284. image: {
  9285. source: "./media/characters/corvin/front.svg",
  9286. extra: 1803 / 1629
  9287. }
  9288. },
  9289. frontShirt: {
  9290. height: math.unit(5 + 8 / 12, "feet"),
  9291. weight: math.unit(130, "lbs"),
  9292. name: "Front (Shirt)",
  9293. image: {
  9294. source: "./media/characters/corvin/front-shirt.svg",
  9295. extra: 1803 / 1629
  9296. }
  9297. },
  9298. frontPoncho: {
  9299. height: math.unit(5 + 8 / 12, "feet"),
  9300. weight: math.unit(130, "lbs"),
  9301. name: "Front (Poncho)",
  9302. image: {
  9303. source: "./media/characters/corvin/front-poncho.svg",
  9304. extra: 1803 / 1629
  9305. }
  9306. },
  9307. side: {
  9308. height: math.unit(5 + 8 / 12, "feet"),
  9309. weight: math.unit(130, "lbs"),
  9310. name: "Side",
  9311. image: {
  9312. source: "./media/characters/corvin/side.svg",
  9313. extra: 1012 / 945
  9314. }
  9315. },
  9316. back: {
  9317. height: math.unit(5 + 8 / 12, "feet"),
  9318. weight: math.unit(130, "lbs"),
  9319. name: "Back",
  9320. image: {
  9321. source: "./media/characters/corvin/back.svg",
  9322. extra: 1803 / 1629
  9323. }
  9324. },
  9325. },
  9326. [
  9327. {
  9328. name: "Micro",
  9329. height: math.unit(3, "inches")
  9330. },
  9331. {
  9332. name: "Normal",
  9333. height: math.unit(5 + 8 / 12, "feet")
  9334. },
  9335. {
  9336. name: "Macro",
  9337. height: math.unit(300, "feet"),
  9338. default: true
  9339. },
  9340. {
  9341. name: "Megamacro",
  9342. height: math.unit(500, "miles")
  9343. }
  9344. ]
  9345. ))
  9346. characterMakers.push(() => makeCharacter(
  9347. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9348. {
  9349. front: {
  9350. height: math.unit(6, "feet"),
  9351. weight: math.unit(135, "lbs"),
  9352. name: "Front",
  9353. image: {
  9354. source: "./media/characters/q/front.svg",
  9355. extra: 854 / 752,
  9356. bottom: 0.005
  9357. }
  9358. },
  9359. back: {
  9360. height: math.unit(6, "feet"),
  9361. weight: math.unit(130, "lbs"),
  9362. name: "Back",
  9363. image: {
  9364. source: "./media/characters/q/back.svg",
  9365. extra: 854 / 752
  9366. }
  9367. },
  9368. },
  9369. [
  9370. {
  9371. name: "Macro",
  9372. height: math.unit(90, "feet"),
  9373. default: true
  9374. },
  9375. {
  9376. name: "Extra Macro",
  9377. height: math.unit(300, "feet"),
  9378. },
  9379. {
  9380. name: "BIG WALF",
  9381. height: math.unit(750, "feet"),
  9382. },
  9383. ]
  9384. ))
  9385. characterMakers.push(() => makeCharacter(
  9386. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9387. {
  9388. front: {
  9389. height: math.unit(3, "feet"),
  9390. weight: math.unit(28, "lbs"),
  9391. name: "Front",
  9392. image: {
  9393. source: "./media/characters/citrine/front.svg"
  9394. }
  9395. }
  9396. },
  9397. [
  9398. {
  9399. name: "Normal",
  9400. height: math.unit(3, "feet"),
  9401. default: true
  9402. }
  9403. ]
  9404. ))
  9405. characterMakers.push(() => makeCharacter(
  9406. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9407. {
  9408. front: {
  9409. height: math.unit(14, "feet"),
  9410. weight: math.unit(1450, "kg"),
  9411. preyCapacity: math.unit(15, "people"),
  9412. name: "Front",
  9413. image: {
  9414. source: "./media/characters/aura-starwind/front.svg",
  9415. extra: 1440/1327,
  9416. bottom: 11/1451
  9417. }
  9418. },
  9419. side: {
  9420. height: math.unit(14, "feet"),
  9421. weight: math.unit(1450, "kg"),
  9422. preyCapacity: math.unit(15, "people"),
  9423. name: "Side",
  9424. image: {
  9425. source: "./media/characters/aura-starwind/side.svg",
  9426. extra: 1654 / 1497
  9427. }
  9428. },
  9429. taur: {
  9430. height: math.unit(18, "feet"),
  9431. weight: math.unit(5500, "kg"),
  9432. preyCapacity: math.unit(50, "people"),
  9433. name: "Taur",
  9434. image: {
  9435. source: "./media/characters/aura-starwind/taur.svg",
  9436. extra: 1760 / 1650
  9437. }
  9438. },
  9439. feral: {
  9440. height: math.unit(46, "feet"),
  9441. weight: math.unit(25000, "kg"),
  9442. preyCapacity: math.unit(120, "people"),
  9443. name: "Feral",
  9444. image: {
  9445. source: "./media/characters/aura-starwind/feral.svg"
  9446. }
  9447. },
  9448. },
  9449. [
  9450. {
  9451. name: "Normal",
  9452. height: math.unit(14, "feet"),
  9453. default: true
  9454. },
  9455. {
  9456. name: "Macro",
  9457. height: math.unit(50, "meters")
  9458. },
  9459. {
  9460. name: "Megamacro",
  9461. height: math.unit(5000, "meters")
  9462. },
  9463. {
  9464. name: "Gigamacro",
  9465. height: math.unit(100000, "kilometers")
  9466. },
  9467. ]
  9468. ))
  9469. characterMakers.push(() => makeCharacter(
  9470. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9471. {
  9472. front: {
  9473. height: math.unit(2 + 7 / 12, "feet"),
  9474. weight: math.unit(32, "lbs"),
  9475. name: "Front",
  9476. image: {
  9477. source: "./media/characters/rivet/front.svg",
  9478. extra: 1716 / 1658,
  9479. bottom: 0.03
  9480. }
  9481. },
  9482. foot: {
  9483. height: math.unit(0.551, "feet"),
  9484. name: "Rivet's Foot",
  9485. image: {
  9486. source: "./media/characters/rivet/foot.svg"
  9487. },
  9488. rename: true
  9489. }
  9490. },
  9491. [
  9492. {
  9493. name: "Micro",
  9494. height: math.unit(1.5, "inches"),
  9495. },
  9496. {
  9497. name: "Normal",
  9498. height: math.unit(2 + 7 / 12, "feet"),
  9499. default: true
  9500. },
  9501. {
  9502. name: "Macro",
  9503. height: math.unit(85, "feet")
  9504. },
  9505. {
  9506. name: "Megamacro",
  9507. height: math.unit(2.2, "km")
  9508. }
  9509. ]
  9510. ))
  9511. characterMakers.push(() => makeCharacter(
  9512. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9513. {
  9514. front: {
  9515. height: math.unit(5 + 9 / 12, "feet"),
  9516. weight: math.unit(150, "lbs"),
  9517. name: "Front",
  9518. image: {
  9519. source: "./media/characters/coffee/front.svg",
  9520. extra: 946/880,
  9521. bottom: 66/1012
  9522. }
  9523. },
  9524. foot: {
  9525. height: math.unit(1.29, "feet"),
  9526. name: "Foot",
  9527. image: {
  9528. source: "./media/characters/coffee/foot.svg"
  9529. }
  9530. },
  9531. },
  9532. [
  9533. {
  9534. name: "Micro",
  9535. height: math.unit(2, "inches"),
  9536. },
  9537. {
  9538. name: "Normal",
  9539. height: math.unit(5 + 9 / 12, "feet"),
  9540. default: true
  9541. },
  9542. {
  9543. name: "Macro",
  9544. height: math.unit(800, "feet")
  9545. },
  9546. {
  9547. name: "Megamacro",
  9548. height: math.unit(25, "miles")
  9549. }
  9550. ]
  9551. ))
  9552. characterMakers.push(() => makeCharacter(
  9553. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9554. {
  9555. front: {
  9556. height: math.unit(6, "feet"),
  9557. weight: math.unit(200, "lbs"),
  9558. name: "Front",
  9559. image: {
  9560. source: "./media/characters/chari-gal/front.svg",
  9561. extra: 735/649,
  9562. bottom: 55/790
  9563. },
  9564. form: "normal",
  9565. default: true
  9566. },
  9567. back: {
  9568. height: math.unit(6, "feet"),
  9569. weight: math.unit(200, "lb"),
  9570. name: "Back",
  9571. image: {
  9572. source: "./media/characters/chari-gal/back.svg",
  9573. extra: 762/666,
  9574. bottom: 31/793
  9575. },
  9576. form: "normal"
  9577. },
  9578. mouth: {
  9579. height: math.unit(1.35, "feet"),
  9580. name: "Mouth",
  9581. image: {
  9582. source: "./media/characters/chari-gal/mouth.svg"
  9583. },
  9584. form: "normal"
  9585. },
  9586. gigantamax: {
  9587. height: math.unit(6 * 16, "feet"),
  9588. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9589. name: "Gigantamax",
  9590. image: {
  9591. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9592. extra: 1507/1149,
  9593. bottom: 254/1761
  9594. },
  9595. form: "gigantamax",
  9596. default: true
  9597. },
  9598. },
  9599. [
  9600. {
  9601. name: "Normal",
  9602. height: math.unit(5 + 7 / 12, "feet"),
  9603. form: "normal",
  9604. },
  9605. {
  9606. name: "Macro",
  9607. height: math.unit(200, "feet"),
  9608. default: true,
  9609. form: "normal"
  9610. },
  9611. {
  9612. name: "Normal",
  9613. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9614. form: "gigantamax",
  9615. },
  9616. {
  9617. name: "Macro",
  9618. height: math.unit(16 * 200, "feet"),
  9619. default: true,
  9620. form: "gigantamax"
  9621. },
  9622. ],
  9623. {
  9624. "normal": {
  9625. name: "Normal",
  9626. default: true
  9627. },
  9628. "gigantamax": {
  9629. name: "Gigantamax",
  9630. },
  9631. }
  9632. ))
  9633. characterMakers.push(() => makeCharacter(
  9634. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9635. {
  9636. front: {
  9637. height: math.unit(6, "feet"),
  9638. weight: math.unit(150, "lbs"),
  9639. name: "Front",
  9640. image: {
  9641. source: "./media/characters/nova/front.svg",
  9642. extra: 5000 / 4722,
  9643. bottom: 0.02
  9644. }
  9645. }
  9646. },
  9647. [
  9648. {
  9649. name: "Micro-",
  9650. height: math.unit(0.8, "inches")
  9651. },
  9652. {
  9653. name: "Micro",
  9654. height: math.unit(2, "inches"),
  9655. default: true
  9656. },
  9657. ]
  9658. ))
  9659. characterMakers.push(() => makeCharacter(
  9660. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9661. {
  9662. koboldFront: {
  9663. height: math.unit(3 + 1 / 12, "feet"),
  9664. weight: math.unit(21.7, "lbs"),
  9665. name: "Front",
  9666. image: {
  9667. source: "./media/characters/argent/kobold-front.svg",
  9668. extra: 1471 / 1331,
  9669. bottom: 100.8 / 1575.5
  9670. },
  9671. form: "kobold",
  9672. default: true
  9673. },
  9674. dragonFront: {
  9675. height: math.unit(75, "inches"),
  9676. name: "Front",
  9677. image: {
  9678. source: "./media/characters/argent/dragon-front.svg",
  9679. extra: 1389/1248,
  9680. bottom: 54/1443
  9681. },
  9682. form: "dragon",
  9683. },
  9684. dragonBack: {
  9685. height: math.unit(75, "inches"),
  9686. name: "Back",
  9687. image: {
  9688. source: "./media/characters/argent/dragon-back.svg",
  9689. extra: 1399/1271,
  9690. bottom: 23/1422
  9691. },
  9692. form: "dragon",
  9693. },
  9694. dragonDressed: {
  9695. height: math.unit(75, "inches"),
  9696. name: "Dressed",
  9697. image: {
  9698. source: "./media/characters/argent/dragon-dressed.svg",
  9699. extra: 1350/1215,
  9700. bottom: 26/1376
  9701. },
  9702. form: "dragon"
  9703. },
  9704. dragonHead: {
  9705. height: math.unit(23.5, "inches"),
  9706. name: "Head",
  9707. image: {
  9708. source: "./media/characters/argent/dragon-head.svg"
  9709. },
  9710. form: "dragon",
  9711. },
  9712. },
  9713. [
  9714. {
  9715. name: "Micro",
  9716. height: math.unit(2, "inches"),
  9717. form: "kobold",
  9718. },
  9719. {
  9720. name: "Normal",
  9721. height: math.unit(3 + 1 / 12, "feet"),
  9722. form: "kobold",
  9723. default: true
  9724. },
  9725. {
  9726. name: "Macro",
  9727. height: math.unit(120, "feet"),
  9728. form: "kobold",
  9729. },
  9730. {
  9731. name: "Speck",
  9732. height: math.unit(1, "mm"),
  9733. form: "dragon",
  9734. },
  9735. {
  9736. name: "Tiny",
  9737. height: math.unit(1, "cm"),
  9738. form: "dragon",
  9739. },
  9740. {
  9741. name: "Micro",
  9742. height: math.unit(5, "cm"),
  9743. form: "dragon",
  9744. },
  9745. {
  9746. name: "Normal",
  9747. height: math.unit(75, "inches"),
  9748. form: "dragon",
  9749. default: true
  9750. },
  9751. {
  9752. name: "Extra Tall",
  9753. height: math.unit(9, "feet"),
  9754. form: "dragon",
  9755. },
  9756. {
  9757. name: "Inconvenient",
  9758. height: math.unit(5, "meters"),
  9759. form: "dragon",
  9760. },
  9761. {
  9762. name: "Macro",
  9763. height: math.unit(70, "meters"),
  9764. form: "dragon",
  9765. },
  9766. {
  9767. name: "Macro+",
  9768. height: math.unit(250, "meters"),
  9769. form: "dragon",
  9770. },
  9771. {
  9772. name: "Megamacro",
  9773. height: math.unit(20, "km"),
  9774. form: "dragon",
  9775. },
  9776. {
  9777. name: "Mountainous",
  9778. height: math.unit(100, "km"),
  9779. form: "dragon",
  9780. },
  9781. {
  9782. name: "Continental",
  9783. height: math.unit(2, "megameters"),
  9784. form: "dragon",
  9785. },
  9786. {
  9787. name: "Too Big",
  9788. height: math.unit(900, "megameters"),
  9789. form: "dragon",
  9790. },
  9791. ],
  9792. {
  9793. "kobold": {
  9794. name: "Kobold",
  9795. default: true
  9796. },
  9797. "dragon": {
  9798. name: "Dragon",
  9799. },
  9800. }
  9801. ))
  9802. characterMakers.push(() => makeCharacter(
  9803. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9804. {
  9805. lamp: {
  9806. height: math.unit(7 * 1559 / 989, "feet"),
  9807. name: "Magic Lamp",
  9808. image: {
  9809. source: "./media/characters/mira-al-cul/lamp.svg",
  9810. extra: 1617 / 1559
  9811. }
  9812. },
  9813. front: {
  9814. height: math.unit(7, "feet"),
  9815. name: "Front",
  9816. image: {
  9817. source: "./media/characters/mira-al-cul/front.svg",
  9818. extra: 1044 / 990
  9819. }
  9820. },
  9821. },
  9822. [
  9823. {
  9824. name: "Heavily Restricted",
  9825. height: math.unit(7 * 1559 / 989, "feet")
  9826. },
  9827. {
  9828. name: "Freshly Freed",
  9829. height: math.unit(50 * 1559 / 989, "feet")
  9830. },
  9831. {
  9832. name: "World Encompassing",
  9833. height: math.unit(10000 * 1559 / 989, "miles")
  9834. },
  9835. {
  9836. name: "Galactic",
  9837. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9838. },
  9839. {
  9840. name: "Palmed Universe",
  9841. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9842. default: true
  9843. },
  9844. {
  9845. name: "Multiversal Matriarch",
  9846. height: math.unit(8.87e10, "yottameters")
  9847. },
  9848. {
  9849. name: "Void Mother",
  9850. height: math.unit(3.14e110, "yottaparsecs")
  9851. },
  9852. {
  9853. name: "Toying with Transcendence",
  9854. height: math.unit(1e307, "meters")
  9855. },
  9856. ]
  9857. ))
  9858. characterMakers.push(() => makeCharacter(
  9859. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9860. {
  9861. front: {
  9862. height: math.unit(17 + 1 / 12, "feet"),
  9863. weight: math.unit(476.2 * 5, "lbs"),
  9864. name: "Front",
  9865. image: {
  9866. source: "./media/characters/kuro-shi-uchū/front.svg",
  9867. extra: 2329 / 1835,
  9868. bottom: 0.02
  9869. }
  9870. },
  9871. },
  9872. [
  9873. {
  9874. name: "Micro",
  9875. height: math.unit(2, "inches")
  9876. },
  9877. {
  9878. name: "Normal",
  9879. height: math.unit(12, "meters")
  9880. },
  9881. {
  9882. name: "Planetary",
  9883. height: math.unit(0.00929, "AU"),
  9884. default: true
  9885. },
  9886. {
  9887. name: "Universal",
  9888. height: math.unit(20, "gigaparsecs")
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9894. {
  9895. front: {
  9896. height: math.unit(5 + 2 / 12, "feet"),
  9897. weight: math.unit(120, "lbs"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/katherine/front.svg",
  9901. extra: 2075 / 1969
  9902. }
  9903. },
  9904. dress: {
  9905. height: math.unit(5 + 2 / 12, "feet"),
  9906. weight: math.unit(120, "lbs"),
  9907. name: "Dress",
  9908. image: {
  9909. source: "./media/characters/katherine/dress.svg",
  9910. extra: 2258 / 2064
  9911. }
  9912. },
  9913. },
  9914. [
  9915. {
  9916. name: "Micro",
  9917. height: math.unit(1, "inches"),
  9918. default: true
  9919. },
  9920. {
  9921. name: "Normal",
  9922. height: math.unit(5 + 2 / 12, "feet")
  9923. },
  9924. {
  9925. name: "Macro",
  9926. height: math.unit(100, "meters")
  9927. },
  9928. {
  9929. name: "Megamacro",
  9930. height: math.unit(80, "miles")
  9931. },
  9932. ]
  9933. ))
  9934. characterMakers.push(() => makeCharacter(
  9935. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9936. {
  9937. front: {
  9938. height: math.unit(7 + 8 / 12, "feet"),
  9939. weight: math.unit(250, "lbs"),
  9940. name: "Front",
  9941. image: {
  9942. source: "./media/characters/yevis/front.svg",
  9943. extra: 1938 / 1755
  9944. }
  9945. }
  9946. },
  9947. [
  9948. {
  9949. name: "Mortal",
  9950. height: math.unit(7 + 8 / 12, "feet")
  9951. },
  9952. {
  9953. name: "Battle",
  9954. height: math.unit(25 + 11 / 12, "feet")
  9955. },
  9956. {
  9957. name: "Wrath",
  9958. height: math.unit(1654 + 11 / 12, "feet")
  9959. },
  9960. {
  9961. name: "Planet Destroyer",
  9962. height: math.unit(12000, "miles")
  9963. },
  9964. {
  9965. name: "Galaxy Conqueror",
  9966. height: math.unit(1.45, "zettameters"),
  9967. default: true
  9968. },
  9969. {
  9970. name: "Universal War",
  9971. height: math.unit(184, "gigaparsecs")
  9972. },
  9973. {
  9974. name: "Eternity War",
  9975. height: math.unit(1.98e55, "yottaparsecs")
  9976. },
  9977. ]
  9978. ))
  9979. characterMakers.push(() => makeCharacter(
  9980. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9981. {
  9982. front: {
  9983. height: math.unit(5 + 8 / 12, "feet"),
  9984. weight: math.unit(63, "kg"),
  9985. name: "Front",
  9986. image: {
  9987. source: "./media/characters/xavier/front.svg",
  9988. extra: 944 / 883
  9989. }
  9990. },
  9991. frontStretch: {
  9992. height: math.unit(5 + 8 / 12, "feet"),
  9993. weight: math.unit(63, "kg"),
  9994. name: "Stretching",
  9995. image: {
  9996. source: "./media/characters/xavier/front-stretch.svg",
  9997. extra: 962 / 820
  9998. }
  9999. },
  10000. },
  10001. [
  10002. {
  10003. name: "Normal",
  10004. height: math.unit(5 + 8 / 12, "feet")
  10005. },
  10006. {
  10007. name: "Macro",
  10008. height: math.unit(100, "meters"),
  10009. default: true
  10010. },
  10011. {
  10012. name: "McLargeHuge",
  10013. height: math.unit(10, "miles")
  10014. },
  10015. ]
  10016. ))
  10017. characterMakers.push(() => makeCharacter(
  10018. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10019. {
  10020. front: {
  10021. height: math.unit(5 + 5 / 12, "feet"),
  10022. weight: math.unit(150, "lb"),
  10023. name: "Front",
  10024. image: {
  10025. source: "./media/characters/joshii/front.svg",
  10026. extra: 765 / 653,
  10027. bottom: 51 / 816
  10028. }
  10029. },
  10030. foot: {
  10031. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10032. name: "Foot",
  10033. image: {
  10034. source: "./media/characters/joshii/foot.svg"
  10035. }
  10036. },
  10037. },
  10038. [
  10039. {
  10040. name: "Micro",
  10041. height: math.unit(2, "inches")
  10042. },
  10043. {
  10044. name: "Normal",
  10045. height: math.unit(5 + 5 / 12, "feet")
  10046. },
  10047. {
  10048. name: "Macro",
  10049. height: math.unit(785, "feet"),
  10050. default: true
  10051. },
  10052. {
  10053. name: "Megamacro",
  10054. height: math.unit(24.5, "miles")
  10055. },
  10056. ]
  10057. ))
  10058. characterMakers.push(() => makeCharacter(
  10059. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10060. {
  10061. front: {
  10062. height: math.unit(6, "feet"),
  10063. weight: math.unit(150, "lb"),
  10064. name: "Front",
  10065. image: {
  10066. source: "./media/characters/goddess-elizabeth/front.svg",
  10067. extra: 1800 / 1525,
  10068. bottom: 0.005
  10069. }
  10070. },
  10071. foot: {
  10072. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10073. name: "Foot",
  10074. image: {
  10075. source: "./media/characters/goddess-elizabeth/foot.svg"
  10076. }
  10077. },
  10078. mouth: {
  10079. height: math.unit(6, "feet"),
  10080. name: "Mouth",
  10081. image: {
  10082. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10083. }
  10084. },
  10085. },
  10086. [
  10087. {
  10088. name: "Micro",
  10089. height: math.unit(12, "feet")
  10090. },
  10091. {
  10092. name: "Normal",
  10093. height: math.unit(80, "miles"),
  10094. default: true
  10095. },
  10096. {
  10097. name: "Macro",
  10098. height: math.unit(15000, "parsecs")
  10099. },
  10100. ]
  10101. ))
  10102. characterMakers.push(() => makeCharacter(
  10103. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10104. {
  10105. front: {
  10106. height: math.unit(5 + 9 / 12, "feet"),
  10107. weight: math.unit(144, "lb"),
  10108. name: "Front",
  10109. image: {
  10110. source: "./media/characters/kara/front.svg"
  10111. }
  10112. },
  10113. feet: {
  10114. height: math.unit(6 / 6.765, "feet"),
  10115. name: "Kara's Feet",
  10116. rename: true,
  10117. image: {
  10118. source: "./media/characters/kara/feet.svg"
  10119. }
  10120. },
  10121. },
  10122. [
  10123. {
  10124. name: "Normal",
  10125. height: math.unit(5 + 9 / 12, "feet")
  10126. },
  10127. {
  10128. name: "Macro",
  10129. height: math.unit(174, "feet"),
  10130. default: true
  10131. },
  10132. ]
  10133. ))
  10134. characterMakers.push(() => makeCharacter(
  10135. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10136. {
  10137. front: {
  10138. height: math.unit(18, "feet"),
  10139. weight: math.unit(4050, "lb"),
  10140. name: "Front",
  10141. image: {
  10142. source: "./media/characters/tyrone/front.svg",
  10143. extra: 2405 / 2270,
  10144. bottom: 182 / 2587
  10145. }
  10146. },
  10147. },
  10148. [
  10149. {
  10150. name: "Normal",
  10151. height: math.unit(18, "feet"),
  10152. default: true
  10153. },
  10154. {
  10155. name: "Macro",
  10156. height: math.unit(300, "feet")
  10157. },
  10158. {
  10159. name: "Megamacro",
  10160. height: math.unit(15, "km")
  10161. },
  10162. {
  10163. name: "Gigamacro",
  10164. height: math.unit(500, "km")
  10165. },
  10166. {
  10167. name: "Teramacro",
  10168. height: math.unit(0.5, "gigameters")
  10169. },
  10170. {
  10171. name: "Omnimacro",
  10172. height: math.unit(1e252, "yottauniverse")
  10173. },
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(7 + 8 / 12, "feet"),
  10181. weight: math.unit(120, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/danny/front.svg",
  10185. extra: 1490 / 1350
  10186. }
  10187. },
  10188. back: {
  10189. height: math.unit(7 + 8 / 12, "feet"),
  10190. weight: math.unit(120, "lb"),
  10191. name: "Back",
  10192. image: {
  10193. source: "./media/characters/danny/back.svg",
  10194. extra: 1490 / 1350
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Normal",
  10201. height: math.unit(7 + 8 / 12, "feet"),
  10202. default: true
  10203. },
  10204. ]
  10205. ))
  10206. characterMakers.push(() => makeCharacter(
  10207. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10208. {
  10209. front: {
  10210. height: math.unit(3.5, "inches"),
  10211. weight: math.unit(19, "grams"),
  10212. name: "Front",
  10213. image: {
  10214. source: "./media/characters/mallow/front.svg",
  10215. extra: 471 / 431
  10216. }
  10217. },
  10218. back: {
  10219. height: math.unit(3.5, "inches"),
  10220. weight: math.unit(19, "grams"),
  10221. name: "Back",
  10222. image: {
  10223. source: "./media/characters/mallow/back.svg",
  10224. extra: 471 / 431
  10225. }
  10226. },
  10227. },
  10228. [
  10229. {
  10230. name: "Normal",
  10231. height: math.unit(3.5, "inches"),
  10232. default: true
  10233. },
  10234. ]
  10235. ))
  10236. characterMakers.push(() => makeCharacter(
  10237. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10238. {
  10239. front: {
  10240. height: math.unit(9, "feet"),
  10241. weight: math.unit(230, "kg"),
  10242. name: "Front",
  10243. image: {
  10244. source: "./media/characters/starry-aqua/front.svg"
  10245. }
  10246. },
  10247. back: {
  10248. height: math.unit(9, "feet"),
  10249. weight: math.unit(230, "kg"),
  10250. name: "Back",
  10251. image: {
  10252. source: "./media/characters/starry-aqua/back.svg"
  10253. }
  10254. },
  10255. hand: {
  10256. height: math.unit(9 * 0.1168, "feet"),
  10257. name: "Hand",
  10258. image: {
  10259. source: "./media/characters/starry-aqua/hand.svg"
  10260. }
  10261. },
  10262. foot: {
  10263. height: math.unit(9 * 0.18, "feet"),
  10264. name: "Foot",
  10265. image: {
  10266. source: "./media/characters/starry-aqua/foot.svg"
  10267. }
  10268. }
  10269. },
  10270. [
  10271. {
  10272. name: "Micro",
  10273. height: math.unit(3, "inches")
  10274. },
  10275. {
  10276. name: "Normal",
  10277. height: math.unit(9, "feet")
  10278. },
  10279. {
  10280. name: "Macro",
  10281. height: math.unit(300, "feet"),
  10282. default: true
  10283. },
  10284. {
  10285. name: "Megamacro",
  10286. height: math.unit(3200, "feet")
  10287. }
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10292. {
  10293. front: {
  10294. height: math.unit(15, "feet"),
  10295. weight: math.unit(5026, "lb"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/luka-towers/front.svg",
  10299. extra: 1269/1133,
  10300. bottom: 51/1320
  10301. }
  10302. },
  10303. },
  10304. [
  10305. {
  10306. name: "Normal",
  10307. height: math.unit(15, "feet"),
  10308. default: true
  10309. },
  10310. {
  10311. name: "Minimacro",
  10312. height: math.unit(25, "feet")
  10313. },
  10314. {
  10315. name: "Macro",
  10316. height: math.unit(320, "feet")
  10317. },
  10318. {
  10319. name: "Megamacro",
  10320. height: math.unit(35000, "feet")
  10321. },
  10322. {
  10323. name: "Gigamacro",
  10324. height: math.unit(4000, "miles")
  10325. },
  10326. {
  10327. name: "Teramacro",
  10328. height: math.unit(15000, "miles")
  10329. },
  10330. ]
  10331. ))
  10332. characterMakers.push(() => makeCharacter(
  10333. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10334. {
  10335. front: {
  10336. height: math.unit(6, "feet"),
  10337. weight: math.unit(150, "lb"),
  10338. name: "Front",
  10339. image: {
  10340. source: "./media/characters/natalie-nightring/front.svg",
  10341. extra: 1,
  10342. bottom: 0.06
  10343. }
  10344. },
  10345. },
  10346. [
  10347. {
  10348. name: "Uh Oh",
  10349. height: math.unit(0.1, "mm")
  10350. },
  10351. {
  10352. name: "Small",
  10353. height: math.unit(3, "inches")
  10354. },
  10355. {
  10356. name: "Human Scale",
  10357. height: math.unit(6, "feet")
  10358. },
  10359. {
  10360. name: "Librarian",
  10361. height: math.unit(50, "feet"),
  10362. default: true
  10363. },
  10364. {
  10365. name: "Immense",
  10366. height: math.unit(200, "miles")
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10372. {
  10373. front: {
  10374. height: math.unit(6, "feet"),
  10375. weight: math.unit(180, "lbs"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/danni-rosie/front.svg",
  10379. extra: 1260 / 1128,
  10380. bottom: 0.022
  10381. }
  10382. },
  10383. },
  10384. [
  10385. {
  10386. name: "Micro",
  10387. height: math.unit(2, "inches"),
  10388. default: true
  10389. },
  10390. ]
  10391. ))
  10392. characterMakers.push(() => makeCharacter(
  10393. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10394. {
  10395. front: {
  10396. height: math.unit(5 + 9 / 12, "feet"),
  10397. weight: math.unit(220, "lb"),
  10398. name: "Front",
  10399. image: {
  10400. source: "./media/characters/samantha-kruse/front.svg",
  10401. extra: (985 / 935),
  10402. bottom: 0.03
  10403. }
  10404. },
  10405. frontUndressed: {
  10406. height: math.unit(5 + 9 / 12, "feet"),
  10407. weight: math.unit(220, "lb"),
  10408. name: "Front (Undressed)",
  10409. image: {
  10410. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10411. extra: (973 / 923),
  10412. bottom: 0.025
  10413. }
  10414. },
  10415. fat: {
  10416. height: math.unit(5 + 9 / 12, "feet"),
  10417. weight: math.unit(900, "lb"),
  10418. name: "Front (Fat)",
  10419. image: {
  10420. source: "./media/characters/samantha-kruse/fat.svg",
  10421. extra: 2688 / 2561
  10422. }
  10423. },
  10424. },
  10425. [
  10426. {
  10427. name: "Normal",
  10428. height: math.unit(5 + 9 / 12, "feet"),
  10429. default: true
  10430. }
  10431. ]
  10432. ))
  10433. characterMakers.push(() => makeCharacter(
  10434. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10435. {
  10436. back: {
  10437. height: math.unit(5 + 4 / 12, "feet"),
  10438. weight: math.unit(4963, "lb"),
  10439. name: "Back",
  10440. image: {
  10441. source: "./media/characters/amelia-rosie/back.svg",
  10442. extra: 1113 / 963,
  10443. bottom: 0.01
  10444. }
  10445. },
  10446. },
  10447. [
  10448. {
  10449. name: "Level 0",
  10450. height: math.unit(5 + 4 / 12, "feet")
  10451. },
  10452. {
  10453. name: "Level 1",
  10454. height: math.unit(164597, "feet"),
  10455. default: true
  10456. },
  10457. {
  10458. name: "Level 2",
  10459. height: math.unit(956243, "miles")
  10460. },
  10461. {
  10462. name: "Level 3",
  10463. height: math.unit(29421709423, "miles")
  10464. },
  10465. {
  10466. name: "Level 4",
  10467. height: math.unit(154, "lightyears")
  10468. },
  10469. {
  10470. name: "Level 5",
  10471. height: math.unit(4738272, "lightyears")
  10472. },
  10473. {
  10474. name: "Level 6",
  10475. height: math.unit(145787152896, "lightyears")
  10476. },
  10477. ]
  10478. ))
  10479. characterMakers.push(() => makeCharacter(
  10480. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10481. {
  10482. front: {
  10483. height: math.unit(5 + 11 / 12, "feet"),
  10484. weight: math.unit(65, "kg"),
  10485. name: "Front",
  10486. image: {
  10487. source: "./media/characters/rook-kitara/front.svg",
  10488. extra: 1347 / 1274,
  10489. bottom: 0.005
  10490. }
  10491. },
  10492. },
  10493. [
  10494. {
  10495. name: "Totally Unfair",
  10496. height: math.unit(1.8, "mm")
  10497. },
  10498. {
  10499. name: "Lap Rookie",
  10500. height: math.unit(1.4, "feet")
  10501. },
  10502. {
  10503. name: "Normal",
  10504. height: math.unit(5 + 11 / 12, "feet"),
  10505. default: true
  10506. },
  10507. {
  10508. name: "How Did This Happen",
  10509. height: math.unit(80, "miles")
  10510. }
  10511. ]
  10512. ))
  10513. characterMakers.push(() => makeCharacter(
  10514. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10515. {
  10516. front: {
  10517. height: math.unit(7, "feet"),
  10518. weight: math.unit(300, "lb"),
  10519. name: "Front",
  10520. image: {
  10521. source: "./media/characters/pisces/front.svg",
  10522. extra: 2255 / 2115,
  10523. bottom: 0.03
  10524. }
  10525. },
  10526. back: {
  10527. height: math.unit(7, "feet"),
  10528. weight: math.unit(300, "lb"),
  10529. name: "Back",
  10530. image: {
  10531. source: "./media/characters/pisces/back.svg",
  10532. extra: 2146 / 2055,
  10533. bottom: 0.04
  10534. }
  10535. },
  10536. },
  10537. [
  10538. {
  10539. name: "Normal",
  10540. height: math.unit(7, "feet"),
  10541. default: true
  10542. },
  10543. {
  10544. name: "Swimming Pool",
  10545. height: math.unit(12.2, "meters")
  10546. },
  10547. {
  10548. name: "Olympic Swimming Pool",
  10549. height: math.unit(56.3, "meters")
  10550. },
  10551. {
  10552. name: "Lake Superior",
  10553. height: math.unit(93900, "meters")
  10554. },
  10555. {
  10556. name: "Mediterranean Sea",
  10557. height: math.unit(644457, "meters")
  10558. },
  10559. {
  10560. name: "World's Oceans",
  10561. height: math.unit(4567491, "meters")
  10562. },
  10563. ]
  10564. ))
  10565. characterMakers.push(() => makeCharacter(
  10566. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10567. {
  10568. front: {
  10569. height: math.unit(2.3, "meters"),
  10570. weight: math.unit(120, "kg"),
  10571. name: "Front",
  10572. image: {
  10573. source: "./media/characters/zelas/front.svg"
  10574. }
  10575. },
  10576. side: {
  10577. height: math.unit(2.3, "meters"),
  10578. weight: math.unit(120, "kg"),
  10579. name: "Side",
  10580. image: {
  10581. source: "./media/characters/zelas/side.svg"
  10582. }
  10583. },
  10584. back: {
  10585. height: math.unit(2.3, "meters"),
  10586. weight: math.unit(120, "kg"),
  10587. name: "Back",
  10588. image: {
  10589. source: "./media/characters/zelas/back.svg"
  10590. }
  10591. },
  10592. foot: {
  10593. height: math.unit(1.116, "feet"),
  10594. name: "Foot",
  10595. image: {
  10596. source: "./media/characters/zelas/foot.svg"
  10597. }
  10598. },
  10599. },
  10600. [
  10601. {
  10602. name: "Normal",
  10603. height: math.unit(2.3, "meters")
  10604. },
  10605. {
  10606. name: "Macro",
  10607. height: math.unit(30, "meters"),
  10608. default: true
  10609. },
  10610. ]
  10611. ))
  10612. characterMakers.push(() => makeCharacter(
  10613. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10614. {
  10615. front: {
  10616. height: math.unit(1, "inch"),
  10617. weight: math.unit(0.21, "grams"),
  10618. name: "Front",
  10619. image: {
  10620. source: "./media/characters/talbot/front.svg",
  10621. extra: 594 / 544
  10622. }
  10623. },
  10624. },
  10625. [
  10626. {
  10627. name: "Micro",
  10628. height: math.unit(1, "inch"),
  10629. default: true
  10630. },
  10631. ]
  10632. ))
  10633. characterMakers.push(() => makeCharacter(
  10634. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10635. {
  10636. front: {
  10637. height: math.unit(3 + 3 / 12, "feet"),
  10638. weight: math.unit(51.8, "lb"),
  10639. name: "Front",
  10640. image: {
  10641. source: "./media/characters/fliss/front.svg",
  10642. extra: 840 / 640
  10643. }
  10644. },
  10645. },
  10646. [
  10647. {
  10648. name: "Teeny Tiny",
  10649. height: math.unit(1, "mm")
  10650. },
  10651. {
  10652. name: "Small",
  10653. height: math.unit(1, "inch"),
  10654. default: true
  10655. },
  10656. {
  10657. name: "Standard Sylveon",
  10658. height: math.unit(3 + 3 / 12, "feet")
  10659. },
  10660. {
  10661. name: "Large Nuisance",
  10662. height: math.unit(33, "feet")
  10663. },
  10664. {
  10665. name: "City Filler",
  10666. height: math.unit(3000, "feet")
  10667. },
  10668. {
  10669. name: "New Horizon",
  10670. height: math.unit(6000, "miles")
  10671. },
  10672. ]
  10673. ))
  10674. characterMakers.push(() => makeCharacter(
  10675. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10676. {
  10677. front: {
  10678. height: math.unit(5, "cm"),
  10679. weight: math.unit(1.94, "g"),
  10680. name: "Front",
  10681. image: {
  10682. source: "./media/characters/fleta/front.svg",
  10683. extra: 835 / 803
  10684. }
  10685. },
  10686. back: {
  10687. height: math.unit(5, "cm"),
  10688. weight: math.unit(1.94, "g"),
  10689. name: "Back",
  10690. image: {
  10691. source: "./media/characters/fleta/back.svg",
  10692. extra: 835 / 803
  10693. }
  10694. },
  10695. },
  10696. [
  10697. {
  10698. name: "Micro",
  10699. height: math.unit(5, "cm"),
  10700. default: true
  10701. },
  10702. ]
  10703. ))
  10704. characterMakers.push(() => makeCharacter(
  10705. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10706. {
  10707. front: {
  10708. height: math.unit(6, "feet"),
  10709. weight: math.unit(225, "lb"),
  10710. name: "Front",
  10711. image: {
  10712. source: "./media/characters/dominic/front.svg",
  10713. extra: 1770 / 1620,
  10714. bottom: 0.025
  10715. }
  10716. },
  10717. back: {
  10718. height: math.unit(6, "feet"),
  10719. weight: math.unit(225, "lb"),
  10720. name: "Back",
  10721. image: {
  10722. source: "./media/characters/dominic/back.svg",
  10723. extra: 1745 / 1620,
  10724. bottom: 0.065
  10725. }
  10726. },
  10727. },
  10728. [
  10729. {
  10730. name: "Nano",
  10731. height: math.unit(0.1, "mm")
  10732. },
  10733. {
  10734. name: "Micro-",
  10735. height: math.unit(1, "mm")
  10736. },
  10737. {
  10738. name: "Micro",
  10739. height: math.unit(4, "inches")
  10740. },
  10741. {
  10742. name: "Normal",
  10743. height: math.unit(6 + 4 / 12, "feet"),
  10744. default: true
  10745. },
  10746. {
  10747. name: "Macro",
  10748. height: math.unit(115, "feet")
  10749. },
  10750. {
  10751. name: "Macro+",
  10752. height: math.unit(955, "feet")
  10753. },
  10754. {
  10755. name: "Megamacro",
  10756. height: math.unit(8990, "feet")
  10757. },
  10758. {
  10759. name: "Gigmacro",
  10760. height: math.unit(9310, "miles")
  10761. },
  10762. {
  10763. name: "Teramacro",
  10764. height: math.unit(1567005010, "miles")
  10765. },
  10766. {
  10767. name: "Examacro",
  10768. height: math.unit(1425, "parsecs")
  10769. },
  10770. ]
  10771. ))
  10772. characterMakers.push(() => makeCharacter(
  10773. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10774. {
  10775. front: {
  10776. height: math.unit(400, "feet"),
  10777. weight: math.unit(44444444, "lb"),
  10778. name: "Front",
  10779. image: {
  10780. source: "./media/characters/major-colonel/front.svg"
  10781. }
  10782. },
  10783. back: {
  10784. height: math.unit(400, "feet"),
  10785. weight: math.unit(44444444, "lb"),
  10786. name: "Back",
  10787. image: {
  10788. source: "./media/characters/major-colonel/back.svg"
  10789. }
  10790. },
  10791. },
  10792. [
  10793. {
  10794. name: "Macro",
  10795. height: math.unit(400, "feet"),
  10796. default: true
  10797. },
  10798. ]
  10799. ))
  10800. characterMakers.push(() => makeCharacter(
  10801. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10802. {
  10803. catFront: {
  10804. height: math.unit(6, "feet"),
  10805. weight: math.unit(120, "lb"),
  10806. name: "Front (Cat Side)",
  10807. image: {
  10808. source: "./media/characters/axel-lycan/cat-front.svg",
  10809. extra: 430 / 402,
  10810. bottom: 43 / 472.35
  10811. }
  10812. },
  10813. catBack: {
  10814. height: math.unit(6, "feet"),
  10815. weight: math.unit(120, "lb"),
  10816. name: "Back (Cat Side)",
  10817. image: {
  10818. source: "./media/characters/axel-lycan/cat-back.svg",
  10819. extra: 447 / 419,
  10820. bottom: 23.3 / 469
  10821. }
  10822. },
  10823. wolfFront: {
  10824. height: math.unit(6, "feet"),
  10825. weight: math.unit(120, "lb"),
  10826. name: "Front (Wolf Side)",
  10827. image: {
  10828. source: "./media/characters/axel-lycan/wolf-front.svg",
  10829. extra: 485 / 456,
  10830. bottom: 19 / 504
  10831. }
  10832. },
  10833. wolfBack: {
  10834. height: math.unit(6, "feet"),
  10835. weight: math.unit(120, "lb"),
  10836. name: "Back (Wolf Side)",
  10837. image: {
  10838. source: "./media/characters/axel-lycan/wolf-back.svg",
  10839. extra: 475 / 438,
  10840. bottom: 39.2 / 514
  10841. }
  10842. },
  10843. },
  10844. [
  10845. {
  10846. name: "Macro",
  10847. height: math.unit(1, "km"),
  10848. default: true
  10849. },
  10850. ]
  10851. ))
  10852. characterMakers.push(() => makeCharacter(
  10853. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10854. {
  10855. front: {
  10856. height: math.unit(5 + 9 / 12, "feet"),
  10857. weight: math.unit(175, "lb"),
  10858. name: "Front",
  10859. image: {
  10860. source: "./media/characters/vanrel-hyena/front.svg",
  10861. extra: 1086 / 1010,
  10862. bottom: 0.04
  10863. }
  10864. },
  10865. },
  10866. [
  10867. {
  10868. name: "Normal",
  10869. height: math.unit(5 + 9 / 12, "feet"),
  10870. default: true
  10871. },
  10872. ]
  10873. ))
  10874. characterMakers.push(() => makeCharacter(
  10875. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10876. {
  10877. front: {
  10878. height: math.unit(6, "feet"),
  10879. weight: math.unit(103, "lb"),
  10880. name: "Front",
  10881. image: {
  10882. source: "./media/characters/abbott-absol/front.svg",
  10883. extra: 2010 / 1842
  10884. }
  10885. },
  10886. },
  10887. [
  10888. {
  10889. name: "Megamicro",
  10890. height: math.unit(0.1, "mm")
  10891. },
  10892. {
  10893. name: "Micro",
  10894. height: math.unit(1, "inch")
  10895. },
  10896. {
  10897. name: "Normal",
  10898. height: math.unit(6, "feet"),
  10899. default: true
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10905. {
  10906. front: {
  10907. height: math.unit(6, "feet"),
  10908. weight: math.unit(264, "lb"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/hector/front.svg",
  10912. extra: 2280 / 2130,
  10913. bottom: 0.07
  10914. }
  10915. },
  10916. },
  10917. [
  10918. {
  10919. name: "Normal",
  10920. height: math.unit(12.25, "foot"),
  10921. default: true
  10922. },
  10923. {
  10924. name: "Macro",
  10925. height: math.unit(160, "feet")
  10926. },
  10927. ]
  10928. ))
  10929. characterMakers.push(() => makeCharacter(
  10930. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10931. {
  10932. front: {
  10933. height: math.unit(6, "feet"),
  10934. weight: math.unit(150, "lb"),
  10935. name: "Front",
  10936. image: {
  10937. source: "./media/characters/sal/front.svg",
  10938. extra: 1846 / 1699,
  10939. bottom: 0.04
  10940. }
  10941. },
  10942. },
  10943. [
  10944. {
  10945. name: "Megamacro",
  10946. height: math.unit(10, "miles"),
  10947. default: true
  10948. },
  10949. ]
  10950. ))
  10951. characterMakers.push(() => makeCharacter(
  10952. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10953. {
  10954. front: {
  10955. height: math.unit(3, "meters"),
  10956. weight: math.unit(450, "kg"),
  10957. name: "front",
  10958. image: {
  10959. source: "./media/characters/ranger/front.svg",
  10960. extra: 2401 / 2243,
  10961. bottom: 0.05
  10962. }
  10963. },
  10964. },
  10965. [
  10966. {
  10967. name: "Normal",
  10968. height: math.unit(3, "meters"),
  10969. default: true
  10970. },
  10971. ]
  10972. ))
  10973. characterMakers.push(() => makeCharacter(
  10974. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10975. {
  10976. front: {
  10977. height: math.unit(14, "feet"),
  10978. weight: math.unit(800, "kg"),
  10979. name: "Front",
  10980. image: {
  10981. source: "./media/characters/theresa/front.svg",
  10982. extra: 3575 / 3346,
  10983. bottom: 0.03
  10984. }
  10985. },
  10986. },
  10987. [
  10988. {
  10989. name: "Normal",
  10990. height: math.unit(14, "feet"),
  10991. default: true
  10992. },
  10993. ]
  10994. ))
  10995. characterMakers.push(() => makeCharacter(
  10996. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10997. {
  10998. front: {
  10999. height: math.unit(6, "feet"),
  11000. weight: math.unit(3, "kg"),
  11001. name: "Front",
  11002. image: {
  11003. source: "./media/characters/ine/front.svg",
  11004. extra: 678 / 539,
  11005. bottom: 0.023
  11006. }
  11007. },
  11008. },
  11009. [
  11010. {
  11011. name: "Normal",
  11012. height: math.unit(2.265, "feet"),
  11013. default: true
  11014. },
  11015. ]
  11016. ))
  11017. characterMakers.push(() => makeCharacter(
  11018. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11019. {
  11020. front: {
  11021. height: math.unit(5, "feet"),
  11022. weight: math.unit(30, "kg"),
  11023. name: "Front",
  11024. image: {
  11025. source: "./media/characters/vial/front.svg",
  11026. extra: 1365 / 1277,
  11027. bottom: 0.04
  11028. }
  11029. },
  11030. },
  11031. [
  11032. {
  11033. name: "Normal",
  11034. height: math.unit(5, "feet"),
  11035. default: true
  11036. },
  11037. ]
  11038. ))
  11039. characterMakers.push(() => makeCharacter(
  11040. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11041. {
  11042. side: {
  11043. height: math.unit(3.4, "meters"),
  11044. weight: math.unit(1000, "lb"),
  11045. name: "Side",
  11046. image: {
  11047. source: "./media/characters/rovoska/side.svg",
  11048. extra: 4403 / 1515
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Normal",
  11055. height: math.unit(3.4, "meters"),
  11056. default: true
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11062. {
  11063. front: {
  11064. height: math.unit(8, "feet"),
  11065. weight: math.unit(315, "lb"),
  11066. name: "Front",
  11067. image: {
  11068. source: "./media/characters/gunner-rotthbauer/front.svg"
  11069. }
  11070. },
  11071. back: {
  11072. height: math.unit(8, "feet"),
  11073. weight: math.unit(315, "lb"),
  11074. name: "Back",
  11075. image: {
  11076. source: "./media/characters/gunner-rotthbauer/back.svg"
  11077. }
  11078. },
  11079. },
  11080. [
  11081. {
  11082. name: "Micro",
  11083. height: math.unit(3.5, "inches")
  11084. },
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(8, "feet"),
  11088. default: true
  11089. },
  11090. {
  11091. name: "Macro",
  11092. height: math.unit(250, "feet")
  11093. },
  11094. {
  11095. name: "Megamacro",
  11096. height: math.unit(1, "AU")
  11097. },
  11098. ]
  11099. ))
  11100. characterMakers.push(() => makeCharacter(
  11101. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11102. {
  11103. front: {
  11104. height: math.unit(5 + 5 / 12, "feet"),
  11105. weight: math.unit(140, "lb"),
  11106. name: "Front",
  11107. image: {
  11108. source: "./media/characters/allatia/front.svg",
  11109. extra: 1227 / 1180,
  11110. bottom: 0.027
  11111. }
  11112. },
  11113. },
  11114. [
  11115. {
  11116. name: "Normal",
  11117. height: math.unit(5 + 5 / 12, "feet")
  11118. },
  11119. {
  11120. name: "Macro",
  11121. height: math.unit(250, "feet"),
  11122. default: true
  11123. },
  11124. {
  11125. name: "Megamacro",
  11126. height: math.unit(8, "miles")
  11127. }
  11128. ]
  11129. ))
  11130. characterMakers.push(() => makeCharacter(
  11131. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11132. {
  11133. front: {
  11134. height: math.unit(6, "feet"),
  11135. weight: math.unit(120, "lb"),
  11136. name: "Front",
  11137. image: {
  11138. source: "./media/characters/tene/front.svg",
  11139. extra: 814/750,
  11140. bottom: 36/850
  11141. }
  11142. },
  11143. stomping: {
  11144. height: math.unit(2.025, "meters"),
  11145. weight: math.unit(120, "lb"),
  11146. name: "Stomping",
  11147. image: {
  11148. source: "./media/characters/tene/stomping.svg",
  11149. extra: 885/821,
  11150. bottom: 15/900
  11151. }
  11152. },
  11153. sitting: {
  11154. height: math.unit(1, "meter"),
  11155. weight: math.unit(120, "lb"),
  11156. name: "Sitting",
  11157. image: {
  11158. source: "./media/characters/tene/sitting.svg",
  11159. extra: 396/366,
  11160. bottom: 79/475
  11161. }
  11162. },
  11163. smiling: {
  11164. height: math.unit(1.2, "feet"),
  11165. name: "Smiling",
  11166. image: {
  11167. source: "./media/characters/tene/smiling.svg",
  11168. extra: 1364/1071,
  11169. bottom: 0/1364
  11170. }
  11171. },
  11172. smug: {
  11173. height: math.unit(1.3, "feet"),
  11174. name: "Smug",
  11175. image: {
  11176. source: "./media/characters/tene/smug.svg",
  11177. extra: 1323/1082,
  11178. bottom: 0/1323
  11179. }
  11180. },
  11181. feral: {
  11182. height: math.unit(3.9, "feet"),
  11183. weight: math.unit(250, "lb"),
  11184. name: "Feral",
  11185. image: {
  11186. source: "./media/characters/tene/feral.svg",
  11187. extra: 717 / 458,
  11188. bottom: 0.179
  11189. }
  11190. },
  11191. },
  11192. [
  11193. {
  11194. name: "Normal",
  11195. height: math.unit(6, "feet")
  11196. },
  11197. {
  11198. name: "Macro",
  11199. height: math.unit(300, "feet"),
  11200. default: true
  11201. },
  11202. {
  11203. name: "Megamacro",
  11204. height: math.unit(5, "miles")
  11205. },
  11206. ]
  11207. ))
  11208. characterMakers.push(() => makeCharacter(
  11209. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11210. {
  11211. side: {
  11212. height: math.unit(6, "feet"),
  11213. name: "Side",
  11214. image: {
  11215. source: "./media/characters/evander/side.svg",
  11216. extra: 877 / 477
  11217. }
  11218. },
  11219. },
  11220. [
  11221. {
  11222. name: "Normal",
  11223. height: math.unit(0.83, "meters"),
  11224. default: true
  11225. },
  11226. ]
  11227. ))
  11228. characterMakers.push(() => makeCharacter(
  11229. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11230. {
  11231. front: {
  11232. height: math.unit(12, "feet"),
  11233. weight: math.unit(1000, "lb"),
  11234. name: "Front",
  11235. image: {
  11236. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11237. extra: 1762 / 1611
  11238. }
  11239. },
  11240. back: {
  11241. height: math.unit(12, "feet"),
  11242. weight: math.unit(1000, "lb"),
  11243. name: "Back",
  11244. image: {
  11245. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11246. extra: 1762 / 1611
  11247. }
  11248. },
  11249. },
  11250. [
  11251. {
  11252. name: "Normal",
  11253. height: math.unit(12, "feet"),
  11254. default: true
  11255. },
  11256. {
  11257. name: "Kaiju",
  11258. height: math.unit(150, "feet")
  11259. },
  11260. ]
  11261. ))
  11262. characterMakers.push(() => makeCharacter(
  11263. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11264. {
  11265. front: {
  11266. height: math.unit(6, "feet"),
  11267. weight: math.unit(150, "lb"),
  11268. name: "Front",
  11269. image: {
  11270. source: "./media/characters/zero-alurus/front.svg"
  11271. }
  11272. },
  11273. back: {
  11274. height: math.unit(6, "feet"),
  11275. weight: math.unit(150, "lb"),
  11276. name: "Back",
  11277. image: {
  11278. source: "./media/characters/zero-alurus/back.svg"
  11279. }
  11280. },
  11281. },
  11282. [
  11283. {
  11284. name: "Normal",
  11285. height: math.unit(5 + 10 / 12, "feet")
  11286. },
  11287. {
  11288. name: "Macro",
  11289. height: math.unit(60, "feet"),
  11290. default: true
  11291. },
  11292. {
  11293. name: "Macro+",
  11294. height: math.unit(450, "feet")
  11295. },
  11296. ]
  11297. ))
  11298. characterMakers.push(() => makeCharacter(
  11299. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11300. {
  11301. front: {
  11302. height: math.unit(6, "feet"),
  11303. weight: math.unit(200, "lb"),
  11304. name: "Front",
  11305. image: {
  11306. source: "./media/characters/mega-shi/front.svg",
  11307. extra: 1279 / 1250,
  11308. bottom: 0.02
  11309. }
  11310. },
  11311. back: {
  11312. height: math.unit(6, "feet"),
  11313. weight: math.unit(200, "lb"),
  11314. name: "Back",
  11315. image: {
  11316. source: "./media/characters/mega-shi/back.svg",
  11317. extra: 1279 / 1250,
  11318. bottom: 0.02
  11319. }
  11320. },
  11321. },
  11322. [
  11323. {
  11324. name: "Micro",
  11325. height: math.unit(16 + 6 / 12, "feet")
  11326. },
  11327. {
  11328. name: "Third Dimension",
  11329. height: math.unit(40, "meters")
  11330. },
  11331. {
  11332. name: "Normal",
  11333. height: math.unit(660, "feet"),
  11334. default: true
  11335. },
  11336. {
  11337. name: "Megamacro",
  11338. height: math.unit(10, "miles")
  11339. },
  11340. {
  11341. name: "Planetary Launch",
  11342. height: math.unit(500, "miles")
  11343. },
  11344. {
  11345. name: "Interstellar",
  11346. height: math.unit(1e9, "miles")
  11347. },
  11348. {
  11349. name: "Leaving the Universe",
  11350. height: math.unit(1, "gigaparsec")
  11351. },
  11352. {
  11353. name: "Travelling Universes",
  11354. height: math.unit(30e15, "parsecs")
  11355. },
  11356. ]
  11357. ))
  11358. characterMakers.push(() => makeCharacter(
  11359. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11360. {
  11361. front: {
  11362. height: math.unit(5 + 4/12, "feet"),
  11363. weight: math.unit(120, "lb"),
  11364. name: "Front",
  11365. image: {
  11366. source: "./media/characters/odyssey/front.svg",
  11367. extra: 1747/1571,
  11368. bottom: 47/1794
  11369. }
  11370. },
  11371. side: {
  11372. height: math.unit(5.1, "feet"),
  11373. weight: math.unit(120, "lb"),
  11374. name: "Side",
  11375. image: {
  11376. source: "./media/characters/odyssey/side.svg",
  11377. extra: 1847/1619,
  11378. bottom: 47/1894
  11379. }
  11380. },
  11381. lounging: {
  11382. height: math.unit(1.464, "feet"),
  11383. weight: math.unit(120, "lb"),
  11384. name: "Lounging",
  11385. image: {
  11386. source: "./media/characters/odyssey/lounging.svg",
  11387. extra: 1235/837,
  11388. bottom: 551/1786
  11389. }
  11390. },
  11391. },
  11392. [
  11393. {
  11394. name: "Normal",
  11395. height: math.unit(5 + 4 / 12, "feet")
  11396. },
  11397. {
  11398. name: "Macro",
  11399. height: math.unit(1, "km")
  11400. },
  11401. {
  11402. name: "Megamacro",
  11403. height: math.unit(3000, "km")
  11404. },
  11405. {
  11406. name: "Gigamacro",
  11407. height: math.unit(1, "AU"),
  11408. default: true
  11409. },
  11410. {
  11411. name: "Omniversal",
  11412. height: math.unit(100e14, "lightyears")
  11413. },
  11414. ]
  11415. ))
  11416. characterMakers.push(() => makeCharacter(
  11417. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11418. {
  11419. front: {
  11420. height: math.unit(5 + 10/12, "feet"),
  11421. name: "Front",
  11422. image: {
  11423. source: "./media/characters/mekuto/front.svg",
  11424. extra: 875/835,
  11425. bottom: 46/921
  11426. }
  11427. },
  11428. },
  11429. [
  11430. {
  11431. name: "Minimicro",
  11432. height: math.unit(0.2, "inches")
  11433. },
  11434. {
  11435. name: "Micro",
  11436. height: math.unit(1.5, "inches")
  11437. },
  11438. {
  11439. name: "Normal",
  11440. height: math.unit(5 + 10 / 12, "feet"),
  11441. default: true
  11442. },
  11443. {
  11444. name: "Minimacro",
  11445. height: math.unit(17 + 9 / 12, "feet")
  11446. },
  11447. {
  11448. name: "Macro",
  11449. height: math.unit(177.5, "feet")
  11450. },
  11451. {
  11452. name: "Megamacro",
  11453. height: math.unit(152, "miles")
  11454. },
  11455. ]
  11456. ))
  11457. characterMakers.push(() => makeCharacter(
  11458. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11459. {
  11460. front: {
  11461. height: math.unit(6.5, "inches"),
  11462. weight: math.unit(13, "oz"),
  11463. name: "Front",
  11464. image: {
  11465. source: "./media/characters/dafydd-tomos/front.svg",
  11466. extra: 2990 / 2603,
  11467. bottom: 0.03
  11468. }
  11469. },
  11470. },
  11471. [
  11472. {
  11473. name: "Micro",
  11474. height: math.unit(6.5, "inches"),
  11475. default: true
  11476. },
  11477. ]
  11478. ))
  11479. characterMakers.push(() => makeCharacter(
  11480. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11481. {
  11482. front: {
  11483. height: math.unit(6, "feet"),
  11484. weight: math.unit(150, "lb"),
  11485. name: "Front",
  11486. image: {
  11487. source: "./media/characters/splinter/front.svg",
  11488. extra: 2990 / 2882,
  11489. bottom: 0.04
  11490. }
  11491. },
  11492. back: {
  11493. height: math.unit(6, "feet"),
  11494. weight: math.unit(150, "lb"),
  11495. name: "Back",
  11496. image: {
  11497. source: "./media/characters/splinter/back.svg",
  11498. extra: 2990 / 2882,
  11499. bottom: 0.04
  11500. }
  11501. },
  11502. },
  11503. [
  11504. {
  11505. name: "Normal",
  11506. height: math.unit(6, "feet")
  11507. },
  11508. {
  11509. name: "Macro",
  11510. height: math.unit(230, "meters"),
  11511. default: true
  11512. },
  11513. ]
  11514. ))
  11515. characterMakers.push(() => makeCharacter(
  11516. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11517. {
  11518. front: {
  11519. height: math.unit(4 + 10 / 12, "feet"),
  11520. weight: math.unit(480, "lb"),
  11521. name: "Front",
  11522. image: {
  11523. source: "./media/characters/snow-gabumon/front.svg",
  11524. extra: 1140 / 963,
  11525. bottom: 0.058
  11526. }
  11527. },
  11528. back: {
  11529. height: math.unit(4 + 10 / 12, "feet"),
  11530. weight: math.unit(480, "lb"),
  11531. name: "Back",
  11532. image: {
  11533. source: "./media/characters/snow-gabumon/back.svg",
  11534. extra: 1115 / 962,
  11535. bottom: 0.041
  11536. }
  11537. },
  11538. frontUndresed: {
  11539. height: math.unit(4 + 10 / 12, "feet"),
  11540. weight: math.unit(480, "lb"),
  11541. name: "Front (Undressed)",
  11542. image: {
  11543. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11544. extra: 1061 / 960,
  11545. bottom: 0.045
  11546. }
  11547. },
  11548. },
  11549. [
  11550. {
  11551. name: "Micro",
  11552. height: math.unit(1, "inch")
  11553. },
  11554. {
  11555. name: "Normal",
  11556. height: math.unit(4 + 10 / 12, "feet"),
  11557. default: true
  11558. },
  11559. {
  11560. name: "Macro",
  11561. height: math.unit(200, "feet")
  11562. },
  11563. {
  11564. name: "Megamacro",
  11565. height: math.unit(120, "miles")
  11566. },
  11567. {
  11568. name: "Gigamacro",
  11569. height: math.unit(9800, "miles")
  11570. },
  11571. ]
  11572. ))
  11573. characterMakers.push(() => makeCharacter(
  11574. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11575. {
  11576. front: {
  11577. height: math.unit(1.7, "meters"),
  11578. weight: math.unit(140, "lb"),
  11579. name: "Front",
  11580. image: {
  11581. source: "./media/characters/moody/front.svg",
  11582. extra: 3226 / 3007,
  11583. bottom: 0.087
  11584. }
  11585. },
  11586. },
  11587. [
  11588. {
  11589. name: "Micro",
  11590. height: math.unit(1, "mm")
  11591. },
  11592. {
  11593. name: "Normal",
  11594. height: math.unit(1.7, "meters"),
  11595. default: true
  11596. },
  11597. {
  11598. name: "Macro",
  11599. height: math.unit(80, "meters")
  11600. },
  11601. {
  11602. name: "Macro+",
  11603. height: math.unit(500, "meters")
  11604. },
  11605. ]
  11606. ))
  11607. characterMakers.push(() => makeCharacter(
  11608. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11609. {
  11610. front: {
  11611. height: math.unit(6, "feet"),
  11612. weight: math.unit(150, "lb"),
  11613. name: "Front",
  11614. image: {
  11615. source: "./media/characters/zyas/front.svg",
  11616. extra: 1180 / 1120,
  11617. bottom: 0.045
  11618. }
  11619. },
  11620. },
  11621. [
  11622. {
  11623. name: "Normal",
  11624. height: math.unit(10, "feet"),
  11625. default: true
  11626. },
  11627. {
  11628. name: "Macro",
  11629. height: math.unit(500, "feet")
  11630. },
  11631. {
  11632. name: "Megamacro",
  11633. height: math.unit(5, "miles")
  11634. },
  11635. {
  11636. name: "Teramacro",
  11637. height: math.unit(150000, "miles")
  11638. },
  11639. ]
  11640. ))
  11641. characterMakers.push(() => makeCharacter(
  11642. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11643. {
  11644. front: {
  11645. height: math.unit(6, "feet"),
  11646. weight: math.unit(150, "lb"),
  11647. name: "Front",
  11648. image: {
  11649. source: "./media/characters/cuon/front.svg",
  11650. extra: 1390 / 1320,
  11651. bottom: 0.008
  11652. }
  11653. },
  11654. },
  11655. [
  11656. {
  11657. name: "Micro",
  11658. height: math.unit(3, "inches")
  11659. },
  11660. {
  11661. name: "Normal",
  11662. height: math.unit(18 + 9 / 12, "feet"),
  11663. default: true
  11664. },
  11665. {
  11666. name: "Macro",
  11667. height: math.unit(360, "feet")
  11668. },
  11669. {
  11670. name: "Megamacro",
  11671. height: math.unit(360, "miles")
  11672. },
  11673. ]
  11674. ))
  11675. characterMakers.push(() => makeCharacter(
  11676. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11677. {
  11678. front: {
  11679. height: math.unit(2.4, "meters"),
  11680. weight: math.unit(70, "kg"),
  11681. name: "Front",
  11682. image: {
  11683. source: "./media/characters/nyanuxk/front.svg",
  11684. extra: 1172 / 1084,
  11685. bottom: 0.065
  11686. }
  11687. },
  11688. side: {
  11689. height: math.unit(2.4, "meters"),
  11690. weight: math.unit(70, "kg"),
  11691. name: "Side",
  11692. image: {
  11693. source: "./media/characters/nyanuxk/side.svg",
  11694. extra: 1190 / 1132,
  11695. bottom: 0.007
  11696. }
  11697. },
  11698. back: {
  11699. height: math.unit(2.4, "meters"),
  11700. weight: math.unit(70, "kg"),
  11701. name: "Back",
  11702. image: {
  11703. source: "./media/characters/nyanuxk/back.svg",
  11704. extra: 1200 / 1141,
  11705. bottom: 0.015
  11706. }
  11707. },
  11708. foot: {
  11709. height: math.unit(0.52, "meters"),
  11710. name: "Foot",
  11711. image: {
  11712. source: "./media/characters/nyanuxk/foot.svg"
  11713. }
  11714. },
  11715. },
  11716. [
  11717. {
  11718. name: "Micro",
  11719. height: math.unit(2, "cm")
  11720. },
  11721. {
  11722. name: "Normal",
  11723. height: math.unit(2.4, "meters"),
  11724. default: true
  11725. },
  11726. {
  11727. name: "Smaller Macro",
  11728. height: math.unit(120, "meters")
  11729. },
  11730. {
  11731. name: "Bigger Macro",
  11732. height: math.unit(1.2, "km")
  11733. },
  11734. {
  11735. name: "Megamacro",
  11736. height: math.unit(15, "kilometers")
  11737. },
  11738. {
  11739. name: "Gigamacro",
  11740. height: math.unit(2000, "km")
  11741. },
  11742. {
  11743. name: "Teramacro",
  11744. height: math.unit(500000, "km")
  11745. },
  11746. ]
  11747. ))
  11748. characterMakers.push(() => makeCharacter(
  11749. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11750. {
  11751. side: {
  11752. height: math.unit(6, "feet"),
  11753. name: "Side",
  11754. image: {
  11755. source: "./media/characters/ailbhe/side.svg",
  11756. extra: 757 / 464,
  11757. bottom: 0.041
  11758. }
  11759. },
  11760. },
  11761. [
  11762. {
  11763. name: "Normal",
  11764. height: math.unit(1.07, "meters"),
  11765. default: true
  11766. },
  11767. ]
  11768. ))
  11769. characterMakers.push(() => makeCharacter(
  11770. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11771. {
  11772. front: {
  11773. height: math.unit(6, "feet"),
  11774. weight: math.unit(120, "kg"),
  11775. name: "Front",
  11776. image: {
  11777. source: "./media/characters/zevulfius/front.svg",
  11778. extra: 965 / 903
  11779. }
  11780. },
  11781. side: {
  11782. height: math.unit(6, "feet"),
  11783. weight: math.unit(120, "kg"),
  11784. name: "Side",
  11785. image: {
  11786. source: "./media/characters/zevulfius/side.svg",
  11787. extra: 939 / 900
  11788. }
  11789. },
  11790. back: {
  11791. height: math.unit(6, "feet"),
  11792. weight: math.unit(120, "kg"),
  11793. name: "Back",
  11794. image: {
  11795. source: "./media/characters/zevulfius/back.svg",
  11796. extra: 918 / 854,
  11797. bottom: 0.005
  11798. }
  11799. },
  11800. foot: {
  11801. height: math.unit(6 / 3.72, "feet"),
  11802. name: "Foot",
  11803. image: {
  11804. source: "./media/characters/zevulfius/foot.svg"
  11805. }
  11806. },
  11807. },
  11808. [
  11809. {
  11810. name: "Macro",
  11811. height: math.unit(750, "meters")
  11812. },
  11813. {
  11814. name: "Megamacro",
  11815. height: math.unit(20, "km"),
  11816. default: true
  11817. },
  11818. {
  11819. name: "Gigamacro",
  11820. height: math.unit(2000, "km")
  11821. },
  11822. {
  11823. name: "Teramacro",
  11824. height: math.unit(250000, "km")
  11825. },
  11826. ]
  11827. ))
  11828. characterMakers.push(() => makeCharacter(
  11829. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11830. {
  11831. front: {
  11832. height: math.unit(100, "feet"),
  11833. weight: math.unit(350, "kg"),
  11834. name: "Front",
  11835. image: {
  11836. source: "./media/characters/rikes/front.svg",
  11837. extra: 1565 / 1483,
  11838. bottom: 0.017
  11839. }
  11840. },
  11841. },
  11842. [
  11843. {
  11844. name: "Macro",
  11845. height: math.unit(100, "feet"),
  11846. default: true
  11847. },
  11848. ]
  11849. ))
  11850. characterMakers.push(() => makeCharacter(
  11851. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11852. {
  11853. front: {
  11854. height: math.unit(8, "feet"),
  11855. weight: math.unit(356, "lb"),
  11856. name: "Front",
  11857. image: {
  11858. source: "./media/characters/adam-silver-mane/front.svg",
  11859. extra: 1036/937,
  11860. bottom: 63/1099
  11861. }
  11862. },
  11863. side: {
  11864. height: math.unit(8, "feet"),
  11865. weight: math.unit(356, "lb"),
  11866. name: "Side",
  11867. image: {
  11868. source: "./media/characters/adam-silver-mane/side.svg",
  11869. extra: 997/901,
  11870. bottom: 59/1056
  11871. }
  11872. },
  11873. frontNsfw: {
  11874. height: math.unit(8, "feet"),
  11875. weight: math.unit(356, "lb"),
  11876. name: "Front (NSFW)",
  11877. image: {
  11878. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11879. extra: 1036/937,
  11880. bottom: 63/1099
  11881. }
  11882. },
  11883. sideNsfw: {
  11884. height: math.unit(8, "feet"),
  11885. weight: math.unit(356, "lb"),
  11886. name: "Side (NSFW)",
  11887. image: {
  11888. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11889. extra: 997/901,
  11890. bottom: 59/1056
  11891. }
  11892. },
  11893. dick: {
  11894. height: math.unit(2.1, "feet"),
  11895. name: "Dick",
  11896. image: {
  11897. source: "./media/characters/adam-silver-mane/dick.svg"
  11898. }
  11899. },
  11900. taur: {
  11901. height: math.unit(16, "feet"),
  11902. weight: math.unit(1500, "kg"),
  11903. name: "Taur",
  11904. image: {
  11905. source: "./media/characters/adam-silver-mane/taur.svg",
  11906. extra: 1713 / 1571,
  11907. bottom: 0.01
  11908. }
  11909. },
  11910. },
  11911. [
  11912. {
  11913. name: "Normal",
  11914. height: math.unit(8, "feet")
  11915. },
  11916. {
  11917. name: "Minimacro",
  11918. height: math.unit(80, "feet")
  11919. },
  11920. {
  11921. name: "MDA",
  11922. height: math.unit(80, "meters")
  11923. },
  11924. {
  11925. name: "Macro",
  11926. height: math.unit(800, "feet"),
  11927. default: true
  11928. },
  11929. {
  11930. name: "Megamacro",
  11931. height: math.unit(8000, "feet")
  11932. },
  11933. {
  11934. name: "Gigamacro",
  11935. height: math.unit(800, "miles")
  11936. },
  11937. {
  11938. name: "Teramacro",
  11939. height: math.unit(80000, "miles")
  11940. },
  11941. {
  11942. name: "Celestial",
  11943. height: math.unit(8e6, "miles")
  11944. },
  11945. {
  11946. name: "Star Dragon",
  11947. height: math.unit(800000, "parsecs")
  11948. },
  11949. {
  11950. name: "Godly",
  11951. height: math.unit(800, "teraparsecs")
  11952. },
  11953. ]
  11954. ))
  11955. characterMakers.push(() => makeCharacter(
  11956. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11957. {
  11958. front: {
  11959. height: math.unit(6, "feet"),
  11960. weight: math.unit(150, "lb"),
  11961. name: "Front",
  11962. image: {
  11963. source: "./media/characters/ky'owin/front.svg",
  11964. extra: 3862/3053,
  11965. bottom: 74/3936
  11966. }
  11967. },
  11968. },
  11969. [
  11970. {
  11971. name: "Normal",
  11972. height: math.unit(6 + 8 / 12, "feet")
  11973. },
  11974. {
  11975. name: "Large",
  11976. height: math.unit(68, "feet")
  11977. },
  11978. {
  11979. name: "Macro",
  11980. height: math.unit(132, "feet")
  11981. },
  11982. {
  11983. name: "Macro+",
  11984. height: math.unit(340, "feet")
  11985. },
  11986. {
  11987. name: "Macro++",
  11988. height: math.unit(680, "feet"),
  11989. default: true
  11990. },
  11991. {
  11992. name: "Megamacro",
  11993. height: math.unit(1, "mile")
  11994. },
  11995. {
  11996. name: "Megamacro+",
  11997. height: math.unit(10, "miles")
  11998. },
  11999. ]
  12000. ))
  12001. characterMakers.push(() => makeCharacter(
  12002. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12003. {
  12004. front: {
  12005. height: math.unit(4, "feet"),
  12006. weight: math.unit(50, "lb"),
  12007. name: "Front",
  12008. image: {
  12009. source: "./media/characters/mal/front.svg",
  12010. extra: 785 / 724,
  12011. bottom: 0.07
  12012. }
  12013. },
  12014. },
  12015. [
  12016. {
  12017. name: "Micro",
  12018. height: math.unit(4, "inches")
  12019. },
  12020. {
  12021. name: "Normal",
  12022. height: math.unit(4, "feet"),
  12023. default: true
  12024. },
  12025. {
  12026. name: "Macro",
  12027. height: math.unit(200, "feet")
  12028. },
  12029. ]
  12030. ))
  12031. characterMakers.push(() => makeCharacter(
  12032. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12033. {
  12034. front: {
  12035. height: math.unit(6, "feet"),
  12036. weight: math.unit(150, "lb"),
  12037. name: "Front",
  12038. image: {
  12039. source: "./media/characters/jordan-deware/front.svg",
  12040. extra: 1191 / 1012
  12041. }
  12042. },
  12043. },
  12044. [
  12045. {
  12046. name: "Nano",
  12047. height: math.unit(0.01, "mm")
  12048. },
  12049. {
  12050. name: "Minimicro",
  12051. height: math.unit(1, "mm")
  12052. },
  12053. {
  12054. name: "Micro",
  12055. height: math.unit(0.5, "inches")
  12056. },
  12057. {
  12058. name: "Normal",
  12059. height: math.unit(4, "feet"),
  12060. default: true
  12061. },
  12062. {
  12063. name: "Minimacro",
  12064. height: math.unit(40, "meters")
  12065. },
  12066. {
  12067. name: "Small Macro",
  12068. height: math.unit(400, "meters")
  12069. },
  12070. {
  12071. name: "Macro",
  12072. height: math.unit(4, "miles")
  12073. },
  12074. {
  12075. name: "Megamacro",
  12076. height: math.unit(40, "miles")
  12077. },
  12078. {
  12079. name: "Megamacro+",
  12080. height: math.unit(400, "miles")
  12081. },
  12082. {
  12083. name: "Gigamacro",
  12084. height: math.unit(400000, "miles")
  12085. },
  12086. ]
  12087. ))
  12088. characterMakers.push(() => makeCharacter(
  12089. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12090. {
  12091. side: {
  12092. height: math.unit(6, "feet"),
  12093. weight: math.unit(150, "lb"),
  12094. name: "Side",
  12095. image: {
  12096. source: "./media/characters/kimiko/side.svg",
  12097. extra: 600 / 358
  12098. }
  12099. },
  12100. },
  12101. [
  12102. {
  12103. name: "Normal",
  12104. height: math.unit(15, "feet"),
  12105. default: true
  12106. },
  12107. {
  12108. name: "Macro",
  12109. height: math.unit(220, "feet")
  12110. },
  12111. {
  12112. name: "Macro+",
  12113. height: math.unit(1450, "feet")
  12114. },
  12115. {
  12116. name: "Megamacro",
  12117. height: math.unit(11500, "feet")
  12118. },
  12119. {
  12120. name: "Gigamacro",
  12121. height: math.unit(9500, "miles")
  12122. },
  12123. {
  12124. name: "Teramacro",
  12125. height: math.unit(2208005005, "miles")
  12126. },
  12127. {
  12128. name: "Examacro",
  12129. height: math.unit(2750, "parsecs")
  12130. },
  12131. {
  12132. name: "Zettamacro",
  12133. height: math.unit(101500, "parsecs")
  12134. },
  12135. ]
  12136. ))
  12137. characterMakers.push(() => makeCharacter(
  12138. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12139. {
  12140. front: {
  12141. height: math.unit(6, "feet"),
  12142. weight: math.unit(70, "kg"),
  12143. name: "Front",
  12144. image: {
  12145. source: "./media/characters/andrew-sleepy/front.svg"
  12146. }
  12147. },
  12148. side: {
  12149. height: math.unit(6, "feet"),
  12150. weight: math.unit(70, "kg"),
  12151. name: "Side",
  12152. image: {
  12153. source: "./media/characters/andrew-sleepy/side.svg"
  12154. }
  12155. },
  12156. },
  12157. [
  12158. {
  12159. name: "Micro",
  12160. height: math.unit(1, "mm"),
  12161. default: true
  12162. },
  12163. ]
  12164. ))
  12165. characterMakers.push(() => makeCharacter(
  12166. { name: "Judio", species: ["rabbit"], 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/judio/front.svg",
  12174. extra: 1258 / 1110
  12175. }
  12176. },
  12177. },
  12178. [
  12179. {
  12180. name: "Normal",
  12181. height: math.unit(5 + 6 / 12, "feet")
  12182. },
  12183. {
  12184. name: "Macro",
  12185. height: math.unit(1000, "feet"),
  12186. default: true
  12187. },
  12188. {
  12189. name: "Megamacro",
  12190. height: math.unit(10, "miles")
  12191. },
  12192. ]
  12193. ))
  12194. characterMakers.push(() => makeCharacter(
  12195. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12196. {
  12197. frontDressed: {
  12198. height: math.unit(6, "feet"),
  12199. weight: math.unit(68, "kg"),
  12200. name: "Front (Dressed)",
  12201. image: {
  12202. source: "./media/characters/nomaxice/front-dressed.svg",
  12203. extra: 1137/824,
  12204. bottom: 74/1211
  12205. }
  12206. },
  12207. frontShorts: {
  12208. height: math.unit(6, "feet"),
  12209. weight: math.unit(68, "kg"),
  12210. name: "Front (Shorts)",
  12211. image: {
  12212. source: "./media/characters/nomaxice/front-shorts.svg",
  12213. extra: 1137/824,
  12214. bottom: 74/1211
  12215. }
  12216. },
  12217. back: {
  12218. height: math.unit(6, "feet"),
  12219. weight: math.unit(68, "kg"),
  12220. name: "Back",
  12221. image: {
  12222. source: "./media/characters/nomaxice/back.svg",
  12223. extra: 822/786,
  12224. bottom: 39/861
  12225. }
  12226. },
  12227. hand: {
  12228. height: math.unit(0.565, "feet"),
  12229. name: "Hand",
  12230. image: {
  12231. source: "./media/characters/nomaxice/hand.svg"
  12232. }
  12233. },
  12234. foot: {
  12235. height: math.unit(1, "feet"),
  12236. name: "Foot",
  12237. image: {
  12238. source: "./media/characters/nomaxice/foot.svg"
  12239. }
  12240. },
  12241. },
  12242. [
  12243. {
  12244. name: "Micro",
  12245. height: math.unit(8, "cm")
  12246. },
  12247. {
  12248. name: "Norm",
  12249. height: math.unit(1.82, "m")
  12250. },
  12251. {
  12252. name: "Norm+",
  12253. height: math.unit(8.8, "feet"),
  12254. default: true
  12255. },
  12256. {
  12257. name: "Big",
  12258. height: math.unit(8, "meters")
  12259. },
  12260. {
  12261. name: "Macro",
  12262. height: math.unit(18, "meters")
  12263. },
  12264. {
  12265. name: "Macro+",
  12266. height: math.unit(88, "meters")
  12267. },
  12268. ]
  12269. ))
  12270. characterMakers.push(() => makeCharacter(
  12271. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12272. {
  12273. front: {
  12274. height: math.unit(12, "feet"),
  12275. weight: math.unit(1.5, "tons"),
  12276. name: "Front",
  12277. image: {
  12278. source: "./media/characters/dydros/front.svg",
  12279. extra: 863 / 800,
  12280. bottom: 0.015
  12281. }
  12282. },
  12283. back: {
  12284. height: math.unit(12, "feet"),
  12285. weight: math.unit(1.5, "tons"),
  12286. name: "Back",
  12287. image: {
  12288. source: "./media/characters/dydros/back.svg",
  12289. extra: 900 / 843,
  12290. bottom: 0.005
  12291. }
  12292. },
  12293. },
  12294. [
  12295. {
  12296. name: "Normal",
  12297. height: math.unit(12, "feet"),
  12298. default: true
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12304. {
  12305. front: {
  12306. height: math.unit(6, "feet"),
  12307. weight: math.unit(100, "kg"),
  12308. name: "Front",
  12309. image: {
  12310. source: "./media/characters/riggi/front.svg",
  12311. extra: 5787 / 5303
  12312. }
  12313. },
  12314. hyper: {
  12315. height: math.unit(6 * 5 / 3, "feet"),
  12316. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12317. name: "Hyper",
  12318. image: {
  12319. source: "./media/characters/riggi/hyper.svg",
  12320. extra: 3595 / 3485
  12321. }
  12322. },
  12323. },
  12324. [
  12325. {
  12326. name: "Small Macro",
  12327. height: math.unit(50, "feet")
  12328. },
  12329. {
  12330. name: "Default",
  12331. height: math.unit(200, "feet"),
  12332. default: true
  12333. },
  12334. {
  12335. name: "Loom",
  12336. height: math.unit(10000, "feet")
  12337. },
  12338. {
  12339. name: "Cruising Altitude",
  12340. height: math.unit(30000, "feet")
  12341. },
  12342. {
  12343. name: "Megamacro",
  12344. height: math.unit(100, "miles")
  12345. },
  12346. {
  12347. name: "Continent Sized",
  12348. height: math.unit(2800, "miles")
  12349. },
  12350. {
  12351. name: "Earth Sized",
  12352. height: math.unit(8000, "miles")
  12353. },
  12354. ]
  12355. ))
  12356. characterMakers.push(() => makeCharacter(
  12357. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12358. {
  12359. front: {
  12360. height: math.unit(6, "feet"),
  12361. weight: math.unit(250, "lb"),
  12362. name: "Front",
  12363. image: {
  12364. source: "./media/characters/alexi/front.svg",
  12365. extra: 3483 / 3291,
  12366. bottom: 0.04
  12367. }
  12368. },
  12369. back: {
  12370. height: math.unit(6, "feet"),
  12371. weight: math.unit(250, "lb"),
  12372. name: "Back",
  12373. image: {
  12374. source: "./media/characters/alexi/back.svg",
  12375. extra: 3533 / 3356,
  12376. bottom: 0.021
  12377. }
  12378. },
  12379. frontTransforming: {
  12380. height: math.unit(8.58, "feet"),
  12381. weight: math.unit(1300, "lb"),
  12382. name: "Transforming",
  12383. image: {
  12384. source: "./media/characters/alexi/front-transforming.svg",
  12385. extra: 437 / 409,
  12386. bottom: 19 / 458.66
  12387. }
  12388. },
  12389. frontTransformed: {
  12390. height: math.unit(12.5, "feet"),
  12391. weight: math.unit(4000, "lb"),
  12392. name: "Transformed",
  12393. image: {
  12394. source: "./media/characters/alexi/front-transformed.svg",
  12395. extra: 639 / 614,
  12396. bottom: 30.55 / 671
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Normal",
  12403. height: math.unit(14, "feet"),
  12404. default: true
  12405. },
  12406. {
  12407. name: "Minimacro",
  12408. height: math.unit(30, "meters")
  12409. },
  12410. {
  12411. name: "Macro",
  12412. height: math.unit(500, "meters")
  12413. },
  12414. {
  12415. name: "Megamacro",
  12416. height: math.unit(9000, "km")
  12417. },
  12418. {
  12419. name: "Teramacro",
  12420. height: math.unit(384000, "km")
  12421. },
  12422. ]
  12423. ))
  12424. characterMakers.push(() => makeCharacter(
  12425. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12426. {
  12427. front: {
  12428. height: math.unit(6, "feet"),
  12429. weight: math.unit(150, "lb"),
  12430. name: "Front",
  12431. image: {
  12432. source: "./media/characters/kayroo/front.svg",
  12433. extra: 1153 / 1038,
  12434. bottom: 0.06
  12435. }
  12436. },
  12437. foot: {
  12438. height: math.unit(6, "feet"),
  12439. weight: math.unit(150, "lb"),
  12440. name: "Foot",
  12441. image: {
  12442. source: "./media/characters/kayroo/foot.svg"
  12443. }
  12444. },
  12445. },
  12446. [
  12447. {
  12448. name: "Normal",
  12449. height: math.unit(8, "feet"),
  12450. default: true
  12451. },
  12452. {
  12453. name: "Minimacro",
  12454. height: math.unit(250, "feet")
  12455. },
  12456. {
  12457. name: "Macro",
  12458. height: math.unit(2800, "feet")
  12459. },
  12460. {
  12461. name: "Megamacro",
  12462. height: math.unit(5200, "feet")
  12463. },
  12464. {
  12465. name: "Gigamacro",
  12466. height: math.unit(27000, "feet")
  12467. },
  12468. {
  12469. name: "Omega",
  12470. height: math.unit(45000, "feet")
  12471. },
  12472. ]
  12473. ))
  12474. characterMakers.push(() => makeCharacter(
  12475. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12476. {
  12477. front: {
  12478. height: math.unit(18, "feet"),
  12479. weight: math.unit(5800, "lb"),
  12480. name: "Front",
  12481. image: {
  12482. source: "./media/characters/rhys/front.svg",
  12483. extra: 3386 / 3090,
  12484. bottom: 0.07
  12485. }
  12486. },
  12487. },
  12488. [
  12489. {
  12490. name: "Normal",
  12491. height: math.unit(18, "feet"),
  12492. default: true
  12493. },
  12494. {
  12495. name: "Working Size",
  12496. height: math.unit(200, "feet")
  12497. },
  12498. {
  12499. name: "Demolition Size",
  12500. height: math.unit(2000, "feet")
  12501. },
  12502. {
  12503. name: "Maximum Licensed Size",
  12504. height: math.unit(5, "miles")
  12505. },
  12506. {
  12507. name: "Maximum Observed Size",
  12508. height: math.unit(10, "yottameters")
  12509. },
  12510. ]
  12511. ))
  12512. characterMakers.push(() => makeCharacter(
  12513. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12514. {
  12515. front: {
  12516. height: math.unit(6, "feet"),
  12517. weight: math.unit(250, "lb"),
  12518. name: "Front",
  12519. image: {
  12520. source: "./media/characters/toto/front.svg",
  12521. extra: 527 / 479,
  12522. bottom: 0.05
  12523. }
  12524. },
  12525. },
  12526. [
  12527. {
  12528. name: "Micro",
  12529. height: math.unit(3, "feet")
  12530. },
  12531. {
  12532. name: "Normal",
  12533. height: math.unit(10, "feet")
  12534. },
  12535. {
  12536. name: "Macro",
  12537. height: math.unit(150, "feet"),
  12538. default: true
  12539. },
  12540. {
  12541. name: "Megamacro",
  12542. height: math.unit(1200, "feet")
  12543. },
  12544. ]
  12545. ))
  12546. characterMakers.push(() => makeCharacter(
  12547. { name: "King", species: ["lion"], tags: ["anthro"] },
  12548. {
  12549. back: {
  12550. height: math.unit(6, "feet"),
  12551. weight: math.unit(150, "lb"),
  12552. name: "Back",
  12553. image: {
  12554. source: "./media/characters/king/back.svg"
  12555. }
  12556. },
  12557. },
  12558. [
  12559. {
  12560. name: "Micro",
  12561. height: math.unit(2, "inches")
  12562. },
  12563. {
  12564. name: "Normal",
  12565. height: math.unit(8, "feet")
  12566. },
  12567. {
  12568. name: "Macro",
  12569. height: math.unit(200, "feet"),
  12570. default: true
  12571. },
  12572. {
  12573. name: "Megamacro",
  12574. height: math.unit(50, "miles")
  12575. },
  12576. ]
  12577. ))
  12578. characterMakers.push(() => makeCharacter(
  12579. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12580. {
  12581. front: {
  12582. height: math.unit(11, "feet"),
  12583. weight: math.unit(1400, "lb"),
  12584. name: "Front",
  12585. image: {
  12586. source: "./media/characters/cordite/front.svg",
  12587. extra: 1919/1827,
  12588. bottom: 40/1959
  12589. }
  12590. },
  12591. side: {
  12592. height: math.unit(11, "feet"),
  12593. weight: math.unit(1400, "lb"),
  12594. name: "Side",
  12595. image: {
  12596. source: "./media/characters/cordite/side.svg",
  12597. extra: 1908/1793,
  12598. bottom: 38/1946
  12599. }
  12600. },
  12601. back: {
  12602. height: math.unit(11, "feet"),
  12603. weight: math.unit(1400, "lb"),
  12604. name: "Back",
  12605. image: {
  12606. source: "./media/characters/cordite/back.svg",
  12607. extra: 1938/1837,
  12608. bottom: 10/1948
  12609. }
  12610. },
  12611. feral: {
  12612. height: math.unit(2, "feet"),
  12613. weight: math.unit(90, "lb"),
  12614. name: "Feral",
  12615. image: {
  12616. source: "./media/characters/cordite/feral.svg",
  12617. extra: 1260 / 755,
  12618. bottom: 0.05
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Normal",
  12625. height: math.unit(11, "feet"),
  12626. default: true
  12627. },
  12628. ]
  12629. ))
  12630. characterMakers.push(() => makeCharacter(
  12631. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12632. {
  12633. front: {
  12634. height: math.unit(6, "feet"),
  12635. weight: math.unit(150, "lb"),
  12636. name: "Front",
  12637. image: {
  12638. source: "./media/characters/pianostrong/front.svg",
  12639. extra: 6577 / 6254,
  12640. bottom: 0.02
  12641. }
  12642. },
  12643. side: {
  12644. height: math.unit(6, "feet"),
  12645. weight: math.unit(150, "lb"),
  12646. name: "Side",
  12647. image: {
  12648. source: "./media/characters/pianostrong/side.svg",
  12649. extra: 6106 / 5730
  12650. }
  12651. },
  12652. back: {
  12653. height: math.unit(6, "feet"),
  12654. weight: math.unit(150, "lb"),
  12655. name: "Back",
  12656. image: {
  12657. source: "./media/characters/pianostrong/back.svg",
  12658. extra: 6085 / 5733,
  12659. bottom: 0.01
  12660. }
  12661. },
  12662. },
  12663. [
  12664. {
  12665. name: "Macro",
  12666. height: math.unit(100, "feet")
  12667. },
  12668. {
  12669. name: "Macro+",
  12670. height: math.unit(300, "feet"),
  12671. default: true
  12672. },
  12673. {
  12674. name: "Macro++",
  12675. height: math.unit(1000, "feet")
  12676. },
  12677. ]
  12678. ))
  12679. characterMakers.push(() => makeCharacter(
  12680. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12681. {
  12682. front: {
  12683. height: math.unit(6, "feet"),
  12684. weight: math.unit(150, "lb"),
  12685. name: "Front",
  12686. image: {
  12687. source: "./media/characters/kona/front.svg",
  12688. extra: 2960 / 2629,
  12689. bottom: 0.005
  12690. }
  12691. },
  12692. },
  12693. [
  12694. {
  12695. name: "Normal",
  12696. height: math.unit(11 + 8 / 12, "feet")
  12697. },
  12698. {
  12699. name: "Macro",
  12700. height: math.unit(850, "feet"),
  12701. default: true
  12702. },
  12703. {
  12704. name: "Macro+",
  12705. height: math.unit(1.5, "km"),
  12706. default: true
  12707. },
  12708. {
  12709. name: "Megamacro",
  12710. height: math.unit(80, "miles")
  12711. },
  12712. {
  12713. name: "Gigamacro",
  12714. height: math.unit(3500, "miles")
  12715. },
  12716. ]
  12717. ))
  12718. characterMakers.push(() => makeCharacter(
  12719. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12720. {
  12721. side: {
  12722. height: math.unit(1.9, "meters"),
  12723. weight: math.unit(326, "kg"),
  12724. name: "Side",
  12725. image: {
  12726. source: "./media/characters/levi/side.svg",
  12727. extra: 1704 / 1334,
  12728. bottom: 0.02
  12729. }
  12730. },
  12731. },
  12732. [
  12733. {
  12734. name: "Normal",
  12735. height: math.unit(1.9, "meters"),
  12736. default: true
  12737. },
  12738. {
  12739. name: "Macro",
  12740. height: math.unit(20, "meters")
  12741. },
  12742. {
  12743. name: "Macro+",
  12744. height: math.unit(200, "meters")
  12745. },
  12746. {
  12747. name: "Megamacro",
  12748. height: math.unit(2, "km")
  12749. },
  12750. {
  12751. name: "Megamacro+",
  12752. height: math.unit(20, "km")
  12753. },
  12754. {
  12755. name: "Gigamacro",
  12756. height: math.unit(2500, "km")
  12757. },
  12758. {
  12759. name: "Gigamacro+",
  12760. height: math.unit(120000, "km")
  12761. },
  12762. {
  12763. name: "Teramacro",
  12764. height: math.unit(7.77e6, "km")
  12765. },
  12766. ]
  12767. ))
  12768. characterMakers.push(() => makeCharacter(
  12769. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12770. {
  12771. front: {
  12772. height: math.unit(6 + 4/12, "feet"),
  12773. weight: math.unit(190, "lb"),
  12774. name: "Front",
  12775. image: {
  12776. source: "./media/characters/bmc/front.svg",
  12777. extra: 1626/1472,
  12778. bottom: 79/1705
  12779. }
  12780. },
  12781. back: {
  12782. height: math.unit(6 + 4/12, "feet"),
  12783. weight: math.unit(190, "lb"),
  12784. name: "Back",
  12785. image: {
  12786. source: "./media/characters/bmc/back.svg",
  12787. extra: 1640/1479,
  12788. bottom: 45/1685
  12789. }
  12790. },
  12791. frontArmor: {
  12792. height: math.unit(6 + 4/12, "feet"),
  12793. weight: math.unit(190, "lb"),
  12794. name: "Front-armor",
  12795. image: {
  12796. source: "./media/characters/bmc/front-armor.svg",
  12797. extra: 1538/1468,
  12798. bottom: 79/1617
  12799. }
  12800. },
  12801. },
  12802. [
  12803. {
  12804. name: "Human-sized",
  12805. height: math.unit(6 + 4 / 12, "feet")
  12806. },
  12807. {
  12808. name: "Interactive Size",
  12809. height: math.unit(25, "feet")
  12810. },
  12811. {
  12812. name: "Small",
  12813. height: math.unit(250, "feet")
  12814. },
  12815. {
  12816. name: "Normal",
  12817. height: math.unit(1250, "feet"),
  12818. default: true
  12819. },
  12820. {
  12821. name: "Good Day",
  12822. height: math.unit(88, "miles")
  12823. },
  12824. {
  12825. name: "Largest Measured Size",
  12826. height: math.unit(105.960, "galaxies")
  12827. },
  12828. ]
  12829. ))
  12830. characterMakers.push(() => makeCharacter(
  12831. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12832. {
  12833. front: {
  12834. height: math.unit(20, "feet"),
  12835. weight: math.unit(2016, "kg"),
  12836. name: "Front",
  12837. image: {
  12838. source: "./media/characters/sven-the-kaiju/front.svg",
  12839. extra: 1277/1250,
  12840. bottom: 35/1312
  12841. }
  12842. },
  12843. mouth: {
  12844. height: math.unit(1.85, "feet"),
  12845. name: "Mouth",
  12846. image: {
  12847. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12848. }
  12849. },
  12850. },
  12851. [
  12852. {
  12853. name: "Fairy",
  12854. height: math.unit(6, "inches")
  12855. },
  12856. {
  12857. name: "Normal",
  12858. height: math.unit(20, "feet"),
  12859. default: true
  12860. },
  12861. {
  12862. name: "Rampage",
  12863. height: math.unit(200, "feet")
  12864. },
  12865. {
  12866. name: "Archfey Forest Guardian",
  12867. height: math.unit(1, "mile")
  12868. },
  12869. ]
  12870. ))
  12871. characterMakers.push(() => makeCharacter(
  12872. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12873. {
  12874. front: {
  12875. height: math.unit(4, "meters"),
  12876. weight: math.unit(2, "tons"),
  12877. name: "Front",
  12878. image: {
  12879. source: "./media/characters/marik/front.svg",
  12880. extra: 1057 / 1003,
  12881. bottom: 0.08
  12882. }
  12883. },
  12884. },
  12885. [
  12886. {
  12887. name: "Normal",
  12888. height: math.unit(4, "meters"),
  12889. default: true
  12890. },
  12891. {
  12892. name: "Macro",
  12893. height: math.unit(20, "meters")
  12894. },
  12895. {
  12896. name: "Megamacro",
  12897. height: math.unit(50, "km")
  12898. },
  12899. {
  12900. name: "Gigamacro",
  12901. height: math.unit(100, "km")
  12902. },
  12903. {
  12904. name: "Alpha Macro",
  12905. height: math.unit(7.88e7, "yottameters")
  12906. },
  12907. ]
  12908. ))
  12909. characterMakers.push(() => makeCharacter(
  12910. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12911. {
  12912. front: {
  12913. height: math.unit(6, "feet"),
  12914. weight: math.unit(110, "lb"),
  12915. name: "Front",
  12916. image: {
  12917. source: "./media/characters/mel/front.svg",
  12918. extra: 736 / 617,
  12919. bottom: 0.017
  12920. }
  12921. },
  12922. },
  12923. [
  12924. {
  12925. name: "Pico",
  12926. height: math.unit(3, "pm")
  12927. },
  12928. {
  12929. name: "Nano",
  12930. height: math.unit(3, "nm")
  12931. },
  12932. {
  12933. name: "Micro",
  12934. height: math.unit(0.3, "mm"),
  12935. default: true
  12936. },
  12937. {
  12938. name: "Micro+",
  12939. height: math.unit(3, "mm")
  12940. },
  12941. {
  12942. name: "Normal",
  12943. height: math.unit(5 + 10.5 / 12, "feet")
  12944. },
  12945. ]
  12946. ))
  12947. characterMakers.push(() => makeCharacter(
  12948. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12949. {
  12950. kaiju: {
  12951. height: math.unit(1.75, "meters"),
  12952. weight: math.unit(55, "kg"),
  12953. name: "Kaiju",
  12954. image: {
  12955. source: "./media/characters/lykonous/kaiju.svg",
  12956. extra: 1055 / 946,
  12957. bottom: 0.135
  12958. }
  12959. },
  12960. },
  12961. [
  12962. {
  12963. name: "Normal",
  12964. height: math.unit(2.5, "meters"),
  12965. default: true
  12966. },
  12967. {
  12968. name: "Kaiju Dragon",
  12969. height: math.unit(60, "meters")
  12970. },
  12971. {
  12972. name: "Mega Kaiju",
  12973. height: math.unit(120, "km")
  12974. },
  12975. {
  12976. name: "Giga Kaiju",
  12977. height: math.unit(200, "megameters")
  12978. },
  12979. {
  12980. name: "Terra Kaiju",
  12981. height: math.unit(400, "gigameters")
  12982. },
  12983. {
  12984. name: "Kaiju Dragon God",
  12985. height: math.unit(13000, "exaparsecs")
  12986. },
  12987. ]
  12988. ))
  12989. characterMakers.push(() => makeCharacter(
  12990. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12991. {
  12992. front: {
  12993. height: math.unit(6, "feet"),
  12994. weight: math.unit(150, "lb"),
  12995. name: "Front",
  12996. image: {
  12997. source: "./media/characters/blü/front.svg",
  12998. extra: 1883 / 1564,
  12999. bottom: 0.031
  13000. }
  13001. },
  13002. },
  13003. [
  13004. {
  13005. name: "Normal",
  13006. height: math.unit(13, "feet"),
  13007. default: true
  13008. },
  13009. {
  13010. name: "Big Boi",
  13011. height: math.unit(150, "meters")
  13012. },
  13013. {
  13014. name: "Mini Stomper",
  13015. height: math.unit(300, "meters")
  13016. },
  13017. {
  13018. name: "Macro",
  13019. height: math.unit(1000, "meters")
  13020. },
  13021. {
  13022. name: "Megamacro",
  13023. height: math.unit(11000, "meters")
  13024. },
  13025. {
  13026. name: "Gigamacro",
  13027. height: math.unit(11000, "km")
  13028. },
  13029. {
  13030. name: "Teramacro",
  13031. height: math.unit(420000, "km")
  13032. },
  13033. {
  13034. name: "Examacro",
  13035. height: math.unit(120, "parsecs")
  13036. },
  13037. {
  13038. name: "God Tho",
  13039. height: math.unit(98000000000, "parsecs")
  13040. },
  13041. ]
  13042. ))
  13043. characterMakers.push(() => makeCharacter(
  13044. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13045. {
  13046. taurFront: {
  13047. height: math.unit(6, "feet"),
  13048. weight: math.unit(200, "lb"),
  13049. name: "Taur (Front)",
  13050. image: {
  13051. source: "./media/characters/scales/taur-front.svg",
  13052. extra: 1,
  13053. bottom: 0.05
  13054. }
  13055. },
  13056. taurBack: {
  13057. height: math.unit(6, "feet"),
  13058. weight: math.unit(200, "lb"),
  13059. name: "Taur (Back)",
  13060. image: {
  13061. source: "./media/characters/scales/taur-back.svg",
  13062. extra: 1,
  13063. bottom: 0.08
  13064. }
  13065. },
  13066. anthro: {
  13067. height: math.unit(6 * 7 / 12, "feet"),
  13068. weight: math.unit(100, "lb"),
  13069. name: "Anthro",
  13070. image: {
  13071. source: "./media/characters/scales/anthro.svg",
  13072. extra: 1,
  13073. bottom: 0.06
  13074. }
  13075. },
  13076. },
  13077. [
  13078. {
  13079. name: "Normal",
  13080. height: math.unit(12, "feet"),
  13081. default: true
  13082. },
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13087. {
  13088. front: {
  13089. height: math.unit(6, "feet"),
  13090. weight: math.unit(150, "lb"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/koragos/front.svg",
  13094. extra: 841 / 794,
  13095. bottom: 0.035
  13096. }
  13097. },
  13098. back: {
  13099. height: math.unit(6, "feet"),
  13100. weight: math.unit(150, "lb"),
  13101. name: "Back",
  13102. image: {
  13103. source: "./media/characters/koragos/back.svg",
  13104. extra: 841 / 810,
  13105. bottom: 0.022
  13106. }
  13107. },
  13108. },
  13109. [
  13110. {
  13111. name: "Normal",
  13112. height: math.unit(6 + 11 / 12, "feet"),
  13113. default: true
  13114. },
  13115. {
  13116. name: "Macro",
  13117. height: math.unit(490, "feet")
  13118. },
  13119. {
  13120. name: "Megamacro",
  13121. height: math.unit(10, "miles")
  13122. },
  13123. {
  13124. name: "Gigamacro",
  13125. height: math.unit(50, "miles")
  13126. },
  13127. ]
  13128. ))
  13129. characterMakers.push(() => makeCharacter(
  13130. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13131. {
  13132. front: {
  13133. height: math.unit(6, "feet"),
  13134. weight: math.unit(250, "lb"),
  13135. name: "Front",
  13136. image: {
  13137. source: "./media/characters/xylrem/front.svg",
  13138. extra: 3323 / 3050,
  13139. bottom: 0.065
  13140. }
  13141. },
  13142. },
  13143. [
  13144. {
  13145. name: "Micro",
  13146. height: math.unit(4, "feet")
  13147. },
  13148. {
  13149. name: "Normal",
  13150. height: math.unit(16, "feet"),
  13151. default: true
  13152. },
  13153. {
  13154. name: "Macro",
  13155. height: math.unit(2720, "feet")
  13156. },
  13157. {
  13158. name: "Megamacro",
  13159. height: math.unit(25000, "miles")
  13160. },
  13161. ]
  13162. ))
  13163. characterMakers.push(() => makeCharacter(
  13164. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13165. {
  13166. front: {
  13167. height: math.unit(8, "feet"),
  13168. weight: math.unit(250, "kg"),
  13169. name: "Front",
  13170. image: {
  13171. source: "./media/characters/ikideru/front.svg",
  13172. extra: 930 / 870,
  13173. bottom: 0.087
  13174. }
  13175. },
  13176. back: {
  13177. height: math.unit(8, "feet"),
  13178. weight: math.unit(250, "kg"),
  13179. name: "Back",
  13180. image: {
  13181. source: "./media/characters/ikideru/back.svg",
  13182. extra: 919 / 852,
  13183. bottom: 0.055
  13184. }
  13185. },
  13186. },
  13187. [
  13188. {
  13189. name: "Rare",
  13190. height: math.unit(8, "feet"),
  13191. default: true
  13192. },
  13193. {
  13194. name: "Playful Loom",
  13195. height: math.unit(80, "feet")
  13196. },
  13197. {
  13198. name: "City Leaner",
  13199. height: math.unit(230, "feet")
  13200. },
  13201. {
  13202. name: "Megamacro",
  13203. height: math.unit(2500, "feet")
  13204. },
  13205. {
  13206. name: "Gigamacro",
  13207. height: math.unit(26400, "feet")
  13208. },
  13209. {
  13210. name: "Tectonic Shifter",
  13211. height: math.unit(1.7, "megameters")
  13212. },
  13213. {
  13214. name: "Planet Carer",
  13215. height: math.unit(21, "megameters")
  13216. },
  13217. {
  13218. name: "God",
  13219. height: math.unit(11157.22, "parsecs")
  13220. },
  13221. ]
  13222. ))
  13223. characterMakers.push(() => makeCharacter(
  13224. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13225. {
  13226. front: {
  13227. height: math.unit(6, "feet"),
  13228. weight: math.unit(120, "lb"),
  13229. name: "Front",
  13230. image: {
  13231. source: "./media/characters/neo/front.svg"
  13232. }
  13233. },
  13234. },
  13235. [
  13236. {
  13237. name: "Micro",
  13238. height: math.unit(2, "inches"),
  13239. default: true
  13240. },
  13241. {
  13242. name: "Human Size",
  13243. height: math.unit(5 + 8 / 12, "feet")
  13244. },
  13245. ]
  13246. ))
  13247. characterMakers.push(() => makeCharacter(
  13248. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13249. {
  13250. front: {
  13251. height: math.unit(13 + 10 / 12, "feet"),
  13252. weight: math.unit(5320, "lb"),
  13253. name: "Front",
  13254. image: {
  13255. source: "./media/characters/chauncey-chantz/front.svg",
  13256. extra: 1587 / 1435,
  13257. bottom: 0.02
  13258. }
  13259. },
  13260. },
  13261. [
  13262. {
  13263. name: "Normal",
  13264. height: math.unit(13 + 10 / 12, "feet"),
  13265. default: true
  13266. },
  13267. {
  13268. name: "Macro",
  13269. height: math.unit(45, "feet")
  13270. },
  13271. {
  13272. name: "Megamacro",
  13273. height: math.unit(250, "miles")
  13274. },
  13275. {
  13276. name: "Planetary",
  13277. height: math.unit(10000, "miles")
  13278. },
  13279. {
  13280. name: "Galactic",
  13281. height: math.unit(40000, "parsecs")
  13282. },
  13283. {
  13284. name: "Universal",
  13285. height: math.unit(1, "yottameter")
  13286. },
  13287. ]
  13288. ))
  13289. characterMakers.push(() => makeCharacter(
  13290. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13291. {
  13292. front: {
  13293. height: math.unit(6, "feet"),
  13294. weight: math.unit(150, "lb"),
  13295. name: "Front",
  13296. image: {
  13297. source: "./media/characters/epifox/front.svg",
  13298. extra: 1,
  13299. bottom: 0.075
  13300. }
  13301. },
  13302. },
  13303. [
  13304. {
  13305. name: "Micro",
  13306. height: math.unit(6, "inches")
  13307. },
  13308. {
  13309. name: "Normal",
  13310. height: math.unit(12, "feet"),
  13311. default: true
  13312. },
  13313. {
  13314. name: "Macro",
  13315. height: math.unit(3810, "feet")
  13316. },
  13317. {
  13318. name: "Megamacro",
  13319. height: math.unit(500, "miles")
  13320. },
  13321. ]
  13322. ))
  13323. characterMakers.push(() => makeCharacter(
  13324. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13325. {
  13326. front: {
  13327. height: math.unit(1.8796, "m"),
  13328. weight: math.unit(230, "lb"),
  13329. name: "Front",
  13330. image: {
  13331. source: "./media/characters/colin-t/front.svg",
  13332. extra: 1272 / 1193,
  13333. bottom: 0.07
  13334. }
  13335. },
  13336. },
  13337. [
  13338. {
  13339. name: "Micro",
  13340. height: math.unit(0.571, "meters")
  13341. },
  13342. {
  13343. name: "Normal",
  13344. height: math.unit(1.8796, "meters"),
  13345. default: true
  13346. },
  13347. {
  13348. name: "Tall",
  13349. height: math.unit(4, "meters")
  13350. },
  13351. {
  13352. name: "Macro",
  13353. height: math.unit(67.241, "meters")
  13354. },
  13355. {
  13356. name: "Megamacro",
  13357. height: math.unit(371.856, "meters")
  13358. },
  13359. {
  13360. name: "Planetary",
  13361. height: math.unit(12631.5689, "km")
  13362. },
  13363. ]
  13364. ))
  13365. characterMakers.push(() => makeCharacter(
  13366. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13367. {
  13368. front: {
  13369. height: math.unit(1.85, "meters"),
  13370. weight: math.unit(80, "kg"),
  13371. name: "Front",
  13372. image: {
  13373. source: "./media/characters/matvei/front.svg",
  13374. extra: 456/447,
  13375. bottom: 8/464
  13376. }
  13377. },
  13378. back: {
  13379. height: math.unit(1.85, "meters"),
  13380. weight: math.unit(80, "kg"),
  13381. name: "Back",
  13382. image: {
  13383. source: "./media/characters/matvei/back.svg",
  13384. extra: 434/427,
  13385. bottom: 11/445
  13386. }
  13387. },
  13388. },
  13389. [
  13390. {
  13391. name: "Normal",
  13392. height: math.unit(1.85, "meters"),
  13393. default: true
  13394. },
  13395. ]
  13396. ))
  13397. characterMakers.push(() => makeCharacter(
  13398. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13399. {
  13400. front: {
  13401. height: math.unit(5 + 9 / 12, "feet"),
  13402. weight: math.unit(70, "lb"),
  13403. name: "Front",
  13404. image: {
  13405. source: "./media/characters/quincy/front.svg",
  13406. extra: 3041 / 2751
  13407. }
  13408. },
  13409. back: {
  13410. height: math.unit(5 + 9 / 12, "feet"),
  13411. weight: math.unit(70, "lb"),
  13412. name: "Back",
  13413. image: {
  13414. source: "./media/characters/quincy/back.svg",
  13415. extra: 3041 / 2751
  13416. }
  13417. },
  13418. flying: {
  13419. height: math.unit(5 + 4 / 12, "feet"),
  13420. weight: math.unit(70, "lb"),
  13421. name: "Flying",
  13422. image: {
  13423. source: "./media/characters/quincy/flying.svg",
  13424. extra: 1044 / 930
  13425. }
  13426. },
  13427. },
  13428. [
  13429. {
  13430. name: "Micro",
  13431. height: math.unit(3, "cm")
  13432. },
  13433. {
  13434. name: "Normal",
  13435. height: math.unit(5 + 9 / 12, "feet")
  13436. },
  13437. {
  13438. name: "Macro",
  13439. height: math.unit(200, "meters"),
  13440. default: true
  13441. },
  13442. {
  13443. name: "Megamacro",
  13444. height: math.unit(1000, "meters")
  13445. },
  13446. ]
  13447. ))
  13448. characterMakers.push(() => makeCharacter(
  13449. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13450. {
  13451. front: {
  13452. height: math.unit(3 + 11/12, "feet"),
  13453. weight: math.unit(50, "lb"),
  13454. name: "Front",
  13455. image: {
  13456. source: "./media/characters/vanrel/front.svg",
  13457. extra: 1104/949,
  13458. bottom: 52/1156
  13459. }
  13460. },
  13461. back: {
  13462. height: math.unit(3 + 11/12, "feet"),
  13463. weight: math.unit(50, "lb"),
  13464. name: "Back",
  13465. image: {
  13466. source: "./media/characters/vanrel/back.svg",
  13467. extra: 1119/976,
  13468. bottom: 37/1156
  13469. }
  13470. },
  13471. tome: {
  13472. height: math.unit(1.35, "feet"),
  13473. weight: math.unit(10, "lb"),
  13474. name: "Vanrel's Tome",
  13475. rename: true,
  13476. image: {
  13477. source: "./media/characters/vanrel/tome.svg"
  13478. }
  13479. },
  13480. beans: {
  13481. height: math.unit(0.89, "feet"),
  13482. name: "Beans",
  13483. image: {
  13484. source: "./media/characters/vanrel/beans.svg"
  13485. }
  13486. },
  13487. },
  13488. [
  13489. {
  13490. name: "Normal",
  13491. height: math.unit(3 + 11/12, "feet"),
  13492. default: true
  13493. },
  13494. ]
  13495. ))
  13496. characterMakers.push(() => makeCharacter(
  13497. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13498. {
  13499. front: {
  13500. height: math.unit(7 + 5 / 12, "feet"),
  13501. name: "Front",
  13502. image: {
  13503. source: "./media/characters/kuiper-vanrel/front.svg",
  13504. extra: 1219/1169,
  13505. bottom: 69/1288
  13506. }
  13507. },
  13508. back: {
  13509. height: math.unit(7 + 5 / 12, "feet"),
  13510. name: "Back",
  13511. image: {
  13512. source: "./media/characters/kuiper-vanrel/back.svg",
  13513. extra: 1236/1193,
  13514. bottom: 27/1263
  13515. }
  13516. },
  13517. foot: {
  13518. height: math.unit(0.55, "meters"),
  13519. name: "Foot",
  13520. image: {
  13521. source: "./media/characters/kuiper-vanrel/foot.svg",
  13522. }
  13523. },
  13524. battle: {
  13525. height: math.unit(6.824, "feet"),
  13526. name: "Battle",
  13527. image: {
  13528. source: "./media/characters/kuiper-vanrel/battle.svg",
  13529. extra: 1466 / 1327,
  13530. bottom: 29 / 1492.5
  13531. }
  13532. },
  13533. meerkui: {
  13534. height: math.unit(18, "inches"),
  13535. name: "Meerkui",
  13536. image: {
  13537. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13538. extra: 1354/1289,
  13539. bottom: 69/1423
  13540. }
  13541. },
  13542. },
  13543. [
  13544. {
  13545. name: "Normal",
  13546. height: math.unit(7 + 5 / 12, "feet"),
  13547. default: true
  13548. },
  13549. ]
  13550. ))
  13551. characterMakers.push(() => makeCharacter(
  13552. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13553. {
  13554. front: {
  13555. height: math.unit(8 + 5 / 12, "feet"),
  13556. name: "Front",
  13557. image: {
  13558. source: "./media/characters/keset-vanrel/front.svg",
  13559. extra: 1231/1148,
  13560. bottom: 82/1313
  13561. }
  13562. },
  13563. back: {
  13564. height: math.unit(8 + 5 / 12, "feet"),
  13565. name: "Back",
  13566. image: {
  13567. source: "./media/characters/keset-vanrel/back.svg",
  13568. extra: 1240/1174,
  13569. bottom: 33/1273
  13570. }
  13571. },
  13572. hand: {
  13573. height: math.unit(0.6, "meters"),
  13574. name: "Hand",
  13575. image: {
  13576. source: "./media/characters/keset-vanrel/hand.svg"
  13577. }
  13578. },
  13579. foot: {
  13580. height: math.unit(0.94978, "meters"),
  13581. name: "Foot",
  13582. image: {
  13583. source: "./media/characters/keset-vanrel/foot.svg"
  13584. }
  13585. },
  13586. battle: {
  13587. height: math.unit(7.408, "feet"),
  13588. name: "Battle",
  13589. image: {
  13590. source: "./media/characters/keset-vanrel/battle.svg",
  13591. extra: 1890 / 1386,
  13592. bottom: 73.28 / 1970
  13593. }
  13594. },
  13595. },
  13596. [
  13597. {
  13598. name: "Normal",
  13599. height: math.unit(8 + 5 / 12, "feet"),
  13600. default: true
  13601. },
  13602. ]
  13603. ))
  13604. characterMakers.push(() => makeCharacter(
  13605. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13606. {
  13607. front: {
  13608. height: math.unit(6, "feet"),
  13609. weight: math.unit(150, "lb"),
  13610. name: "Front",
  13611. image: {
  13612. source: "./media/characters/neos/front.svg",
  13613. extra: 1696 / 992,
  13614. bottom: 0.14
  13615. }
  13616. },
  13617. },
  13618. [
  13619. {
  13620. name: "Normal",
  13621. height: math.unit(54, "cm"),
  13622. default: true
  13623. },
  13624. {
  13625. name: "Macro",
  13626. height: math.unit(100, "m")
  13627. },
  13628. {
  13629. name: "Megamacro",
  13630. height: math.unit(10, "km")
  13631. },
  13632. {
  13633. name: "Megamacro+",
  13634. height: math.unit(100, "km")
  13635. },
  13636. {
  13637. name: "Gigamacro",
  13638. height: math.unit(100, "Mm")
  13639. },
  13640. {
  13641. name: "Teramacro",
  13642. height: math.unit(100, "Gm")
  13643. },
  13644. {
  13645. name: "Examacro",
  13646. height: math.unit(100, "Em")
  13647. },
  13648. {
  13649. name: "Godly",
  13650. height: math.unit(10000, "Ym")
  13651. },
  13652. {
  13653. name: "Beyond Godly",
  13654. height: math.unit(25, "multiverses")
  13655. },
  13656. ]
  13657. ))
  13658. characterMakers.push(() => makeCharacter(
  13659. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13660. {
  13661. feminine: {
  13662. height: math.unit(5, "feet"),
  13663. weight: math.unit(100, "lb"),
  13664. name: "Feminine",
  13665. image: {
  13666. source: "./media/characters/sammy-mouse/feminine.svg",
  13667. extra: 2526 / 2425,
  13668. bottom: 0.123
  13669. }
  13670. },
  13671. masculine: {
  13672. height: math.unit(5, "feet"),
  13673. weight: math.unit(100, "lb"),
  13674. name: "Masculine",
  13675. image: {
  13676. source: "./media/characters/sammy-mouse/masculine.svg",
  13677. extra: 2526 / 2425,
  13678. bottom: 0.123
  13679. }
  13680. },
  13681. },
  13682. [
  13683. {
  13684. name: "Micro",
  13685. height: math.unit(5, "inches")
  13686. },
  13687. {
  13688. name: "Normal",
  13689. height: math.unit(5, "feet"),
  13690. default: true
  13691. },
  13692. {
  13693. name: "Macro",
  13694. height: math.unit(60, "feet")
  13695. },
  13696. ]
  13697. ))
  13698. characterMakers.push(() => makeCharacter(
  13699. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13700. {
  13701. front: {
  13702. height: math.unit(4, "feet"),
  13703. weight: math.unit(50, "lb"),
  13704. name: "Front",
  13705. image: {
  13706. source: "./media/characters/kole/front.svg",
  13707. extra: 1423 / 1303,
  13708. bottom: 0.025
  13709. }
  13710. },
  13711. back: {
  13712. height: math.unit(4, "feet"),
  13713. weight: math.unit(50, "lb"),
  13714. name: "Back",
  13715. image: {
  13716. source: "./media/characters/kole/back.svg",
  13717. extra: 1426 / 1280,
  13718. bottom: 0.02
  13719. }
  13720. },
  13721. },
  13722. [
  13723. {
  13724. name: "Normal",
  13725. height: math.unit(4, "feet"),
  13726. default: true
  13727. },
  13728. ]
  13729. ))
  13730. characterMakers.push(() => makeCharacter(
  13731. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13732. {
  13733. front: {
  13734. height: math.unit(2.5, "feet"),
  13735. weight: math.unit(32, "lb"),
  13736. name: "Front",
  13737. image: {
  13738. source: "./media/characters/rufran/front.svg",
  13739. extra: 1313/885,
  13740. bottom: 94/1407
  13741. }
  13742. },
  13743. side: {
  13744. height: math.unit(2.5, "feet"),
  13745. weight: math.unit(32, "lb"),
  13746. name: "Side",
  13747. image: {
  13748. source: "./media/characters/rufran/side.svg",
  13749. extra: 1109/852,
  13750. bottom: 118/1227
  13751. }
  13752. },
  13753. back: {
  13754. height: math.unit(2.5, "feet"),
  13755. weight: math.unit(32, "lb"),
  13756. name: "Back",
  13757. image: {
  13758. source: "./media/characters/rufran/back.svg",
  13759. extra: 1280/878,
  13760. bottom: 131/1411
  13761. }
  13762. },
  13763. mouth: {
  13764. height: math.unit(1.13, "feet"),
  13765. name: "Mouth",
  13766. image: {
  13767. source: "./media/characters/rufran/mouth.svg"
  13768. }
  13769. },
  13770. foot: {
  13771. height: math.unit(1.33, "feet"),
  13772. name: "Foot",
  13773. image: {
  13774. source: "./media/characters/rufran/foot.svg"
  13775. }
  13776. },
  13777. koboldFront: {
  13778. height: math.unit(2 + 6 / 12, "feet"),
  13779. weight: math.unit(20, "lb"),
  13780. name: "Front (Kobold)",
  13781. image: {
  13782. source: "./media/characters/rufran/kobold-front.svg",
  13783. extra: 2041 / 1839,
  13784. bottom: 0.055
  13785. }
  13786. },
  13787. koboldBack: {
  13788. height: math.unit(2 + 6 / 12, "feet"),
  13789. weight: math.unit(20, "lb"),
  13790. name: "Back (Kobold)",
  13791. image: {
  13792. source: "./media/characters/rufran/kobold-back.svg",
  13793. extra: 2054 / 1839,
  13794. bottom: 0.01
  13795. }
  13796. },
  13797. koboldHand: {
  13798. height: math.unit(0.2166, "meters"),
  13799. name: "Hand (Kobold)",
  13800. image: {
  13801. source: "./media/characters/rufran/kobold-hand.svg"
  13802. }
  13803. },
  13804. koboldFoot: {
  13805. height: math.unit(0.185, "meters"),
  13806. name: "Foot (Kobold)",
  13807. image: {
  13808. source: "./media/characters/rufran/kobold-foot.svg"
  13809. }
  13810. },
  13811. },
  13812. [
  13813. {
  13814. name: "Micro",
  13815. height: math.unit(1, "inch")
  13816. },
  13817. {
  13818. name: "Normal",
  13819. height: math.unit(2 + 6 / 12, "feet"),
  13820. default: true
  13821. },
  13822. {
  13823. name: "Big",
  13824. height: math.unit(60, "feet")
  13825. },
  13826. {
  13827. name: "Macro",
  13828. height: math.unit(325, "feet")
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13834. {
  13835. front: {
  13836. height: math.unit(0.3, "meters"),
  13837. weight: math.unit(3.5, "kg"),
  13838. name: "Front",
  13839. image: {
  13840. source: "./media/characters/chip/front.svg",
  13841. extra: 748 / 674
  13842. }
  13843. },
  13844. },
  13845. [
  13846. {
  13847. name: "Micro",
  13848. height: math.unit(1, "inch"),
  13849. default: true
  13850. },
  13851. ]
  13852. ))
  13853. characterMakers.push(() => makeCharacter(
  13854. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13855. {
  13856. side: {
  13857. height: math.unit(2.3, "meters"),
  13858. weight: math.unit(3500, "lb"),
  13859. name: "Side",
  13860. image: {
  13861. source: "./media/characters/torvid/side.svg",
  13862. extra: 1972 / 722,
  13863. bottom: 0.035
  13864. }
  13865. },
  13866. },
  13867. [
  13868. {
  13869. name: "Normal",
  13870. height: math.unit(2.3, "meters"),
  13871. default: true
  13872. },
  13873. ]
  13874. ))
  13875. characterMakers.push(() => makeCharacter(
  13876. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13877. {
  13878. front: {
  13879. height: math.unit(2, "meters"),
  13880. weight: math.unit(150.5, "kg"),
  13881. name: "Front",
  13882. image: {
  13883. source: "./media/characters/susan/front.svg",
  13884. extra: 693 / 635,
  13885. bottom: 0.05
  13886. }
  13887. },
  13888. },
  13889. [
  13890. {
  13891. name: "Megamacro",
  13892. height: math.unit(505, "miles"),
  13893. default: true
  13894. },
  13895. ]
  13896. ))
  13897. characterMakers.push(() => makeCharacter(
  13898. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13899. {
  13900. front: {
  13901. height: math.unit(6, "feet"),
  13902. weight: math.unit(150, "lb"),
  13903. name: "Front",
  13904. image: {
  13905. source: "./media/characters/raindrops/front.svg",
  13906. extra: 2655 / 2461,
  13907. bottom: 49 / 2705
  13908. }
  13909. },
  13910. back: {
  13911. height: math.unit(6, "feet"),
  13912. weight: math.unit(150, "lb"),
  13913. name: "Back",
  13914. image: {
  13915. source: "./media/characters/raindrops/back.svg",
  13916. extra: 2574 / 2400,
  13917. bottom: 65 / 2634
  13918. }
  13919. },
  13920. },
  13921. [
  13922. {
  13923. name: "Micro",
  13924. height: math.unit(6, "inches")
  13925. },
  13926. {
  13927. name: "Normal",
  13928. height: math.unit(6 + 2 / 12, "feet")
  13929. },
  13930. {
  13931. name: "Macro",
  13932. height: math.unit(131, "feet"),
  13933. default: true
  13934. },
  13935. {
  13936. name: "Megamacro",
  13937. height: math.unit(15, "miles")
  13938. },
  13939. {
  13940. name: "Gigamacro",
  13941. height: math.unit(4000, "miles")
  13942. },
  13943. {
  13944. name: "Teramacro",
  13945. height: math.unit(315000, "miles")
  13946. },
  13947. ]
  13948. ))
  13949. characterMakers.push(() => makeCharacter(
  13950. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13951. {
  13952. front: {
  13953. height: math.unit(2.794, "meters"),
  13954. weight: math.unit(325, "kg"),
  13955. name: "Front",
  13956. image: {
  13957. source: "./media/characters/tezwa/front.svg",
  13958. extra: 2083 / 1906,
  13959. bottom: 0.031
  13960. }
  13961. },
  13962. foot: {
  13963. height: math.unit(0.687, "meters"),
  13964. name: "Foot",
  13965. image: {
  13966. source: "./media/characters/tezwa/foot.svg"
  13967. }
  13968. },
  13969. },
  13970. [
  13971. {
  13972. name: "Normal",
  13973. height: math.unit(9 + 2 / 12, "feet"),
  13974. default: true
  13975. },
  13976. ]
  13977. ))
  13978. characterMakers.push(() => makeCharacter(
  13979. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13980. {
  13981. front: {
  13982. height: math.unit(58, "feet"),
  13983. weight: math.unit(89000, "lb"),
  13984. name: "Front",
  13985. image: {
  13986. source: "./media/characters/typhus/front.svg",
  13987. extra: 816 / 800,
  13988. bottom: 0.065
  13989. }
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Macro",
  13995. height: math.unit(58, "feet"),
  13996. default: true
  13997. },
  13998. ]
  13999. ))
  14000. characterMakers.push(() => makeCharacter(
  14001. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14002. {
  14003. front: {
  14004. height: math.unit(12, "feet"),
  14005. weight: math.unit(6, "tonnes"),
  14006. name: "Front",
  14007. image: {
  14008. source: "./media/characters/lyra-von-wulf/front.svg",
  14009. extra: 1,
  14010. bottom: 0.10
  14011. }
  14012. },
  14013. frontMecha: {
  14014. height: math.unit(12, "feet"),
  14015. weight: math.unit(12, "tonnes"),
  14016. name: "Front (Mecha)",
  14017. image: {
  14018. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14019. extra: 1,
  14020. bottom: 0.042
  14021. }
  14022. },
  14023. maw: {
  14024. height: math.unit(2.2, "feet"),
  14025. name: "Maw",
  14026. image: {
  14027. source: "./media/characters/lyra-von-wulf/maw.svg"
  14028. }
  14029. },
  14030. },
  14031. [
  14032. {
  14033. name: "Normal",
  14034. height: math.unit(12, "feet"),
  14035. default: true
  14036. },
  14037. {
  14038. name: "Classic",
  14039. height: math.unit(50, "feet")
  14040. },
  14041. {
  14042. name: "Macro",
  14043. height: math.unit(500, "feet")
  14044. },
  14045. {
  14046. name: "Megamacro",
  14047. height: math.unit(1, "mile")
  14048. },
  14049. {
  14050. name: "Gigamacro",
  14051. height: math.unit(400, "miles")
  14052. },
  14053. {
  14054. name: "Teramacro",
  14055. height: math.unit(22000, "miles")
  14056. },
  14057. {
  14058. name: "Solarmacro",
  14059. height: math.unit(8600000, "miles")
  14060. },
  14061. {
  14062. name: "Galactic",
  14063. height: math.unit(1057000, "lightyears")
  14064. },
  14065. ]
  14066. ))
  14067. characterMakers.push(() => makeCharacter(
  14068. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14069. {
  14070. front: {
  14071. height: math.unit(6 + 10 / 12, "feet"),
  14072. weight: math.unit(150, "lb"),
  14073. name: "Front",
  14074. image: {
  14075. source: "./media/characters/dixon/front.svg",
  14076. extra: 3361 / 3209,
  14077. bottom: 0.01
  14078. }
  14079. },
  14080. },
  14081. [
  14082. {
  14083. name: "Normal",
  14084. height: math.unit(6 + 10 / 12, "feet"),
  14085. default: true
  14086. },
  14087. {
  14088. name: "Big",
  14089. height: math.unit(12, "meters")
  14090. },
  14091. {
  14092. name: "Macro",
  14093. height: math.unit(500, "meters")
  14094. },
  14095. {
  14096. name: "Megamacro",
  14097. height: math.unit(2, "km")
  14098. },
  14099. ]
  14100. ))
  14101. characterMakers.push(() => makeCharacter(
  14102. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14103. {
  14104. front: {
  14105. height: math.unit(185, "cm"),
  14106. weight: math.unit(68, "kg"),
  14107. name: "Front",
  14108. image: {
  14109. source: "./media/characters/kauko/front.svg",
  14110. extra: 1455 / 1421,
  14111. bottom: 0.03
  14112. }
  14113. },
  14114. back: {
  14115. height: math.unit(185, "cm"),
  14116. weight: math.unit(68, "kg"),
  14117. name: "Back",
  14118. image: {
  14119. source: "./media/characters/kauko/back.svg",
  14120. extra: 1455 / 1421,
  14121. bottom: 0.004
  14122. }
  14123. },
  14124. },
  14125. [
  14126. {
  14127. name: "Normal",
  14128. height: math.unit(185, "cm"),
  14129. default: true
  14130. },
  14131. ]
  14132. ))
  14133. characterMakers.push(() => makeCharacter(
  14134. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14135. {
  14136. frontSfw: {
  14137. height: math.unit(5, "meters"),
  14138. weight: math.unit(4250, "lb"),
  14139. name: "Front",
  14140. image: {
  14141. source: "./media/characters/varg/front-sfw.svg",
  14142. extra: 1103/1010,
  14143. bottom: 50/1153
  14144. },
  14145. form: "anthro",
  14146. default: true
  14147. },
  14148. backSfw: {
  14149. height: math.unit(5, "meters"),
  14150. weight: math.unit(4250, "lb"),
  14151. name: "Back",
  14152. image: {
  14153. source: "./media/characters/varg/back-sfw.svg",
  14154. extra: 1038/1022,
  14155. bottom: 36/1074
  14156. },
  14157. form: "anthro"
  14158. },
  14159. frontNsfw: {
  14160. height: math.unit(5, "meters"),
  14161. weight: math.unit(4250, "lb"),
  14162. name: "Front (NSFW)",
  14163. image: {
  14164. source: "./media/characters/varg/front-nsfw.svg",
  14165. extra: 1103/1010,
  14166. bottom: 50/1153
  14167. },
  14168. form: "anthro"
  14169. },
  14170. sheath: {
  14171. height: math.unit(3.8, "feet"),
  14172. weight: math.unit(90, "kilograms"),
  14173. name: "Sheath",
  14174. image: {
  14175. source: "./media/characters/varg/sheath.svg"
  14176. },
  14177. form: "anthro"
  14178. },
  14179. dick: {
  14180. height: math.unit(4.6, "feet"),
  14181. weight: math.unit(451, "kilograms"),
  14182. name: "Dick",
  14183. image: {
  14184. source: "./media/characters/varg/dick.svg"
  14185. },
  14186. form: "anthro"
  14187. },
  14188. feralSfw: {
  14189. height: math.unit(5, "meters"),
  14190. weight: math.unit(100000, "lb"),
  14191. name: "Side",
  14192. image: {
  14193. source: "./media/characters/varg/feral-sfw.svg",
  14194. extra: 1065/511,
  14195. bottom: 211/1276
  14196. },
  14197. form: "feral",
  14198. default: true
  14199. },
  14200. feralNsfw: {
  14201. height: math.unit(5, "meters"),
  14202. weight: math.unit(100000, "lb"),
  14203. name: "Side (NSFW)",
  14204. image: {
  14205. source: "./media/characters/varg/feral-nsfw.svg",
  14206. extra: 1065/511,
  14207. bottom: 211/1276
  14208. },
  14209. form: "feral",
  14210. },
  14211. feralSheath: {
  14212. height: math.unit(9.8, "feet"),
  14213. weight: math.unit(2000, "kilograms"),
  14214. name: "Sheath",
  14215. image: {
  14216. source: "./media/characters/varg/sheath.svg"
  14217. },
  14218. form: "feral"
  14219. },
  14220. feralDick: {
  14221. height: math.unit(13.11, "feet"),
  14222. weight: math.unit(10440, "kilograms"),
  14223. name: "Dick",
  14224. image: {
  14225. source: "./media/characters/varg/dick.svg"
  14226. },
  14227. form: "feral"
  14228. },
  14229. },
  14230. [
  14231. {
  14232. name: "Normal",
  14233. height: math.unit(5, "meters"),
  14234. form: "anthro"
  14235. },
  14236. {
  14237. name: "Macro",
  14238. height: math.unit(200, "meters"),
  14239. form: "anthro"
  14240. },
  14241. {
  14242. name: "Megamacro",
  14243. height: math.unit(20, "kilometers"),
  14244. form: "anthro"
  14245. },
  14246. {
  14247. name: "True Size",
  14248. height: math.unit(211, "km"),
  14249. form: "anthro",
  14250. default: true
  14251. },
  14252. {
  14253. name: "Gigamacro",
  14254. height: math.unit(1000, "km"),
  14255. form: "anthro"
  14256. },
  14257. {
  14258. name: "Gigamacro+",
  14259. height: math.unit(8000, "km"),
  14260. form: "anthro"
  14261. },
  14262. {
  14263. name: "Teramacro",
  14264. height: math.unit(1000000, "km"),
  14265. form: "anthro"
  14266. },
  14267. {
  14268. name: "Normal",
  14269. height: math.unit(5, "meters"),
  14270. form: "feral"
  14271. },
  14272. {
  14273. name: "Macro",
  14274. height: math.unit(200, "meters"),
  14275. form: "feral"
  14276. },
  14277. {
  14278. name: "Megamacro",
  14279. height: math.unit(20, "kilometers"),
  14280. form: "feral"
  14281. },
  14282. {
  14283. name: "True Size",
  14284. height: math.unit(211, "km"),
  14285. form: "feral",
  14286. default: true
  14287. },
  14288. {
  14289. name: "Gigamacro",
  14290. height: math.unit(1000, "km"),
  14291. form: "feral"
  14292. },
  14293. {
  14294. name: "Gigamacro+",
  14295. height: math.unit(8000, "km"),
  14296. form: "feral"
  14297. },
  14298. {
  14299. name: "Teramacro",
  14300. height: math.unit(1000000, "km"),
  14301. form: "feral"
  14302. },
  14303. ],
  14304. {
  14305. "anthro": {
  14306. name: "Anthro",
  14307. default: true
  14308. },
  14309. "feral": {
  14310. name: "Feral",
  14311. },
  14312. }
  14313. ))
  14314. characterMakers.push(() => makeCharacter(
  14315. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14316. {
  14317. front: {
  14318. height: math.unit(7 + 7 / 12, "feet"),
  14319. weight: math.unit(267, "lb"),
  14320. name: "Front",
  14321. image: {
  14322. source: "./media/characters/dayza/front.svg",
  14323. extra: 1262 / 1200,
  14324. bottom: 0.035
  14325. }
  14326. },
  14327. side: {
  14328. height: math.unit(7 + 7 / 12, "feet"),
  14329. weight: math.unit(267, "lb"),
  14330. name: "Side",
  14331. image: {
  14332. source: "./media/characters/dayza/side.svg",
  14333. extra: 1295 / 1245,
  14334. bottom: 0.05
  14335. }
  14336. },
  14337. back: {
  14338. height: math.unit(7 + 7 / 12, "feet"),
  14339. weight: math.unit(267, "lb"),
  14340. name: "Back",
  14341. image: {
  14342. source: "./media/characters/dayza/back.svg",
  14343. extra: 1241 / 1170
  14344. }
  14345. },
  14346. },
  14347. [
  14348. {
  14349. name: "Normal",
  14350. height: math.unit(7 + 7 / 12, "feet"),
  14351. default: true
  14352. },
  14353. {
  14354. name: "Macro",
  14355. height: math.unit(155, "feet")
  14356. },
  14357. ]
  14358. ))
  14359. characterMakers.push(() => makeCharacter(
  14360. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14361. {
  14362. front: {
  14363. height: math.unit(6 + 5 / 12, "feet"),
  14364. weight: math.unit(160, "lb"),
  14365. name: "Front",
  14366. image: {
  14367. source: "./media/characters/xanthos/front.svg",
  14368. extra: 1,
  14369. bottom: 0.04
  14370. }
  14371. },
  14372. back: {
  14373. height: math.unit(6 + 5 / 12, "feet"),
  14374. weight: math.unit(160, "lb"),
  14375. name: "Back",
  14376. image: {
  14377. source: "./media/characters/xanthos/back.svg",
  14378. extra: 1,
  14379. bottom: 0.03
  14380. }
  14381. },
  14382. hand: {
  14383. height: math.unit(0.928, "feet"),
  14384. name: "Hand",
  14385. image: {
  14386. source: "./media/characters/xanthos/hand.svg"
  14387. }
  14388. },
  14389. foot: {
  14390. height: math.unit(1.286, "feet"),
  14391. name: "Foot",
  14392. image: {
  14393. source: "./media/characters/xanthos/foot.svg"
  14394. }
  14395. },
  14396. },
  14397. [
  14398. {
  14399. name: "Normal",
  14400. height: math.unit(6 + 5 / 12, "feet"),
  14401. default: true
  14402. },
  14403. {
  14404. name: "Normal+",
  14405. height: math.unit(6, "meters")
  14406. },
  14407. {
  14408. name: "Macro",
  14409. height: math.unit(40, "feet")
  14410. },
  14411. {
  14412. name: "Macro+",
  14413. height: math.unit(200, "meters")
  14414. },
  14415. {
  14416. name: "Megamacro",
  14417. height: math.unit(20, "km")
  14418. },
  14419. {
  14420. name: "Megamacro+",
  14421. height: math.unit(100, "km")
  14422. },
  14423. {
  14424. name: "Gigamacro",
  14425. height: math.unit(200, "megameters")
  14426. },
  14427. {
  14428. name: "Gigamacro+",
  14429. height: math.unit(1.5, "gigameters")
  14430. },
  14431. ]
  14432. ))
  14433. characterMakers.push(() => makeCharacter(
  14434. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14435. {
  14436. front: {
  14437. height: math.unit(6 + 3 / 12, "feet"),
  14438. weight: math.unit(215, "lb"),
  14439. name: "Front",
  14440. image: {
  14441. source: "./media/characters/grynn/front.svg",
  14442. extra: 4627 / 4209,
  14443. bottom: 0.047
  14444. }
  14445. },
  14446. },
  14447. [
  14448. {
  14449. name: "Micro",
  14450. height: math.unit(6, "inches")
  14451. },
  14452. {
  14453. name: "Normal",
  14454. height: math.unit(6 + 3 / 12, "feet"),
  14455. default: true
  14456. },
  14457. {
  14458. name: "Big",
  14459. height: math.unit(104, "feet")
  14460. },
  14461. {
  14462. name: "Macro",
  14463. height: math.unit(944, "feet")
  14464. },
  14465. {
  14466. name: "Macro+",
  14467. height: math.unit(9480, "feet")
  14468. },
  14469. {
  14470. name: "Megamacro",
  14471. height: math.unit(78752, "feet")
  14472. },
  14473. {
  14474. name: "Megamacro+",
  14475. height: math.unit(630128, "feet")
  14476. },
  14477. {
  14478. name: "Megamacro++",
  14479. height: math.unit(3150695, "feet")
  14480. },
  14481. ]
  14482. ))
  14483. characterMakers.push(() => makeCharacter(
  14484. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14485. {
  14486. front: {
  14487. height: math.unit(7 + 5 / 12, "feet"),
  14488. weight: math.unit(450, "lb"),
  14489. name: "Front",
  14490. image: {
  14491. source: "./media/characters/mocha-aura/front.svg",
  14492. extra: 1907 / 1817,
  14493. bottom: 0.04
  14494. }
  14495. },
  14496. back: {
  14497. height: math.unit(7 + 5 / 12, "feet"),
  14498. weight: math.unit(450, "lb"),
  14499. name: "Back",
  14500. image: {
  14501. source: "./media/characters/mocha-aura/back.svg",
  14502. extra: 1900 / 1825,
  14503. bottom: 0.045
  14504. }
  14505. },
  14506. },
  14507. [
  14508. {
  14509. name: "Nano",
  14510. height: math.unit(1, "nm")
  14511. },
  14512. {
  14513. name: "Megamicro",
  14514. height: math.unit(1, "mm")
  14515. },
  14516. {
  14517. name: "Micro",
  14518. height: math.unit(3, "inches")
  14519. },
  14520. {
  14521. name: "Normal",
  14522. height: math.unit(7 + 5 / 12, "feet"),
  14523. default: true
  14524. },
  14525. {
  14526. name: "Macro",
  14527. height: math.unit(30, "feet")
  14528. },
  14529. {
  14530. name: "Megamacro",
  14531. height: math.unit(3500, "feet")
  14532. },
  14533. {
  14534. name: "Teramacro",
  14535. height: math.unit(500000, "miles")
  14536. },
  14537. {
  14538. name: "Petamacro",
  14539. height: math.unit(50000000000000000, "parsecs")
  14540. },
  14541. ]
  14542. ))
  14543. characterMakers.push(() => makeCharacter(
  14544. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14545. {
  14546. front: {
  14547. height: math.unit(6, "feet"),
  14548. weight: math.unit(150, "lb"),
  14549. name: "Front",
  14550. image: {
  14551. source: "./media/characters/ilisha-devya/front.svg",
  14552. extra: 1053/1049,
  14553. bottom: 270/1323
  14554. }
  14555. },
  14556. back: {
  14557. height: math.unit(6, "feet"),
  14558. weight: math.unit(150, "lb"),
  14559. name: "Back",
  14560. image: {
  14561. source: "./media/characters/ilisha-devya/back.svg",
  14562. extra: 1131/1128,
  14563. bottom: 39/1170
  14564. }
  14565. },
  14566. },
  14567. [
  14568. {
  14569. name: "Macro",
  14570. height: math.unit(500, "feet"),
  14571. default: true
  14572. },
  14573. {
  14574. name: "Megamacro",
  14575. height: math.unit(10, "miles")
  14576. },
  14577. {
  14578. name: "Gigamacro",
  14579. height: math.unit(100000, "miles")
  14580. },
  14581. {
  14582. name: "Examacro",
  14583. height: math.unit(1e9, "lightyears")
  14584. },
  14585. {
  14586. name: "Omniversal",
  14587. height: math.unit(1e33, "lightyears")
  14588. },
  14589. {
  14590. name: "Beyond Infinite",
  14591. height: math.unit(1e100, "lightyears")
  14592. },
  14593. ]
  14594. ))
  14595. characterMakers.push(() => makeCharacter(
  14596. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14597. {
  14598. Side: {
  14599. height: math.unit(6, "feet"),
  14600. weight: math.unit(150, "lb"),
  14601. name: "Side",
  14602. image: {
  14603. source: "./media/characters/mira/side.svg",
  14604. extra: 900 / 799,
  14605. bottom: 0.02
  14606. }
  14607. },
  14608. },
  14609. [
  14610. {
  14611. name: "Human Size",
  14612. height: math.unit(6, "feet")
  14613. },
  14614. {
  14615. name: "Macro",
  14616. height: math.unit(100, "feet"),
  14617. default: true
  14618. },
  14619. {
  14620. name: "Megamacro",
  14621. height: math.unit(10, "miles")
  14622. },
  14623. {
  14624. name: "Gigamacro",
  14625. height: math.unit(25000, "miles")
  14626. },
  14627. {
  14628. name: "Teramacro",
  14629. height: math.unit(300, "AU")
  14630. },
  14631. {
  14632. name: "Full Size",
  14633. height: math.unit(4.5e10, "lightyears")
  14634. },
  14635. ]
  14636. ))
  14637. characterMakers.push(() => makeCharacter(
  14638. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14639. {
  14640. front: {
  14641. height: math.unit(6, "feet"),
  14642. weight: math.unit(150, "lb"),
  14643. name: "Front",
  14644. image: {
  14645. source: "./media/characters/holly/front.svg",
  14646. extra: 639 / 606
  14647. }
  14648. },
  14649. back: {
  14650. height: math.unit(6, "feet"),
  14651. weight: math.unit(150, "lb"),
  14652. name: "Back",
  14653. image: {
  14654. source: "./media/characters/holly/back.svg",
  14655. extra: 623 / 598
  14656. }
  14657. },
  14658. frontWorking: {
  14659. height: math.unit(6, "feet"),
  14660. weight: math.unit(150, "lb"),
  14661. name: "Front (Working)",
  14662. image: {
  14663. source: "./media/characters/holly/front-working.svg",
  14664. extra: 607 / 577,
  14665. bottom: 0.048
  14666. }
  14667. },
  14668. },
  14669. [
  14670. {
  14671. name: "Normal",
  14672. height: math.unit(12 + 3 / 12, "feet"),
  14673. default: true
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14679. {
  14680. front: {
  14681. height: math.unit(6, "feet"),
  14682. weight: math.unit(150, "lb"),
  14683. name: "Front",
  14684. image: {
  14685. source: "./media/characters/porter/front.svg",
  14686. extra: 1,
  14687. bottom: 0.01
  14688. }
  14689. },
  14690. frontRobes: {
  14691. height: math.unit(6, "feet"),
  14692. weight: math.unit(150, "lb"),
  14693. name: "Front (Robes)",
  14694. image: {
  14695. source: "./media/characters/porter/front-robes.svg",
  14696. extra: 1.01,
  14697. bottom: 0.01
  14698. }
  14699. },
  14700. },
  14701. [
  14702. {
  14703. name: "Normal",
  14704. height: math.unit(11 + 9 / 12, "feet"),
  14705. default: true
  14706. },
  14707. ]
  14708. ))
  14709. characterMakers.push(() => makeCharacter(
  14710. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14711. {
  14712. legendary: {
  14713. height: math.unit(6, "feet"),
  14714. weight: math.unit(150, "lb"),
  14715. name: "Legendary",
  14716. image: {
  14717. source: "./media/characters/lucy/legendary.svg",
  14718. extra: 1355 / 1100,
  14719. bottom: 0.045
  14720. }
  14721. },
  14722. },
  14723. [
  14724. {
  14725. name: "Legendary",
  14726. height: math.unit(86882 * 2, "miles"),
  14727. default: true
  14728. },
  14729. ]
  14730. ))
  14731. characterMakers.push(() => makeCharacter(
  14732. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14733. {
  14734. front: {
  14735. height: math.unit(6, "feet"),
  14736. weight: math.unit(150, "lb"),
  14737. name: "Front",
  14738. image: {
  14739. source: "./media/characters/drusilla/front.svg",
  14740. extra: 678 / 635,
  14741. bottom: 0.03
  14742. }
  14743. },
  14744. back: {
  14745. height: math.unit(6, "feet"),
  14746. weight: math.unit(150, "lb"),
  14747. name: "Back",
  14748. image: {
  14749. source: "./media/characters/drusilla/back.svg",
  14750. extra: 678 / 635,
  14751. bottom: 0.005
  14752. }
  14753. },
  14754. },
  14755. [
  14756. {
  14757. name: "Macro",
  14758. height: math.unit(100, "feet")
  14759. },
  14760. {
  14761. name: "Canon Height",
  14762. height: math.unit(2000, "feet"),
  14763. default: true
  14764. },
  14765. ]
  14766. ))
  14767. characterMakers.push(() => makeCharacter(
  14768. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14769. {
  14770. front: {
  14771. height: math.unit(6, "feet"),
  14772. weight: math.unit(180, "lb"),
  14773. name: "Front",
  14774. image: {
  14775. source: "./media/characters/renard-thatch/front.svg",
  14776. extra: 2411 / 2275,
  14777. bottom: 0.01
  14778. }
  14779. },
  14780. frontPosing: {
  14781. height: math.unit(6, "feet"),
  14782. weight: math.unit(180, "lb"),
  14783. name: "Front (Posing)",
  14784. image: {
  14785. source: "./media/characters/renard-thatch/front-posing.svg",
  14786. extra: 2381 / 2261,
  14787. bottom: 0.01
  14788. }
  14789. },
  14790. back: {
  14791. height: math.unit(6, "feet"),
  14792. weight: math.unit(180, "lb"),
  14793. name: "Back",
  14794. image: {
  14795. source: "./media/characters/renard-thatch/back.svg",
  14796. extra: 2428 / 2288
  14797. }
  14798. },
  14799. },
  14800. [
  14801. {
  14802. name: "Micro",
  14803. height: math.unit(3, "inches")
  14804. },
  14805. {
  14806. name: "Default",
  14807. height: math.unit(6, "feet"),
  14808. default: true
  14809. },
  14810. {
  14811. name: "Macro",
  14812. height: math.unit(75, "feet")
  14813. },
  14814. ]
  14815. ))
  14816. characterMakers.push(() => makeCharacter(
  14817. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14818. {
  14819. front: {
  14820. height: math.unit(1450, "feet"),
  14821. weight: math.unit(1.21e6, "tons"),
  14822. name: "Front",
  14823. image: {
  14824. source: "./media/characters/sekvra/front.svg",
  14825. extra: 1193/1190,
  14826. bottom: 78/1271
  14827. }
  14828. },
  14829. side: {
  14830. height: math.unit(1450, "feet"),
  14831. weight: math.unit(1.21e6, "tons"),
  14832. name: "Side",
  14833. image: {
  14834. source: "./media/characters/sekvra/side.svg",
  14835. extra: 1193/1190,
  14836. bottom: 52/1245
  14837. }
  14838. },
  14839. back: {
  14840. height: math.unit(1450, "feet"),
  14841. weight: math.unit(1.21e6, "tons"),
  14842. name: "Back",
  14843. image: {
  14844. source: "./media/characters/sekvra/back.svg",
  14845. extra: 1219/1216,
  14846. bottom: 21/1240
  14847. }
  14848. },
  14849. frontClothed: {
  14850. height: math.unit(1450, "feet"),
  14851. weight: math.unit(1.21e6, "tons"),
  14852. name: "Front (Clothed)",
  14853. image: {
  14854. source: "./media/characters/sekvra/front-clothed.svg",
  14855. extra: 1192/1189,
  14856. bottom: 79/1271
  14857. }
  14858. },
  14859. },
  14860. [
  14861. {
  14862. name: "Macro",
  14863. height: math.unit(1450, "feet"),
  14864. default: true
  14865. },
  14866. {
  14867. name: "Megamacro",
  14868. height: math.unit(15000, "feet")
  14869. },
  14870. ]
  14871. ))
  14872. characterMakers.push(() => makeCharacter(
  14873. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14874. {
  14875. front: {
  14876. height: math.unit(6, "feet"),
  14877. weight: math.unit(150, "lb"),
  14878. name: "Front",
  14879. image: {
  14880. source: "./media/characters/carmine/front.svg",
  14881. extra: 1557/1538,
  14882. bottom: 68/1625
  14883. }
  14884. },
  14885. frontArmor: {
  14886. height: math.unit(6, "feet"),
  14887. weight: math.unit(150, "lb"),
  14888. name: "Front (Armor)",
  14889. image: {
  14890. source: "./media/characters/carmine/front-armor.svg",
  14891. extra: 1549/1530,
  14892. bottom: 82/1631
  14893. }
  14894. },
  14895. mouth: {
  14896. height: math.unit(0.55, "feet"),
  14897. name: "Mouth",
  14898. image: {
  14899. source: "./media/characters/carmine/mouth.svg"
  14900. }
  14901. },
  14902. hand: {
  14903. height: math.unit(1.05, "feet"),
  14904. name: "Hand",
  14905. image: {
  14906. source: "./media/characters/carmine/hand.svg"
  14907. }
  14908. },
  14909. foot: {
  14910. height: math.unit(0.6, "feet"),
  14911. name: "Foot",
  14912. image: {
  14913. source: "./media/characters/carmine/foot.svg"
  14914. }
  14915. },
  14916. },
  14917. [
  14918. {
  14919. name: "Large",
  14920. height: math.unit(1, "mile")
  14921. },
  14922. {
  14923. name: "Huge",
  14924. height: math.unit(40, "miles"),
  14925. default: true
  14926. },
  14927. {
  14928. name: "Colossal",
  14929. height: math.unit(2500, "miles")
  14930. },
  14931. ]
  14932. ))
  14933. characterMakers.push(() => makeCharacter(
  14934. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14935. {
  14936. front: {
  14937. height: math.unit(6, "feet"),
  14938. weight: math.unit(150, "lb"),
  14939. name: "Front",
  14940. image: {
  14941. source: "./media/characters/elyssia/front.svg",
  14942. extra: 2201 / 2035,
  14943. bottom: 0.05
  14944. }
  14945. },
  14946. frontClothed: {
  14947. height: math.unit(6, "feet"),
  14948. weight: math.unit(150, "lb"),
  14949. name: "Front (Clothed)",
  14950. image: {
  14951. source: "./media/characters/elyssia/front-clothed.svg",
  14952. extra: 2201 / 2035,
  14953. bottom: 0.05
  14954. }
  14955. },
  14956. back: {
  14957. height: math.unit(6, "feet"),
  14958. weight: math.unit(150, "lb"),
  14959. name: "Back",
  14960. image: {
  14961. source: "./media/characters/elyssia/back.svg",
  14962. extra: 2201 / 2035,
  14963. bottom: 0.013
  14964. }
  14965. },
  14966. },
  14967. [
  14968. {
  14969. name: "Smaller",
  14970. height: math.unit(150, "feet")
  14971. },
  14972. {
  14973. name: "Standard",
  14974. height: math.unit(1400, "feet"),
  14975. default: true
  14976. },
  14977. {
  14978. name: "Distracted",
  14979. height: math.unit(15000, "feet")
  14980. },
  14981. ]
  14982. ))
  14983. characterMakers.push(() => makeCharacter(
  14984. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14985. {
  14986. front: {
  14987. height: math.unit(7 + 4/12, "feet"),
  14988. weight: math.unit(690, "lb"),
  14989. name: "Front",
  14990. image: {
  14991. source: "./media/characters/geno-maxwell/front.svg",
  14992. extra: 984/856,
  14993. bottom: 87/1071
  14994. }
  14995. },
  14996. back: {
  14997. height: math.unit(7 + 4/12, "feet"),
  14998. weight: math.unit(690, "lb"),
  14999. name: "Back",
  15000. image: {
  15001. source: "./media/characters/geno-maxwell/back.svg",
  15002. extra: 981/854,
  15003. bottom: 57/1038
  15004. }
  15005. },
  15006. frontCostume: {
  15007. height: math.unit(7 + 4/12, "feet"),
  15008. weight: math.unit(690, "lb"),
  15009. name: "Front (Costume)",
  15010. image: {
  15011. source: "./media/characters/geno-maxwell/front-costume.svg",
  15012. extra: 984/856,
  15013. bottom: 87/1071
  15014. }
  15015. },
  15016. backcostume: {
  15017. height: math.unit(7 + 4/12, "feet"),
  15018. weight: math.unit(690, "lb"),
  15019. name: "Back (Costume)",
  15020. image: {
  15021. source: "./media/characters/geno-maxwell/back-costume.svg",
  15022. extra: 981/854,
  15023. bottom: 57/1038
  15024. }
  15025. },
  15026. },
  15027. [
  15028. {
  15029. name: "Micro",
  15030. height: math.unit(3, "inches")
  15031. },
  15032. {
  15033. name: "Normal",
  15034. height: math.unit(7 + 4 / 12, "feet"),
  15035. default: true
  15036. },
  15037. {
  15038. name: "Macro",
  15039. height: math.unit(220, "feet")
  15040. },
  15041. {
  15042. name: "Megamacro",
  15043. height: math.unit(11, "miles")
  15044. },
  15045. ]
  15046. ))
  15047. characterMakers.push(() => makeCharacter(
  15048. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15049. {
  15050. front: {
  15051. height: math.unit(7 + 4/12, "feet"),
  15052. weight: math.unit(750, "lb"),
  15053. name: "Front",
  15054. image: {
  15055. source: "./media/characters/regena-maxwell/front.svg",
  15056. extra: 984/856,
  15057. bottom: 87/1071
  15058. }
  15059. },
  15060. back: {
  15061. height: math.unit(7 + 4/12, "feet"),
  15062. weight: math.unit(750, "lb"),
  15063. name: "Back",
  15064. image: {
  15065. source: "./media/characters/regena-maxwell/back.svg",
  15066. extra: 981/854,
  15067. bottom: 57/1038
  15068. }
  15069. },
  15070. frontCostume: {
  15071. height: math.unit(7 + 4/12, "feet"),
  15072. weight: math.unit(750, "lb"),
  15073. name: "Front (Costume)",
  15074. image: {
  15075. source: "./media/characters/regena-maxwell/front-costume.svg",
  15076. extra: 984/856,
  15077. bottom: 87/1071
  15078. }
  15079. },
  15080. backcostume: {
  15081. height: math.unit(7 + 4/12, "feet"),
  15082. weight: math.unit(750, "lb"),
  15083. name: "Back (Costume)",
  15084. image: {
  15085. source: "./media/characters/regena-maxwell/back-costume.svg",
  15086. extra: 981/854,
  15087. bottom: 57/1038
  15088. }
  15089. },
  15090. },
  15091. [
  15092. {
  15093. name: "Normal",
  15094. height: math.unit(7 + 4 / 12, "feet"),
  15095. default: true
  15096. },
  15097. {
  15098. name: "Macro",
  15099. height: math.unit(220, "feet")
  15100. },
  15101. {
  15102. name: "Megamacro",
  15103. height: math.unit(11, "miles")
  15104. },
  15105. ]
  15106. ))
  15107. characterMakers.push(() => makeCharacter(
  15108. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15109. {
  15110. front: {
  15111. height: math.unit(6, "feet"),
  15112. weight: math.unit(150, "lb"),
  15113. name: "Front",
  15114. image: {
  15115. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15116. extra: 860 / 690,
  15117. bottom: 0.03
  15118. }
  15119. },
  15120. },
  15121. [
  15122. {
  15123. name: "Normal",
  15124. height: math.unit(1.7, "meters"),
  15125. default: true
  15126. },
  15127. ]
  15128. ))
  15129. characterMakers.push(() => makeCharacter(
  15130. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15131. {
  15132. front: {
  15133. height: math.unit(6, "feet"),
  15134. weight: math.unit(150, "lb"),
  15135. name: "Front",
  15136. image: {
  15137. source: "./media/characters/quilly/front.svg",
  15138. extra: 890 / 776
  15139. }
  15140. },
  15141. },
  15142. [
  15143. {
  15144. name: "Gigamacro",
  15145. height: math.unit(404090, "miles"),
  15146. default: true
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15152. {
  15153. front: {
  15154. height: math.unit(7 + 8 / 12, "feet"),
  15155. weight: math.unit(350, "lb"),
  15156. name: "Front",
  15157. image: {
  15158. source: "./media/characters/tempest/front.svg",
  15159. extra: 1175 / 1086,
  15160. bottom: 0.02
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Normal",
  15167. height: math.unit(7 + 8 / 12, "feet"),
  15168. default: true
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15174. {
  15175. side: {
  15176. height: math.unit(4 + 5 / 12, "feet"),
  15177. weight: math.unit(80, "lb"),
  15178. name: "Side",
  15179. image: {
  15180. source: "./media/characters/rodger/side.svg",
  15181. extra: 1235 / 1118
  15182. }
  15183. },
  15184. },
  15185. [
  15186. {
  15187. name: "Micro",
  15188. height: math.unit(1, "inch")
  15189. },
  15190. {
  15191. name: "Normal",
  15192. height: math.unit(4 + 5 / 12, "feet"),
  15193. default: true
  15194. },
  15195. {
  15196. name: "Macro",
  15197. height: math.unit(120, "feet")
  15198. },
  15199. ]
  15200. ))
  15201. characterMakers.push(() => makeCharacter(
  15202. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15203. {
  15204. front: {
  15205. height: math.unit(6, "feet"),
  15206. weight: math.unit(150, "lb"),
  15207. name: "Front",
  15208. image: {
  15209. source: "./media/characters/danyel/front.svg",
  15210. extra: 1185 / 1123,
  15211. bottom: 0.05
  15212. }
  15213. },
  15214. },
  15215. [
  15216. {
  15217. name: "Shrunken",
  15218. height: math.unit(0.5, "mm")
  15219. },
  15220. {
  15221. name: "Micro",
  15222. height: math.unit(1, "mm"),
  15223. default: true
  15224. },
  15225. {
  15226. name: "Upsized",
  15227. height: math.unit(5 + 5 / 12, "feet")
  15228. },
  15229. ]
  15230. ))
  15231. characterMakers.push(() => makeCharacter(
  15232. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15233. {
  15234. front: {
  15235. height: math.unit(5 + 6 / 12, "feet"),
  15236. weight: math.unit(200, "lb"),
  15237. name: "Front",
  15238. image: {
  15239. source: "./media/characters/vivian-bijoux/front.svg",
  15240. extra: 1217/1209,
  15241. bottom: 76/1293
  15242. }
  15243. },
  15244. back: {
  15245. height: math.unit(5 + 6 / 12, "feet"),
  15246. weight: math.unit(200, "lb"),
  15247. name: "Back",
  15248. image: {
  15249. source: "./media/characters/vivian-bijoux/back.svg",
  15250. extra: 1214/1208,
  15251. bottom: 51/1265
  15252. }
  15253. },
  15254. dressed: {
  15255. height: math.unit(5 + 6 / 12, "feet"),
  15256. weight: math.unit(200, "lb"),
  15257. name: "Dressed",
  15258. image: {
  15259. source: "./media/characters/vivian-bijoux/dressed.svg",
  15260. extra: 1217/1209,
  15261. bottom: 76/1293
  15262. }
  15263. },
  15264. },
  15265. [
  15266. {
  15267. name: "Normal",
  15268. height: math.unit(5 + 6 / 12, "feet"),
  15269. default: true
  15270. },
  15271. {
  15272. name: "Bad Dream",
  15273. height: math.unit(500, "feet")
  15274. },
  15275. {
  15276. name: "Nightmare",
  15277. height: math.unit(500, "miles")
  15278. },
  15279. ]
  15280. ))
  15281. characterMakers.push(() => makeCharacter(
  15282. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15283. {
  15284. front: {
  15285. height: math.unit(6 + 1 / 12, "feet"),
  15286. weight: math.unit(260, "lb"),
  15287. name: "Front",
  15288. image: {
  15289. source: "./media/characters/zeta/front.svg",
  15290. extra: 1968 / 1889,
  15291. bottom: 0.06
  15292. }
  15293. },
  15294. back: {
  15295. height: math.unit(6 + 1 / 12, "feet"),
  15296. weight: math.unit(260, "lb"),
  15297. name: "Back",
  15298. image: {
  15299. source: "./media/characters/zeta/back.svg",
  15300. extra: 1944 / 1858,
  15301. bottom: 0.03
  15302. }
  15303. },
  15304. hand: {
  15305. height: math.unit(1.112, "feet"),
  15306. name: "Hand",
  15307. image: {
  15308. source: "./media/characters/zeta/hand.svg"
  15309. }
  15310. },
  15311. foot: {
  15312. height: math.unit(1.48, "feet"),
  15313. name: "Foot",
  15314. image: {
  15315. source: "./media/characters/zeta/foot.svg"
  15316. }
  15317. },
  15318. },
  15319. [
  15320. {
  15321. name: "Micro",
  15322. height: math.unit(6, "inches")
  15323. },
  15324. {
  15325. name: "Normal",
  15326. height: math.unit(6 + 1 / 12, "feet"),
  15327. default: true
  15328. },
  15329. {
  15330. name: "Macro",
  15331. height: math.unit(20, "feet")
  15332. },
  15333. ]
  15334. ))
  15335. characterMakers.push(() => makeCharacter(
  15336. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15337. {
  15338. front: {
  15339. height: math.unit(6, "feet"),
  15340. weight: math.unit(150, "lb"),
  15341. name: "Front",
  15342. image: {
  15343. source: "./media/characters/jamie-larsen/front.svg",
  15344. extra: 962 / 933,
  15345. bottom: 0.02
  15346. }
  15347. },
  15348. back: {
  15349. height: math.unit(6, "feet"),
  15350. weight: math.unit(150, "lb"),
  15351. name: "Back",
  15352. image: {
  15353. source: "./media/characters/jamie-larsen/back.svg",
  15354. extra: 997 / 946
  15355. }
  15356. },
  15357. },
  15358. [
  15359. {
  15360. name: "Macro",
  15361. height: math.unit(28 + 7 / 12, "feet"),
  15362. default: true
  15363. },
  15364. {
  15365. name: "Macro+",
  15366. height: math.unit(180, "feet")
  15367. },
  15368. {
  15369. name: "Megamacro",
  15370. height: math.unit(10, "miles")
  15371. },
  15372. {
  15373. name: "Gigamacro",
  15374. height: math.unit(200000, "miles")
  15375. },
  15376. ]
  15377. ))
  15378. characterMakers.push(() => makeCharacter(
  15379. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15380. {
  15381. front: {
  15382. height: math.unit(6, "feet"),
  15383. weight: math.unit(120, "lb"),
  15384. name: "Front",
  15385. image: {
  15386. source: "./media/characters/vance/front.svg",
  15387. extra: 1980 / 1890,
  15388. bottom: 0.09
  15389. }
  15390. },
  15391. back: {
  15392. height: math.unit(6, "feet"),
  15393. weight: math.unit(120, "lb"),
  15394. name: "Back",
  15395. image: {
  15396. source: "./media/characters/vance/back.svg",
  15397. extra: 2081 / 1994,
  15398. bottom: 0.014
  15399. }
  15400. },
  15401. hand: {
  15402. height: math.unit(0.88, "feet"),
  15403. name: "Hand",
  15404. image: {
  15405. source: "./media/characters/vance/hand.svg"
  15406. }
  15407. },
  15408. foot: {
  15409. height: math.unit(0.64, "feet"),
  15410. name: "Foot",
  15411. image: {
  15412. source: "./media/characters/vance/foot.svg"
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Small",
  15419. height: math.unit(90, "feet"),
  15420. default: true
  15421. },
  15422. {
  15423. name: "Macro",
  15424. height: math.unit(100, "meters")
  15425. },
  15426. {
  15427. name: "Megamacro",
  15428. height: math.unit(15, "miles")
  15429. },
  15430. ]
  15431. ))
  15432. characterMakers.push(() => makeCharacter(
  15433. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15434. {
  15435. front: {
  15436. height: math.unit(6, "feet"),
  15437. weight: math.unit(180, "lb"),
  15438. name: "Front",
  15439. image: {
  15440. source: "./media/characters/xochitl/front.svg",
  15441. extra: 2297 / 2261,
  15442. bottom: 0.065
  15443. }
  15444. },
  15445. back: {
  15446. height: math.unit(6, "feet"),
  15447. weight: math.unit(180, "lb"),
  15448. name: "Back",
  15449. image: {
  15450. source: "./media/characters/xochitl/back.svg",
  15451. extra: 2386 / 2354,
  15452. bottom: 0.01
  15453. }
  15454. },
  15455. foot: {
  15456. height: math.unit(6 / 5 * 1.15, "feet"),
  15457. weight: math.unit(150, "lb"),
  15458. name: "Foot",
  15459. image: {
  15460. source: "./media/characters/xochitl/foot.svg"
  15461. }
  15462. },
  15463. },
  15464. [
  15465. {
  15466. name: "Macro",
  15467. height: math.unit(80, "feet")
  15468. },
  15469. {
  15470. name: "Macro+",
  15471. height: math.unit(400, "feet"),
  15472. default: true
  15473. },
  15474. {
  15475. name: "Gigamacro",
  15476. height: math.unit(80000, "miles")
  15477. },
  15478. {
  15479. name: "Gigamacro+",
  15480. height: math.unit(400000, "miles")
  15481. },
  15482. {
  15483. name: "Teramacro",
  15484. height: math.unit(300, "AU")
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15490. {
  15491. front: {
  15492. height: math.unit(6, "feet"),
  15493. weight: math.unit(150, "lb"),
  15494. name: "Front",
  15495. image: {
  15496. source: "./media/characters/vincent/front.svg",
  15497. extra: 1130 / 1080,
  15498. bottom: 0.055
  15499. }
  15500. },
  15501. beak: {
  15502. height: math.unit(6 * 0.1, "feet"),
  15503. name: "Beak",
  15504. image: {
  15505. source: "./media/characters/vincent/beak.svg"
  15506. }
  15507. },
  15508. hand: {
  15509. height: math.unit(6 * 0.85, "feet"),
  15510. weight: math.unit(150, "lb"),
  15511. name: "Hand",
  15512. image: {
  15513. source: "./media/characters/vincent/hand.svg"
  15514. }
  15515. },
  15516. foot: {
  15517. height: math.unit(6 * 0.19, "feet"),
  15518. weight: math.unit(150, "lb"),
  15519. name: "Foot",
  15520. image: {
  15521. source: "./media/characters/vincent/foot.svg"
  15522. }
  15523. },
  15524. },
  15525. [
  15526. {
  15527. name: "Base",
  15528. height: math.unit(6 + 5 / 12, "feet"),
  15529. default: true
  15530. },
  15531. {
  15532. name: "Macro",
  15533. height: math.unit(300, "feet")
  15534. },
  15535. {
  15536. name: "Megamacro",
  15537. height: math.unit(2, "miles")
  15538. },
  15539. {
  15540. name: "Gigamacro",
  15541. height: math.unit(1000, "miles")
  15542. },
  15543. ]
  15544. ))
  15545. characterMakers.push(() => makeCharacter(
  15546. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15547. {
  15548. front: {
  15549. height: math.unit(2, "meters"),
  15550. weight: math.unit(500, "kg"),
  15551. name: "Front",
  15552. image: {
  15553. source: "./media/characters/coatl/front.svg",
  15554. extra: 3948 / 3500,
  15555. bottom: 0.082
  15556. }
  15557. },
  15558. },
  15559. [
  15560. {
  15561. name: "Normal",
  15562. height: math.unit(4, "meters")
  15563. },
  15564. {
  15565. name: "Macro",
  15566. height: math.unit(100, "meters"),
  15567. default: true
  15568. },
  15569. {
  15570. name: "Macro+",
  15571. height: math.unit(300, "meters")
  15572. },
  15573. {
  15574. name: "Megamacro",
  15575. height: math.unit(3, "gigameters")
  15576. },
  15577. {
  15578. name: "Megamacro+",
  15579. height: math.unit(300, "terameters")
  15580. },
  15581. {
  15582. name: "Megamacro++",
  15583. height: math.unit(3, "lightyears")
  15584. },
  15585. ]
  15586. ))
  15587. characterMakers.push(() => makeCharacter(
  15588. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15589. {
  15590. front: {
  15591. height: math.unit(6, "feet"),
  15592. weight: math.unit(50, "kg"),
  15593. name: "front",
  15594. image: {
  15595. source: "./media/characters/shiroryu/front.svg",
  15596. extra: 1990 / 1935
  15597. }
  15598. },
  15599. },
  15600. [
  15601. {
  15602. name: "Mortal Mingling",
  15603. height: math.unit(3, "meters")
  15604. },
  15605. {
  15606. name: "Kaiju-ish",
  15607. height: math.unit(250, "meters")
  15608. },
  15609. {
  15610. name: "Somewhat Godly",
  15611. height: math.unit(400, "km"),
  15612. default: true
  15613. },
  15614. {
  15615. name: "Planetary",
  15616. height: math.unit(300, "megameters")
  15617. },
  15618. {
  15619. name: "Galaxy-dwarfing",
  15620. height: math.unit(450, "kiloparsecs")
  15621. },
  15622. {
  15623. name: "Universe Eater",
  15624. height: math.unit(150, "gigaparsecs")
  15625. },
  15626. {
  15627. name: "Almost Immeasurable",
  15628. height: math.unit(1.3e266, "yottaparsecs")
  15629. },
  15630. ]
  15631. ))
  15632. characterMakers.push(() => makeCharacter(
  15633. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15634. {
  15635. front: {
  15636. height: math.unit(6, "feet"),
  15637. weight: math.unit(150, "lb"),
  15638. name: "Front",
  15639. image: {
  15640. source: "./media/characters/umeko/front.svg",
  15641. extra: 1,
  15642. bottom: 0.019
  15643. }
  15644. },
  15645. frontArmored: {
  15646. height: math.unit(6, "feet"),
  15647. weight: math.unit(150, "lb"),
  15648. name: "Front (Armored)",
  15649. image: {
  15650. source: "./media/characters/umeko/front-armored.svg",
  15651. extra: 1,
  15652. bottom: 0.021
  15653. }
  15654. },
  15655. },
  15656. [
  15657. {
  15658. name: "Macro",
  15659. height: math.unit(220, "feet"),
  15660. default: true
  15661. },
  15662. {
  15663. name: "Guardian Dragon",
  15664. height: math.unit(50, "miles")
  15665. },
  15666. {
  15667. name: "Cosmic",
  15668. height: math.unit(800000, "miles")
  15669. },
  15670. ]
  15671. ))
  15672. characterMakers.push(() => makeCharacter(
  15673. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15674. {
  15675. front: {
  15676. height: math.unit(6, "feet"),
  15677. weight: math.unit(150, "lb"),
  15678. name: "Front",
  15679. image: {
  15680. source: "./media/characters/cassidy/front.svg",
  15681. extra: 810/808,
  15682. bottom: 41/851
  15683. }
  15684. },
  15685. },
  15686. [
  15687. {
  15688. name: "Canon Height",
  15689. height: math.unit(120, "feet"),
  15690. default: true
  15691. },
  15692. {
  15693. name: "Macro+",
  15694. height: math.unit(400, "feet")
  15695. },
  15696. {
  15697. name: "Macro++",
  15698. height: math.unit(4000, "feet")
  15699. },
  15700. {
  15701. name: "Megamacro",
  15702. height: math.unit(3, "miles")
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15708. {
  15709. front: {
  15710. height: math.unit(6, "feet"),
  15711. weight: math.unit(150, "lb"),
  15712. name: "Front",
  15713. image: {
  15714. source: "./media/characters/isaac/front.svg",
  15715. extra: 896 / 815,
  15716. bottom: 0.11
  15717. }
  15718. },
  15719. },
  15720. [
  15721. {
  15722. name: "Human Size",
  15723. height: math.unit(8, "feet"),
  15724. default: true
  15725. },
  15726. {
  15727. name: "Macro",
  15728. height: math.unit(400, "feet")
  15729. },
  15730. {
  15731. name: "Megamacro",
  15732. height: math.unit(50, "miles")
  15733. },
  15734. {
  15735. name: "Canon Height",
  15736. height: math.unit(200, "AU")
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15742. {
  15743. front: {
  15744. height: math.unit(6, "feet"),
  15745. weight: math.unit(72, "kg"),
  15746. name: "Front",
  15747. image: {
  15748. source: "./media/characters/sleekit/front.svg",
  15749. extra: 4693 / 4487,
  15750. bottom: 0.012
  15751. }
  15752. },
  15753. },
  15754. [
  15755. {
  15756. name: "Minimum Height",
  15757. height: math.unit(10, "meters")
  15758. },
  15759. {
  15760. name: "Smaller",
  15761. height: math.unit(25, "meters")
  15762. },
  15763. {
  15764. name: "Larger",
  15765. height: math.unit(38, "meters"),
  15766. default: true
  15767. },
  15768. {
  15769. name: "Maximum height",
  15770. height: math.unit(100, "meters")
  15771. },
  15772. ]
  15773. ))
  15774. characterMakers.push(() => makeCharacter(
  15775. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15776. {
  15777. front: {
  15778. height: math.unit(6, "feet"),
  15779. weight: math.unit(150, "lb"),
  15780. name: "Front",
  15781. image: {
  15782. source: "./media/characters/nillia/front.svg",
  15783. extra: 719/665,
  15784. bottom: 6/725
  15785. }
  15786. },
  15787. back: {
  15788. height: math.unit(6, "feet"),
  15789. weight: math.unit(150, "lb"),
  15790. name: "Back",
  15791. image: {
  15792. source: "./media/characters/nillia/back.svg",
  15793. extra: 705/651,
  15794. bottom: 5/710
  15795. }
  15796. },
  15797. },
  15798. [
  15799. {
  15800. name: "Canon Height",
  15801. height: math.unit(489, "feet"),
  15802. default: true
  15803. }
  15804. ]
  15805. ))
  15806. characterMakers.push(() => makeCharacter(
  15807. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15808. {
  15809. front: {
  15810. height: math.unit(6, "feet"),
  15811. weight: math.unit(150, "lb"),
  15812. name: "Front",
  15813. image: {
  15814. source: "./media/characters/mesmyriza/front.svg",
  15815. extra: 2067 / 1784,
  15816. bottom: 0.035
  15817. }
  15818. },
  15819. foot: {
  15820. height: math.unit(6 / (250 / 35), "feet"),
  15821. name: "Foot",
  15822. image: {
  15823. source: "./media/characters/mesmyriza/foot.svg"
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Macro",
  15830. height: math.unit(457, "meters"),
  15831. default: true
  15832. },
  15833. {
  15834. name: "Megamacro",
  15835. height: math.unit(8, "megameters")
  15836. },
  15837. ]
  15838. ))
  15839. characterMakers.push(() => makeCharacter(
  15840. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15841. {
  15842. front: {
  15843. height: math.unit(6, "feet"),
  15844. weight: math.unit(250, "lb"),
  15845. name: "Front",
  15846. image: {
  15847. source: "./media/characters/saudade/front.svg",
  15848. extra: 1172 / 1139,
  15849. bottom: 0.035
  15850. }
  15851. },
  15852. },
  15853. [
  15854. {
  15855. name: "Micro",
  15856. height: math.unit(3, "inches")
  15857. },
  15858. {
  15859. name: "Normal",
  15860. height: math.unit(6, "feet"),
  15861. default: true
  15862. },
  15863. {
  15864. name: "Macro",
  15865. height: math.unit(50, "feet")
  15866. },
  15867. {
  15868. name: "Megamacro",
  15869. height: math.unit(2800, "feet")
  15870. },
  15871. ]
  15872. ))
  15873. characterMakers.push(() => makeCharacter(
  15874. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15875. {
  15876. front: {
  15877. height: math.unit(5 + 4 / 12, "feet"),
  15878. weight: math.unit(100, "lb"),
  15879. name: "Front",
  15880. image: {
  15881. source: "./media/characters/keireer/front.svg",
  15882. extra: 716 / 666,
  15883. bottom: 0.05
  15884. }
  15885. },
  15886. },
  15887. [
  15888. {
  15889. name: "Normal",
  15890. height: math.unit(5 + 4 / 12, "feet"),
  15891. default: true
  15892. },
  15893. ]
  15894. ))
  15895. characterMakers.push(() => makeCharacter(
  15896. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15897. {
  15898. front: {
  15899. height: math.unit(5.5, "feet"),
  15900. weight: math.unit(90, "kg"),
  15901. name: "Front",
  15902. image: {
  15903. source: "./media/characters/mirja/front.svg",
  15904. extra: 1452/1262,
  15905. bottom: 67/1519
  15906. }
  15907. },
  15908. frontDressed: {
  15909. height: math.unit(5.5, "feet"),
  15910. weight: math.unit(90, "lb"),
  15911. name: "Front (Dressed)",
  15912. image: {
  15913. source: "./media/characters/mirja/dressed.svg",
  15914. extra: 1452/1262,
  15915. bottom: 67/1519
  15916. }
  15917. },
  15918. back: {
  15919. height: math.unit(6, "feet"),
  15920. weight: math.unit(90, "lb"),
  15921. name: "Back",
  15922. image: {
  15923. source: "./media/characters/mirja/back.svg",
  15924. extra: 1892/1795,
  15925. bottom: 48/1940
  15926. }
  15927. },
  15928. maw: {
  15929. height: math.unit(1.312, "feet"),
  15930. name: "Maw",
  15931. image: {
  15932. source: "./media/characters/mirja/maw.svg"
  15933. }
  15934. },
  15935. paw: {
  15936. height: math.unit(1.15, "feet"),
  15937. name: "Paw",
  15938. image: {
  15939. source: "./media/characters/mirja/paw.svg"
  15940. }
  15941. },
  15942. },
  15943. [
  15944. {
  15945. name: "\"Incognito\"",
  15946. height: math.unit(3, "meters")
  15947. },
  15948. {
  15949. name: "Strolling Size",
  15950. height: math.unit(15, "km")
  15951. },
  15952. {
  15953. name: "Larger Strolling Size",
  15954. height: math.unit(400, "km")
  15955. },
  15956. {
  15957. name: "Preferred Size",
  15958. height: math.unit(5000, "km"),
  15959. default: true
  15960. },
  15961. {
  15962. name: "True Size",
  15963. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15964. },
  15965. ]
  15966. ))
  15967. characterMakers.push(() => makeCharacter(
  15968. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15969. {
  15970. front: {
  15971. height: math.unit(15, "feet"),
  15972. weight: math.unit(880, "kg"),
  15973. name: "Front",
  15974. image: {
  15975. source: "./media/characters/nightraver/front.svg",
  15976. extra: 2444 / 2160,
  15977. bottom: 0.027
  15978. }
  15979. },
  15980. back: {
  15981. height: math.unit(15, "feet"),
  15982. weight: math.unit(880, "kg"),
  15983. name: "Back",
  15984. image: {
  15985. source: "./media/characters/nightraver/back.svg",
  15986. extra: 2309 / 2180,
  15987. bottom: 0.005
  15988. }
  15989. },
  15990. sole: {
  15991. height: math.unit(2.878, "feet"),
  15992. name: "Sole",
  15993. image: {
  15994. source: "./media/characters/nightraver/sole.svg"
  15995. }
  15996. },
  15997. foot: {
  15998. height: math.unit(2.285, "feet"),
  15999. name: "Foot",
  16000. image: {
  16001. source: "./media/characters/nightraver/foot.svg"
  16002. }
  16003. },
  16004. maw: {
  16005. height: math.unit(2.67, "feet"),
  16006. name: "Maw",
  16007. image: {
  16008. source: "./media/characters/nightraver/maw.svg"
  16009. }
  16010. },
  16011. },
  16012. [
  16013. {
  16014. name: "Micro",
  16015. height: math.unit(1, "cm")
  16016. },
  16017. {
  16018. name: "Normal",
  16019. height: math.unit(15, "feet"),
  16020. default: true
  16021. },
  16022. {
  16023. name: "Macro",
  16024. height: math.unit(300, "feet")
  16025. },
  16026. {
  16027. name: "Megamacro",
  16028. height: math.unit(300, "miles")
  16029. },
  16030. {
  16031. name: "Gigamacro",
  16032. height: math.unit(10000, "miles")
  16033. },
  16034. ]
  16035. ))
  16036. characterMakers.push(() => makeCharacter(
  16037. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16038. {
  16039. side: {
  16040. height: math.unit(2, "inches"),
  16041. weight: math.unit(5, "grams"),
  16042. name: "Side",
  16043. image: {
  16044. source: "./media/characters/arc/side.svg"
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Micro",
  16051. height: math.unit(2, "inches"),
  16052. default: true
  16053. },
  16054. ]
  16055. ))
  16056. characterMakers.push(() => makeCharacter(
  16057. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16058. {
  16059. front: {
  16060. height: math.unit(1.1938, "meters"),
  16061. weight: math.unit(54, "kg"),
  16062. name: "Front",
  16063. image: {
  16064. source: "./media/characters/nebula-shahar/front.svg",
  16065. extra: 1642 / 1436,
  16066. bottom: 0.06
  16067. }
  16068. },
  16069. },
  16070. [
  16071. {
  16072. name: "Megamicro",
  16073. height: math.unit(0.3, "mm")
  16074. },
  16075. {
  16076. name: "Micro",
  16077. height: math.unit(3, "cm")
  16078. },
  16079. {
  16080. name: "Normal",
  16081. height: math.unit(138, "cm"),
  16082. default: true
  16083. },
  16084. {
  16085. name: "Macro",
  16086. height: math.unit(30, "m")
  16087. },
  16088. ]
  16089. ))
  16090. characterMakers.push(() => makeCharacter(
  16091. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16092. {
  16093. front: {
  16094. height: math.unit(5.24, "feet"),
  16095. weight: math.unit(150, "lb"),
  16096. name: "Front",
  16097. image: {
  16098. source: "./media/characters/shayla/front.svg",
  16099. extra: 1512 / 1414,
  16100. bottom: 0.01
  16101. }
  16102. },
  16103. back: {
  16104. height: math.unit(5.24, "feet"),
  16105. weight: math.unit(150, "lb"),
  16106. name: "Back",
  16107. image: {
  16108. source: "./media/characters/shayla/back.svg",
  16109. extra: 1512 / 1414
  16110. }
  16111. },
  16112. hand: {
  16113. height: math.unit(0.7781496062992126, "feet"),
  16114. name: "Hand",
  16115. image: {
  16116. source: "./media/characters/shayla/hand.svg"
  16117. }
  16118. },
  16119. foot: {
  16120. height: math.unit(1.4206036745406823, "feet"),
  16121. name: "Foot",
  16122. image: {
  16123. source: "./media/characters/shayla/foot.svg"
  16124. }
  16125. },
  16126. },
  16127. [
  16128. {
  16129. name: "Micro",
  16130. height: math.unit(0.32, "feet")
  16131. },
  16132. {
  16133. name: "Normal",
  16134. height: math.unit(5.24, "feet"),
  16135. default: true
  16136. },
  16137. {
  16138. name: "Macro",
  16139. height: math.unit(492.12, "feet")
  16140. },
  16141. {
  16142. name: "Megamacro",
  16143. height: math.unit(186.41, "miles")
  16144. },
  16145. ]
  16146. ))
  16147. characterMakers.push(() => makeCharacter(
  16148. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16149. {
  16150. front: {
  16151. height: math.unit(2.2, "m"),
  16152. weight: math.unit(120, "kg"),
  16153. name: "Front",
  16154. image: {
  16155. source: "./media/characters/pia-jr/front.svg",
  16156. extra: 1000 / 970,
  16157. bottom: 0.035
  16158. }
  16159. },
  16160. hand: {
  16161. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16162. name: "Hand",
  16163. image: {
  16164. source: "./media/characters/pia-jr/hand.svg"
  16165. }
  16166. },
  16167. paw: {
  16168. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16169. name: "Paw",
  16170. image: {
  16171. source: "./media/characters/pia-jr/paw.svg"
  16172. }
  16173. },
  16174. },
  16175. [
  16176. {
  16177. name: "Micro",
  16178. height: math.unit(1.2, "cm")
  16179. },
  16180. {
  16181. name: "Normal",
  16182. height: math.unit(2.2, "m"),
  16183. default: true
  16184. },
  16185. {
  16186. name: "Macro",
  16187. height: math.unit(180, "m")
  16188. },
  16189. {
  16190. name: "Megamacro",
  16191. height: math.unit(420, "km")
  16192. },
  16193. ]
  16194. ))
  16195. characterMakers.push(() => makeCharacter(
  16196. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16197. {
  16198. front: {
  16199. height: math.unit(2, "m"),
  16200. weight: math.unit(115, "kg"),
  16201. name: "Front",
  16202. image: {
  16203. source: "./media/characters/pia-sr/front.svg",
  16204. extra: 760 / 730,
  16205. bottom: 0.015
  16206. }
  16207. },
  16208. back: {
  16209. height: math.unit(2, "m"),
  16210. weight: math.unit(115, "kg"),
  16211. name: "Back",
  16212. image: {
  16213. source: "./media/characters/pia-sr/back.svg",
  16214. extra: 760 / 730,
  16215. bottom: 0.01
  16216. }
  16217. },
  16218. hand: {
  16219. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16220. name: "Hand",
  16221. image: {
  16222. source: "./media/characters/pia-sr/hand.svg"
  16223. }
  16224. },
  16225. foot: {
  16226. height: math.unit(1.83, "feet"),
  16227. name: "Foot",
  16228. image: {
  16229. source: "./media/characters/pia-sr/foot.svg"
  16230. }
  16231. },
  16232. },
  16233. [
  16234. {
  16235. name: "Micro",
  16236. height: math.unit(88, "mm")
  16237. },
  16238. {
  16239. name: "Normal",
  16240. height: math.unit(2, "m"),
  16241. default: true
  16242. },
  16243. {
  16244. name: "Macro",
  16245. height: math.unit(200, "m")
  16246. },
  16247. {
  16248. name: "Megamacro",
  16249. height: math.unit(420, "km")
  16250. },
  16251. ]
  16252. ))
  16253. characterMakers.push(() => makeCharacter(
  16254. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16255. {
  16256. front: {
  16257. height: math.unit(8 + 2 / 12, "feet"),
  16258. weight: math.unit(300, "lb"),
  16259. name: "Front",
  16260. image: {
  16261. source: "./media/characters/kibibyte/front.svg",
  16262. extra: 2221 / 2098,
  16263. bottom: 0.04
  16264. }
  16265. },
  16266. },
  16267. [
  16268. {
  16269. name: "Normal",
  16270. height: math.unit(8 + 2 / 12, "feet"),
  16271. default: true
  16272. },
  16273. {
  16274. name: "Socialable Macro",
  16275. height: math.unit(50, "feet")
  16276. },
  16277. {
  16278. name: "Macro",
  16279. height: math.unit(300, "feet")
  16280. },
  16281. {
  16282. name: "Megamacro",
  16283. height: math.unit(500, "miles")
  16284. },
  16285. ]
  16286. ))
  16287. characterMakers.push(() => makeCharacter(
  16288. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16289. {
  16290. front: {
  16291. height: math.unit(6, "feet"),
  16292. weight: math.unit(150, "lb"),
  16293. name: "Front",
  16294. image: {
  16295. source: "./media/characters/felix/front.svg",
  16296. extra: 762 / 722,
  16297. bottom: 0.02
  16298. }
  16299. },
  16300. frontClothed: {
  16301. height: math.unit(6, "feet"),
  16302. weight: math.unit(150, "lb"),
  16303. name: "Front (Clothed)",
  16304. image: {
  16305. source: "./media/characters/felix/front-clothed.svg",
  16306. extra: 762 / 722,
  16307. bottom: 0.02
  16308. }
  16309. },
  16310. },
  16311. [
  16312. {
  16313. name: "Normal",
  16314. height: math.unit(6 + 8 / 12, "feet"),
  16315. default: true
  16316. },
  16317. {
  16318. name: "Macro",
  16319. height: math.unit(2600, "feet")
  16320. },
  16321. {
  16322. name: "Megamacro",
  16323. height: math.unit(450, "miles")
  16324. },
  16325. ]
  16326. ))
  16327. characterMakers.push(() => makeCharacter(
  16328. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16329. {
  16330. front: {
  16331. height: math.unit(6 + 1 / 12, "feet"),
  16332. weight: math.unit(250, "lb"),
  16333. name: "Front",
  16334. image: {
  16335. source: "./media/characters/tobo/front.svg",
  16336. extra: 608 / 586,
  16337. bottom: 0.023
  16338. }
  16339. },
  16340. back: {
  16341. height: math.unit(6 + 1 / 12, "feet"),
  16342. weight: math.unit(250, "lb"),
  16343. name: "Back",
  16344. image: {
  16345. source: "./media/characters/tobo/back.svg",
  16346. extra: 608 / 586
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Nano",
  16353. height: math.unit(2, "nm")
  16354. },
  16355. {
  16356. name: "Megamicro",
  16357. height: math.unit(0.1, "mm")
  16358. },
  16359. {
  16360. name: "Micro",
  16361. height: math.unit(1, "inch"),
  16362. default: true
  16363. },
  16364. {
  16365. name: "Human-sized",
  16366. height: math.unit(6 + 1 / 12, "feet")
  16367. },
  16368. {
  16369. name: "Macro",
  16370. height: math.unit(250, "feet")
  16371. },
  16372. {
  16373. name: "Megamacro",
  16374. height: math.unit(75, "miles")
  16375. },
  16376. {
  16377. name: "Texas-sized",
  16378. height: math.unit(750, "miles")
  16379. },
  16380. {
  16381. name: "Teramacro",
  16382. height: math.unit(50000, "miles")
  16383. },
  16384. ]
  16385. ))
  16386. characterMakers.push(() => makeCharacter(
  16387. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16388. {
  16389. front: {
  16390. height: math.unit(6, "feet"),
  16391. weight: math.unit(269, "lb"),
  16392. name: "Front",
  16393. image: {
  16394. source: "./media/characters/danny-kapowsky/front.svg",
  16395. extra: 766 / 736,
  16396. bottom: 0.044
  16397. }
  16398. },
  16399. back: {
  16400. height: math.unit(6, "feet"),
  16401. weight: math.unit(269, "lb"),
  16402. name: "Back",
  16403. image: {
  16404. source: "./media/characters/danny-kapowsky/back.svg",
  16405. extra: 797 / 760,
  16406. bottom: 0.025
  16407. }
  16408. },
  16409. },
  16410. [
  16411. {
  16412. name: "Macro",
  16413. height: math.unit(150, "feet"),
  16414. default: true
  16415. },
  16416. {
  16417. name: "Macro+",
  16418. height: math.unit(200, "feet")
  16419. },
  16420. {
  16421. name: "Macro++",
  16422. height: math.unit(300, "feet")
  16423. },
  16424. {
  16425. name: "Macro+++",
  16426. height: math.unit(400, "feet")
  16427. },
  16428. ]
  16429. ))
  16430. characterMakers.push(() => makeCharacter(
  16431. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16432. {
  16433. side: {
  16434. height: math.unit(6, "feet"),
  16435. weight: math.unit(170, "lb"),
  16436. name: "Side",
  16437. image: {
  16438. source: "./media/characters/finn/side.svg",
  16439. extra: 1953 / 1807,
  16440. bottom: 0.057
  16441. }
  16442. },
  16443. },
  16444. [
  16445. {
  16446. name: "Megamacro",
  16447. height: math.unit(14445, "feet"),
  16448. default: true
  16449. },
  16450. ]
  16451. ))
  16452. characterMakers.push(() => makeCharacter(
  16453. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16454. {
  16455. front: {
  16456. height: math.unit(5 + 6 / 12, "feet"),
  16457. weight: math.unit(125, "lb"),
  16458. name: "Front",
  16459. image: {
  16460. source: "./media/characters/roy/front.svg",
  16461. extra: 1,
  16462. bottom: 0.11
  16463. }
  16464. },
  16465. },
  16466. [
  16467. {
  16468. name: "Micro",
  16469. height: math.unit(3, "inches"),
  16470. default: true
  16471. },
  16472. {
  16473. name: "Normal",
  16474. height: math.unit(5 + 6 / 12, "feet")
  16475. },
  16476. {
  16477. name: "Lesser Macro",
  16478. height: math.unit(60, "feet")
  16479. },
  16480. {
  16481. name: "Greater Macro",
  16482. height: math.unit(120, "feet")
  16483. },
  16484. ]
  16485. ))
  16486. characterMakers.push(() => makeCharacter(
  16487. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16488. {
  16489. front: {
  16490. height: math.unit(6, "feet"),
  16491. weight: math.unit(100, "lb"),
  16492. name: "Front",
  16493. image: {
  16494. source: "./media/characters/aevsivs/front.svg",
  16495. extra: 1,
  16496. bottom: 0.03
  16497. }
  16498. },
  16499. back: {
  16500. height: math.unit(6, "feet"),
  16501. weight: math.unit(100, "lb"),
  16502. name: "Back",
  16503. image: {
  16504. source: "./media/characters/aevsivs/back.svg"
  16505. }
  16506. },
  16507. },
  16508. [
  16509. {
  16510. name: "Micro",
  16511. height: math.unit(2, "inches"),
  16512. default: true
  16513. },
  16514. {
  16515. name: "Normal",
  16516. height: math.unit(5, "feet")
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16522. {
  16523. front: {
  16524. height: math.unit(5 + 7 / 12, "feet"),
  16525. weight: math.unit(159, "lb"),
  16526. name: "Front",
  16527. image: {
  16528. source: "./media/characters/hildegard/front.svg",
  16529. extra: 289 / 269,
  16530. bottom: 7.63 / 297.8
  16531. }
  16532. },
  16533. back: {
  16534. height: math.unit(5 + 7 / 12, "feet"),
  16535. weight: math.unit(159, "lb"),
  16536. name: "Back",
  16537. image: {
  16538. source: "./media/characters/hildegard/back.svg",
  16539. extra: 280 / 260,
  16540. bottom: 2.3 / 282
  16541. }
  16542. },
  16543. },
  16544. [
  16545. {
  16546. name: "Normal",
  16547. height: math.unit(5 + 7 / 12, "feet"),
  16548. default: true
  16549. },
  16550. ]
  16551. ))
  16552. characterMakers.push(() => makeCharacter(
  16553. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16554. {
  16555. bernard: {
  16556. height: math.unit(2 + 7 / 12, "feet"),
  16557. weight: math.unit(66, "lb"),
  16558. name: "Bernard",
  16559. rename: true,
  16560. image: {
  16561. source: "./media/characters/bernard-wilder/bernard.svg",
  16562. extra: 192 / 128,
  16563. bottom: 0.05
  16564. }
  16565. },
  16566. wilder: {
  16567. height: math.unit(5 + 8 / 12, "feet"),
  16568. weight: math.unit(143, "lb"),
  16569. name: "Wilder",
  16570. rename: true,
  16571. image: {
  16572. source: "./media/characters/bernard-wilder/wilder.svg",
  16573. extra: 361 / 312,
  16574. bottom: 0.02
  16575. }
  16576. },
  16577. },
  16578. [
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(2 + 7 / 12, "feet"),
  16582. default: true
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16588. {
  16589. anthro: {
  16590. height: math.unit(6 + 1 / 12, "feet"),
  16591. weight: math.unit(155, "lb"),
  16592. name: "Anthro",
  16593. image: {
  16594. source: "./media/characters/hearth/anthro.svg",
  16595. extra: 1178/1136,
  16596. bottom: 28/1206
  16597. }
  16598. },
  16599. feral: {
  16600. height: math.unit(3.78, "feet"),
  16601. weight: math.unit(35, "kg"),
  16602. name: "Feral",
  16603. image: {
  16604. source: "./media/characters/hearth/feral.svg",
  16605. extra: 153 / 135,
  16606. bottom: 0.03
  16607. }
  16608. },
  16609. },
  16610. [
  16611. {
  16612. name: "Normal",
  16613. height: math.unit(6 + 1 / 12, "feet"),
  16614. default: true
  16615. },
  16616. ]
  16617. ))
  16618. characterMakers.push(() => makeCharacter(
  16619. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16620. {
  16621. front: {
  16622. height: math.unit(6, "feet"),
  16623. weight: math.unit(182, "lb"),
  16624. name: "Front",
  16625. image: {
  16626. source: "./media/characters/ingrid/front.svg",
  16627. extra: 294 / 268,
  16628. bottom: 0.027
  16629. }
  16630. },
  16631. },
  16632. [
  16633. {
  16634. name: "Normal",
  16635. height: math.unit(6, "feet"),
  16636. default: true
  16637. },
  16638. ]
  16639. ))
  16640. characterMakers.push(() => makeCharacter(
  16641. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16642. {
  16643. eevee: {
  16644. height: math.unit(2 + 10 / 12, "feet"),
  16645. weight: math.unit(86, "lb"),
  16646. name: "Malgam",
  16647. image: {
  16648. source: "./media/characters/malgam/eevee.svg",
  16649. extra: 952/784,
  16650. bottom: 38/990
  16651. }
  16652. },
  16653. sylveon: {
  16654. height: math.unit(4, "feet"),
  16655. weight: math.unit(101, "lb"),
  16656. name: "Future Malgam",
  16657. rename: true,
  16658. image: {
  16659. source: "./media/characters/malgam/sylveon.svg",
  16660. extra: 371 / 325,
  16661. bottom: 0.015
  16662. }
  16663. },
  16664. gigantamax: {
  16665. height: math.unit(50, "feet"),
  16666. name: "Gigantamax Malgam",
  16667. rename: true,
  16668. image: {
  16669. source: "./media/characters/malgam/gigantamax.svg"
  16670. }
  16671. },
  16672. },
  16673. [
  16674. {
  16675. name: "Normal",
  16676. height: math.unit(2 + 10 / 12, "feet"),
  16677. default: true
  16678. },
  16679. ]
  16680. ))
  16681. characterMakers.push(() => makeCharacter(
  16682. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16683. {
  16684. front: {
  16685. height: math.unit(5 + 11 / 12, "feet"),
  16686. weight: math.unit(188, "lb"),
  16687. name: "Front",
  16688. image: {
  16689. source: "./media/characters/fleur/front.svg",
  16690. extra: 309 / 283,
  16691. bottom: 0.007
  16692. }
  16693. },
  16694. },
  16695. [
  16696. {
  16697. name: "Normal",
  16698. height: math.unit(5 + 11 / 12, "feet"),
  16699. default: true
  16700. },
  16701. ]
  16702. ))
  16703. characterMakers.push(() => makeCharacter(
  16704. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16705. {
  16706. front: {
  16707. height: math.unit(5 + 4 / 12, "feet"),
  16708. weight: math.unit(122, "lb"),
  16709. name: "Front",
  16710. image: {
  16711. source: "./media/characters/jude/front.svg",
  16712. extra: 288 / 273,
  16713. bottom: 0.03
  16714. }
  16715. },
  16716. },
  16717. [
  16718. {
  16719. name: "Normal",
  16720. height: math.unit(5 + 4 / 12, "feet"),
  16721. default: true
  16722. },
  16723. ]
  16724. ))
  16725. characterMakers.push(() => makeCharacter(
  16726. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16727. {
  16728. front: {
  16729. height: math.unit(5 + 11 / 12, "feet"),
  16730. weight: math.unit(190, "lb"),
  16731. name: "Front",
  16732. image: {
  16733. source: "./media/characters/seara/front.svg",
  16734. extra: 1,
  16735. bottom: 0.05
  16736. }
  16737. },
  16738. },
  16739. [
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(5 + 11 / 12, "feet"),
  16743. default: true
  16744. },
  16745. ]
  16746. ))
  16747. characterMakers.push(() => makeCharacter(
  16748. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16749. {
  16750. front: {
  16751. height: math.unit(16 + 5 / 12, "feet"),
  16752. weight: math.unit(524, "lb"),
  16753. name: "Front",
  16754. image: {
  16755. source: "./media/characters/caspian-lugia/front.svg",
  16756. extra: 1,
  16757. bottom: 0.04
  16758. }
  16759. },
  16760. },
  16761. [
  16762. {
  16763. name: "Normal",
  16764. height: math.unit(16 + 5 / 12, "feet"),
  16765. default: true
  16766. },
  16767. ]
  16768. ))
  16769. characterMakers.push(() => makeCharacter(
  16770. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16771. {
  16772. front: {
  16773. height: math.unit(5 + 7 / 12, "feet"),
  16774. weight: math.unit(170, "lb"),
  16775. name: "Front",
  16776. image: {
  16777. source: "./media/characters/mika/front.svg",
  16778. extra: 1,
  16779. bottom: 0.016
  16780. }
  16781. },
  16782. },
  16783. [
  16784. {
  16785. name: "Normal",
  16786. height: math.unit(5 + 7 / 12, "feet"),
  16787. default: true
  16788. },
  16789. ]
  16790. ))
  16791. characterMakers.push(() => makeCharacter(
  16792. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16793. {
  16794. front: {
  16795. height: math.unit(6 + 2 / 12, "feet"),
  16796. weight: math.unit(268, "lb"),
  16797. name: "Front",
  16798. image: {
  16799. source: "./media/characters/sol/front.svg",
  16800. extra: 247 / 231,
  16801. bottom: 0.05
  16802. }
  16803. },
  16804. },
  16805. [
  16806. {
  16807. name: "Normal",
  16808. height: math.unit(6 + 2 / 12, "feet"),
  16809. default: true
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16815. {
  16816. buizel: {
  16817. height: math.unit(2 + 5 / 12, "feet"),
  16818. weight: math.unit(87, "lb"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/umiko/buizel.svg",
  16822. extra: 172 / 157,
  16823. bottom: 0.01
  16824. },
  16825. form: "buizel",
  16826. default: true
  16827. },
  16828. floatzel: {
  16829. height: math.unit(5 + 9 / 12, "feet"),
  16830. weight: math.unit(250, "lb"),
  16831. name: "Front",
  16832. image: {
  16833. source: "./media/characters/umiko/floatzel.svg",
  16834. extra: 1076/1006,
  16835. bottom: 15/1091
  16836. },
  16837. form: "floatzel",
  16838. default: true
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(2 + 5 / 12, "feet"),
  16845. form: "buizel",
  16846. default: true
  16847. },
  16848. {
  16849. name: "Normal",
  16850. height: math.unit(5 + 9 / 12, "feet"),
  16851. form: "floatzel",
  16852. default: true
  16853. },
  16854. ],
  16855. {
  16856. "buizel": {
  16857. name: "Buizel"
  16858. },
  16859. "floatzel": {
  16860. name: "Floatzel",
  16861. default: true
  16862. }
  16863. }
  16864. ))
  16865. characterMakers.push(() => makeCharacter(
  16866. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16867. {
  16868. front: {
  16869. height: math.unit(6 + 2 / 12, "feet"),
  16870. weight: math.unit(146, "lb"),
  16871. name: "Front",
  16872. image: {
  16873. source: "./media/characters/iliac/front.svg",
  16874. extra: 389 / 365,
  16875. bottom: 0.035
  16876. }
  16877. },
  16878. },
  16879. [
  16880. {
  16881. name: "Normal",
  16882. height: math.unit(6 + 2 / 12, "feet"),
  16883. default: true
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16889. {
  16890. front: {
  16891. height: math.unit(6, "feet"),
  16892. weight: math.unit(170, "lb"),
  16893. name: "Front",
  16894. image: {
  16895. source: "./media/characters/topaz/front.svg",
  16896. extra: 317 / 303,
  16897. bottom: 0.055
  16898. }
  16899. },
  16900. },
  16901. [
  16902. {
  16903. name: "Normal",
  16904. height: math.unit(6, "feet"),
  16905. default: true
  16906. },
  16907. ]
  16908. ))
  16909. characterMakers.push(() => makeCharacter(
  16910. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16911. {
  16912. front: {
  16913. height: math.unit(5 + 11 / 12, "feet"),
  16914. weight: math.unit(144, "lb"),
  16915. name: "Front",
  16916. image: {
  16917. source: "./media/characters/gabriel/front.svg",
  16918. extra: 285 / 262,
  16919. bottom: 0.004
  16920. }
  16921. },
  16922. },
  16923. [
  16924. {
  16925. name: "Normal",
  16926. height: math.unit(5 + 11 / 12, "feet"),
  16927. default: true
  16928. },
  16929. ]
  16930. ))
  16931. characterMakers.push(() => makeCharacter(
  16932. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16933. {
  16934. side: {
  16935. height: math.unit(6 + 5 / 12, "feet"),
  16936. weight: math.unit(300, "lb"),
  16937. name: "Side",
  16938. image: {
  16939. source: "./media/characters/tempest-suicune/side.svg",
  16940. extra: 195 / 154,
  16941. bottom: 0.04
  16942. }
  16943. },
  16944. },
  16945. [
  16946. {
  16947. name: "Normal",
  16948. height: math.unit(6 + 5 / 12, "feet"),
  16949. default: true
  16950. },
  16951. ]
  16952. ))
  16953. characterMakers.push(() => makeCharacter(
  16954. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16955. {
  16956. front: {
  16957. height: math.unit(7 + 2 / 12, "feet"),
  16958. weight: math.unit(322, "lb"),
  16959. name: "Front",
  16960. image: {
  16961. source: "./media/characters/vulcan/front.svg",
  16962. extra: 154 / 147,
  16963. bottom: 0.04
  16964. }
  16965. },
  16966. },
  16967. [
  16968. {
  16969. name: "Normal",
  16970. height: math.unit(7 + 2 / 12, "feet"),
  16971. default: true
  16972. },
  16973. ]
  16974. ))
  16975. characterMakers.push(() => makeCharacter(
  16976. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16977. {
  16978. front: {
  16979. height: math.unit(5 + 10 / 12, "feet"),
  16980. weight: math.unit(264, "lb"),
  16981. name: "Front",
  16982. image: {
  16983. source: "./media/characters/gault/front.svg",
  16984. extra: 161 / 140,
  16985. bottom: 0.028
  16986. }
  16987. },
  16988. },
  16989. [
  16990. {
  16991. name: "Normal",
  16992. height: math.unit(5 + 10 / 12, "feet"),
  16993. default: true
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16999. {
  17000. front: {
  17001. height: math.unit(6, "feet"),
  17002. weight: math.unit(150, "lb"),
  17003. name: "Front",
  17004. image: {
  17005. source: "./media/characters/shard/front.svg",
  17006. extra: 273 / 238,
  17007. bottom: 0.02
  17008. }
  17009. },
  17010. },
  17011. [
  17012. {
  17013. name: "Normal",
  17014. height: math.unit(3 + 6 / 12, "feet"),
  17015. default: true
  17016. },
  17017. ]
  17018. ))
  17019. characterMakers.push(() => makeCharacter(
  17020. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17021. {
  17022. front: {
  17023. height: math.unit(5 + 11 / 12, "feet"),
  17024. weight: math.unit(146, "lb"),
  17025. name: "Front",
  17026. image: {
  17027. source: "./media/characters/ashe/front.svg",
  17028. extra: 400 / 373,
  17029. bottom: 0.01
  17030. }
  17031. },
  17032. },
  17033. [
  17034. {
  17035. name: "Normal",
  17036. height: math.unit(5 + 11 / 12, "feet"),
  17037. default: true
  17038. },
  17039. ]
  17040. ))
  17041. characterMakers.push(() => makeCharacter(
  17042. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17043. {
  17044. front: {
  17045. height: math.unit(5 + 5 / 12, "feet"),
  17046. weight: math.unit(135, "lb"),
  17047. name: "Front",
  17048. image: {
  17049. source: "./media/characters/beatrix/front.svg",
  17050. extra: 392 / 379,
  17051. bottom: 0.01
  17052. }
  17053. },
  17054. },
  17055. [
  17056. {
  17057. name: "Normal",
  17058. height: math.unit(6, "feet"),
  17059. default: true
  17060. },
  17061. ]
  17062. ))
  17063. characterMakers.push(() => makeCharacter(
  17064. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17065. {
  17066. front: {
  17067. height: math.unit(6 + 2/12, "feet"),
  17068. weight: math.unit(135, "lb"),
  17069. name: "Front",
  17070. image: {
  17071. source: "./media/characters/ignatius/front.svg",
  17072. extra: 1380/1259,
  17073. bottom: 27/1407
  17074. }
  17075. },
  17076. },
  17077. [
  17078. {
  17079. name: "Normal",
  17080. height: math.unit(6 + 2/12, "feet"),
  17081. default: true
  17082. },
  17083. ]
  17084. ))
  17085. characterMakers.push(() => makeCharacter(
  17086. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17087. {
  17088. front: {
  17089. height: math.unit(6 + 2 / 12, "feet"),
  17090. weight: math.unit(138, "lb"),
  17091. name: "Front",
  17092. image: {
  17093. source: "./media/characters/mei-li/front.svg",
  17094. extra: 237 / 229,
  17095. bottom: 0.03
  17096. }
  17097. },
  17098. },
  17099. [
  17100. {
  17101. name: "Normal",
  17102. height: math.unit(6 + 2 / 12, "feet"),
  17103. default: true
  17104. },
  17105. ]
  17106. ))
  17107. characterMakers.push(() => makeCharacter(
  17108. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17109. {
  17110. front: {
  17111. height: math.unit(2 + 4 / 12, "feet"),
  17112. weight: math.unit(62, "lb"),
  17113. name: "Front",
  17114. image: {
  17115. source: "./media/characters/puru/front.svg",
  17116. extra: 206 / 149,
  17117. bottom: 0.06
  17118. }
  17119. },
  17120. },
  17121. [
  17122. {
  17123. name: "Normal",
  17124. height: math.unit(2 + 4 / 12, "feet"),
  17125. default: true
  17126. },
  17127. ]
  17128. ))
  17129. characterMakers.push(() => makeCharacter(
  17130. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17131. {
  17132. anthro: {
  17133. height: math.unit(5 + 8/12, "feet"),
  17134. weight: math.unit(200, "lb"),
  17135. energyNeed: math.unit(2000, "kcal"),
  17136. name: "Anthro",
  17137. image: {
  17138. source: "./media/characters/kee/anthro.svg",
  17139. extra: 3251/3184,
  17140. bottom: 250/3501
  17141. }
  17142. },
  17143. taur: {
  17144. height: math.unit(11, "feet"),
  17145. weight: math.unit(500, "lb"),
  17146. energyNeed: math.unit(5000, "kcal"),
  17147. name: "Taur",
  17148. image: {
  17149. source: "./media/characters/kee/taur.svg",
  17150. extra: 1362/1320,
  17151. bottom: 83/1445
  17152. }
  17153. },
  17154. },
  17155. [
  17156. {
  17157. name: "Normal",
  17158. height: math.unit(5 + 8/12, "feet"),
  17159. default: true
  17160. },
  17161. {
  17162. name: "Macro",
  17163. height: math.unit(35, "feet")
  17164. },
  17165. ]
  17166. ))
  17167. characterMakers.push(() => makeCharacter(
  17168. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17169. {
  17170. anthro: {
  17171. height: math.unit(7, "feet"),
  17172. weight: math.unit(190, "lb"),
  17173. name: "Anthro",
  17174. image: {
  17175. source: "./media/characters/cobalt-dracha/anthro.svg",
  17176. extra: 231 / 225,
  17177. bottom: 0.04
  17178. }
  17179. },
  17180. feral: {
  17181. height: math.unit(9 + 7 / 12, "feet"),
  17182. weight: math.unit(294, "lb"),
  17183. name: "Feral",
  17184. image: {
  17185. source: "./media/characters/cobalt-dracha/feral.svg",
  17186. extra: 692 / 633,
  17187. bottom: 0.05
  17188. }
  17189. },
  17190. },
  17191. [
  17192. {
  17193. name: "Normal",
  17194. height: math.unit(7, "feet"),
  17195. default: true
  17196. },
  17197. ]
  17198. ))
  17199. characterMakers.push(() => makeCharacter(
  17200. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17201. {
  17202. fallen: {
  17203. height: math.unit(11 + 8 / 12, "feet"),
  17204. weight: math.unit(485, "lb"),
  17205. name: "Java (Fallen)",
  17206. rename: true,
  17207. image: {
  17208. source: "./media/characters/java/fallen.svg",
  17209. extra: 226 / 208,
  17210. bottom: 0.005
  17211. }
  17212. },
  17213. godkin: {
  17214. height: math.unit(10 + 6 / 12, "feet"),
  17215. weight: math.unit(328, "lb"),
  17216. name: "Java (Godkin)",
  17217. rename: true,
  17218. image: {
  17219. source: "./media/characters/java/godkin.svg",
  17220. extra: 1104/1068,
  17221. bottom: 36/1140
  17222. }
  17223. },
  17224. },
  17225. [
  17226. {
  17227. name: "Normal",
  17228. height: math.unit(11 + 8 / 12, "feet"),
  17229. default: true
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17235. {
  17236. front: {
  17237. height: math.unit(5 + 9 / 12, "feet"),
  17238. weight: math.unit(170, "lb"),
  17239. name: "Front",
  17240. image: {
  17241. source: "./media/characters/purna/front.svg",
  17242. extra: 239 / 229,
  17243. bottom: 0.01
  17244. }
  17245. },
  17246. },
  17247. [
  17248. {
  17249. name: "Normal",
  17250. height: math.unit(5 + 9 / 12, "feet"),
  17251. default: true
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17257. {
  17258. front: {
  17259. height: math.unit(5 + 9 / 12, "feet"),
  17260. weight: math.unit(142, "lb"),
  17261. name: "Front",
  17262. image: {
  17263. source: "./media/characters/kuva/front.svg",
  17264. extra: 281 / 271,
  17265. bottom: 0.006
  17266. }
  17267. },
  17268. },
  17269. [
  17270. {
  17271. name: "Normal",
  17272. height: math.unit(5 + 9 / 12, "feet"),
  17273. default: true
  17274. },
  17275. ]
  17276. ))
  17277. characterMakers.push(() => makeCharacter(
  17278. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17279. {
  17280. anthro: {
  17281. height: math.unit(9 + 2 / 12, "feet"),
  17282. weight: math.unit(270, "lb"),
  17283. name: "Anthro",
  17284. image: {
  17285. source: "./media/characters/embra/anthro.svg",
  17286. extra: 200 / 187,
  17287. bottom: 0.02
  17288. }
  17289. },
  17290. feral: {
  17291. height: math.unit(18 + 8 / 12, "feet"),
  17292. weight: math.unit(576, "lb"),
  17293. name: "Feral",
  17294. image: {
  17295. source: "./media/characters/embra/feral.svg",
  17296. extra: 152 / 137,
  17297. bottom: 0.037
  17298. }
  17299. },
  17300. },
  17301. [
  17302. {
  17303. name: "Normal",
  17304. height: math.unit(9 + 2 / 12, "feet"),
  17305. default: true
  17306. },
  17307. ]
  17308. ))
  17309. characterMakers.push(() => makeCharacter(
  17310. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17311. {
  17312. anthro: {
  17313. height: math.unit(10 + 9 / 12, "feet"),
  17314. weight: math.unit(224, "lb"),
  17315. name: "Anthro",
  17316. image: {
  17317. source: "./media/characters/grottos/anthro.svg",
  17318. extra: 350 / 332,
  17319. bottom: 0.045
  17320. }
  17321. },
  17322. feral: {
  17323. height: math.unit(20 + 7 / 12, "feet"),
  17324. weight: math.unit(629, "lb"),
  17325. name: "Feral",
  17326. image: {
  17327. source: "./media/characters/grottos/feral.svg",
  17328. extra: 207 / 190,
  17329. bottom: 0.05
  17330. }
  17331. },
  17332. },
  17333. [
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(10 + 9 / 12, "feet"),
  17337. default: true
  17338. },
  17339. ]
  17340. ))
  17341. characterMakers.push(() => makeCharacter(
  17342. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17343. {
  17344. anthro: {
  17345. height: math.unit(9 + 6 / 12, "feet"),
  17346. weight: math.unit(298, "lb"),
  17347. name: "Anthro",
  17348. image: {
  17349. source: "./media/characters/frifna/anthro.svg",
  17350. extra: 282 / 269,
  17351. bottom: 0.015
  17352. }
  17353. },
  17354. feral: {
  17355. height: math.unit(16 + 2 / 12, "feet"),
  17356. weight: math.unit(624, "lb"),
  17357. name: "Feral",
  17358. image: {
  17359. source: "./media/characters/frifna/feral.svg"
  17360. }
  17361. },
  17362. },
  17363. [
  17364. {
  17365. name: "Normal",
  17366. height: math.unit(9 + 6 / 12, "feet"),
  17367. default: true
  17368. },
  17369. ]
  17370. ))
  17371. characterMakers.push(() => makeCharacter(
  17372. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17373. {
  17374. front: {
  17375. height: math.unit(6 + 2 / 12, "feet"),
  17376. weight: math.unit(168, "lb"),
  17377. name: "Front",
  17378. image: {
  17379. source: "./media/characters/elise/front.svg",
  17380. extra: 276 / 271
  17381. }
  17382. },
  17383. },
  17384. [
  17385. {
  17386. name: "Normal",
  17387. height: math.unit(6 + 2 / 12, "feet"),
  17388. default: true
  17389. },
  17390. ]
  17391. ))
  17392. characterMakers.push(() => makeCharacter(
  17393. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17394. {
  17395. front: {
  17396. height: math.unit(5 + 10 / 12, "feet"),
  17397. weight: math.unit(210, "lb"),
  17398. name: "Front",
  17399. image: {
  17400. source: "./media/characters/glade/front.svg",
  17401. extra: 258 / 247,
  17402. bottom: 0.008
  17403. }
  17404. },
  17405. },
  17406. [
  17407. {
  17408. name: "Normal",
  17409. height: math.unit(5 + 10 / 12, "feet"),
  17410. default: true
  17411. },
  17412. ]
  17413. ))
  17414. characterMakers.push(() => makeCharacter(
  17415. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17416. {
  17417. front: {
  17418. height: math.unit(5 + 10 / 12, "feet"),
  17419. weight: math.unit(129, "lb"),
  17420. name: "Front",
  17421. image: {
  17422. source: "./media/characters/rina/front.svg",
  17423. extra: 266 / 255,
  17424. bottom: 0.005
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(5 + 10 / 12, "feet"),
  17432. default: true
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17438. {
  17439. front: {
  17440. height: math.unit(6 + 1 / 12, "feet"),
  17441. weight: math.unit(192, "lb"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/veronica/front.svg",
  17445. extra: 319 / 309,
  17446. bottom: 0.005
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(6 + 1 / 12, "feet"),
  17454. default: true
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17460. {
  17461. front: {
  17462. height: math.unit(9 + 3 / 12, "feet"),
  17463. weight: math.unit(1100, "lb"),
  17464. name: "Front",
  17465. image: {
  17466. source: "./media/characters/braxton/front.svg",
  17467. extra: 1057 / 984,
  17468. bottom: 0.05
  17469. }
  17470. },
  17471. },
  17472. [
  17473. {
  17474. name: "Normal",
  17475. height: math.unit(9 + 3 / 12, "feet")
  17476. },
  17477. {
  17478. name: "Giant",
  17479. height: math.unit(300, "feet"),
  17480. default: true
  17481. },
  17482. {
  17483. name: "Macro",
  17484. height: math.unit(700, "feet")
  17485. },
  17486. {
  17487. name: "Megamacro",
  17488. height: math.unit(6000, "feet")
  17489. },
  17490. ]
  17491. ))
  17492. characterMakers.push(() => makeCharacter(
  17493. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17494. {
  17495. front: {
  17496. height: math.unit(6 + 7 / 12, "feet"),
  17497. weight: math.unit(150, "lb"),
  17498. name: "Front",
  17499. image: {
  17500. source: "./media/characters/blue-feyonics/front.svg",
  17501. extra: 1403 / 1306,
  17502. bottom: 0.047
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Normal",
  17509. height: math.unit(6 + 7 / 12, "feet"),
  17510. default: true
  17511. },
  17512. ]
  17513. ))
  17514. characterMakers.push(() => makeCharacter(
  17515. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17516. {
  17517. front: {
  17518. height: math.unit(1.8, "meters"),
  17519. weight: math.unit(60, "kg"),
  17520. name: "Front",
  17521. image: {
  17522. source: "./media/characters/maxwell/front.svg",
  17523. extra: 2060 / 1873
  17524. }
  17525. },
  17526. },
  17527. [
  17528. {
  17529. name: "Micro",
  17530. height: math.unit(1, "mm")
  17531. },
  17532. {
  17533. name: "Normal",
  17534. height: math.unit(1.8, "meter"),
  17535. default: true
  17536. },
  17537. {
  17538. name: "Macro",
  17539. height: math.unit(30, "meters")
  17540. },
  17541. {
  17542. name: "Megamacro",
  17543. height: math.unit(10, "km")
  17544. },
  17545. ]
  17546. ))
  17547. characterMakers.push(() => makeCharacter(
  17548. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17549. {
  17550. front: {
  17551. height: math.unit(6, "feet"),
  17552. weight: math.unit(150, "lb"),
  17553. name: "Front",
  17554. image: {
  17555. source: "./media/characters/jack/front.svg",
  17556. extra: 1754 / 1640,
  17557. bottom: 0.01
  17558. }
  17559. },
  17560. },
  17561. [
  17562. {
  17563. name: "Normal",
  17564. height: math.unit(80000, "feet"),
  17565. default: true
  17566. },
  17567. {
  17568. name: "Max size",
  17569. height: math.unit(10, "lightyears")
  17570. },
  17571. ]
  17572. ))
  17573. characterMakers.push(() => makeCharacter(
  17574. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17575. {
  17576. urban: {
  17577. height: math.unit(5, "feet"),
  17578. weight: math.unit(240, "lb"),
  17579. name: "Urban",
  17580. image: {
  17581. source: "./media/characters/cafat/urban.svg",
  17582. extra: 1223/1126,
  17583. bottom: 205/1428
  17584. }
  17585. },
  17586. summer: {
  17587. height: math.unit(5, "feet"),
  17588. weight: math.unit(240, "lb"),
  17589. name: "Summer",
  17590. image: {
  17591. source: "./media/characters/cafat/summer.svg",
  17592. extra: 1223/1126,
  17593. bottom: 205/1428
  17594. }
  17595. },
  17596. winter: {
  17597. height: math.unit(5, "feet"),
  17598. weight: math.unit(240, "lb"),
  17599. name: "Winter",
  17600. image: {
  17601. source: "./media/characters/cafat/winter.svg",
  17602. extra: 1223/1126,
  17603. bottom: 205/1428
  17604. }
  17605. },
  17606. lingerie: {
  17607. height: math.unit(5, "feet"),
  17608. weight: math.unit(240, "lb"),
  17609. name: "Lingerie",
  17610. image: {
  17611. source: "./media/characters/cafat/lingerie.svg",
  17612. extra: 1223/1126,
  17613. bottom: 205/1428
  17614. }
  17615. },
  17616. upright: {
  17617. height: math.unit(6.3, "feet"),
  17618. weight: math.unit(240, "lb"),
  17619. name: "Upright",
  17620. image: {
  17621. source: "./media/characters/cafat/upright.svg",
  17622. bottom: 0.01
  17623. }
  17624. },
  17625. uprightFull: {
  17626. height: math.unit(6.3, "feet"),
  17627. weight: math.unit(240, "lb"),
  17628. name: "Upright (Full)",
  17629. image: {
  17630. source: "./media/characters/cafat/upright-full.svg",
  17631. bottom: 0.01
  17632. }
  17633. },
  17634. },
  17635. [
  17636. {
  17637. name: "Small",
  17638. height: math.unit(5, "feet"),
  17639. default: true
  17640. },
  17641. {
  17642. name: "Large",
  17643. height: math.unit(13, "feet")
  17644. },
  17645. ]
  17646. ))
  17647. characterMakers.push(() => makeCharacter(
  17648. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17649. {
  17650. front: {
  17651. height: math.unit(6, "feet"),
  17652. weight: math.unit(150, "lb"),
  17653. name: "Front",
  17654. image: {
  17655. source: "./media/characters/verin-raharra/front.svg",
  17656. extra: 5019 / 4835,
  17657. bottom: 0.023
  17658. }
  17659. },
  17660. },
  17661. [
  17662. {
  17663. name: "Normal",
  17664. height: math.unit(7 + 5 / 12, "feet"),
  17665. default: true
  17666. },
  17667. {
  17668. name: "Upsized",
  17669. height: math.unit(20, "feet")
  17670. },
  17671. ]
  17672. ))
  17673. characterMakers.push(() => makeCharacter(
  17674. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17675. {
  17676. front: {
  17677. height: math.unit(7, "feet"),
  17678. weight: math.unit(230, "lb"),
  17679. name: "Front",
  17680. image: {
  17681. source: "./media/characters/nakata/front.svg",
  17682. extra: 1.005,
  17683. bottom: 0.01
  17684. }
  17685. },
  17686. },
  17687. [
  17688. {
  17689. name: "Normal",
  17690. height: math.unit(7, "feet"),
  17691. default: true
  17692. },
  17693. {
  17694. name: "Big",
  17695. height: math.unit(14, "feet")
  17696. },
  17697. {
  17698. name: "Macro",
  17699. height: math.unit(400, "feet")
  17700. },
  17701. ]
  17702. ))
  17703. characterMakers.push(() => makeCharacter(
  17704. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17705. {
  17706. front: {
  17707. height: math.unit(4.91, "feet"),
  17708. weight: math.unit(100, "lb"),
  17709. name: "Front",
  17710. image: {
  17711. source: "./media/characters/lily/front.svg",
  17712. extra: 1585 / 1415,
  17713. bottom: 0.02
  17714. }
  17715. },
  17716. },
  17717. [
  17718. {
  17719. name: "Normal",
  17720. height: math.unit(4.91, "feet"),
  17721. default: true
  17722. },
  17723. ]
  17724. ))
  17725. characterMakers.push(() => makeCharacter(
  17726. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17727. {
  17728. laying: {
  17729. height: math.unit(4 + 4 / 12, "feet"),
  17730. weight: math.unit(600, "lb"),
  17731. name: "Laying",
  17732. image: {
  17733. source: "./media/characters/sheila/laying.svg",
  17734. extra: 1333 / 1265,
  17735. bottom: 0.16
  17736. }
  17737. },
  17738. },
  17739. [
  17740. {
  17741. name: "Normal",
  17742. height: math.unit(4 + 4 / 12, "feet"),
  17743. default: true
  17744. },
  17745. ]
  17746. ))
  17747. characterMakers.push(() => makeCharacter(
  17748. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17749. {
  17750. front: {
  17751. height: math.unit(6, "feet"),
  17752. weight: math.unit(190, "lb"),
  17753. name: "Front",
  17754. image: {
  17755. source: "./media/characters/sax/front.svg",
  17756. extra: 1187 / 973,
  17757. bottom: 0.042
  17758. }
  17759. },
  17760. },
  17761. [
  17762. {
  17763. name: "Micro",
  17764. height: math.unit(4, "inches"),
  17765. default: true
  17766. },
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17771. {
  17772. front: {
  17773. height: math.unit(6, "feet"),
  17774. weight: math.unit(150, "lb"),
  17775. name: "Front",
  17776. image: {
  17777. source: "./media/characters/pandora/front.svg",
  17778. extra: 2720 / 2556,
  17779. bottom: 0.015
  17780. }
  17781. },
  17782. back: {
  17783. height: math.unit(6, "feet"),
  17784. weight: math.unit(150, "lb"),
  17785. name: "Back",
  17786. image: {
  17787. source: "./media/characters/pandora/back.svg",
  17788. extra: 2720 / 2556,
  17789. bottom: 0.01
  17790. }
  17791. },
  17792. beans: {
  17793. height: math.unit(6 / 8, "feet"),
  17794. name: "Beans",
  17795. image: {
  17796. source: "./media/characters/pandora/beans.svg"
  17797. }
  17798. },
  17799. collar: {
  17800. height: math.unit(0.31, "feet"),
  17801. name: "Collar",
  17802. image: {
  17803. source: "./media/characters/pandora/collar.svg"
  17804. }
  17805. },
  17806. skirt: {
  17807. height: math.unit(6, "feet"),
  17808. weight: math.unit(150, "lb"),
  17809. name: "Skirt",
  17810. image: {
  17811. source: "./media/characters/pandora/skirt.svg",
  17812. extra: 1622 / 1525,
  17813. bottom: 0.015
  17814. }
  17815. },
  17816. hoodie: {
  17817. height: math.unit(6, "feet"),
  17818. weight: math.unit(150, "lb"),
  17819. name: "Hoodie",
  17820. image: {
  17821. source: "./media/characters/pandora/hoodie.svg",
  17822. extra: 1622 / 1525,
  17823. bottom: 0.015
  17824. }
  17825. },
  17826. casual: {
  17827. height: math.unit(6, "feet"),
  17828. weight: math.unit(150, "lb"),
  17829. name: "Casual",
  17830. image: {
  17831. source: "./media/characters/pandora/casual.svg",
  17832. extra: 1622 / 1525,
  17833. bottom: 0.015
  17834. }
  17835. },
  17836. },
  17837. [
  17838. {
  17839. name: "Normal",
  17840. height: math.unit(6, "feet")
  17841. },
  17842. {
  17843. name: "Big Steppy",
  17844. height: math.unit(1, "km"),
  17845. default: true
  17846. },
  17847. {
  17848. name: "Galactic Steppy",
  17849. height: math.unit(2, "gigameters")
  17850. },
  17851. ]
  17852. ))
  17853. characterMakers.push(() => makeCharacter(
  17854. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17855. {
  17856. side: {
  17857. height: math.unit(10, "feet"),
  17858. weight: math.unit(800, "kg"),
  17859. name: "Side",
  17860. image: {
  17861. source: "./media/characters/venio-darcony/side.svg",
  17862. extra: 1373 / 1003,
  17863. bottom: 0.037
  17864. }
  17865. },
  17866. front: {
  17867. height: math.unit(19, "feet"),
  17868. weight: math.unit(800, "kg"),
  17869. name: "Front",
  17870. image: {
  17871. source: "./media/characters/venio-darcony/front.svg"
  17872. }
  17873. },
  17874. back: {
  17875. height: math.unit(19, "feet"),
  17876. weight: math.unit(800, "kg"),
  17877. name: "Back",
  17878. image: {
  17879. source: "./media/characters/venio-darcony/back.svg"
  17880. }
  17881. },
  17882. sideNsfw: {
  17883. height: math.unit(10, "feet"),
  17884. weight: math.unit(800, "kg"),
  17885. name: "Side (NSFW)",
  17886. image: {
  17887. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17888. extra: 1373 / 1003,
  17889. bottom: 0.037
  17890. }
  17891. },
  17892. frontNsfw: {
  17893. height: math.unit(19, "feet"),
  17894. weight: math.unit(800, "kg"),
  17895. name: "Front (NSFW)",
  17896. image: {
  17897. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17898. }
  17899. },
  17900. backNsfw: {
  17901. height: math.unit(19, "feet"),
  17902. weight: math.unit(800, "kg"),
  17903. name: "Back (NSFW)",
  17904. image: {
  17905. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17906. }
  17907. },
  17908. sideArmored: {
  17909. height: math.unit(10, "feet"),
  17910. weight: math.unit(800, "kg"),
  17911. name: "Side (Armored)",
  17912. image: {
  17913. source: "./media/characters/venio-darcony/side-armored.svg",
  17914. extra: 1373 / 1003,
  17915. bottom: 0.037
  17916. }
  17917. },
  17918. frontArmored: {
  17919. height: math.unit(19, "feet"),
  17920. weight: math.unit(900, "kg"),
  17921. name: "Front (Armored)",
  17922. image: {
  17923. source: "./media/characters/venio-darcony/front-armored.svg"
  17924. }
  17925. },
  17926. backArmored: {
  17927. height: math.unit(19, "feet"),
  17928. weight: math.unit(900, "kg"),
  17929. name: "Back (Armored)",
  17930. image: {
  17931. source: "./media/characters/venio-darcony/back-armored.svg"
  17932. }
  17933. },
  17934. sword: {
  17935. height: math.unit(10, "feet"),
  17936. weight: math.unit(50, "lb"),
  17937. name: "Sword",
  17938. image: {
  17939. source: "./media/characters/venio-darcony/sword.svg"
  17940. }
  17941. },
  17942. },
  17943. [
  17944. {
  17945. name: "Normal",
  17946. height: math.unit(10, "feet")
  17947. },
  17948. {
  17949. name: "Macro",
  17950. height: math.unit(130, "feet"),
  17951. default: true
  17952. },
  17953. {
  17954. name: "Macro+",
  17955. height: math.unit(240, "feet")
  17956. },
  17957. ]
  17958. ))
  17959. characterMakers.push(() => makeCharacter(
  17960. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17961. {
  17962. front: {
  17963. height: math.unit(6, "feet"),
  17964. weight: math.unit(150, "lb"),
  17965. name: "Front",
  17966. image: {
  17967. source: "./media/characters/veski/front.svg",
  17968. extra: 1299 / 1225,
  17969. bottom: 0.04
  17970. }
  17971. },
  17972. back: {
  17973. height: math.unit(6, "feet"),
  17974. weight: math.unit(150, "lb"),
  17975. name: "Back",
  17976. image: {
  17977. source: "./media/characters/veski/back.svg",
  17978. extra: 1299 / 1225,
  17979. bottom: 0.008
  17980. }
  17981. },
  17982. maw: {
  17983. height: math.unit(1.5 * 1.21, "feet"),
  17984. name: "Maw",
  17985. image: {
  17986. source: "./media/characters/veski/maw.svg"
  17987. }
  17988. },
  17989. },
  17990. [
  17991. {
  17992. name: "Macro",
  17993. height: math.unit(2, "km"),
  17994. default: true
  17995. },
  17996. ]
  17997. ))
  17998. characterMakers.push(() => makeCharacter(
  17999. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18000. {
  18001. front: {
  18002. height: math.unit(5 + 7 / 12, "feet"),
  18003. name: "Front",
  18004. image: {
  18005. source: "./media/characters/isabelle/front.svg",
  18006. extra: 2130 / 1976,
  18007. bottom: 0.05
  18008. }
  18009. },
  18010. },
  18011. [
  18012. {
  18013. name: "Supermicro",
  18014. height: math.unit(10, "micrometers")
  18015. },
  18016. {
  18017. name: "Micro",
  18018. height: math.unit(1, "inch")
  18019. },
  18020. {
  18021. name: "Tiny",
  18022. height: math.unit(5, "inches")
  18023. },
  18024. {
  18025. name: "Standard",
  18026. height: math.unit(5 + 7 / 12, "inches")
  18027. },
  18028. {
  18029. name: "Macro",
  18030. height: math.unit(80, "meters"),
  18031. default: true
  18032. },
  18033. {
  18034. name: "Megamacro",
  18035. height: math.unit(250, "meters")
  18036. },
  18037. {
  18038. name: "Gigamacro",
  18039. height: math.unit(5, "km")
  18040. },
  18041. {
  18042. name: "Cosmic",
  18043. height: math.unit(2.5e6, "miles")
  18044. },
  18045. ]
  18046. ))
  18047. characterMakers.push(() => makeCharacter(
  18048. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18049. {
  18050. front: {
  18051. height: math.unit(6, "feet"),
  18052. weight: math.unit(150, "lb"),
  18053. name: "Front",
  18054. image: {
  18055. source: "./media/characters/hanzo/front.svg",
  18056. extra: 374 / 344,
  18057. bottom: 0.02
  18058. }
  18059. },
  18060. },
  18061. [
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(8, "feet"),
  18065. default: true
  18066. },
  18067. ]
  18068. ))
  18069. characterMakers.push(() => makeCharacter(
  18070. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18071. {
  18072. front: {
  18073. height: math.unit(7, "feet"),
  18074. weight: math.unit(130, "lb"),
  18075. name: "Front",
  18076. image: {
  18077. source: "./media/characters/anna/front.svg",
  18078. extra: 169 / 145,
  18079. bottom: 0.06
  18080. }
  18081. },
  18082. full: {
  18083. height: math.unit(4.96, "feet"),
  18084. weight: math.unit(220, "lb"),
  18085. name: "Full",
  18086. image: {
  18087. source: "./media/characters/anna/full.svg",
  18088. extra: 138 / 114,
  18089. bottom: 0.15
  18090. }
  18091. },
  18092. tongue: {
  18093. height: math.unit(2.53, "feet"),
  18094. name: "Tongue",
  18095. image: {
  18096. source: "./media/characters/anna/tongue.svg"
  18097. }
  18098. },
  18099. },
  18100. [
  18101. {
  18102. name: "Normal",
  18103. height: math.unit(7, "feet"),
  18104. default: true
  18105. },
  18106. ]
  18107. ))
  18108. characterMakers.push(() => makeCharacter(
  18109. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18110. {
  18111. front: {
  18112. height: math.unit(7, "feet"),
  18113. weight: math.unit(150, "lb"),
  18114. name: "Front",
  18115. image: {
  18116. source: "./media/characters/ian-corvid/front.svg",
  18117. extra: 150 / 142,
  18118. bottom: 0.02
  18119. }
  18120. },
  18121. back: {
  18122. height: math.unit(7, "feet"),
  18123. weight: math.unit(150, "lb"),
  18124. name: "Back",
  18125. image: {
  18126. source: "./media/characters/ian-corvid/back.svg",
  18127. extra: 150 / 143,
  18128. bottom: 0.01
  18129. }
  18130. },
  18131. stomping: {
  18132. height: math.unit(7, "feet"),
  18133. weight: math.unit(150, "lb"),
  18134. name: "Stomping",
  18135. image: {
  18136. source: "./media/characters/ian-corvid/stomping.svg",
  18137. extra: 76 / 72
  18138. }
  18139. },
  18140. sitting: {
  18141. height: math.unit(7 / 1.8, "feet"),
  18142. weight: math.unit(150, "lb"),
  18143. name: "Sitting",
  18144. image: {
  18145. source: "./media/characters/ian-corvid/sitting.svg",
  18146. extra: 1400 / 1269,
  18147. bottom: 0.15
  18148. }
  18149. },
  18150. },
  18151. [
  18152. {
  18153. name: "Tiny Microw",
  18154. height: math.unit(1, "inch")
  18155. },
  18156. {
  18157. name: "Microw",
  18158. height: math.unit(6, "inches")
  18159. },
  18160. {
  18161. name: "Crow",
  18162. height: math.unit(7 + 1 / 12, "feet"),
  18163. default: true
  18164. },
  18165. {
  18166. name: "Macrow",
  18167. height: math.unit(176, "feet")
  18168. },
  18169. ]
  18170. ))
  18171. characterMakers.push(() => makeCharacter(
  18172. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18173. {
  18174. front: {
  18175. height: math.unit(5 + 7 / 12, "feet"),
  18176. weight: math.unit(147, "lb"),
  18177. name: "Front",
  18178. image: {
  18179. source: "./media/characters/natalie-kellon/front.svg",
  18180. extra: 1214 / 1141,
  18181. bottom: 0.02
  18182. }
  18183. },
  18184. },
  18185. [
  18186. {
  18187. name: "Micro",
  18188. height: math.unit(1 / 16, "inch")
  18189. },
  18190. {
  18191. name: "Tiny",
  18192. height: math.unit(4, "inches")
  18193. },
  18194. {
  18195. name: "Normal",
  18196. height: math.unit(5 + 7 / 12, "feet"),
  18197. default: true
  18198. },
  18199. {
  18200. name: "Amazon",
  18201. height: math.unit(12, "feet")
  18202. },
  18203. {
  18204. name: "Giantess",
  18205. height: math.unit(160, "meters")
  18206. },
  18207. {
  18208. name: "Titaness",
  18209. height: math.unit(800, "meters")
  18210. },
  18211. ]
  18212. ))
  18213. characterMakers.push(() => makeCharacter(
  18214. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18215. {
  18216. front: {
  18217. height: math.unit(6, "feet"),
  18218. weight: math.unit(150, "lb"),
  18219. name: "Front",
  18220. image: {
  18221. source: "./media/characters/alluria/front.svg",
  18222. extra: 806 / 738,
  18223. bottom: 0.01
  18224. }
  18225. },
  18226. side: {
  18227. height: math.unit(6, "feet"),
  18228. weight: math.unit(150, "lb"),
  18229. name: "Side",
  18230. image: {
  18231. source: "./media/characters/alluria/side.svg",
  18232. extra: 800 / 750,
  18233. }
  18234. },
  18235. back: {
  18236. height: math.unit(6, "feet"),
  18237. weight: math.unit(150, "lb"),
  18238. name: "Back",
  18239. image: {
  18240. source: "./media/characters/alluria/back.svg",
  18241. extra: 806 / 738,
  18242. }
  18243. },
  18244. frontMaid: {
  18245. height: math.unit(6, "feet"),
  18246. weight: math.unit(150, "lb"),
  18247. name: "Front (Maid)",
  18248. image: {
  18249. source: "./media/characters/alluria/front-maid.svg",
  18250. extra: 806 / 738,
  18251. bottom: 0.01
  18252. }
  18253. },
  18254. sideMaid: {
  18255. height: math.unit(6, "feet"),
  18256. weight: math.unit(150, "lb"),
  18257. name: "Side (Maid)",
  18258. image: {
  18259. source: "./media/characters/alluria/side-maid.svg",
  18260. extra: 800 / 750,
  18261. bottom: 0.005
  18262. }
  18263. },
  18264. backMaid: {
  18265. height: math.unit(6, "feet"),
  18266. weight: math.unit(150, "lb"),
  18267. name: "Back (Maid)",
  18268. image: {
  18269. source: "./media/characters/alluria/back-maid.svg",
  18270. extra: 806 / 738,
  18271. }
  18272. },
  18273. },
  18274. [
  18275. {
  18276. name: "Micro",
  18277. height: math.unit(6, "inches"),
  18278. default: true
  18279. },
  18280. ]
  18281. ))
  18282. characterMakers.push(() => makeCharacter(
  18283. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18284. {
  18285. front: {
  18286. height: math.unit(6, "feet"),
  18287. weight: math.unit(150, "lb"),
  18288. name: "Front",
  18289. image: {
  18290. source: "./media/characters/kyle/front.svg",
  18291. extra: 1069 / 962,
  18292. bottom: 77.228 / 1727.45
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "Macro",
  18299. height: math.unit(150, "feet"),
  18300. default: true
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18306. {
  18307. front: {
  18308. height: math.unit(6, "feet"),
  18309. weight: math.unit(300, "lb"),
  18310. name: "Front",
  18311. image: {
  18312. source: "./media/characters/duncan/front.svg",
  18313. extra: 1650 / 1482,
  18314. bottom: 0.05
  18315. }
  18316. },
  18317. },
  18318. [
  18319. {
  18320. name: "Macro",
  18321. height: math.unit(100, "feet"),
  18322. default: true
  18323. },
  18324. ]
  18325. ))
  18326. characterMakers.push(() => makeCharacter(
  18327. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18328. {
  18329. front: {
  18330. height: math.unit(5 + 4 / 12, "feet"),
  18331. weight: math.unit(220, "lb"),
  18332. name: "Front",
  18333. image: {
  18334. source: "./media/characters/memory/front.svg",
  18335. extra: 3641 / 3545,
  18336. bottom: 0.03
  18337. }
  18338. },
  18339. back: {
  18340. height: math.unit(5 + 4 / 12, "feet"),
  18341. weight: math.unit(220, "lb"),
  18342. name: "Back",
  18343. image: {
  18344. source: "./media/characters/memory/back.svg",
  18345. extra: 3641 / 3545,
  18346. bottom: 0.025
  18347. }
  18348. },
  18349. frontSkirt: {
  18350. height: math.unit(5 + 4 / 12, "feet"),
  18351. weight: math.unit(220, "lb"),
  18352. name: "Front (Skirt)",
  18353. image: {
  18354. source: "./media/characters/memory/front-skirt.svg",
  18355. extra: 3641 / 3545,
  18356. bottom: 0.03
  18357. }
  18358. },
  18359. frontDress: {
  18360. height: math.unit(5 + 4 / 12, "feet"),
  18361. weight: math.unit(220, "lb"),
  18362. name: "Front (Dress)",
  18363. image: {
  18364. source: "./media/characters/memory/front-dress.svg",
  18365. extra: 3641 / 3545,
  18366. bottom: 0.03
  18367. }
  18368. },
  18369. },
  18370. [
  18371. {
  18372. name: "Micro",
  18373. height: math.unit(6, "inches"),
  18374. default: true
  18375. },
  18376. {
  18377. name: "Normal",
  18378. height: math.unit(5 + 4 / 12, "feet")
  18379. },
  18380. ]
  18381. ))
  18382. characterMakers.push(() => makeCharacter(
  18383. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18384. {
  18385. front: {
  18386. height: math.unit(4 + 11 / 12, "feet"),
  18387. weight: math.unit(100, "lb"),
  18388. name: "Front",
  18389. image: {
  18390. source: "./media/characters/luno/front.svg",
  18391. extra: 1535 / 1487,
  18392. bottom: 0.03
  18393. }
  18394. },
  18395. },
  18396. [
  18397. {
  18398. name: "Micro",
  18399. height: math.unit(3, "inches")
  18400. },
  18401. {
  18402. name: "Normal",
  18403. height: math.unit(4 + 11 / 12, "feet"),
  18404. default: true
  18405. },
  18406. {
  18407. name: "Macro",
  18408. height: math.unit(300, "feet")
  18409. },
  18410. {
  18411. name: "Megamacro",
  18412. height: math.unit(700, "miles")
  18413. },
  18414. ]
  18415. ))
  18416. characterMakers.push(() => makeCharacter(
  18417. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18418. {
  18419. front: {
  18420. height: math.unit(6 + 2 / 12, "feet"),
  18421. weight: math.unit(170, "lb"),
  18422. name: "Front",
  18423. image: {
  18424. source: "./media/characters/jamesy/front.svg",
  18425. extra: 440 / 382,
  18426. bottom: 0.005
  18427. }
  18428. },
  18429. },
  18430. [
  18431. {
  18432. name: "Micro",
  18433. height: math.unit(3, "inches")
  18434. },
  18435. {
  18436. name: "Normal",
  18437. height: math.unit(6 + 2 / 12, "feet"),
  18438. default: true
  18439. },
  18440. {
  18441. name: "Macro",
  18442. height: math.unit(300, "feet")
  18443. },
  18444. {
  18445. name: "Megamacro",
  18446. height: math.unit(700, "miles")
  18447. },
  18448. ]
  18449. ))
  18450. characterMakers.push(() => makeCharacter(
  18451. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18452. {
  18453. front: {
  18454. height: math.unit(6, "feet"),
  18455. weight: math.unit(160, "lb"),
  18456. name: "Front",
  18457. image: {
  18458. source: "./media/characters/mark/front.svg",
  18459. extra: 3300 / 3100,
  18460. bottom: 136.42 / 3440.47
  18461. }
  18462. },
  18463. },
  18464. [
  18465. {
  18466. name: "Macro",
  18467. height: math.unit(120, "meters")
  18468. },
  18469. {
  18470. name: "Bigger Macro",
  18471. height: math.unit(350, "meters")
  18472. },
  18473. {
  18474. name: "Megamacro",
  18475. height: math.unit(8, "km"),
  18476. default: true
  18477. },
  18478. {
  18479. name: "Continental",
  18480. height: math.unit(4550, "km")
  18481. },
  18482. {
  18483. name: "Planetary",
  18484. height: math.unit(65000, "km")
  18485. },
  18486. ]
  18487. ))
  18488. characterMakers.push(() => makeCharacter(
  18489. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18490. {
  18491. front: {
  18492. height: math.unit(6, "feet"),
  18493. weight: math.unit(400, "lb"),
  18494. name: "Front",
  18495. image: {
  18496. source: "./media/characters/mac/front.svg",
  18497. extra: 1048 / 987.7,
  18498. bottom: 60 / 1107.6,
  18499. }
  18500. },
  18501. },
  18502. [
  18503. {
  18504. name: "Macro",
  18505. height: math.unit(500, "feet"),
  18506. default: true
  18507. },
  18508. ]
  18509. ))
  18510. characterMakers.push(() => makeCharacter(
  18511. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18512. {
  18513. front: {
  18514. height: math.unit(5 + 2 / 12, "feet"),
  18515. weight: math.unit(190, "lb"),
  18516. name: "Front",
  18517. image: {
  18518. source: "./media/characters/bari/front.svg",
  18519. extra: 3156 / 2880,
  18520. bottom: 0.03
  18521. }
  18522. },
  18523. back: {
  18524. height: math.unit(5 + 2 / 12, "feet"),
  18525. weight: math.unit(190, "lb"),
  18526. name: "Back",
  18527. image: {
  18528. source: "./media/characters/bari/back.svg",
  18529. extra: 3260 / 2834,
  18530. bottom: 0.025
  18531. }
  18532. },
  18533. frontPlush: {
  18534. height: math.unit(5 + 2 / 12, "feet"),
  18535. weight: math.unit(190, "lb"),
  18536. name: "Front (Plush)",
  18537. image: {
  18538. source: "./media/characters/bari/front-plush.svg",
  18539. extra: 1112 / 1061,
  18540. bottom: 0.002
  18541. }
  18542. },
  18543. },
  18544. [
  18545. {
  18546. name: "Micro",
  18547. height: math.unit(3, "inches")
  18548. },
  18549. {
  18550. name: "Normal",
  18551. height: math.unit(5 + 2 / 12, "feet"),
  18552. default: true
  18553. },
  18554. {
  18555. name: "Macro",
  18556. height: math.unit(20, "feet")
  18557. },
  18558. ]
  18559. ))
  18560. characterMakers.push(() => makeCharacter(
  18561. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18562. {
  18563. front: {
  18564. height: math.unit(6 + 1 / 12, "feet"),
  18565. weight: math.unit(275, "lb"),
  18566. name: "Front",
  18567. image: {
  18568. source: "./media/characters/hunter-misha-raven/front.svg"
  18569. }
  18570. },
  18571. },
  18572. [
  18573. {
  18574. name: "Mortal",
  18575. height: math.unit(6 + 1 / 12, "feet")
  18576. },
  18577. {
  18578. name: "Divine",
  18579. height: math.unit(1.12134e34, "parsecs"),
  18580. default: true
  18581. },
  18582. ]
  18583. ))
  18584. characterMakers.push(() => makeCharacter(
  18585. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18586. {
  18587. front: {
  18588. height: math.unit(6 + 3 / 12, "feet"),
  18589. weight: math.unit(220, "lb"),
  18590. name: "Front",
  18591. image: {
  18592. source: "./media/characters/max-calore/front.svg",
  18593. extra: 1700 / 1648,
  18594. bottom: 0.01
  18595. }
  18596. },
  18597. back: {
  18598. height: math.unit(6 + 3 / 12, "feet"),
  18599. weight: math.unit(220, "lb"),
  18600. name: "Back",
  18601. image: {
  18602. source: "./media/characters/max-calore/back.svg",
  18603. extra: 1700 / 1648,
  18604. bottom: 0.01
  18605. }
  18606. },
  18607. },
  18608. [
  18609. {
  18610. name: "Normal",
  18611. height: math.unit(6 + 3 / 12, "feet"),
  18612. default: true
  18613. },
  18614. ]
  18615. ))
  18616. characterMakers.push(() => makeCharacter(
  18617. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18618. {
  18619. side: {
  18620. height: math.unit(2 + 8 / 12, "feet"),
  18621. weight: math.unit(99, "lb"),
  18622. name: "Side",
  18623. image: {
  18624. source: "./media/characters/aspen/side.svg",
  18625. extra: 152 / 138,
  18626. bottom: 0.032
  18627. }
  18628. },
  18629. },
  18630. [
  18631. {
  18632. name: "Normal",
  18633. height: math.unit(2 + 8 / 12, "feet"),
  18634. default: true
  18635. },
  18636. ]
  18637. ))
  18638. characterMakers.push(() => makeCharacter(
  18639. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18640. {
  18641. side: {
  18642. height: math.unit(3 + 2 / 12, "feet"),
  18643. weight: math.unit(224, "lb"),
  18644. name: "Side",
  18645. image: {
  18646. source: "./media/characters/sheila-feral-wolf/side.svg",
  18647. extra: 179 / 166,
  18648. bottom: 0.03
  18649. }
  18650. },
  18651. },
  18652. [
  18653. {
  18654. name: "Normal",
  18655. height: math.unit(3 + 2 / 12, "feet"),
  18656. default: true
  18657. },
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18662. {
  18663. side: {
  18664. height: math.unit(1 + 9 / 12, "feet"),
  18665. weight: math.unit(38, "lb"),
  18666. name: "Side",
  18667. image: {
  18668. source: "./media/characters/michelle/side.svg",
  18669. extra: 147 / 136.7,
  18670. bottom: 0.03
  18671. }
  18672. },
  18673. },
  18674. [
  18675. {
  18676. name: "Normal",
  18677. height: math.unit(1 + 9 / 12, "feet"),
  18678. default: true
  18679. },
  18680. ]
  18681. ))
  18682. characterMakers.push(() => makeCharacter(
  18683. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18684. {
  18685. front: {
  18686. height: math.unit(1.54, "feet"),
  18687. weight: math.unit(50, "lb"),
  18688. name: "Front",
  18689. image: {
  18690. source: "./media/characters/nino/front.svg"
  18691. }
  18692. },
  18693. },
  18694. [
  18695. {
  18696. name: "Normal",
  18697. height: math.unit(1.54, "feet"),
  18698. default: true
  18699. },
  18700. ]
  18701. ))
  18702. characterMakers.push(() => makeCharacter(
  18703. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18704. {
  18705. front: {
  18706. height: math.unit(1.49, "feet"),
  18707. weight: math.unit(45, "lb"),
  18708. name: "Front",
  18709. image: {
  18710. source: "./media/characters/viola/front.svg"
  18711. }
  18712. },
  18713. },
  18714. [
  18715. {
  18716. name: "Normal",
  18717. height: math.unit(1.49, "feet"),
  18718. default: true
  18719. },
  18720. ]
  18721. ))
  18722. characterMakers.push(() => makeCharacter(
  18723. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18724. {
  18725. front: {
  18726. height: math.unit(6 + 5 / 12, "feet"),
  18727. weight: math.unit(580, "lb"),
  18728. name: "Front",
  18729. image: {
  18730. source: "./media/characters/atlas/front.svg",
  18731. extra: 298.5 / 290,
  18732. bottom: 0.015
  18733. }
  18734. },
  18735. },
  18736. [
  18737. {
  18738. name: "Normal",
  18739. height: math.unit(6 + 5 / 12, "feet"),
  18740. default: true
  18741. },
  18742. ]
  18743. ))
  18744. characterMakers.push(() => makeCharacter(
  18745. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18746. {
  18747. side: {
  18748. height: math.unit(15.6, "inches"),
  18749. weight: math.unit(10, "lb"),
  18750. name: "Side",
  18751. image: {
  18752. source: "./media/characters/davy/side.svg",
  18753. extra: 200 / 170,
  18754. bottom: 0.01
  18755. }
  18756. },
  18757. },
  18758. [
  18759. {
  18760. name: "Normal",
  18761. height: math.unit(15.6, "inches"),
  18762. default: true
  18763. },
  18764. ]
  18765. ))
  18766. characterMakers.push(() => makeCharacter(
  18767. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18768. {
  18769. side: {
  18770. height: math.unit(4 + 8 / 12, "feet"),
  18771. weight: math.unit(166, "lb"),
  18772. name: "Side",
  18773. image: {
  18774. source: "./media/characters/fiona/side.svg",
  18775. extra: 232 / 220,
  18776. bottom: 0.03
  18777. }
  18778. },
  18779. },
  18780. [
  18781. {
  18782. name: "Normal",
  18783. height: math.unit(4 + 8 / 12, "feet"),
  18784. default: true
  18785. },
  18786. ]
  18787. ))
  18788. characterMakers.push(() => makeCharacter(
  18789. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18790. {
  18791. front: {
  18792. height: math.unit(26, "inches"),
  18793. weight: math.unit(35, "lb"),
  18794. name: "Front",
  18795. image: {
  18796. source: "./media/characters/lyla/front.svg",
  18797. bottom: 0.1
  18798. }
  18799. },
  18800. },
  18801. [
  18802. {
  18803. name: "Normal",
  18804. height: math.unit(3, "feet"),
  18805. default: true
  18806. },
  18807. ]
  18808. ))
  18809. characterMakers.push(() => makeCharacter(
  18810. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18811. {
  18812. side: {
  18813. height: math.unit(1.8, "feet"),
  18814. weight: math.unit(44, "lb"),
  18815. name: "Side",
  18816. image: {
  18817. source: "./media/characters/perseus/side.svg",
  18818. bottom: 0.21
  18819. }
  18820. },
  18821. },
  18822. [
  18823. {
  18824. name: "Normal",
  18825. height: math.unit(1.8, "feet"),
  18826. default: true
  18827. },
  18828. ]
  18829. ))
  18830. characterMakers.push(() => makeCharacter(
  18831. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18832. {
  18833. side: {
  18834. height: math.unit(4 + 2 / 12, "feet"),
  18835. weight: math.unit(20, "lb"),
  18836. name: "Side",
  18837. image: {
  18838. source: "./media/characters/remus/side.svg"
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(4 + 2 / 12, "feet"),
  18846. default: true
  18847. },
  18848. ]
  18849. ))
  18850. characterMakers.push(() => makeCharacter(
  18851. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18852. {
  18853. front: {
  18854. height: math.unit(4 + 11 / 12, "feet"),
  18855. weight: math.unit(114, "lb"),
  18856. name: "Front",
  18857. image: {
  18858. source: "./media/characters/raf/front.svg",
  18859. extra: 1504/1339,
  18860. bottom: 26/1530
  18861. }
  18862. },
  18863. side: {
  18864. height: math.unit(4 + 11 / 12, "feet"),
  18865. weight: math.unit(114, "lb"),
  18866. name: "Side",
  18867. image: {
  18868. source: "./media/characters/raf/side.svg",
  18869. extra: 1466/1316,
  18870. bottom: 29/1495
  18871. }
  18872. },
  18873. paw: {
  18874. height: math.unit(1.45, "feet"),
  18875. name: "Paw",
  18876. image: {
  18877. source: "./media/characters/raf/paw.svg"
  18878. },
  18879. extraAttributes: {
  18880. "toeSize": {
  18881. name: "Toe Size",
  18882. power: 2,
  18883. type: "area",
  18884. base: math.unit(0.004, "m^2")
  18885. },
  18886. "padSize": {
  18887. name: "Pad Size",
  18888. power: 2,
  18889. type: "area",
  18890. base: math.unit(0.04, "m^2")
  18891. },
  18892. "footSize": {
  18893. name: "Foot Size",
  18894. power: 2,
  18895. type: "area",
  18896. base: math.unit(0.08, "m^2")
  18897. },
  18898. }
  18899. },
  18900. },
  18901. [
  18902. {
  18903. name: "Micro",
  18904. height: math.unit(2, "inches")
  18905. },
  18906. {
  18907. name: "Normal",
  18908. height: math.unit(4 + 11 / 12, "feet"),
  18909. default: true
  18910. },
  18911. {
  18912. name: "Macro",
  18913. height: math.unit(70, "feet")
  18914. },
  18915. ]
  18916. ))
  18917. characterMakers.push(() => makeCharacter(
  18918. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18919. {
  18920. front: {
  18921. height: math.unit(1.5, "meters"),
  18922. weight: math.unit(68, "kg"),
  18923. name: "Front",
  18924. image: {
  18925. source: "./media/characters/liam-einarr/front.svg",
  18926. extra: 2822 / 2666
  18927. }
  18928. },
  18929. back: {
  18930. height: math.unit(1.5, "meters"),
  18931. weight: math.unit(68, "kg"),
  18932. name: "Back",
  18933. image: {
  18934. source: "./media/characters/liam-einarr/back.svg",
  18935. extra: 2822 / 2666,
  18936. bottom: 0.015
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Normal",
  18943. height: math.unit(1.5, "meters"),
  18944. default: true
  18945. },
  18946. {
  18947. name: "Macro",
  18948. height: math.unit(150, "meters")
  18949. },
  18950. {
  18951. name: "Megamacro",
  18952. height: math.unit(35, "km")
  18953. },
  18954. ]
  18955. ))
  18956. characterMakers.push(() => makeCharacter(
  18957. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18958. {
  18959. front: {
  18960. height: math.unit(6, "feet"),
  18961. weight: math.unit(75, "kg"),
  18962. name: "Front",
  18963. image: {
  18964. source: "./media/characters/linda/front.svg",
  18965. extra: 930 / 874,
  18966. bottom: 0.004
  18967. }
  18968. },
  18969. },
  18970. [
  18971. {
  18972. name: "Normal",
  18973. height: math.unit(6, "feet"),
  18974. default: true
  18975. },
  18976. ]
  18977. ))
  18978. characterMakers.push(() => makeCharacter(
  18979. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18980. {
  18981. front: {
  18982. height: math.unit(6 + 8 / 12, "feet"),
  18983. weight: math.unit(220, "lb"),
  18984. name: "Front",
  18985. image: {
  18986. source: "./media/characters/caylex/front.svg",
  18987. extra: 821 / 772,
  18988. bottom: 0.07
  18989. }
  18990. },
  18991. back: {
  18992. height: math.unit(6 + 8 / 12, "feet"),
  18993. weight: math.unit(220, "lb"),
  18994. name: "Back",
  18995. image: {
  18996. source: "./media/characters/caylex/back.svg",
  18997. extra: 821 / 772,
  18998. bottom: 0.022
  18999. }
  19000. },
  19001. hand: {
  19002. height: math.unit(1.25, "feet"),
  19003. name: "Hand",
  19004. image: {
  19005. source: "./media/characters/caylex/hand.svg"
  19006. }
  19007. },
  19008. foot: {
  19009. height: math.unit(1.6, "feet"),
  19010. name: "Foot",
  19011. image: {
  19012. source: "./media/characters/caylex/foot.svg"
  19013. }
  19014. },
  19015. armored: {
  19016. height: math.unit(6 + 8 / 12, "feet"),
  19017. weight: math.unit(250, "lb"),
  19018. name: "Armored",
  19019. image: {
  19020. source: "./media/characters/caylex/armored.svg",
  19021. extra: 1420 / 1310,
  19022. bottom: 0.045
  19023. }
  19024. },
  19025. },
  19026. [
  19027. {
  19028. name: "Normal",
  19029. height: math.unit(6 + 8 / 12, "feet"),
  19030. default: true
  19031. },
  19032. {
  19033. name: "Normal+",
  19034. height: math.unit(12, "feet")
  19035. },
  19036. ]
  19037. ))
  19038. characterMakers.push(() => makeCharacter(
  19039. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19040. {
  19041. front: {
  19042. height: math.unit(7 + 6 / 12, "feet"),
  19043. weight: math.unit(288, "lb"),
  19044. name: "Front",
  19045. image: {
  19046. source: "./media/characters/alana/front.svg",
  19047. extra: 679 / 653,
  19048. bottom: 22.5 / 701
  19049. }
  19050. },
  19051. },
  19052. [
  19053. {
  19054. name: "Normal",
  19055. height: math.unit(7 + 6 / 12, "feet")
  19056. },
  19057. {
  19058. name: "Large",
  19059. height: math.unit(50, "feet")
  19060. },
  19061. {
  19062. name: "Macro",
  19063. height: math.unit(100, "feet"),
  19064. default: true
  19065. },
  19066. {
  19067. name: "Macro+",
  19068. height: math.unit(200, "feet")
  19069. },
  19070. ]
  19071. ))
  19072. characterMakers.push(() => makeCharacter(
  19073. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19074. {
  19075. front: {
  19076. height: math.unit(6 + 1 / 12, "feet"),
  19077. weight: math.unit(210, "lb"),
  19078. name: "Front",
  19079. image: {
  19080. source: "./media/characters/hasani/front.svg",
  19081. extra: 244 / 232,
  19082. bottom: 0.01
  19083. }
  19084. },
  19085. back: {
  19086. height: math.unit(6 + 1 / 12, "feet"),
  19087. weight: math.unit(210, "lb"),
  19088. name: "Back",
  19089. image: {
  19090. source: "./media/characters/hasani/back.svg",
  19091. extra: 244 / 232,
  19092. bottom: 0.01
  19093. }
  19094. },
  19095. },
  19096. [
  19097. {
  19098. name: "Normal",
  19099. height: math.unit(6 + 1 / 12, "feet")
  19100. },
  19101. {
  19102. name: "Macro",
  19103. height: math.unit(175, "feet"),
  19104. default: true
  19105. },
  19106. ]
  19107. ))
  19108. characterMakers.push(() => makeCharacter(
  19109. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19110. {
  19111. front: {
  19112. height: math.unit(1.82, "meters"),
  19113. weight: math.unit(140, "lb"),
  19114. name: "Front",
  19115. image: {
  19116. source: "./media/characters/nita/front.svg",
  19117. extra: 2473 / 2363,
  19118. bottom: 0.01
  19119. }
  19120. },
  19121. },
  19122. [
  19123. {
  19124. name: "Normal",
  19125. height: math.unit(1.82, "m")
  19126. },
  19127. {
  19128. name: "Macro",
  19129. height: math.unit(300, "m")
  19130. },
  19131. {
  19132. name: "Mistake Canon",
  19133. height: math.unit(0.5, "miles"),
  19134. default: true
  19135. },
  19136. {
  19137. name: "Big Mistake",
  19138. height: math.unit(13, "miles")
  19139. },
  19140. {
  19141. name: "Playing God",
  19142. height: math.unit(2450, "miles")
  19143. },
  19144. ]
  19145. ))
  19146. characterMakers.push(() => makeCharacter(
  19147. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19148. {
  19149. front: {
  19150. height: math.unit(4, "feet"),
  19151. weight: math.unit(120, "lb"),
  19152. name: "Front",
  19153. image: {
  19154. source: "./media/characters/shiriko/front.svg",
  19155. extra: 970/934,
  19156. bottom: 5/975
  19157. }
  19158. },
  19159. },
  19160. [
  19161. {
  19162. name: "Normal",
  19163. height: math.unit(4, "feet"),
  19164. default: true
  19165. },
  19166. ]
  19167. ))
  19168. characterMakers.push(() => makeCharacter(
  19169. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19170. {
  19171. front: {
  19172. height: math.unit(6, "feet"),
  19173. name: "front",
  19174. image: {
  19175. source: "./media/characters/deja/front.svg",
  19176. extra: 926 / 840,
  19177. bottom: 0.07
  19178. }
  19179. },
  19180. },
  19181. [
  19182. {
  19183. name: "Planck Length",
  19184. height: math.unit(1.6e-35, "meters")
  19185. },
  19186. {
  19187. name: "Normal",
  19188. height: math.unit(30.48, "meters"),
  19189. default: true
  19190. },
  19191. {
  19192. name: "Universal",
  19193. height: math.unit(8.8e26, "meters")
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19199. {
  19200. side: {
  19201. height: math.unit(8, "feet"),
  19202. weight: math.unit(6300, "lb"),
  19203. name: "Side",
  19204. image: {
  19205. source: "./media/characters/anima/side.svg",
  19206. bottom: 0.035
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(8, "feet"),
  19214. default: true
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19220. {
  19221. front: {
  19222. height: math.unit(8, "feet"),
  19223. weight: math.unit(350, "lb"),
  19224. name: "Front",
  19225. image: {
  19226. source: "./media/characters/bianca/front.svg",
  19227. extra: 234 / 225,
  19228. bottom: 0.03
  19229. }
  19230. },
  19231. },
  19232. [
  19233. {
  19234. name: "Normal",
  19235. height: math.unit(8, "feet"),
  19236. default: true
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19242. {
  19243. front: {
  19244. height: math.unit(11 + 5/12, "feet"),
  19245. weight: math.unit(1200, "lb"),
  19246. name: "Front",
  19247. image: {
  19248. source: "./media/characters/adinia/front.svg",
  19249. extra: 1767/1641,
  19250. bottom: 44/1811
  19251. },
  19252. extraAttributes: {
  19253. "energyIntake": {
  19254. name: "Energy Intake",
  19255. power: 3,
  19256. type: "energy",
  19257. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19258. },
  19259. }
  19260. },
  19261. back: {
  19262. height: math.unit(11 + 5/12, "feet"),
  19263. weight: math.unit(1200, "lb"),
  19264. name: "Back",
  19265. image: {
  19266. source: "./media/characters/adinia/back.svg",
  19267. extra: 1834/1684,
  19268. bottom: 14/1848
  19269. },
  19270. extraAttributes: {
  19271. "energyIntake": {
  19272. name: "Energy Intake",
  19273. power: 3,
  19274. type: "energy",
  19275. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19276. },
  19277. }
  19278. },
  19279. maw: {
  19280. height: math.unit(3.79, "feet"),
  19281. name: "Maw",
  19282. image: {
  19283. source: "./media/characters/adinia/maw.svg"
  19284. }
  19285. },
  19286. rump: {
  19287. height: math.unit(4.6, "feet"),
  19288. name: "Rump",
  19289. image: {
  19290. source: "./media/characters/adinia/rump.svg"
  19291. }
  19292. },
  19293. },
  19294. [
  19295. {
  19296. name: "Normal",
  19297. height: math.unit(11 + 5 / 12, "feet"),
  19298. default: true
  19299. },
  19300. ]
  19301. ))
  19302. characterMakers.push(() => makeCharacter(
  19303. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19304. {
  19305. front: {
  19306. height: math.unit(3, "meters"),
  19307. weight: math.unit(200, "kg"),
  19308. name: "Front",
  19309. image: {
  19310. source: "./media/characters/lykasa/front.svg",
  19311. extra: 1076 / 976,
  19312. bottom: 0.06
  19313. }
  19314. },
  19315. },
  19316. [
  19317. {
  19318. name: "Normal",
  19319. height: math.unit(3, "meters")
  19320. },
  19321. {
  19322. name: "Kaiju",
  19323. height: math.unit(120, "meters"),
  19324. default: true
  19325. },
  19326. {
  19327. name: "Mega Kaiju",
  19328. height: math.unit(240, "km")
  19329. },
  19330. {
  19331. name: "Giga Kaiju",
  19332. height: math.unit(400, "megameters")
  19333. },
  19334. {
  19335. name: "Tera Kaiju",
  19336. height: math.unit(800, "gigameters")
  19337. },
  19338. {
  19339. name: "Kaiju Dragon Goddess",
  19340. height: math.unit(26, "zettaparsecs")
  19341. },
  19342. ]
  19343. ))
  19344. characterMakers.push(() => makeCharacter(
  19345. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19346. {
  19347. side: {
  19348. height: math.unit(283 / 124 * 6, "feet"),
  19349. weight: math.unit(35000, "lb"),
  19350. name: "Side",
  19351. image: {
  19352. source: "./media/characters/malfaren/side.svg",
  19353. extra: 1310/529,
  19354. bottom: 24/1334
  19355. }
  19356. },
  19357. front: {
  19358. height: math.unit(22.36, "feet"),
  19359. weight: math.unit(35000, "lb"),
  19360. name: "Front",
  19361. image: {
  19362. source: "./media/characters/malfaren/front.svg",
  19363. extra: 1237/1115,
  19364. bottom: 32/1269
  19365. }
  19366. },
  19367. maw: {
  19368. height: math.unit(6.9, "feet"),
  19369. name: "Maw",
  19370. image: {
  19371. source: "./media/characters/malfaren/maw.svg"
  19372. }
  19373. },
  19374. dick: {
  19375. height: math.unit(6.19, "feet"),
  19376. name: "Dick",
  19377. image: {
  19378. source: "./media/characters/malfaren/dick.svg"
  19379. }
  19380. },
  19381. eye: {
  19382. height: math.unit(0.69, "feet"),
  19383. name: "Eye",
  19384. image: {
  19385. source: "./media/characters/malfaren/eye.svg"
  19386. }
  19387. },
  19388. },
  19389. [
  19390. {
  19391. name: "Big",
  19392. height: math.unit(283 / 162 * 6, "feet"),
  19393. },
  19394. {
  19395. name: "Bigger",
  19396. height: math.unit(283 / 124 * 6, "feet")
  19397. },
  19398. {
  19399. name: "Massive",
  19400. height: math.unit(283 / 92 * 6, "feet"),
  19401. default: true
  19402. },
  19403. {
  19404. name: "👀💦",
  19405. height: math.unit(283 / 73 * 6, "feet"),
  19406. },
  19407. ]
  19408. ))
  19409. characterMakers.push(() => makeCharacter(
  19410. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19411. {
  19412. front: {
  19413. height: math.unit(1.7, "m"),
  19414. weight: math.unit(70, "kg"),
  19415. name: "Front",
  19416. image: {
  19417. source: "./media/characters/kernel/front.svg",
  19418. extra: 222 / 210,
  19419. bottom: 0.007
  19420. }
  19421. },
  19422. },
  19423. [
  19424. {
  19425. name: "Nano",
  19426. height: math.unit(17, "micrometers")
  19427. },
  19428. {
  19429. name: "Micro",
  19430. height: math.unit(1.7, "mm")
  19431. },
  19432. {
  19433. name: "Small",
  19434. height: math.unit(1.7, "cm")
  19435. },
  19436. {
  19437. name: "Normal",
  19438. height: math.unit(1.7, "m"),
  19439. default: true
  19440. },
  19441. ]
  19442. ))
  19443. characterMakers.push(() => makeCharacter(
  19444. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19445. {
  19446. front: {
  19447. height: math.unit(1.75, "meters"),
  19448. weight: math.unit(65, "kg"),
  19449. name: "Front",
  19450. image: {
  19451. source: "./media/characters/jayne-folest/front.svg",
  19452. extra: 2115 / 2007,
  19453. bottom: 0.02
  19454. }
  19455. },
  19456. back: {
  19457. height: math.unit(1.75, "meters"),
  19458. weight: math.unit(65, "kg"),
  19459. name: "Back",
  19460. image: {
  19461. source: "./media/characters/jayne-folest/back.svg",
  19462. extra: 2115 / 2007,
  19463. bottom: 0.005
  19464. }
  19465. },
  19466. frontClothed: {
  19467. height: math.unit(1.75, "meters"),
  19468. weight: math.unit(65, "kg"),
  19469. name: "Front (Clothed)",
  19470. image: {
  19471. source: "./media/characters/jayne-folest/front-clothed.svg",
  19472. extra: 2115 / 2007,
  19473. bottom: 0.035
  19474. }
  19475. },
  19476. hand: {
  19477. height: math.unit(1 / 1.260, "feet"),
  19478. name: "Hand",
  19479. image: {
  19480. source: "./media/characters/jayne-folest/hand.svg"
  19481. }
  19482. },
  19483. foot: {
  19484. height: math.unit(1 / 0.918, "feet"),
  19485. name: "Foot",
  19486. image: {
  19487. source: "./media/characters/jayne-folest/foot.svg"
  19488. }
  19489. },
  19490. },
  19491. [
  19492. {
  19493. name: "Micro",
  19494. height: math.unit(4, "cm")
  19495. },
  19496. {
  19497. name: "Normal",
  19498. height: math.unit(1.75, "meters")
  19499. },
  19500. {
  19501. name: "Macro",
  19502. height: math.unit(47.5, "meters"),
  19503. default: true
  19504. },
  19505. ]
  19506. ))
  19507. characterMakers.push(() => makeCharacter(
  19508. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19509. {
  19510. front: {
  19511. height: math.unit(180, "cm"),
  19512. weight: math.unit(70, "kg"),
  19513. name: "Front",
  19514. image: {
  19515. source: "./media/characters/algier/front.svg",
  19516. extra: 596 / 572,
  19517. bottom: 0.04
  19518. }
  19519. },
  19520. back: {
  19521. height: math.unit(180, "cm"),
  19522. weight: math.unit(70, "kg"),
  19523. name: "Back",
  19524. image: {
  19525. source: "./media/characters/algier/back.svg",
  19526. extra: 596 / 572,
  19527. bottom: 0.025
  19528. }
  19529. },
  19530. frontdressed: {
  19531. height: math.unit(180, "cm"),
  19532. weight: math.unit(150, "kg"),
  19533. name: "Front-dressed",
  19534. image: {
  19535. source: "./media/characters/algier/front-dressed.svg",
  19536. extra: 596 / 572,
  19537. bottom: 0.038
  19538. }
  19539. },
  19540. },
  19541. [
  19542. {
  19543. name: "Micro",
  19544. height: math.unit(5, "cm")
  19545. },
  19546. {
  19547. name: "Normal",
  19548. height: math.unit(180, "cm"),
  19549. default: true
  19550. },
  19551. {
  19552. name: "Macro",
  19553. height: math.unit(64, "m")
  19554. },
  19555. ]
  19556. ))
  19557. characterMakers.push(() => makeCharacter(
  19558. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19559. {
  19560. upright: {
  19561. height: math.unit(7, "feet"),
  19562. weight: math.unit(300, "lb"),
  19563. name: "Upright",
  19564. image: {
  19565. source: "./media/characters/pretzel/upright.svg",
  19566. extra: 534 / 522,
  19567. bottom: 0.065
  19568. }
  19569. },
  19570. sprawling: {
  19571. height: math.unit(3.75, "feet"),
  19572. weight: math.unit(300, "lb"),
  19573. name: "Sprawling",
  19574. image: {
  19575. source: "./media/characters/pretzel/sprawling.svg",
  19576. extra: 314 / 281,
  19577. bottom: 0.1
  19578. }
  19579. },
  19580. tongue: {
  19581. height: math.unit(2, "feet"),
  19582. name: "Tongue",
  19583. image: {
  19584. source: "./media/characters/pretzel/tongue.svg"
  19585. }
  19586. },
  19587. },
  19588. [
  19589. {
  19590. name: "Normal",
  19591. height: math.unit(7, "feet"),
  19592. default: true
  19593. },
  19594. {
  19595. name: "Oversized",
  19596. height: math.unit(15, "feet")
  19597. },
  19598. {
  19599. name: "Huge",
  19600. height: math.unit(30, "feet")
  19601. },
  19602. {
  19603. name: "Macro",
  19604. height: math.unit(250, "feet")
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19610. {
  19611. sideFront: {
  19612. height: math.unit(5 + 2 / 12, "feet"),
  19613. weight: math.unit(120, "lb"),
  19614. name: "Front Side",
  19615. image: {
  19616. source: "./media/characters/roxi/side-front.svg",
  19617. extra: 2924 / 2717,
  19618. bottom: 0.08
  19619. }
  19620. },
  19621. sideBack: {
  19622. height: math.unit(5 + 2 / 12, "feet"),
  19623. weight: math.unit(120, "lb"),
  19624. name: "Back Side",
  19625. image: {
  19626. source: "./media/characters/roxi/side-back.svg",
  19627. extra: 2904 / 2693,
  19628. bottom: 0.06
  19629. }
  19630. },
  19631. front: {
  19632. height: math.unit(5 + 2 / 12, "feet"),
  19633. weight: math.unit(120, "lb"),
  19634. name: "Front",
  19635. image: {
  19636. source: "./media/characters/roxi/front.svg",
  19637. extra: 2028 / 1907,
  19638. bottom: 0.01
  19639. }
  19640. },
  19641. frontAlt: {
  19642. height: math.unit(5 + 2 / 12, "feet"),
  19643. weight: math.unit(120, "lb"),
  19644. name: "Front (Alt)",
  19645. image: {
  19646. source: "./media/characters/roxi/front-alt.svg",
  19647. extra: 1828 / 1798,
  19648. bottom: 0.01
  19649. }
  19650. },
  19651. sitting: {
  19652. height: math.unit(2.8, "feet"),
  19653. weight: math.unit(120, "lb"),
  19654. name: "Sitting",
  19655. image: {
  19656. source: "./media/characters/roxi/sitting.svg",
  19657. extra: 2660 / 2462,
  19658. bottom: 0.1
  19659. }
  19660. },
  19661. },
  19662. [
  19663. {
  19664. name: "Normal",
  19665. height: math.unit(5 + 2 / 12, "feet"),
  19666. default: true
  19667. },
  19668. ]
  19669. ))
  19670. characterMakers.push(() => makeCharacter(
  19671. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19672. {
  19673. side: {
  19674. height: math.unit(55, "feet"),
  19675. weight: math.unit(153, "tons"),
  19676. name: "Side",
  19677. image: {
  19678. source: "./media/characters/shadow/side.svg",
  19679. extra: 701 / 628,
  19680. bottom: 0.02
  19681. }
  19682. },
  19683. flying: {
  19684. height: math.unit(145, "feet"),
  19685. weight: math.unit(153, "tons"),
  19686. name: "Flying",
  19687. image: {
  19688. source: "./media/characters/shadow/flying.svg"
  19689. }
  19690. },
  19691. },
  19692. [
  19693. {
  19694. name: "Normal",
  19695. height: math.unit(55, "feet"),
  19696. default: true
  19697. },
  19698. ]
  19699. ))
  19700. characterMakers.push(() => makeCharacter(
  19701. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19702. {
  19703. front: {
  19704. height: math.unit(6, "feet"),
  19705. weight: math.unit(200, "lb"),
  19706. name: "Front",
  19707. image: {
  19708. source: "./media/characters/marcie/front.svg",
  19709. extra: 960 / 876,
  19710. bottom: 58 / 1017.87
  19711. }
  19712. },
  19713. },
  19714. [
  19715. {
  19716. name: "Macro",
  19717. height: math.unit(1, "mile"),
  19718. default: true
  19719. },
  19720. ]
  19721. ))
  19722. characterMakers.push(() => makeCharacter(
  19723. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19724. {
  19725. front: {
  19726. height: math.unit(7, "feet"),
  19727. weight: math.unit(200, "lb"),
  19728. name: "Front",
  19729. image: {
  19730. source: "./media/characters/kachina/front.svg",
  19731. extra: 1290.68 / 1119,
  19732. bottom: 36.5 / 1327.18
  19733. }
  19734. },
  19735. },
  19736. [
  19737. {
  19738. name: "Normal",
  19739. height: math.unit(7, "feet"),
  19740. default: true
  19741. },
  19742. ]
  19743. ))
  19744. characterMakers.push(() => makeCharacter(
  19745. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19746. {
  19747. looking: {
  19748. height: math.unit(2, "meters"),
  19749. weight: math.unit(300, "kg"),
  19750. name: "Looking",
  19751. image: {
  19752. source: "./media/characters/kash/looking.svg",
  19753. extra: 474 / 344,
  19754. bottom: 0.03
  19755. }
  19756. },
  19757. side: {
  19758. height: math.unit(2, "meters"),
  19759. weight: math.unit(300, "kg"),
  19760. name: "Side",
  19761. image: {
  19762. source: "./media/characters/kash/side.svg",
  19763. extra: 302 / 251,
  19764. bottom: 0.03
  19765. }
  19766. },
  19767. front: {
  19768. height: math.unit(2, "meters"),
  19769. weight: math.unit(300, "kg"),
  19770. name: "Front",
  19771. image: {
  19772. source: "./media/characters/kash/front.svg",
  19773. extra: 495 / 360,
  19774. bottom: 0.015
  19775. }
  19776. },
  19777. },
  19778. [
  19779. {
  19780. name: "Normal",
  19781. height: math.unit(2, "meters"),
  19782. default: true
  19783. },
  19784. {
  19785. name: "Big",
  19786. height: math.unit(3, "meters")
  19787. },
  19788. {
  19789. name: "Large",
  19790. height: math.unit(5, "meters")
  19791. },
  19792. ]
  19793. ))
  19794. characterMakers.push(() => makeCharacter(
  19795. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19796. {
  19797. feeding: {
  19798. height: math.unit(6.7, "feet"),
  19799. weight: math.unit(350, "lb"),
  19800. name: "Feeding",
  19801. image: {
  19802. source: "./media/characters/lalim/feeding.svg",
  19803. }
  19804. },
  19805. },
  19806. [
  19807. {
  19808. name: "Normal",
  19809. height: math.unit(6.7, "feet"),
  19810. default: true
  19811. },
  19812. ]
  19813. ))
  19814. characterMakers.push(() => makeCharacter(
  19815. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19816. {
  19817. front: {
  19818. height: math.unit(9.5, "feet"),
  19819. weight: math.unit(600, "lb"),
  19820. name: "Front",
  19821. image: {
  19822. source: "./media/characters/de'vout/front.svg",
  19823. extra: 1443 / 1328,
  19824. bottom: 0.025
  19825. }
  19826. },
  19827. back: {
  19828. height: math.unit(9.5, "feet"),
  19829. weight: math.unit(600, "lb"),
  19830. name: "Back",
  19831. image: {
  19832. source: "./media/characters/de'vout/back.svg",
  19833. extra: 1443 / 1328
  19834. }
  19835. },
  19836. frontDressed: {
  19837. height: math.unit(9.5, "feet"),
  19838. weight: math.unit(600, "lb"),
  19839. name: "Front (Dressed",
  19840. image: {
  19841. source: "./media/characters/de'vout/front-dressed.svg",
  19842. extra: 1443 / 1328,
  19843. bottom: 0.025
  19844. }
  19845. },
  19846. backDressed: {
  19847. height: math.unit(9.5, "feet"),
  19848. weight: math.unit(600, "lb"),
  19849. name: "Back (Dressed",
  19850. image: {
  19851. source: "./media/characters/de'vout/back-dressed.svg",
  19852. extra: 1443 / 1328
  19853. }
  19854. },
  19855. },
  19856. [
  19857. {
  19858. name: "Normal",
  19859. height: math.unit(9.5, "feet"),
  19860. default: true
  19861. },
  19862. ]
  19863. ))
  19864. characterMakers.push(() => makeCharacter(
  19865. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19866. {
  19867. front: {
  19868. height: math.unit(8, "feet"),
  19869. weight: math.unit(225, "lb"),
  19870. name: "Front",
  19871. image: {
  19872. source: "./media/characters/talana/front.svg",
  19873. extra: 1410 / 1300,
  19874. bottom: 0.015
  19875. }
  19876. },
  19877. frontDressed: {
  19878. height: math.unit(8, "feet"),
  19879. weight: math.unit(225, "lb"),
  19880. name: "Front (Dressed",
  19881. image: {
  19882. source: "./media/characters/talana/front-dressed.svg",
  19883. extra: 1410 / 1300,
  19884. bottom: 0.015
  19885. }
  19886. },
  19887. },
  19888. [
  19889. {
  19890. name: "Normal",
  19891. height: math.unit(8, "feet"),
  19892. default: true
  19893. },
  19894. ]
  19895. ))
  19896. characterMakers.push(() => makeCharacter(
  19897. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19898. {
  19899. side: {
  19900. height: math.unit(7.2, "feet"),
  19901. weight: math.unit(150, "lb"),
  19902. name: "Side",
  19903. image: {
  19904. source: "./media/characters/xeauvok/side.svg",
  19905. extra: 1975 / 1523,
  19906. bottom: 0.07
  19907. }
  19908. },
  19909. },
  19910. [
  19911. {
  19912. name: "Normal",
  19913. height: math.unit(7.2, "feet"),
  19914. default: true
  19915. },
  19916. ]
  19917. ))
  19918. characterMakers.push(() => makeCharacter(
  19919. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19920. {
  19921. side: {
  19922. height: math.unit(4, "meters"),
  19923. weight: math.unit(2200, "kg"),
  19924. name: "Side",
  19925. image: {
  19926. source: "./media/characters/zara/side.svg",
  19927. extra: 765/744,
  19928. bottom: 156/921
  19929. }
  19930. },
  19931. },
  19932. [
  19933. {
  19934. name: "Normal",
  19935. height: math.unit(4, "meters"),
  19936. default: true
  19937. },
  19938. ]
  19939. ))
  19940. characterMakers.push(() => makeCharacter(
  19941. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19942. {
  19943. side: {
  19944. height: math.unit(6, "feet"),
  19945. weight: math.unit(150, "lb"),
  19946. name: "Side",
  19947. image: {
  19948. source: "./media/characters/richard-dragon/side.svg",
  19949. extra: 845 / 340,
  19950. bottom: 0.017
  19951. }
  19952. },
  19953. maw: {
  19954. height: math.unit(2.97, "feet"),
  19955. name: "Maw",
  19956. image: {
  19957. source: "./media/characters/richard-dragon/maw.svg"
  19958. }
  19959. },
  19960. },
  19961. [
  19962. ]
  19963. ))
  19964. characterMakers.push(() => makeCharacter(
  19965. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19966. {
  19967. front: {
  19968. height: math.unit(4, "feet"),
  19969. weight: math.unit(100, "lb"),
  19970. name: "Front",
  19971. image: {
  19972. source: "./media/characters/richard-smeargle/front.svg",
  19973. extra: 2952 / 2820,
  19974. bottom: 0.028
  19975. }
  19976. },
  19977. },
  19978. [
  19979. {
  19980. name: "Normal",
  19981. height: math.unit(4, "feet"),
  19982. default: true
  19983. },
  19984. {
  19985. name: "Dynamax",
  19986. height: math.unit(20, "meters")
  19987. },
  19988. ]
  19989. ))
  19990. characterMakers.push(() => makeCharacter(
  19991. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19992. {
  19993. front: {
  19994. height: math.unit(6, "feet"),
  19995. weight: math.unit(110, "lb"),
  19996. name: "Front",
  19997. image: {
  19998. source: "./media/characters/klay/front.svg",
  19999. extra: 962 / 883,
  20000. bottom: 0.04
  20001. }
  20002. },
  20003. back: {
  20004. height: math.unit(6, "feet"),
  20005. weight: math.unit(110, "lb"),
  20006. name: "Back",
  20007. image: {
  20008. source: "./media/characters/klay/back.svg",
  20009. extra: 962 / 883
  20010. }
  20011. },
  20012. beans: {
  20013. height: math.unit(1.15, "feet"),
  20014. name: "Beans",
  20015. image: {
  20016. source: "./media/characters/klay/beans.svg"
  20017. }
  20018. },
  20019. },
  20020. [
  20021. {
  20022. name: "Micro",
  20023. height: math.unit(6, "inches")
  20024. },
  20025. {
  20026. name: "Mini",
  20027. height: math.unit(3, "feet")
  20028. },
  20029. {
  20030. name: "Normal",
  20031. height: math.unit(6, "feet"),
  20032. default: true
  20033. },
  20034. {
  20035. name: "Big",
  20036. height: math.unit(25, "feet")
  20037. },
  20038. {
  20039. name: "Macro",
  20040. height: math.unit(100, "feet")
  20041. },
  20042. {
  20043. name: "Megamacro",
  20044. height: math.unit(400, "feet")
  20045. },
  20046. ]
  20047. ))
  20048. characterMakers.push(() => makeCharacter(
  20049. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20050. {
  20051. front: {
  20052. height: math.unit(6, "feet"),
  20053. weight: math.unit(160, "lb"),
  20054. name: "Front",
  20055. image: {
  20056. source: "./media/characters/marcus/front.svg",
  20057. extra: 734 / 676,
  20058. bottom: 0.03
  20059. }
  20060. },
  20061. },
  20062. [
  20063. {
  20064. name: "Little",
  20065. height: math.unit(6, "feet")
  20066. },
  20067. {
  20068. name: "Normal",
  20069. height: math.unit(110, "feet"),
  20070. default: true
  20071. },
  20072. {
  20073. name: "Macro",
  20074. height: math.unit(250, "feet")
  20075. },
  20076. {
  20077. name: "Megamacro",
  20078. height: math.unit(1000, "feet")
  20079. },
  20080. ]
  20081. ))
  20082. characterMakers.push(() => makeCharacter(
  20083. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20084. {
  20085. front: {
  20086. height: math.unit(7, "feet"),
  20087. weight: math.unit(275, "lb"),
  20088. name: "Front",
  20089. image: {
  20090. source: "./media/characters/claude-delroute/front.svg",
  20091. extra: 902/827,
  20092. bottom: 26/928
  20093. }
  20094. },
  20095. side: {
  20096. height: math.unit(7, "feet"),
  20097. weight: math.unit(275, "lb"),
  20098. name: "Side",
  20099. image: {
  20100. source: "./media/characters/claude-delroute/side.svg",
  20101. extra: 908/853,
  20102. bottom: 16/924
  20103. }
  20104. },
  20105. back: {
  20106. height: math.unit(7, "feet"),
  20107. weight: math.unit(275, "lb"),
  20108. name: "Back",
  20109. image: {
  20110. source: "./media/characters/claude-delroute/back.svg",
  20111. extra: 911/829,
  20112. bottom: 18/929
  20113. }
  20114. },
  20115. maw: {
  20116. height: math.unit(0.6407, "meters"),
  20117. name: "Maw",
  20118. image: {
  20119. source: "./media/characters/claude-delroute/maw.svg"
  20120. }
  20121. },
  20122. },
  20123. [
  20124. {
  20125. name: "Normal",
  20126. height: math.unit(7, "feet"),
  20127. default: true
  20128. },
  20129. {
  20130. name: "Lorge",
  20131. height: math.unit(20, "feet")
  20132. },
  20133. ]
  20134. ))
  20135. characterMakers.push(() => makeCharacter(
  20136. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20137. {
  20138. front: {
  20139. height: math.unit(8 + 4 / 12, "feet"),
  20140. weight: math.unit(600, "lb"),
  20141. name: "Front",
  20142. image: {
  20143. source: "./media/characters/dragonien/front.svg",
  20144. extra: 100 / 94,
  20145. bottom: 3.3 / 103.3445
  20146. }
  20147. },
  20148. back: {
  20149. height: math.unit(8 + 4 / 12, "feet"),
  20150. weight: math.unit(600, "lb"),
  20151. name: "Back",
  20152. image: {
  20153. source: "./media/characters/dragonien/back.svg",
  20154. extra: 776 / 746,
  20155. bottom: 6.4 / 782.0616
  20156. }
  20157. },
  20158. foot: {
  20159. height: math.unit(1.54, "feet"),
  20160. name: "Foot",
  20161. image: {
  20162. source: "./media/characters/dragonien/foot.svg",
  20163. }
  20164. },
  20165. },
  20166. [
  20167. {
  20168. name: "Normal",
  20169. height: math.unit(8 + 4 / 12, "feet"),
  20170. default: true
  20171. },
  20172. {
  20173. name: "Macro",
  20174. height: math.unit(200, "feet")
  20175. },
  20176. {
  20177. name: "Megamacro",
  20178. height: math.unit(1, "mile")
  20179. },
  20180. {
  20181. name: "Gigamacro",
  20182. height: math.unit(1000, "miles")
  20183. },
  20184. ]
  20185. ))
  20186. characterMakers.push(() => makeCharacter(
  20187. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20188. {
  20189. front: {
  20190. height: math.unit(5 + 2 / 12, "feet"),
  20191. weight: math.unit(110, "lb"),
  20192. name: "Front",
  20193. image: {
  20194. source: "./media/characters/desta/front.svg",
  20195. extra: 767 / 726,
  20196. bottom: 11.7 / 779
  20197. }
  20198. },
  20199. back: {
  20200. height: math.unit(5 + 2 / 12, "feet"),
  20201. weight: math.unit(110, "lb"),
  20202. name: "Back",
  20203. image: {
  20204. source: "./media/characters/desta/back.svg",
  20205. extra: 777 / 728,
  20206. bottom: 6 / 784
  20207. }
  20208. },
  20209. frontAlt: {
  20210. height: math.unit(5 + 2 / 12, "feet"),
  20211. weight: math.unit(110, "lb"),
  20212. name: "Front",
  20213. image: {
  20214. source: "./media/characters/desta/front-alt.svg",
  20215. extra: 1482 / 1417
  20216. }
  20217. },
  20218. side: {
  20219. height: math.unit(5 + 2 / 12, "feet"),
  20220. weight: math.unit(110, "lb"),
  20221. name: "Side",
  20222. image: {
  20223. source: "./media/characters/desta/side.svg",
  20224. extra: 2579 / 2491,
  20225. bottom: 0.053
  20226. }
  20227. },
  20228. },
  20229. [
  20230. {
  20231. name: "Micro",
  20232. height: math.unit(6, "inches")
  20233. },
  20234. {
  20235. name: "Normal",
  20236. height: math.unit(5 + 2 / 12, "feet"),
  20237. default: true
  20238. },
  20239. {
  20240. name: "Macro",
  20241. height: math.unit(62, "feet")
  20242. },
  20243. {
  20244. name: "Megamacro",
  20245. height: math.unit(1800, "feet")
  20246. },
  20247. ]
  20248. ))
  20249. characterMakers.push(() => makeCharacter(
  20250. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20251. {
  20252. front: {
  20253. height: math.unit(10, "feet"),
  20254. weight: math.unit(700, "lb"),
  20255. name: "Front",
  20256. image: {
  20257. source: "./media/characters/storm-alystar/front.svg",
  20258. extra: 2112 / 1898,
  20259. bottom: 0.034
  20260. }
  20261. },
  20262. },
  20263. [
  20264. {
  20265. name: "Micro",
  20266. height: math.unit(3.5, "inches")
  20267. },
  20268. {
  20269. name: "Normal",
  20270. height: math.unit(10, "feet"),
  20271. default: true
  20272. },
  20273. {
  20274. name: "Macro",
  20275. height: math.unit(400, "feet")
  20276. },
  20277. {
  20278. name: "Deific",
  20279. height: math.unit(60, "miles")
  20280. },
  20281. ]
  20282. ))
  20283. characterMakers.push(() => makeCharacter(
  20284. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20285. {
  20286. front: {
  20287. height: math.unit(2.35, "meters"),
  20288. weight: math.unit(119, "kg"),
  20289. name: "Front",
  20290. image: {
  20291. source: "./media/characters/ilia/front.svg",
  20292. extra: 1285 / 1255,
  20293. bottom: 0.06
  20294. }
  20295. },
  20296. },
  20297. [
  20298. {
  20299. name: "Normal",
  20300. height: math.unit(2.35, "meters")
  20301. },
  20302. {
  20303. name: "Macro",
  20304. height: math.unit(140, "meters"),
  20305. default: true
  20306. },
  20307. {
  20308. name: "Megamacro",
  20309. height: math.unit(100, "miles")
  20310. },
  20311. ]
  20312. ))
  20313. characterMakers.push(() => makeCharacter(
  20314. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20315. {
  20316. front: {
  20317. height: math.unit(6 + 5 / 12, "feet"),
  20318. weight: math.unit(190, "lb"),
  20319. name: "Front",
  20320. image: {
  20321. source: "./media/characters/kingdead/front.svg",
  20322. extra: 1228 / 1177
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Micro",
  20329. height: math.unit(7, "inches")
  20330. },
  20331. {
  20332. name: "Normal",
  20333. height: math.unit(6 + 5 / 12, "feet")
  20334. },
  20335. {
  20336. name: "Macro",
  20337. height: math.unit(150, "feet"),
  20338. default: true
  20339. },
  20340. {
  20341. name: "Megamacro",
  20342. height: math.unit(200, "miles")
  20343. },
  20344. ]
  20345. ))
  20346. characterMakers.push(() => makeCharacter(
  20347. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20348. {
  20349. front: {
  20350. height: math.unit(8, "feet"),
  20351. weight: math.unit(600, "lb"),
  20352. name: "Front",
  20353. image: {
  20354. source: "./media/characters/kyrehx/front.svg",
  20355. extra: 1195 / 1095,
  20356. bottom: 0.034
  20357. }
  20358. },
  20359. },
  20360. [
  20361. {
  20362. name: "Micro",
  20363. height: math.unit(2, "inches")
  20364. },
  20365. {
  20366. name: "Normal",
  20367. height: math.unit(8, "feet"),
  20368. default: true
  20369. },
  20370. {
  20371. name: "Macro",
  20372. height: math.unit(255, "feet")
  20373. },
  20374. ]
  20375. ))
  20376. characterMakers.push(() => makeCharacter(
  20377. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20378. {
  20379. front: {
  20380. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20381. weight: math.unit(184, "lb"),
  20382. name: "Front",
  20383. image: {
  20384. source: "./media/characters/xang/front.svg",
  20385. extra: 845 / 755
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20393. default: true
  20394. },
  20395. {
  20396. name: "Macro",
  20397. height: math.unit(0.935 * 146, "feet")
  20398. },
  20399. {
  20400. name: "Megamacro",
  20401. height: math.unit(0.935 * 3, "miles")
  20402. },
  20403. ]
  20404. ))
  20405. characterMakers.push(() => makeCharacter(
  20406. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20407. {
  20408. frontDressed: {
  20409. height: math.unit(5 + 7 / 12, "feet"),
  20410. weight: math.unit(140, "lb"),
  20411. name: "Front (Dressed)",
  20412. image: {
  20413. source: "./media/characters/doc-weardno/front-dressed.svg",
  20414. extra: 263 / 234
  20415. }
  20416. },
  20417. backDressed: {
  20418. height: math.unit(5 + 7 / 12, "feet"),
  20419. weight: math.unit(140, "lb"),
  20420. name: "Back (Dressed)",
  20421. image: {
  20422. source: "./media/characters/doc-weardno/back-dressed.svg",
  20423. extra: 266 / 238
  20424. }
  20425. },
  20426. front: {
  20427. height: math.unit(5 + 7 / 12, "feet"),
  20428. weight: math.unit(140, "lb"),
  20429. name: "Front",
  20430. image: {
  20431. source: "./media/characters/doc-weardno/front.svg",
  20432. extra: 254 / 233
  20433. }
  20434. },
  20435. },
  20436. [
  20437. {
  20438. name: "Micro",
  20439. height: math.unit(3, "inches")
  20440. },
  20441. {
  20442. name: "Normal",
  20443. height: math.unit(5 + 7 / 12, "feet"),
  20444. default: true
  20445. },
  20446. {
  20447. name: "Macro",
  20448. height: math.unit(25, "feet")
  20449. },
  20450. {
  20451. name: "Megamacro",
  20452. height: math.unit(2, "miles")
  20453. },
  20454. ]
  20455. ))
  20456. characterMakers.push(() => makeCharacter(
  20457. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20458. {
  20459. front: {
  20460. height: math.unit(6 + 2 / 12, "feet"),
  20461. weight: math.unit(153, "lb"),
  20462. name: "Front",
  20463. image: {
  20464. source: "./media/characters/seth-whilst/front.svg",
  20465. bottom: 0.07
  20466. }
  20467. },
  20468. },
  20469. [
  20470. {
  20471. name: "Micro",
  20472. height: math.unit(5, "inches")
  20473. },
  20474. {
  20475. name: "Normal",
  20476. height: math.unit(6 + 2 / 12, "feet"),
  20477. default: true
  20478. },
  20479. ]
  20480. ))
  20481. characterMakers.push(() => makeCharacter(
  20482. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20483. {
  20484. front: {
  20485. height: math.unit(3, "inches"),
  20486. weight: math.unit(8, "grams"),
  20487. name: "Front",
  20488. image: {
  20489. source: "./media/characters/pocket-jabari/front.svg",
  20490. extra: 1024 / 974,
  20491. bottom: 0.039
  20492. }
  20493. },
  20494. },
  20495. [
  20496. {
  20497. name: "Minimicro",
  20498. height: math.unit(8, "mm")
  20499. },
  20500. {
  20501. name: "Micro",
  20502. height: math.unit(3, "inches"),
  20503. default: true
  20504. },
  20505. {
  20506. name: "Normal",
  20507. height: math.unit(3, "feet")
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20513. {
  20514. frontDressed: {
  20515. height: math.unit(15, "feet"),
  20516. weight: math.unit(3280, "lb"),
  20517. name: "Front (Dressed)",
  20518. image: {
  20519. source: "./media/characters/sapphy/front-dressed.svg",
  20520. extra: 1951/1654,
  20521. bottom: 194/2145
  20522. },
  20523. form: "anthro",
  20524. default: true
  20525. },
  20526. backDressed: {
  20527. height: math.unit(15, "feet"),
  20528. weight: math.unit(3280, "lb"),
  20529. name: "Back (Dressed)",
  20530. image: {
  20531. source: "./media/characters/sapphy/back-dressed.svg",
  20532. extra: 2058/1918,
  20533. bottom: 125/2183
  20534. },
  20535. form: "anthro"
  20536. },
  20537. frontNude: {
  20538. height: math.unit(15, "feet"),
  20539. weight: math.unit(3280, "lb"),
  20540. name: "Front (Nude)",
  20541. image: {
  20542. source: "./media/characters/sapphy/front-nude.svg",
  20543. extra: 1951/1654,
  20544. bottom: 194/2145
  20545. },
  20546. form: "anthro"
  20547. },
  20548. backNude: {
  20549. height: math.unit(15, "feet"),
  20550. weight: math.unit(3280, "lb"),
  20551. name: "Back (Nude)",
  20552. image: {
  20553. source: "./media/characters/sapphy/back-nude.svg",
  20554. extra: 2058/1918,
  20555. bottom: 125/2183
  20556. },
  20557. form: "anthro"
  20558. },
  20559. full: {
  20560. height: math.unit(15, "feet"),
  20561. weight: math.unit(3280, "lb"),
  20562. name: "Full",
  20563. image: {
  20564. source: "./media/characters/sapphy/full.svg",
  20565. extra: 1396/1317,
  20566. bottom: 44/1440
  20567. },
  20568. form: "anthro"
  20569. },
  20570. dick: {
  20571. height: math.unit(3.8, "feet"),
  20572. name: "Dick",
  20573. image: {
  20574. source: "./media/characters/sapphy/dick.svg"
  20575. },
  20576. form: "anthro"
  20577. },
  20578. feral: {
  20579. height: math.unit(35, "feet"),
  20580. weight: math.unit(160, "tons"),
  20581. name: "Feral",
  20582. image: {
  20583. source: "./media/characters/sapphy/feral.svg",
  20584. extra: 1050/573,
  20585. bottom: 60/1110
  20586. },
  20587. form: "feral",
  20588. default: true
  20589. },
  20590. },
  20591. [
  20592. {
  20593. name: "Normal",
  20594. height: math.unit(15, "feet"),
  20595. form: "anthro"
  20596. },
  20597. {
  20598. name: "Casual Macro",
  20599. height: math.unit(120, "feet"),
  20600. form: "anthro"
  20601. },
  20602. {
  20603. name: "Macro",
  20604. height: math.unit(2150, "feet"),
  20605. default: true,
  20606. form: "anthro"
  20607. },
  20608. {
  20609. name: "Megamacro",
  20610. height: math.unit(8, "miles"),
  20611. form: "anthro"
  20612. },
  20613. {
  20614. name: "Galaxy Mom",
  20615. height: math.unit(6, "megalightyears"),
  20616. form: "anthro"
  20617. },
  20618. {
  20619. name: "Normal",
  20620. height: math.unit(35, "feet"),
  20621. form: "feral",
  20622. default: true
  20623. },
  20624. {
  20625. name: "Macro",
  20626. height: math.unit(300, "feet"),
  20627. form: "feral"
  20628. },
  20629. {
  20630. name: "Galaxy Mom",
  20631. height: math.unit(10, "megalightyears"),
  20632. form: "feral"
  20633. },
  20634. ],
  20635. {
  20636. "anthro": {
  20637. name: "Anthro",
  20638. default: true
  20639. },
  20640. "feral": {
  20641. name: "Feral"
  20642. }
  20643. }
  20644. ))
  20645. characterMakers.push(() => makeCharacter(
  20646. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20647. {
  20648. hyenaFront: {
  20649. height: math.unit(6, "feet"),
  20650. weight: math.unit(190, "lb"),
  20651. name: "Front",
  20652. image: {
  20653. source: "./media/characters/kiro/hyena-front.svg",
  20654. extra: 927/839,
  20655. bottom: 91/1018
  20656. },
  20657. form: "hyena",
  20658. default: true
  20659. },
  20660. front: {
  20661. height: math.unit(6, "feet"),
  20662. weight: math.unit(170, "lb"),
  20663. name: "Front",
  20664. image: {
  20665. source: "./media/characters/kiro/front.svg",
  20666. extra: 1064 / 1012,
  20667. bottom: 0.052
  20668. },
  20669. form: "folf",
  20670. default: true
  20671. },
  20672. },
  20673. [
  20674. {
  20675. name: "Micro",
  20676. height: math.unit(6, "inches"),
  20677. form: "folf"
  20678. },
  20679. {
  20680. name: "Normal",
  20681. height: math.unit(6, "feet"),
  20682. form: "folf",
  20683. default: true
  20684. },
  20685. {
  20686. name: "Macro",
  20687. height: math.unit(72, "feet"),
  20688. form: "folf"
  20689. },
  20690. {
  20691. name: "Micro",
  20692. height: math.unit(6, "inches"),
  20693. form: "hyena"
  20694. },
  20695. {
  20696. name: "Normal",
  20697. height: math.unit(6, "feet"),
  20698. form: "hyena",
  20699. default: true
  20700. },
  20701. {
  20702. name: "Macro",
  20703. height: math.unit(72, "feet"),
  20704. form: "hyena"
  20705. },
  20706. ],
  20707. {
  20708. "hyena": {
  20709. name: "Hyena",
  20710. default: true
  20711. },
  20712. "folf": {
  20713. name: "Folf",
  20714. },
  20715. }
  20716. ))
  20717. characterMakers.push(() => makeCharacter(
  20718. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20719. {
  20720. front: {
  20721. height: math.unit(5 + 9 / 12, "feet"),
  20722. weight: math.unit(175, "lb"),
  20723. name: "Front",
  20724. image: {
  20725. source: "./media/characters/irishfox/front.svg",
  20726. extra: 1912 / 1680,
  20727. bottom: 0.02
  20728. }
  20729. },
  20730. },
  20731. [
  20732. {
  20733. name: "Nano",
  20734. height: math.unit(1, "mm")
  20735. },
  20736. {
  20737. name: "Micro",
  20738. height: math.unit(2, "inches")
  20739. },
  20740. {
  20741. name: "Normal",
  20742. height: math.unit(5 + 9 / 12, "feet"),
  20743. default: true
  20744. },
  20745. {
  20746. name: "Macro",
  20747. height: math.unit(45, "feet")
  20748. },
  20749. ]
  20750. ))
  20751. characterMakers.push(() => makeCharacter(
  20752. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20753. {
  20754. front: {
  20755. height: math.unit(6 + 1 / 12, "feet"),
  20756. weight: math.unit(75, "lb"),
  20757. name: "Front",
  20758. image: {
  20759. source: "./media/characters/aronai-sieyes/front.svg",
  20760. extra: 1532/1450,
  20761. bottom: 42/1574
  20762. }
  20763. },
  20764. side: {
  20765. height: math.unit(6 + 1 / 12, "feet"),
  20766. weight: math.unit(75, "lb"),
  20767. name: "Side",
  20768. image: {
  20769. source: "./media/characters/aronai-sieyes/side.svg",
  20770. extra: 1422/1365,
  20771. bottom: 148/1570
  20772. }
  20773. },
  20774. back: {
  20775. height: math.unit(6 + 1 / 12, "feet"),
  20776. weight: math.unit(75, "lb"),
  20777. name: "Back",
  20778. image: {
  20779. source: "./media/characters/aronai-sieyes/back.svg",
  20780. extra: 1526/1464,
  20781. bottom: 51/1577
  20782. }
  20783. },
  20784. dressed: {
  20785. height: math.unit(6 + 1 / 12, "feet"),
  20786. weight: math.unit(75, "lb"),
  20787. name: "Dressed",
  20788. image: {
  20789. source: "./media/characters/aronai-sieyes/dressed.svg",
  20790. extra: 1559/1483,
  20791. bottom: 39/1598
  20792. }
  20793. },
  20794. slit: {
  20795. height: math.unit(1.3, "feet"),
  20796. name: "Slit",
  20797. image: {
  20798. source: "./media/characters/aronai-sieyes/slit.svg"
  20799. }
  20800. },
  20801. slitSpread: {
  20802. height: math.unit(0.9, "feet"),
  20803. name: "Slit (Spread)",
  20804. image: {
  20805. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20806. }
  20807. },
  20808. rump: {
  20809. height: math.unit(1.3, "feet"),
  20810. name: "Rump",
  20811. image: {
  20812. source: "./media/characters/aronai-sieyes/rump.svg"
  20813. }
  20814. },
  20815. maw: {
  20816. height: math.unit(1.25, "feet"),
  20817. name: "Maw",
  20818. image: {
  20819. source: "./media/characters/aronai-sieyes/maw.svg"
  20820. }
  20821. },
  20822. feral: {
  20823. height: math.unit(18, "feet"),
  20824. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20825. name: "Feral",
  20826. image: {
  20827. source: "./media/characters/aronai-sieyes/feral.svg",
  20828. extra: 1530 / 1240,
  20829. bottom: 0.035
  20830. }
  20831. },
  20832. },
  20833. [
  20834. {
  20835. name: "Micro",
  20836. height: math.unit(2, "inches")
  20837. },
  20838. {
  20839. name: "Normal",
  20840. height: math.unit(6 + 1 / 12, "feet"),
  20841. default: true
  20842. }
  20843. ]
  20844. ))
  20845. characterMakers.push(() => makeCharacter(
  20846. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20847. {
  20848. front: {
  20849. height: math.unit(12, "feet"),
  20850. weight: math.unit(410, "kg"),
  20851. name: "Front",
  20852. image: {
  20853. source: "./media/characters/xuna/front.svg",
  20854. extra: 2184 / 1980
  20855. }
  20856. },
  20857. side: {
  20858. height: math.unit(12, "feet"),
  20859. weight: math.unit(410, "kg"),
  20860. name: "Side",
  20861. image: {
  20862. source: "./media/characters/xuna/side.svg",
  20863. extra: 2184 / 1980
  20864. }
  20865. },
  20866. back: {
  20867. height: math.unit(12, "feet"),
  20868. weight: math.unit(410, "kg"),
  20869. name: "Back",
  20870. image: {
  20871. source: "./media/characters/xuna/back.svg",
  20872. extra: 2184 / 1980
  20873. }
  20874. },
  20875. },
  20876. [
  20877. {
  20878. name: "Nano glow",
  20879. height: math.unit(10, "nm")
  20880. },
  20881. {
  20882. name: "Micro floof",
  20883. height: math.unit(0.3, "m")
  20884. },
  20885. {
  20886. name: "Huggable softy boi",
  20887. height: math.unit(3.6576, "m"),
  20888. default: true
  20889. },
  20890. {
  20891. name: "Admirable floof",
  20892. height: math.unit(80, "meters")
  20893. },
  20894. {
  20895. name: "Gentle macro",
  20896. height: math.unit(300, "meters")
  20897. },
  20898. {
  20899. name: "Very careful floof",
  20900. height: math.unit(3200, "meters")
  20901. },
  20902. {
  20903. name: "The mega floof",
  20904. height: math.unit(36000, "meters")
  20905. },
  20906. {
  20907. name: "Giga-fur-Wicker",
  20908. height: math.unit(4800000, "meters")
  20909. },
  20910. {
  20911. name: "Licky world",
  20912. height: math.unit(20000000, "meters")
  20913. },
  20914. {
  20915. name: "Floofy cyan sun",
  20916. height: math.unit(1500000000, "meters")
  20917. },
  20918. {
  20919. name: "Milky Wicker",
  20920. height: math.unit(1000000000000000000000, "meters")
  20921. },
  20922. {
  20923. name: "The observing Wicker",
  20924. height: math.unit(999999999999999999999999999, "meters")
  20925. },
  20926. ]
  20927. ))
  20928. characterMakers.push(() => makeCharacter(
  20929. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20930. {
  20931. front: {
  20932. height: math.unit(5 + 9 / 12, "feet"),
  20933. weight: math.unit(150, "lb"),
  20934. name: "Front",
  20935. image: {
  20936. source: "./media/characters/arokha-sieyes/front.svg",
  20937. extra: 1425 / 1284,
  20938. bottom: 0.05
  20939. }
  20940. },
  20941. },
  20942. [
  20943. {
  20944. name: "Normal",
  20945. height: math.unit(5 + 9 / 12, "feet")
  20946. },
  20947. {
  20948. name: "Macro",
  20949. height: math.unit(30, "meters"),
  20950. default: true
  20951. },
  20952. ]
  20953. ))
  20954. characterMakers.push(() => makeCharacter(
  20955. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20956. {
  20957. front: {
  20958. height: math.unit(6, "feet"),
  20959. weight: math.unit(180, "lb"),
  20960. name: "Front",
  20961. image: {
  20962. source: "./media/characters/arokh-sieyes/front.svg",
  20963. extra: 1830 / 1769,
  20964. bottom: 0.01
  20965. }
  20966. },
  20967. },
  20968. [
  20969. {
  20970. name: "Normal",
  20971. height: math.unit(6, "feet")
  20972. },
  20973. {
  20974. name: "Macro",
  20975. height: math.unit(30, "meters"),
  20976. default: true
  20977. },
  20978. ]
  20979. ))
  20980. characterMakers.push(() => makeCharacter(
  20981. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20982. {
  20983. side: {
  20984. height: math.unit(13 + 1 / 12, "feet"),
  20985. weight: math.unit(8.5, "tonnes"),
  20986. preyCapacity: math.unit(36, "people"),
  20987. name: "Side",
  20988. image: {
  20989. source: "./media/characters/goldeneye/side.svg",
  20990. extra: 1139/741,
  20991. bottom: 98/1237
  20992. }
  20993. },
  20994. front: {
  20995. height: math.unit(5.1, "feet"),
  20996. weight: math.unit(8.5, "tonnes"),
  20997. preyCapacity: math.unit(36, "people"),
  20998. name: "Front",
  20999. image: {
  21000. source: "./media/characters/goldeneye/front.svg",
  21001. extra: 635/365,
  21002. bottom: 598/1233
  21003. }
  21004. },
  21005. maw: {
  21006. height: math.unit(6.6, "feet"),
  21007. name: "Maw",
  21008. image: {
  21009. source: "./media/characters/goldeneye/maw.svg"
  21010. }
  21011. },
  21012. headFront: {
  21013. height: math.unit(8, "feet"),
  21014. name: "Head (Front)",
  21015. image: {
  21016. source: "./media/characters/goldeneye/head-front.svg"
  21017. }
  21018. },
  21019. headSide: {
  21020. height: math.unit(6, "feet"),
  21021. name: "Head (Side)",
  21022. image: {
  21023. source: "./media/characters/goldeneye/head-side.svg"
  21024. }
  21025. },
  21026. headBack: {
  21027. height: math.unit(8, "feet"),
  21028. name: "Head (Back)",
  21029. image: {
  21030. source: "./media/characters/goldeneye/head-back.svg"
  21031. }
  21032. },
  21033. paw: {
  21034. height: math.unit(3.4, "feet"),
  21035. name: "Paw",
  21036. image: {
  21037. source: "./media/characters/goldeneye/paw.svg"
  21038. }
  21039. },
  21040. toering: {
  21041. height: math.unit(0.45, "feet"),
  21042. name: "Toering",
  21043. image: {
  21044. source: "./media/characters/goldeneye/toering.svg"
  21045. }
  21046. },
  21047. eyes: {
  21048. height: math.unit(0.5, "feet"),
  21049. name: "Eyes",
  21050. image: {
  21051. source: "./media/characters/goldeneye/eyes.svg"
  21052. }
  21053. },
  21054. },
  21055. [
  21056. {
  21057. name: "Normal",
  21058. height: math.unit(13 + 1 / 12, "feet"),
  21059. default: true
  21060. },
  21061. ]
  21062. ))
  21063. characterMakers.push(() => makeCharacter(
  21064. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21065. {
  21066. front: {
  21067. height: math.unit(6 + 1 / 12, "feet"),
  21068. weight: math.unit(210, "lb"),
  21069. name: "Front",
  21070. image: {
  21071. source: "./media/characters/leonardo-lycheborne/front.svg",
  21072. extra: 776/723,
  21073. bottom: 34/810
  21074. }
  21075. },
  21076. side: {
  21077. height: math.unit(6 + 1 / 12, "feet"),
  21078. weight: math.unit(210, "lb"),
  21079. name: "Side",
  21080. image: {
  21081. source: "./media/characters/leonardo-lycheborne/side.svg",
  21082. extra: 780/728,
  21083. bottom: 12/792
  21084. }
  21085. },
  21086. back: {
  21087. height: math.unit(6 + 1 / 12, "feet"),
  21088. weight: math.unit(210, "lb"),
  21089. name: "Back",
  21090. image: {
  21091. source: "./media/characters/leonardo-lycheborne/back.svg",
  21092. extra: 775/721,
  21093. bottom: 17/792
  21094. }
  21095. },
  21096. hand: {
  21097. height: math.unit(1.08, "feet"),
  21098. name: "Hand",
  21099. image: {
  21100. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21101. }
  21102. },
  21103. foot: {
  21104. height: math.unit(1.32, "feet"),
  21105. name: "Foot",
  21106. image: {
  21107. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21108. }
  21109. },
  21110. maw: {
  21111. height: math.unit(1, "feet"),
  21112. name: "Maw",
  21113. image: {
  21114. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21115. }
  21116. },
  21117. were: {
  21118. height: math.unit(20, "feet"),
  21119. weight: math.unit(7800, "lb"),
  21120. name: "Were",
  21121. image: {
  21122. source: "./media/characters/leonardo-lycheborne/were.svg",
  21123. extra: 1224/1165,
  21124. bottom: 72/1296
  21125. }
  21126. },
  21127. feral: {
  21128. height: math.unit(7.5, "feet"),
  21129. weight: math.unit(600, "lb"),
  21130. name: "Feral",
  21131. image: {
  21132. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21133. extra: 797/702,
  21134. bottom: 139/936
  21135. }
  21136. },
  21137. taur: {
  21138. height: math.unit(11, "feet"),
  21139. weight: math.unit(3300, "lb"),
  21140. name: "Taur",
  21141. image: {
  21142. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21143. extra: 1271/1197,
  21144. bottom: 47/1318
  21145. }
  21146. },
  21147. barghest: {
  21148. height: math.unit(11, "feet"),
  21149. weight: math.unit(1300, "lb"),
  21150. name: "Barghest",
  21151. image: {
  21152. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21153. extra: 1291/1204,
  21154. bottom: 37/1328
  21155. }
  21156. },
  21157. dick: {
  21158. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21159. name: "Dick",
  21160. image: {
  21161. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21162. }
  21163. },
  21164. dickWere: {
  21165. height: math.unit((20) / 3.8, "feet"),
  21166. name: "Dick (Were)",
  21167. image: {
  21168. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21169. }
  21170. },
  21171. },
  21172. [
  21173. {
  21174. name: "Normal",
  21175. height: math.unit(6 + 1 / 12, "feet"),
  21176. default: true
  21177. },
  21178. ]
  21179. ))
  21180. characterMakers.push(() => makeCharacter(
  21181. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21182. {
  21183. front: {
  21184. height: math.unit(10, "feet"),
  21185. weight: math.unit(350, "lb"),
  21186. name: "Front",
  21187. image: {
  21188. source: "./media/characters/jet/front.svg",
  21189. extra: 2050 / 1980,
  21190. bottom: 0.013
  21191. }
  21192. },
  21193. back: {
  21194. height: math.unit(10, "feet"),
  21195. weight: math.unit(350, "lb"),
  21196. name: "Back",
  21197. image: {
  21198. source: "./media/characters/jet/back.svg",
  21199. extra: 2050 / 1980,
  21200. bottom: 0.013
  21201. }
  21202. },
  21203. },
  21204. [
  21205. {
  21206. name: "Micro",
  21207. height: math.unit(6, "inches")
  21208. },
  21209. {
  21210. name: "Normal",
  21211. height: math.unit(10, "feet"),
  21212. default: true
  21213. },
  21214. {
  21215. name: "Macro",
  21216. height: math.unit(100, "feet")
  21217. },
  21218. ]
  21219. ))
  21220. characterMakers.push(() => makeCharacter(
  21221. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21222. {
  21223. front: {
  21224. height: math.unit(15, "feet"),
  21225. weight: math.unit(2800, "lb"),
  21226. name: "Front",
  21227. image: {
  21228. source: "./media/characters/tanarath/front.svg",
  21229. extra: 2392 / 2220,
  21230. bottom: 0.03
  21231. }
  21232. },
  21233. back: {
  21234. height: math.unit(15, "feet"),
  21235. weight: math.unit(2800, "lb"),
  21236. name: "Back",
  21237. image: {
  21238. source: "./media/characters/tanarath/back.svg",
  21239. extra: 2392 / 2220,
  21240. bottom: 0.03
  21241. }
  21242. },
  21243. },
  21244. [
  21245. {
  21246. name: "Normal",
  21247. height: math.unit(15, "feet"),
  21248. default: true
  21249. },
  21250. ]
  21251. ))
  21252. characterMakers.push(() => makeCharacter(
  21253. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21254. {
  21255. front: {
  21256. height: math.unit(7 + 1 / 12, "feet"),
  21257. weight: math.unit(175, "lb"),
  21258. name: "Front",
  21259. image: {
  21260. source: "./media/characters/patty-cattybatty/front.svg",
  21261. extra: 908 / 874,
  21262. bottom: 0.025
  21263. }
  21264. },
  21265. },
  21266. [
  21267. {
  21268. name: "Micro",
  21269. height: math.unit(1, "inch")
  21270. },
  21271. {
  21272. name: "Normal",
  21273. height: math.unit(7 + 1 / 12, "feet")
  21274. },
  21275. {
  21276. name: "Mini Macro",
  21277. height: math.unit(155, "feet")
  21278. },
  21279. {
  21280. name: "Macro",
  21281. height: math.unit(1077, "feet")
  21282. },
  21283. {
  21284. name: "Mega Macro",
  21285. height: math.unit(47650, "feet"),
  21286. default: true
  21287. },
  21288. {
  21289. name: "Giga Macro",
  21290. height: math.unit(440, "miles")
  21291. },
  21292. {
  21293. name: "Tera Macro",
  21294. height: math.unit(8700, "miles")
  21295. },
  21296. {
  21297. name: "Planetary Macro",
  21298. height: math.unit(32700, "miles")
  21299. },
  21300. {
  21301. name: "Solar Macro",
  21302. height: math.unit(550000, "miles")
  21303. },
  21304. {
  21305. name: "Celestial Macro",
  21306. height: math.unit(2.5, "AU")
  21307. },
  21308. ]
  21309. ))
  21310. characterMakers.push(() => makeCharacter(
  21311. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21312. {
  21313. front: {
  21314. height: math.unit(4 + 5 / 12, "feet"),
  21315. weight: math.unit(90, "lb"),
  21316. name: "Front",
  21317. image: {
  21318. source: "./media/characters/cappu/front.svg",
  21319. extra: 1247 / 1152,
  21320. bottom: 0.012
  21321. }
  21322. },
  21323. },
  21324. [
  21325. {
  21326. name: "Normal",
  21327. height: math.unit(4 + 5 / 12, "feet"),
  21328. default: true
  21329. },
  21330. ]
  21331. ))
  21332. characterMakers.push(() => makeCharacter(
  21333. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21334. {
  21335. frontDressed: {
  21336. height: math.unit(70, "cm"),
  21337. weight: math.unit(6, "kg"),
  21338. name: "Front (Dressed)",
  21339. image: {
  21340. source: "./media/characters/sebi/front-dressed.svg",
  21341. extra: 713.5 / 686.5,
  21342. bottom: 0.003
  21343. }
  21344. },
  21345. front: {
  21346. height: math.unit(70, "cm"),
  21347. weight: math.unit(5, "kg"),
  21348. name: "Front",
  21349. image: {
  21350. source: "./media/characters/sebi/front.svg",
  21351. extra: 713.5 / 686.5,
  21352. bottom: 0.003
  21353. }
  21354. }
  21355. },
  21356. [
  21357. {
  21358. name: "Normal",
  21359. height: math.unit(70, "cm"),
  21360. default: true
  21361. },
  21362. {
  21363. name: "Macro",
  21364. height: math.unit(8, "meters")
  21365. },
  21366. ]
  21367. ))
  21368. characterMakers.push(() => makeCharacter(
  21369. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21370. {
  21371. front: {
  21372. height: math.unit(6, "feet"),
  21373. weight: math.unit(150, "lb"),
  21374. name: "Front",
  21375. image: {
  21376. source: "./media/characters/typhek/front.svg",
  21377. extra: 1948 / 1929,
  21378. bottom: 0.025
  21379. }
  21380. },
  21381. side: {
  21382. height: math.unit(6, "feet"),
  21383. weight: math.unit(150, "lb"),
  21384. name: "Side",
  21385. image: {
  21386. source: "./media/characters/typhek/side.svg",
  21387. extra: 2034 / 2010,
  21388. bottom: 0.003
  21389. }
  21390. },
  21391. back: {
  21392. height: math.unit(6, "feet"),
  21393. weight: math.unit(150, "lb"),
  21394. name: "Back",
  21395. image: {
  21396. source: "./media/characters/typhek/back.svg",
  21397. extra: 2005 / 1978,
  21398. bottom: 0.004
  21399. }
  21400. },
  21401. palm: {
  21402. height: math.unit(1.2, "feet"),
  21403. name: "Palm",
  21404. image: {
  21405. source: "./media/characters/typhek/palm.svg"
  21406. }
  21407. },
  21408. fist: {
  21409. height: math.unit(1.1, "feet"),
  21410. name: "Fist",
  21411. image: {
  21412. source: "./media/characters/typhek/fist.svg"
  21413. }
  21414. },
  21415. foot: {
  21416. height: math.unit(1.57, "feet"),
  21417. name: "Foot",
  21418. image: {
  21419. source: "./media/characters/typhek/foot.svg"
  21420. }
  21421. },
  21422. sole: {
  21423. height: math.unit(2.05, "feet"),
  21424. name: "Sole",
  21425. image: {
  21426. source: "./media/characters/typhek/sole.svg"
  21427. }
  21428. },
  21429. },
  21430. [
  21431. {
  21432. name: "Macro",
  21433. height: math.unit(40, "stories"),
  21434. default: true
  21435. },
  21436. {
  21437. name: "Megamacro",
  21438. height: math.unit(1, "mile")
  21439. },
  21440. {
  21441. name: "Gigamacro",
  21442. height: math.unit(4000, "solarradii")
  21443. },
  21444. {
  21445. name: "Universal",
  21446. height: math.unit(1.1, "universes")
  21447. }
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21452. {
  21453. side: {
  21454. height: math.unit(5 + 7 / 12, "feet"),
  21455. weight: math.unit(150, "lb"),
  21456. name: "Side",
  21457. image: {
  21458. source: "./media/characters/kassy/side.svg",
  21459. extra: 1280 / 1225,
  21460. bottom: 0.002
  21461. }
  21462. },
  21463. front: {
  21464. height: math.unit(5 + 7 / 12, "feet"),
  21465. weight: math.unit(150, "lb"),
  21466. name: "Front",
  21467. image: {
  21468. source: "./media/characters/kassy/front.svg",
  21469. extra: 1280 / 1225,
  21470. bottom: 0.025
  21471. }
  21472. },
  21473. back: {
  21474. height: math.unit(5 + 7 / 12, "feet"),
  21475. weight: math.unit(150, "lb"),
  21476. name: "Back",
  21477. image: {
  21478. source: "./media/characters/kassy/back.svg",
  21479. extra: 1280 / 1225,
  21480. bottom: 0.002
  21481. }
  21482. },
  21483. foot: {
  21484. height: math.unit(1.266, "feet"),
  21485. name: "Foot",
  21486. image: {
  21487. source: "./media/characters/kassy/foot.svg"
  21488. }
  21489. },
  21490. },
  21491. [
  21492. {
  21493. name: "Normal",
  21494. height: math.unit(5 + 7 / 12, "feet")
  21495. },
  21496. {
  21497. name: "Macro",
  21498. height: math.unit(137, "feet"),
  21499. default: true
  21500. },
  21501. {
  21502. name: "Megamacro",
  21503. height: math.unit(1, "mile")
  21504. },
  21505. ]
  21506. ))
  21507. characterMakers.push(() => makeCharacter(
  21508. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21509. {
  21510. front: {
  21511. height: math.unit(6 + 1 / 12, "feet"),
  21512. weight: math.unit(200, "lb"),
  21513. name: "Front",
  21514. image: {
  21515. source: "./media/characters/neil/front.svg",
  21516. extra: 1326 / 1250,
  21517. bottom: 0.023
  21518. }
  21519. },
  21520. },
  21521. [
  21522. {
  21523. name: "Normal",
  21524. height: math.unit(6 + 1 / 12, "feet"),
  21525. default: true
  21526. },
  21527. {
  21528. name: "Macro",
  21529. height: math.unit(200, "feet")
  21530. },
  21531. ]
  21532. ))
  21533. characterMakers.push(() => makeCharacter(
  21534. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21535. {
  21536. front: {
  21537. height: math.unit(5 + 9 / 12, "feet"),
  21538. weight: math.unit(190, "lb"),
  21539. name: "Front",
  21540. image: {
  21541. source: "./media/characters/atticus/front.svg",
  21542. extra: 2934 / 2785,
  21543. bottom: 0.025
  21544. }
  21545. },
  21546. },
  21547. [
  21548. {
  21549. name: "Normal",
  21550. height: math.unit(5 + 9 / 12, "feet"),
  21551. default: true
  21552. },
  21553. {
  21554. name: "Macro",
  21555. height: math.unit(180, "feet")
  21556. },
  21557. ]
  21558. ))
  21559. characterMakers.push(() => makeCharacter(
  21560. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21561. {
  21562. side: {
  21563. height: math.unit(9, "feet"),
  21564. weight: math.unit(650, "lb"),
  21565. name: "Side",
  21566. image: {
  21567. source: "./media/characters/milo/side.svg",
  21568. extra: 2644 / 2310,
  21569. bottom: 0.032
  21570. }
  21571. },
  21572. },
  21573. [
  21574. {
  21575. name: "Normal",
  21576. height: math.unit(9, "feet"),
  21577. default: true
  21578. },
  21579. {
  21580. name: "Macro",
  21581. height: math.unit(300, "feet")
  21582. },
  21583. ]
  21584. ))
  21585. characterMakers.push(() => makeCharacter(
  21586. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21587. {
  21588. side: {
  21589. height: math.unit(8, "meters"),
  21590. weight: math.unit(90000, "kg"),
  21591. name: "Side",
  21592. image: {
  21593. source: "./media/characters/ijzer/side.svg",
  21594. extra: 2756 / 1600,
  21595. bottom: 0.01
  21596. }
  21597. },
  21598. },
  21599. [
  21600. {
  21601. name: "Small",
  21602. height: math.unit(3, "meters")
  21603. },
  21604. {
  21605. name: "Normal",
  21606. height: math.unit(8, "meters"),
  21607. default: true
  21608. },
  21609. {
  21610. name: "Normal+",
  21611. height: math.unit(10, "meters")
  21612. },
  21613. {
  21614. name: "Bigger",
  21615. height: math.unit(24, "meters")
  21616. },
  21617. {
  21618. name: "Huge",
  21619. height: math.unit(80, "meters")
  21620. },
  21621. ]
  21622. ))
  21623. characterMakers.push(() => makeCharacter(
  21624. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21625. {
  21626. front: {
  21627. height: math.unit(6 + 2 / 12, "feet"),
  21628. weight: math.unit(153, "lb"),
  21629. name: "Front",
  21630. image: {
  21631. source: "./media/characters/luca-cervicum/front.svg",
  21632. extra: 370 / 327,
  21633. bottom: 0.015
  21634. }
  21635. },
  21636. back: {
  21637. height: math.unit(6 + 2 / 12, "feet"),
  21638. weight: math.unit(153, "lb"),
  21639. name: "Back",
  21640. image: {
  21641. source: "./media/characters/luca-cervicum/back.svg",
  21642. extra: 367 / 333,
  21643. bottom: 0.005
  21644. }
  21645. },
  21646. frontGear: {
  21647. height: math.unit(6 + 2 / 12, "feet"),
  21648. weight: math.unit(173, "lb"),
  21649. name: "Front (Gear)",
  21650. image: {
  21651. source: "./media/characters/luca-cervicum/front-gear.svg",
  21652. extra: 377 / 333,
  21653. bottom: 0.006
  21654. }
  21655. },
  21656. },
  21657. [
  21658. {
  21659. name: "Normal",
  21660. height: math.unit(6 + 2 / 12, "feet"),
  21661. default: true
  21662. },
  21663. ]
  21664. ))
  21665. characterMakers.push(() => makeCharacter(
  21666. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21667. {
  21668. front: {
  21669. height: math.unit(6 + 1 / 12, "feet"),
  21670. weight: math.unit(304, "lb"),
  21671. name: "Front",
  21672. image: {
  21673. source: "./media/characters/oliver/front.svg",
  21674. extra: 157 / 143,
  21675. bottom: 0.08
  21676. }
  21677. },
  21678. },
  21679. [
  21680. {
  21681. name: "Normal",
  21682. height: math.unit(6 + 1 / 12, "feet"),
  21683. default: true
  21684. },
  21685. ]
  21686. ))
  21687. characterMakers.push(() => makeCharacter(
  21688. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21689. {
  21690. front: {
  21691. height: math.unit(5 + 7 / 12, "feet"),
  21692. weight: math.unit(140, "lb"),
  21693. name: "Front",
  21694. image: {
  21695. source: "./media/characters/shane/front.svg",
  21696. extra: 304 / 289,
  21697. bottom: 0.005
  21698. }
  21699. },
  21700. },
  21701. [
  21702. {
  21703. name: "Normal",
  21704. height: math.unit(5 + 7 / 12, "feet"),
  21705. default: true
  21706. },
  21707. ]
  21708. ))
  21709. characterMakers.push(() => makeCharacter(
  21710. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21711. {
  21712. front: {
  21713. height: math.unit(5 + 9 / 12, "feet"),
  21714. weight: math.unit(178, "lb"),
  21715. name: "Front",
  21716. image: {
  21717. source: "./media/characters/shin/front.svg",
  21718. extra: 159 / 151,
  21719. bottom: 0.015
  21720. }
  21721. },
  21722. },
  21723. [
  21724. {
  21725. name: "Normal",
  21726. height: math.unit(5 + 9 / 12, "feet"),
  21727. default: true
  21728. },
  21729. ]
  21730. ))
  21731. characterMakers.push(() => makeCharacter(
  21732. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21733. {
  21734. front: {
  21735. height: math.unit(5 + 10 / 12, "feet"),
  21736. weight: math.unit(168, "lb"),
  21737. name: "Front",
  21738. image: {
  21739. source: "./media/characters/xerxes/front.svg",
  21740. extra: 282 / 260,
  21741. bottom: 0.045
  21742. }
  21743. },
  21744. },
  21745. [
  21746. {
  21747. name: "Normal",
  21748. height: math.unit(5 + 10 / 12, "feet"),
  21749. default: true
  21750. },
  21751. ]
  21752. ))
  21753. characterMakers.push(() => makeCharacter(
  21754. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21755. {
  21756. front: {
  21757. height: math.unit(6 + 7 / 12, "feet"),
  21758. weight: math.unit(208, "lb"),
  21759. name: "Front",
  21760. image: {
  21761. source: "./media/characters/chaska/front.svg",
  21762. extra: 332 / 319,
  21763. bottom: 0.015
  21764. }
  21765. },
  21766. },
  21767. [
  21768. {
  21769. name: "Normal",
  21770. height: math.unit(6 + 7 / 12, "feet"),
  21771. default: true
  21772. },
  21773. ]
  21774. ))
  21775. characterMakers.push(() => makeCharacter(
  21776. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21777. {
  21778. front: {
  21779. height: math.unit(5 + 8 / 12, "feet"),
  21780. weight: math.unit(208, "lb"),
  21781. name: "Front",
  21782. image: {
  21783. source: "./media/characters/enuk/front.svg",
  21784. extra: 437 / 406,
  21785. bottom: 0.02
  21786. }
  21787. },
  21788. },
  21789. [
  21790. {
  21791. name: "Normal",
  21792. height: math.unit(5 + 8 / 12, "feet"),
  21793. default: true
  21794. },
  21795. ]
  21796. ))
  21797. characterMakers.push(() => makeCharacter(
  21798. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21799. {
  21800. front: {
  21801. height: math.unit(5 + 10 / 12, "feet"),
  21802. weight: math.unit(252, "lb"),
  21803. name: "Front",
  21804. image: {
  21805. source: "./media/characters/bruun/front.svg",
  21806. extra: 197 / 187,
  21807. bottom: 0.012
  21808. }
  21809. },
  21810. },
  21811. [
  21812. {
  21813. name: "Normal",
  21814. height: math.unit(5 + 10 / 12, "feet"),
  21815. default: true
  21816. },
  21817. ]
  21818. ))
  21819. characterMakers.push(() => makeCharacter(
  21820. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21821. {
  21822. front: {
  21823. height: math.unit(6 + 10 / 12, "feet"),
  21824. weight: math.unit(255, "lb"),
  21825. name: "Front",
  21826. image: {
  21827. source: "./media/characters/alexeev/front.svg",
  21828. extra: 213 / 200,
  21829. bottom: 0.05
  21830. }
  21831. },
  21832. },
  21833. [
  21834. {
  21835. name: "Normal",
  21836. height: math.unit(6 + 10 / 12, "feet"),
  21837. default: true
  21838. },
  21839. ]
  21840. ))
  21841. characterMakers.push(() => makeCharacter(
  21842. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21843. {
  21844. front: {
  21845. height: math.unit(2 + 8 / 12, "feet"),
  21846. weight: math.unit(22, "lb"),
  21847. name: "Front",
  21848. image: {
  21849. source: "./media/characters/evelyn/front.svg",
  21850. extra: 208 / 180
  21851. }
  21852. },
  21853. },
  21854. [
  21855. {
  21856. name: "Normal",
  21857. height: math.unit(2 + 8 / 12, "feet"),
  21858. default: true
  21859. },
  21860. ]
  21861. ))
  21862. characterMakers.push(() => makeCharacter(
  21863. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21864. {
  21865. front: {
  21866. height: math.unit(5 + 9 / 12, "feet"),
  21867. weight: math.unit(139, "lb"),
  21868. name: "Front",
  21869. image: {
  21870. source: "./media/characters/inca/front.svg",
  21871. extra: 294 / 291,
  21872. bottom: 0.03
  21873. }
  21874. },
  21875. },
  21876. [
  21877. {
  21878. name: "Normal",
  21879. height: math.unit(5 + 9 / 12, "feet"),
  21880. default: true
  21881. },
  21882. ]
  21883. ))
  21884. characterMakers.push(() => makeCharacter(
  21885. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21886. {
  21887. front: {
  21888. height: math.unit(6 + 3 / 12, "feet"),
  21889. weight: math.unit(185, "lb"),
  21890. name: "Front",
  21891. image: {
  21892. source: "./media/characters/mera/front.svg",
  21893. extra: 291 / 277,
  21894. bottom: 0.03
  21895. }
  21896. },
  21897. },
  21898. [
  21899. {
  21900. name: "Normal",
  21901. height: math.unit(6 + 3 / 12, "feet"),
  21902. default: true
  21903. },
  21904. ]
  21905. ))
  21906. characterMakers.push(() => makeCharacter(
  21907. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21908. {
  21909. front: {
  21910. height: math.unit(6 + 7 / 12, "feet"),
  21911. weight: math.unit(160, "lb"),
  21912. name: "Front",
  21913. image: {
  21914. source: "./media/characters/ceres/front.svg",
  21915. extra: 1023 / 950,
  21916. bottom: 0.027
  21917. }
  21918. },
  21919. back: {
  21920. height: math.unit(6 + 7 / 12, "feet"),
  21921. weight: math.unit(160, "lb"),
  21922. name: "Back",
  21923. image: {
  21924. source: "./media/characters/ceres/back.svg",
  21925. extra: 1023 / 950
  21926. }
  21927. },
  21928. },
  21929. [
  21930. {
  21931. name: "Normal",
  21932. height: math.unit(6 + 7 / 12, "feet"),
  21933. default: true
  21934. },
  21935. ]
  21936. ))
  21937. characterMakers.push(() => makeCharacter(
  21938. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21939. {
  21940. front: {
  21941. height: math.unit(5 + 10 / 12, "feet"),
  21942. weight: math.unit(150, "lb"),
  21943. name: "Front",
  21944. image: {
  21945. source: "./media/characters/kris/front.svg",
  21946. extra: 885 / 803,
  21947. bottom: 0.03
  21948. }
  21949. },
  21950. },
  21951. [
  21952. {
  21953. name: "Normal",
  21954. height: math.unit(5 + 10 / 12, "feet"),
  21955. default: true
  21956. },
  21957. ]
  21958. ))
  21959. characterMakers.push(() => makeCharacter(
  21960. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21961. {
  21962. dragon_front: {
  21963. height: math.unit(5, "feet"),
  21964. name: "Front",
  21965. image: {
  21966. source: "./media/characters/taluthus/dragon-front.svg",
  21967. extra: 1203/1098,
  21968. bottom: 46/1249
  21969. },
  21970. form: "dragon",
  21971. default: true
  21972. },
  21973. dragon_maw: {
  21974. height: math.unit(2.35, "feet"),
  21975. name: "Maw",
  21976. image: {
  21977. source: "./media/characters/taluthus/dragon-maw.svg"
  21978. },
  21979. form: "dragon",
  21980. },
  21981. kitsune_front: {
  21982. height: math.unit(7, "feet"),
  21983. name: "Front",
  21984. image: {
  21985. source: "./media/characters/taluthus/kitsune-front.svg",
  21986. extra: 900/841,
  21987. bottom: 65/965
  21988. },
  21989. form: "kitsune",
  21990. default: true
  21991. },
  21992. },
  21993. [
  21994. {
  21995. name: "Normal",
  21996. height: math.unit(5, "feet"),
  21997. form: "dragon",
  21998. default: true,
  21999. },
  22000. {
  22001. name: "Normal",
  22002. height: math.unit(7, "feet"),
  22003. form: "kitsune",
  22004. default: true
  22005. },
  22006. {
  22007. name: "Macro",
  22008. height: math.unit(300, "feet"),
  22009. allForms: true
  22010. },
  22011. ],
  22012. {
  22013. "dragon": {
  22014. name: "Dragon",
  22015. default: true
  22016. },
  22017. "kitsune": {
  22018. name: "Kitsune",
  22019. },
  22020. }
  22021. ))
  22022. characterMakers.push(() => makeCharacter(
  22023. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22024. {
  22025. front: {
  22026. height: math.unit(5 + 9 / 12, "feet"),
  22027. weight: math.unit(145, "lb"),
  22028. name: "Front",
  22029. image: {
  22030. source: "./media/characters/dawn/front.svg",
  22031. extra: 2094 / 2016,
  22032. bottom: 0.025
  22033. }
  22034. },
  22035. back: {
  22036. height: math.unit(5 + 9 / 12, "feet"),
  22037. weight: math.unit(160, "lb"),
  22038. name: "Back",
  22039. image: {
  22040. source: "./media/characters/dawn/back.svg",
  22041. extra: 2112 / 2080,
  22042. bottom: 0.005
  22043. }
  22044. },
  22045. },
  22046. [
  22047. {
  22048. name: "Normal",
  22049. height: math.unit(6 + 7 / 12, "feet"),
  22050. default: true
  22051. },
  22052. ]
  22053. ))
  22054. characterMakers.push(() => makeCharacter(
  22055. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22056. {
  22057. anthro: {
  22058. height: math.unit(8 + 3 / 12, "feet"),
  22059. weight: math.unit(450, "lb"),
  22060. name: "Anthro",
  22061. image: {
  22062. source: "./media/characters/arador/anthro.svg",
  22063. extra: 1835 / 1718,
  22064. bottom: 0.025
  22065. }
  22066. },
  22067. feral: {
  22068. height: math.unit(4, "feet"),
  22069. weight: math.unit(200, "lb"),
  22070. name: "Feral",
  22071. image: {
  22072. source: "./media/characters/arador/feral.svg",
  22073. extra: 1683 / 1514,
  22074. bottom: 0.07
  22075. }
  22076. },
  22077. },
  22078. [
  22079. {
  22080. name: "Normal",
  22081. height: math.unit(8 + 3 / 12, "feet")
  22082. },
  22083. {
  22084. name: "Macro",
  22085. height: math.unit(82.5, "feet"),
  22086. default: true
  22087. },
  22088. ]
  22089. ))
  22090. characterMakers.push(() => makeCharacter(
  22091. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22092. {
  22093. front: {
  22094. height: math.unit(5 + 10 / 12, "feet"),
  22095. weight: math.unit(125, "lb"),
  22096. name: "Front",
  22097. image: {
  22098. source: "./media/characters/dharsi/front.svg",
  22099. extra: 716 / 630,
  22100. bottom: 0.035
  22101. }
  22102. },
  22103. },
  22104. [
  22105. {
  22106. name: "Nano",
  22107. height: math.unit(100, "nm")
  22108. },
  22109. {
  22110. name: "Micro",
  22111. height: math.unit(2, "inches")
  22112. },
  22113. {
  22114. name: "Normal",
  22115. height: math.unit(5 + 10 / 12, "feet"),
  22116. default: true
  22117. },
  22118. {
  22119. name: "Macro",
  22120. height: math.unit(1000, "feet")
  22121. },
  22122. {
  22123. name: "Megamacro",
  22124. height: math.unit(10, "miles")
  22125. },
  22126. {
  22127. name: "Gigamacro",
  22128. height: math.unit(3000, "miles")
  22129. },
  22130. {
  22131. name: "Teramacro",
  22132. height: math.unit(500000, "miles")
  22133. },
  22134. {
  22135. name: "Teramacro+",
  22136. height: math.unit(30, "galaxies")
  22137. },
  22138. ]
  22139. ))
  22140. characterMakers.push(() => makeCharacter(
  22141. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22142. {
  22143. front: {
  22144. height: math.unit(6, "feet"),
  22145. weight: math.unit(150, "lb"),
  22146. name: "Front",
  22147. image: {
  22148. source: "./media/characters/deathy/front.svg",
  22149. extra: 1552 / 1463,
  22150. bottom: 0.025
  22151. }
  22152. },
  22153. side: {
  22154. height: math.unit(6, "feet"),
  22155. weight: math.unit(150, "lb"),
  22156. name: "Side",
  22157. image: {
  22158. source: "./media/characters/deathy/side.svg",
  22159. extra: 1604 / 1455,
  22160. bottom: 0.025
  22161. }
  22162. },
  22163. back: {
  22164. height: math.unit(6, "feet"),
  22165. weight: math.unit(150, "lb"),
  22166. name: "Back",
  22167. image: {
  22168. source: "./media/characters/deathy/back.svg",
  22169. extra: 1580 / 1463,
  22170. bottom: 0.005
  22171. }
  22172. },
  22173. },
  22174. [
  22175. {
  22176. name: "Micro",
  22177. height: math.unit(5, "millimeters")
  22178. },
  22179. {
  22180. name: "Normal",
  22181. height: math.unit(6 + 5 / 12, "feet"),
  22182. default: true
  22183. },
  22184. ]
  22185. ))
  22186. characterMakers.push(() => makeCharacter(
  22187. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22188. {
  22189. front: {
  22190. height: math.unit(16, "feet"),
  22191. weight: math.unit(4000, "lb"),
  22192. name: "Front",
  22193. image: {
  22194. source: "./media/characters/juniper/front.svg",
  22195. bottom: 0.04
  22196. }
  22197. },
  22198. },
  22199. [
  22200. {
  22201. name: "Normal",
  22202. height: math.unit(16, "feet"),
  22203. default: true
  22204. },
  22205. ]
  22206. ))
  22207. characterMakers.push(() => makeCharacter(
  22208. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22209. {
  22210. front: {
  22211. height: math.unit(6, "feet"),
  22212. weight: math.unit(150, "lb"),
  22213. name: "Front",
  22214. image: {
  22215. source: "./media/characters/hipster/front.svg",
  22216. extra: 1312 / 1209,
  22217. bottom: 0.025
  22218. }
  22219. },
  22220. back: {
  22221. height: math.unit(6, "feet"),
  22222. weight: math.unit(150, "lb"),
  22223. name: "Back",
  22224. image: {
  22225. source: "./media/characters/hipster/back.svg",
  22226. extra: 1281 / 1196,
  22227. bottom: 0.01
  22228. }
  22229. },
  22230. },
  22231. [
  22232. {
  22233. name: "Micro",
  22234. height: math.unit(1, "mm")
  22235. },
  22236. {
  22237. name: "Normal",
  22238. height: math.unit(4, "inches"),
  22239. default: true
  22240. },
  22241. {
  22242. name: "Macro",
  22243. height: math.unit(500, "feet")
  22244. },
  22245. {
  22246. name: "Megamacro",
  22247. height: math.unit(1000, "miles")
  22248. },
  22249. ]
  22250. ))
  22251. characterMakers.push(() => makeCharacter(
  22252. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22253. {
  22254. front: {
  22255. height: math.unit(6, "feet"),
  22256. weight: math.unit(150, "lb"),
  22257. name: "Front",
  22258. image: {
  22259. source: "./media/characters/tendirmuldr/front.svg",
  22260. extra: 1878 / 1772,
  22261. bottom: 0.015
  22262. }
  22263. },
  22264. },
  22265. [
  22266. {
  22267. name: "Megamacro",
  22268. height: math.unit(1500, "miles"),
  22269. default: true
  22270. },
  22271. ]
  22272. ))
  22273. characterMakers.push(() => makeCharacter(
  22274. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22275. {
  22276. front: {
  22277. height: math.unit(14, "feet"),
  22278. weight: math.unit(12000, "lb"),
  22279. name: "Front",
  22280. image: {
  22281. source: "./media/characters/mort/front.svg",
  22282. extra: 365 / 318,
  22283. bottom: 0.01
  22284. }
  22285. },
  22286. side: {
  22287. height: math.unit(14, "feet"),
  22288. weight: math.unit(12000, "lb"),
  22289. name: "Side",
  22290. image: {
  22291. source: "./media/characters/mort/side.svg",
  22292. extra: 365 / 318,
  22293. bottom: 0.052
  22294. },
  22295. default: true
  22296. },
  22297. back: {
  22298. height: math.unit(14, "feet"),
  22299. weight: math.unit(12000, "lb"),
  22300. name: "Back",
  22301. image: {
  22302. source: "./media/characters/mort/back.svg",
  22303. extra: 371 / 332,
  22304. bottom: 0.18
  22305. }
  22306. },
  22307. },
  22308. [
  22309. {
  22310. name: "Normal",
  22311. height: math.unit(14, "feet"),
  22312. default: true
  22313. },
  22314. ]
  22315. ))
  22316. characterMakers.push(() => makeCharacter(
  22317. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22318. {
  22319. front: {
  22320. height: math.unit(8, "feet"),
  22321. weight: math.unit(1, "ton"),
  22322. name: "Front",
  22323. image: {
  22324. source: "./media/characters/lycoa/front.svg",
  22325. extra: 1836/1728,
  22326. bottom: 81/1917
  22327. }
  22328. },
  22329. back: {
  22330. height: math.unit(8, "feet"),
  22331. weight: math.unit(1, "ton"),
  22332. name: "Back",
  22333. image: {
  22334. source: "./media/characters/lycoa/back.svg",
  22335. extra: 1785/1720,
  22336. bottom: 91/1876
  22337. }
  22338. },
  22339. head: {
  22340. height: math.unit(1.6243, "feet"),
  22341. name: "Head",
  22342. image: {
  22343. source: "./media/characters/lycoa/head.svg",
  22344. extra: 1011/782,
  22345. bottom: 0/1011
  22346. }
  22347. },
  22348. tailmaw: {
  22349. height: math.unit(1.9, "feet"),
  22350. name: "Tailmaw",
  22351. image: {
  22352. source: "./media/characters/lycoa/tailmaw.svg"
  22353. }
  22354. },
  22355. tentacles: {
  22356. height: math.unit(2.1, "feet"),
  22357. name: "Tentacles",
  22358. image: {
  22359. source: "./media/characters/lycoa/tentacles.svg"
  22360. }
  22361. },
  22362. dick: {
  22363. height: math.unit(1.73, "feet"),
  22364. name: "Dick",
  22365. image: {
  22366. source: "./media/characters/lycoa/dick.svg"
  22367. }
  22368. },
  22369. },
  22370. [
  22371. {
  22372. name: "Normal",
  22373. height: math.unit(8, "feet"),
  22374. default: true
  22375. },
  22376. {
  22377. name: "Macro",
  22378. height: math.unit(30, "feet")
  22379. },
  22380. ]
  22381. ))
  22382. characterMakers.push(() => makeCharacter(
  22383. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22384. {
  22385. front: {
  22386. height: math.unit(4 + 2 / 12, "feet"),
  22387. weight: math.unit(70, "lb"),
  22388. name: "Front",
  22389. image: {
  22390. source: "./media/characters/naldara/front.svg",
  22391. extra: 1664/1387,
  22392. bottom: 81/1745
  22393. },
  22394. form: "anthro",
  22395. default: true
  22396. },
  22397. naga: {
  22398. height: math.unit(20, "feet"),
  22399. weight: math.unit(15000, "kg"),
  22400. name: "Front",
  22401. image: {
  22402. source: "./media/characters/naldara/naga.svg",
  22403. extra: 1590/1396,
  22404. bottom: 285/1875
  22405. },
  22406. form: "naga",
  22407. default: true
  22408. },
  22409. },
  22410. [
  22411. {
  22412. name: "Normal",
  22413. height: math.unit(4 + 2 / 12, "feet"),
  22414. form: "anthro",
  22415. default: true
  22416. },
  22417. {
  22418. name: "Normal",
  22419. height: math.unit(20, "feet"),
  22420. form: "naga",
  22421. default: true
  22422. },
  22423. ],
  22424. {
  22425. "anthro": {
  22426. name: "Anthro",
  22427. default: true
  22428. },
  22429. "naga": {
  22430. name: "Naga"
  22431. }
  22432. }
  22433. ))
  22434. characterMakers.push(() => makeCharacter(
  22435. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22436. {
  22437. front: {
  22438. height: math.unit(13 + 7 / 12, "feet"),
  22439. weight: math.unit(1500, "lb"),
  22440. name: "Front",
  22441. image: {
  22442. source: "./media/characters/briar/front.svg",
  22443. extra: 1223/1157,
  22444. bottom: 123/1346
  22445. }
  22446. },
  22447. },
  22448. [
  22449. {
  22450. name: "Normal",
  22451. height: math.unit(13 + 7 / 12, "feet"),
  22452. default: true
  22453. },
  22454. ]
  22455. ))
  22456. characterMakers.push(() => makeCharacter(
  22457. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22458. {
  22459. side: {
  22460. height: math.unit(16, "feet"),
  22461. weight: math.unit(500, "lb"),
  22462. name: "Side",
  22463. image: {
  22464. source: "./media/characters/vanguard/side.svg",
  22465. extra: 1022/914,
  22466. bottom: 30/1052
  22467. }
  22468. },
  22469. sideAlt: {
  22470. height: math.unit(10, "feet"),
  22471. weight: math.unit(500, "lb"),
  22472. name: "Side (Alt)",
  22473. image: {
  22474. source: "./media/characters/vanguard/side-alt.svg",
  22475. extra: 502 / 425,
  22476. bottom: 0.087
  22477. }
  22478. },
  22479. },
  22480. [
  22481. {
  22482. name: "Normal",
  22483. height: math.unit(17.71, "feet"),
  22484. default: true
  22485. },
  22486. ]
  22487. ))
  22488. characterMakers.push(() => makeCharacter(
  22489. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22490. {
  22491. front: {
  22492. height: math.unit(7.5, "feet"),
  22493. weight: math.unit(2, "lb"),
  22494. name: "Front",
  22495. image: {
  22496. source: "./media/characters/artemis/work-safe-front.svg",
  22497. extra: 1192 / 1075,
  22498. bottom: 0.07
  22499. },
  22500. form: "work-safe",
  22501. default: true
  22502. },
  22503. frontNsfw: {
  22504. height: math.unit(7.5, "feet"),
  22505. weight: math.unit(2, "lb"),
  22506. name: "Front",
  22507. image: {
  22508. source: "./media/characters/artemis/calibrating-front.svg",
  22509. extra: 1192 / 1075,
  22510. bottom: 0.07
  22511. },
  22512. form: "calibrating",
  22513. default: true
  22514. },
  22515. frontNsfwer: {
  22516. height: math.unit(7.5, "feet"),
  22517. weight: math.unit(2, "lb"),
  22518. name: "Front",
  22519. image: {
  22520. source: "./media/characters/artemis/oversize-load-front.svg",
  22521. extra: 1192 / 1075,
  22522. bottom: 0.07
  22523. },
  22524. form: "oversize-load",
  22525. default: true
  22526. },
  22527. side: {
  22528. height: math.unit(7.5, "feet"),
  22529. weight: math.unit(2, "lb"),
  22530. name: "Side",
  22531. image: {
  22532. source: "./media/characters/artemis/work-safe-side.svg",
  22533. extra: 1192 / 1075,
  22534. bottom: 0.07
  22535. },
  22536. form: "work-safe"
  22537. },
  22538. sideNsfw: {
  22539. height: math.unit(7.5, "feet"),
  22540. weight: math.unit(2, "lb"),
  22541. name: "Side",
  22542. image: {
  22543. source: "./media/characters/artemis/calibrating-side.svg",
  22544. extra: 1192 / 1075,
  22545. bottom: 0.07
  22546. },
  22547. form: "calibrating"
  22548. },
  22549. sideNsfwer: {
  22550. height: math.unit(7.5, "feet"),
  22551. weight: math.unit(2, "lb"),
  22552. name: "Side",
  22553. image: {
  22554. source: "./media/characters/artemis/oversize-load-side.svg",
  22555. extra: 1192 / 1075,
  22556. bottom: 0.07
  22557. },
  22558. form: "oversize-load"
  22559. },
  22560. maw: {
  22561. height: math.unit(1.1, "feet"),
  22562. name: "Maw",
  22563. image: {
  22564. source: "./media/characters/artemis/maw.svg"
  22565. },
  22566. form: "work-safe"
  22567. },
  22568. stomach: {
  22569. height: math.unit(0.95, "feet"),
  22570. name: "Stomach",
  22571. image: {
  22572. source: "./media/characters/artemis/stomach.svg"
  22573. },
  22574. form: "work-safe"
  22575. },
  22576. dickCanine: {
  22577. height: math.unit(1, "feet"),
  22578. name: "Dick (Canine)",
  22579. image: {
  22580. source: "./media/characters/artemis/dick-canine.svg"
  22581. },
  22582. form: "calibrating"
  22583. },
  22584. dickEquine: {
  22585. height: math.unit(0.85, "feet"),
  22586. name: "Dick (Equine)",
  22587. image: {
  22588. source: "./media/characters/artemis/dick-equine.svg"
  22589. },
  22590. form: "calibrating"
  22591. },
  22592. dickExotic: {
  22593. height: math.unit(0.85, "feet"),
  22594. name: "Dick (Exotic)",
  22595. image: {
  22596. source: "./media/characters/artemis/dick-exotic.svg"
  22597. },
  22598. form: "calibrating"
  22599. },
  22600. dickCanineBigger: {
  22601. height: math.unit(1 * 1.33, "feet"),
  22602. name: "Dick (Canine)",
  22603. image: {
  22604. source: "./media/characters/artemis/dick-canine.svg"
  22605. },
  22606. form: "oversize-load"
  22607. },
  22608. dickEquineBigger: {
  22609. height: math.unit(0.85 * 1.33, "feet"),
  22610. name: "Dick (Equine)",
  22611. image: {
  22612. source: "./media/characters/artemis/dick-equine.svg"
  22613. },
  22614. form: "oversize-load"
  22615. },
  22616. dickExoticBigger: {
  22617. height: math.unit(0.85 * 1.33, "feet"),
  22618. name: "Dick (Exotic)",
  22619. image: {
  22620. source: "./media/characters/artemis/dick-exotic.svg"
  22621. },
  22622. form: "oversize-load"
  22623. },
  22624. },
  22625. [
  22626. {
  22627. name: "Normal",
  22628. height: math.unit(7.5, "feet"),
  22629. form: "work-safe",
  22630. default: true
  22631. },
  22632. {
  22633. name: "Normal",
  22634. height: math.unit(7.5, "feet"),
  22635. form: "calibrating",
  22636. default: true
  22637. },
  22638. {
  22639. name: "Normal",
  22640. height: math.unit(7.5, "feet"),
  22641. form: "oversize-load",
  22642. default: true
  22643. },
  22644. {
  22645. name: "Enlarged",
  22646. height: math.unit(12, "feet"),
  22647. form: "work-safe",
  22648. },
  22649. {
  22650. name: "Enlarged",
  22651. height: math.unit(12, "feet"),
  22652. form: "calibrating",
  22653. },
  22654. {
  22655. name: "Enlarged",
  22656. height: math.unit(12, "feet"),
  22657. form: "oversize-load",
  22658. },
  22659. ],
  22660. {
  22661. "work-safe": {
  22662. name: "Work-Safe",
  22663. default: true
  22664. },
  22665. "calibrating": {
  22666. name: "Calibrating"
  22667. },
  22668. "oversize-load": {
  22669. name: "Oversize Load"
  22670. }
  22671. }
  22672. ))
  22673. characterMakers.push(() => makeCharacter(
  22674. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22675. {
  22676. front: {
  22677. height: math.unit(5 + 3 / 12, "feet"),
  22678. weight: math.unit(160, "lb"),
  22679. name: "Front",
  22680. image: {
  22681. source: "./media/characters/kira/front.svg",
  22682. extra: 906 / 786,
  22683. bottom: 0.01
  22684. }
  22685. },
  22686. back: {
  22687. height: math.unit(5 + 3 / 12, "feet"),
  22688. weight: math.unit(160, "lb"),
  22689. name: "Back",
  22690. image: {
  22691. source: "./media/characters/kira/back.svg",
  22692. extra: 882 / 757,
  22693. bottom: 0.005
  22694. }
  22695. },
  22696. frontDressed: {
  22697. height: math.unit(5 + 3 / 12, "feet"),
  22698. weight: math.unit(160, "lb"),
  22699. name: "Front (Dressed)",
  22700. image: {
  22701. source: "./media/characters/kira/front-dressed.svg",
  22702. extra: 906 / 786,
  22703. bottom: 0.01
  22704. }
  22705. },
  22706. beans: {
  22707. height: math.unit(0.92, "feet"),
  22708. name: "Beans",
  22709. image: {
  22710. source: "./media/characters/kira/beans.svg"
  22711. }
  22712. },
  22713. },
  22714. [
  22715. {
  22716. name: "Normal",
  22717. height: math.unit(5 + 3 / 12, "feet"),
  22718. default: true
  22719. },
  22720. ]
  22721. ))
  22722. characterMakers.push(() => makeCharacter(
  22723. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22724. {
  22725. front: {
  22726. height: math.unit(5 + 4 / 12, "feet"),
  22727. weight: math.unit(145, "lb"),
  22728. name: "Front",
  22729. image: {
  22730. source: "./media/characters/scramble/front.svg",
  22731. extra: 763 / 727,
  22732. bottom: 0.05
  22733. }
  22734. },
  22735. back: {
  22736. height: math.unit(5 + 4 / 12, "feet"),
  22737. weight: math.unit(145, "lb"),
  22738. name: "Back",
  22739. image: {
  22740. source: "./media/characters/scramble/back.svg",
  22741. extra: 826 / 737,
  22742. bottom: 0.002
  22743. }
  22744. },
  22745. },
  22746. [
  22747. {
  22748. name: "Normal",
  22749. height: math.unit(5 + 4 / 12, "feet"),
  22750. default: true
  22751. },
  22752. ]
  22753. ))
  22754. characterMakers.push(() => makeCharacter(
  22755. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22756. {
  22757. side: {
  22758. height: math.unit(6 + 2 / 12, "feet"),
  22759. weight: math.unit(190, "lb"),
  22760. name: "Side",
  22761. image: {
  22762. source: "./media/characters/biscuit/side.svg",
  22763. extra: 858 / 791,
  22764. bottom: 0.044
  22765. }
  22766. },
  22767. },
  22768. [
  22769. {
  22770. name: "Normal",
  22771. height: math.unit(6 + 2 / 12, "feet"),
  22772. default: true
  22773. },
  22774. ]
  22775. ))
  22776. characterMakers.push(() => makeCharacter(
  22777. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22778. {
  22779. front: {
  22780. height: math.unit(5 + 2 / 12, "feet"),
  22781. weight: math.unit(120, "lb"),
  22782. name: "Front",
  22783. image: {
  22784. source: "./media/characters/poffin/front.svg",
  22785. extra: 786 / 680,
  22786. bottom: 0.005
  22787. }
  22788. },
  22789. },
  22790. [
  22791. {
  22792. name: "Normal",
  22793. height: math.unit(5 + 2 / 12, "feet"),
  22794. default: true
  22795. },
  22796. ]
  22797. ))
  22798. characterMakers.push(() => makeCharacter(
  22799. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22800. {
  22801. front: {
  22802. height: math.unit(6 + 3 / 12, "feet"),
  22803. weight: math.unit(519, "lb"),
  22804. name: "Front",
  22805. image: {
  22806. source: "./media/characters/dhari/front.svg",
  22807. extra: 1048 / 946,
  22808. bottom: 0.015
  22809. }
  22810. },
  22811. back: {
  22812. height: math.unit(6 + 3 / 12, "feet"),
  22813. weight: math.unit(519, "lb"),
  22814. name: "Back",
  22815. image: {
  22816. source: "./media/characters/dhari/back.svg",
  22817. extra: 1048 / 931,
  22818. bottom: 0.005
  22819. }
  22820. },
  22821. frontDressed: {
  22822. height: math.unit(6 + 3 / 12, "feet"),
  22823. weight: math.unit(519, "lb"),
  22824. name: "Front (Dressed)",
  22825. image: {
  22826. source: "./media/characters/dhari/front-dressed.svg",
  22827. extra: 1713 / 1546,
  22828. bottom: 0.02
  22829. }
  22830. },
  22831. backDressed: {
  22832. height: math.unit(6 + 3 / 12, "feet"),
  22833. weight: math.unit(519, "lb"),
  22834. name: "Back (Dressed)",
  22835. image: {
  22836. source: "./media/characters/dhari/back-dressed.svg",
  22837. extra: 1699 / 1537,
  22838. bottom: 0.01
  22839. }
  22840. },
  22841. maw: {
  22842. height: math.unit(0.95, "feet"),
  22843. name: "Maw",
  22844. image: {
  22845. source: "./media/characters/dhari/maw.svg"
  22846. }
  22847. },
  22848. wereFront: {
  22849. height: math.unit(12 + 8 / 12, "feet"),
  22850. weight: math.unit(4000, "lb"),
  22851. name: "Front (Were)",
  22852. image: {
  22853. source: "./media/characters/dhari/were-front.svg",
  22854. extra: 1065 / 969,
  22855. bottom: 0.015
  22856. }
  22857. },
  22858. wereBack: {
  22859. height: math.unit(12 + 8 / 12, "feet"),
  22860. weight: math.unit(4000, "lb"),
  22861. name: "Back (Were)",
  22862. image: {
  22863. source: "./media/characters/dhari/were-back.svg",
  22864. extra: 1065 / 969,
  22865. bottom: 0.012
  22866. }
  22867. },
  22868. wereMaw: {
  22869. height: math.unit(0.625, "meters"),
  22870. name: "Maw (Were)",
  22871. image: {
  22872. source: "./media/characters/dhari/were-maw.svg"
  22873. }
  22874. },
  22875. },
  22876. [
  22877. {
  22878. name: "Normal",
  22879. height: math.unit(6 + 3 / 12, "feet"),
  22880. default: true
  22881. },
  22882. ]
  22883. ))
  22884. characterMakers.push(() => makeCharacter(
  22885. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22886. {
  22887. anthro: {
  22888. height: math.unit(5 + 7 / 12, "feet"),
  22889. weight: math.unit(175, "lb"),
  22890. name: "Anthro",
  22891. image: {
  22892. source: "./media/characters/rena-dyne/anthro.svg",
  22893. extra: 1849 / 1785,
  22894. bottom: 0.005
  22895. }
  22896. },
  22897. taur: {
  22898. height: math.unit(15 + 6 / 12, "feet"),
  22899. weight: math.unit(8000, "lb"),
  22900. name: "Taur",
  22901. image: {
  22902. source: "./media/characters/rena-dyne/taur.svg",
  22903. extra: 2315 / 2234,
  22904. bottom: 0.033
  22905. }
  22906. },
  22907. },
  22908. [
  22909. {
  22910. name: "Normal",
  22911. height: math.unit(5 + 7 / 12, "feet"),
  22912. default: true
  22913. },
  22914. ]
  22915. ))
  22916. characterMakers.push(() => makeCharacter(
  22917. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22918. {
  22919. front: {
  22920. height: math.unit(8, "feet"),
  22921. weight: math.unit(600, "lb"),
  22922. name: "Front",
  22923. image: {
  22924. source: "./media/characters/weremeep/front.svg",
  22925. extra: 970/849,
  22926. bottom: 7/977
  22927. }
  22928. },
  22929. },
  22930. [
  22931. {
  22932. name: "Normal",
  22933. height: math.unit(8, "feet"),
  22934. default: true
  22935. },
  22936. {
  22937. name: "Lorg",
  22938. height: math.unit(12, "feet")
  22939. },
  22940. {
  22941. name: "Oh Lawd She Comin'",
  22942. height: math.unit(20, "feet")
  22943. },
  22944. ]
  22945. ))
  22946. characterMakers.push(() => makeCharacter(
  22947. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22948. {
  22949. front: {
  22950. height: math.unit(4, "feet"),
  22951. weight: math.unit(90, "lb"),
  22952. name: "Front",
  22953. image: {
  22954. source: "./media/characters/reza/front.svg",
  22955. extra: 1183 / 1111,
  22956. bottom: 0.017
  22957. }
  22958. },
  22959. back: {
  22960. height: math.unit(4, "feet"),
  22961. weight: math.unit(90, "lb"),
  22962. name: "Back",
  22963. image: {
  22964. source: "./media/characters/reza/back.svg",
  22965. extra: 1183 / 1111,
  22966. bottom: 0.01
  22967. }
  22968. },
  22969. drake: {
  22970. height: math.unit(30, "feet"),
  22971. weight: math.unit(246960, "lb"),
  22972. name: "Drake",
  22973. image: {
  22974. source: "./media/characters/reza/drake.svg",
  22975. extra: 2350 / 2024,
  22976. bottom: 60.7 / 2403
  22977. }
  22978. },
  22979. },
  22980. [
  22981. {
  22982. name: "Normal",
  22983. height: math.unit(4, "feet"),
  22984. default: true
  22985. },
  22986. ]
  22987. ))
  22988. characterMakers.push(() => makeCharacter(
  22989. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22990. {
  22991. side: {
  22992. height: math.unit(15, "feet"),
  22993. weight: math.unit(14, "tons"),
  22994. name: "Side",
  22995. image: {
  22996. source: "./media/characters/athea/side.svg",
  22997. extra: 960 / 540,
  22998. bottom: 0.003
  22999. }
  23000. },
  23001. sitting: {
  23002. height: math.unit(6 * 2.85, "feet"),
  23003. weight: math.unit(14, "tons"),
  23004. name: "Sitting",
  23005. image: {
  23006. source: "./media/characters/athea/sitting.svg",
  23007. extra: 621 / 581,
  23008. bottom: 0.075
  23009. }
  23010. },
  23011. maw: {
  23012. height: math.unit(7.59498031496063, "feet"),
  23013. name: "Maw",
  23014. image: {
  23015. source: "./media/characters/athea/maw.svg"
  23016. }
  23017. },
  23018. },
  23019. [
  23020. {
  23021. name: "Lap Cat",
  23022. height: math.unit(2.5, "feet")
  23023. },
  23024. {
  23025. name: "Minimacro",
  23026. height: math.unit(15, "feet"),
  23027. default: true
  23028. },
  23029. {
  23030. name: "Macro",
  23031. height: math.unit(120, "feet")
  23032. },
  23033. {
  23034. name: "Macro+",
  23035. height: math.unit(640, "feet")
  23036. },
  23037. {
  23038. name: "Colossus",
  23039. height: math.unit(2.2, "miles")
  23040. },
  23041. ]
  23042. ))
  23043. characterMakers.push(() => makeCharacter(
  23044. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23045. {
  23046. front: {
  23047. height: math.unit(8 + 8 / 12, "feet"),
  23048. weight: math.unit(130, "kg"),
  23049. name: "Front",
  23050. image: {
  23051. source: "./media/characters/seroko/front.svg",
  23052. extra: 1385 / 1280,
  23053. bottom: 0.025
  23054. }
  23055. },
  23056. back: {
  23057. height: math.unit(8 + 8 / 12, "feet"),
  23058. weight: math.unit(130, "kg"),
  23059. name: "Back",
  23060. image: {
  23061. source: "./media/characters/seroko/back.svg",
  23062. extra: 1369 / 1238,
  23063. bottom: 0.018
  23064. }
  23065. },
  23066. frontDressed: {
  23067. height: math.unit(8 + 8 / 12, "feet"),
  23068. weight: math.unit(130, "kg"),
  23069. name: "Front (Dressed)",
  23070. image: {
  23071. source: "./media/characters/seroko/front-dressed.svg",
  23072. extra: 1366 / 1275,
  23073. bottom: 0.03
  23074. }
  23075. },
  23076. },
  23077. [
  23078. {
  23079. name: "Normal",
  23080. height: math.unit(8 + 8 / 12, "feet"),
  23081. default: true
  23082. },
  23083. ]
  23084. ))
  23085. characterMakers.push(() => makeCharacter(
  23086. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23087. {
  23088. front: {
  23089. height: math.unit(5.5, "feet"),
  23090. weight: math.unit(160, "lb"),
  23091. name: "Front",
  23092. image: {
  23093. source: "./media/characters/quatzi/front.svg",
  23094. extra: 2346 / 2242,
  23095. bottom: 0.015
  23096. }
  23097. },
  23098. },
  23099. [
  23100. {
  23101. name: "Normal",
  23102. height: math.unit(5.5, "feet"),
  23103. default: true
  23104. },
  23105. {
  23106. name: "Big",
  23107. height: math.unit(7.7, "feet")
  23108. },
  23109. ]
  23110. ))
  23111. characterMakers.push(() => makeCharacter(
  23112. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23113. {
  23114. front: {
  23115. height: math.unit(5 + 11 / 12, "feet"),
  23116. weight: math.unit(180, "lb"),
  23117. name: "Front",
  23118. image: {
  23119. source: "./media/characters/sen/front.svg",
  23120. extra: 1321 / 1254,
  23121. bottom: 0.015
  23122. }
  23123. },
  23124. side: {
  23125. height: math.unit(5 + 11 / 12, "feet"),
  23126. weight: math.unit(180, "lb"),
  23127. name: "Side",
  23128. image: {
  23129. source: "./media/characters/sen/side.svg",
  23130. extra: 1321 / 1254,
  23131. bottom: 0.007
  23132. }
  23133. },
  23134. back: {
  23135. height: math.unit(5 + 11 / 12, "feet"),
  23136. weight: math.unit(180, "lb"),
  23137. name: "Back",
  23138. image: {
  23139. source: "./media/characters/sen/back.svg",
  23140. extra: 1321 / 1254
  23141. }
  23142. },
  23143. },
  23144. [
  23145. {
  23146. name: "Normal",
  23147. height: math.unit(5 + 11 / 12, "feet"),
  23148. default: true
  23149. },
  23150. ]
  23151. ))
  23152. characterMakers.push(() => makeCharacter(
  23153. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23154. {
  23155. front: {
  23156. height: math.unit(166.6, "cm"),
  23157. weight: math.unit(66.6, "kg"),
  23158. name: "Front",
  23159. image: {
  23160. source: "./media/characters/fruity/front.svg",
  23161. extra: 1510 / 1386,
  23162. bottom: 0.04
  23163. }
  23164. },
  23165. back: {
  23166. height: math.unit(166.6, "cm"),
  23167. weight: math.unit(66.6, "lb"),
  23168. name: "Back",
  23169. image: {
  23170. source: "./media/characters/fruity/back.svg",
  23171. extra: 1563 / 1435,
  23172. bottom: 0.005
  23173. }
  23174. },
  23175. },
  23176. [
  23177. {
  23178. name: "Normal",
  23179. height: math.unit(166.6, "cm"),
  23180. default: true
  23181. },
  23182. {
  23183. name: "Demonic",
  23184. height: math.unit(166.6, "feet")
  23185. },
  23186. ]
  23187. ))
  23188. characterMakers.push(() => makeCharacter(
  23189. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23190. {
  23191. side: {
  23192. height: math.unit(10, "feet"),
  23193. weight: math.unit(500, "lb"),
  23194. name: "Side",
  23195. image: {
  23196. source: "./media/characters/zost/side.svg",
  23197. extra: 2870/2533,
  23198. bottom: 252/3122
  23199. }
  23200. },
  23201. mawFront: {
  23202. height: math.unit(1.08, "meters"),
  23203. name: "Maw (Front)",
  23204. image: {
  23205. source: "./media/characters/zost/maw-front.svg"
  23206. }
  23207. },
  23208. mawSide: {
  23209. height: math.unit(2.66, "feet"),
  23210. name: "Maw (Side)",
  23211. image: {
  23212. source: "./media/characters/zost/maw-side.svg"
  23213. }
  23214. },
  23215. wingspan: {
  23216. height: math.unit(7.4, "feet"),
  23217. name: "Wingspan",
  23218. image: {
  23219. source: "./media/characters/zost/wingspan.svg"
  23220. }
  23221. },
  23222. },
  23223. [
  23224. {
  23225. name: "Normal",
  23226. height: math.unit(10, "feet"),
  23227. default: true
  23228. },
  23229. ]
  23230. ))
  23231. characterMakers.push(() => makeCharacter(
  23232. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23233. {
  23234. front: {
  23235. height: math.unit(5 + 4 / 12, "feet"),
  23236. weight: math.unit(120, "lb"),
  23237. name: "Front",
  23238. image: {
  23239. source: "./media/characters/luci/front.svg",
  23240. extra: 1985 / 1884,
  23241. bottom: 0.04
  23242. }
  23243. },
  23244. back: {
  23245. height: math.unit(5 + 4 / 12, "feet"),
  23246. weight: math.unit(120, "lb"),
  23247. name: "Back",
  23248. image: {
  23249. source: "./media/characters/luci/back.svg",
  23250. extra: 1892 / 1791,
  23251. bottom: 0.002
  23252. }
  23253. },
  23254. },
  23255. [
  23256. {
  23257. name: "Normal",
  23258. height: math.unit(5 + 4 / 12, "feet"),
  23259. default: true
  23260. },
  23261. ]
  23262. ))
  23263. characterMakers.push(() => makeCharacter(
  23264. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23265. {
  23266. front: {
  23267. height: math.unit(1500, "feet"),
  23268. weight: math.unit(3.8e6, "tons"),
  23269. name: "Front",
  23270. image: {
  23271. source: "./media/characters/2th/front.svg",
  23272. extra: 3489 / 3350,
  23273. bottom: 0.1
  23274. }
  23275. },
  23276. foot: {
  23277. height: math.unit(461, "feet"),
  23278. name: "Foot",
  23279. image: {
  23280. source: "./media/characters/2th/foot.svg"
  23281. }
  23282. },
  23283. },
  23284. [
  23285. {
  23286. name: "\"Micro\"",
  23287. height: math.unit(15 + 7 / 12, "feet")
  23288. },
  23289. {
  23290. name: "Normal",
  23291. height: math.unit(1500, "feet"),
  23292. default: true
  23293. },
  23294. {
  23295. name: "Macro",
  23296. height: math.unit(5000, "feet")
  23297. },
  23298. {
  23299. name: "Megamacro",
  23300. height: math.unit(15, "miles")
  23301. },
  23302. {
  23303. name: "Gigamacro",
  23304. height: math.unit(4000, "miles")
  23305. },
  23306. {
  23307. name: "Galactic",
  23308. height: math.unit(50, "AU")
  23309. },
  23310. ]
  23311. ))
  23312. characterMakers.push(() => makeCharacter(
  23313. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23314. {
  23315. front: {
  23316. height: math.unit(5 + 6 / 12, "feet"),
  23317. weight: math.unit(220, "lb"),
  23318. name: "Front",
  23319. image: {
  23320. source: "./media/characters/amethyst/front.svg",
  23321. extra: 2078 / 2040,
  23322. bottom: 0.045
  23323. }
  23324. },
  23325. back: {
  23326. height: math.unit(5 + 6 / 12, "feet"),
  23327. weight: math.unit(220, "lb"),
  23328. name: "Back",
  23329. image: {
  23330. source: "./media/characters/amethyst/back.svg",
  23331. extra: 2021 / 1989,
  23332. bottom: 0.02
  23333. }
  23334. },
  23335. },
  23336. [
  23337. {
  23338. name: "Normal",
  23339. height: math.unit(5 + 6 / 12, "feet"),
  23340. default: true
  23341. },
  23342. ]
  23343. ))
  23344. characterMakers.push(() => makeCharacter(
  23345. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23346. {
  23347. front: {
  23348. height: math.unit(4 + 11 / 12, "feet"),
  23349. weight: math.unit(120, "lb"),
  23350. name: "Front",
  23351. image: {
  23352. source: "./media/characters/yumi-akiyama/front.svg",
  23353. extra: 1327 / 1235,
  23354. bottom: 0.02
  23355. }
  23356. },
  23357. back: {
  23358. height: math.unit(4 + 11 / 12, "feet"),
  23359. weight: math.unit(120, "lb"),
  23360. name: "Back",
  23361. image: {
  23362. source: "./media/characters/yumi-akiyama/back.svg",
  23363. extra: 1287 / 1245,
  23364. bottom: 0.002
  23365. }
  23366. },
  23367. },
  23368. [
  23369. {
  23370. name: "Galactic",
  23371. height: math.unit(50, "galaxies"),
  23372. default: true
  23373. },
  23374. {
  23375. name: "Universal",
  23376. height: math.unit(100, "universes")
  23377. },
  23378. ]
  23379. ))
  23380. characterMakers.push(() => makeCharacter(
  23381. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23382. {
  23383. front: {
  23384. height: math.unit(8, "feet"),
  23385. weight: math.unit(500, "lb"),
  23386. name: "Front",
  23387. image: {
  23388. source: "./media/characters/rifter-yrmori/front.svg",
  23389. extra: 1180 / 1125,
  23390. bottom: 0.02
  23391. }
  23392. },
  23393. back: {
  23394. height: math.unit(8, "feet"),
  23395. weight: math.unit(500, "lb"),
  23396. name: "Back",
  23397. image: {
  23398. source: "./media/characters/rifter-yrmori/back.svg",
  23399. extra: 1190 / 1145,
  23400. bottom: 0.001
  23401. }
  23402. },
  23403. wings: {
  23404. height: math.unit(7.75, "feet"),
  23405. weight: math.unit(500, "lb"),
  23406. name: "Wings",
  23407. image: {
  23408. source: "./media/characters/rifter-yrmori/wings.svg",
  23409. extra: 1357 / 1285
  23410. }
  23411. },
  23412. maw: {
  23413. height: math.unit(0.8, "feet"),
  23414. name: "Maw",
  23415. image: {
  23416. source: "./media/characters/rifter-yrmori/maw.svg"
  23417. }
  23418. },
  23419. mawfront: {
  23420. height: math.unit(1.45, "feet"),
  23421. name: "Maw (Front)",
  23422. image: {
  23423. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23424. }
  23425. },
  23426. },
  23427. [
  23428. {
  23429. name: "Normal",
  23430. height: math.unit(8, "feet"),
  23431. default: true
  23432. },
  23433. {
  23434. name: "Macro",
  23435. height: math.unit(42, "meters")
  23436. },
  23437. ]
  23438. ))
  23439. characterMakers.push(() => makeCharacter(
  23440. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23441. {
  23442. were: {
  23443. height: math.unit(25 + 6 / 12, "feet"),
  23444. weight: math.unit(10000, "lb"),
  23445. name: "Were",
  23446. image: {
  23447. source: "./media/characters/tahajin/were.svg",
  23448. extra: 801 / 770,
  23449. bottom: 0.042
  23450. }
  23451. },
  23452. aquatic: {
  23453. height: math.unit(6 + 4 / 12, "feet"),
  23454. weight: math.unit(160, "lb"),
  23455. name: "Aquatic",
  23456. image: {
  23457. source: "./media/characters/tahajin/aquatic.svg",
  23458. extra: 572 / 542,
  23459. bottom: 0.04
  23460. }
  23461. },
  23462. chow: {
  23463. height: math.unit(8 + 11 / 12, "feet"),
  23464. weight: math.unit(450, "lb"),
  23465. name: "Chow",
  23466. image: {
  23467. source: "./media/characters/tahajin/chow.svg",
  23468. extra: 660 / 640,
  23469. bottom: 0.015
  23470. }
  23471. },
  23472. demiNaga: {
  23473. height: math.unit(6 + 8 / 12, "feet"),
  23474. weight: math.unit(300, "lb"),
  23475. name: "Demi Naga",
  23476. image: {
  23477. source: "./media/characters/tahajin/demi-naga.svg",
  23478. extra: 643 / 615,
  23479. bottom: 0.1
  23480. }
  23481. },
  23482. data: {
  23483. height: math.unit(5, "inches"),
  23484. weight: math.unit(0.1, "lb"),
  23485. name: "Data",
  23486. image: {
  23487. source: "./media/characters/tahajin/data.svg"
  23488. }
  23489. },
  23490. fluu: {
  23491. height: math.unit(5 + 7 / 12, "feet"),
  23492. weight: math.unit(140, "lb"),
  23493. name: "Fluu",
  23494. image: {
  23495. source: "./media/characters/tahajin/fluu.svg",
  23496. extra: 628 / 592,
  23497. bottom: 0.02
  23498. }
  23499. },
  23500. starWarrior: {
  23501. height: math.unit(4 + 5 / 12, "feet"),
  23502. weight: math.unit(50, "lb"),
  23503. name: "Star Warrior",
  23504. image: {
  23505. source: "./media/characters/tahajin/star-warrior.svg"
  23506. }
  23507. },
  23508. },
  23509. [
  23510. {
  23511. name: "Normal",
  23512. height: math.unit(25 + 6 / 12, "feet"),
  23513. default: true
  23514. },
  23515. ]
  23516. ))
  23517. characterMakers.push(() => makeCharacter(
  23518. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23519. {
  23520. front: {
  23521. height: math.unit(8, "feet"),
  23522. weight: math.unit(350, "lb"),
  23523. name: "Front",
  23524. image: {
  23525. source: "./media/characters/gabira/front.svg",
  23526. extra: 1261/1154,
  23527. bottom: 51/1312
  23528. }
  23529. },
  23530. back: {
  23531. height: math.unit(8, "feet"),
  23532. weight: math.unit(350, "lb"),
  23533. name: "Back",
  23534. image: {
  23535. source: "./media/characters/gabira/back.svg",
  23536. extra: 1265/1163,
  23537. bottom: 46/1311
  23538. }
  23539. },
  23540. head: {
  23541. height: math.unit(2.85, "feet"),
  23542. name: "Head",
  23543. image: {
  23544. source: "./media/characters/gabira/head.svg"
  23545. }
  23546. },
  23547. },
  23548. [
  23549. {
  23550. name: "Normal",
  23551. height: math.unit(8, "feet"),
  23552. default: true
  23553. },
  23554. ]
  23555. ))
  23556. characterMakers.push(() => makeCharacter(
  23557. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23558. {
  23559. front: {
  23560. height: math.unit(5 + 3 / 12, "feet"),
  23561. weight: math.unit(137, "lb"),
  23562. name: "Front",
  23563. image: {
  23564. source: "./media/characters/sasha-katraine/front.svg",
  23565. extra: 1745/1694,
  23566. bottom: 37/1782
  23567. }
  23568. },
  23569. back: {
  23570. height: math.unit(5 + 3 / 12, "feet"),
  23571. weight: math.unit(137, "lb"),
  23572. name: "Back",
  23573. image: {
  23574. source: "./media/characters/sasha-katraine/back.svg",
  23575. extra: 1776/1699,
  23576. bottom: 26/1802
  23577. }
  23578. },
  23579. },
  23580. [
  23581. {
  23582. name: "Micro",
  23583. height: math.unit(5, "inches")
  23584. },
  23585. {
  23586. name: "Normal",
  23587. height: math.unit(5 + 3 / 12, "feet"),
  23588. default: true
  23589. },
  23590. ]
  23591. ))
  23592. characterMakers.push(() => makeCharacter(
  23593. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23594. {
  23595. side: {
  23596. height: math.unit(4, "inches"),
  23597. weight: math.unit(200, "grams"),
  23598. name: "Side",
  23599. image: {
  23600. source: "./media/characters/der/side.svg",
  23601. extra: 719 / 400,
  23602. bottom: 30.6 / 749.9187
  23603. }
  23604. },
  23605. },
  23606. [
  23607. {
  23608. name: "Micro",
  23609. height: math.unit(4, "inches"),
  23610. default: true
  23611. },
  23612. ]
  23613. ))
  23614. characterMakers.push(() => makeCharacter(
  23615. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23616. {
  23617. side: {
  23618. height: math.unit(30, "meters"),
  23619. weight: math.unit(700, "tonnes"),
  23620. name: "Side",
  23621. image: {
  23622. source: "./media/characters/fixerdragon/side.svg",
  23623. extra: (1293.0514 - 116.03) / 1106.86,
  23624. bottom: 116.03 / 1293.0514
  23625. }
  23626. },
  23627. },
  23628. [
  23629. {
  23630. name: "Planck",
  23631. height: math.unit(1.6e-35, "meters")
  23632. },
  23633. {
  23634. name: "Micro",
  23635. height: math.unit(0.4, "meters")
  23636. },
  23637. {
  23638. name: "Normal",
  23639. height: math.unit(30, "meters"),
  23640. default: true
  23641. },
  23642. {
  23643. name: "Megamacro",
  23644. height: math.unit(1.2, "megameters")
  23645. },
  23646. {
  23647. name: "Teramacro",
  23648. height: math.unit(130, "terameters")
  23649. },
  23650. {
  23651. name: "Yottamacro",
  23652. height: math.unit(6200, "yottameters")
  23653. },
  23654. ]
  23655. ));
  23656. characterMakers.push(() => makeCharacter(
  23657. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23658. {
  23659. front: {
  23660. height: math.unit(8, "feet"),
  23661. weight: math.unit(250, "lb"),
  23662. name: "Front",
  23663. image: {
  23664. source: "./media/characters/kite/front.svg",
  23665. extra: 2796 / 2659,
  23666. bottom: 0.002
  23667. }
  23668. },
  23669. },
  23670. [
  23671. {
  23672. name: "Normal",
  23673. height: math.unit(8, "feet"),
  23674. default: true
  23675. },
  23676. {
  23677. name: "Macro",
  23678. height: math.unit(360, "feet")
  23679. },
  23680. {
  23681. name: "Megamacro",
  23682. height: math.unit(1500, "feet")
  23683. },
  23684. ]
  23685. ))
  23686. characterMakers.push(() => makeCharacter(
  23687. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23688. {
  23689. front: {
  23690. height: math.unit(5 + 11/12, "feet"),
  23691. weight: math.unit(170, "lb"),
  23692. name: "Front",
  23693. image: {
  23694. source: "./media/characters/poojawa-vynar/front.svg",
  23695. extra: 1735/1585,
  23696. bottom: 96/1831
  23697. }
  23698. },
  23699. back: {
  23700. height: math.unit(5 + 11/12, "feet"),
  23701. weight: math.unit(170, "lb"),
  23702. name: "Back",
  23703. image: {
  23704. source: "./media/characters/poojawa-vynar/back.svg",
  23705. extra: 1749/1607,
  23706. bottom: 28/1777
  23707. }
  23708. },
  23709. male: {
  23710. height: math.unit(5 + 11/12, "feet"),
  23711. weight: math.unit(170, "lb"),
  23712. name: "Male",
  23713. image: {
  23714. source: "./media/characters/poojawa-vynar/male.svg",
  23715. extra: 1855/1713,
  23716. bottom: 63/1918
  23717. }
  23718. },
  23719. taur: {
  23720. height: math.unit(5 + 11/12, "feet"),
  23721. weight: math.unit(170, "lb"),
  23722. name: "Taur",
  23723. image: {
  23724. source: "./media/characters/poojawa-vynar/taur.svg",
  23725. extra: 1151/1059,
  23726. bottom: 356/1507
  23727. }
  23728. },
  23729. frontDressed: {
  23730. height: math.unit(5 + 11/12, "feet"),
  23731. weight: math.unit(170, "lb"),
  23732. name: "Front (Dressed)",
  23733. image: {
  23734. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23735. extra: 1735/1585,
  23736. bottom: 96/1831
  23737. }
  23738. },
  23739. backDressed: {
  23740. height: math.unit(5 + 11/12, "feet"),
  23741. weight: math.unit(170, "lb"),
  23742. name: "Back (Dressed)",
  23743. image: {
  23744. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23745. extra: 1749/1607,
  23746. bottom: 28/1777
  23747. }
  23748. },
  23749. maleDressed: {
  23750. height: math.unit(5 + 11/12, "feet"),
  23751. weight: math.unit(170, "lb"),
  23752. name: "Male (Dressed)",
  23753. image: {
  23754. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23755. extra: 1855/1713,
  23756. bottom: 63/1918
  23757. }
  23758. },
  23759. taurDressed: {
  23760. height: math.unit(5 + 11/12, "feet"),
  23761. weight: math.unit(170, "lb"),
  23762. name: "Taur (Dressed)",
  23763. image: {
  23764. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23765. extra: 1151/1059,
  23766. bottom: 356/1507
  23767. }
  23768. },
  23769. maw: {
  23770. height: math.unit(1.46, "feet"),
  23771. name: "Maw",
  23772. image: {
  23773. source: "./media/characters/poojawa-vynar/maw.svg"
  23774. }
  23775. },
  23776. head: {
  23777. height: math.unit(2.34, "feet"),
  23778. name: "Head",
  23779. image: {
  23780. source: "./media/characters/poojawa-vynar/head.svg"
  23781. }
  23782. },
  23783. paw: {
  23784. height: math.unit(1.61, "feet"),
  23785. name: "Paw",
  23786. image: {
  23787. source: "./media/characters/poojawa-vynar/paw.svg"
  23788. }
  23789. },
  23790. pawToering: {
  23791. height: math.unit(1.72, "feet"),
  23792. name: "Paw (Toering)",
  23793. image: {
  23794. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23795. }
  23796. },
  23797. toering: {
  23798. height: math.unit(2.9, "inches"),
  23799. name: "Toering",
  23800. image: {
  23801. source: "./media/characters/poojawa-vynar/toering.svg"
  23802. }
  23803. },
  23804. shaft: {
  23805. height: math.unit(0.625, "feet"),
  23806. name: "Shaft",
  23807. image: {
  23808. source: "./media/characters/poojawa-vynar/shaft.svg"
  23809. }
  23810. },
  23811. spade: {
  23812. height: math.unit(0.42, "feet"),
  23813. name: "Spade",
  23814. image: {
  23815. source: "./media/characters/poojawa-vynar/spade.svg"
  23816. }
  23817. },
  23818. },
  23819. [
  23820. {
  23821. name: "Shortstack",
  23822. height: math.unit(4, "feet")
  23823. },
  23824. {
  23825. name: "Normal",
  23826. height: math.unit(5 + 11 / 12, "feet"),
  23827. default: true
  23828. },
  23829. {
  23830. name: "Tauric",
  23831. height: math.unit(4, "meters")
  23832. },
  23833. ]
  23834. ))
  23835. characterMakers.push(() => makeCharacter(
  23836. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23837. {
  23838. front: {
  23839. height: math.unit(293, "meters"),
  23840. weight: math.unit(70400, "tons"),
  23841. name: "Front",
  23842. image: {
  23843. source: "./media/characters/violette/front.svg",
  23844. extra: 1227 / 1180,
  23845. bottom: 0.005
  23846. }
  23847. },
  23848. back: {
  23849. height: math.unit(293, "meters"),
  23850. weight: math.unit(70400, "tons"),
  23851. name: "Back",
  23852. image: {
  23853. source: "./media/characters/violette/back.svg",
  23854. extra: 1227 / 1180,
  23855. bottom: 0.005
  23856. }
  23857. },
  23858. },
  23859. [
  23860. {
  23861. name: "Macro",
  23862. height: math.unit(293, "meters"),
  23863. default: true
  23864. },
  23865. ]
  23866. ))
  23867. characterMakers.push(() => makeCharacter(
  23868. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23869. {
  23870. front: {
  23871. height: math.unit(1050, "feet"),
  23872. weight: math.unit(200000, "tons"),
  23873. name: "Front",
  23874. image: {
  23875. source: "./media/characters/alessandra/front.svg",
  23876. extra: 960 / 912,
  23877. bottom: 0.06
  23878. }
  23879. },
  23880. },
  23881. [
  23882. {
  23883. name: "Macro",
  23884. height: math.unit(1050, "feet")
  23885. },
  23886. {
  23887. name: "Macro+",
  23888. height: math.unit(900, "meters"),
  23889. default: true
  23890. },
  23891. ]
  23892. ))
  23893. characterMakers.push(() => makeCharacter(
  23894. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23895. {
  23896. front: {
  23897. height: math.unit(5, "feet"),
  23898. weight: math.unit(187, "lb"),
  23899. name: "Front",
  23900. image: {
  23901. source: "./media/characters/person/front.svg",
  23902. extra: 3087 / 2945,
  23903. bottom: 91 / 3181
  23904. }
  23905. },
  23906. },
  23907. [
  23908. {
  23909. name: "Micro",
  23910. height: math.unit(3, "inches")
  23911. },
  23912. {
  23913. name: "Normal",
  23914. height: math.unit(5, "feet"),
  23915. default: true
  23916. },
  23917. {
  23918. name: "Macro",
  23919. height: math.unit(90, "feet")
  23920. },
  23921. {
  23922. name: "Max Size",
  23923. height: math.unit(280, "feet")
  23924. },
  23925. ]
  23926. ))
  23927. characterMakers.push(() => makeCharacter(
  23928. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23929. {
  23930. front: {
  23931. height: math.unit(4.5, "meters"),
  23932. weight: math.unit(3200, "lb"),
  23933. name: "Front",
  23934. image: {
  23935. source: "./media/characters/ty/front.svg",
  23936. extra: 1038 / 960,
  23937. bottom: 31.156 / 1068
  23938. }
  23939. },
  23940. back: {
  23941. height: math.unit(4.5, "meters"),
  23942. weight: math.unit(3200, "lb"),
  23943. name: "Back",
  23944. image: {
  23945. source: "./media/characters/ty/back.svg",
  23946. extra: 1044 / 966,
  23947. bottom: 7.48 / 1049
  23948. }
  23949. },
  23950. },
  23951. [
  23952. {
  23953. name: "Normal",
  23954. height: math.unit(4.5, "meters"),
  23955. default: true
  23956. },
  23957. ]
  23958. ))
  23959. characterMakers.push(() => makeCharacter(
  23960. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23961. {
  23962. front: {
  23963. height: math.unit(5 + 4 / 12, "feet"),
  23964. weight: math.unit(115, "lb"),
  23965. name: "Front",
  23966. image: {
  23967. source: "./media/characters/rocky/front.svg",
  23968. extra: 1012 / 975,
  23969. bottom: 54 / 1066
  23970. }
  23971. },
  23972. },
  23973. [
  23974. {
  23975. name: "Normal",
  23976. height: math.unit(5 + 4 / 12, "feet"),
  23977. default: true
  23978. },
  23979. ]
  23980. ))
  23981. characterMakers.push(() => makeCharacter(
  23982. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23983. {
  23984. upright: {
  23985. height: math.unit(6, "meters"),
  23986. weight: math.unit(4000, "kg"),
  23987. name: "Upright",
  23988. image: {
  23989. source: "./media/characters/ruin/upright.svg",
  23990. extra: 668 / 661,
  23991. bottom: 42 / 799.8396
  23992. }
  23993. },
  23994. },
  23995. [
  23996. {
  23997. name: "Normal",
  23998. height: math.unit(6, "meters"),
  23999. default: true
  24000. },
  24001. ]
  24002. ))
  24003. characterMakers.push(() => makeCharacter(
  24004. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24005. {
  24006. front: {
  24007. height: math.unit(5, "feet"),
  24008. weight: math.unit(106, "lb"),
  24009. name: "Front",
  24010. image: {
  24011. source: "./media/characters/robin/front.svg",
  24012. extra: 862 / 799,
  24013. bottom: 42.4 / 914.8856
  24014. }
  24015. },
  24016. },
  24017. [
  24018. {
  24019. name: "Normal",
  24020. height: math.unit(5, "feet"),
  24021. default: true
  24022. },
  24023. ]
  24024. ))
  24025. characterMakers.push(() => makeCharacter(
  24026. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24027. {
  24028. side: {
  24029. height: math.unit(3, "feet"),
  24030. weight: math.unit(225, "lb"),
  24031. name: "Side",
  24032. image: {
  24033. source: "./media/characters/saian/side.svg",
  24034. extra: 566 / 356,
  24035. bottom: 79.7 / 643
  24036. }
  24037. },
  24038. maw: {
  24039. height: math.unit(2.85, "feet"),
  24040. name: "Maw",
  24041. image: {
  24042. source: "./media/characters/saian/maw.svg"
  24043. }
  24044. },
  24045. },
  24046. [
  24047. {
  24048. name: "Normal",
  24049. height: math.unit(3, "feet"),
  24050. default: true
  24051. },
  24052. ]
  24053. ))
  24054. characterMakers.push(() => makeCharacter(
  24055. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24056. {
  24057. side: {
  24058. height: math.unit(8, "feet"),
  24059. weight: math.unit(300, "lb"),
  24060. name: "Side",
  24061. image: {
  24062. source: "./media/characters/equus-silvermane/side.svg",
  24063. extra: 2176 / 2050,
  24064. bottom: 65.7 / 2245
  24065. }
  24066. },
  24067. front: {
  24068. height: math.unit(8, "feet"),
  24069. weight: math.unit(300, "lb"),
  24070. name: "Front",
  24071. image: {
  24072. source: "./media/characters/equus-silvermane/front.svg",
  24073. extra: 4633 / 4400,
  24074. bottom: 71.3 / 4706.915
  24075. }
  24076. },
  24077. sideStepping: {
  24078. height: math.unit(8, "feet"),
  24079. weight: math.unit(300, "lb"),
  24080. name: "Side (Stepping)",
  24081. image: {
  24082. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24083. extra: 1968 / 1860,
  24084. bottom: 16.4 / 1989
  24085. }
  24086. },
  24087. },
  24088. [
  24089. {
  24090. name: "Normal",
  24091. height: math.unit(8, "feet")
  24092. },
  24093. {
  24094. name: "Minimacro",
  24095. height: math.unit(75, "feet"),
  24096. default: true
  24097. },
  24098. {
  24099. name: "Macro",
  24100. height: math.unit(150, "feet")
  24101. },
  24102. {
  24103. name: "Macro+",
  24104. height: math.unit(1000, "feet")
  24105. },
  24106. {
  24107. name: "Megamacro",
  24108. height: math.unit(1, "mile")
  24109. },
  24110. ]
  24111. ))
  24112. characterMakers.push(() => makeCharacter(
  24113. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24114. {
  24115. side: {
  24116. height: math.unit(20, "feet"),
  24117. weight: math.unit(30000, "kg"),
  24118. name: "Side",
  24119. image: {
  24120. source: "./media/characters/windar/side.svg",
  24121. extra: 1491 / 1248,
  24122. bottom: 82.56 / 1568
  24123. }
  24124. },
  24125. },
  24126. [
  24127. {
  24128. name: "Normal",
  24129. height: math.unit(20, "feet"),
  24130. default: true
  24131. },
  24132. ]
  24133. ))
  24134. characterMakers.push(() => makeCharacter(
  24135. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24136. {
  24137. side: {
  24138. height: math.unit(15.66, "feet"),
  24139. weight: math.unit(150, "lb"),
  24140. name: "Side",
  24141. image: {
  24142. source: "./media/characters/melody/side.svg",
  24143. extra: 1097 / 944,
  24144. bottom: 11.8 / 1109
  24145. }
  24146. },
  24147. sideOutfit: {
  24148. height: math.unit(15.66, "feet"),
  24149. weight: math.unit(150, "lb"),
  24150. name: "Side (Outfit)",
  24151. image: {
  24152. source: "./media/characters/melody/side-outfit.svg",
  24153. extra: 1097 / 944,
  24154. bottom: 11.8 / 1109
  24155. }
  24156. },
  24157. },
  24158. [
  24159. {
  24160. name: "Normal",
  24161. height: math.unit(15.66, "feet"),
  24162. default: true
  24163. },
  24164. ]
  24165. ))
  24166. characterMakers.push(() => makeCharacter(
  24167. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24168. {
  24169. armoredFront: {
  24170. height: math.unit(8, "feet"),
  24171. weight: math.unit(325, "lb"),
  24172. name: "Front",
  24173. image: {
  24174. source: "./media/characters/windera/armored-front.svg",
  24175. extra: 1830/1598,
  24176. bottom: 151/1981
  24177. },
  24178. form: "armored",
  24179. default: true
  24180. },
  24181. macroFront: {
  24182. height: math.unit(70, "feet"),
  24183. weight: math.unit(315453, "lb"),
  24184. name: "Front",
  24185. image: {
  24186. source: "./media/characters/windera/macro-front.svg",
  24187. extra: 963/883,
  24188. bottom: 23/986
  24189. },
  24190. form: "macro",
  24191. default: true
  24192. },
  24193. },
  24194. [
  24195. {
  24196. name: "Normal",
  24197. height: math.unit(8, "feet"),
  24198. default: true,
  24199. form: "armored"
  24200. },
  24201. {
  24202. name: "Normal",
  24203. height: math.unit(70, "feet"),
  24204. default: true,
  24205. form: "macro"
  24206. },
  24207. ],
  24208. {
  24209. "armored": {
  24210. name: "Armored",
  24211. default: true
  24212. },
  24213. "macro": {
  24214. name: "Macro",
  24215. },
  24216. }
  24217. ))
  24218. characterMakers.push(() => makeCharacter(
  24219. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24220. {
  24221. front: {
  24222. height: math.unit(28.75, "feet"),
  24223. weight: math.unit(2000, "kg"),
  24224. name: "Front",
  24225. image: {
  24226. source: "./media/characters/sonear/front.svg",
  24227. extra: 1041.1 / 964.9,
  24228. bottom: 53.7 / 1096.6
  24229. }
  24230. },
  24231. },
  24232. [
  24233. {
  24234. name: "Normal",
  24235. height: math.unit(28.75, "feet"),
  24236. default: true
  24237. },
  24238. ]
  24239. ))
  24240. characterMakers.push(() => makeCharacter(
  24241. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24242. {
  24243. side: {
  24244. height: math.unit(25.5, "feet"),
  24245. weight: math.unit(23000, "kg"),
  24246. name: "Side",
  24247. image: {
  24248. source: "./media/characters/kanara/side.svg"
  24249. }
  24250. },
  24251. },
  24252. [
  24253. {
  24254. name: "Normal",
  24255. height: math.unit(25.5, "feet"),
  24256. default: true
  24257. },
  24258. ]
  24259. ))
  24260. characterMakers.push(() => makeCharacter(
  24261. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24262. {
  24263. side: {
  24264. height: math.unit(10, "feet"),
  24265. weight: math.unit(1000, "kg"),
  24266. name: "Side",
  24267. image: {
  24268. source: "./media/characters/ereus/side.svg",
  24269. extra: 1157 / 959,
  24270. bottom: 153 / 1312.5
  24271. }
  24272. },
  24273. },
  24274. [
  24275. {
  24276. name: "Normal",
  24277. height: math.unit(10, "feet"),
  24278. default: true
  24279. },
  24280. ]
  24281. ))
  24282. characterMakers.push(() => makeCharacter(
  24283. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24284. {
  24285. side: {
  24286. height: math.unit(4.5, "feet"),
  24287. weight: math.unit(500, "lb"),
  24288. name: "Side",
  24289. image: {
  24290. source: "./media/characters/e-ter/side.svg",
  24291. extra: 1550 / 1248,
  24292. bottom: 146 / 1694
  24293. }
  24294. },
  24295. },
  24296. [
  24297. {
  24298. name: "Normal",
  24299. height: math.unit(4.5, "feet"),
  24300. default: true
  24301. },
  24302. ]
  24303. ))
  24304. characterMakers.push(() => makeCharacter(
  24305. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24306. {
  24307. side: {
  24308. height: math.unit(9.7, "feet"),
  24309. weight: math.unit(4000, "kg"),
  24310. name: "Side",
  24311. image: {
  24312. source: "./media/characters/yamie/side.svg"
  24313. }
  24314. },
  24315. },
  24316. [
  24317. {
  24318. name: "Normal",
  24319. height: math.unit(9.7, "feet"),
  24320. default: true
  24321. },
  24322. ]
  24323. ))
  24324. characterMakers.push(() => makeCharacter(
  24325. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24326. {
  24327. front: {
  24328. height: math.unit(50, "feet"),
  24329. weight: math.unit(50000, "kg"),
  24330. name: "Front",
  24331. image: {
  24332. source: "./media/characters/anders/front.svg",
  24333. extra: 570 / 539,
  24334. bottom: 14.7 / 586.7
  24335. }
  24336. },
  24337. },
  24338. [
  24339. {
  24340. name: "Large",
  24341. height: math.unit(50, "feet")
  24342. },
  24343. {
  24344. name: "Macro",
  24345. height: math.unit(2000, "feet"),
  24346. default: true
  24347. },
  24348. {
  24349. name: "Megamacro",
  24350. height: math.unit(12, "miles")
  24351. },
  24352. ]
  24353. ))
  24354. characterMakers.push(() => makeCharacter(
  24355. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24356. {
  24357. front: {
  24358. height: math.unit(7 + 2 / 12, "feet"),
  24359. weight: math.unit(300, "lb"),
  24360. name: "Front",
  24361. image: {
  24362. source: "./media/characters/reban/front.svg",
  24363. extra: 1287/1212,
  24364. bottom: 148/1435
  24365. }
  24366. },
  24367. head: {
  24368. height: math.unit(1.95, "feet"),
  24369. name: "Head",
  24370. image: {
  24371. source: "./media/characters/reban/head.svg"
  24372. }
  24373. },
  24374. maw: {
  24375. height: math.unit(0.95, "feet"),
  24376. name: "Maw",
  24377. image: {
  24378. source: "./media/characters/reban/maw.svg"
  24379. }
  24380. },
  24381. foot: {
  24382. height: math.unit(1.65, "feet"),
  24383. name: "Foot",
  24384. image: {
  24385. source: "./media/characters/reban/foot.svg"
  24386. }
  24387. },
  24388. dick: {
  24389. height: math.unit(7 / 5, "feet"),
  24390. name: "Dick",
  24391. image: {
  24392. source: "./media/characters/reban/dick.svg"
  24393. }
  24394. },
  24395. },
  24396. [
  24397. {
  24398. name: "Natural Height",
  24399. height: math.unit(7 + 2 / 12, "feet")
  24400. },
  24401. {
  24402. name: "Macro",
  24403. height: math.unit(500, "feet"),
  24404. default: true
  24405. },
  24406. {
  24407. name: "Canon Height",
  24408. height: math.unit(50, "AU")
  24409. },
  24410. ]
  24411. ))
  24412. characterMakers.push(() => makeCharacter(
  24413. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24414. {
  24415. front: {
  24416. height: math.unit(6, "feet"),
  24417. weight: math.unit(150, "lb"),
  24418. name: "Front",
  24419. image: {
  24420. source: "./media/characters/terrance-keayes/front.svg",
  24421. extra: 1.005,
  24422. bottom: 151 / 1615
  24423. }
  24424. },
  24425. side: {
  24426. height: math.unit(6, "feet"),
  24427. weight: math.unit(150, "lb"),
  24428. name: "Side",
  24429. image: {
  24430. source: "./media/characters/terrance-keayes/side.svg",
  24431. extra: 1.005,
  24432. bottom: 129.4 / 1544
  24433. }
  24434. },
  24435. back: {
  24436. height: math.unit(6, "feet"),
  24437. weight: math.unit(150, "lb"),
  24438. name: "Back",
  24439. image: {
  24440. source: "./media/characters/terrance-keayes/back.svg",
  24441. extra: 1.005,
  24442. bottom: 58.4 / 1557.3
  24443. }
  24444. },
  24445. dick: {
  24446. height: math.unit(6 * 0.208, "feet"),
  24447. name: "Dick",
  24448. image: {
  24449. source: "./media/characters/terrance-keayes/dick.svg"
  24450. }
  24451. },
  24452. },
  24453. [
  24454. {
  24455. name: "Canon Height",
  24456. height: math.unit(35, "miles"),
  24457. default: true
  24458. },
  24459. ]
  24460. ))
  24461. characterMakers.push(() => makeCharacter(
  24462. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24463. {
  24464. front: {
  24465. height: math.unit(6, "feet"),
  24466. weight: math.unit(150, "lb"),
  24467. name: "Front",
  24468. image: {
  24469. source: "./media/characters/ofelia/front.svg",
  24470. extra: 1130/1117,
  24471. bottom: 91/1221
  24472. }
  24473. },
  24474. back: {
  24475. height: math.unit(6, "feet"),
  24476. weight: math.unit(150, "lb"),
  24477. name: "Back",
  24478. image: {
  24479. source: "./media/characters/ofelia/back.svg",
  24480. extra: 1172/1159,
  24481. bottom: 28/1200
  24482. }
  24483. },
  24484. maw: {
  24485. height: math.unit(1, "feet"),
  24486. name: "Maw",
  24487. image: {
  24488. source: "./media/characters/ofelia/maw.svg"
  24489. }
  24490. },
  24491. foot: {
  24492. height: math.unit(1.949, "feet"),
  24493. name: "Foot",
  24494. image: {
  24495. source: "./media/characters/ofelia/foot.svg"
  24496. }
  24497. },
  24498. },
  24499. [
  24500. {
  24501. name: "Canon Height",
  24502. height: math.unit(2000, "miles"),
  24503. default: true
  24504. },
  24505. ]
  24506. ))
  24507. characterMakers.push(() => makeCharacter(
  24508. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24509. {
  24510. front: {
  24511. height: math.unit(6, "feet"),
  24512. weight: math.unit(150, "lb"),
  24513. name: "Front",
  24514. image: {
  24515. source: "./media/characters/samuel/front.svg",
  24516. extra: 265 / 258,
  24517. bottom: 2 / 266.1566
  24518. }
  24519. },
  24520. },
  24521. [
  24522. {
  24523. name: "Macro",
  24524. height: math.unit(100, "feet"),
  24525. default: true
  24526. },
  24527. {
  24528. name: "Full Size",
  24529. height: math.unit(1000, "miles")
  24530. },
  24531. ]
  24532. ))
  24533. characterMakers.push(() => makeCharacter(
  24534. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24535. {
  24536. front: {
  24537. height: math.unit(6, "feet"),
  24538. weight: math.unit(300, "lb"),
  24539. name: "Front",
  24540. image: {
  24541. source: "./media/characters/beishir-kiel/front.svg",
  24542. extra: 569 / 547,
  24543. bottom: 41.9 / 609
  24544. }
  24545. },
  24546. maw: {
  24547. height: math.unit(6 * 0.202, "feet"),
  24548. name: "Maw",
  24549. image: {
  24550. source: "./media/characters/beishir-kiel/maw.svg"
  24551. }
  24552. },
  24553. },
  24554. [
  24555. {
  24556. name: "Macro",
  24557. height: math.unit(300, "feet"),
  24558. default: true
  24559. },
  24560. ]
  24561. ))
  24562. characterMakers.push(() => makeCharacter(
  24563. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24564. {
  24565. front: {
  24566. height: math.unit(5 + 7/12, "feet"),
  24567. weight: math.unit(120, "lb"),
  24568. name: "Front",
  24569. image: {
  24570. source: "./media/characters/logan-grey/front.svg",
  24571. extra: 1836/1738,
  24572. bottom: 108/1944
  24573. }
  24574. },
  24575. back: {
  24576. height: math.unit(5 + 7/12, "feet"),
  24577. weight: math.unit(120, "lb"),
  24578. name: "Back",
  24579. image: {
  24580. source: "./media/characters/logan-grey/back.svg",
  24581. extra: 1880/1794,
  24582. bottom: 24/1904
  24583. }
  24584. },
  24585. frontSfw: {
  24586. height: math.unit(5 + 7/12, "feet"),
  24587. weight: math.unit(120, "lb"),
  24588. name: "Front (SFW)",
  24589. image: {
  24590. source: "./media/characters/logan-grey/front-sfw.svg",
  24591. extra: 1836/1738,
  24592. bottom: 108/1944
  24593. }
  24594. },
  24595. backSfw: {
  24596. height: math.unit(5 + 7/12, "feet"),
  24597. weight: math.unit(120, "lb"),
  24598. name: "Back (SFW)",
  24599. image: {
  24600. source: "./media/characters/logan-grey/back-sfw.svg",
  24601. extra: 1880/1794,
  24602. bottom: 24/1904
  24603. }
  24604. },
  24605. hands: {
  24606. height: math.unit(0.84, "feet"),
  24607. name: "Hands",
  24608. image: {
  24609. source: "./media/characters/logan-grey/hands.svg"
  24610. }
  24611. },
  24612. paws: {
  24613. height: math.unit(0.72, "feet"),
  24614. name: "Paws",
  24615. image: {
  24616. source: "./media/characters/logan-grey/paws.svg"
  24617. }
  24618. },
  24619. cock: {
  24620. height: math.unit(1.45, "feet"),
  24621. name: "Cock",
  24622. image: {
  24623. source: "./media/characters/logan-grey/cock.svg"
  24624. }
  24625. },
  24626. cockAlt: {
  24627. height: math.unit(1.437, "feet"),
  24628. name: "Cock (alt)",
  24629. image: {
  24630. source: "./media/characters/logan-grey/cock-alt.svg"
  24631. }
  24632. },
  24633. },
  24634. [
  24635. {
  24636. name: "Normal",
  24637. height: math.unit(5 + 8 / 12, "feet")
  24638. },
  24639. {
  24640. name: "The 500 Foot Femboy",
  24641. height: math.unit(500, "feet"),
  24642. default: true
  24643. },
  24644. {
  24645. name: "Megmacro",
  24646. height: math.unit(20, "miles")
  24647. },
  24648. ]
  24649. ))
  24650. characterMakers.push(() => makeCharacter(
  24651. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24652. {
  24653. front: {
  24654. height: math.unit(8 + 2 / 12, "feet"),
  24655. weight: math.unit(275, "lb"),
  24656. name: "Front",
  24657. image: {
  24658. source: "./media/characters/draganta/front.svg",
  24659. extra: 1177 / 1135,
  24660. bottom: 33.46 / 1212.1
  24661. }
  24662. },
  24663. },
  24664. [
  24665. {
  24666. name: "Normal",
  24667. height: math.unit(8 + 6 / 12, "feet"),
  24668. default: true
  24669. },
  24670. {
  24671. name: "Macro",
  24672. height: math.unit(150, "feet")
  24673. },
  24674. {
  24675. name: "Megamacro",
  24676. height: math.unit(1000, "miles")
  24677. },
  24678. ]
  24679. ))
  24680. characterMakers.push(() => makeCharacter(
  24681. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24682. {
  24683. front: {
  24684. height: math.unit(1.72, "m"),
  24685. weight: math.unit(80, "lb"),
  24686. name: "Front",
  24687. image: {
  24688. source: "./media/characters/voski/front.svg",
  24689. extra: 2076.22 / 2022.4,
  24690. bottom: 102.7 / 2177.3866
  24691. }
  24692. },
  24693. frontFlaccid: {
  24694. height: math.unit(1.72, "m"),
  24695. weight: math.unit(80, "lb"),
  24696. name: "Front (Flaccid)",
  24697. image: {
  24698. source: "./media/characters/voski/front-flaccid.svg",
  24699. extra: 2076.22 / 2022.4,
  24700. bottom: 102.7 / 2177.3866
  24701. }
  24702. },
  24703. frontErect: {
  24704. height: math.unit(1.72, "m"),
  24705. weight: math.unit(80, "lb"),
  24706. name: "Front (Erect)",
  24707. image: {
  24708. source: "./media/characters/voski/front-erect.svg",
  24709. extra: 2076.22 / 2022.4,
  24710. bottom: 102.7 / 2177.3866
  24711. }
  24712. },
  24713. back: {
  24714. height: math.unit(1.72, "m"),
  24715. weight: math.unit(80, "lb"),
  24716. name: "Back",
  24717. image: {
  24718. source: "./media/characters/voski/back.svg",
  24719. extra: 2104 / 2051,
  24720. bottom: 10.45 / 2113.63
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Normal",
  24727. height: math.unit(1.72, "m")
  24728. },
  24729. {
  24730. name: "Macro",
  24731. height: math.unit(55, "m"),
  24732. default: true
  24733. },
  24734. {
  24735. name: "Macro+",
  24736. height: math.unit(300, "m")
  24737. },
  24738. {
  24739. name: "Macro++",
  24740. height: math.unit(700, "m")
  24741. },
  24742. {
  24743. name: "Macro+++",
  24744. height: math.unit(4500, "m")
  24745. },
  24746. {
  24747. name: "Macro++++",
  24748. height: math.unit(45, "km")
  24749. },
  24750. {
  24751. name: "Macro+++++",
  24752. height: math.unit(1220, "km")
  24753. },
  24754. ]
  24755. ))
  24756. characterMakers.push(() => makeCharacter(
  24757. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24758. {
  24759. front: {
  24760. height: math.unit(2.3, "m"),
  24761. weight: math.unit(304, "kg"),
  24762. name: "Front",
  24763. image: {
  24764. source: "./media/characters/icowom-lee/front.svg",
  24765. extra: 985 / 955,
  24766. bottom: 25.4 / 1012
  24767. }
  24768. },
  24769. fronttentacles: {
  24770. height: math.unit(2.3, "m"),
  24771. weight: math.unit(304, "kg"),
  24772. name: "Front-tentacles",
  24773. image: {
  24774. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24775. extra: 985 / 955,
  24776. bottom: 25.4 / 1012
  24777. }
  24778. },
  24779. back: {
  24780. height: math.unit(2.3, "m"),
  24781. weight: math.unit(304, "kg"),
  24782. name: "Back",
  24783. image: {
  24784. source: "./media/characters/icowom-lee/back.svg",
  24785. extra: 975 / 954,
  24786. bottom: 9.5 / 985
  24787. }
  24788. },
  24789. backtentacles: {
  24790. height: math.unit(2.3, "m"),
  24791. weight: math.unit(304, "kg"),
  24792. name: "Back-tentacles",
  24793. image: {
  24794. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24795. extra: 975 / 954,
  24796. bottom: 9.5 / 985
  24797. }
  24798. },
  24799. frontDressed: {
  24800. height: math.unit(2.3, "m"),
  24801. weight: math.unit(304, "kg"),
  24802. name: "Front (Dressed)",
  24803. image: {
  24804. source: "./media/characters/icowom-lee/front-dressed.svg",
  24805. extra: 3076 / 2933,
  24806. bottom: 51.4 / 3125.1889
  24807. }
  24808. },
  24809. rump: {
  24810. height: math.unit(0.776, "meters"),
  24811. name: "Rump",
  24812. image: {
  24813. source: "./media/characters/icowom-lee/rump.svg"
  24814. }
  24815. },
  24816. genitals: {
  24817. height: math.unit(0.78, "meters"),
  24818. name: "Genitals",
  24819. image: {
  24820. source: "./media/characters/icowom-lee/genitals.svg"
  24821. }
  24822. },
  24823. },
  24824. [
  24825. {
  24826. name: "Normal",
  24827. height: math.unit(2.3, "meters"),
  24828. default: true
  24829. },
  24830. {
  24831. name: "Macro",
  24832. height: math.unit(94, "meters"),
  24833. default: true
  24834. },
  24835. ]
  24836. ))
  24837. characterMakers.push(() => makeCharacter(
  24838. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24839. {
  24840. front: {
  24841. height: math.unit(22, "meters"),
  24842. weight: math.unit(21000, "kg"),
  24843. name: "Front",
  24844. image: {
  24845. source: "./media/characters/shock-diamond/front.svg",
  24846. extra: 2204 / 2053,
  24847. bottom: 65 / 2239.47
  24848. }
  24849. },
  24850. frontNude: {
  24851. height: math.unit(22, "meters"),
  24852. weight: math.unit(21000, "kg"),
  24853. name: "Front (Nude)",
  24854. image: {
  24855. source: "./media/characters/shock-diamond/front-nude.svg",
  24856. extra: 2514 / 2285,
  24857. bottom: 13 / 2527.56
  24858. }
  24859. },
  24860. },
  24861. [
  24862. {
  24863. name: "Normal",
  24864. height: math.unit(3, "meters")
  24865. },
  24866. {
  24867. name: "Macro",
  24868. height: math.unit(22, "meters"),
  24869. default: true
  24870. },
  24871. ]
  24872. ))
  24873. characterMakers.push(() => makeCharacter(
  24874. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24875. {
  24876. front: {
  24877. height: math.unit(5 + 4/12, "feet"),
  24878. weight: math.unit(125, "lb"),
  24879. name: "Front",
  24880. image: {
  24881. source: "./media/characters/rory/front.svg",
  24882. extra: 1790/1681,
  24883. bottom: 66/1856
  24884. },
  24885. form: "normal",
  24886. default: true
  24887. },
  24888. back: {
  24889. height: math.unit(5 + 4/12, "feet"),
  24890. weight: math.unit(125, "lb"),
  24891. name: "Back",
  24892. image: {
  24893. source: "./media/characters/rory/back.svg",
  24894. extra: 1805/1690,
  24895. bottom: 56/1861
  24896. },
  24897. form: "normal"
  24898. },
  24899. frontDressed: {
  24900. height: math.unit(5 + 4/12, "feet"),
  24901. weight: math.unit(125, "lb"),
  24902. name: "Front (Dressed)",
  24903. image: {
  24904. source: "./media/characters/rory/front-dressed.svg",
  24905. extra: 1790/1681,
  24906. bottom: 66/1856
  24907. },
  24908. form: "normal"
  24909. },
  24910. backDressed: {
  24911. height: math.unit(5 + 4/12, "feet"),
  24912. weight: math.unit(125, "lb"),
  24913. name: "Back (Dressed)",
  24914. image: {
  24915. source: "./media/characters/rory/back-dressed.svg",
  24916. extra: 1805/1690,
  24917. bottom: 56/1861
  24918. },
  24919. form: "normal"
  24920. },
  24921. frontNsfw: {
  24922. height: math.unit(5 + 4/12, "feet"),
  24923. weight: math.unit(125, "lb"),
  24924. name: "Front (NSFW)",
  24925. image: {
  24926. source: "./media/characters/rory/front-nsfw.svg",
  24927. extra: 1790/1681,
  24928. bottom: 66/1856
  24929. },
  24930. form: "normal"
  24931. },
  24932. backNsfw: {
  24933. height: math.unit(5 + 4/12, "feet"),
  24934. weight: math.unit(125, "lb"),
  24935. name: "Back (NSFW)",
  24936. image: {
  24937. source: "./media/characters/rory/back-nsfw.svg",
  24938. extra: 1805/1690,
  24939. bottom: 56/1861
  24940. },
  24941. form: "normal"
  24942. },
  24943. dick: {
  24944. height: math.unit(0.8, "feet"),
  24945. name: "Dick",
  24946. image: {
  24947. source: "./media/characters/rory/dick.svg"
  24948. },
  24949. form: "normal"
  24950. },
  24951. thicc_front: {
  24952. height: math.unit(5 + 4/12, "feet"),
  24953. weight: math.unit(195, "lb"),
  24954. name: "Front",
  24955. image: {
  24956. source: "./media/characters/rory/thicc-front.svg",
  24957. extra: 1220/1100,
  24958. bottom: 103/1323
  24959. },
  24960. form: "thicc",
  24961. default: true
  24962. },
  24963. thicc_back: {
  24964. height: math.unit(5 + 4/12, "feet"),
  24965. weight: math.unit(195, "lb"),
  24966. name: "Back",
  24967. image: {
  24968. source: "./media/characters/rory/thicc-back.svg",
  24969. extra: 1166/1086,
  24970. bottom: 35/1201
  24971. },
  24972. form: "thicc"
  24973. },
  24974. },
  24975. [
  24976. {
  24977. name: "Micro",
  24978. height: math.unit(3, "inches"),
  24979. allForms: true
  24980. },
  24981. {
  24982. name: "Normal",
  24983. height: math.unit(5 + 4/12, "feet"),
  24984. allForms: true,
  24985. default: true
  24986. },
  24987. {
  24988. name: "Macro",
  24989. height: math.unit(90, "feet"),
  24990. allForms: true
  24991. },
  24992. {
  24993. name: "Supercharged",
  24994. height: math.unit(270, "feet"),
  24995. allForms: true
  24996. },
  24997. ],
  24998. {
  24999. "normal": {
  25000. name: "Normal",
  25001. default: true
  25002. },
  25003. "thicc": {
  25004. name: "Thicc",
  25005. },
  25006. }
  25007. ))
  25008. characterMakers.push(() => makeCharacter(
  25009. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25010. {
  25011. front: {
  25012. height: math.unit(5 + 9 / 12, "feet"),
  25013. weight: math.unit(190, "lb"),
  25014. name: "Front",
  25015. image: {
  25016. source: "./media/characters/sprisk/front.svg",
  25017. extra: 1225 / 1180,
  25018. bottom: 42.7 / 1266.4
  25019. }
  25020. },
  25021. frontNsfw: {
  25022. height: math.unit(5 + 9 / 12, "feet"),
  25023. weight: math.unit(190, "lb"),
  25024. name: "Front (NSFW)",
  25025. image: {
  25026. source: "./media/characters/sprisk/front-nsfw.svg",
  25027. extra: 1225 / 1180,
  25028. bottom: 42.7 / 1266.4
  25029. }
  25030. },
  25031. back: {
  25032. height: math.unit(5 + 9 / 12, "feet"),
  25033. weight: math.unit(190, "lb"),
  25034. name: "Back",
  25035. image: {
  25036. source: "./media/characters/sprisk/back.svg",
  25037. extra: 1247 / 1200,
  25038. bottom: 5.6 / 1253.04
  25039. }
  25040. },
  25041. },
  25042. [
  25043. {
  25044. name: "Tiny",
  25045. height: math.unit(2, "inches")
  25046. },
  25047. {
  25048. name: "Normal",
  25049. height: math.unit(5 + 9 / 12, "feet"),
  25050. default: true
  25051. },
  25052. {
  25053. name: "Mini Macro",
  25054. height: math.unit(18, "feet")
  25055. },
  25056. {
  25057. name: "Macro",
  25058. height: math.unit(100, "feet")
  25059. },
  25060. {
  25061. name: "MACRO",
  25062. height: math.unit(50, "miles")
  25063. },
  25064. {
  25065. name: "M A C R O",
  25066. height: math.unit(300, "miles")
  25067. },
  25068. ]
  25069. ))
  25070. characterMakers.push(() => makeCharacter(
  25071. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25072. {
  25073. side: {
  25074. height: math.unit(15.6, "meters"),
  25075. weight: math.unit(700000, "kg"),
  25076. name: "Side",
  25077. image: {
  25078. source: "./media/characters/bunsen/side.svg",
  25079. extra: 1644 / 358
  25080. }
  25081. },
  25082. foot: {
  25083. height: math.unit(1.611 * 1644 / 358, "meter"),
  25084. name: "Foot",
  25085. image: {
  25086. source: "./media/characters/bunsen/foot.svg"
  25087. }
  25088. },
  25089. },
  25090. [
  25091. {
  25092. name: "Small",
  25093. height: math.unit(10, "feet")
  25094. },
  25095. {
  25096. name: "Normal",
  25097. height: math.unit(15.6, "meters"),
  25098. default: true
  25099. },
  25100. ]
  25101. ))
  25102. characterMakers.push(() => makeCharacter(
  25103. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25104. {
  25105. front: {
  25106. height: math.unit(4 + 11 / 12, "feet"),
  25107. weight: math.unit(140, "lb"),
  25108. name: "Front",
  25109. image: {
  25110. source: "./media/characters/sesh/front.svg",
  25111. extra: 3420 / 3231,
  25112. bottom: 72 / 3949.5
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Normal",
  25119. height: math.unit(4 + 11 / 12, "feet")
  25120. },
  25121. {
  25122. name: "Grown",
  25123. height: math.unit(15, "feet"),
  25124. default: true
  25125. },
  25126. {
  25127. name: "Macro",
  25128. height: math.unit(1500, "feet")
  25129. },
  25130. {
  25131. name: "Megamacro",
  25132. height: math.unit(30, "miles")
  25133. },
  25134. {
  25135. name: "Continental",
  25136. height: math.unit(3000, "miles")
  25137. },
  25138. {
  25139. name: "Gravity Mass",
  25140. height: math.unit(300000, "miles")
  25141. },
  25142. {
  25143. name: "Planet Buster",
  25144. height: math.unit(30000000, "miles")
  25145. },
  25146. {
  25147. name: "Big",
  25148. height: math.unit(3000000000, "miles")
  25149. },
  25150. ]
  25151. ))
  25152. characterMakers.push(() => makeCharacter(
  25153. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25154. {
  25155. front: {
  25156. height: math.unit(9, "feet"),
  25157. weight: math.unit(350, "lb"),
  25158. name: "Front",
  25159. image: {
  25160. source: "./media/characters/pepper/front.svg",
  25161. extra: 1448 / 1312,
  25162. bottom: 9.4 / 1457.88
  25163. }
  25164. },
  25165. back: {
  25166. height: math.unit(9, "feet"),
  25167. weight: math.unit(350, "lb"),
  25168. name: "Back",
  25169. image: {
  25170. source: "./media/characters/pepper/back.svg",
  25171. extra: 1423 / 1300,
  25172. bottom: 4.6 / 1429
  25173. }
  25174. },
  25175. maw: {
  25176. height: math.unit(0.932, "feet"),
  25177. name: "Maw",
  25178. image: {
  25179. source: "./media/characters/pepper/maw.svg"
  25180. }
  25181. },
  25182. },
  25183. [
  25184. {
  25185. name: "Normal",
  25186. height: math.unit(9, "feet"),
  25187. default: true
  25188. },
  25189. ]
  25190. ))
  25191. characterMakers.push(() => makeCharacter(
  25192. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25193. {
  25194. front: {
  25195. height: math.unit(6, "feet"),
  25196. weight: math.unit(150, "lb"),
  25197. name: "Front",
  25198. image: {
  25199. source: "./media/characters/maelstrom/front.svg",
  25200. extra: 2100 / 1883,
  25201. bottom: 94 / 2196.7
  25202. }
  25203. },
  25204. },
  25205. [
  25206. {
  25207. name: "Less Kaiju",
  25208. height: math.unit(200, "feet")
  25209. },
  25210. {
  25211. name: "Kaiju",
  25212. height: math.unit(400, "feet"),
  25213. default: true
  25214. },
  25215. {
  25216. name: "Kaiju-er",
  25217. height: math.unit(600, "feet")
  25218. },
  25219. ]
  25220. ))
  25221. characterMakers.push(() => makeCharacter(
  25222. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25223. {
  25224. front: {
  25225. height: math.unit(6 + 5 / 12, "feet"),
  25226. weight: math.unit(180, "lb"),
  25227. name: "Front",
  25228. image: {
  25229. source: "./media/characters/lexir/front.svg",
  25230. extra: 180 / 172,
  25231. bottom: 12 / 192
  25232. }
  25233. },
  25234. back: {
  25235. height: math.unit(6 + 5 / 12, "feet"),
  25236. weight: math.unit(180, "lb"),
  25237. name: "Back",
  25238. image: {
  25239. source: "./media/characters/lexir/back.svg",
  25240. extra: 1273/1201,
  25241. bottom: 39/1312
  25242. }
  25243. },
  25244. },
  25245. [
  25246. {
  25247. name: "Very Smal",
  25248. height: math.unit(1, "nm")
  25249. },
  25250. {
  25251. name: "Normal",
  25252. height: math.unit(6 + 5 / 12, "feet"),
  25253. default: true
  25254. },
  25255. {
  25256. name: "Macro",
  25257. height: math.unit(1, "mile")
  25258. },
  25259. {
  25260. name: "Megamacro",
  25261. height: math.unit(50, "miles")
  25262. },
  25263. ]
  25264. ))
  25265. characterMakers.push(() => makeCharacter(
  25266. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25267. {
  25268. front: {
  25269. height: math.unit(1.5, "meters"),
  25270. weight: math.unit(100, "lb"),
  25271. name: "Front",
  25272. image: {
  25273. source: "./media/characters/maksio/front.svg",
  25274. extra: 1549 / 1531,
  25275. bottom: 123.7 / 1674.5429
  25276. }
  25277. },
  25278. back: {
  25279. height: math.unit(1.5, "meters"),
  25280. weight: math.unit(100, "lb"),
  25281. name: "Back",
  25282. image: {
  25283. source: "./media/characters/maksio/back.svg",
  25284. extra: 1541 / 1509,
  25285. bottom: 97 / 1639
  25286. }
  25287. },
  25288. hand: {
  25289. height: math.unit(0.621, "feet"),
  25290. name: "Hand",
  25291. image: {
  25292. source: "./media/characters/maksio/hand.svg"
  25293. }
  25294. },
  25295. foot: {
  25296. height: math.unit(1.611, "feet"),
  25297. name: "Foot",
  25298. image: {
  25299. source: "./media/characters/maksio/foot.svg"
  25300. }
  25301. },
  25302. },
  25303. [
  25304. {
  25305. name: "Shrunken",
  25306. height: math.unit(10, "cm")
  25307. },
  25308. {
  25309. name: "Normal",
  25310. height: math.unit(150, "cm"),
  25311. default: true
  25312. },
  25313. ]
  25314. ))
  25315. characterMakers.push(() => makeCharacter(
  25316. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25317. {
  25318. front: {
  25319. height: math.unit(100, "feet"),
  25320. name: "Front",
  25321. image: {
  25322. source: "./media/characters/erza-bear/front.svg",
  25323. extra: 2449 / 2390,
  25324. bottom: 46 / 2494
  25325. }
  25326. },
  25327. back: {
  25328. height: math.unit(100, "feet"),
  25329. name: "Back",
  25330. image: {
  25331. source: "./media/characters/erza-bear/back.svg",
  25332. extra: 2489 / 2430,
  25333. bottom: 85.4 / 2480
  25334. }
  25335. },
  25336. tail: {
  25337. height: math.unit(42, "feet"),
  25338. name: "Tail",
  25339. image: {
  25340. source: "./media/characters/erza-bear/tail.svg"
  25341. }
  25342. },
  25343. tongue: {
  25344. height: math.unit(8, "feet"),
  25345. name: "Tongue",
  25346. image: {
  25347. source: "./media/characters/erza-bear/tongue.svg"
  25348. }
  25349. },
  25350. dick: {
  25351. height: math.unit(10.5, "feet"),
  25352. name: "Dick",
  25353. image: {
  25354. source: "./media/characters/erza-bear/dick.svg"
  25355. }
  25356. },
  25357. dickVertical: {
  25358. height: math.unit(16.9, "feet"),
  25359. name: "Dick (Vertical)",
  25360. image: {
  25361. source: "./media/characters/erza-bear/dick-vertical.svg"
  25362. }
  25363. },
  25364. },
  25365. [
  25366. {
  25367. name: "Macro",
  25368. height: math.unit(100, "feet"),
  25369. default: true
  25370. },
  25371. ]
  25372. ))
  25373. characterMakers.push(() => makeCharacter(
  25374. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25375. {
  25376. front: {
  25377. height: math.unit(172, "cm"),
  25378. weight: math.unit(73, "kg"),
  25379. name: "Front",
  25380. image: {
  25381. source: "./media/characters/violet-flor/front.svg",
  25382. extra: 1530 / 1442,
  25383. bottom: 61.9 / 1588.8
  25384. }
  25385. },
  25386. back: {
  25387. height: math.unit(180, "cm"),
  25388. weight: math.unit(73, "kg"),
  25389. name: "Back",
  25390. image: {
  25391. source: "./media/characters/violet-flor/back.svg",
  25392. extra: 1692 / 1630,
  25393. bottom: 20 / 1712
  25394. }
  25395. },
  25396. },
  25397. [
  25398. {
  25399. name: "Normal",
  25400. height: math.unit(172, "cm"),
  25401. default: true
  25402. },
  25403. ]
  25404. ))
  25405. characterMakers.push(() => makeCharacter(
  25406. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25407. {
  25408. front: {
  25409. height: math.unit(6, "feet"),
  25410. weight: math.unit(220, "lb"),
  25411. name: "Front",
  25412. image: {
  25413. source: "./media/characters/lynn-rhea/front.svg",
  25414. extra: 310 / 273
  25415. }
  25416. },
  25417. back: {
  25418. height: math.unit(6, "feet"),
  25419. weight: math.unit(220, "lb"),
  25420. name: "Back",
  25421. image: {
  25422. source: "./media/characters/lynn-rhea/back.svg",
  25423. extra: 310 / 273
  25424. }
  25425. },
  25426. dicks: {
  25427. height: math.unit(0.9, "feet"),
  25428. name: "Dicks",
  25429. image: {
  25430. source: "./media/characters/lynn-rhea/dicks.svg"
  25431. }
  25432. },
  25433. slit: {
  25434. height: math.unit(0.4, "feet"),
  25435. name: "Slit",
  25436. image: {
  25437. source: "./media/characters/lynn-rhea/slit.svg"
  25438. }
  25439. },
  25440. },
  25441. [
  25442. {
  25443. name: "Micro",
  25444. height: math.unit(1, "inch")
  25445. },
  25446. {
  25447. name: "Macro",
  25448. height: math.unit(60, "feet"),
  25449. default: true
  25450. },
  25451. {
  25452. name: "Megamacro",
  25453. height: math.unit(2, "miles")
  25454. },
  25455. {
  25456. name: "Gigamacro",
  25457. height: math.unit(3, "earths")
  25458. },
  25459. {
  25460. name: "Galactic",
  25461. height: math.unit(0.8, "galaxies")
  25462. },
  25463. ]
  25464. ))
  25465. characterMakers.push(() => makeCharacter(
  25466. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25467. {
  25468. front: {
  25469. height: math.unit(1600, "feet"),
  25470. weight: math.unit(85758785169, "kg"),
  25471. name: "Front",
  25472. image: {
  25473. source: "./media/characters/valathos/front.svg",
  25474. extra: 1451 / 1339
  25475. }
  25476. },
  25477. },
  25478. [
  25479. {
  25480. name: "Macro",
  25481. height: math.unit(1600, "feet"),
  25482. default: true
  25483. },
  25484. ]
  25485. ))
  25486. characterMakers.push(() => makeCharacter(
  25487. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25488. {
  25489. front: {
  25490. height: math.unit(7 + 5 / 12, "feet"),
  25491. weight: math.unit(300, "lb"),
  25492. name: "Front",
  25493. image: {
  25494. source: "./media/characters/azula/front.svg",
  25495. extra: 3208 / 2880,
  25496. bottom: 80.2 / 3277
  25497. }
  25498. },
  25499. back: {
  25500. height: math.unit(7 + 5 / 12, "feet"),
  25501. weight: math.unit(300, "lb"),
  25502. name: "Back",
  25503. image: {
  25504. source: "./media/characters/azula/back.svg",
  25505. extra: 3169 / 2822,
  25506. bottom: 150.6 / 3321
  25507. }
  25508. },
  25509. },
  25510. [
  25511. {
  25512. name: "Normal",
  25513. height: math.unit(7 + 5 / 12, "feet"),
  25514. default: true
  25515. },
  25516. {
  25517. name: "Big",
  25518. height: math.unit(20, "feet")
  25519. },
  25520. ]
  25521. ))
  25522. characterMakers.push(() => makeCharacter(
  25523. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25524. {
  25525. front: {
  25526. height: math.unit(5 + 1 / 12, "feet"),
  25527. weight: math.unit(110, "lb"),
  25528. name: "Front",
  25529. image: {
  25530. source: "./media/characters/rupert/front.svg",
  25531. extra: 1549 / 1495,
  25532. bottom: 54.2 / 1604.4
  25533. }
  25534. },
  25535. },
  25536. [
  25537. {
  25538. name: "Normal",
  25539. height: math.unit(5 + 1 / 12, "feet"),
  25540. default: true
  25541. },
  25542. ]
  25543. ))
  25544. characterMakers.push(() => makeCharacter(
  25545. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25546. {
  25547. front: {
  25548. height: math.unit(8 + 4 / 12, "feet"),
  25549. weight: math.unit(350, "lb"),
  25550. name: "Front",
  25551. image: {
  25552. source: "./media/characters/sheera-castellar/front.svg",
  25553. extra: 1957 / 1894,
  25554. bottom: 26.97 / 1975.017
  25555. }
  25556. },
  25557. side: {
  25558. height: math.unit(8 + 4 / 12, "feet"),
  25559. weight: math.unit(350, "lb"),
  25560. name: "Side",
  25561. image: {
  25562. source: "./media/characters/sheera-castellar/side.svg",
  25563. extra: 1957 / 1894
  25564. }
  25565. },
  25566. back: {
  25567. height: math.unit(8 + 4 / 12, "feet"),
  25568. weight: math.unit(350, "lb"),
  25569. name: "Back",
  25570. image: {
  25571. source: "./media/characters/sheera-castellar/back.svg",
  25572. extra: 1957 / 1894
  25573. }
  25574. },
  25575. angled: {
  25576. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25577. weight: math.unit(350, "lb"),
  25578. name: "Angled",
  25579. image: {
  25580. source: "./media/characters/sheera-castellar/angled.svg",
  25581. extra: 1807 / 1707,
  25582. bottom: 68 / 1875
  25583. }
  25584. },
  25585. genitals: {
  25586. height: math.unit(2.2, "feet"),
  25587. name: "Genitals",
  25588. image: {
  25589. source: "./media/characters/sheera-castellar/genitals.svg"
  25590. }
  25591. },
  25592. taur: {
  25593. height: math.unit(10 + 6/12, "feet"),
  25594. name: "Taur",
  25595. image: {
  25596. source: "./media/characters/sheera-castellar/taur.svg",
  25597. extra: 2017/1909,
  25598. bottom: 185/2202
  25599. }
  25600. },
  25601. },
  25602. [
  25603. {
  25604. name: "Normal",
  25605. height: math.unit(8 + 4 / 12, "feet")
  25606. },
  25607. {
  25608. name: "Macro",
  25609. height: math.unit(150, "feet"),
  25610. default: true
  25611. },
  25612. {
  25613. name: "Macro+",
  25614. height: math.unit(800, "feet")
  25615. },
  25616. ]
  25617. ))
  25618. characterMakers.push(() => makeCharacter(
  25619. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25620. {
  25621. front: {
  25622. height: math.unit(6, "feet"),
  25623. weight: math.unit(150, "lb"),
  25624. name: "Front",
  25625. image: {
  25626. source: "./media/characters/jaipur/front.svg",
  25627. extra: 3860 / 3731,
  25628. bottom: 287 / 4140
  25629. }
  25630. },
  25631. back: {
  25632. height: math.unit(6, "feet"),
  25633. weight: math.unit(150, "lb"),
  25634. name: "Back",
  25635. image: {
  25636. source: "./media/characters/jaipur/back.svg",
  25637. extra: 1637/1561,
  25638. bottom: 154/1791
  25639. }
  25640. },
  25641. },
  25642. [
  25643. {
  25644. name: "Normal",
  25645. height: math.unit(1.85, "meters"),
  25646. default: true
  25647. },
  25648. {
  25649. name: "Macro",
  25650. height: math.unit(150, "meters")
  25651. },
  25652. {
  25653. name: "Macro+",
  25654. height: math.unit(0.5, "miles")
  25655. },
  25656. {
  25657. name: "Macro++",
  25658. height: math.unit(2.5, "miles")
  25659. },
  25660. {
  25661. name: "Macro+++",
  25662. height: math.unit(12, "miles")
  25663. },
  25664. {
  25665. name: "Macro++++",
  25666. height: math.unit(120, "miles")
  25667. },
  25668. {
  25669. name: "Macro+++++",
  25670. height: math.unit(1200, "miles")
  25671. },
  25672. ]
  25673. ))
  25674. characterMakers.push(() => makeCharacter(
  25675. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25676. {
  25677. front: {
  25678. height: math.unit(6, "feet"),
  25679. weight: math.unit(150, "lb"),
  25680. name: "Front",
  25681. image: {
  25682. source: "./media/characters/sheila-wolf/front.svg",
  25683. extra: 1931 / 1808,
  25684. bottom: 29.5 / 1960
  25685. }
  25686. },
  25687. dick: {
  25688. height: math.unit(1.464, "feet"),
  25689. name: "Dick",
  25690. image: {
  25691. source: "./media/characters/sheila-wolf/dick.svg"
  25692. }
  25693. },
  25694. muzzle: {
  25695. height: math.unit(0.513, "feet"),
  25696. name: "Muzzle",
  25697. image: {
  25698. source: "./media/characters/sheila-wolf/muzzle.svg"
  25699. }
  25700. },
  25701. },
  25702. [
  25703. {
  25704. name: "Macro",
  25705. height: math.unit(70, "feet"),
  25706. default: true
  25707. },
  25708. ]
  25709. ))
  25710. characterMakers.push(() => makeCharacter(
  25711. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25712. {
  25713. front: {
  25714. height: math.unit(32, "meters"),
  25715. weight: math.unit(300000, "kg"),
  25716. name: "Front",
  25717. image: {
  25718. source: "./media/characters/almor/front.svg",
  25719. extra: 1408 / 1322,
  25720. bottom: 94.6 / 1506.5
  25721. }
  25722. },
  25723. },
  25724. [
  25725. {
  25726. name: "Macro",
  25727. height: math.unit(32, "meters"),
  25728. default: true
  25729. },
  25730. ]
  25731. ))
  25732. characterMakers.push(() => makeCharacter(
  25733. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25734. {
  25735. front: {
  25736. height: math.unit(7, "feet"),
  25737. weight: math.unit(200, "lb"),
  25738. name: "Front",
  25739. image: {
  25740. source: "./media/characters/silver/front.svg",
  25741. extra: 472.1 / 450.5,
  25742. bottom: 26.5 / 499.424
  25743. }
  25744. },
  25745. },
  25746. [
  25747. {
  25748. name: "Normal",
  25749. height: math.unit(7, "feet"),
  25750. default: true
  25751. },
  25752. {
  25753. name: "Macro",
  25754. height: math.unit(800, "feet")
  25755. },
  25756. {
  25757. name: "Megamacro",
  25758. height: math.unit(250, "miles")
  25759. },
  25760. ]
  25761. ))
  25762. characterMakers.push(() => makeCharacter(
  25763. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25764. {
  25765. front: {
  25766. height: math.unit(6, "feet"),
  25767. weight: math.unit(150, "lb"),
  25768. name: "Front",
  25769. image: {
  25770. source: "./media/characters/pliskin/front.svg",
  25771. extra: 1469 / 1359,
  25772. bottom: 70 / 1540
  25773. }
  25774. },
  25775. },
  25776. [
  25777. {
  25778. name: "Micro",
  25779. height: math.unit(3, "inches")
  25780. },
  25781. {
  25782. name: "Normal",
  25783. height: math.unit(5 + 11 / 12, "feet"),
  25784. default: true
  25785. },
  25786. {
  25787. name: "Macro",
  25788. height: math.unit(120, "feet")
  25789. },
  25790. ]
  25791. ))
  25792. characterMakers.push(() => makeCharacter(
  25793. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25794. {
  25795. front: {
  25796. height: math.unit(6, "feet"),
  25797. weight: math.unit(150, "lb"),
  25798. name: "Front",
  25799. image: {
  25800. source: "./media/characters/sammy/front.svg",
  25801. extra: 1193 / 1089,
  25802. bottom: 30.5 / 1226
  25803. }
  25804. },
  25805. },
  25806. [
  25807. {
  25808. name: "Macro",
  25809. height: math.unit(1700, "feet"),
  25810. default: true
  25811. },
  25812. {
  25813. name: "Examacro",
  25814. height: math.unit(2.5e9, "lightyears")
  25815. },
  25816. ]
  25817. ))
  25818. characterMakers.push(() => makeCharacter(
  25819. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25820. {
  25821. front: {
  25822. height: math.unit(21, "meters"),
  25823. weight: math.unit(12, "tonnes"),
  25824. name: "Front",
  25825. image: {
  25826. source: "./media/characters/kuru/front.svg",
  25827. extra: 4301 / 3785,
  25828. bottom: 371.3 / 4691
  25829. }
  25830. },
  25831. },
  25832. [
  25833. {
  25834. name: "Macro",
  25835. height: math.unit(21, "meters"),
  25836. default: true
  25837. },
  25838. ]
  25839. ))
  25840. characterMakers.push(() => makeCharacter(
  25841. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25842. {
  25843. front: {
  25844. height: math.unit(23, "meters"),
  25845. weight: math.unit(12.2, "tonnes"),
  25846. name: "Front",
  25847. image: {
  25848. source: "./media/characters/rakka/front.svg",
  25849. extra: 4670 / 4169,
  25850. bottom: 301 / 4968.7
  25851. }
  25852. },
  25853. },
  25854. [
  25855. {
  25856. name: "Macro",
  25857. height: math.unit(23, "meters"),
  25858. default: true
  25859. },
  25860. ]
  25861. ))
  25862. characterMakers.push(() => makeCharacter(
  25863. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25864. {
  25865. front: {
  25866. height: math.unit(6, "feet"),
  25867. weight: math.unit(150, "lb"),
  25868. name: "Front",
  25869. image: {
  25870. source: "./media/characters/rhys-feline/front.svg",
  25871. extra: 2488 / 2308,
  25872. bottom: 35.67 / 2519.19
  25873. }
  25874. },
  25875. },
  25876. [
  25877. {
  25878. name: "Really Small",
  25879. height: math.unit(1, "nm")
  25880. },
  25881. {
  25882. name: "Micro",
  25883. height: math.unit(4, "inches")
  25884. },
  25885. {
  25886. name: "Normal",
  25887. height: math.unit(4 + 10 / 12, "feet"),
  25888. default: true
  25889. },
  25890. {
  25891. name: "Macro",
  25892. height: math.unit(100, "feet")
  25893. },
  25894. {
  25895. name: "Megamacto",
  25896. height: math.unit(50, "miles")
  25897. },
  25898. ]
  25899. ))
  25900. characterMakers.push(() => makeCharacter(
  25901. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25902. {
  25903. side: {
  25904. height: math.unit(30, "feet"),
  25905. weight: math.unit(35000, "kg"),
  25906. name: "Side",
  25907. image: {
  25908. source: "./media/characters/alydar/side.svg",
  25909. extra: 234 / 222,
  25910. bottom: 6.5 / 241
  25911. }
  25912. },
  25913. front: {
  25914. height: math.unit(30, "feet"),
  25915. weight: math.unit(35000, "kg"),
  25916. name: "Front",
  25917. image: {
  25918. source: "./media/characters/alydar/front.svg",
  25919. extra: 223.37 / 210.2,
  25920. bottom: 22.3 / 246.76
  25921. }
  25922. },
  25923. top: {
  25924. height: math.unit(64.54, "feet"),
  25925. weight: math.unit(35000, "kg"),
  25926. name: "Top",
  25927. image: {
  25928. source: "./media/characters/alydar/top.svg"
  25929. }
  25930. },
  25931. anthro: {
  25932. height: math.unit(30, "feet"),
  25933. weight: math.unit(9000, "kg"),
  25934. name: "Anthro",
  25935. image: {
  25936. source: "./media/characters/alydar/anthro.svg",
  25937. extra: 432 / 421,
  25938. bottom: 7.18 / 440
  25939. }
  25940. },
  25941. maw: {
  25942. height: math.unit(11.693, "feet"),
  25943. name: "Maw",
  25944. image: {
  25945. source: "./media/characters/alydar/maw.svg"
  25946. }
  25947. },
  25948. head: {
  25949. height: math.unit(11.693, "feet"),
  25950. name: "Head",
  25951. image: {
  25952. source: "./media/characters/alydar/head.svg"
  25953. }
  25954. },
  25955. headAlt: {
  25956. height: math.unit(12.861, "feet"),
  25957. name: "Head (Alt)",
  25958. image: {
  25959. source: "./media/characters/alydar/head-alt.svg"
  25960. }
  25961. },
  25962. wing: {
  25963. height: math.unit(20.712, "feet"),
  25964. name: "Wing",
  25965. image: {
  25966. source: "./media/characters/alydar/wing.svg"
  25967. }
  25968. },
  25969. wingFeather: {
  25970. height: math.unit(9.662, "feet"),
  25971. name: "Wing Feather",
  25972. image: {
  25973. source: "./media/characters/alydar/wing-feather.svg"
  25974. }
  25975. },
  25976. countourFeather: {
  25977. height: math.unit(4.154, "feet"),
  25978. name: "Contour Feather",
  25979. image: {
  25980. source: "./media/characters/alydar/contour-feather.svg"
  25981. }
  25982. },
  25983. },
  25984. [
  25985. {
  25986. name: "Diplomatic",
  25987. height: math.unit(13, "feet"),
  25988. default: true
  25989. },
  25990. {
  25991. name: "Small",
  25992. height: math.unit(30, "feet")
  25993. },
  25994. {
  25995. name: "Normal",
  25996. height: math.unit(95, "feet"),
  25997. default: true
  25998. },
  25999. {
  26000. name: "Large",
  26001. height: math.unit(285, "feet")
  26002. },
  26003. {
  26004. name: "Incomprehensible",
  26005. height: math.unit(450, "megameters")
  26006. },
  26007. ]
  26008. ))
  26009. characterMakers.push(() => makeCharacter(
  26010. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26011. {
  26012. side: {
  26013. height: math.unit(11, "feet"),
  26014. weight: math.unit(1750, "kg"),
  26015. name: "Side",
  26016. image: {
  26017. source: "./media/characters/selicia/side.svg",
  26018. extra: 440 / 396,
  26019. bottom: 24.8 / 465.979
  26020. }
  26021. },
  26022. maw: {
  26023. height: math.unit(4.665, "feet"),
  26024. name: "Maw",
  26025. image: {
  26026. source: "./media/characters/selicia/maw.svg"
  26027. }
  26028. },
  26029. },
  26030. [
  26031. {
  26032. name: "Normal",
  26033. height: math.unit(11, "feet"),
  26034. default: true
  26035. },
  26036. ]
  26037. ))
  26038. characterMakers.push(() => makeCharacter(
  26039. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26040. {
  26041. side: {
  26042. height: math.unit(2 + 6 / 12, "feet"),
  26043. weight: math.unit(30, "lb"),
  26044. name: "Side",
  26045. image: {
  26046. source: "./media/characters/layla/side.svg",
  26047. extra: 244 / 188,
  26048. bottom: 18.2 / 262.1
  26049. }
  26050. },
  26051. back: {
  26052. height: math.unit(2 + 6 / 12, "feet"),
  26053. weight: math.unit(30, "lb"),
  26054. name: "Back",
  26055. image: {
  26056. source: "./media/characters/layla/back.svg",
  26057. extra: 308 / 241.5,
  26058. bottom: 8.9 / 316.8
  26059. }
  26060. },
  26061. cumming: {
  26062. height: math.unit(2 + 6 / 12, "feet"),
  26063. weight: math.unit(30, "lb"),
  26064. name: "Cumming",
  26065. image: {
  26066. source: "./media/characters/layla/cumming.svg",
  26067. extra: 342 / 279,
  26068. bottom: 595 / 938
  26069. }
  26070. },
  26071. dickFlaccid: {
  26072. height: math.unit(2.595, "feet"),
  26073. name: "Flaccid Genitals",
  26074. image: {
  26075. source: "./media/characters/layla/dick-flaccid.svg"
  26076. }
  26077. },
  26078. dickErect: {
  26079. height: math.unit(2.359, "feet"),
  26080. name: "Erect Genitals",
  26081. image: {
  26082. source: "./media/characters/layla/dick-erect.svg"
  26083. }
  26084. },
  26085. dragon: {
  26086. height: math.unit(40, "feet"),
  26087. name: "Dragon",
  26088. image: {
  26089. source: "./media/characters/layla/dragon.svg",
  26090. extra: 610/535,
  26091. bottom: 367/977
  26092. }
  26093. },
  26094. taur: {
  26095. height: math.unit(30, "feet"),
  26096. name: "Taur",
  26097. image: {
  26098. source: "./media/characters/layla/taur.svg",
  26099. extra: 1268/1199,
  26100. bottom: 112/1380
  26101. }
  26102. },
  26103. },
  26104. [
  26105. {
  26106. name: "Micro",
  26107. height: math.unit(1, "inch")
  26108. },
  26109. {
  26110. name: "Small",
  26111. height: math.unit(1, "foot")
  26112. },
  26113. {
  26114. name: "Normal",
  26115. height: math.unit(2 + 6 / 12, "feet"),
  26116. default: true
  26117. },
  26118. {
  26119. name: "Macro",
  26120. height: math.unit(200, "feet")
  26121. },
  26122. {
  26123. name: "Megamacro",
  26124. height: math.unit(1000, "miles")
  26125. },
  26126. {
  26127. name: "Planetary",
  26128. height: math.unit(8000, "miles")
  26129. },
  26130. {
  26131. name: "True Layla",
  26132. height: math.unit(200000 * 7, "multiverses")
  26133. },
  26134. ]
  26135. ))
  26136. characterMakers.push(() => makeCharacter(
  26137. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26138. {
  26139. back: {
  26140. height: math.unit(10.5, "feet"),
  26141. weight: math.unit(800, "lb"),
  26142. name: "Back",
  26143. image: {
  26144. source: "./media/characters/knox/back.svg",
  26145. extra: 1486 / 1089,
  26146. bottom: 107 / 1601.4
  26147. }
  26148. },
  26149. side: {
  26150. height: math.unit(10.5, "feet"),
  26151. weight: math.unit(800, "lb"),
  26152. name: "Side",
  26153. image: {
  26154. source: "./media/characters/knox/side.svg",
  26155. extra: 244 / 218,
  26156. bottom: 14 / 260
  26157. }
  26158. },
  26159. },
  26160. [
  26161. {
  26162. name: "Compact",
  26163. height: math.unit(10.5, "feet"),
  26164. default: true
  26165. },
  26166. {
  26167. name: "Dynamax",
  26168. height: math.unit(210, "feet")
  26169. },
  26170. {
  26171. name: "Full Macro",
  26172. height: math.unit(850, "feet")
  26173. },
  26174. ]
  26175. ))
  26176. characterMakers.push(() => makeCharacter(
  26177. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26178. {
  26179. front: {
  26180. height: math.unit(28, "feet"),
  26181. weight: math.unit(10500, "lb"),
  26182. name: "Front",
  26183. image: {
  26184. source: "./media/characters/kayda/front.svg",
  26185. extra: 1536 / 1428,
  26186. bottom: 68.7 / 1603
  26187. }
  26188. },
  26189. back: {
  26190. height: math.unit(28, "feet"),
  26191. weight: math.unit(10500, "lb"),
  26192. name: "Back",
  26193. image: {
  26194. source: "./media/characters/kayda/back.svg",
  26195. extra: 1557 / 1464,
  26196. bottom: 39.5 / 1597.49
  26197. }
  26198. },
  26199. dick: {
  26200. height: math.unit(3.858, "feet"),
  26201. name: "Dick",
  26202. image: {
  26203. source: "./media/characters/kayda/dick.svg"
  26204. }
  26205. },
  26206. },
  26207. [
  26208. {
  26209. name: "Macro",
  26210. height: math.unit(28, "feet"),
  26211. default: true
  26212. },
  26213. ]
  26214. ))
  26215. characterMakers.push(() => makeCharacter(
  26216. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26217. {
  26218. front: {
  26219. height: math.unit(10 + 11 / 12, "feet"),
  26220. weight: math.unit(1400, "lb"),
  26221. name: "Front",
  26222. image: {
  26223. source: "./media/characters/brian/front.svg",
  26224. extra: 737 / 692,
  26225. bottom: 55.4 / 785
  26226. }
  26227. },
  26228. },
  26229. [
  26230. {
  26231. name: "Normal",
  26232. height: math.unit(10 + 11 / 12, "feet"),
  26233. default: true
  26234. },
  26235. ]
  26236. ))
  26237. characterMakers.push(() => makeCharacter(
  26238. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26239. {
  26240. front: {
  26241. height: math.unit(5 + 8 / 12, "feet"),
  26242. weight: math.unit(140, "lb"),
  26243. name: "Front",
  26244. image: {
  26245. source: "./media/characters/khemri/front.svg",
  26246. extra: 4780 / 4059,
  26247. bottom: 80.1 / 4859.25
  26248. }
  26249. },
  26250. },
  26251. [
  26252. {
  26253. name: "Micro",
  26254. height: math.unit(6, "inches")
  26255. },
  26256. {
  26257. name: "Normal",
  26258. height: math.unit(5 + 8 / 12, "feet"),
  26259. default: true
  26260. },
  26261. ]
  26262. ))
  26263. characterMakers.push(() => makeCharacter(
  26264. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26265. {
  26266. front: {
  26267. height: math.unit(13, "feet"),
  26268. weight: math.unit(1700, "lb"),
  26269. name: "Front",
  26270. image: {
  26271. source: "./media/characters/felix-braveheart/front.svg",
  26272. extra: 1222 / 1157,
  26273. bottom: 53.2 / 1280
  26274. }
  26275. },
  26276. back: {
  26277. height: math.unit(13, "feet"),
  26278. weight: math.unit(1700, "lb"),
  26279. name: "Back",
  26280. image: {
  26281. source: "./media/characters/felix-braveheart/back.svg",
  26282. extra: 1277 / 1203,
  26283. bottom: 50.2 / 1327
  26284. }
  26285. },
  26286. feral: {
  26287. height: math.unit(6, "feet"),
  26288. weight: math.unit(400, "lb"),
  26289. name: "Feral",
  26290. image: {
  26291. source: "./media/characters/felix-braveheart/feral.svg",
  26292. extra: 682 / 625,
  26293. bottom: 6.9 / 688
  26294. }
  26295. },
  26296. },
  26297. [
  26298. {
  26299. name: "Normal",
  26300. height: math.unit(13, "feet"),
  26301. default: true
  26302. },
  26303. ]
  26304. ))
  26305. characterMakers.push(() => makeCharacter(
  26306. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26307. {
  26308. side: {
  26309. height: math.unit(5 + 11 / 12, "feet"),
  26310. weight: math.unit(1400, "lb"),
  26311. name: "Side",
  26312. image: {
  26313. source: "./media/characters/shadow-blade/side.svg",
  26314. extra: 1726 / 1267,
  26315. bottom: 58.4 / 1785
  26316. }
  26317. },
  26318. },
  26319. [
  26320. {
  26321. name: "Normal",
  26322. height: math.unit(5 + 11 / 12, "feet"),
  26323. default: true
  26324. },
  26325. ]
  26326. ))
  26327. characterMakers.push(() => makeCharacter(
  26328. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26329. {
  26330. front: {
  26331. height: math.unit(1 + 6 / 12, "feet"),
  26332. weight: math.unit(25, "lb"),
  26333. name: "Front",
  26334. image: {
  26335. source: "./media/characters/karla-halldor/front.svg",
  26336. extra: 1459 / 1383,
  26337. bottom: 12 / 1472
  26338. }
  26339. },
  26340. },
  26341. [
  26342. {
  26343. name: "Normal",
  26344. height: math.unit(1 + 6 / 12, "feet"),
  26345. default: true
  26346. },
  26347. ]
  26348. ))
  26349. characterMakers.push(() => makeCharacter(
  26350. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26351. {
  26352. front: {
  26353. height: math.unit(6 + 2 / 12, "feet"),
  26354. weight: math.unit(160, "lb"),
  26355. name: "Front",
  26356. image: {
  26357. source: "./media/characters/ariam/front.svg",
  26358. extra: 1073/976,
  26359. bottom: 52/1125
  26360. }
  26361. },
  26362. back: {
  26363. height: math.unit(6 + 2/12, "feet"),
  26364. weight: math.unit(160, "lb"),
  26365. name: "Back",
  26366. image: {
  26367. source: "./media/characters/ariam/back.svg",
  26368. extra: 1103/1023,
  26369. bottom: 9/1112
  26370. }
  26371. },
  26372. dressed: {
  26373. height: math.unit(6 + 2/12, "feet"),
  26374. weight: math.unit(160, "lb"),
  26375. name: "Dressed",
  26376. image: {
  26377. source: "./media/characters/ariam/dressed.svg",
  26378. extra: 1099/1009,
  26379. bottom: 25/1124
  26380. }
  26381. },
  26382. squatting: {
  26383. height: math.unit(4.1, "feet"),
  26384. weight: math.unit(160, "lb"),
  26385. name: "Squatting",
  26386. image: {
  26387. source: "./media/characters/ariam/squatting.svg",
  26388. extra: 2617 / 2112,
  26389. bottom: 61.2 / 2681,
  26390. }
  26391. },
  26392. },
  26393. [
  26394. {
  26395. name: "Normal",
  26396. height: math.unit(6 + 2 / 12, "feet"),
  26397. default: true
  26398. },
  26399. {
  26400. name: "Normal+",
  26401. height: math.unit(4, "meters")
  26402. },
  26403. {
  26404. name: "Macro",
  26405. height: math.unit(50, "meters")
  26406. },
  26407. {
  26408. name: "Macro+",
  26409. height: math.unit(100, "meters")
  26410. },
  26411. {
  26412. name: "Megamacro",
  26413. height: math.unit(20, "km")
  26414. },
  26415. {
  26416. name: "Caretaker",
  26417. height: math.unit(444, "megameters")
  26418. },
  26419. ]
  26420. ))
  26421. characterMakers.push(() => makeCharacter(
  26422. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26423. {
  26424. front: {
  26425. height: math.unit(1.67, "meters"),
  26426. weight: math.unit(140, "lb"),
  26427. name: "Front",
  26428. image: {
  26429. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26430. extra: 438 / 410,
  26431. bottom: 0.75 / 439
  26432. }
  26433. },
  26434. },
  26435. [
  26436. {
  26437. name: "Shrunken",
  26438. height: math.unit(7.6, "cm")
  26439. },
  26440. {
  26441. name: "Human Scale",
  26442. height: math.unit(1.67, "meters")
  26443. },
  26444. {
  26445. name: "Wolxi Scale",
  26446. height: math.unit(36.7, "meters"),
  26447. default: true
  26448. },
  26449. ]
  26450. ))
  26451. characterMakers.push(() => makeCharacter(
  26452. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26453. {
  26454. front: {
  26455. height: math.unit(1.73, "meters"),
  26456. weight: math.unit(240, "lb"),
  26457. name: "Front",
  26458. image: {
  26459. source: "./media/characters/izue-two-mothers/front.svg",
  26460. extra: 469 / 437,
  26461. bottom: 1.24 / 470.6
  26462. }
  26463. },
  26464. },
  26465. [
  26466. {
  26467. name: "Shrunken",
  26468. height: math.unit(7.86, "cm")
  26469. },
  26470. {
  26471. name: "Human Scale",
  26472. height: math.unit(1.73, "meters")
  26473. },
  26474. {
  26475. name: "Wolxi Scale",
  26476. height: math.unit(38, "meters"),
  26477. default: true
  26478. },
  26479. ]
  26480. ))
  26481. characterMakers.push(() => makeCharacter(
  26482. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26483. {
  26484. front: {
  26485. height: math.unit(1.55, "meters"),
  26486. weight: math.unit(120, "lb"),
  26487. name: "Front",
  26488. image: {
  26489. source: "./media/characters/teeku-love-shack/front.svg",
  26490. extra: 387 / 362,
  26491. bottom: 1.51 / 388
  26492. }
  26493. },
  26494. },
  26495. [
  26496. {
  26497. name: "Shrunken",
  26498. height: math.unit(7, "cm")
  26499. },
  26500. {
  26501. name: "Human Scale",
  26502. height: math.unit(1.55, "meters")
  26503. },
  26504. {
  26505. name: "Wolxi Scale",
  26506. height: math.unit(34.1, "meters"),
  26507. default: true
  26508. },
  26509. ]
  26510. ))
  26511. characterMakers.push(() => makeCharacter(
  26512. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26513. {
  26514. front: {
  26515. height: math.unit(1.83, "meters"),
  26516. weight: math.unit(135, "lb"),
  26517. name: "Front",
  26518. image: {
  26519. source: "./media/characters/dejma-the-red/front.svg",
  26520. extra: 480 / 458,
  26521. bottom: 1.8 / 482
  26522. }
  26523. },
  26524. },
  26525. [
  26526. {
  26527. name: "Shrunken",
  26528. height: math.unit(8.3, "cm")
  26529. },
  26530. {
  26531. name: "Human Scale",
  26532. height: math.unit(1.83, "meters")
  26533. },
  26534. {
  26535. name: "Wolxi Scale",
  26536. height: math.unit(40, "meters"),
  26537. default: true
  26538. },
  26539. ]
  26540. ))
  26541. characterMakers.push(() => makeCharacter(
  26542. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26543. {
  26544. front: {
  26545. height: math.unit(1.78, "meters"),
  26546. weight: math.unit(65, "kg"),
  26547. name: "Front",
  26548. image: {
  26549. source: "./media/characters/aki/front.svg",
  26550. extra: 452 / 415
  26551. }
  26552. },
  26553. frontNsfw: {
  26554. height: math.unit(1.78, "meters"),
  26555. weight: math.unit(65, "kg"),
  26556. name: "Front (NSFW)",
  26557. image: {
  26558. source: "./media/characters/aki/front-nsfw.svg",
  26559. extra: 452 / 415
  26560. }
  26561. },
  26562. back: {
  26563. height: math.unit(1.78, "meters"),
  26564. weight: math.unit(65, "kg"),
  26565. name: "Back",
  26566. image: {
  26567. source: "./media/characters/aki/back.svg",
  26568. extra: 452 / 415
  26569. }
  26570. },
  26571. rump: {
  26572. height: math.unit(2.05, "feet"),
  26573. name: "Rump",
  26574. image: {
  26575. source: "./media/characters/aki/rump.svg"
  26576. }
  26577. },
  26578. dick: {
  26579. height: math.unit(0.95, "feet"),
  26580. name: "Dick",
  26581. image: {
  26582. source: "./media/characters/aki/dick.svg"
  26583. }
  26584. },
  26585. },
  26586. [
  26587. {
  26588. name: "Micro",
  26589. height: math.unit(15, "cm")
  26590. },
  26591. {
  26592. name: "Normal",
  26593. height: math.unit(178, "cm"),
  26594. default: true
  26595. },
  26596. {
  26597. name: "Macro",
  26598. height: math.unit(214, "m")
  26599. },
  26600. {
  26601. name: "Macro+",
  26602. height: math.unit(534, "m")
  26603. },
  26604. ]
  26605. ))
  26606. characterMakers.push(() => makeCharacter(
  26607. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26608. {
  26609. front: {
  26610. height: math.unit(5 + 5 / 12, "feet"),
  26611. weight: math.unit(120, "lb"),
  26612. name: "Front",
  26613. image: {
  26614. source: "./media/characters/ari/front.svg",
  26615. extra: 1550/1471,
  26616. bottom: 39/1589
  26617. }
  26618. },
  26619. },
  26620. [
  26621. {
  26622. name: "Normal",
  26623. height: math.unit(5 + 5 / 12, "feet")
  26624. },
  26625. {
  26626. name: "Macro",
  26627. height: math.unit(100, "feet"),
  26628. default: true
  26629. },
  26630. {
  26631. name: "Megamacro",
  26632. height: math.unit(100, "miles")
  26633. },
  26634. {
  26635. name: "Gigamacro",
  26636. height: math.unit(80000, "miles")
  26637. },
  26638. ]
  26639. ))
  26640. characterMakers.push(() => makeCharacter(
  26641. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26642. {
  26643. side: {
  26644. height: math.unit(9, "feet"),
  26645. weight: math.unit(400, "kg"),
  26646. name: "Side",
  26647. image: {
  26648. source: "./media/characters/bolt/side.svg",
  26649. extra: 1126 / 896,
  26650. bottom: 60 / 1187.3,
  26651. }
  26652. },
  26653. },
  26654. [
  26655. {
  26656. name: "Micro",
  26657. height: math.unit(5, "inches")
  26658. },
  26659. {
  26660. name: "Normal",
  26661. height: math.unit(9, "feet"),
  26662. default: true
  26663. },
  26664. {
  26665. name: "Macro",
  26666. height: math.unit(700, "feet")
  26667. },
  26668. {
  26669. name: "Max Size",
  26670. height: math.unit(1.52e22, "yottameters")
  26671. },
  26672. ]
  26673. ))
  26674. characterMakers.push(() => makeCharacter(
  26675. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26676. {
  26677. front: {
  26678. height: math.unit(4.3, "meters"),
  26679. weight: math.unit(3, "tons"),
  26680. name: "Front",
  26681. image: {
  26682. source: "./media/characters/draekon-sylviar/front.svg",
  26683. extra: 2072/1512,
  26684. bottom: 74/2146
  26685. }
  26686. },
  26687. back: {
  26688. height: math.unit(4.3, "meters"),
  26689. weight: math.unit(3, "tons"),
  26690. name: "Back",
  26691. image: {
  26692. source: "./media/characters/draekon-sylviar/back.svg",
  26693. extra: 1639/1483,
  26694. bottom: 41/1680
  26695. }
  26696. },
  26697. feral: {
  26698. height: math.unit(1.15, "meters"),
  26699. weight: math.unit(3, "tons"),
  26700. name: "Feral",
  26701. image: {
  26702. source: "./media/characters/draekon-sylviar/feral.svg",
  26703. extra: 1033/395,
  26704. bottom: 130/1163
  26705. }
  26706. },
  26707. maw: {
  26708. height: math.unit(1.3, "meters"),
  26709. name: "Maw",
  26710. image: {
  26711. source: "./media/characters/draekon-sylviar/maw.svg"
  26712. }
  26713. },
  26714. mawSeparated: {
  26715. height: math.unit(1.53, "meters"),
  26716. name: "Separated Maw",
  26717. image: {
  26718. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26719. }
  26720. },
  26721. tail: {
  26722. height: math.unit(1.15, "meters"),
  26723. name: "Tail",
  26724. image: {
  26725. source: "./media/characters/draekon-sylviar/tail.svg"
  26726. }
  26727. },
  26728. tailDick: {
  26729. height: math.unit(1.15, "meters"),
  26730. name: "Tail (Dick)",
  26731. image: {
  26732. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26733. }
  26734. },
  26735. tailDickSeparated: {
  26736. height: math.unit(1.19, "meters"),
  26737. name: "Tail (Separated Dick)",
  26738. image: {
  26739. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26740. }
  26741. },
  26742. slit: {
  26743. height: math.unit(1, "meters"),
  26744. name: "Slit",
  26745. image: {
  26746. source: "./media/characters/draekon-sylviar/slit.svg"
  26747. }
  26748. },
  26749. dick: {
  26750. height: math.unit(1.15, "meters"),
  26751. name: "Dick",
  26752. image: {
  26753. source: "./media/characters/draekon-sylviar/dick.svg"
  26754. }
  26755. },
  26756. dickSeparated: {
  26757. height: math.unit(1.1, "meters"),
  26758. name: "Separated Dick",
  26759. image: {
  26760. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26761. }
  26762. },
  26763. sheath: {
  26764. height: math.unit(1.15, "meters"),
  26765. name: "Sheath",
  26766. image: {
  26767. source: "./media/characters/draekon-sylviar/sheath.svg"
  26768. }
  26769. },
  26770. },
  26771. [
  26772. {
  26773. name: "Small",
  26774. height: math.unit(4.53 / 2, "meters"),
  26775. default: true
  26776. },
  26777. {
  26778. name: "Normal",
  26779. height: math.unit(4.53, "meters"),
  26780. default: true
  26781. },
  26782. {
  26783. name: "Large",
  26784. height: math.unit(4.53 * 2, "meters"),
  26785. },
  26786. ]
  26787. ))
  26788. characterMakers.push(() => makeCharacter(
  26789. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26790. {
  26791. front: {
  26792. height: math.unit(6 + 2 / 12, "feet"),
  26793. weight: math.unit(180, "lb"),
  26794. name: "Front",
  26795. image: {
  26796. source: "./media/characters/brawler/front.svg",
  26797. extra: 3301 / 3027,
  26798. bottom: 138 / 3439
  26799. }
  26800. },
  26801. },
  26802. [
  26803. {
  26804. name: "Normal",
  26805. height: math.unit(6 + 2 / 12, "feet"),
  26806. default: true
  26807. },
  26808. ]
  26809. ))
  26810. characterMakers.push(() => makeCharacter(
  26811. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26812. {
  26813. front: {
  26814. height: math.unit(11, "feet"),
  26815. weight: math.unit(1000, "lb"),
  26816. name: "Front",
  26817. image: {
  26818. source: "./media/characters/alex/front.svg",
  26819. bottom: 44.5 / 620
  26820. }
  26821. },
  26822. },
  26823. [
  26824. {
  26825. name: "Micro",
  26826. height: math.unit(5, "inches")
  26827. },
  26828. {
  26829. name: "Normal",
  26830. height: math.unit(11, "feet"),
  26831. default: true
  26832. },
  26833. {
  26834. name: "Macro",
  26835. height: math.unit(9.5e9, "feet")
  26836. },
  26837. {
  26838. name: "Max Size",
  26839. height: math.unit(1.4e283, "yottameters")
  26840. },
  26841. ]
  26842. ))
  26843. characterMakers.push(() => makeCharacter(
  26844. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26845. {
  26846. female: {
  26847. height: math.unit(29.9, "m"),
  26848. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26849. name: "Female",
  26850. image: {
  26851. source: "./media/characters/zenari/female.svg",
  26852. extra: 3281.6 / 3217,
  26853. bottom: 72.2 / 3353
  26854. }
  26855. },
  26856. male: {
  26857. height: math.unit(27.7, "m"),
  26858. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26859. name: "Male",
  26860. image: {
  26861. source: "./media/characters/zenari/male.svg",
  26862. extra: 3008 / 2991,
  26863. bottom: 54.6 / 3069
  26864. }
  26865. },
  26866. },
  26867. [
  26868. {
  26869. name: "Macro",
  26870. height: math.unit(29.7, "meters"),
  26871. default: true
  26872. },
  26873. ]
  26874. ))
  26875. characterMakers.push(() => makeCharacter(
  26876. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26877. {
  26878. female: {
  26879. height: math.unit(23.8, "m"),
  26880. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26881. name: "Female",
  26882. image: {
  26883. source: "./media/characters/mactarian/female.svg",
  26884. extra: 2662 / 2569,
  26885. bottom: 73 / 2736
  26886. }
  26887. },
  26888. male: {
  26889. height: math.unit(23.8, "m"),
  26890. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26891. name: "Male",
  26892. image: {
  26893. source: "./media/characters/mactarian/male.svg",
  26894. extra: 2673 / 2600,
  26895. bottom: 76 / 2750
  26896. }
  26897. },
  26898. },
  26899. [
  26900. {
  26901. name: "Macro",
  26902. height: math.unit(23.8, "meters"),
  26903. default: true
  26904. },
  26905. ]
  26906. ))
  26907. characterMakers.push(() => makeCharacter(
  26908. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26909. {
  26910. female: {
  26911. height: math.unit(19.3, "m"),
  26912. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26913. name: "Female",
  26914. image: {
  26915. source: "./media/characters/umok/female.svg",
  26916. extra: 2186 / 2078,
  26917. bottom: 87 / 2277
  26918. }
  26919. },
  26920. male: {
  26921. height: math.unit(19.5, "m"),
  26922. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26923. name: "Male",
  26924. image: {
  26925. source: "./media/characters/umok/male.svg",
  26926. extra: 2233 / 2140,
  26927. bottom: 24.4 / 2258
  26928. }
  26929. },
  26930. },
  26931. [
  26932. {
  26933. name: "Macro",
  26934. height: math.unit(19.3, "meters"),
  26935. default: true
  26936. },
  26937. ]
  26938. ))
  26939. characterMakers.push(() => makeCharacter(
  26940. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26941. {
  26942. female: {
  26943. height: math.unit(26.15, "m"),
  26944. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26945. name: "Female",
  26946. image: {
  26947. source: "./media/characters/joraxian/female.svg",
  26948. extra: 2912 / 2824,
  26949. bottom: 36 / 2956
  26950. }
  26951. },
  26952. male: {
  26953. height: math.unit(25.4, "m"),
  26954. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26955. name: "Male",
  26956. image: {
  26957. source: "./media/characters/joraxian/male.svg",
  26958. extra: 2877 / 2721,
  26959. bottom: 82 / 2967
  26960. }
  26961. },
  26962. },
  26963. [
  26964. {
  26965. name: "Macro",
  26966. height: math.unit(26.15, "meters"),
  26967. default: true
  26968. },
  26969. ]
  26970. ))
  26971. characterMakers.push(() => makeCharacter(
  26972. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26973. {
  26974. female: {
  26975. height: math.unit(21.6, "m"),
  26976. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26977. name: "Female",
  26978. image: {
  26979. source: "./media/characters/sthara/female.svg",
  26980. extra: 2516 / 2347,
  26981. bottom: 21.5 / 2537
  26982. }
  26983. },
  26984. male: {
  26985. height: math.unit(24, "m"),
  26986. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26987. name: "Male",
  26988. image: {
  26989. source: "./media/characters/sthara/male.svg",
  26990. extra: 2732 / 2607,
  26991. bottom: 23 / 2732
  26992. }
  26993. },
  26994. },
  26995. [
  26996. {
  26997. name: "Macro",
  26998. height: math.unit(21.6, "meters"),
  26999. default: true
  27000. },
  27001. ]
  27002. ))
  27003. characterMakers.push(() => makeCharacter(
  27004. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27005. {
  27006. front: {
  27007. height: math.unit(6 + 4 / 12, "feet"),
  27008. weight: math.unit(175, "lb"),
  27009. name: "Front",
  27010. image: {
  27011. source: "./media/characters/luka-bryzant/front.svg",
  27012. extra: 311 / 289,
  27013. bottom: 4 / 315
  27014. }
  27015. },
  27016. back: {
  27017. height: math.unit(6 + 4 / 12, "feet"),
  27018. weight: math.unit(175, "lb"),
  27019. name: "Back",
  27020. image: {
  27021. source: "./media/characters/luka-bryzant/back.svg",
  27022. extra: 311 / 289,
  27023. bottom: 3.8 / 313.7
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Micro",
  27030. height: math.unit(10, "inches")
  27031. },
  27032. {
  27033. name: "Normal",
  27034. height: math.unit(6 + 4 / 12, "feet"),
  27035. default: true
  27036. },
  27037. {
  27038. name: "Large",
  27039. height: math.unit(12, "feet")
  27040. },
  27041. ]
  27042. ))
  27043. characterMakers.push(() => makeCharacter(
  27044. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27045. {
  27046. front: {
  27047. height: math.unit(5 + 7 / 12, "feet"),
  27048. weight: math.unit(185, "lb"),
  27049. name: "Front",
  27050. image: {
  27051. source: "./media/characters/aman-aquila/front.svg",
  27052. extra: 1013 / 976,
  27053. bottom: 45.6 / 1057
  27054. }
  27055. },
  27056. side: {
  27057. height: math.unit(5 + 7 / 12, "feet"),
  27058. weight: math.unit(185, "lb"),
  27059. name: "Side",
  27060. image: {
  27061. source: "./media/characters/aman-aquila/side.svg",
  27062. extra: 1054 / 1011,
  27063. bottom: 15 / 1070
  27064. }
  27065. },
  27066. back: {
  27067. height: math.unit(5 + 7 / 12, "feet"),
  27068. weight: math.unit(185, "lb"),
  27069. name: "Back",
  27070. image: {
  27071. source: "./media/characters/aman-aquila/back.svg",
  27072. extra: 1026 / 970,
  27073. bottom: 12 / 1039
  27074. }
  27075. },
  27076. head: {
  27077. height: math.unit(1.211, "feet"),
  27078. name: "Head",
  27079. image: {
  27080. source: "./media/characters/aman-aquila/head.svg",
  27081. }
  27082. },
  27083. },
  27084. [
  27085. {
  27086. name: "Minimicro",
  27087. height: math.unit(0.057, "inches")
  27088. },
  27089. {
  27090. name: "Micro",
  27091. height: math.unit(7, "inches")
  27092. },
  27093. {
  27094. name: "Mini",
  27095. height: math.unit(3 + 7 / 12, "feet")
  27096. },
  27097. {
  27098. name: "Normal",
  27099. height: math.unit(5 + 7 / 12, "feet"),
  27100. default: true
  27101. },
  27102. {
  27103. name: "Macro",
  27104. height: math.unit(157 + 7 / 12, "feet")
  27105. },
  27106. {
  27107. name: "Megamacro",
  27108. height: math.unit(1557 + 7 / 12, "feet")
  27109. },
  27110. {
  27111. name: "Gigamacro",
  27112. height: math.unit(15557 + 7 / 12, "feet")
  27113. },
  27114. ]
  27115. ))
  27116. characterMakers.push(() => makeCharacter(
  27117. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27118. {
  27119. front: {
  27120. height: math.unit(3 + 2 / 12, "inches"),
  27121. weight: math.unit(0.3, "ounces"),
  27122. name: "Front",
  27123. image: {
  27124. source: "./media/characters/hiphae/front.svg",
  27125. extra: 1931 / 1683,
  27126. bottom: 24 / 1955
  27127. }
  27128. },
  27129. },
  27130. [
  27131. {
  27132. name: "Normal",
  27133. height: math.unit(3 + 1 / 2, "inches"),
  27134. default: true
  27135. },
  27136. ]
  27137. ))
  27138. characterMakers.push(() => makeCharacter(
  27139. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27140. {
  27141. front: {
  27142. height: math.unit(5 + 10 / 12, "feet"),
  27143. weight: math.unit(165, "lb"),
  27144. name: "Front",
  27145. image: {
  27146. source: "./media/characters/nicky/front.svg",
  27147. extra: 3144 / 2886,
  27148. bottom: 45.6 / 3192
  27149. }
  27150. },
  27151. back: {
  27152. height: math.unit(5 + 10 / 12, "feet"),
  27153. weight: math.unit(165, "lb"),
  27154. name: "Back",
  27155. image: {
  27156. source: "./media/characters/nicky/back.svg",
  27157. extra: 3055 / 2804,
  27158. bottom: 28.4 / 3087
  27159. }
  27160. },
  27161. frontclothed: {
  27162. height: math.unit(5 + 10 / 12, "feet"),
  27163. weight: math.unit(165, "lb"),
  27164. name: "Front-clothed",
  27165. image: {
  27166. source: "./media/characters/nicky/front-clothed.svg",
  27167. extra: 3184.9 / 2926.9,
  27168. bottom: 86.5 / 3239.9
  27169. }
  27170. },
  27171. foot: {
  27172. height: math.unit(1.16, "feet"),
  27173. name: "Foot",
  27174. image: {
  27175. source: "./media/characters/nicky/foot.svg"
  27176. }
  27177. },
  27178. feet: {
  27179. height: math.unit(1.34, "feet"),
  27180. name: "Feet",
  27181. image: {
  27182. source: "./media/characters/nicky/feet.svg"
  27183. }
  27184. },
  27185. maw: {
  27186. height: math.unit(0.9, "feet"),
  27187. name: "Maw",
  27188. image: {
  27189. source: "./media/characters/nicky/maw.svg"
  27190. }
  27191. },
  27192. },
  27193. [
  27194. {
  27195. name: "Normal",
  27196. height: math.unit(5 + 10 / 12, "feet"),
  27197. default: true
  27198. },
  27199. {
  27200. name: "Macro",
  27201. height: math.unit(60, "feet")
  27202. },
  27203. {
  27204. name: "Megamacro",
  27205. height: math.unit(1, "mile")
  27206. },
  27207. ]
  27208. ))
  27209. characterMakers.push(() => makeCharacter(
  27210. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27211. {
  27212. side: {
  27213. height: math.unit(10, "feet"),
  27214. weight: math.unit(600, "lb"),
  27215. name: "Side",
  27216. image: {
  27217. source: "./media/characters/blair/side.svg",
  27218. bottom: 16.6 / 475,
  27219. extra: 458 / 431
  27220. }
  27221. },
  27222. },
  27223. [
  27224. {
  27225. name: "Micro",
  27226. height: math.unit(8, "inches")
  27227. },
  27228. {
  27229. name: "Normal",
  27230. height: math.unit(10, "feet"),
  27231. default: true
  27232. },
  27233. {
  27234. name: "Macro",
  27235. height: math.unit(180, "feet")
  27236. },
  27237. ]
  27238. ))
  27239. characterMakers.push(() => makeCharacter(
  27240. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27241. {
  27242. front: {
  27243. height: math.unit(5 + 4 / 12, "feet"),
  27244. weight: math.unit(125, "lb"),
  27245. name: "Front",
  27246. image: {
  27247. source: "./media/characters/fisher/front.svg",
  27248. extra: 444 / 390,
  27249. bottom: 2 / 444.8
  27250. }
  27251. },
  27252. },
  27253. [
  27254. {
  27255. name: "Micro",
  27256. height: math.unit(4, "inches")
  27257. },
  27258. {
  27259. name: "Normal",
  27260. height: math.unit(5 + 4 / 12, "feet"),
  27261. default: true
  27262. },
  27263. {
  27264. name: "Macro",
  27265. height: math.unit(100, "feet")
  27266. },
  27267. ]
  27268. ))
  27269. characterMakers.push(() => makeCharacter(
  27270. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27271. {
  27272. front: {
  27273. height: math.unit(6.71, "feet"),
  27274. weight: math.unit(200, "lb"),
  27275. preyCapacity: math.unit(1000000, "people"),
  27276. name: "Front",
  27277. image: {
  27278. source: "./media/characters/gliss/front.svg",
  27279. extra: 2347 / 2231,
  27280. bottom: 113 / 2462
  27281. }
  27282. },
  27283. hammerspaceSize: {
  27284. height: math.unit(6.71 * 717, "feet"),
  27285. weight: math.unit(200, "lb"),
  27286. preyCapacity: math.unit(1000000, "people"),
  27287. name: "Hammerspace Size",
  27288. image: {
  27289. source: "./media/characters/gliss/front.svg",
  27290. extra: 2347 / 2231,
  27291. bottom: 113 / 2462
  27292. }
  27293. },
  27294. },
  27295. [
  27296. {
  27297. name: "Normal",
  27298. height: math.unit(6.71, "feet"),
  27299. default: true
  27300. },
  27301. ]
  27302. ))
  27303. characterMakers.push(() => makeCharacter(
  27304. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27305. {
  27306. side: {
  27307. height: math.unit(1.44, "m"),
  27308. weight: math.unit(80, "kg"),
  27309. name: "Side",
  27310. image: {
  27311. source: "./media/characters/dune-anderson/side.svg",
  27312. bottom: 49 / 1426
  27313. }
  27314. },
  27315. },
  27316. [
  27317. {
  27318. name: "Wolf-sized",
  27319. height: math.unit(1.44, "meters")
  27320. },
  27321. {
  27322. name: "Normal",
  27323. height: math.unit(5.05, "meters"),
  27324. default: true
  27325. },
  27326. {
  27327. name: "Big",
  27328. height: math.unit(14.4, "meters")
  27329. },
  27330. {
  27331. name: "Huge",
  27332. height: math.unit(144, "meters")
  27333. },
  27334. ]
  27335. ))
  27336. characterMakers.push(() => makeCharacter(
  27337. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27338. {
  27339. front: {
  27340. height: math.unit(7, "feet"),
  27341. weight: math.unit(425, "lb"),
  27342. name: "Front",
  27343. image: {
  27344. source: "./media/characters/hind/front.svg",
  27345. extra: 2091 / 1860,
  27346. bottom: 129 / 2220
  27347. }
  27348. },
  27349. back: {
  27350. height: math.unit(7, "feet"),
  27351. weight: math.unit(425, "lb"),
  27352. name: "Back",
  27353. image: {
  27354. source: "./media/characters/hind/back.svg",
  27355. extra: 2091 / 1860,
  27356. bottom: 24.6 / 2309
  27357. }
  27358. },
  27359. tail: {
  27360. height: math.unit(2.8, "feet"),
  27361. name: "Tail",
  27362. image: {
  27363. source: "./media/characters/hind/tail.svg"
  27364. }
  27365. },
  27366. head: {
  27367. height: math.unit(2.55, "feet"),
  27368. name: "Head",
  27369. image: {
  27370. source: "./media/characters/hind/head.svg"
  27371. }
  27372. },
  27373. },
  27374. [
  27375. {
  27376. name: "XS",
  27377. height: math.unit(0.7, "feet")
  27378. },
  27379. {
  27380. name: "Normal",
  27381. height: math.unit(7, "feet"),
  27382. default: true
  27383. },
  27384. {
  27385. name: "XL",
  27386. height: math.unit(70, "feet")
  27387. },
  27388. ]
  27389. ))
  27390. characterMakers.push(() => makeCharacter(
  27391. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27392. {
  27393. front: {
  27394. height: math.unit(2.1, "meters"),
  27395. weight: math.unit(150, "lb"),
  27396. name: "Front",
  27397. image: {
  27398. source: "./media/characters/tharquench-sizestealer/front.svg",
  27399. extra: 1605/1470,
  27400. bottom: 36/1641
  27401. }
  27402. },
  27403. frontAlt: {
  27404. height: math.unit(2.1, "meters"),
  27405. weight: math.unit(150, "lb"),
  27406. name: "Front (Alt)",
  27407. image: {
  27408. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27409. extra: 2318 / 2063,
  27410. bottom: 93.4 / 2410
  27411. }
  27412. },
  27413. },
  27414. [
  27415. {
  27416. name: "Nano",
  27417. height: math.unit(1, "mm")
  27418. },
  27419. {
  27420. name: "Micro",
  27421. height: math.unit(1, "cm")
  27422. },
  27423. {
  27424. name: "Normal",
  27425. height: math.unit(2.1, "meters"),
  27426. default: true
  27427. },
  27428. ]
  27429. ))
  27430. characterMakers.push(() => makeCharacter(
  27431. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27432. {
  27433. front: {
  27434. height: math.unit(7 + 5 / 12, "feet"),
  27435. weight: math.unit(357, "lb"),
  27436. name: "Front",
  27437. image: {
  27438. source: "./media/characters/solex-draconov/front.svg",
  27439. extra: 1993 / 1865,
  27440. bottom: 117 / 2111
  27441. }
  27442. },
  27443. },
  27444. [
  27445. {
  27446. name: "Natural Height",
  27447. height: math.unit(7 + 5 / 12, "feet"),
  27448. default: true
  27449. },
  27450. {
  27451. name: "Macro",
  27452. height: math.unit(350, "feet")
  27453. },
  27454. {
  27455. name: "Macro+",
  27456. height: math.unit(1000, "feet")
  27457. },
  27458. {
  27459. name: "Megamacro",
  27460. height: math.unit(20, "km")
  27461. },
  27462. {
  27463. name: "Megamacro+",
  27464. height: math.unit(1000, "km")
  27465. },
  27466. {
  27467. name: "Gigamacro",
  27468. height: math.unit(2.5, "Gm")
  27469. },
  27470. {
  27471. name: "Teramacro",
  27472. height: math.unit(15, "Tm")
  27473. },
  27474. {
  27475. name: "Galactic",
  27476. height: math.unit(30, "Zm")
  27477. },
  27478. {
  27479. name: "Universal",
  27480. height: math.unit(21000, "Ym")
  27481. },
  27482. {
  27483. name: "Omniversal",
  27484. height: math.unit(9.861e50, "Ym")
  27485. },
  27486. {
  27487. name: "Existential",
  27488. height: math.unit(1e300, "meters")
  27489. },
  27490. ]
  27491. ))
  27492. characterMakers.push(() => makeCharacter(
  27493. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27494. {
  27495. side: {
  27496. height: math.unit(25, "feet"),
  27497. weight: math.unit(90000, "lb"),
  27498. name: "Side",
  27499. image: {
  27500. source: "./media/characters/mandarax/side.svg",
  27501. extra: 614 / 332,
  27502. bottom: 55 / 630
  27503. }
  27504. },
  27505. lounging: {
  27506. height: math.unit(15.4, "feet"),
  27507. weight: math.unit(90000, "lb"),
  27508. name: "Lounging",
  27509. image: {
  27510. source: "./media/characters/mandarax/lounging.svg",
  27511. extra: 817/609,
  27512. bottom: 685/1502
  27513. }
  27514. },
  27515. head: {
  27516. height: math.unit(11.4, "feet"),
  27517. name: "Head",
  27518. image: {
  27519. source: "./media/characters/mandarax/head.svg"
  27520. }
  27521. },
  27522. belly: {
  27523. height: math.unit(33, "feet"),
  27524. name: "Belly",
  27525. preyCapacity: math.unit(500, "people"),
  27526. image: {
  27527. source: "./media/characters/mandarax/belly.svg"
  27528. }
  27529. },
  27530. dick: {
  27531. height: math.unit(8.46, "feet"),
  27532. name: "Dick",
  27533. image: {
  27534. source: "./media/characters/mandarax/dick.svg"
  27535. }
  27536. },
  27537. top: {
  27538. height: math.unit(28, "meters"),
  27539. name: "Top",
  27540. image: {
  27541. source: "./media/characters/mandarax/top.svg"
  27542. }
  27543. },
  27544. },
  27545. [
  27546. {
  27547. name: "Normal",
  27548. height: math.unit(25, "feet"),
  27549. default: true
  27550. },
  27551. ]
  27552. ))
  27553. characterMakers.push(() => makeCharacter(
  27554. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27555. {
  27556. front: {
  27557. height: math.unit(5, "feet"),
  27558. weight: math.unit(90, "lb"),
  27559. name: "Front",
  27560. image: {
  27561. source: "./media/characters/pixil/front.svg",
  27562. extra: 2000 / 1618,
  27563. bottom: 12.3 / 2011
  27564. }
  27565. },
  27566. },
  27567. [
  27568. {
  27569. name: "Normal",
  27570. height: math.unit(5, "feet"),
  27571. default: true
  27572. },
  27573. {
  27574. name: "Megamacro",
  27575. height: math.unit(10, "miles"),
  27576. },
  27577. ]
  27578. ))
  27579. characterMakers.push(() => makeCharacter(
  27580. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27581. {
  27582. front: {
  27583. height: math.unit(7 + 2 / 12, "feet"),
  27584. weight: math.unit(200, "lb"),
  27585. name: "Front",
  27586. image: {
  27587. source: "./media/characters/angel/front.svg",
  27588. extra: 1830 / 1737,
  27589. bottom: 22.6 / 1854,
  27590. }
  27591. },
  27592. },
  27593. [
  27594. {
  27595. name: "Normal",
  27596. height: math.unit(7 + 2 / 12, "feet"),
  27597. default: true
  27598. },
  27599. {
  27600. name: "Macro",
  27601. height: math.unit(1000, "feet")
  27602. },
  27603. {
  27604. name: "Megamacro",
  27605. height: math.unit(2, "miles")
  27606. },
  27607. {
  27608. name: "Gigamacro",
  27609. height: math.unit(20, "earths")
  27610. },
  27611. ]
  27612. ))
  27613. characterMakers.push(() => makeCharacter(
  27614. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27615. {
  27616. front: {
  27617. height: math.unit(5, "feet"),
  27618. weight: math.unit(180, "lb"),
  27619. name: "Front",
  27620. image: {
  27621. source: "./media/characters/mekana/front.svg",
  27622. extra: 1671 / 1605,
  27623. bottom: 3.5 / 1691
  27624. }
  27625. },
  27626. side: {
  27627. height: math.unit(5, "feet"),
  27628. weight: math.unit(180, "lb"),
  27629. name: "Side",
  27630. image: {
  27631. source: "./media/characters/mekana/side.svg",
  27632. extra: 1671 / 1605,
  27633. bottom: 3.5 / 1691
  27634. }
  27635. },
  27636. back: {
  27637. height: math.unit(5, "feet"),
  27638. weight: math.unit(180, "lb"),
  27639. name: "Back",
  27640. image: {
  27641. source: "./media/characters/mekana/back.svg",
  27642. extra: 1671 / 1605,
  27643. bottom: 3.5 / 1691
  27644. }
  27645. },
  27646. },
  27647. [
  27648. {
  27649. name: "Normal",
  27650. height: math.unit(5, "feet"),
  27651. default: true
  27652. },
  27653. ]
  27654. ))
  27655. characterMakers.push(() => makeCharacter(
  27656. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27657. {
  27658. front: {
  27659. height: math.unit(4 + 6 / 12, "feet"),
  27660. weight: math.unit(80, "lb"),
  27661. name: "Front",
  27662. image: {
  27663. source: "./media/characters/pixie/front.svg",
  27664. extra: 1924 / 1825,
  27665. bottom: 22.4 / 1946
  27666. }
  27667. },
  27668. },
  27669. [
  27670. {
  27671. name: "Normal",
  27672. height: math.unit(4 + 6 / 12, "feet"),
  27673. default: true
  27674. },
  27675. {
  27676. name: "Macro",
  27677. height: math.unit(40, "feet")
  27678. },
  27679. ]
  27680. ))
  27681. characterMakers.push(() => makeCharacter(
  27682. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27683. {
  27684. front: {
  27685. height: math.unit(2.1, "meters"),
  27686. weight: math.unit(200, "lb"),
  27687. name: "Front",
  27688. image: {
  27689. source: "./media/characters/the-lascivious/front.svg",
  27690. extra: 1 / 0.893,
  27691. bottom: 3.5 / 573.7
  27692. }
  27693. },
  27694. },
  27695. [
  27696. {
  27697. name: "Human Scale",
  27698. height: math.unit(2.1, "meters")
  27699. },
  27700. {
  27701. name: "Wolxi Scale",
  27702. height: math.unit(46.2, "m"),
  27703. default: true
  27704. },
  27705. {
  27706. name: "Boinker of Buildings",
  27707. height: math.unit(10, "km")
  27708. },
  27709. {
  27710. name: "Shagger of Skyscrapers",
  27711. height: math.unit(40, "km")
  27712. },
  27713. {
  27714. name: "Banger of Boroughs",
  27715. height: math.unit(4000, "km")
  27716. },
  27717. {
  27718. name: "Screwer of States",
  27719. height: math.unit(100000, "km")
  27720. },
  27721. {
  27722. name: "Pounder of Planets",
  27723. height: math.unit(2000000, "km")
  27724. },
  27725. ]
  27726. ))
  27727. characterMakers.push(() => makeCharacter(
  27728. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27729. {
  27730. front: {
  27731. height: math.unit(6, "feet"),
  27732. weight: math.unit(150, "lb"),
  27733. name: "Front",
  27734. image: {
  27735. source: "./media/characters/aj/front.svg",
  27736. extra: 2039 / 1562,
  27737. bottom: 40 / 2079
  27738. }
  27739. },
  27740. },
  27741. [
  27742. {
  27743. name: "Normal",
  27744. height: math.unit(11 + 6 / 12, "feet"),
  27745. default: true
  27746. },
  27747. {
  27748. name: "Megamacro",
  27749. height: math.unit(60, "megameters")
  27750. },
  27751. ]
  27752. ))
  27753. characterMakers.push(() => makeCharacter(
  27754. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27755. {
  27756. side: {
  27757. height: math.unit(31 + 8 / 12, "feet"),
  27758. weight: math.unit(75000, "kg"),
  27759. name: "Side",
  27760. image: {
  27761. source: "./media/characters/koros/side.svg",
  27762. extra: 1442 / 1297,
  27763. bottom: 122.7 / 1562
  27764. }
  27765. },
  27766. dicksKingsCrown: {
  27767. height: math.unit(6, "feet"),
  27768. name: "Dicks (King's Crown)",
  27769. image: {
  27770. source: "./media/characters/koros/dicks-kings-crown.svg"
  27771. }
  27772. },
  27773. dicksTailSet: {
  27774. height: math.unit(3, "feet"),
  27775. name: "Dicks (Tail Set)",
  27776. image: {
  27777. source: "./media/characters/koros/dicks-tail-set.svg"
  27778. }
  27779. },
  27780. dickCumming: {
  27781. height: math.unit(7.98, "feet"),
  27782. name: "Dick (Cumming)",
  27783. image: {
  27784. source: "./media/characters/koros/dick-cumming.svg"
  27785. }
  27786. },
  27787. dicksBack: {
  27788. height: math.unit(5.9, "feet"),
  27789. name: "Dicks (Back)",
  27790. image: {
  27791. source: "./media/characters/koros/dicks-back.svg"
  27792. }
  27793. },
  27794. dicksFront: {
  27795. height: math.unit(3.72, "feet"),
  27796. name: "Dicks (Front)",
  27797. image: {
  27798. source: "./media/characters/koros/dicks-front.svg"
  27799. }
  27800. },
  27801. dicksPeeking: {
  27802. height: math.unit(3.0, "feet"),
  27803. name: "Dicks (Peeking)",
  27804. image: {
  27805. source: "./media/characters/koros/dicks-peeking.svg"
  27806. }
  27807. },
  27808. eye: {
  27809. height: math.unit(1.7, "feet"),
  27810. name: "Eye",
  27811. image: {
  27812. source: "./media/characters/koros/eye.svg"
  27813. }
  27814. },
  27815. headFront: {
  27816. height: math.unit(11.69, "feet"),
  27817. name: "Head (Front)",
  27818. image: {
  27819. source: "./media/characters/koros/head-front.svg"
  27820. }
  27821. },
  27822. headSide: {
  27823. height: math.unit(14, "feet"),
  27824. name: "Head (Side)",
  27825. image: {
  27826. source: "./media/characters/koros/head-side.svg"
  27827. }
  27828. },
  27829. leg: {
  27830. height: math.unit(17, "feet"),
  27831. name: "Leg",
  27832. image: {
  27833. source: "./media/characters/koros/leg.svg"
  27834. }
  27835. },
  27836. mawSide: {
  27837. height: math.unit(12.8, "feet"),
  27838. name: "Maw (Side)",
  27839. image: {
  27840. source: "./media/characters/koros/maw-side.svg"
  27841. }
  27842. },
  27843. mawSpitting: {
  27844. height: math.unit(17, "feet"),
  27845. name: "Maw (Spitting)",
  27846. image: {
  27847. source: "./media/characters/koros/maw-spitting.svg"
  27848. }
  27849. },
  27850. slit: {
  27851. height: math.unit(2.8, "feet"),
  27852. name: "Slit",
  27853. image: {
  27854. source: "./media/characters/koros/slit.svg"
  27855. }
  27856. },
  27857. stomach: {
  27858. height: math.unit(6.8, "feet"),
  27859. preyCapacity: math.unit(20, "people"),
  27860. name: "Stomach",
  27861. image: {
  27862. source: "./media/characters/koros/stomach.svg"
  27863. }
  27864. },
  27865. wingspanBottom: {
  27866. height: math.unit(114, "feet"),
  27867. name: "Wingspan (Bottom)",
  27868. image: {
  27869. source: "./media/characters/koros/wingspan-bottom.svg"
  27870. }
  27871. },
  27872. wingspanTop: {
  27873. height: math.unit(104, "feet"),
  27874. name: "Wingspan (Top)",
  27875. image: {
  27876. source: "./media/characters/koros/wingspan-top.svg"
  27877. }
  27878. },
  27879. },
  27880. [
  27881. {
  27882. name: "Normal",
  27883. height: math.unit(31 + 8 / 12, "feet"),
  27884. default: true
  27885. },
  27886. ]
  27887. ))
  27888. characterMakers.push(() => makeCharacter(
  27889. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27890. {
  27891. front: {
  27892. height: math.unit(18 + 5 / 12, "feet"),
  27893. weight: math.unit(3750, "kg"),
  27894. name: "Front",
  27895. image: {
  27896. source: "./media/characters/vexx/front.svg",
  27897. extra: 426 / 396,
  27898. bottom: 31.5 / 458
  27899. }
  27900. },
  27901. maw: {
  27902. height: math.unit(6, "feet"),
  27903. name: "Maw",
  27904. image: {
  27905. source: "./media/characters/vexx/maw.svg"
  27906. }
  27907. },
  27908. },
  27909. [
  27910. {
  27911. name: "Normal",
  27912. height: math.unit(18 + 5 / 12, "feet"),
  27913. default: true
  27914. },
  27915. ]
  27916. ))
  27917. characterMakers.push(() => makeCharacter(
  27918. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27919. {
  27920. front: {
  27921. height: math.unit(17 + 6 / 12, "feet"),
  27922. weight: math.unit(150, "lb"),
  27923. name: "Front",
  27924. image: {
  27925. source: "./media/characters/baadra/front.svg",
  27926. extra: 1694/1553,
  27927. bottom: 179/1873
  27928. }
  27929. },
  27930. frontAlt: {
  27931. height: math.unit(17 + 6 / 12, "feet"),
  27932. weight: math.unit(150, "lb"),
  27933. name: "Front (Alt)",
  27934. image: {
  27935. source: "./media/characters/baadra/front-alt.svg",
  27936. extra: 3137 / 2890,
  27937. bottom: 168.4 / 3305
  27938. }
  27939. },
  27940. back: {
  27941. height: math.unit(17 + 6 / 12, "feet"),
  27942. weight: math.unit(150, "lb"),
  27943. name: "Back",
  27944. image: {
  27945. source: "./media/characters/baadra/back.svg",
  27946. extra: 3142 / 2890,
  27947. bottom: 220 / 3371
  27948. }
  27949. },
  27950. head: {
  27951. height: math.unit(5.45, "feet"),
  27952. name: "Head",
  27953. image: {
  27954. source: "./media/characters/baadra/head.svg"
  27955. }
  27956. },
  27957. headAngry: {
  27958. height: math.unit(4.95, "feet"),
  27959. name: "Head (Angry)",
  27960. image: {
  27961. source: "./media/characters/baadra/head-angry.svg"
  27962. }
  27963. },
  27964. headOpen: {
  27965. height: math.unit(6, "feet"),
  27966. name: "Head (Open)",
  27967. image: {
  27968. source: "./media/characters/baadra/head-open.svg"
  27969. }
  27970. },
  27971. },
  27972. [
  27973. {
  27974. name: "Normal",
  27975. height: math.unit(17 + 6 / 12, "feet"),
  27976. default: true
  27977. },
  27978. ]
  27979. ))
  27980. characterMakers.push(() => makeCharacter(
  27981. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27982. {
  27983. front: {
  27984. height: math.unit(7 + 3 / 12, "feet"),
  27985. weight: math.unit(180, "lb"),
  27986. name: "Front",
  27987. image: {
  27988. source: "./media/characters/juri/front.svg",
  27989. extra: 1401 / 1237,
  27990. bottom: 18.5 / 1418
  27991. }
  27992. },
  27993. side: {
  27994. height: math.unit(7 + 3 / 12, "feet"),
  27995. weight: math.unit(180, "lb"),
  27996. name: "Side",
  27997. image: {
  27998. source: "./media/characters/juri/side.svg",
  27999. extra: 1424 / 1242,
  28000. bottom: 18.5 / 1447
  28001. }
  28002. },
  28003. sitting: {
  28004. height: math.unit(6, "feet"),
  28005. weight: math.unit(180, "lb"),
  28006. name: "Sitting",
  28007. image: {
  28008. source: "./media/characters/juri/sitting.svg",
  28009. extra: 1270 / 1143,
  28010. bottom: 100 / 1343
  28011. }
  28012. },
  28013. back: {
  28014. height: math.unit(7 + 3 / 12, "feet"),
  28015. weight: math.unit(180, "lb"),
  28016. name: "Back",
  28017. image: {
  28018. source: "./media/characters/juri/back.svg",
  28019. extra: 1377 / 1240,
  28020. bottom: 23.7 / 1405
  28021. }
  28022. },
  28023. maw: {
  28024. height: math.unit(2.8, "feet"),
  28025. name: "Maw",
  28026. image: {
  28027. source: "./media/characters/juri/maw.svg"
  28028. }
  28029. },
  28030. stomach: {
  28031. height: math.unit(0.89, "feet"),
  28032. preyCapacity: math.unit(4, "liters"),
  28033. name: "Stomach",
  28034. image: {
  28035. source: "./media/characters/juri/stomach.svg"
  28036. }
  28037. },
  28038. },
  28039. [
  28040. {
  28041. name: "Normal",
  28042. height: math.unit(7 + 3 / 12, "feet"),
  28043. default: true
  28044. },
  28045. ]
  28046. ))
  28047. characterMakers.push(() => makeCharacter(
  28048. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28049. {
  28050. fox: {
  28051. height: math.unit(5 + 6 / 12, "feet"),
  28052. weight: math.unit(140, "lb"),
  28053. name: "Fox",
  28054. image: {
  28055. source: "./media/characters/maxene-sita/fox.svg",
  28056. extra: 146 / 138,
  28057. bottom: 2.1 / 148.19
  28058. }
  28059. },
  28060. foxLaying: {
  28061. height: math.unit(1.70, "feet"),
  28062. weight: math.unit(140, "lb"),
  28063. name: "Fox (Laying)",
  28064. image: {
  28065. source: "./media/characters/maxene-sita/fox-laying.svg",
  28066. extra: 910 / 572,
  28067. bottom: 71 / 981
  28068. }
  28069. },
  28070. kitsune: {
  28071. height: math.unit(10, "feet"),
  28072. weight: math.unit(800, "lb"),
  28073. name: "Kitsune",
  28074. image: {
  28075. source: "./media/characters/maxene-sita/kitsune.svg",
  28076. extra: 185 / 176,
  28077. bottom: 4.7 / 189.9
  28078. }
  28079. },
  28080. hellhound: {
  28081. height: math.unit(10, "feet"),
  28082. weight: math.unit(700, "lb"),
  28083. name: "Hellhound",
  28084. image: {
  28085. source: "./media/characters/maxene-sita/hellhound.svg",
  28086. extra: 1600 / 1545,
  28087. bottom: 81 / 1681
  28088. }
  28089. },
  28090. },
  28091. [
  28092. {
  28093. name: "Normal",
  28094. height: math.unit(5 + 6 / 12, "feet"),
  28095. default: true
  28096. },
  28097. ]
  28098. ))
  28099. characterMakers.push(() => makeCharacter(
  28100. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28101. {
  28102. front: {
  28103. height: math.unit(3 + 4 / 12, "feet"),
  28104. weight: math.unit(70, "lb"),
  28105. name: "Front",
  28106. image: {
  28107. source: "./media/characters/maia/front.svg",
  28108. extra: 227 / 219.5,
  28109. bottom: 40 / 267
  28110. }
  28111. },
  28112. back: {
  28113. height: math.unit(3 + 4 / 12, "feet"),
  28114. weight: math.unit(70, "lb"),
  28115. name: "Back",
  28116. image: {
  28117. source: "./media/characters/maia/back.svg",
  28118. extra: 237 / 225
  28119. }
  28120. },
  28121. },
  28122. [
  28123. {
  28124. name: "Normal",
  28125. height: math.unit(3 + 4 / 12, "feet"),
  28126. default: true
  28127. },
  28128. ]
  28129. ))
  28130. characterMakers.push(() => makeCharacter(
  28131. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28132. {
  28133. front: {
  28134. height: math.unit(5 + 10 / 12, "feet"),
  28135. weight: math.unit(197, "lb"),
  28136. name: "Front",
  28137. image: {
  28138. source: "./media/characters/jabaro/front.svg",
  28139. extra: 225 / 216,
  28140. bottom: 5.06 / 230
  28141. }
  28142. },
  28143. back: {
  28144. height: math.unit(5 + 10 / 12, "feet"),
  28145. weight: math.unit(197, "lb"),
  28146. name: "Back",
  28147. image: {
  28148. source: "./media/characters/jabaro/back.svg",
  28149. extra: 225 / 219,
  28150. bottom: 1.9 / 227
  28151. }
  28152. },
  28153. },
  28154. [
  28155. {
  28156. name: "Normal",
  28157. height: math.unit(5 + 10 / 12, "feet"),
  28158. default: true
  28159. },
  28160. ]
  28161. ))
  28162. characterMakers.push(() => makeCharacter(
  28163. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28164. {
  28165. front: {
  28166. height: math.unit(5 + 8 / 12, "feet"),
  28167. weight: math.unit(139, "lb"),
  28168. name: "Front",
  28169. image: {
  28170. source: "./media/characters/risa/front.svg",
  28171. extra: 270 / 260,
  28172. bottom: 11.2 / 282
  28173. }
  28174. },
  28175. back: {
  28176. height: math.unit(5 + 8 / 12, "feet"),
  28177. weight: math.unit(139, "lb"),
  28178. name: "Back",
  28179. image: {
  28180. source: "./media/characters/risa/back.svg",
  28181. extra: 264 / 255,
  28182. bottom: 4 / 268
  28183. }
  28184. },
  28185. },
  28186. [
  28187. {
  28188. name: "Normal",
  28189. height: math.unit(5 + 8 / 12, "feet"),
  28190. default: true
  28191. },
  28192. ]
  28193. ))
  28194. characterMakers.push(() => makeCharacter(
  28195. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28196. {
  28197. front: {
  28198. height: math.unit(2 + 11 / 12, "feet"),
  28199. weight: math.unit(30, "lb"),
  28200. name: "Front",
  28201. image: {
  28202. source: "./media/characters/weatley/front.svg",
  28203. bottom: 10.7 / 414,
  28204. extra: 403.5 / 362
  28205. }
  28206. },
  28207. back: {
  28208. height: math.unit(2 + 11 / 12, "feet"),
  28209. weight: math.unit(30, "lb"),
  28210. name: "Back",
  28211. image: {
  28212. source: "./media/characters/weatley/back.svg",
  28213. bottom: 10.7 / 414,
  28214. extra: 403.5 / 362
  28215. }
  28216. },
  28217. },
  28218. [
  28219. {
  28220. name: "Normal",
  28221. height: math.unit(2 + 11 / 12, "feet"),
  28222. default: true
  28223. },
  28224. ]
  28225. ))
  28226. characterMakers.push(() => makeCharacter(
  28227. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28228. {
  28229. front: {
  28230. height: math.unit(5 + 2 / 12, "feet"),
  28231. weight: math.unit(50, "kg"),
  28232. name: "Front",
  28233. image: {
  28234. source: "./media/characters/mercury-crescent/front.svg",
  28235. extra: 1088 / 1033,
  28236. bottom: 18.9 / 1109
  28237. }
  28238. },
  28239. },
  28240. [
  28241. {
  28242. name: "Normal",
  28243. height: math.unit(5 + 2 / 12, "feet"),
  28244. default: true
  28245. },
  28246. ]
  28247. ))
  28248. characterMakers.push(() => makeCharacter(
  28249. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28250. {
  28251. front: {
  28252. height: math.unit(2, "feet"),
  28253. weight: math.unit(15, "kg"),
  28254. name: "Front",
  28255. image: {
  28256. source: "./media/characters/diamond-jones/front.svg",
  28257. extra: 727/723,
  28258. bottom: 46/773
  28259. }
  28260. },
  28261. },
  28262. [
  28263. {
  28264. name: "Normal",
  28265. height: math.unit(2, "feet"),
  28266. default: true
  28267. },
  28268. ]
  28269. ))
  28270. characterMakers.push(() => makeCharacter(
  28271. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28272. {
  28273. front: {
  28274. height: math.unit(3, "feet"),
  28275. weight: math.unit(30, "kg"),
  28276. name: "Front",
  28277. image: {
  28278. source: "./media/characters/sweet-bit/front.svg",
  28279. extra: 675 / 567,
  28280. bottom: 27.7 / 703
  28281. }
  28282. },
  28283. },
  28284. [
  28285. {
  28286. name: "Normal",
  28287. height: math.unit(3, "feet"),
  28288. default: true
  28289. },
  28290. ]
  28291. ))
  28292. characterMakers.push(() => makeCharacter(
  28293. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28294. {
  28295. side: {
  28296. height: math.unit(9.178, "feet"),
  28297. weight: math.unit(500, "lb"),
  28298. name: "Side",
  28299. image: {
  28300. source: "./media/characters/umbrazen/side.svg",
  28301. extra: 1730 / 1473,
  28302. bottom: 34.6 / 1765
  28303. }
  28304. },
  28305. },
  28306. [
  28307. {
  28308. name: "Normal",
  28309. height: math.unit(9.178, "feet"),
  28310. default: true
  28311. },
  28312. ]
  28313. ))
  28314. characterMakers.push(() => makeCharacter(
  28315. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28316. {
  28317. front: {
  28318. height: math.unit(10, "feet"),
  28319. weight: math.unit(750, "lb"),
  28320. name: "Front",
  28321. image: {
  28322. source: "./media/characters/arlist/front.svg",
  28323. extra: 961 / 778,
  28324. bottom: 6.2 / 986
  28325. }
  28326. },
  28327. },
  28328. [
  28329. {
  28330. name: "Normal",
  28331. height: math.unit(10, "feet"),
  28332. default: true
  28333. },
  28334. ]
  28335. ))
  28336. characterMakers.push(() => makeCharacter(
  28337. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28338. {
  28339. front: {
  28340. height: math.unit(5 + 1 / 12, "feet"),
  28341. weight: math.unit(110, "lb"),
  28342. name: "Front",
  28343. image: {
  28344. source: "./media/characters/aradel/front.svg",
  28345. extra: 324 / 303,
  28346. bottom: 3.6 / 329.4
  28347. }
  28348. },
  28349. },
  28350. [
  28351. {
  28352. name: "Normal",
  28353. height: math.unit(5 + 1 / 12, "feet"),
  28354. default: true
  28355. },
  28356. ]
  28357. ))
  28358. characterMakers.push(() => makeCharacter(
  28359. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28360. {
  28361. dressed: {
  28362. height: math.unit(3 + 8 / 12, "feet"),
  28363. weight: math.unit(50, "lb"),
  28364. name: "Dressed",
  28365. image: {
  28366. source: "./media/characters/serryn/dressed.svg",
  28367. extra: 1792 / 1656,
  28368. bottom: 43.5 / 1840
  28369. }
  28370. },
  28371. nude: {
  28372. height: math.unit(3 + 8 / 12, "feet"),
  28373. weight: math.unit(50, "lb"),
  28374. name: "Nude",
  28375. image: {
  28376. source: "./media/characters/serryn/nude.svg",
  28377. extra: 1792 / 1656,
  28378. bottom: 43.5 / 1840
  28379. }
  28380. },
  28381. },
  28382. [
  28383. {
  28384. name: "Normal",
  28385. height: math.unit(3 + 8 / 12, "feet"),
  28386. default: true
  28387. },
  28388. ]
  28389. ))
  28390. characterMakers.push(() => makeCharacter(
  28391. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28392. {
  28393. front: {
  28394. height: math.unit(7 + 10 / 12, "feet"),
  28395. weight: math.unit(255, "lb"),
  28396. name: "Front",
  28397. image: {
  28398. source: "./media/characters/xavier-thyme/front.svg",
  28399. extra: 3733 / 3642,
  28400. bottom: 131 / 3869
  28401. }
  28402. },
  28403. frontRaven: {
  28404. height: math.unit(7 + 10 / 12, "feet"),
  28405. weight: math.unit(255, "lb"),
  28406. name: "Front (Raven)",
  28407. image: {
  28408. source: "./media/characters/xavier-thyme/front-raven.svg",
  28409. extra: 4385 / 3642,
  28410. bottom: 131 / 4517
  28411. }
  28412. },
  28413. },
  28414. [
  28415. {
  28416. name: "Normal",
  28417. height: math.unit(7 + 10 / 12, "feet"),
  28418. default: true
  28419. },
  28420. ]
  28421. ))
  28422. characterMakers.push(() => makeCharacter(
  28423. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28424. {
  28425. front: {
  28426. height: math.unit(1.6, "m"),
  28427. weight: math.unit(50, "kg"),
  28428. name: "Front",
  28429. image: {
  28430. source: "./media/characters/kiki/front.svg",
  28431. extra: 4682 / 3610,
  28432. bottom: 115 / 4777
  28433. }
  28434. },
  28435. },
  28436. [
  28437. {
  28438. name: "Normal",
  28439. height: math.unit(1.6, "meters"),
  28440. default: true
  28441. },
  28442. ]
  28443. ))
  28444. characterMakers.push(() => makeCharacter(
  28445. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28446. {
  28447. front: {
  28448. height: math.unit(50, "m"),
  28449. weight: math.unit(500, "tonnes"),
  28450. name: "Front",
  28451. image: {
  28452. source: "./media/characters/ryoko/front.svg",
  28453. extra: 4632 / 3926,
  28454. bottom: 193 / 4823
  28455. }
  28456. },
  28457. },
  28458. [
  28459. {
  28460. name: "Normal",
  28461. height: math.unit(50, "meters"),
  28462. default: true
  28463. },
  28464. ]
  28465. ))
  28466. characterMakers.push(() => makeCharacter(
  28467. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28468. {
  28469. front: {
  28470. height: math.unit(30, "m"),
  28471. weight: math.unit(22, "tonnes"),
  28472. name: "Front",
  28473. image: {
  28474. source: "./media/characters/elio/front.svg",
  28475. extra: 4582 / 3720,
  28476. bottom: 236 / 4828
  28477. }
  28478. },
  28479. },
  28480. [
  28481. {
  28482. name: "Normal",
  28483. height: math.unit(30, "meters"),
  28484. default: true
  28485. },
  28486. ]
  28487. ))
  28488. characterMakers.push(() => makeCharacter(
  28489. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28490. {
  28491. front: {
  28492. height: math.unit(6 + 3 / 12, "feet"),
  28493. weight: math.unit(120, "lb"),
  28494. name: "Front",
  28495. image: {
  28496. source: "./media/characters/azura/front.svg",
  28497. extra: 1149 / 1135,
  28498. bottom: 45 / 1194
  28499. }
  28500. },
  28501. frontClothed: {
  28502. height: math.unit(6 + 3 / 12, "feet"),
  28503. weight: math.unit(120, "lb"),
  28504. name: "Front (Clothed)",
  28505. image: {
  28506. source: "./media/characters/azura/front-clothed.svg",
  28507. extra: 1149 / 1135,
  28508. bottom: 45 / 1194
  28509. }
  28510. },
  28511. },
  28512. [
  28513. {
  28514. name: "Normal",
  28515. height: math.unit(6 + 3 / 12, "feet"),
  28516. default: true
  28517. },
  28518. {
  28519. name: "Macro",
  28520. height: math.unit(20 + 6 / 12, "feet")
  28521. },
  28522. {
  28523. name: "Megamacro",
  28524. height: math.unit(12, "miles")
  28525. },
  28526. {
  28527. name: "Gigamacro",
  28528. height: math.unit(10000, "miles")
  28529. },
  28530. {
  28531. name: "Teramacro",
  28532. height: math.unit(900000, "miles")
  28533. },
  28534. ]
  28535. ))
  28536. characterMakers.push(() => makeCharacter(
  28537. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28538. {
  28539. front: {
  28540. height: math.unit(12, "feet"),
  28541. weight: math.unit(1, "ton"),
  28542. capacity: math.unit(660000, "gallons"),
  28543. name: "Front",
  28544. image: {
  28545. source: "./media/characters/zeus/front.svg",
  28546. extra: 5005 / 4717,
  28547. bottom: 363 / 5388
  28548. }
  28549. },
  28550. },
  28551. [
  28552. {
  28553. name: "Normal",
  28554. height: math.unit(12, "feet")
  28555. },
  28556. {
  28557. name: "Preferred Size",
  28558. height: math.unit(0.5, "miles"),
  28559. default: true
  28560. },
  28561. {
  28562. name: "Giga Horse",
  28563. height: math.unit(300, "miles")
  28564. },
  28565. {
  28566. name: "Riding Planets",
  28567. height: math.unit(30, "megameters")
  28568. },
  28569. {
  28570. name: "Cosmic Giant",
  28571. height: math.unit(3, "zettameters")
  28572. },
  28573. {
  28574. name: "Breeding God",
  28575. height: math.unit(9.92e22, "yottameters")
  28576. },
  28577. ]
  28578. ))
  28579. characterMakers.push(() => makeCharacter(
  28580. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28581. {
  28582. side: {
  28583. height: math.unit(9, "feet"),
  28584. weight: math.unit(1500, "kg"),
  28585. name: "Side",
  28586. image: {
  28587. source: "./media/characters/fang/side.svg",
  28588. extra: 924 / 866,
  28589. bottom: 47.5 / 972.3
  28590. }
  28591. },
  28592. },
  28593. [
  28594. {
  28595. name: "Normal",
  28596. height: math.unit(9, "feet"),
  28597. default: true
  28598. },
  28599. {
  28600. name: "Macro",
  28601. height: math.unit(75 + 6 / 12, "feet")
  28602. },
  28603. {
  28604. name: "Teramacro",
  28605. height: math.unit(50000, "miles")
  28606. },
  28607. ]
  28608. ))
  28609. characterMakers.push(() => makeCharacter(
  28610. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28611. {
  28612. front: {
  28613. height: math.unit(10, "feet"),
  28614. weight: math.unit(2, "tons"),
  28615. name: "Front",
  28616. image: {
  28617. source: "./media/characters/rekhit/front.svg",
  28618. extra: 2796 / 2590,
  28619. bottom: 225 / 3022
  28620. }
  28621. },
  28622. },
  28623. [
  28624. {
  28625. name: "Normal",
  28626. height: math.unit(10, "feet"),
  28627. default: true
  28628. },
  28629. {
  28630. name: "Macro",
  28631. height: math.unit(500, "feet")
  28632. },
  28633. ]
  28634. ))
  28635. characterMakers.push(() => makeCharacter(
  28636. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28637. {
  28638. front: {
  28639. height: math.unit(7 + 6.451 / 12, "feet"),
  28640. weight: math.unit(310, "lb"),
  28641. name: "Front",
  28642. image: {
  28643. source: "./media/characters/dahlia-verrick/front.svg",
  28644. extra: 1488 / 1365,
  28645. bottom: 6.2 / 1495
  28646. }
  28647. },
  28648. back: {
  28649. height: math.unit(7 + 6.451 / 12, "feet"),
  28650. weight: math.unit(310, "lb"),
  28651. name: "Back",
  28652. image: {
  28653. source: "./media/characters/dahlia-verrick/back.svg",
  28654. extra: 1472 / 1351,
  28655. bottom: 5.28 / 1477
  28656. }
  28657. },
  28658. frontBusiness: {
  28659. height: math.unit(7 + 6.451 / 12, "feet"),
  28660. weight: math.unit(200, "lb"),
  28661. name: "Front (Business)",
  28662. image: {
  28663. source: "./media/characters/dahlia-verrick/front-business.svg",
  28664. extra: 1478 / 1381,
  28665. bottom: 5.5 / 1484
  28666. }
  28667. },
  28668. frontCasual: {
  28669. height: math.unit(7 + 6.451 / 12, "feet"),
  28670. weight: math.unit(200, "lb"),
  28671. name: "Front (Casual)",
  28672. image: {
  28673. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28674. extra: 1478 / 1381,
  28675. bottom: 5.5 / 1484
  28676. }
  28677. },
  28678. },
  28679. [
  28680. {
  28681. name: "Travel-Sized",
  28682. height: math.unit(7.45, "inches")
  28683. },
  28684. {
  28685. name: "Normal",
  28686. height: math.unit(7 + 6.451 / 12, "feet"),
  28687. default: true
  28688. },
  28689. {
  28690. name: "Hitting the Town",
  28691. height: math.unit(37 + 8 / 12, "feet")
  28692. },
  28693. {
  28694. name: "Stomp in the Suburbs",
  28695. height: math.unit(964 + 9.728 / 12, "feet")
  28696. },
  28697. {
  28698. name: "Sit on the City",
  28699. height: math.unit(61747 + 10.592 / 12, "feet")
  28700. },
  28701. {
  28702. name: "Glomp the Globe",
  28703. height: math.unit(252919327 + 4.832 / 12, "feet")
  28704. },
  28705. ]
  28706. ))
  28707. characterMakers.push(() => makeCharacter(
  28708. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28709. {
  28710. front: {
  28711. height: math.unit(6 + 4 / 12, "feet"),
  28712. weight: math.unit(320, "lb"),
  28713. name: "Front",
  28714. image: {
  28715. source: "./media/characters/balina-mahigan/front.svg",
  28716. extra: 447 / 428,
  28717. bottom: 18 / 466
  28718. }
  28719. },
  28720. back: {
  28721. height: math.unit(6 + 4 / 12, "feet"),
  28722. weight: math.unit(320, "lb"),
  28723. name: "Back",
  28724. image: {
  28725. source: "./media/characters/balina-mahigan/back.svg",
  28726. extra: 445 / 428,
  28727. bottom: 4.07 / 448
  28728. }
  28729. },
  28730. arm: {
  28731. height: math.unit(1.88, "feet"),
  28732. name: "Arm",
  28733. image: {
  28734. source: "./media/characters/balina-mahigan/arm.svg"
  28735. }
  28736. },
  28737. backPort: {
  28738. height: math.unit(0.685, "feet"),
  28739. name: "Back Port",
  28740. image: {
  28741. source: "./media/characters/balina-mahigan/back-port.svg"
  28742. }
  28743. },
  28744. hoofpaw: {
  28745. height: math.unit(1.41, "feet"),
  28746. name: "Hoofpaw",
  28747. image: {
  28748. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28749. }
  28750. },
  28751. leftHandBack: {
  28752. height: math.unit(0.938, "feet"),
  28753. name: "Left Hand (Back)",
  28754. image: {
  28755. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28756. }
  28757. },
  28758. leftHandFront: {
  28759. height: math.unit(0.938, "feet"),
  28760. name: "Left Hand (Front)",
  28761. image: {
  28762. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28763. }
  28764. },
  28765. rightHandBack: {
  28766. height: math.unit(0.95, "feet"),
  28767. name: "Right Hand (Back)",
  28768. image: {
  28769. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28770. }
  28771. },
  28772. rightHandFront: {
  28773. height: math.unit(0.95, "feet"),
  28774. name: "Right Hand (Front)",
  28775. image: {
  28776. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28777. }
  28778. },
  28779. },
  28780. [
  28781. {
  28782. name: "Normal",
  28783. height: math.unit(6 + 4 / 12, "feet"),
  28784. default: true
  28785. },
  28786. ]
  28787. ))
  28788. characterMakers.push(() => makeCharacter(
  28789. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28790. {
  28791. front: {
  28792. height: math.unit(6, "feet"),
  28793. weight: math.unit(320, "lb"),
  28794. name: "Front",
  28795. image: {
  28796. source: "./media/characters/balina-mejeri/front.svg",
  28797. extra: 517 / 488,
  28798. bottom: 44.2 / 561
  28799. }
  28800. },
  28801. },
  28802. [
  28803. {
  28804. name: "Normal",
  28805. height: math.unit(6 + 4 / 12, "feet")
  28806. },
  28807. {
  28808. name: "Business",
  28809. height: math.unit(155, "feet"),
  28810. default: true
  28811. },
  28812. ]
  28813. ))
  28814. characterMakers.push(() => makeCharacter(
  28815. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28816. {
  28817. kneeling: {
  28818. height: math.unit(6 + 4 / 12, "feet"),
  28819. weight: math.unit(300 * 20, "lb"),
  28820. name: "Kneeling",
  28821. image: {
  28822. source: "./media/characters/balbarian/kneeling.svg",
  28823. extra: 922 / 862,
  28824. bottom: 42.4 / 965
  28825. }
  28826. },
  28827. },
  28828. [
  28829. {
  28830. name: "Normal",
  28831. height: math.unit(6 + 4 / 12, "feet")
  28832. },
  28833. {
  28834. name: "Treasured",
  28835. height: math.unit(18 + 9 / 12, "feet"),
  28836. default: true
  28837. },
  28838. {
  28839. name: "Macro",
  28840. height: math.unit(900, "feet")
  28841. },
  28842. ]
  28843. ))
  28844. characterMakers.push(() => makeCharacter(
  28845. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28846. {
  28847. front: {
  28848. height: math.unit(6 + 4 / 12, "feet"),
  28849. weight: math.unit(325, "lb"),
  28850. name: "Front",
  28851. image: {
  28852. source: "./media/characters/balina-amarini/front.svg",
  28853. extra: 415 / 403,
  28854. bottom: 19 / 433.4
  28855. }
  28856. },
  28857. back: {
  28858. height: math.unit(6 + 4 / 12, "feet"),
  28859. weight: math.unit(325, "lb"),
  28860. name: "Back",
  28861. image: {
  28862. source: "./media/characters/balina-amarini/back.svg",
  28863. extra: 415 / 403,
  28864. bottom: 13.5 / 432
  28865. }
  28866. },
  28867. overdrive: {
  28868. height: math.unit(6 + 4 / 12, "feet"),
  28869. weight: math.unit(400, "lb"),
  28870. name: "Overdrive",
  28871. image: {
  28872. source: "./media/characters/balina-amarini/overdrive.svg",
  28873. extra: 269 / 259,
  28874. bottom: 12 / 282
  28875. }
  28876. },
  28877. },
  28878. [
  28879. {
  28880. name: "Boom",
  28881. height: math.unit(9 + 10 / 12, "feet"),
  28882. default: true
  28883. },
  28884. {
  28885. name: "Macro",
  28886. height: math.unit(280, "feet")
  28887. },
  28888. ]
  28889. ))
  28890. characterMakers.push(() => makeCharacter(
  28891. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28892. {
  28893. goddess: {
  28894. height: math.unit(600, "feet"),
  28895. weight: math.unit(2000000, "tons"),
  28896. name: "Goddess",
  28897. image: {
  28898. source: "./media/characters/lady-kubwa/goddess.svg",
  28899. extra: 1240.5 / 1223,
  28900. bottom: 22 / 1263
  28901. }
  28902. },
  28903. goddesser: {
  28904. height: math.unit(900, "feet"),
  28905. weight: math.unit(20000000, "lb"),
  28906. name: "Goddess-er",
  28907. image: {
  28908. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28909. extra: 899 / 888,
  28910. bottom: 12.6 / 912
  28911. }
  28912. },
  28913. },
  28914. [
  28915. {
  28916. name: "Macro",
  28917. height: math.unit(600, "feet"),
  28918. default: true
  28919. },
  28920. {
  28921. name: "Megamacro",
  28922. height: math.unit(250, "miles")
  28923. },
  28924. ]
  28925. ))
  28926. characterMakers.push(() => makeCharacter(
  28927. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28928. {
  28929. front: {
  28930. height: math.unit(7 + 7 / 12, "feet"),
  28931. weight: math.unit(250, "lb"),
  28932. name: "Front",
  28933. image: {
  28934. source: "./media/characters/tala-grovehorn/front.svg",
  28935. extra: 2636 / 2525,
  28936. bottom: 147 / 2781
  28937. }
  28938. },
  28939. back: {
  28940. height: math.unit(7 + 7 / 12, "feet"),
  28941. weight: math.unit(250, "lb"),
  28942. name: "Back",
  28943. image: {
  28944. source: "./media/characters/tala-grovehorn/back.svg",
  28945. extra: 2635 / 2539,
  28946. bottom: 100 / 2732.8
  28947. }
  28948. },
  28949. mouth: {
  28950. height: math.unit(1.15, "feet"),
  28951. name: "Mouth",
  28952. image: {
  28953. source: "./media/characters/tala-grovehorn/mouth.svg"
  28954. }
  28955. },
  28956. dick: {
  28957. height: math.unit(2.36, "feet"),
  28958. name: "Dick",
  28959. image: {
  28960. source: "./media/characters/tala-grovehorn/dick.svg"
  28961. }
  28962. },
  28963. slit: {
  28964. height: math.unit(0.61, "feet"),
  28965. name: "Slit",
  28966. image: {
  28967. source: "./media/characters/tala-grovehorn/slit.svg"
  28968. }
  28969. },
  28970. },
  28971. [
  28972. ]
  28973. ))
  28974. characterMakers.push(() => makeCharacter(
  28975. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28976. {
  28977. front: {
  28978. height: math.unit(7 + 7 / 12, "feet"),
  28979. weight: math.unit(225, "lb"),
  28980. name: "Front",
  28981. image: {
  28982. source: "./media/characters/epona/front.svg",
  28983. extra: 2445 / 2290,
  28984. bottom: 251 / 2696
  28985. }
  28986. },
  28987. back: {
  28988. height: math.unit(7 + 7 / 12, "feet"),
  28989. weight: math.unit(225, "lb"),
  28990. name: "Back",
  28991. image: {
  28992. source: "./media/characters/epona/back.svg",
  28993. extra: 2546 / 2408,
  28994. bottom: 44 / 2589
  28995. }
  28996. },
  28997. genitals: {
  28998. height: math.unit(1.5, "feet"),
  28999. name: "Genitals",
  29000. image: {
  29001. source: "./media/characters/epona/genitals.svg"
  29002. }
  29003. },
  29004. },
  29005. [
  29006. {
  29007. name: "Normal",
  29008. height: math.unit(7 + 7 / 12, "feet"),
  29009. default: true
  29010. },
  29011. ]
  29012. ))
  29013. characterMakers.push(() => makeCharacter(
  29014. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29015. {
  29016. front: {
  29017. height: math.unit(7, "feet"),
  29018. weight: math.unit(518, "lb"),
  29019. name: "Front",
  29020. image: {
  29021. source: "./media/characters/avia-bloodbourn/front.svg",
  29022. extra: 1466 / 1350,
  29023. bottom: 65 / 1527
  29024. }
  29025. },
  29026. },
  29027. [
  29028. ]
  29029. ))
  29030. characterMakers.push(() => makeCharacter(
  29031. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29032. {
  29033. front: {
  29034. height: math.unit(9.35, "feet"),
  29035. weight: math.unit(600, "lb"),
  29036. name: "Front",
  29037. image: {
  29038. source: "./media/characters/amera/front.svg",
  29039. extra: 891 / 818,
  29040. bottom: 30 / 922.7
  29041. }
  29042. },
  29043. back: {
  29044. height: math.unit(9.35, "feet"),
  29045. weight: math.unit(600, "lb"),
  29046. name: "Back",
  29047. image: {
  29048. source: "./media/characters/amera/back.svg",
  29049. extra: 876 / 824,
  29050. bottom: 6.8 / 884
  29051. }
  29052. },
  29053. dick: {
  29054. height: math.unit(2.14, "feet"),
  29055. name: "Dick",
  29056. image: {
  29057. source: "./media/characters/amera/dick.svg"
  29058. }
  29059. },
  29060. },
  29061. [
  29062. {
  29063. name: "Normal",
  29064. height: math.unit(9.35, "feet"),
  29065. default: true
  29066. },
  29067. ]
  29068. ))
  29069. characterMakers.push(() => makeCharacter(
  29070. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29071. {
  29072. kneeling: {
  29073. height: math.unit(3 + 4 / 12, "feet"),
  29074. weight: math.unit(90, "lb"),
  29075. name: "Kneeling",
  29076. image: {
  29077. source: "./media/characters/rosewen/kneeling.svg",
  29078. extra: 1835 / 1571,
  29079. bottom: 27.7 / 1862
  29080. }
  29081. },
  29082. },
  29083. [
  29084. {
  29085. name: "Normal",
  29086. height: math.unit(3 + 4 / 12, "feet"),
  29087. default: true
  29088. },
  29089. ]
  29090. ))
  29091. characterMakers.push(() => makeCharacter(
  29092. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29093. {
  29094. front: {
  29095. height: math.unit(5 + 10 / 12, "feet"),
  29096. weight: math.unit(200, "lb"),
  29097. name: "Front",
  29098. image: {
  29099. source: "./media/characters/sabah/front.svg",
  29100. extra: 849 / 763,
  29101. bottom: 33.9 / 881
  29102. }
  29103. },
  29104. },
  29105. [
  29106. {
  29107. name: "Normal",
  29108. height: math.unit(5 + 10 / 12, "feet"),
  29109. default: true
  29110. },
  29111. ]
  29112. ))
  29113. characterMakers.push(() => makeCharacter(
  29114. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29115. {
  29116. front: {
  29117. height: math.unit(3 + 5 / 12, "feet"),
  29118. weight: math.unit(40, "kg"),
  29119. name: "Front",
  29120. image: {
  29121. source: "./media/characters/purple-flame/front.svg",
  29122. extra: 1577 / 1412,
  29123. bottom: 97 / 1694
  29124. }
  29125. },
  29126. frontDressed: {
  29127. height: math.unit(3 + 5 / 12, "feet"),
  29128. weight: math.unit(40, "kg"),
  29129. name: "Front (Dressed)",
  29130. image: {
  29131. source: "./media/characters/purple-flame/front-dressed.svg",
  29132. extra: 1577 / 1412,
  29133. bottom: 97 / 1694
  29134. }
  29135. },
  29136. headphones: {
  29137. height: math.unit(0.85, "feet"),
  29138. name: "Headphones",
  29139. image: {
  29140. source: "./media/characters/purple-flame/headphones.svg"
  29141. }
  29142. },
  29143. },
  29144. [
  29145. {
  29146. name: "Really Small",
  29147. height: math.unit(5, "cm")
  29148. },
  29149. {
  29150. name: "Micro",
  29151. height: math.unit(1 + 5 / 12, "feet")
  29152. },
  29153. {
  29154. name: "Normal",
  29155. height: math.unit(3 + 5 / 12, "feet"),
  29156. default: true
  29157. },
  29158. {
  29159. name: "Minimacro",
  29160. height: math.unit(125, "feet")
  29161. },
  29162. {
  29163. name: "Macro",
  29164. height: math.unit(0.5, "miles")
  29165. },
  29166. {
  29167. name: "Megamacro",
  29168. height: math.unit(50, "miles")
  29169. },
  29170. {
  29171. name: "Gigantic",
  29172. height: math.unit(750, "miles")
  29173. },
  29174. {
  29175. name: "Planetary",
  29176. height: math.unit(15000, "miles")
  29177. },
  29178. ]
  29179. ))
  29180. characterMakers.push(() => makeCharacter(
  29181. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29182. {
  29183. front: {
  29184. height: math.unit(14, "feet"),
  29185. weight: math.unit(959, "lb"),
  29186. name: "Front",
  29187. image: {
  29188. source: "./media/characters/arsenal/front.svg",
  29189. extra: 2357 / 2157,
  29190. bottom: 93 / 2458
  29191. }
  29192. },
  29193. },
  29194. [
  29195. {
  29196. name: "Normal",
  29197. height: math.unit(14, "feet"),
  29198. default: true
  29199. },
  29200. ]
  29201. ))
  29202. characterMakers.push(() => makeCharacter(
  29203. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29204. {
  29205. front: {
  29206. height: math.unit(6, "feet"),
  29207. weight: math.unit(150, "lb"),
  29208. name: "Front",
  29209. image: {
  29210. source: "./media/characters/adira/front.svg",
  29211. extra: 1078 / 1029,
  29212. bottom: 87 / 1166
  29213. }
  29214. },
  29215. },
  29216. [
  29217. {
  29218. name: "Micro",
  29219. height: math.unit(4, "inches"),
  29220. default: true
  29221. },
  29222. {
  29223. name: "Macro",
  29224. height: math.unit(50, "feet")
  29225. },
  29226. ]
  29227. ))
  29228. characterMakers.push(() => makeCharacter(
  29229. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29230. {
  29231. front: {
  29232. height: math.unit(16, "feet"),
  29233. weight: math.unit(1000, "lb"),
  29234. name: "Front",
  29235. image: {
  29236. source: "./media/characters/grim/front.svg",
  29237. extra: 622 / 614,
  29238. bottom: 18.1 / 642
  29239. }
  29240. },
  29241. back: {
  29242. height: math.unit(16, "feet"),
  29243. weight: math.unit(1000, "lb"),
  29244. name: "Back",
  29245. image: {
  29246. source: "./media/characters/grim/back.svg",
  29247. extra: 610.6 / 602,
  29248. bottom: 40.8 / 652
  29249. }
  29250. },
  29251. hunched: {
  29252. height: math.unit(9.75, "feet"),
  29253. weight: math.unit(1000, "lb"),
  29254. name: "Hunched",
  29255. image: {
  29256. source: "./media/characters/grim/hunched.svg",
  29257. extra: 304 / 297,
  29258. bottom: 35.4 / 394
  29259. }
  29260. },
  29261. },
  29262. [
  29263. {
  29264. name: "Normal",
  29265. height: math.unit(16, "feet"),
  29266. default: true
  29267. },
  29268. ]
  29269. ))
  29270. characterMakers.push(() => makeCharacter(
  29271. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29272. {
  29273. front: {
  29274. height: math.unit(2.3, "meters"),
  29275. weight: math.unit(300, "lb"),
  29276. name: "Front",
  29277. image: {
  29278. source: "./media/characters/sinja/front-sfw.svg",
  29279. extra: 1393 / 1294,
  29280. bottom: 70 / 1463
  29281. }
  29282. },
  29283. frontNsfw: {
  29284. height: math.unit(2.3, "meters"),
  29285. weight: math.unit(300, "lb"),
  29286. name: "Front (NSFW)",
  29287. image: {
  29288. source: "./media/characters/sinja/front-nsfw.svg",
  29289. extra: 1393 / 1294,
  29290. bottom: 70 / 1463
  29291. }
  29292. },
  29293. back: {
  29294. height: math.unit(2.3, "meters"),
  29295. weight: math.unit(300, "lb"),
  29296. name: "Back",
  29297. image: {
  29298. source: "./media/characters/sinja/back.svg",
  29299. extra: 1393 / 1294,
  29300. bottom: 70 / 1463
  29301. }
  29302. },
  29303. head: {
  29304. height: math.unit(1.771, "feet"),
  29305. name: "Head",
  29306. image: {
  29307. source: "./media/characters/sinja/head.svg"
  29308. }
  29309. },
  29310. slit: {
  29311. height: math.unit(0.8, "feet"),
  29312. name: "Slit",
  29313. image: {
  29314. source: "./media/characters/sinja/slit.svg"
  29315. }
  29316. },
  29317. },
  29318. [
  29319. {
  29320. name: "Normal",
  29321. height: math.unit(2.3, "meters")
  29322. },
  29323. {
  29324. name: "Macro",
  29325. height: math.unit(91, "meters"),
  29326. default: true
  29327. },
  29328. {
  29329. name: "Megamacro",
  29330. height: math.unit(91440, "meters")
  29331. },
  29332. {
  29333. name: "Gigamacro",
  29334. height: math.unit(60960000, "meters")
  29335. },
  29336. {
  29337. name: "Teramacro",
  29338. height: math.unit(9144000000, "meters")
  29339. },
  29340. ]
  29341. ))
  29342. characterMakers.push(() => makeCharacter(
  29343. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29344. {
  29345. front: {
  29346. height: math.unit(1.7, "meters"),
  29347. weight: math.unit(130, "lb"),
  29348. name: "Front",
  29349. image: {
  29350. source: "./media/characters/kyu/front.svg",
  29351. extra: 415 / 395,
  29352. bottom: 5 / 420
  29353. }
  29354. },
  29355. head: {
  29356. height: math.unit(1.75, "feet"),
  29357. name: "Head",
  29358. image: {
  29359. source: "./media/characters/kyu/head.svg"
  29360. }
  29361. },
  29362. foot: {
  29363. height: math.unit(0.81, "feet"),
  29364. name: "Foot",
  29365. image: {
  29366. source: "./media/characters/kyu/foot.svg"
  29367. }
  29368. },
  29369. },
  29370. [
  29371. {
  29372. name: "Normal",
  29373. height: math.unit(1.7, "meters")
  29374. },
  29375. {
  29376. name: "Macro",
  29377. height: math.unit(131, "feet"),
  29378. default: true
  29379. },
  29380. {
  29381. name: "Megamacro",
  29382. height: math.unit(91440, "meters")
  29383. },
  29384. {
  29385. name: "Gigamacro",
  29386. height: math.unit(60960000, "meters")
  29387. },
  29388. {
  29389. name: "Teramacro",
  29390. height: math.unit(9144000000, "meters")
  29391. },
  29392. ]
  29393. ))
  29394. characterMakers.push(() => makeCharacter(
  29395. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29396. {
  29397. front: {
  29398. height: math.unit(7 + 1 / 12, "feet"),
  29399. weight: math.unit(250, "lb"),
  29400. name: "Front",
  29401. image: {
  29402. source: "./media/characters/joey/front.svg",
  29403. extra: 1791 / 1537,
  29404. bottom: 28 / 1816
  29405. }
  29406. },
  29407. },
  29408. [
  29409. {
  29410. name: "Micro",
  29411. height: math.unit(3, "inches")
  29412. },
  29413. {
  29414. name: "Normal",
  29415. height: math.unit(7 + 1 / 12, "feet"),
  29416. default: true
  29417. },
  29418. ]
  29419. ))
  29420. characterMakers.push(() => makeCharacter(
  29421. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29422. {
  29423. front: {
  29424. height: math.unit(165, "cm"),
  29425. weight: math.unit(140, "lb"),
  29426. name: "Front",
  29427. image: {
  29428. source: "./media/characters/sam-evans/front.svg",
  29429. extra: 3417 / 3230,
  29430. bottom: 41.3 / 3417
  29431. }
  29432. },
  29433. frontSixTails: {
  29434. height: math.unit(165, "cm"),
  29435. weight: math.unit(140, "lb"),
  29436. name: "Front-six-tails",
  29437. image: {
  29438. source: "./media/characters/sam-evans/front-six-tails.svg",
  29439. extra: 3417 / 3230,
  29440. bottom: 41.3 / 3417
  29441. }
  29442. },
  29443. back: {
  29444. height: math.unit(165, "cm"),
  29445. weight: math.unit(140, "lb"),
  29446. name: "Back",
  29447. image: {
  29448. source: "./media/characters/sam-evans/back.svg",
  29449. extra: 3227 / 3032,
  29450. bottom: 6.8 / 3234
  29451. }
  29452. },
  29453. face: {
  29454. height: math.unit(0.68, "feet"),
  29455. name: "Face",
  29456. image: {
  29457. source: "./media/characters/sam-evans/face.svg"
  29458. }
  29459. },
  29460. },
  29461. [
  29462. {
  29463. name: "Normal",
  29464. height: math.unit(165, "cm"),
  29465. default: true
  29466. },
  29467. {
  29468. name: "Macro",
  29469. height: math.unit(100, "meters")
  29470. },
  29471. {
  29472. name: "Macro+",
  29473. height: math.unit(800, "meters")
  29474. },
  29475. {
  29476. name: "Macro++",
  29477. height: math.unit(3, "km")
  29478. },
  29479. {
  29480. name: "Macro+++",
  29481. height: math.unit(30, "km")
  29482. },
  29483. ]
  29484. ))
  29485. characterMakers.push(() => makeCharacter(
  29486. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29487. {
  29488. front: {
  29489. height: math.unit(10, "feet"),
  29490. weight: math.unit(750, "lb"),
  29491. name: "Front",
  29492. image: {
  29493. source: "./media/characters/juliet-a/front.svg",
  29494. extra: 1766 / 1720,
  29495. bottom: 43 / 1809
  29496. }
  29497. },
  29498. back: {
  29499. height: math.unit(10, "feet"),
  29500. weight: math.unit(750, "lb"),
  29501. name: "Back",
  29502. image: {
  29503. source: "./media/characters/juliet-a/back.svg",
  29504. extra: 1781 / 1734,
  29505. bottom: 35 / 1810,
  29506. }
  29507. },
  29508. },
  29509. [
  29510. {
  29511. name: "Normal",
  29512. height: math.unit(10, "feet"),
  29513. default: true
  29514. },
  29515. {
  29516. name: "Dragon Form",
  29517. height: math.unit(250, "feet")
  29518. },
  29519. {
  29520. name: "Macro",
  29521. height: math.unit(1000, "feet")
  29522. },
  29523. {
  29524. name: "Megamacro",
  29525. height: math.unit(10000, "feet")
  29526. }
  29527. ]
  29528. ))
  29529. characterMakers.push(() => makeCharacter(
  29530. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29531. {
  29532. regular: {
  29533. height: math.unit(7 + 3 / 12, "feet"),
  29534. weight: math.unit(260, "lb"),
  29535. name: "Regular",
  29536. image: {
  29537. source: "./media/characters/wild/regular.svg",
  29538. extra: 97.45 / 92,
  29539. bottom: 6.8 / 104.3
  29540. }
  29541. },
  29542. biggums: {
  29543. height: math.unit(8 + 6 / 12, "feet"),
  29544. weight: math.unit(425, "lb"),
  29545. name: "Biggums",
  29546. image: {
  29547. source: "./media/characters/wild/biggums.svg",
  29548. extra: 97.45 / 92,
  29549. bottom: 7.5 / 132.34
  29550. }
  29551. },
  29552. mawRegular: {
  29553. height: math.unit(1.24, "feet"),
  29554. name: "Maw (Regular)",
  29555. image: {
  29556. source: "./media/characters/wild/maw.svg"
  29557. }
  29558. },
  29559. mawBiggums: {
  29560. height: math.unit(1.47, "feet"),
  29561. name: "Maw (Biggums)",
  29562. image: {
  29563. source: "./media/characters/wild/maw.svg"
  29564. }
  29565. },
  29566. },
  29567. [
  29568. {
  29569. name: "Normal",
  29570. height: math.unit(7 + 3 / 12, "feet"),
  29571. default: true
  29572. },
  29573. ]
  29574. ))
  29575. characterMakers.push(() => makeCharacter(
  29576. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29577. {
  29578. front: {
  29579. height: math.unit(2.5, "meters"),
  29580. weight: math.unit(200, "kg"),
  29581. name: "Front",
  29582. image: {
  29583. source: "./media/characters/vidar/front.svg",
  29584. extra: 2994 / 2795,
  29585. bottom: 56 / 3061
  29586. }
  29587. },
  29588. back: {
  29589. height: math.unit(2.5, "meters"),
  29590. weight: math.unit(200, "kg"),
  29591. name: "Back",
  29592. image: {
  29593. source: "./media/characters/vidar/back.svg",
  29594. extra: 3131 / 2928,
  29595. bottom: 13.5 / 3141.5
  29596. }
  29597. },
  29598. feral: {
  29599. height: math.unit(2.5, "meters"),
  29600. weight: math.unit(2000, "kg"),
  29601. name: "Feral",
  29602. image: {
  29603. source: "./media/characters/vidar/feral.svg",
  29604. extra: 2790 / 1765,
  29605. bottom: 6 / 2796
  29606. }
  29607. },
  29608. },
  29609. [
  29610. {
  29611. name: "Normal",
  29612. height: math.unit(2.5, "meters"),
  29613. default: true
  29614. },
  29615. {
  29616. name: "Macro",
  29617. height: math.unit(100, "meters")
  29618. },
  29619. ]
  29620. ))
  29621. characterMakers.push(() => makeCharacter(
  29622. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29623. {
  29624. front: {
  29625. height: math.unit(5 + 9 / 12, "feet"),
  29626. weight: math.unit(120, "lb"),
  29627. name: "Front",
  29628. image: {
  29629. source: "./media/characters/ash/front.svg",
  29630. extra: 2189 / 1961,
  29631. bottom: 5.2 / 2194
  29632. }
  29633. },
  29634. },
  29635. [
  29636. {
  29637. name: "Normal",
  29638. height: math.unit(5 + 9 / 12, "feet"),
  29639. default: true
  29640. },
  29641. ]
  29642. ))
  29643. characterMakers.push(() => makeCharacter(
  29644. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29645. {
  29646. front: {
  29647. height: math.unit(9, "feet"),
  29648. weight: math.unit(10000, "lb"),
  29649. name: "Front",
  29650. image: {
  29651. source: "./media/characters/gygabite/front.svg",
  29652. bottom: 31.7 / 537.8,
  29653. extra: 505 / 370
  29654. }
  29655. },
  29656. },
  29657. [
  29658. {
  29659. name: "Normal",
  29660. height: math.unit(9, "feet"),
  29661. default: true
  29662. },
  29663. ]
  29664. ))
  29665. characterMakers.push(() => makeCharacter(
  29666. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29667. {
  29668. front: {
  29669. height: math.unit(12, "feet"),
  29670. weight: math.unit(4000, "lb"),
  29671. name: "Front",
  29672. image: {
  29673. source: "./media/characters/p0tat0/front.svg",
  29674. extra: 1065 / 921,
  29675. bottom: 55.7 / 1121.25
  29676. }
  29677. },
  29678. },
  29679. [
  29680. {
  29681. name: "Normal",
  29682. height: math.unit(12, "feet"),
  29683. default: true
  29684. },
  29685. ]
  29686. ))
  29687. characterMakers.push(() => makeCharacter(
  29688. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29689. {
  29690. side: {
  29691. height: math.unit(6.5, "feet"),
  29692. weight: math.unit(800, "lb"),
  29693. name: "Side",
  29694. image: {
  29695. source: "./media/characters/dusk/side.svg",
  29696. extra: 615 / 373,
  29697. bottom: 53 / 664
  29698. }
  29699. },
  29700. sitting: {
  29701. height: math.unit(7, "feet"),
  29702. weight: math.unit(800, "lb"),
  29703. name: "Sitting",
  29704. image: {
  29705. source: "./media/characters/dusk/sitting.svg",
  29706. extra: 753 / 425,
  29707. bottom: 33 / 774
  29708. }
  29709. },
  29710. head: {
  29711. height: math.unit(6.1, "feet"),
  29712. name: "Head",
  29713. image: {
  29714. source: "./media/characters/dusk/head.svg"
  29715. }
  29716. },
  29717. },
  29718. [
  29719. {
  29720. name: "Normal",
  29721. height: math.unit(7, "feet"),
  29722. default: true
  29723. },
  29724. ]
  29725. ))
  29726. characterMakers.push(() => makeCharacter(
  29727. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29728. {
  29729. front: {
  29730. height: math.unit(15, "feet"),
  29731. weight: math.unit(7000, "lb"),
  29732. name: "Front",
  29733. image: {
  29734. source: "./media/characters/jay-direwolf/front.svg",
  29735. extra: 1810 / 1732,
  29736. bottom: 66 / 1892
  29737. }
  29738. },
  29739. },
  29740. [
  29741. {
  29742. name: "Normal",
  29743. height: math.unit(15, "feet"),
  29744. default: true
  29745. },
  29746. ]
  29747. ))
  29748. characterMakers.push(() => makeCharacter(
  29749. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29750. {
  29751. front: {
  29752. height: math.unit(4 + 9 / 12, "feet"),
  29753. weight: math.unit(130, "lb"),
  29754. name: "Front",
  29755. image: {
  29756. source: "./media/characters/anchovie/front.svg",
  29757. extra: 382 / 350,
  29758. bottom: 25 / 409
  29759. }
  29760. },
  29761. back: {
  29762. height: math.unit(4 + 9 / 12, "feet"),
  29763. weight: math.unit(130, "lb"),
  29764. name: "Back",
  29765. image: {
  29766. source: "./media/characters/anchovie/back.svg",
  29767. extra: 385 / 352,
  29768. bottom: 16.6 / 402
  29769. }
  29770. },
  29771. frontDressed: {
  29772. height: math.unit(4 + 9 / 12, "feet"),
  29773. weight: math.unit(130, "lb"),
  29774. name: "Front (Dressed)",
  29775. image: {
  29776. source: "./media/characters/anchovie/front-dressed.svg",
  29777. extra: 382 / 350,
  29778. bottom: 25 / 409
  29779. }
  29780. },
  29781. backDressed: {
  29782. height: math.unit(4 + 9 / 12, "feet"),
  29783. weight: math.unit(130, "lb"),
  29784. name: "Back (Dressed)",
  29785. image: {
  29786. source: "./media/characters/anchovie/back-dressed.svg",
  29787. extra: 385 / 352,
  29788. bottom: 16.6 / 402
  29789. }
  29790. },
  29791. },
  29792. [
  29793. {
  29794. name: "Micro",
  29795. height: math.unit(6.4, "inches")
  29796. },
  29797. {
  29798. name: "Normal",
  29799. height: math.unit(4 + 9 / 12, "feet"),
  29800. default: true
  29801. },
  29802. ]
  29803. ))
  29804. characterMakers.push(() => makeCharacter(
  29805. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29806. {
  29807. front: {
  29808. height: math.unit(2, "meters"),
  29809. weight: math.unit(180, "lb"),
  29810. name: "Front",
  29811. image: {
  29812. source: "./media/characters/acidrenamon/front.svg",
  29813. extra: 987 / 890,
  29814. bottom: 22.8 / 1009
  29815. }
  29816. },
  29817. back: {
  29818. height: math.unit(2, "meters"),
  29819. weight: math.unit(180, "lb"),
  29820. name: "Back",
  29821. image: {
  29822. source: "./media/characters/acidrenamon/back.svg",
  29823. extra: 983 / 891,
  29824. bottom: 8.4 / 992
  29825. }
  29826. },
  29827. head: {
  29828. height: math.unit(1.92, "feet"),
  29829. name: "Head",
  29830. image: {
  29831. source: "./media/characters/acidrenamon/head.svg"
  29832. }
  29833. },
  29834. rump: {
  29835. height: math.unit(1.72, "feet"),
  29836. name: "Rump",
  29837. image: {
  29838. source: "./media/characters/acidrenamon/rump.svg"
  29839. }
  29840. },
  29841. tail: {
  29842. height: math.unit(4.2, "feet"),
  29843. name: "Tail",
  29844. image: {
  29845. source: "./media/characters/acidrenamon/tail.svg"
  29846. }
  29847. },
  29848. },
  29849. [
  29850. {
  29851. name: "Normal",
  29852. height: math.unit(2, "meters"),
  29853. default: true
  29854. },
  29855. {
  29856. name: "Minimacro",
  29857. height: math.unit(7, "meters")
  29858. },
  29859. {
  29860. name: "Macro",
  29861. height: math.unit(200, "meters")
  29862. },
  29863. {
  29864. name: "Gigamacro",
  29865. height: math.unit(0.2, "earths")
  29866. },
  29867. ]
  29868. ))
  29869. characterMakers.push(() => makeCharacter(
  29870. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29871. {
  29872. front: {
  29873. height: math.unit(152, "feet"),
  29874. name: "Front",
  29875. image: {
  29876. source: "./media/characters/kenzie-lee/front.svg",
  29877. extra: 1869/1774,
  29878. bottom: 128/1997
  29879. }
  29880. },
  29881. side: {
  29882. height: math.unit(86, "feet"),
  29883. name: "Side",
  29884. image: {
  29885. source: "./media/characters/kenzie-lee/side.svg",
  29886. extra: 930/815,
  29887. bottom: 177/1107
  29888. }
  29889. },
  29890. paw: {
  29891. height: math.unit(15, "feet"),
  29892. name: "Paw",
  29893. image: {
  29894. source: "./media/characters/kenzie-lee/paw.svg"
  29895. }
  29896. },
  29897. },
  29898. [
  29899. {
  29900. name: "Kenzie Flea",
  29901. height: math.unit(2, "mm"),
  29902. default: true
  29903. },
  29904. {
  29905. name: "Micro",
  29906. height: math.unit(2, "inches")
  29907. },
  29908. {
  29909. name: "Normal",
  29910. height: math.unit(152, "feet")
  29911. },
  29912. {
  29913. name: "Megamacro",
  29914. height: math.unit(7, "miles")
  29915. },
  29916. {
  29917. name: "Gigamacro",
  29918. height: math.unit(8000, "miles")
  29919. },
  29920. ]
  29921. ))
  29922. characterMakers.push(() => makeCharacter(
  29923. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29924. {
  29925. front: {
  29926. height: math.unit(6, "feet"),
  29927. name: "Front",
  29928. image: {
  29929. source: "./media/characters/withers/front.svg",
  29930. extra: 1935/1760,
  29931. bottom: 72/2007
  29932. }
  29933. },
  29934. back: {
  29935. height: math.unit(6, "feet"),
  29936. name: "Back",
  29937. image: {
  29938. source: "./media/characters/withers/back.svg",
  29939. extra: 1944/1792,
  29940. bottom: 12/1956
  29941. }
  29942. },
  29943. dressed: {
  29944. height: math.unit(6, "feet"),
  29945. name: "Dressed",
  29946. image: {
  29947. source: "./media/characters/withers/dressed.svg",
  29948. extra: 1937/1765,
  29949. bottom: 73/2010
  29950. }
  29951. },
  29952. phase1: {
  29953. height: math.unit(1.1, "feet"),
  29954. name: "Phase 1",
  29955. image: {
  29956. source: "./media/characters/withers/phase-1.svg",
  29957. extra: 1885/1232,
  29958. bottom: 0/1885
  29959. }
  29960. },
  29961. phase2: {
  29962. height: math.unit(1.05, "feet"),
  29963. name: "Phase 2",
  29964. image: {
  29965. source: "./media/characters/withers/phase-2.svg",
  29966. extra: 1792/1090,
  29967. bottom: 0/1792
  29968. }
  29969. },
  29970. partyWipe: {
  29971. height: math.unit(1.1, "feet"),
  29972. name: "Party Wipe",
  29973. image: {
  29974. source: "./media/characters/withers/party-wipe.svg",
  29975. extra: 1864/1207,
  29976. bottom: 0/1864
  29977. }
  29978. },
  29979. },
  29980. [
  29981. {
  29982. name: "Macro",
  29983. height: math.unit(167, "feet"),
  29984. default: true
  29985. },
  29986. {
  29987. name: "Megamacro",
  29988. height: math.unit(15, "miles")
  29989. }
  29990. ]
  29991. ))
  29992. characterMakers.push(() => makeCharacter(
  29993. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29994. {
  29995. front: {
  29996. height: math.unit(6 + 7 / 12, "feet"),
  29997. weight: math.unit(250, "lb"),
  29998. name: "Front",
  29999. image: {
  30000. source: "./media/characters/nemoskii/front.svg",
  30001. extra: 2270 / 1734,
  30002. bottom: 86 / 2354
  30003. }
  30004. },
  30005. back: {
  30006. height: math.unit(6 + 7 / 12, "feet"),
  30007. weight: math.unit(250, "lb"),
  30008. name: "Back",
  30009. image: {
  30010. source: "./media/characters/nemoskii/back.svg",
  30011. extra: 1845 / 1788,
  30012. bottom: 10.5 / 1852
  30013. }
  30014. },
  30015. head: {
  30016. height: math.unit(1.31, "feet"),
  30017. name: "Head",
  30018. image: {
  30019. source: "./media/characters/nemoskii/head.svg"
  30020. }
  30021. },
  30022. },
  30023. [
  30024. {
  30025. name: "Micro",
  30026. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30027. },
  30028. {
  30029. name: "Normal",
  30030. height: math.unit(6 + 7 / 12, "feet"),
  30031. default: true
  30032. },
  30033. {
  30034. name: "Macro",
  30035. height: math.unit((6 + 7 / 12) * 150, "feet")
  30036. },
  30037. {
  30038. name: "Macro+",
  30039. height: math.unit((6 + 7 / 12) * 500, "feet")
  30040. },
  30041. {
  30042. name: "Megamacro",
  30043. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30044. },
  30045. ]
  30046. ))
  30047. characterMakers.push(() => makeCharacter(
  30048. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30049. {
  30050. front: {
  30051. height: math.unit(1, "mile"),
  30052. weight: math.unit(265261.9, "lb"),
  30053. name: "Front",
  30054. image: {
  30055. source: "./media/characters/shui/front.svg",
  30056. extra: 1633 / 1564,
  30057. bottom: 91.5 / 1726
  30058. }
  30059. },
  30060. },
  30061. [
  30062. {
  30063. name: "Macro",
  30064. height: math.unit(1, "mile"),
  30065. default: true
  30066. },
  30067. ]
  30068. ))
  30069. characterMakers.push(() => makeCharacter(
  30070. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30071. {
  30072. front: {
  30073. height: math.unit(12 + 6 / 12, "feet"),
  30074. weight: math.unit(1342, "lb"),
  30075. name: "Front",
  30076. image: {
  30077. source: "./media/characters/arokh-takakura/front.svg",
  30078. extra: 1089 / 1043,
  30079. bottom: 77.4 / 1176.7
  30080. }
  30081. },
  30082. back: {
  30083. height: math.unit(12 + 6 / 12, "feet"),
  30084. weight: math.unit(1342, "lb"),
  30085. name: "Back",
  30086. image: {
  30087. source: "./media/characters/arokh-takakura/back.svg",
  30088. extra: 1046 / 1019,
  30089. bottom: 102 / 1150
  30090. }
  30091. },
  30092. },
  30093. [
  30094. {
  30095. name: "Big",
  30096. height: math.unit(12 + 6 / 12, "feet"),
  30097. default: true
  30098. },
  30099. ]
  30100. ))
  30101. characterMakers.push(() => makeCharacter(
  30102. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30103. {
  30104. front: {
  30105. height: math.unit(5 + 6 / 12, "feet"),
  30106. weight: math.unit(150, "lb"),
  30107. name: "Front",
  30108. image: {
  30109. source: "./media/characters/theo/front.svg",
  30110. extra: 1184 / 1131,
  30111. bottom: 7.4 / 1191
  30112. }
  30113. },
  30114. },
  30115. [
  30116. {
  30117. name: "Micro",
  30118. height: math.unit(5, "inches")
  30119. },
  30120. {
  30121. name: "Normal",
  30122. height: math.unit(5 + 6 / 12, "feet"),
  30123. default: true
  30124. },
  30125. ]
  30126. ))
  30127. characterMakers.push(() => makeCharacter(
  30128. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30129. {
  30130. front: {
  30131. height: math.unit(5 + 9 / 12, "feet"),
  30132. weight: math.unit(130, "lb"),
  30133. name: "Front",
  30134. image: {
  30135. source: "./media/characters/cecelia-swift/front.svg",
  30136. extra: 502 / 484,
  30137. bottom: 23 / 523
  30138. }
  30139. },
  30140. back: {
  30141. height: math.unit(5 + 9 / 12, "feet"),
  30142. weight: math.unit(130, "lb"),
  30143. name: "Back",
  30144. image: {
  30145. source: "./media/characters/cecelia-swift/back.svg",
  30146. extra: 499 / 485,
  30147. bottom: 12 / 511
  30148. }
  30149. },
  30150. head: {
  30151. height: math.unit(0.90, "feet"),
  30152. name: "Head",
  30153. image: {
  30154. source: "./media/characters/cecelia-swift/head.svg"
  30155. }
  30156. },
  30157. rump: {
  30158. height: math.unit(1.75, "feet"),
  30159. name: "Rump",
  30160. image: {
  30161. source: "./media/characters/cecelia-swift/rump.svg"
  30162. }
  30163. },
  30164. },
  30165. [
  30166. {
  30167. name: "Normal",
  30168. height: math.unit(5 + 9 / 12, "feet"),
  30169. default: true
  30170. },
  30171. {
  30172. name: "Big",
  30173. height: math.unit(50, "feet")
  30174. },
  30175. {
  30176. name: "Macro",
  30177. height: math.unit(100, "feet")
  30178. },
  30179. {
  30180. name: "Macro+",
  30181. height: math.unit(500, "feet")
  30182. },
  30183. {
  30184. name: "Macro++",
  30185. height: math.unit(1000, "feet")
  30186. },
  30187. ]
  30188. ))
  30189. characterMakers.push(() => makeCharacter(
  30190. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30191. {
  30192. front: {
  30193. height: math.unit(6, "feet"),
  30194. weight: math.unit(150, "lb"),
  30195. name: "Front",
  30196. image: {
  30197. source: "./media/characters/kaunan/front.svg",
  30198. extra: 2890 / 2523,
  30199. bottom: 49 / 2939
  30200. }
  30201. },
  30202. },
  30203. [
  30204. {
  30205. name: "Macro",
  30206. height: math.unit(150, "feet"),
  30207. default: true
  30208. },
  30209. ]
  30210. ))
  30211. characterMakers.push(() => makeCharacter(
  30212. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30213. {
  30214. dressed: {
  30215. height: math.unit(175, "cm"),
  30216. weight: math.unit(60, "kg"),
  30217. name: "Dressed",
  30218. image: {
  30219. source: "./media/characters/fei/dressed.svg",
  30220. extra: 1402/1278,
  30221. bottom: 27/1429
  30222. }
  30223. },
  30224. nude: {
  30225. height: math.unit(175, "cm"),
  30226. weight: math.unit(60, "kg"),
  30227. name: "Nude",
  30228. image: {
  30229. source: "./media/characters/fei/nude.svg",
  30230. extra: 1402/1278,
  30231. bottom: 27/1429
  30232. }
  30233. },
  30234. heels: {
  30235. height: math.unit(0.466, "feet"),
  30236. name: "Heels",
  30237. image: {
  30238. source: "./media/characters/fei/heels.svg",
  30239. extra: 156/152,
  30240. bottom: 28/184
  30241. }
  30242. },
  30243. },
  30244. [
  30245. {
  30246. name: "Mortal",
  30247. height: math.unit(175, "cm")
  30248. },
  30249. {
  30250. name: "Normal",
  30251. height: math.unit(3500, "m")
  30252. },
  30253. {
  30254. name: "Stroll",
  30255. height: math.unit(18.4, "km"),
  30256. default: true
  30257. },
  30258. {
  30259. name: "Showoff",
  30260. height: math.unit(175, "km")
  30261. },
  30262. ]
  30263. ))
  30264. characterMakers.push(() => makeCharacter(
  30265. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30266. {
  30267. front: {
  30268. height: math.unit(7, "feet"),
  30269. weight: math.unit(1000, "kg"),
  30270. name: "Front",
  30271. image: {
  30272. source: "./media/characters/edrax/front.svg",
  30273. extra: 2838 / 2550,
  30274. bottom: 130 / 2968
  30275. }
  30276. },
  30277. },
  30278. [
  30279. {
  30280. name: "Small",
  30281. height: math.unit(7, "feet")
  30282. },
  30283. {
  30284. name: "Normal",
  30285. height: math.unit(1500, "meters")
  30286. },
  30287. {
  30288. name: "Mega",
  30289. height: math.unit(12000000, "km"),
  30290. default: true
  30291. },
  30292. {
  30293. name: "Megamacro",
  30294. height: math.unit(10600000, "lightyears")
  30295. },
  30296. {
  30297. name: "Hypermacro",
  30298. height: math.unit(256, "yottameters")
  30299. },
  30300. ]
  30301. ))
  30302. characterMakers.push(() => makeCharacter(
  30303. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30304. {
  30305. front: {
  30306. height: math.unit(10, "feet"),
  30307. weight: math.unit(750, "lb"),
  30308. name: "Front",
  30309. image: {
  30310. source: "./media/characters/clove/front.svg",
  30311. extra: 1918/1751,
  30312. bottom: 52/1970
  30313. }
  30314. },
  30315. back: {
  30316. height: math.unit(10, "feet"),
  30317. weight: math.unit(750, "lb"),
  30318. name: "Back",
  30319. image: {
  30320. source: "./media/characters/clove/back.svg",
  30321. extra: 1912/1747,
  30322. bottom: 50/1962
  30323. }
  30324. },
  30325. },
  30326. [
  30327. {
  30328. name: "Normal",
  30329. height: math.unit(10, "feet"),
  30330. default: true
  30331. },
  30332. ]
  30333. ))
  30334. characterMakers.push(() => makeCharacter(
  30335. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30336. {
  30337. front: {
  30338. height: math.unit(4, "feet"),
  30339. weight: math.unit(50, "lb"),
  30340. name: "Front",
  30341. image: {
  30342. source: "./media/characters/alex-rabbit/front.svg",
  30343. extra: 507 / 458,
  30344. bottom: 18.5 / 527
  30345. }
  30346. },
  30347. back: {
  30348. height: math.unit(4, "feet"),
  30349. weight: math.unit(50, "lb"),
  30350. name: "Back",
  30351. image: {
  30352. source: "./media/characters/alex-rabbit/back.svg",
  30353. extra: 502 / 460,
  30354. bottom: 18.9 / 521
  30355. }
  30356. },
  30357. },
  30358. [
  30359. {
  30360. name: "Normal",
  30361. height: math.unit(4, "feet"),
  30362. default: true
  30363. },
  30364. ]
  30365. ))
  30366. characterMakers.push(() => makeCharacter(
  30367. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30368. {
  30369. front: {
  30370. height: math.unit(1 + 3 / 12, "feet"),
  30371. weight: math.unit(80, "lb"),
  30372. name: "Front",
  30373. image: {
  30374. source: "./media/characters/zander-rose/front.svg",
  30375. extra: 916 / 797,
  30376. bottom: 17 / 933
  30377. }
  30378. },
  30379. back: {
  30380. height: math.unit(1 + 3 / 12, "feet"),
  30381. weight: math.unit(80, "lb"),
  30382. name: "Back",
  30383. image: {
  30384. source: "./media/characters/zander-rose/back.svg",
  30385. extra: 903 / 779,
  30386. bottom: 31 / 934
  30387. }
  30388. },
  30389. },
  30390. [
  30391. {
  30392. name: "Normal",
  30393. height: math.unit(1 + 3 / 12, "feet"),
  30394. default: true
  30395. },
  30396. ]
  30397. ))
  30398. characterMakers.push(() => makeCharacter(
  30399. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30400. {
  30401. anthro: {
  30402. height: math.unit(6, "feet"),
  30403. weight: math.unit(150, "lb"),
  30404. name: "Anthro",
  30405. image: {
  30406. source: "./media/characters/razz/anthro.svg",
  30407. extra: 1437 / 1343,
  30408. bottom: 48 / 1485
  30409. }
  30410. },
  30411. feral: {
  30412. height: math.unit(6, "feet"),
  30413. weight: math.unit(150, "lb"),
  30414. name: "Feral",
  30415. image: {
  30416. source: "./media/characters/razz/feral.svg",
  30417. extra: 2569 / 1385,
  30418. bottom: 95 / 2664
  30419. }
  30420. },
  30421. },
  30422. [
  30423. {
  30424. name: "Normal",
  30425. height: math.unit(6, "feet"),
  30426. default: true
  30427. },
  30428. ]
  30429. ))
  30430. characterMakers.push(() => makeCharacter(
  30431. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30432. {
  30433. front: {
  30434. height: math.unit(9 + 4 / 12, "feet"),
  30435. weight: math.unit(500, "lb"),
  30436. name: "Front",
  30437. image: {
  30438. source: "./media/characters/morrigan/front.svg",
  30439. extra: 2707 / 2579,
  30440. bottom: 156 / 2863
  30441. }
  30442. },
  30443. },
  30444. [
  30445. {
  30446. name: "Normal",
  30447. height: math.unit(9 + 4 / 12, "feet"),
  30448. default: true
  30449. },
  30450. ]
  30451. ))
  30452. characterMakers.push(() => makeCharacter(
  30453. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30454. {
  30455. front: {
  30456. height: math.unit(5, "stories"),
  30457. weight: math.unit(4000, "lb"),
  30458. name: "Front",
  30459. image: {
  30460. source: "./media/characters/jenene/front.svg",
  30461. extra: 1780 / 1710,
  30462. bottom: 57 / 1837
  30463. }
  30464. },
  30465. },
  30466. [
  30467. {
  30468. name: "Normal",
  30469. height: math.unit(5, "stories"),
  30470. default: true
  30471. },
  30472. ]
  30473. ))
  30474. characterMakers.push(() => makeCharacter(
  30475. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30476. {
  30477. taurSfw: {
  30478. height: math.unit(10, "meters"),
  30479. weight: math.unit(17500, "kg"),
  30480. name: "Taur",
  30481. image: {
  30482. source: "./media/characters/faey/taur-sfw.svg",
  30483. extra: 1200 / 968,
  30484. bottom: 41 / 1241
  30485. }
  30486. },
  30487. chestmaw: {
  30488. height: math.unit(2.01, "meters"),
  30489. name: "Chestmaw",
  30490. image: {
  30491. source: "./media/characters/faey/chestmaw.svg"
  30492. }
  30493. },
  30494. foot: {
  30495. height: math.unit(2.43, "meters"),
  30496. name: "Foot",
  30497. image: {
  30498. source: "./media/characters/faey/foot.svg"
  30499. }
  30500. },
  30501. jaws: {
  30502. height: math.unit(1.66, "meters"),
  30503. name: "Jaws",
  30504. image: {
  30505. source: "./media/characters/faey/jaws.svg"
  30506. }
  30507. },
  30508. tongues: {
  30509. height: math.unit(2.01, "meters"),
  30510. name: "Tongues",
  30511. image: {
  30512. source: "./media/characters/faey/tongues.svg"
  30513. }
  30514. },
  30515. },
  30516. [
  30517. {
  30518. name: "Small",
  30519. height: math.unit(10, "meters"),
  30520. default: true
  30521. },
  30522. {
  30523. name: "Big",
  30524. height: math.unit(500000, "km")
  30525. },
  30526. ]
  30527. ))
  30528. characterMakers.push(() => makeCharacter(
  30529. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30530. {
  30531. front: {
  30532. height: math.unit(7, "feet"),
  30533. weight: math.unit(275, "lb"),
  30534. name: "Front",
  30535. image: {
  30536. source: "./media/characters/roku/front.svg",
  30537. extra: 903 / 878,
  30538. bottom: 37 / 940
  30539. }
  30540. },
  30541. },
  30542. [
  30543. {
  30544. name: "Normal",
  30545. height: math.unit(7, "feet"),
  30546. default: true
  30547. },
  30548. {
  30549. name: "Macro",
  30550. height: math.unit(500, "feet")
  30551. },
  30552. {
  30553. name: "Megamacro",
  30554. height: math.unit(200, "miles")
  30555. },
  30556. ]
  30557. ))
  30558. characterMakers.push(() => makeCharacter(
  30559. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30560. {
  30561. front: {
  30562. height: math.unit(6 + 2 / 12, "feet"),
  30563. weight: math.unit(150, "lb"),
  30564. name: "Front",
  30565. image: {
  30566. source: "./media/characters/lira/front.svg",
  30567. extra: 1727 / 1605,
  30568. bottom: 26 / 1753
  30569. }
  30570. },
  30571. back: {
  30572. height: math.unit(6 + 2 / 12, "feet"),
  30573. weight: math.unit(150, "lb"),
  30574. name: "Back",
  30575. image: {
  30576. source: "./media/characters/lira/back.svg",
  30577. extra: 1713/1621,
  30578. bottom: 20/1733
  30579. }
  30580. },
  30581. hand: {
  30582. height: math.unit(0.75, "feet"),
  30583. name: "Hand",
  30584. image: {
  30585. source: "./media/characters/lira/hand.svg"
  30586. }
  30587. },
  30588. maw: {
  30589. height: math.unit(0.65, "feet"),
  30590. name: "Maw",
  30591. image: {
  30592. source: "./media/characters/lira/maw.svg"
  30593. }
  30594. },
  30595. pawDigi: {
  30596. height: math.unit(1.6, "feet"),
  30597. name: "Paw Digi",
  30598. image: {
  30599. source: "./media/characters/lira/paw-digi.svg"
  30600. }
  30601. },
  30602. pawPlanti: {
  30603. height: math.unit(1.4, "feet"),
  30604. name: "Paw Planti",
  30605. image: {
  30606. source: "./media/characters/lira/paw-planti.svg"
  30607. }
  30608. },
  30609. },
  30610. [
  30611. {
  30612. name: "Normal",
  30613. height: math.unit(6 + 2 / 12, "feet"),
  30614. default: true
  30615. },
  30616. {
  30617. name: "Macro",
  30618. height: math.unit(100, "feet")
  30619. },
  30620. {
  30621. name: "Macro²",
  30622. height: math.unit(1600, "feet")
  30623. },
  30624. {
  30625. name: "Planetary",
  30626. height: math.unit(20, "earths")
  30627. },
  30628. ]
  30629. ))
  30630. characterMakers.push(() => makeCharacter(
  30631. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30632. {
  30633. front: {
  30634. height: math.unit(6, "feet"),
  30635. weight: math.unit(150, "lb"),
  30636. name: "Front",
  30637. image: {
  30638. source: "./media/characters/hadjet/front.svg",
  30639. extra: 1480 / 1346,
  30640. bottom: 26 / 1506
  30641. }
  30642. },
  30643. frontNsfw: {
  30644. height: math.unit(6, "feet"),
  30645. weight: math.unit(150, "lb"),
  30646. name: "Front (NSFW)",
  30647. image: {
  30648. source: "./media/characters/hadjet/front-nsfw.svg",
  30649. extra: 1440 / 1358,
  30650. bottom: 52 / 1492
  30651. }
  30652. },
  30653. },
  30654. [
  30655. {
  30656. name: "Macro",
  30657. height: math.unit(10, "stories"),
  30658. default: true
  30659. },
  30660. {
  30661. name: "Megamacro",
  30662. height: math.unit(1.5, "miles")
  30663. },
  30664. {
  30665. name: "Megamacro+",
  30666. height: math.unit(5, "miles")
  30667. },
  30668. ]
  30669. ))
  30670. characterMakers.push(() => makeCharacter(
  30671. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30672. {
  30673. side: {
  30674. height: math.unit(106, "feet"),
  30675. weight: math.unit(500, "tonnes"),
  30676. name: "Side",
  30677. image: {
  30678. source: "./media/characters/kodran/side.svg",
  30679. extra: 553 / 480,
  30680. bottom: 33 / 586
  30681. }
  30682. },
  30683. front: {
  30684. height: math.unit(132, "feet"),
  30685. weight: math.unit(500, "tonnes"),
  30686. name: "Front",
  30687. image: {
  30688. source: "./media/characters/kodran/front.svg",
  30689. extra: 667 / 643,
  30690. bottom: 42 / 709
  30691. }
  30692. },
  30693. flying: {
  30694. height: math.unit(350, "feet"),
  30695. weight: math.unit(500, "tonnes"),
  30696. name: "Flying",
  30697. image: {
  30698. source: "./media/characters/kodran/flying.svg"
  30699. }
  30700. },
  30701. foot: {
  30702. height: math.unit(33, "feet"),
  30703. name: "Foot",
  30704. image: {
  30705. source: "./media/characters/kodran/foot.svg"
  30706. }
  30707. },
  30708. footFront: {
  30709. height: math.unit(19, "feet"),
  30710. name: "Foot (Front)",
  30711. image: {
  30712. source: "./media/characters/kodran/foot-front.svg",
  30713. extra: 261 / 261,
  30714. bottom: 91 / 352
  30715. }
  30716. },
  30717. headFront: {
  30718. height: math.unit(53, "feet"),
  30719. name: "Head (Front)",
  30720. image: {
  30721. source: "./media/characters/kodran/head-front.svg"
  30722. }
  30723. },
  30724. headSide: {
  30725. height: math.unit(65, "feet"),
  30726. name: "Head (Side)",
  30727. image: {
  30728. source: "./media/characters/kodran/head-side.svg"
  30729. }
  30730. },
  30731. throat: {
  30732. height: math.unit(79, "feet"),
  30733. name: "Throat",
  30734. image: {
  30735. source: "./media/characters/kodran/throat.svg"
  30736. }
  30737. },
  30738. },
  30739. [
  30740. {
  30741. name: "Large",
  30742. height: math.unit(106, "feet"),
  30743. default: true
  30744. },
  30745. ]
  30746. ))
  30747. characterMakers.push(() => makeCharacter(
  30748. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30749. {
  30750. side: {
  30751. height: math.unit(11, "feet"),
  30752. weight: math.unit(150, "lb"),
  30753. name: "Side",
  30754. image: {
  30755. source: "./media/characters/pyxaron/side.svg",
  30756. extra: 305 / 195,
  30757. bottom: 17 / 322
  30758. }
  30759. },
  30760. },
  30761. [
  30762. {
  30763. name: "Normal",
  30764. height: math.unit(11, "feet"),
  30765. default: true
  30766. },
  30767. ]
  30768. ))
  30769. characterMakers.push(() => makeCharacter(
  30770. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30771. {
  30772. front: {
  30773. height: math.unit(6, "feet"),
  30774. weight: math.unit(150, "lb"),
  30775. name: "Front",
  30776. image: {
  30777. source: "./media/characters/meep/front.svg",
  30778. extra: 88 / 80,
  30779. bottom: 6 / 94
  30780. }
  30781. },
  30782. },
  30783. [
  30784. {
  30785. name: "Fun Sized",
  30786. height: math.unit(2, "inches"),
  30787. default: true
  30788. },
  30789. {
  30790. name: "Friend Sized",
  30791. height: math.unit(8, "inches")
  30792. },
  30793. ]
  30794. ))
  30795. characterMakers.push(() => makeCharacter(
  30796. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30797. {
  30798. front: {
  30799. height: math.unit(15, "feet"),
  30800. weight: math.unit(2500, "lb"),
  30801. name: "Front",
  30802. image: {
  30803. source: "./media/characters/holly-rabbit/front.svg",
  30804. extra: 1433 / 1233,
  30805. bottom: 125 / 1558
  30806. }
  30807. },
  30808. dick: {
  30809. height: math.unit(4.6, "feet"),
  30810. name: "Dick",
  30811. image: {
  30812. source: "./media/characters/holly-rabbit/dick.svg"
  30813. }
  30814. },
  30815. },
  30816. [
  30817. {
  30818. name: "Normal",
  30819. height: math.unit(15, "feet"),
  30820. default: true
  30821. },
  30822. {
  30823. name: "Macro",
  30824. height: math.unit(250, "feet")
  30825. },
  30826. {
  30827. name: "Macro+",
  30828. height: math.unit(2500, "feet")
  30829. },
  30830. ]
  30831. ))
  30832. characterMakers.push(() => makeCharacter(
  30833. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30834. {
  30835. front: {
  30836. height: math.unit(3.02, "meters"),
  30837. weight: math.unit(500, "kg"),
  30838. name: "Front",
  30839. image: {
  30840. source: "./media/characters/drena/front.svg",
  30841. extra: 282 / 243,
  30842. bottom: 8 / 290
  30843. }
  30844. },
  30845. side: {
  30846. height: math.unit(3.02, "meters"),
  30847. weight: math.unit(500, "kg"),
  30848. name: "Side",
  30849. image: {
  30850. source: "./media/characters/drena/side.svg",
  30851. extra: 280 / 245,
  30852. bottom: 10 / 290
  30853. }
  30854. },
  30855. back: {
  30856. height: math.unit(3.02, "meters"),
  30857. weight: math.unit(500, "kg"),
  30858. name: "Back",
  30859. image: {
  30860. source: "./media/characters/drena/back.svg",
  30861. extra: 278 / 243,
  30862. bottom: 2 / 280
  30863. }
  30864. },
  30865. foot: {
  30866. height: math.unit(0.75, "meters"),
  30867. name: "Foot",
  30868. image: {
  30869. source: "./media/characters/drena/foot.svg"
  30870. }
  30871. },
  30872. maw: {
  30873. height: math.unit(0.82, "meters"),
  30874. name: "Maw",
  30875. image: {
  30876. source: "./media/characters/drena/maw.svg"
  30877. }
  30878. },
  30879. eating: {
  30880. height: math.unit(0.75, "meters"),
  30881. name: "Eating",
  30882. image: {
  30883. source: "./media/characters/drena/eating.svg"
  30884. }
  30885. },
  30886. rump: {
  30887. height: math.unit(0.93, "meters"),
  30888. name: "Rump",
  30889. image: {
  30890. source: "./media/characters/drena/rump.svg"
  30891. }
  30892. },
  30893. },
  30894. [
  30895. {
  30896. name: "Normal",
  30897. height: math.unit(3.02, "meters"),
  30898. default: true
  30899. },
  30900. ]
  30901. ))
  30902. characterMakers.push(() => makeCharacter(
  30903. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30904. {
  30905. front: {
  30906. height: math.unit(6 + 4 / 12, "feet"),
  30907. weight: math.unit(250, "lb"),
  30908. name: "Front",
  30909. image: {
  30910. source: "./media/characters/remmyzilla/front.svg",
  30911. extra: 4033 / 3588,
  30912. bottom: 123 / 4156
  30913. }
  30914. },
  30915. back: {
  30916. height: math.unit(6 + 4 / 12, "feet"),
  30917. weight: math.unit(250, "lb"),
  30918. name: "Back",
  30919. image: {
  30920. source: "./media/characters/remmyzilla/back.svg",
  30921. extra: 2687 / 2555,
  30922. bottom: 48 / 2735
  30923. }
  30924. },
  30925. paw: {
  30926. height: math.unit(1.73, "feet"),
  30927. name: "Paw",
  30928. image: {
  30929. source: "./media/characters/remmyzilla/paw.svg"
  30930. },
  30931. extraAttributes: {
  30932. "toeSize": {
  30933. name: "Toe Size",
  30934. power: 2,
  30935. type: "area",
  30936. base: math.unit(0.0035, "m^2")
  30937. },
  30938. "padSize": {
  30939. name: "Pad Size",
  30940. power: 2,
  30941. type: "area",
  30942. base: math.unit(0.015, "m^2")
  30943. },
  30944. "pawsize": {
  30945. name: "Paw Size",
  30946. power: 2,
  30947. type: "area",
  30948. base: math.unit(0.072, "m^2")
  30949. },
  30950. }
  30951. },
  30952. maw: {
  30953. height: math.unit(1.73, "feet"),
  30954. name: "Maw",
  30955. image: {
  30956. source: "./media/characters/remmyzilla/maw.svg"
  30957. }
  30958. },
  30959. },
  30960. [
  30961. {
  30962. name: "Normal",
  30963. height: math.unit(6 + 4 / 12, "feet")
  30964. },
  30965. {
  30966. name: "Minimacro",
  30967. height: math.unit(12 + 8 / 12, "feet")
  30968. },
  30969. {
  30970. name: "Normal",
  30971. height: math.unit(640, "feet"),
  30972. default: true
  30973. },
  30974. {
  30975. name: "Megamacro",
  30976. height: math.unit(6400, "feet")
  30977. },
  30978. {
  30979. name: "Gigamacro",
  30980. height: math.unit(64000, "miles")
  30981. },
  30982. ]
  30983. ))
  30984. characterMakers.push(() => makeCharacter(
  30985. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30986. {
  30987. front: {
  30988. height: math.unit(2.5, "meters"),
  30989. weight: math.unit(300, "lb"),
  30990. name: "Front",
  30991. image: {
  30992. source: "./media/characters/lawrence/front.svg",
  30993. extra: 357 / 335,
  30994. bottom: 30 / 387
  30995. }
  30996. },
  30997. back: {
  30998. height: math.unit(2.5, "meters"),
  30999. weight: math.unit(300, "lb"),
  31000. name: "Back",
  31001. image: {
  31002. source: "./media/characters/lawrence/back.svg",
  31003. extra: 357 / 338,
  31004. bottom: 16 / 373
  31005. }
  31006. },
  31007. head: {
  31008. height: math.unit(0.9, "meter"),
  31009. name: "Head",
  31010. image: {
  31011. source: "./media/characters/lawrence/head.svg"
  31012. }
  31013. },
  31014. maw: {
  31015. height: math.unit(0.7, "meter"),
  31016. name: "Maw",
  31017. image: {
  31018. source: "./media/characters/lawrence/maw.svg"
  31019. }
  31020. },
  31021. footBottom: {
  31022. height: math.unit(0.5, "meter"),
  31023. name: "Foot (Bottom)",
  31024. image: {
  31025. source: "./media/characters/lawrence/foot-bottom.svg"
  31026. }
  31027. },
  31028. footTop: {
  31029. height: math.unit(0.5, "meter"),
  31030. name: "Foot (Top)",
  31031. image: {
  31032. source: "./media/characters/lawrence/foot-top.svg"
  31033. }
  31034. },
  31035. },
  31036. [
  31037. {
  31038. name: "Normal",
  31039. height: math.unit(2.5, "meters"),
  31040. default: true
  31041. },
  31042. {
  31043. name: "Macro",
  31044. height: math.unit(95, "meters")
  31045. },
  31046. {
  31047. name: "Megamacro",
  31048. height: math.unit(150, "km")
  31049. },
  31050. ]
  31051. ))
  31052. characterMakers.push(() => makeCharacter(
  31053. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31054. {
  31055. front: {
  31056. height: math.unit(4.2, "meters"),
  31057. preyCapacity: math.unit(50, "m^3"),
  31058. weight: math.unit(30, "tonnes"),
  31059. name: "Front",
  31060. image: {
  31061. source: "./media/characters/sydney/front.svg",
  31062. extra: 1177/1129,
  31063. bottom: 197/1374
  31064. },
  31065. extraAttributes: {
  31066. "length": {
  31067. name: "Length",
  31068. power: 1,
  31069. type: "length",
  31070. base: math.unit(21, "meters")
  31071. },
  31072. }
  31073. },
  31074. },
  31075. [
  31076. {
  31077. name: "Normal",
  31078. height: math.unit(4.2, "meters"),
  31079. default: true
  31080. },
  31081. ]
  31082. ))
  31083. characterMakers.push(() => makeCharacter(
  31084. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31085. {
  31086. back: {
  31087. height: math.unit(201, "feet"),
  31088. name: "Back",
  31089. image: {
  31090. source: "./media/characters/jessica/back.svg",
  31091. extra: 273 / 259,
  31092. bottom: 7 / 280
  31093. }
  31094. },
  31095. },
  31096. [
  31097. {
  31098. name: "Normal",
  31099. height: math.unit(201, "feet"),
  31100. default: true
  31101. },
  31102. {
  31103. name: "Megamacro",
  31104. height: math.unit(8, "miles")
  31105. },
  31106. ]
  31107. ))
  31108. characterMakers.push(() => makeCharacter(
  31109. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31110. {
  31111. side: {
  31112. height: math.unit(5.6, "m"),
  31113. weight: math.unit(8000, "kg"),
  31114. name: "Side",
  31115. image: {
  31116. source: "./media/characters/victoria/side.svg",
  31117. extra: 1542/1229,
  31118. bottom: 124/1666
  31119. }
  31120. },
  31121. maw: {
  31122. height: math.unit(7.14, "feet"),
  31123. name: "Maw",
  31124. image: {
  31125. source: "./media/characters/victoria/maw.svg"
  31126. }
  31127. },
  31128. },
  31129. [
  31130. {
  31131. name: "Normal",
  31132. height: math.unit(5.6, "m"),
  31133. default: true
  31134. },
  31135. ]
  31136. ))
  31137. characterMakers.push(() => makeCharacter(
  31138. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31139. {
  31140. front: {
  31141. height: math.unit(5 + 6 / 12, "feet"),
  31142. name: "Front",
  31143. image: {
  31144. source: "./media/characters/cat/front.svg",
  31145. extra: 1449/1295,
  31146. bottom: 34/1483
  31147. },
  31148. form: "cat",
  31149. default: true
  31150. },
  31151. back: {
  31152. height: math.unit(5 + 6 / 12, "feet"),
  31153. name: "Back",
  31154. image: {
  31155. source: "./media/characters/cat/back.svg",
  31156. extra: 1466/1301,
  31157. bottom: 19/1485
  31158. },
  31159. form: "cat"
  31160. },
  31161. taur: {
  31162. height: math.unit(7, "feet"),
  31163. name: "Taur",
  31164. image: {
  31165. source: "./media/characters/cat/taur.svg",
  31166. extra: 1389/1233,
  31167. bottom: 83/1472
  31168. },
  31169. form: "taur",
  31170. default: true
  31171. },
  31172. lucarioFront: {
  31173. height: math.unit(4, "feet"),
  31174. name: "Lucario (Front)",
  31175. image: {
  31176. source: "./media/characters/cat/lucario-front.svg",
  31177. extra: 1149/1019,
  31178. bottom: 84/1233
  31179. },
  31180. form: "lucario",
  31181. default: true
  31182. },
  31183. lucarioBack: {
  31184. height: math.unit(4, "feet"),
  31185. name: "Lucario (Back)",
  31186. image: {
  31187. source: "./media/characters/cat/lucario-back.svg",
  31188. extra: 1190/1059,
  31189. bottom: 33/1223
  31190. },
  31191. form: "lucario"
  31192. },
  31193. megaLucario: {
  31194. height: math.unit(4, "feet"),
  31195. name: "Mega Lucario",
  31196. image: {
  31197. source: "./media/characters/cat/mega-lucario.svg",
  31198. extra: 1515 / 1319,
  31199. bottom: 63 / 1578
  31200. },
  31201. form: "lucario"
  31202. },
  31203. nickit: {
  31204. height: math.unit(2, "feet"),
  31205. name: "Nickit",
  31206. image: {
  31207. source: "./media/characters/cat/nickit.svg",
  31208. extra: 1980 / 1585,
  31209. bottom: 102 / 2082
  31210. },
  31211. form: "nickit",
  31212. default: true
  31213. },
  31214. lopunnyFront: {
  31215. height: math.unit(5, "feet"),
  31216. name: "Lopunny (Front)",
  31217. image: {
  31218. source: "./media/characters/cat/lopunny-front.svg",
  31219. extra: 1782 / 1469,
  31220. bottom: 38 / 1820
  31221. },
  31222. form: "lopunny",
  31223. default: true
  31224. },
  31225. lopunnyBack: {
  31226. height: math.unit(5, "feet"),
  31227. name: "Lopunny (Back)",
  31228. image: {
  31229. source: "./media/characters/cat/lopunny-back.svg",
  31230. extra: 1660 / 1490,
  31231. bottom: 25 / 1685
  31232. },
  31233. form: "lopunny"
  31234. },
  31235. },
  31236. [
  31237. {
  31238. name: "Really small",
  31239. height: math.unit(1, "nm")
  31240. },
  31241. {
  31242. name: "Micro",
  31243. height: math.unit(5, "inches")
  31244. },
  31245. {
  31246. name: "Normal",
  31247. height: math.unit(5 + 6 / 12, "feet"),
  31248. default: true
  31249. },
  31250. {
  31251. name: "Macro",
  31252. height: math.unit(50, "feet")
  31253. },
  31254. {
  31255. name: "Macro+",
  31256. height: math.unit(150, "feet")
  31257. },
  31258. {
  31259. name: "Megamacro",
  31260. height: math.unit(100, "miles")
  31261. },
  31262. ]
  31263. ))
  31264. characterMakers.push(() => makeCharacter(
  31265. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31266. {
  31267. front: {
  31268. height: math.unit(63.4, "meters"),
  31269. weight: math.unit(3.28349e+6, "kilograms"),
  31270. name: "Front",
  31271. image: {
  31272. source: "./media/characters/kirina-violet/front.svg",
  31273. extra: 2812 / 2725,
  31274. bottom: 0 / 2812
  31275. }
  31276. },
  31277. back: {
  31278. height: math.unit(63.4, "meters"),
  31279. weight: math.unit(3.28349e+6, "kilograms"),
  31280. name: "Back",
  31281. image: {
  31282. source: "./media/characters/kirina-violet/back.svg",
  31283. extra: 2812 / 2725,
  31284. bottom: 0 / 2812
  31285. }
  31286. },
  31287. mouth: {
  31288. height: math.unit(4.35, "meters"),
  31289. name: "Mouth",
  31290. image: {
  31291. source: "./media/characters/kirina-violet/mouth.svg"
  31292. }
  31293. },
  31294. paw: {
  31295. height: math.unit(5.6, "meters"),
  31296. name: "Paw",
  31297. image: {
  31298. source: "./media/characters/kirina-violet/paw.svg"
  31299. }
  31300. },
  31301. tail: {
  31302. height: math.unit(18, "meters"),
  31303. name: "Tail",
  31304. image: {
  31305. source: "./media/characters/kirina-violet/tail.svg"
  31306. }
  31307. },
  31308. },
  31309. [
  31310. {
  31311. name: "Macro",
  31312. height: math.unit(63.4, "meters"),
  31313. default: true
  31314. },
  31315. ]
  31316. ))
  31317. characterMakers.push(() => makeCharacter(
  31318. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31319. {
  31320. front: {
  31321. height: math.unit(75, "feet"),
  31322. name: "Front",
  31323. image: {
  31324. source: "./media/characters/cat-gigachu/front.svg",
  31325. extra: 1239/1027,
  31326. bottom: 32/1271
  31327. }
  31328. },
  31329. back: {
  31330. height: math.unit(75, "feet"),
  31331. name: "Back",
  31332. image: {
  31333. source: "./media/characters/cat-gigachu/back.svg",
  31334. extra: 1229/1030,
  31335. bottom: 9/1238
  31336. }
  31337. },
  31338. },
  31339. [
  31340. {
  31341. name: "Dynamax",
  31342. height: math.unit(75, "feet"),
  31343. default: true
  31344. },
  31345. ]
  31346. ))
  31347. characterMakers.push(() => makeCharacter(
  31348. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31349. {
  31350. front: {
  31351. height: math.unit(6, "feet"),
  31352. weight: math.unit(150, "lb"),
  31353. name: "Front",
  31354. image: {
  31355. source: "./media/characters/sfaiyan/front.svg",
  31356. extra: 999 / 978,
  31357. bottom: 5 / 1004
  31358. }
  31359. },
  31360. },
  31361. [
  31362. {
  31363. name: "Normal",
  31364. height: math.unit(1.82, "meters")
  31365. },
  31366. {
  31367. name: "Giant",
  31368. height: math.unit(2.27, "km"),
  31369. default: true
  31370. },
  31371. ]
  31372. ))
  31373. characterMakers.push(() => makeCharacter(
  31374. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31375. {
  31376. front: {
  31377. height: math.unit(179, "cm"),
  31378. weight: math.unit(100, "kg"),
  31379. name: "Front",
  31380. image: {
  31381. source: "./media/characters/raunehkeli/front.svg",
  31382. extra: 1934 / 1926,
  31383. bottom: 0 / 1934
  31384. }
  31385. },
  31386. },
  31387. [
  31388. {
  31389. name: "Normal",
  31390. height: math.unit(179, "cm")
  31391. },
  31392. {
  31393. name: "Maximum",
  31394. height: math.unit(575, "meters"),
  31395. default: true
  31396. },
  31397. ]
  31398. ))
  31399. characterMakers.push(() => makeCharacter(
  31400. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31401. {
  31402. front: {
  31403. height: math.unit(6, "feet"),
  31404. weight: math.unit(150, "lb"),
  31405. name: "Front",
  31406. image: {
  31407. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31408. extra: 2625 / 2518,
  31409. bottom: 60 / 2685
  31410. }
  31411. },
  31412. },
  31413. [
  31414. {
  31415. name: "Normal",
  31416. height: math.unit(6 + 2 / 12, "feet")
  31417. },
  31418. {
  31419. name: "Macro",
  31420. height: math.unit(1180, "feet"),
  31421. default: true
  31422. },
  31423. ]
  31424. ))
  31425. characterMakers.push(() => makeCharacter(
  31426. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31427. {
  31428. front: {
  31429. height: math.unit(5 + 6 / 12, "feet"),
  31430. weight: math.unit(108, "lb"),
  31431. name: "Front",
  31432. image: {
  31433. source: "./media/characters/lilith-zott/front.svg",
  31434. extra: 2510 / 2238,
  31435. bottom: 100 / 2610
  31436. }
  31437. },
  31438. frontDressed: {
  31439. height: math.unit(5 + 6 / 12, "feet"),
  31440. weight: math.unit(108, "lb"),
  31441. name: "Front (Dressed)",
  31442. image: {
  31443. source: "./media/characters/lilith-zott/front-dressed.svg",
  31444. extra: 2510 / 2238,
  31445. bottom: 100 / 2610
  31446. }
  31447. },
  31448. },
  31449. [
  31450. {
  31451. name: "Normal",
  31452. height: math.unit(5 + 6 / 12, "feet")
  31453. },
  31454. {
  31455. name: "Macro",
  31456. height: math.unit(1030, "feet"),
  31457. default: true
  31458. },
  31459. ]
  31460. ))
  31461. characterMakers.push(() => makeCharacter(
  31462. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31463. {
  31464. front: {
  31465. height: math.unit(6, "feet"),
  31466. weight: math.unit(150, "lb"),
  31467. name: "Front",
  31468. image: {
  31469. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31470. extra: 2567 / 2435,
  31471. bottom: 39 / 2606
  31472. }
  31473. },
  31474. frontSuper: {
  31475. height: math.unit(6, "feet"),
  31476. name: "Front (Super)",
  31477. image: {
  31478. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31479. extra: 2567 / 2435,
  31480. bottom: 39 / 2606
  31481. }
  31482. },
  31483. },
  31484. [
  31485. {
  31486. name: "Normal",
  31487. height: math.unit(5 + 10 / 12, "feet")
  31488. },
  31489. {
  31490. name: "Macro",
  31491. height: math.unit(1100, "feet"),
  31492. default: true
  31493. },
  31494. ]
  31495. ))
  31496. characterMakers.push(() => makeCharacter(
  31497. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31498. {
  31499. front: {
  31500. height: math.unit(100, "miles"),
  31501. name: "Front",
  31502. image: {
  31503. source: "./media/characters/sona/front.svg",
  31504. extra: 2433 / 2201,
  31505. bottom: 53 / 2486
  31506. }
  31507. },
  31508. foot: {
  31509. height: math.unit(16.1, "miles"),
  31510. name: "Foot",
  31511. image: {
  31512. source: "./media/characters/sona/foot.svg"
  31513. }
  31514. },
  31515. },
  31516. [
  31517. {
  31518. name: "Macro",
  31519. height: math.unit(100, "miles"),
  31520. default: true
  31521. },
  31522. ]
  31523. ))
  31524. characterMakers.push(() => makeCharacter(
  31525. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31526. {
  31527. front: {
  31528. height: math.unit(6, "feet"),
  31529. weight: math.unit(150, "lb"),
  31530. name: "Front",
  31531. image: {
  31532. source: "./media/characters/bailey/front.svg",
  31533. extra: 1778 / 1724,
  31534. bottom: 30 / 1808
  31535. }
  31536. },
  31537. },
  31538. [
  31539. {
  31540. name: "Micro",
  31541. height: math.unit(4, "inches")
  31542. },
  31543. {
  31544. name: "Normal",
  31545. height: math.unit(5 + 5 / 12, "feet"),
  31546. default: true
  31547. },
  31548. {
  31549. name: "Macro",
  31550. height: math.unit(250, "feet")
  31551. },
  31552. {
  31553. name: "Megamacro",
  31554. height: math.unit(100, "miles")
  31555. },
  31556. ]
  31557. ))
  31558. characterMakers.push(() => makeCharacter(
  31559. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31560. {
  31561. front: {
  31562. height: math.unit(5 + 2 / 12, "feet"),
  31563. weight: math.unit(120, "lb"),
  31564. name: "Front",
  31565. image: {
  31566. source: "./media/characters/snaps/front.svg",
  31567. extra: 2370 / 2177,
  31568. bottom: 48 / 2418
  31569. }
  31570. },
  31571. back: {
  31572. height: math.unit(5 + 2 / 12, "feet"),
  31573. weight: math.unit(120, "lb"),
  31574. name: "Back",
  31575. image: {
  31576. source: "./media/characters/snaps/back.svg",
  31577. extra: 2408 / 2258,
  31578. bottom: 15 / 2423
  31579. }
  31580. },
  31581. },
  31582. [
  31583. {
  31584. name: "Micro",
  31585. height: math.unit(9, "inches")
  31586. },
  31587. {
  31588. name: "Normal",
  31589. height: math.unit(5 + 2 / 12, "feet"),
  31590. default: true
  31591. },
  31592. {
  31593. name: "Mini Macro",
  31594. height: math.unit(10, "feet")
  31595. },
  31596. ]
  31597. ))
  31598. characterMakers.push(() => makeCharacter(
  31599. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31600. {
  31601. front: {
  31602. height: math.unit(1.8, "meters"),
  31603. weight: math.unit(85, "kg"),
  31604. name: "Front",
  31605. image: {
  31606. source: "./media/characters/azteck/front.svg",
  31607. extra: 2815 / 2625,
  31608. bottom: 89 / 2904
  31609. }
  31610. },
  31611. back: {
  31612. height: math.unit(1.8, "meters"),
  31613. weight: math.unit(85, "kg"),
  31614. name: "Back",
  31615. image: {
  31616. source: "./media/characters/azteck/back.svg",
  31617. extra: 2856 / 2648,
  31618. bottom: 85 / 2941
  31619. }
  31620. },
  31621. frontDressed: {
  31622. height: math.unit(1.8, "meters"),
  31623. weight: math.unit(85, "kg"),
  31624. name: "Front (Dressed)",
  31625. image: {
  31626. source: "./media/characters/azteck/front-dressed.svg",
  31627. extra: 2147 / 2003,
  31628. bottom: 68 / 2215
  31629. }
  31630. },
  31631. head: {
  31632. height: math.unit(0.47, "meters"),
  31633. weight: math.unit(85, "kg"),
  31634. name: "Head",
  31635. image: {
  31636. source: "./media/characters/azteck/head.svg"
  31637. }
  31638. },
  31639. },
  31640. [
  31641. {
  31642. name: "Bite sized",
  31643. height: math.unit(16, "cm")
  31644. },
  31645. {
  31646. name: "Normal",
  31647. height: math.unit(1.8, "meters"),
  31648. default: true
  31649. },
  31650. ]
  31651. ))
  31652. characterMakers.push(() => makeCharacter(
  31653. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31654. {
  31655. front: {
  31656. height: math.unit(6, "feet"),
  31657. weight: math.unit(150, "lb"),
  31658. name: "Front",
  31659. image: {
  31660. source: "./media/characters/pidge/front.svg",
  31661. extra: 1936/1820,
  31662. bottom: 0/1936
  31663. }
  31664. },
  31665. back: {
  31666. height: math.unit(6, "feet"),
  31667. weight: math.unit(150, "lb"),
  31668. name: "Back",
  31669. image: {
  31670. source: "./media/characters/pidge/back.svg",
  31671. extra: 1938/1843,
  31672. bottom: 0/1938
  31673. }
  31674. },
  31675. casual: {
  31676. height: math.unit(6, "feet"),
  31677. weight: math.unit(150, "lb"),
  31678. name: "Casual",
  31679. image: {
  31680. source: "./media/characters/pidge/casual.svg",
  31681. extra: 1936/1820,
  31682. bottom: 0/1936
  31683. }
  31684. },
  31685. tech: {
  31686. height: math.unit(6, "feet"),
  31687. weight: math.unit(150, "lb"),
  31688. name: "Tech",
  31689. image: {
  31690. source: "./media/characters/pidge/tech.svg",
  31691. extra: 1802/1682,
  31692. bottom: 0/1802
  31693. }
  31694. },
  31695. head: {
  31696. height: math.unit(1.61, "feet"),
  31697. name: "Head",
  31698. image: {
  31699. source: "./media/characters/pidge/head.svg"
  31700. }
  31701. },
  31702. collar: {
  31703. height: math.unit(0.82, "feet"),
  31704. name: "Collar",
  31705. image: {
  31706. source: "./media/characters/pidge/collar.svg"
  31707. }
  31708. },
  31709. },
  31710. [
  31711. {
  31712. name: "Macro",
  31713. height: math.unit(2, "mile"),
  31714. default: true
  31715. },
  31716. {
  31717. name: "PUPPY",
  31718. height: math.unit(20, "miles")
  31719. },
  31720. ]
  31721. ))
  31722. characterMakers.push(() => makeCharacter(
  31723. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31724. {
  31725. front: {
  31726. height: math.unit(6, "feet"),
  31727. weight: math.unit(150, "lb"),
  31728. name: "Front",
  31729. image: {
  31730. source: "./media/characters/en/front.svg",
  31731. extra: 1697 / 1563,
  31732. bottom: 103 / 1800
  31733. }
  31734. },
  31735. back: {
  31736. height: math.unit(6, "feet"),
  31737. weight: math.unit(150, "lb"),
  31738. name: "Back",
  31739. image: {
  31740. source: "./media/characters/en/back.svg",
  31741. extra: 1700 / 1570,
  31742. bottom: 51 / 1751
  31743. }
  31744. },
  31745. frontDressed: {
  31746. height: math.unit(6, "feet"),
  31747. weight: math.unit(150, "lb"),
  31748. name: "Front (Dressed)",
  31749. image: {
  31750. source: "./media/characters/en/front-dressed.svg",
  31751. extra: 1697 / 1563,
  31752. bottom: 103 / 1800
  31753. }
  31754. },
  31755. backDressed: {
  31756. height: math.unit(6, "feet"),
  31757. weight: math.unit(150, "lb"),
  31758. name: "Back (Dressed)",
  31759. image: {
  31760. source: "./media/characters/en/back-dressed.svg",
  31761. extra: 1700 / 1570,
  31762. bottom: 51 / 1751
  31763. }
  31764. },
  31765. },
  31766. [
  31767. {
  31768. name: "Macro",
  31769. height: math.unit(210, "feet"),
  31770. default: true
  31771. },
  31772. ]
  31773. ))
  31774. characterMakers.push(() => makeCharacter(
  31775. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31776. {
  31777. front: {
  31778. height: math.unit(6, "feet"),
  31779. weight: math.unit(150, "lb"),
  31780. name: "Front",
  31781. image: {
  31782. source: "./media/characters/haze-orris/front.svg",
  31783. extra: 3975 / 3525,
  31784. bottom: 137 / 4112
  31785. }
  31786. },
  31787. },
  31788. [
  31789. {
  31790. name: "Micro",
  31791. height: math.unit(150, "mm"),
  31792. default: true
  31793. },
  31794. ]
  31795. ))
  31796. characterMakers.push(() => makeCharacter(
  31797. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31798. {
  31799. front: {
  31800. height: math.unit(6, "feet"),
  31801. weight: math.unit(150, "lb"),
  31802. name: "Front",
  31803. image: {
  31804. source: "./media/characters/casselene-yaro/front.svg",
  31805. extra: 4721 / 4541,
  31806. bottom: 82 / 4803
  31807. }
  31808. },
  31809. back: {
  31810. height: math.unit(6, "feet"),
  31811. weight: math.unit(150, "lb"),
  31812. name: "Back",
  31813. image: {
  31814. source: "./media/characters/casselene-yaro/back.svg",
  31815. extra: 4569 / 4377,
  31816. bottom: 69 / 4638
  31817. }
  31818. },
  31819. dressed: {
  31820. height: math.unit(6, "feet"),
  31821. weight: math.unit(150, "lb"),
  31822. name: "Dressed",
  31823. image: {
  31824. source: "./media/characters/casselene-yaro/dressed.svg",
  31825. extra: 4721 / 4541,
  31826. bottom: 82 / 4803
  31827. }
  31828. },
  31829. maw: {
  31830. height: math.unit(1, "feet"),
  31831. name: "Maw",
  31832. image: {
  31833. source: "./media/characters/casselene-yaro/maw.svg"
  31834. }
  31835. },
  31836. },
  31837. [
  31838. {
  31839. name: "Macro",
  31840. height: math.unit(190, "feet"),
  31841. default: true
  31842. },
  31843. ]
  31844. ))
  31845. characterMakers.push(() => makeCharacter(
  31846. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31847. {
  31848. front: {
  31849. height: math.unit(10, "feet"),
  31850. weight: math.unit(15015, "lb"),
  31851. name: "Front",
  31852. image: {
  31853. source: "./media/characters/platine/front.svg",
  31854. extra: 1741/1650,
  31855. bottom: 84/1825
  31856. }
  31857. },
  31858. side: {
  31859. height: math.unit(10, "feet"),
  31860. weight: math.unit(15015, "lb"),
  31861. name: "Side",
  31862. image: {
  31863. source: "./media/characters/platine/side.svg",
  31864. extra: 1790/1705,
  31865. bottom: 29/1819
  31866. }
  31867. },
  31868. },
  31869. [
  31870. {
  31871. name: "Normal",
  31872. height: math.unit(10, "feet"),
  31873. default: true
  31874. },
  31875. {
  31876. name: "Macro",
  31877. height: math.unit(100, "feet")
  31878. },
  31879. {
  31880. name: "Megamacro",
  31881. height: math.unit(1000, "feet")
  31882. },
  31883. ]
  31884. ))
  31885. characterMakers.push(() => makeCharacter(
  31886. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31887. {
  31888. front: {
  31889. height: math.unit(15 + 5 / 12, "feet"),
  31890. weight: math.unit(4600, "lb"),
  31891. name: "Front",
  31892. image: {
  31893. source: "./media/characters/neapolitan-ananassa/front.svg",
  31894. extra: 2903 / 2736,
  31895. bottom: 0 / 2903
  31896. }
  31897. },
  31898. side: {
  31899. height: math.unit(15 + 5 / 12, "feet"),
  31900. weight: math.unit(4600, "lb"),
  31901. name: "Side",
  31902. image: {
  31903. source: "./media/characters/neapolitan-ananassa/side.svg",
  31904. extra: 2925 / 2719,
  31905. bottom: 0 / 2925
  31906. }
  31907. },
  31908. back: {
  31909. height: math.unit(15 + 5 / 12, "feet"),
  31910. weight: math.unit(4600, "lb"),
  31911. name: "Back",
  31912. image: {
  31913. source: "./media/characters/neapolitan-ananassa/back.svg",
  31914. extra: 2903 / 2736,
  31915. bottom: 0 / 2903
  31916. }
  31917. },
  31918. },
  31919. [
  31920. {
  31921. name: "Normal",
  31922. height: math.unit(15 + 5 / 12, "feet"),
  31923. default: true
  31924. },
  31925. {
  31926. name: "Post-Millenium",
  31927. height: math.unit(35 + 5 / 12, "feet")
  31928. },
  31929. {
  31930. name: "Post-Era",
  31931. height: math.unit(450 + 5 / 12, "feet")
  31932. },
  31933. ]
  31934. ))
  31935. characterMakers.push(() => makeCharacter(
  31936. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31937. {
  31938. front: {
  31939. height: math.unit(300, "meters"),
  31940. weight: math.unit(125000, "tonnes"),
  31941. name: "Front",
  31942. image: {
  31943. source: "./media/characters/pazuzu/front.svg",
  31944. extra: 877 / 794,
  31945. bottom: 47 / 924
  31946. }
  31947. },
  31948. },
  31949. [
  31950. {
  31951. name: "Macro",
  31952. height: math.unit(300, "meters"),
  31953. default: true
  31954. },
  31955. ]
  31956. ))
  31957. characterMakers.push(() => makeCharacter(
  31958. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31959. {
  31960. side: {
  31961. height: math.unit(10 + 7 / 12, "feet"),
  31962. weight: math.unit(2.5, "tons"),
  31963. name: "Side",
  31964. image: {
  31965. source: "./media/characters/aasha/side.svg",
  31966. extra: 1345 / 1245,
  31967. bottom: 111 / 1456
  31968. }
  31969. },
  31970. back: {
  31971. height: math.unit(10 + 7 / 12, "feet"),
  31972. weight: math.unit(2.5, "tons"),
  31973. name: "Back",
  31974. image: {
  31975. source: "./media/characters/aasha/back.svg",
  31976. extra: 1133 / 1057,
  31977. bottom: 257 / 1390
  31978. }
  31979. },
  31980. },
  31981. [
  31982. {
  31983. name: "Normal",
  31984. height: math.unit(10 + 7 / 12, "feet"),
  31985. default: true
  31986. },
  31987. ]
  31988. ))
  31989. characterMakers.push(() => makeCharacter(
  31990. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31991. {
  31992. front: {
  31993. height: math.unit(6 + 3 / 12, "feet"),
  31994. name: "Front",
  31995. image: {
  31996. source: "./media/characters/nevan/front.svg",
  31997. extra: 704 / 704,
  31998. bottom: 28 / 732
  31999. }
  32000. },
  32001. back: {
  32002. height: math.unit(6 + 3 / 12, "feet"),
  32003. name: "Back",
  32004. image: {
  32005. source: "./media/characters/nevan/back.svg",
  32006. extra: 714 / 714,
  32007. bottom: 21 / 735
  32008. }
  32009. },
  32010. frontFlaccid: {
  32011. height: math.unit(6 + 3 / 12, "feet"),
  32012. name: "Front (Flaccid)",
  32013. image: {
  32014. source: "./media/characters/nevan/front-flaccid.svg",
  32015. extra: 704 / 704,
  32016. bottom: 28 / 732
  32017. }
  32018. },
  32019. frontErect: {
  32020. height: math.unit(6 + 3 / 12, "feet"),
  32021. name: "Front (Erect)",
  32022. image: {
  32023. source: "./media/characters/nevan/front-erect.svg",
  32024. extra: 704 / 704,
  32025. bottom: 28 / 732
  32026. }
  32027. },
  32028. backFlaccid: {
  32029. height: math.unit(6 + 3 / 12, "feet"),
  32030. name: "Back (Flaccid)",
  32031. image: {
  32032. source: "./media/characters/nevan/back-flaccid.svg",
  32033. extra: 714 / 714,
  32034. bottom: 21 / 735
  32035. }
  32036. },
  32037. },
  32038. [
  32039. {
  32040. name: "Normal",
  32041. height: math.unit(6 + 3 / 12, "feet"),
  32042. default: true
  32043. },
  32044. ]
  32045. ))
  32046. characterMakers.push(() => makeCharacter(
  32047. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32048. {
  32049. front: {
  32050. height: math.unit(4, "feet"),
  32051. name: "Front",
  32052. image: {
  32053. source: "./media/characters/arhan/front.svg",
  32054. extra: 3368 / 3133,
  32055. bottom: 0 / 3368
  32056. }
  32057. },
  32058. side: {
  32059. height: math.unit(4, "feet"),
  32060. name: "Side",
  32061. image: {
  32062. source: "./media/characters/arhan/side.svg",
  32063. extra: 3347 / 3105,
  32064. bottom: 0 / 3347
  32065. }
  32066. },
  32067. tongue: {
  32068. height: math.unit(1.42, "feet"),
  32069. name: "Tongue",
  32070. image: {
  32071. source: "./media/characters/arhan/tongue.svg"
  32072. }
  32073. },
  32074. head: {
  32075. height: math.unit(0.85, "feet"),
  32076. name: "Head",
  32077. image: {
  32078. source: "./media/characters/arhan/head.svg"
  32079. }
  32080. },
  32081. },
  32082. [
  32083. {
  32084. name: "Normal",
  32085. height: math.unit(4, "feet"),
  32086. default: true
  32087. },
  32088. ]
  32089. ))
  32090. characterMakers.push(() => makeCharacter(
  32091. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32092. {
  32093. front: {
  32094. height: math.unit(5 + 7.5 / 12, "feet"),
  32095. weight: math.unit(120, "lb"),
  32096. name: "Front",
  32097. image: {
  32098. source: "./media/characters/digi-duncan/front.svg",
  32099. extra: 330 / 326,
  32100. bottom: 16 / 346
  32101. }
  32102. },
  32103. side: {
  32104. height: math.unit(5 + 7.5 / 12, "feet"),
  32105. weight: math.unit(120, "lb"),
  32106. name: "Side",
  32107. image: {
  32108. source: "./media/characters/digi-duncan/side.svg",
  32109. extra: 341 / 337,
  32110. bottom: 1 / 342
  32111. }
  32112. },
  32113. back: {
  32114. height: math.unit(5 + 7.5 / 12, "feet"),
  32115. weight: math.unit(120, "lb"),
  32116. name: "Back",
  32117. image: {
  32118. source: "./media/characters/digi-duncan/back.svg",
  32119. extra: 330 / 326,
  32120. bottom: 12 / 342
  32121. }
  32122. },
  32123. },
  32124. [
  32125. {
  32126. name: "Speck",
  32127. height: math.unit(0.25, "mm")
  32128. },
  32129. {
  32130. name: "Micro",
  32131. height: math.unit(5, "mm")
  32132. },
  32133. {
  32134. name: "Tiny",
  32135. height: math.unit(0.5, "inches"),
  32136. default: true
  32137. },
  32138. {
  32139. name: "Human",
  32140. height: math.unit(5 + 7.5 / 12, "feet")
  32141. },
  32142. {
  32143. name: "Minigiant",
  32144. height: math.unit(8 + 5.25, "feet")
  32145. },
  32146. {
  32147. name: "Giant",
  32148. height: math.unit(2000, "feet")
  32149. },
  32150. {
  32151. name: "Mega",
  32152. height: math.unit(371.1, "miles")
  32153. },
  32154. ]
  32155. ))
  32156. characterMakers.push(() => makeCharacter(
  32157. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32158. {
  32159. front: {
  32160. height: math.unit(2, "meters"),
  32161. weight: math.unit(350, "kg"),
  32162. name: "Front",
  32163. image: {
  32164. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32165. extra: 898 / 838,
  32166. bottom: 9 / 907
  32167. }
  32168. },
  32169. },
  32170. [
  32171. {
  32172. name: "Micro",
  32173. height: math.unit(8, "meters")
  32174. },
  32175. {
  32176. name: "Normal",
  32177. height: math.unit(50, "meters"),
  32178. default: true
  32179. },
  32180. {
  32181. name: "Macro",
  32182. height: math.unit(500, "meters")
  32183. },
  32184. ]
  32185. ))
  32186. characterMakers.push(() => makeCharacter(
  32187. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32188. {
  32189. front: {
  32190. height: math.unit(6 + 6 / 12, "feet"),
  32191. name: "Front",
  32192. image: {
  32193. source: "./media/characters/khardesh/front.svg",
  32194. extra: 1788/1596,
  32195. bottom: 66/1854
  32196. }
  32197. },
  32198. back: {
  32199. height: math.unit(6 + 6 / 12, "feet"),
  32200. name: "Back",
  32201. image: {
  32202. source: "./media/characters/khardesh/back.svg",
  32203. extra: 1781/1584,
  32204. bottom: 68/1849
  32205. }
  32206. },
  32207. },
  32208. [
  32209. {
  32210. name: "Normal",
  32211. height: math.unit(6 + 6 / 12, "feet"),
  32212. default: true
  32213. },
  32214. {
  32215. name: "Normal+",
  32216. height: math.unit(4, "meters")
  32217. },
  32218. {
  32219. name: "Macro",
  32220. height: math.unit(50, "meters")
  32221. },
  32222. {
  32223. name: "Macro+",
  32224. height: math.unit(100, "meters")
  32225. },
  32226. {
  32227. name: "Megamacro",
  32228. height: math.unit(20, "km")
  32229. },
  32230. ]
  32231. ))
  32232. characterMakers.push(() => makeCharacter(
  32233. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32234. {
  32235. front: {
  32236. height: math.unit(6, "feet"),
  32237. weight: math.unit(150, "lb"),
  32238. name: "Front",
  32239. image: {
  32240. source: "./media/characters/kosho/front.svg",
  32241. extra: 1847 / 1847,
  32242. bottom: 86 / 1933
  32243. }
  32244. },
  32245. },
  32246. [
  32247. {
  32248. name: "Second-stage micro",
  32249. height: math.unit(0.5, "inches")
  32250. },
  32251. {
  32252. name: "First-stage micro",
  32253. height: math.unit(6, "inches")
  32254. },
  32255. {
  32256. name: "Normal",
  32257. height: math.unit(6, "feet"),
  32258. default: true
  32259. },
  32260. {
  32261. name: "First-stage macro",
  32262. height: math.unit(72, "feet")
  32263. },
  32264. {
  32265. name: "Second-stage macro",
  32266. height: math.unit(864, "feet")
  32267. },
  32268. ]
  32269. ))
  32270. characterMakers.push(() => makeCharacter(
  32271. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32272. {
  32273. normal: {
  32274. height: math.unit(4 + 6 / 12, "feet"),
  32275. name: "Normal",
  32276. image: {
  32277. source: "./media/characters/hydra/normal.svg",
  32278. extra: 2833 / 2634,
  32279. bottom: 68 / 2901
  32280. }
  32281. },
  32282. smol: {
  32283. height: math.unit(0.705, "inches"),
  32284. name: "Smol",
  32285. image: {
  32286. source: "./media/characters/hydra/smol.svg",
  32287. extra: 2715 / 2540,
  32288. bottom: 0 / 2715
  32289. }
  32290. },
  32291. },
  32292. [
  32293. {
  32294. name: "Normal",
  32295. height: math.unit(4 + 6 / 12, "feet"),
  32296. default: true
  32297. }
  32298. ]
  32299. ))
  32300. characterMakers.push(() => makeCharacter(
  32301. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32302. {
  32303. front: {
  32304. height: math.unit(0.6, "cm"),
  32305. name: "Front",
  32306. image: {
  32307. source: "./media/characters/daz/front.svg",
  32308. extra: 1682 / 1164,
  32309. bottom: 42 / 1724
  32310. }
  32311. },
  32312. },
  32313. [
  32314. {
  32315. name: "Normal",
  32316. height: math.unit(0.6, "cm"),
  32317. default: true
  32318. },
  32319. ]
  32320. ))
  32321. characterMakers.push(() => makeCharacter(
  32322. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32323. {
  32324. front: {
  32325. height: math.unit(6, "feet"),
  32326. weight: math.unit(235, "lb"),
  32327. name: "Front",
  32328. image: {
  32329. source: "./media/characters/theo-pangolin/front.svg",
  32330. extra: 1996 / 1969,
  32331. bottom: 115 / 2111
  32332. }
  32333. },
  32334. back: {
  32335. height: math.unit(6, "feet"),
  32336. weight: math.unit(235, "lb"),
  32337. name: "Back",
  32338. image: {
  32339. source: "./media/characters/theo-pangolin/back.svg",
  32340. extra: 1979 / 1979,
  32341. bottom: 40 / 2019
  32342. }
  32343. },
  32344. feral: {
  32345. height: math.unit(2, "feet"),
  32346. weight: math.unit(30, "lb"),
  32347. name: "Feral",
  32348. image: {
  32349. source: "./media/characters/theo-pangolin/feral.svg",
  32350. extra: 803 / 791,
  32351. bottom: 181 / 984
  32352. }
  32353. },
  32354. footFive: {
  32355. height: math.unit(1.43, "feet"),
  32356. name: "Foot (Five Toes)",
  32357. image: {
  32358. source: "./media/characters/theo-pangolin/foot-five.svg"
  32359. }
  32360. },
  32361. footFour: {
  32362. height: math.unit(1.43, "feet"),
  32363. name: "Foot (Four Toes)",
  32364. image: {
  32365. source: "./media/characters/theo-pangolin/foot-four.svg"
  32366. }
  32367. },
  32368. handFour: {
  32369. height: math.unit(0.81, "feet"),
  32370. name: "Hand (Four Fingers)",
  32371. image: {
  32372. source: "./media/characters/theo-pangolin/hand-four.svg"
  32373. }
  32374. },
  32375. handThree: {
  32376. height: math.unit(0.81, "feet"),
  32377. name: "Hand (Three Fingers)",
  32378. image: {
  32379. source: "./media/characters/theo-pangolin/hand-three.svg"
  32380. }
  32381. },
  32382. headFront: {
  32383. height: math.unit(1.37, "feet"),
  32384. name: "Head (Front)",
  32385. image: {
  32386. source: "./media/characters/theo-pangolin/head-front.svg"
  32387. }
  32388. },
  32389. headSide: {
  32390. height: math.unit(1.43, "feet"),
  32391. name: "Head (Side)",
  32392. image: {
  32393. source: "./media/characters/theo-pangolin/head-side.svg"
  32394. }
  32395. },
  32396. tongue: {
  32397. height: math.unit(2.29, "feet"),
  32398. name: "Tongue",
  32399. image: {
  32400. source: "./media/characters/theo-pangolin/tongue.svg"
  32401. }
  32402. },
  32403. },
  32404. [
  32405. {
  32406. name: "Normal",
  32407. height: math.unit(6, "feet")
  32408. },
  32409. {
  32410. name: "Macro",
  32411. height: math.unit(400, "feet"),
  32412. default: true
  32413. },
  32414. ]
  32415. ))
  32416. characterMakers.push(() => makeCharacter(
  32417. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32418. {
  32419. front: {
  32420. height: math.unit(6, "inches"),
  32421. weight: math.unit(0.036, "kg"),
  32422. name: "Front",
  32423. image: {
  32424. source: "./media/characters/renée/front.svg",
  32425. extra: 900 / 886,
  32426. bottom: 8 / 908
  32427. }
  32428. },
  32429. },
  32430. [
  32431. {
  32432. name: "Nano",
  32433. height: math.unit(1, "nm")
  32434. },
  32435. {
  32436. name: "Micro",
  32437. height: math.unit(1, "mm")
  32438. },
  32439. {
  32440. name: "Normal",
  32441. height: math.unit(6, "inches")
  32442. },
  32443. {
  32444. name: "Macro",
  32445. height: math.unit(2000, "feet"),
  32446. default: true
  32447. },
  32448. {
  32449. name: "Megamacro",
  32450. height: math.unit(2, "km")
  32451. },
  32452. {
  32453. name: "Gigamacro",
  32454. height: math.unit(2000, "km")
  32455. },
  32456. {
  32457. name: "Teramacro",
  32458. height: math.unit(250000, "km")
  32459. },
  32460. ]
  32461. ))
  32462. characterMakers.push(() => makeCharacter(
  32463. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32464. {
  32465. front: {
  32466. height: math.unit(4, "meters"),
  32467. weight: math.unit(150, "kg"),
  32468. name: "Front",
  32469. image: {
  32470. source: "./media/characters/caledvwlch/front.svg",
  32471. extra: 1757/1537,
  32472. bottom: 31/1788
  32473. }
  32474. },
  32475. side: {
  32476. height: math.unit(4, "meters"),
  32477. weight: math.unit(150, "kg"),
  32478. name: "Side",
  32479. image: {
  32480. source: "./media/characters/caledvwlch/side.svg",
  32481. extra: 1605 / 1536,
  32482. bottom: 31 / 1636
  32483. }
  32484. },
  32485. back: {
  32486. height: math.unit(4, "meters"),
  32487. weight: math.unit(150, "kg"),
  32488. name: "Back",
  32489. image: {
  32490. source: "./media/characters/caledvwlch/back.svg",
  32491. extra: 1635 / 1565,
  32492. bottom: 27 / 1662
  32493. }
  32494. },
  32495. },
  32496. [
  32497. {
  32498. name: "\"Incognito\"",
  32499. height: math.unit(4, "meters")
  32500. },
  32501. {
  32502. name: "Small rampage",
  32503. height: math.unit(600, "meters")
  32504. },
  32505. {
  32506. name: "Mega",
  32507. height: math.unit(30, "km")
  32508. },
  32509. {
  32510. name: "Home-size",
  32511. height: math.unit(50, "km"),
  32512. default: true
  32513. },
  32514. {
  32515. name: "Giga",
  32516. height: math.unit(300, "km")
  32517. },
  32518. {
  32519. name: "Lounging",
  32520. height: math.unit(11000, "km")
  32521. },
  32522. {
  32523. name: "Planet snacking",
  32524. height: math.unit(2000000, "km")
  32525. },
  32526. ]
  32527. ))
  32528. characterMakers.push(() => makeCharacter(
  32529. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32530. {
  32531. front: {
  32532. height: math.unit(6, "feet"),
  32533. weight: math.unit(215, "lb"),
  32534. name: "Front",
  32535. image: {
  32536. source: "./media/characters/sapphire-svell/front.svg",
  32537. extra: 495 / 455,
  32538. bottom: 20 / 515
  32539. }
  32540. },
  32541. back: {
  32542. height: math.unit(6, "feet"),
  32543. weight: math.unit(216, "lb"),
  32544. name: "Back",
  32545. image: {
  32546. source: "./media/characters/sapphire-svell/back.svg",
  32547. extra: 497 / 477,
  32548. bottom: 7 / 504
  32549. }
  32550. },
  32551. maw: {
  32552. height: math.unit(1.57, "feet"),
  32553. name: "Maw",
  32554. image: {
  32555. source: "./media/characters/sapphire-svell/maw.svg"
  32556. }
  32557. },
  32558. foot: {
  32559. height: math.unit(1.07, "feet"),
  32560. name: "Foot",
  32561. image: {
  32562. source: "./media/characters/sapphire-svell/foot.svg"
  32563. }
  32564. },
  32565. toering: {
  32566. height: math.unit(1.7, "inch"),
  32567. name: "Toering",
  32568. image: {
  32569. source: "./media/characters/sapphire-svell/toering.svg"
  32570. }
  32571. },
  32572. },
  32573. [
  32574. {
  32575. name: "Normal",
  32576. height: math.unit(300, "feet"),
  32577. default: true
  32578. },
  32579. {
  32580. name: "Augmented",
  32581. height: math.unit(1250, "feet")
  32582. },
  32583. {
  32584. name: "Unleashed",
  32585. height: math.unit(3000, "feet")
  32586. },
  32587. ]
  32588. ))
  32589. characterMakers.push(() => makeCharacter(
  32590. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32591. {
  32592. side: {
  32593. height: math.unit(2 + 3 / 12, "feet"),
  32594. weight: math.unit(110, "lb"),
  32595. name: "Side",
  32596. image: {
  32597. source: "./media/characters/glitch-flux/side.svg",
  32598. extra: 997 / 805,
  32599. bottom: 20 / 1017
  32600. }
  32601. },
  32602. },
  32603. [
  32604. {
  32605. name: "Normal",
  32606. height: math.unit(2 + 3 / 12, "feet"),
  32607. default: true
  32608. },
  32609. ]
  32610. ))
  32611. characterMakers.push(() => makeCharacter(
  32612. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32613. {
  32614. front: {
  32615. height: math.unit(4, "meters"),
  32616. name: "Front",
  32617. image: {
  32618. source: "./media/characters/mid/front.svg",
  32619. extra: 507 / 476,
  32620. bottom: 17 / 524
  32621. }
  32622. },
  32623. back: {
  32624. height: math.unit(4, "meters"),
  32625. name: "Back",
  32626. image: {
  32627. source: "./media/characters/mid/back.svg",
  32628. extra: 519 / 487,
  32629. bottom: 7 / 526
  32630. }
  32631. },
  32632. stuck: {
  32633. height: math.unit(2.2, "meters"),
  32634. name: "Stuck",
  32635. image: {
  32636. source: "./media/characters/mid/stuck.svg",
  32637. extra: 1951 / 1869,
  32638. bottom: 88 / 2039
  32639. }
  32640. }
  32641. },
  32642. [
  32643. {
  32644. name: "Normal",
  32645. height: math.unit(4, "meters"),
  32646. default: true
  32647. },
  32648. {
  32649. name: "Big",
  32650. height: math.unit(10, "meters")
  32651. },
  32652. {
  32653. name: "Macro",
  32654. height: math.unit(800, "meters")
  32655. },
  32656. {
  32657. name: "Megamacro",
  32658. height: math.unit(100, "km")
  32659. },
  32660. {
  32661. name: "Overgrown",
  32662. height: math.unit(1, "parsec")
  32663. },
  32664. ]
  32665. ))
  32666. characterMakers.push(() => makeCharacter(
  32667. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32668. {
  32669. front: {
  32670. height: math.unit(2.5, "meters"),
  32671. weight: math.unit(225, "kg"),
  32672. name: "Front",
  32673. image: {
  32674. source: "./media/characters/iris/front.svg",
  32675. extra: 3348 / 3251,
  32676. bottom: 205 / 3553
  32677. }
  32678. },
  32679. maw: {
  32680. height: math.unit(0.56, "meter"),
  32681. name: "Maw",
  32682. image: {
  32683. source: "./media/characters/iris/maw.svg"
  32684. }
  32685. },
  32686. },
  32687. [
  32688. {
  32689. name: "Mewter cat",
  32690. height: math.unit(1.2, "meters")
  32691. },
  32692. {
  32693. name: "Normal",
  32694. height: math.unit(2.5, "meters"),
  32695. default: true
  32696. },
  32697. {
  32698. name: "Minimacro",
  32699. height: math.unit(18, "feet")
  32700. },
  32701. {
  32702. name: "Macro",
  32703. height: math.unit(140, "feet")
  32704. },
  32705. {
  32706. name: "Macro+",
  32707. height: math.unit(180, "meters")
  32708. },
  32709. {
  32710. name: "Megamacro",
  32711. height: math.unit(2746, "meters")
  32712. },
  32713. ]
  32714. ))
  32715. characterMakers.push(() => makeCharacter(
  32716. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32717. {
  32718. front: {
  32719. height: math.unit(6, "feet"),
  32720. weight: math.unit(135, "lb"),
  32721. name: "Front",
  32722. image: {
  32723. source: "./media/characters/axel/front.svg",
  32724. extra: 908 / 908,
  32725. bottom: 58 / 966
  32726. }
  32727. },
  32728. side: {
  32729. height: math.unit(6, "feet"),
  32730. weight: math.unit(135, "lb"),
  32731. name: "Side",
  32732. image: {
  32733. source: "./media/characters/axel/side.svg",
  32734. extra: 958 / 958,
  32735. bottom: 11 / 969
  32736. }
  32737. },
  32738. back: {
  32739. height: math.unit(6, "feet"),
  32740. weight: math.unit(135, "lb"),
  32741. name: "Back",
  32742. image: {
  32743. source: "./media/characters/axel/back.svg",
  32744. extra: 887 / 887,
  32745. bottom: 34 / 921
  32746. }
  32747. },
  32748. head: {
  32749. height: math.unit(1.07, "feet"),
  32750. name: "Head",
  32751. image: {
  32752. source: "./media/characters/axel/head.svg"
  32753. }
  32754. },
  32755. beak: {
  32756. height: math.unit(1.4, "feet"),
  32757. name: "Beak",
  32758. image: {
  32759. source: "./media/characters/axel/beak.svg"
  32760. }
  32761. },
  32762. beakSide: {
  32763. height: math.unit(1.4, "feet"),
  32764. name: "Beak Side",
  32765. image: {
  32766. source: "./media/characters/axel/beak-side.svg"
  32767. }
  32768. },
  32769. sheath: {
  32770. height: math.unit(0.5, "feet"),
  32771. name: "Sheath",
  32772. image: {
  32773. source: "./media/characters/axel/sheath.svg"
  32774. }
  32775. },
  32776. dick: {
  32777. height: math.unit(0.98, "feet"),
  32778. name: "Dick",
  32779. image: {
  32780. source: "./media/characters/axel/dick.svg"
  32781. }
  32782. },
  32783. },
  32784. [
  32785. {
  32786. name: "Macro",
  32787. height: math.unit(68, "meters"),
  32788. default: true
  32789. },
  32790. ]
  32791. ))
  32792. characterMakers.push(() => makeCharacter(
  32793. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32794. {
  32795. front: {
  32796. height: math.unit(3.5, "meters"),
  32797. weight: math.unit(1200, "kg"),
  32798. name: "Front",
  32799. image: {
  32800. source: "./media/characters/joanna/front.svg",
  32801. extra: 1596 / 1488,
  32802. bottom: 29 / 1625
  32803. }
  32804. },
  32805. back: {
  32806. height: math.unit(3.5, "meters"),
  32807. weight: math.unit(1200, "kg"),
  32808. name: "Back",
  32809. image: {
  32810. source: "./media/characters/joanna/back.svg",
  32811. extra: 1594 / 1495,
  32812. bottom: 26 / 1620
  32813. }
  32814. },
  32815. frontShorts: {
  32816. height: math.unit(3.5, "meters"),
  32817. weight: math.unit(1200, "kg"),
  32818. name: "Front (Shorts)",
  32819. image: {
  32820. source: "./media/characters/joanna/front-shorts.svg",
  32821. extra: 1596 / 1488,
  32822. bottom: 29 / 1625
  32823. }
  32824. },
  32825. frontBiker: {
  32826. height: math.unit(3.5, "meters"),
  32827. weight: math.unit(1200, "kg"),
  32828. name: "Front (Biker)",
  32829. image: {
  32830. source: "./media/characters/joanna/front-biker.svg",
  32831. extra: 1596 / 1488,
  32832. bottom: 29 / 1625
  32833. }
  32834. },
  32835. backBiker: {
  32836. height: math.unit(3.5, "meters"),
  32837. weight: math.unit(1200, "kg"),
  32838. name: "Back (Biker)",
  32839. image: {
  32840. source: "./media/characters/joanna/back-biker.svg",
  32841. extra: 1594 / 1495,
  32842. bottom: 88 / 1682
  32843. }
  32844. },
  32845. bikeLeft: {
  32846. height: math.unit(2.4, "meters"),
  32847. weight: math.unit(1600, "kg"),
  32848. name: "Bike (Left)",
  32849. image: {
  32850. source: "./media/characters/joanna/bike-left.svg",
  32851. extra: 720 / 720,
  32852. bottom: 8 / 728
  32853. }
  32854. },
  32855. bikeRight: {
  32856. height: math.unit(2.4, "meters"),
  32857. weight: math.unit(1600, "kg"),
  32858. name: "Bike (Right)",
  32859. image: {
  32860. source: "./media/characters/joanna/bike-right.svg",
  32861. extra: 720 / 720,
  32862. bottom: 8 / 728
  32863. }
  32864. },
  32865. },
  32866. [
  32867. {
  32868. name: "Incognito",
  32869. height: math.unit(3.5, "meters")
  32870. },
  32871. {
  32872. name: "Casual Big",
  32873. height: math.unit(200, "meters")
  32874. },
  32875. {
  32876. name: "Macro",
  32877. height: math.unit(600, "meters")
  32878. },
  32879. {
  32880. name: "Original",
  32881. height: math.unit(20, "km"),
  32882. default: true
  32883. },
  32884. {
  32885. name: "Giga",
  32886. height: math.unit(400, "km")
  32887. },
  32888. {
  32889. name: "Lounging",
  32890. height: math.unit(1500, "km")
  32891. },
  32892. {
  32893. name: "Planetary",
  32894. height: math.unit(200000, "km")
  32895. },
  32896. ]
  32897. ))
  32898. characterMakers.push(() => makeCharacter(
  32899. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32900. {
  32901. front: {
  32902. height: math.unit(6, "feet"),
  32903. weight: math.unit(150, "lb"),
  32904. name: "Front",
  32905. image: {
  32906. source: "./media/characters/hugo-sigil/front.svg",
  32907. extra: 522 / 500,
  32908. bottom: 2 / 524
  32909. }
  32910. },
  32911. back: {
  32912. height: math.unit(6, "feet"),
  32913. weight: math.unit(150, "lb"),
  32914. name: "Back",
  32915. image: {
  32916. source: "./media/characters/hugo-sigil/back.svg",
  32917. extra: 519 / 495,
  32918. bottom: 5 / 524
  32919. }
  32920. },
  32921. maw: {
  32922. height: math.unit(1.4, "feet"),
  32923. weight: math.unit(150, "lb"),
  32924. name: "Maw",
  32925. image: {
  32926. source: "./media/characters/hugo-sigil/maw.svg"
  32927. }
  32928. },
  32929. feet: {
  32930. height: math.unit(1.56, "feet"),
  32931. weight: math.unit(150, "lb"),
  32932. name: "Feet",
  32933. image: {
  32934. source: "./media/characters/hugo-sigil/feet.svg",
  32935. extra: 177 / 177,
  32936. bottom: 12 / 189
  32937. }
  32938. },
  32939. },
  32940. [
  32941. {
  32942. name: "Normal",
  32943. height: math.unit(6, "feet")
  32944. },
  32945. {
  32946. name: "Macro",
  32947. height: math.unit(200, "feet"),
  32948. default: true
  32949. },
  32950. ]
  32951. ))
  32952. characterMakers.push(() => makeCharacter(
  32953. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32954. {
  32955. front: {
  32956. height: math.unit(6, "feet"),
  32957. weight: math.unit(150, "lb"),
  32958. name: "Front",
  32959. image: {
  32960. source: "./media/characters/peri/front.svg",
  32961. extra: 2354 / 2233,
  32962. bottom: 49 / 2403
  32963. }
  32964. },
  32965. },
  32966. [
  32967. {
  32968. name: "Really Small",
  32969. height: math.unit(1, "nm")
  32970. },
  32971. {
  32972. name: "Micro",
  32973. height: math.unit(4, "inches")
  32974. },
  32975. {
  32976. name: "Normal",
  32977. height: math.unit(7, "inches"),
  32978. default: true
  32979. },
  32980. {
  32981. name: "Macro",
  32982. height: math.unit(400, "feet")
  32983. },
  32984. {
  32985. name: "Megamacro",
  32986. height: math.unit(100, "miles")
  32987. },
  32988. ]
  32989. ))
  32990. characterMakers.push(() => makeCharacter(
  32991. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32992. {
  32993. frontSlim: {
  32994. height: math.unit(7, "feet"),
  32995. name: "Front (Slim)",
  32996. image: {
  32997. source: "./media/characters/issilora/front-slim.svg",
  32998. extra: 529 / 449,
  32999. bottom: 53 / 582
  33000. }
  33001. },
  33002. sideSlim: {
  33003. height: math.unit(7, "feet"),
  33004. name: "Side (Slim)",
  33005. image: {
  33006. source: "./media/characters/issilora/side-slim.svg",
  33007. extra: 570 / 480,
  33008. bottom: 30 / 600
  33009. }
  33010. },
  33011. backSlim: {
  33012. height: math.unit(7, "feet"),
  33013. name: "Back (Slim)",
  33014. image: {
  33015. source: "./media/characters/issilora/back-slim.svg",
  33016. extra: 537 / 455,
  33017. bottom: 46 / 583
  33018. }
  33019. },
  33020. frontBuff: {
  33021. height: math.unit(7, "feet"),
  33022. name: "Front (Buff)",
  33023. image: {
  33024. source: "./media/characters/issilora/front-buff.svg",
  33025. extra: 2310 / 2035,
  33026. bottom: 335 / 2645
  33027. }
  33028. },
  33029. head: {
  33030. height: math.unit(1.94, "feet"),
  33031. name: "Head",
  33032. image: {
  33033. source: "./media/characters/issilora/head.svg"
  33034. }
  33035. },
  33036. },
  33037. [
  33038. {
  33039. name: "Minimum",
  33040. height: math.unit(7, "feet")
  33041. },
  33042. {
  33043. name: "Comfortable",
  33044. height: math.unit(17, "feet")
  33045. },
  33046. {
  33047. name: "Fun Size",
  33048. height: math.unit(47, "feet")
  33049. },
  33050. {
  33051. name: "Natural Macro",
  33052. height: math.unit(137, "feet"),
  33053. default: true
  33054. },
  33055. {
  33056. name: "Maximum Kaiju",
  33057. height: math.unit(397, "feet")
  33058. },
  33059. ]
  33060. ))
  33061. characterMakers.push(() => makeCharacter(
  33062. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33063. {
  33064. front: {
  33065. height: math.unit(50 + 9/12, "feet"),
  33066. weight: math.unit(32.8, "tons"),
  33067. name: "Front",
  33068. image: {
  33069. source: "./media/characters/irb'iiritaahn/front.svg",
  33070. extra: 1878/1826,
  33071. bottom: 326/2204
  33072. }
  33073. },
  33074. back: {
  33075. height: math.unit(50 + 9/12, "feet"),
  33076. weight: math.unit(32.8, "tons"),
  33077. name: "Back",
  33078. image: {
  33079. source: "./media/characters/irb'iiritaahn/back.svg",
  33080. extra: 2052/2018,
  33081. bottom: 152/2204
  33082. }
  33083. },
  33084. head: {
  33085. height: math.unit(12.86, "feet"),
  33086. name: "Head",
  33087. image: {
  33088. source: "./media/characters/irb'iiritaahn/head.svg"
  33089. }
  33090. },
  33091. maw: {
  33092. height: math.unit(9.66, "feet"),
  33093. name: "Maw",
  33094. image: {
  33095. source: "./media/characters/irb'iiritaahn/maw.svg"
  33096. }
  33097. },
  33098. frontDick: {
  33099. height: math.unit(8.78461, "feet"),
  33100. name: "Front Dick",
  33101. image: {
  33102. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33103. }
  33104. },
  33105. rearDick: {
  33106. height: math.unit(8.78461, "feet"),
  33107. name: "Rear Dick",
  33108. image: {
  33109. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33110. }
  33111. },
  33112. rearDickUnfolded: {
  33113. height: math.unit(8.78, "feet"),
  33114. name: "Rear Dick (Unfolded)",
  33115. image: {
  33116. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33117. }
  33118. },
  33119. wings: {
  33120. height: math.unit(43, "feet"),
  33121. name: "Wings",
  33122. image: {
  33123. source: "./media/characters/irb'iiritaahn/wings.svg"
  33124. }
  33125. },
  33126. },
  33127. [
  33128. {
  33129. name: "Macro",
  33130. height: math.unit(50 + 9/12, "feet"),
  33131. default: true
  33132. },
  33133. ]
  33134. ))
  33135. characterMakers.push(() => makeCharacter(
  33136. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33137. {
  33138. front: {
  33139. height: math.unit(205, "cm"),
  33140. weight: math.unit(102, "kg"),
  33141. name: "Front",
  33142. image: {
  33143. source: "./media/characters/irbisgreif/front.svg",
  33144. extra: 785/706,
  33145. bottom: 13/798
  33146. }
  33147. },
  33148. back: {
  33149. height: math.unit(205, "cm"),
  33150. weight: math.unit(102, "kg"),
  33151. name: "Back",
  33152. image: {
  33153. source: "./media/characters/irbisgreif/back.svg",
  33154. extra: 713/701,
  33155. bottom: 26/739
  33156. }
  33157. },
  33158. frontDressed: {
  33159. height: math.unit(216, "cm"),
  33160. weight: math.unit(102, "kg"),
  33161. name: "Front-dressed",
  33162. image: {
  33163. source: "./media/characters/irbisgreif/front-dressed.svg",
  33164. extra: 902/776,
  33165. bottom: 14/916
  33166. }
  33167. },
  33168. sideDressed: {
  33169. height: math.unit(195, "cm"),
  33170. weight: math.unit(102, "kg"),
  33171. name: "Side-dressed",
  33172. image: {
  33173. source: "./media/characters/irbisgreif/side-dressed.svg",
  33174. extra: 788/688,
  33175. bottom: 21/809
  33176. }
  33177. },
  33178. backDressed: {
  33179. height: math.unit(216, "cm"),
  33180. weight: math.unit(102, "kg"),
  33181. name: "Back-dressed",
  33182. image: {
  33183. source: "./media/characters/irbisgreif/back-dressed.svg",
  33184. extra: 901/783,
  33185. bottom: 10/911
  33186. }
  33187. },
  33188. dick: {
  33189. height: math.unit(0.49, "feet"),
  33190. name: "Dick",
  33191. image: {
  33192. source: "./media/characters/irbisgreif/dick.svg"
  33193. }
  33194. },
  33195. wingTop: {
  33196. height: math.unit(1.93 , "feet"),
  33197. name: "Wing-top",
  33198. image: {
  33199. source: "./media/characters/irbisgreif/wing-top.svg"
  33200. }
  33201. },
  33202. wingBottom: {
  33203. height: math.unit(1.93 , "feet"),
  33204. name: "Wing-bottom",
  33205. image: {
  33206. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33207. }
  33208. },
  33209. },
  33210. [
  33211. {
  33212. name: "Normal",
  33213. height: math.unit(216, "cm"),
  33214. default: true
  33215. },
  33216. ]
  33217. ))
  33218. characterMakers.push(() => makeCharacter(
  33219. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33220. {
  33221. front: {
  33222. height: math.unit(6, "feet"),
  33223. weight: math.unit(150, "lb"),
  33224. name: "Front",
  33225. image: {
  33226. source: "./media/characters/pride/front.svg",
  33227. extra: 1299/1230,
  33228. bottom: 18/1317
  33229. }
  33230. },
  33231. },
  33232. [
  33233. {
  33234. name: "Normal",
  33235. height: math.unit(7, "feet")
  33236. },
  33237. {
  33238. name: "Mini-macro",
  33239. height: math.unit(11, "feet")
  33240. },
  33241. {
  33242. name: "Macro",
  33243. height: math.unit(15, "meters"),
  33244. default: true
  33245. },
  33246. {
  33247. name: "Macro+",
  33248. height: math.unit(40, "meters")
  33249. },
  33250. ]
  33251. ))
  33252. characterMakers.push(() => makeCharacter(
  33253. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33254. {
  33255. front: {
  33256. height: math.unit(4 + 2 / 12, "feet"),
  33257. weight: math.unit(95, "lb"),
  33258. name: "Front",
  33259. image: {
  33260. source: "./media/characters/vaelophis-nyx/front.svg",
  33261. extra: 2532/2330,
  33262. bottom: 0/2532
  33263. }
  33264. },
  33265. back: {
  33266. height: math.unit(4 + 2 / 12, "feet"),
  33267. weight: math.unit(95, "lb"),
  33268. name: "Back",
  33269. image: {
  33270. source: "./media/characters/vaelophis-nyx/back.svg",
  33271. extra: 2484/2361,
  33272. bottom: 0/2484
  33273. }
  33274. },
  33275. feralSide: {
  33276. height: math.unit(2 + 1/12, "feet"),
  33277. weight: math.unit(20, "lb"),
  33278. name: "Feral (Side)",
  33279. image: {
  33280. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33281. extra: 1721/1581,
  33282. bottom: 70/1791
  33283. }
  33284. },
  33285. feralLazing: {
  33286. height: math.unit(1.08, "feet"),
  33287. weight: math.unit(20, "lb"),
  33288. name: "Feral (Lazing)",
  33289. image: {
  33290. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33291. extra: 822/822,
  33292. bottom: 248/1070
  33293. }
  33294. },
  33295. ear: {
  33296. height: math.unit(0.416, "feet"),
  33297. name: "Ear",
  33298. image: {
  33299. source: "./media/characters/vaelophis-nyx/ear.svg"
  33300. }
  33301. },
  33302. eye: {
  33303. height: math.unit(0.0748, "feet"),
  33304. name: "Eye",
  33305. image: {
  33306. source: "./media/characters/vaelophis-nyx/eye.svg"
  33307. }
  33308. },
  33309. mouth: {
  33310. height: math.unit(0.378, "feet"),
  33311. name: "Mouth",
  33312. image: {
  33313. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33314. }
  33315. },
  33316. spade: {
  33317. height: math.unit(0.55, "feet"),
  33318. name: "Spade",
  33319. image: {
  33320. source: "./media/characters/vaelophis-nyx/spade.svg"
  33321. }
  33322. },
  33323. },
  33324. [
  33325. {
  33326. name: "Normal",
  33327. height: math.unit(4 + 2/12, "feet"),
  33328. default: true
  33329. },
  33330. ]
  33331. ))
  33332. characterMakers.push(() => makeCharacter(
  33333. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33334. {
  33335. front: {
  33336. height: math.unit(7, "feet"),
  33337. weight: math.unit(231, "lb"),
  33338. name: "Front",
  33339. image: {
  33340. source: "./media/characters/flux/front.svg",
  33341. extra: 919/871,
  33342. bottom: 0/919
  33343. }
  33344. },
  33345. back: {
  33346. height: math.unit(7, "feet"),
  33347. weight: math.unit(231, "lb"),
  33348. name: "Back",
  33349. image: {
  33350. source: "./media/characters/flux/back.svg",
  33351. extra: 1040/992,
  33352. bottom: 0/1040
  33353. }
  33354. },
  33355. frontDressed: {
  33356. height: math.unit(7, "feet"),
  33357. weight: math.unit(231, "lb"),
  33358. name: "Front (Dressed)",
  33359. image: {
  33360. source: "./media/characters/flux/front-dressed.svg",
  33361. extra: 919/871,
  33362. bottom: 0/919
  33363. }
  33364. },
  33365. feralSide: {
  33366. height: math.unit(5, "feet"),
  33367. weight: math.unit(150, "lb"),
  33368. name: "Feral (Side)",
  33369. image: {
  33370. source: "./media/characters/flux/feral-side.svg",
  33371. extra: 598/528,
  33372. bottom: 28/626
  33373. }
  33374. },
  33375. head: {
  33376. height: math.unit(1.585, "feet"),
  33377. name: "Head",
  33378. image: {
  33379. source: "./media/characters/flux/head.svg"
  33380. }
  33381. },
  33382. headSide: {
  33383. height: math.unit(1.74, "feet"),
  33384. name: "Head (Side)",
  33385. image: {
  33386. source: "./media/characters/flux/head-side.svg"
  33387. }
  33388. },
  33389. headSideFire: {
  33390. height: math.unit(1.76, "feet"),
  33391. name: "Head (Side, Fire)",
  33392. image: {
  33393. source: "./media/characters/flux/head-side-fire.svg"
  33394. }
  33395. },
  33396. },
  33397. [
  33398. {
  33399. name: "Normal",
  33400. height: math.unit(7, "feet"),
  33401. default: true
  33402. },
  33403. ]
  33404. ))
  33405. characterMakers.push(() => makeCharacter(
  33406. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33407. {
  33408. front: {
  33409. height: math.unit(9, "feet"),
  33410. weight: math.unit(1012, "lb"),
  33411. name: "Front",
  33412. image: {
  33413. source: "./media/characters/ulfra-lupae/front.svg",
  33414. extra: 1083/1011,
  33415. bottom: 67/1150
  33416. }
  33417. },
  33418. },
  33419. [
  33420. {
  33421. name: "Micro",
  33422. height: math.unit(6, "inches")
  33423. },
  33424. {
  33425. name: "Socializing",
  33426. height: math.unit(6 + 5/12, "feet")
  33427. },
  33428. {
  33429. name: "Normal",
  33430. height: math.unit(9, "feet"),
  33431. default: true
  33432. },
  33433. {
  33434. name: "Macro",
  33435. height: math.unit(150, "feet")
  33436. },
  33437. ]
  33438. ))
  33439. characterMakers.push(() => makeCharacter(
  33440. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33441. {
  33442. front: {
  33443. height: math.unit(5 + 2/12, "feet"),
  33444. weight: math.unit(120, "lb"),
  33445. name: "Front",
  33446. image: {
  33447. source: "./media/characters/timber/front.svg",
  33448. extra: 2814/2705,
  33449. bottom: 181/2995
  33450. }
  33451. },
  33452. },
  33453. [
  33454. {
  33455. name: "Normal",
  33456. height: math.unit(5 + 2/12, "feet"),
  33457. default: true
  33458. },
  33459. ]
  33460. ))
  33461. characterMakers.push(() => makeCharacter(
  33462. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33463. {
  33464. front: {
  33465. height: math.unit(9, "feet"),
  33466. name: "Front",
  33467. image: {
  33468. source: "./media/characters/nicki/front.svg",
  33469. extra: 1240/990,
  33470. bottom: 45/1285
  33471. },
  33472. form: "anthro",
  33473. default: true
  33474. },
  33475. side: {
  33476. height: math.unit(9, "feet"),
  33477. name: "Side",
  33478. image: {
  33479. source: "./media/characters/nicki/side.svg",
  33480. extra: 1047/973,
  33481. bottom: 61/1108
  33482. },
  33483. form: "anthro"
  33484. },
  33485. back: {
  33486. height: math.unit(9, "feet"),
  33487. name: "Back",
  33488. image: {
  33489. source: "./media/characters/nicki/back.svg",
  33490. extra: 1006/965,
  33491. bottom: 39/1045
  33492. },
  33493. form: "anthro"
  33494. },
  33495. taur: {
  33496. height: math.unit(15, "feet"),
  33497. name: "Taur",
  33498. image: {
  33499. source: "./media/characters/nicki/taur.svg",
  33500. extra: 1592/1347,
  33501. bottom: 0/1592
  33502. },
  33503. form: "taur",
  33504. default: true
  33505. },
  33506. },
  33507. [
  33508. {
  33509. name: "Normal",
  33510. height: math.unit(9, "feet"),
  33511. form: "anthro",
  33512. default: true
  33513. },
  33514. {
  33515. name: "Normal",
  33516. height: math.unit(15, "feet"),
  33517. form: "taur",
  33518. default: true
  33519. }
  33520. ],
  33521. {
  33522. "anthro": {
  33523. name: "Anthro",
  33524. default: true
  33525. },
  33526. "taur": {
  33527. name: "Taur"
  33528. }
  33529. }
  33530. ))
  33531. characterMakers.push(() => makeCharacter(
  33532. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33533. {
  33534. front: {
  33535. height: math.unit(7 + 10/12, "feet"),
  33536. weight: math.unit(3.5, "tons"),
  33537. name: "Front",
  33538. image: {
  33539. source: "./media/characters/lee/front.svg",
  33540. extra: 1773/1615,
  33541. bottom: 86/1859
  33542. }
  33543. },
  33544. hand: {
  33545. height: math.unit(1.78, "feet"),
  33546. name: "Hand",
  33547. image: {
  33548. source: "./media/characters/lee/hand.svg"
  33549. }
  33550. },
  33551. maw: {
  33552. height: math.unit(1.18, "feet"),
  33553. name: "Maw",
  33554. image: {
  33555. source: "./media/characters/lee/maw.svg"
  33556. }
  33557. },
  33558. },
  33559. [
  33560. {
  33561. name: "Normal",
  33562. height: math.unit(7 + 10/12, "feet"),
  33563. default: true
  33564. },
  33565. ]
  33566. ))
  33567. characterMakers.push(() => makeCharacter(
  33568. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33569. {
  33570. front: {
  33571. height: math.unit(9, "feet"),
  33572. name: "Front",
  33573. image: {
  33574. source: "./media/characters/guti/front.svg",
  33575. extra: 4551/4355,
  33576. bottom: 123/4674
  33577. }
  33578. },
  33579. tongue: {
  33580. height: math.unit(1, "feet"),
  33581. name: "Tongue",
  33582. image: {
  33583. source: "./media/characters/guti/tongue.svg"
  33584. }
  33585. },
  33586. paw: {
  33587. height: math.unit(1.18, "feet"),
  33588. name: "Paw",
  33589. image: {
  33590. source: "./media/characters/guti/paw.svg"
  33591. }
  33592. },
  33593. },
  33594. [
  33595. {
  33596. name: "Normal",
  33597. height: math.unit(9, "feet"),
  33598. default: true
  33599. },
  33600. ]
  33601. ))
  33602. characterMakers.push(() => makeCharacter(
  33603. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33604. {
  33605. side: {
  33606. height: math.unit(5, "meters"),
  33607. name: "Side",
  33608. image: {
  33609. source: "./media/characters/vesper/side.svg",
  33610. extra: 1605/1518,
  33611. bottom: 0/1605
  33612. }
  33613. },
  33614. },
  33615. [
  33616. {
  33617. name: "Small",
  33618. height: math.unit(5, "meters")
  33619. },
  33620. {
  33621. name: "Sage",
  33622. height: math.unit(100, "meters"),
  33623. default: true
  33624. },
  33625. {
  33626. name: "Fun Size",
  33627. height: math.unit(600, "meters")
  33628. },
  33629. {
  33630. name: "Goddess",
  33631. height: math.unit(20000, "km")
  33632. },
  33633. {
  33634. name: "Maximum",
  33635. height: math.unit(5, "galaxies")
  33636. },
  33637. ]
  33638. ))
  33639. characterMakers.push(() => makeCharacter(
  33640. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33641. {
  33642. front: {
  33643. height: math.unit(6 + 3/12, "feet"),
  33644. weight: math.unit(190, "lb"),
  33645. name: "Front",
  33646. image: {
  33647. source: "./media/characters/gawain/front.svg",
  33648. extra: 2222/2139,
  33649. bottom: 90/2312
  33650. }
  33651. },
  33652. back: {
  33653. height: math.unit(6 + 3/12, "feet"),
  33654. weight: math.unit(190, "lb"),
  33655. name: "Back",
  33656. image: {
  33657. source: "./media/characters/gawain/back.svg",
  33658. extra: 2199/2111,
  33659. bottom: 73/2272
  33660. }
  33661. },
  33662. },
  33663. [
  33664. {
  33665. name: "Normal",
  33666. height: math.unit(6 + 3/12, "feet"),
  33667. default: true
  33668. },
  33669. ]
  33670. ))
  33671. characterMakers.push(() => makeCharacter(
  33672. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33673. {
  33674. side: {
  33675. height: math.unit(3.5, "meters"),
  33676. weight: math.unit(16000, "lb"),
  33677. name: "Side",
  33678. image: {
  33679. source: "./media/characters/dascalti/side.svg",
  33680. extra: 392/273,
  33681. bottom: 47/439
  33682. }
  33683. },
  33684. breath: {
  33685. height: math.unit(7.4, "feet"),
  33686. name: "Breath",
  33687. image: {
  33688. source: "./media/characters/dascalti/breath.svg"
  33689. }
  33690. },
  33691. fed: {
  33692. height: math.unit(3.6, "meters"),
  33693. weight: math.unit(16000, "lb"),
  33694. name: "Fed",
  33695. image: {
  33696. source: "./media/characters/dascalti/fed.svg",
  33697. extra: 1419/820,
  33698. bottom: 95/1514
  33699. }
  33700. },
  33701. },
  33702. [
  33703. {
  33704. name: "Normal",
  33705. height: math.unit(3.5, "meters"),
  33706. default: true
  33707. },
  33708. ]
  33709. ))
  33710. characterMakers.push(() => makeCharacter(
  33711. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33712. {
  33713. front: {
  33714. height: math.unit(3 + 5/12, "feet"),
  33715. name: "Front",
  33716. image: {
  33717. source: "./media/characters/mauve/front.svg",
  33718. extra: 1126/1033,
  33719. bottom: 65/1191
  33720. }
  33721. },
  33722. side: {
  33723. height: math.unit(3 + 5/12, "feet"),
  33724. name: "Side",
  33725. image: {
  33726. source: "./media/characters/mauve/side.svg",
  33727. extra: 1089/1001,
  33728. bottom: 29/1118
  33729. }
  33730. },
  33731. back: {
  33732. height: math.unit(3 + 5/12, "feet"),
  33733. name: "Back",
  33734. image: {
  33735. source: "./media/characters/mauve/back.svg",
  33736. extra: 1173/1053,
  33737. bottom: 109/1282
  33738. }
  33739. },
  33740. },
  33741. [
  33742. {
  33743. name: "Normal",
  33744. height: math.unit(3 + 5/12, "feet"),
  33745. default: true
  33746. },
  33747. ]
  33748. ))
  33749. characterMakers.push(() => makeCharacter(
  33750. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33751. {
  33752. front: {
  33753. height: math.unit(6 + 3/12, "feet"),
  33754. weight: math.unit(430, "lb"),
  33755. name: "Front",
  33756. image: {
  33757. source: "./media/characters/carlos/front.svg",
  33758. extra: 1964/1913,
  33759. bottom: 70/2034
  33760. }
  33761. },
  33762. },
  33763. [
  33764. {
  33765. name: "Normal",
  33766. height: math.unit(6 + 3/12, "feet"),
  33767. default: true
  33768. },
  33769. ]
  33770. ))
  33771. characterMakers.push(() => makeCharacter(
  33772. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33773. {
  33774. back: {
  33775. height: math.unit(5 + 10/12, "feet"),
  33776. weight: math.unit(200, "lb"),
  33777. name: "Back",
  33778. image: {
  33779. source: "./media/characters/jax/back.svg",
  33780. extra: 764/739,
  33781. bottom: 25/789
  33782. }
  33783. },
  33784. },
  33785. [
  33786. {
  33787. name: "Normal",
  33788. height: math.unit(5 + 10/12, "feet"),
  33789. default: true
  33790. },
  33791. ]
  33792. ))
  33793. characterMakers.push(() => makeCharacter(
  33794. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33795. {
  33796. front: {
  33797. height: math.unit(8, "feet"),
  33798. weight: math.unit(250, "lb"),
  33799. name: "Front",
  33800. image: {
  33801. source: "./media/characters/eikthynir/front.svg",
  33802. extra: 1332/1166,
  33803. bottom: 82/1414
  33804. }
  33805. },
  33806. back: {
  33807. height: math.unit(8, "feet"),
  33808. weight: math.unit(250, "lb"),
  33809. name: "Back",
  33810. image: {
  33811. source: "./media/characters/eikthynir/back.svg",
  33812. extra: 1342/1190,
  33813. bottom: 19/1361
  33814. }
  33815. },
  33816. dick: {
  33817. height: math.unit(2.35, "feet"),
  33818. name: "Dick",
  33819. image: {
  33820. source: "./media/characters/eikthynir/dick.svg"
  33821. }
  33822. },
  33823. },
  33824. [
  33825. {
  33826. name: "Normal",
  33827. height: math.unit(8, "feet"),
  33828. default: true
  33829. },
  33830. ]
  33831. ))
  33832. characterMakers.push(() => makeCharacter(
  33833. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33834. {
  33835. front: {
  33836. height: math.unit(99, "meters"),
  33837. weight: math.unit(13000, "tons"),
  33838. name: "Front",
  33839. image: {
  33840. source: "./media/characters/zlmos/front.svg",
  33841. extra: 2202/1992,
  33842. bottom: 315/2517
  33843. }
  33844. },
  33845. },
  33846. [
  33847. {
  33848. name: "Macro",
  33849. height: math.unit(99, "meters"),
  33850. default: true
  33851. },
  33852. ]
  33853. ))
  33854. characterMakers.push(() => makeCharacter(
  33855. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33856. {
  33857. front: {
  33858. height: math.unit(6 + 5/12, "feet"),
  33859. name: "Front",
  33860. image: {
  33861. source: "./media/characters/purri/front.svg",
  33862. extra: 1698/1610,
  33863. bottom: 32/1730
  33864. }
  33865. },
  33866. frontAlt: {
  33867. height: math.unit(6 + 5/12, "feet"),
  33868. name: "Front (Alt)",
  33869. image: {
  33870. source: "./media/characters/purri/front-alt.svg",
  33871. extra: 450/420,
  33872. bottom: 26/476
  33873. }
  33874. },
  33875. boots: {
  33876. height: math.unit(5.5, "feet"),
  33877. name: "Boots",
  33878. image: {
  33879. source: "./media/characters/purri/boots.svg",
  33880. extra: 905/853,
  33881. bottom: 18/923
  33882. }
  33883. },
  33884. lying: {
  33885. height: math.unit(2, "feet"),
  33886. name: "Lying",
  33887. image: {
  33888. source: "./media/characters/purri/lying.svg",
  33889. extra: 940/843,
  33890. bottom: 146/1086
  33891. }
  33892. },
  33893. devious: {
  33894. height: math.unit(1.77, "feet"),
  33895. name: "Devious",
  33896. image: {
  33897. source: "./media/characters/purri/devious.svg",
  33898. extra: 1440/1155,
  33899. bottom: 147/1587
  33900. }
  33901. },
  33902. bean: {
  33903. height: math.unit(1.94, "feet"),
  33904. name: "Bean",
  33905. image: {
  33906. source: "./media/characters/purri/bean.svg"
  33907. }
  33908. },
  33909. },
  33910. [
  33911. {
  33912. name: "Micro",
  33913. height: math.unit(1, "mm")
  33914. },
  33915. {
  33916. name: "Normal",
  33917. height: math.unit(6 + 5/12, "feet"),
  33918. default: true
  33919. },
  33920. {
  33921. name: "Macro :3c",
  33922. height: math.unit(2, "miles")
  33923. },
  33924. ]
  33925. ))
  33926. characterMakers.push(() => makeCharacter(
  33927. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33928. {
  33929. front: {
  33930. height: math.unit(6 + 2/12, "feet"),
  33931. weight: math.unit(250, "lb"),
  33932. name: "Front",
  33933. image: {
  33934. source: "./media/characters/moonlight/front.svg",
  33935. extra: 1044/908,
  33936. bottom: 56/1100
  33937. }
  33938. },
  33939. feral: {
  33940. height: math.unit(3 + 1/12, "feet"),
  33941. weight: math.unit(50, "kg"),
  33942. name: "Feral",
  33943. image: {
  33944. source: "./media/characters/moonlight/feral.svg",
  33945. extra: 3705/2791,
  33946. bottom: 145/3850
  33947. }
  33948. },
  33949. paw: {
  33950. height: math.unit(1, "feet"),
  33951. name: "Paw",
  33952. image: {
  33953. source: "./media/characters/moonlight/paw.svg"
  33954. }
  33955. },
  33956. paws: {
  33957. height: math.unit(0.98, "feet"),
  33958. name: "Paws",
  33959. image: {
  33960. source: "./media/characters/moonlight/paws.svg",
  33961. extra: 939/939,
  33962. bottom: 50/989
  33963. }
  33964. },
  33965. mouth: {
  33966. height: math.unit(0.48, "feet"),
  33967. name: "Mouth",
  33968. image: {
  33969. source: "./media/characters/moonlight/mouth.svg"
  33970. }
  33971. },
  33972. dick: {
  33973. height: math.unit(1.46, "feet"),
  33974. name: "Dick",
  33975. image: {
  33976. source: "./media/characters/moonlight/dick.svg"
  33977. }
  33978. },
  33979. },
  33980. [
  33981. {
  33982. name: "Normal",
  33983. height: math.unit(6 + 2/12, "feet"),
  33984. default: true
  33985. },
  33986. {
  33987. name: "Macro",
  33988. height: math.unit(300, "feet")
  33989. },
  33990. {
  33991. name: "Macro+",
  33992. height: math.unit(1, "mile")
  33993. },
  33994. {
  33995. name: "Mt. Moon",
  33996. height: math.unit(5, "miles")
  33997. },
  33998. {
  33999. name: "Megamacro",
  34000. height: math.unit(15, "miles")
  34001. },
  34002. ]
  34003. ))
  34004. characterMakers.push(() => makeCharacter(
  34005. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34006. {
  34007. back: {
  34008. height: math.unit(6, "feet"),
  34009. weight: math.unit(150, "lb"),
  34010. name: "Back",
  34011. image: {
  34012. source: "./media/characters/sylen/back.svg",
  34013. extra: 1335/1273,
  34014. bottom: 107/1442
  34015. }
  34016. },
  34017. },
  34018. [
  34019. {
  34020. name: "Normal",
  34021. height: math.unit(5 + 5/12, "feet")
  34022. },
  34023. {
  34024. name: "Megamacro",
  34025. height: math.unit(3, "miles"),
  34026. default: true
  34027. },
  34028. ]
  34029. ))
  34030. characterMakers.push(() => makeCharacter(
  34031. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34032. {
  34033. front: {
  34034. height: math.unit(6, "feet"),
  34035. weight: math.unit(190, "lb"),
  34036. name: "Front",
  34037. image: {
  34038. source: "./media/characters/huttser/front.svg",
  34039. extra: 1152/1058,
  34040. bottom: 23/1175
  34041. }
  34042. },
  34043. side: {
  34044. height: math.unit(6, "feet"),
  34045. weight: math.unit(190, "lb"),
  34046. name: "Side",
  34047. image: {
  34048. source: "./media/characters/huttser/side.svg",
  34049. extra: 1174/1065,
  34050. bottom: 18/1192
  34051. }
  34052. },
  34053. back: {
  34054. height: math.unit(6, "feet"),
  34055. weight: math.unit(190, "lb"),
  34056. name: "Back",
  34057. image: {
  34058. source: "./media/characters/huttser/back.svg",
  34059. extra: 1158/1056,
  34060. bottom: 12/1170
  34061. }
  34062. },
  34063. },
  34064. [
  34065. ]
  34066. ))
  34067. characterMakers.push(() => makeCharacter(
  34068. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34069. {
  34070. side: {
  34071. height: math.unit(12 + 9/12, "feet"),
  34072. weight: math.unit(15000, "lb"),
  34073. name: "Side",
  34074. image: {
  34075. source: "./media/characters/faan/side.svg",
  34076. extra: 2747/2697,
  34077. bottom: 0/2747
  34078. }
  34079. },
  34080. front: {
  34081. height: math.unit(12 + 9/12, "feet"),
  34082. weight: math.unit(15000, "lb"),
  34083. name: "Front",
  34084. image: {
  34085. source: "./media/characters/faan/front.svg",
  34086. extra: 607/571,
  34087. bottom: 24/631
  34088. }
  34089. },
  34090. head: {
  34091. height: math.unit(2.85, "feet"),
  34092. name: "Head",
  34093. image: {
  34094. source: "./media/characters/faan/head.svg"
  34095. }
  34096. },
  34097. headAlt: {
  34098. height: math.unit(3.13, "feet"),
  34099. name: "Head-alt",
  34100. image: {
  34101. source: "./media/characters/faan/head-alt.svg"
  34102. }
  34103. },
  34104. },
  34105. [
  34106. {
  34107. name: "Normal",
  34108. height: math.unit(12 + 9/12, "feet"),
  34109. default: true
  34110. },
  34111. ]
  34112. ))
  34113. characterMakers.push(() => makeCharacter(
  34114. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34115. {
  34116. front: {
  34117. height: math.unit(6, "feet"),
  34118. weight: math.unit(300, "lb"),
  34119. name: "Front",
  34120. image: {
  34121. source: "./media/characters/tanio/front.svg",
  34122. extra: 711/673,
  34123. bottom: 25/736
  34124. }
  34125. },
  34126. },
  34127. [
  34128. {
  34129. name: "Normal",
  34130. height: math.unit(6, "feet"),
  34131. default: true
  34132. },
  34133. ]
  34134. ))
  34135. characterMakers.push(() => makeCharacter(
  34136. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34137. {
  34138. front: {
  34139. height: math.unit(3, "inches"),
  34140. name: "Front",
  34141. image: {
  34142. source: "./media/characters/noboru/front.svg",
  34143. extra: 1039/932,
  34144. bottom: 18/1057
  34145. }
  34146. },
  34147. },
  34148. [
  34149. {
  34150. name: "Micro",
  34151. height: math.unit(3, "inches"),
  34152. default: true
  34153. },
  34154. ]
  34155. ))
  34156. characterMakers.push(() => makeCharacter(
  34157. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34158. {
  34159. front: {
  34160. height: math.unit(1.85, "meters"),
  34161. weight: math.unit(80, "kg"),
  34162. name: "Front",
  34163. image: {
  34164. source: "./media/characters/daniel-barrett/front.svg",
  34165. extra: 355/337,
  34166. bottom: 9/364
  34167. }
  34168. },
  34169. },
  34170. [
  34171. {
  34172. name: "Pico",
  34173. height: math.unit(0.0433, "mm")
  34174. },
  34175. {
  34176. name: "Nano",
  34177. height: math.unit(1.5, "mm")
  34178. },
  34179. {
  34180. name: "Micro",
  34181. height: math.unit(5.3, "cm"),
  34182. default: true
  34183. },
  34184. {
  34185. name: "Normal",
  34186. height: math.unit(1.85, "meters")
  34187. },
  34188. {
  34189. name: "Macro",
  34190. height: math.unit(64.7, "meters")
  34191. },
  34192. {
  34193. name: "Megamacro",
  34194. height: math.unit(2.26, "km")
  34195. },
  34196. {
  34197. name: "Gigamacro",
  34198. height: math.unit(79, "km")
  34199. },
  34200. {
  34201. name: "Teramacro",
  34202. height: math.unit(2765, "km")
  34203. },
  34204. {
  34205. name: "Petamacro",
  34206. height: math.unit(96678, "km")
  34207. },
  34208. ]
  34209. ))
  34210. characterMakers.push(() => makeCharacter(
  34211. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34212. {
  34213. front: {
  34214. height: math.unit(30, "meters"),
  34215. weight: math.unit(400, "tons"),
  34216. name: "Front",
  34217. image: {
  34218. source: "./media/characters/zeel/front.svg",
  34219. extra: 2599/2599,
  34220. bottom: 226/2825
  34221. }
  34222. },
  34223. },
  34224. [
  34225. {
  34226. name: "Macro",
  34227. height: math.unit(30, "meters"),
  34228. default: true
  34229. },
  34230. ]
  34231. ))
  34232. characterMakers.push(() => makeCharacter(
  34233. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34234. {
  34235. front: {
  34236. height: math.unit(6 + 7/12, "feet"),
  34237. weight: math.unit(210, "lb"),
  34238. name: "Front",
  34239. image: {
  34240. source: "./media/characters/tarn/front.svg",
  34241. extra: 3517/3220,
  34242. bottom: 91/3608
  34243. }
  34244. },
  34245. back: {
  34246. height: math.unit(6 + 7/12, "feet"),
  34247. weight: math.unit(210, "lb"),
  34248. name: "Back",
  34249. image: {
  34250. source: "./media/characters/tarn/back.svg",
  34251. extra: 3566/3241,
  34252. bottom: 34/3600
  34253. }
  34254. },
  34255. dick: {
  34256. height: math.unit(1.65, "feet"),
  34257. name: "Dick",
  34258. image: {
  34259. source: "./media/characters/tarn/dick.svg"
  34260. }
  34261. },
  34262. paw: {
  34263. height: math.unit(1.80, "feet"),
  34264. name: "Paw",
  34265. image: {
  34266. source: "./media/characters/tarn/paw.svg"
  34267. }
  34268. },
  34269. tongue: {
  34270. height: math.unit(0.97, "feet"),
  34271. name: "Tongue",
  34272. image: {
  34273. source: "./media/characters/tarn/tongue.svg"
  34274. }
  34275. },
  34276. },
  34277. [
  34278. {
  34279. name: "Micro",
  34280. height: math.unit(4, "inches")
  34281. },
  34282. {
  34283. name: "Normal",
  34284. height: math.unit(6 + 7/12, "feet"),
  34285. default: true
  34286. },
  34287. {
  34288. name: "Macro",
  34289. height: math.unit(300, "feet")
  34290. },
  34291. ]
  34292. ))
  34293. characterMakers.push(() => makeCharacter(
  34294. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34295. {
  34296. front: {
  34297. height: math.unit(5 + 7/12, "feet"),
  34298. weight: math.unit(80, "kg"),
  34299. name: "Front",
  34300. image: {
  34301. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34302. extra: 3023/2865,
  34303. bottom: 33/3056
  34304. }
  34305. },
  34306. back: {
  34307. height: math.unit(5 + 7/12, "feet"),
  34308. weight: math.unit(80, "kg"),
  34309. name: "Back",
  34310. image: {
  34311. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34312. extra: 3020/2886,
  34313. bottom: 30/3050
  34314. }
  34315. },
  34316. dick: {
  34317. height: math.unit(0.98, "feet"),
  34318. name: "Dick",
  34319. image: {
  34320. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34321. }
  34322. },
  34323. anatomy: {
  34324. height: math.unit(2.86, "feet"),
  34325. name: "Anatomy",
  34326. image: {
  34327. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34328. }
  34329. },
  34330. },
  34331. [
  34332. {
  34333. name: "Really Small",
  34334. height: math.unit(2, "inches")
  34335. },
  34336. {
  34337. name: "Micro",
  34338. height: math.unit(5.583, "inches")
  34339. },
  34340. {
  34341. name: "Normal",
  34342. height: math.unit(5 + 7/12, "feet"),
  34343. default: true
  34344. },
  34345. {
  34346. name: "Macro",
  34347. height: math.unit(67, "feet")
  34348. },
  34349. {
  34350. name: "Megamacro",
  34351. height: math.unit(134, "feet")
  34352. },
  34353. ]
  34354. ))
  34355. characterMakers.push(() => makeCharacter(
  34356. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34357. {
  34358. front: {
  34359. height: math.unit(9, "feet"),
  34360. weight: math.unit(120, "lb"),
  34361. name: "Front",
  34362. image: {
  34363. source: "./media/characters/sally/front.svg",
  34364. extra: 1506/1349,
  34365. bottom: 66/1572
  34366. }
  34367. },
  34368. },
  34369. [
  34370. {
  34371. name: "Normal",
  34372. height: math.unit(9, "feet"),
  34373. default: true
  34374. },
  34375. ]
  34376. ))
  34377. characterMakers.push(() => makeCharacter(
  34378. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34379. {
  34380. front: {
  34381. height: math.unit(8, "feet"),
  34382. weight: math.unit(900, "lb"),
  34383. name: "Front",
  34384. image: {
  34385. source: "./media/characters/owen/front.svg",
  34386. extra: 1761/1657,
  34387. bottom: 74/1835
  34388. }
  34389. },
  34390. side: {
  34391. height: math.unit(8, "feet"),
  34392. weight: math.unit(900, "lb"),
  34393. name: "Side",
  34394. image: {
  34395. source: "./media/characters/owen/side.svg",
  34396. extra: 1797/1734,
  34397. bottom: 30/1827
  34398. }
  34399. },
  34400. back: {
  34401. height: math.unit(8, "feet"),
  34402. weight: math.unit(900, "lb"),
  34403. name: "Back",
  34404. image: {
  34405. source: "./media/characters/owen/back.svg",
  34406. extra: 1796/1706,
  34407. bottom: 59/1855
  34408. }
  34409. },
  34410. maw: {
  34411. height: math.unit(1.76, "feet"),
  34412. name: "Maw",
  34413. image: {
  34414. source: "./media/characters/owen/maw.svg"
  34415. }
  34416. },
  34417. },
  34418. [
  34419. {
  34420. name: "Normal",
  34421. height: math.unit(8, "feet"),
  34422. default: true
  34423. },
  34424. ]
  34425. ))
  34426. characterMakers.push(() => makeCharacter(
  34427. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34428. {
  34429. front: {
  34430. height: math.unit(4, "feet"),
  34431. weight: math.unit(400, "lb"),
  34432. name: "Front",
  34433. image: {
  34434. source: "./media/characters/ryth/front.svg",
  34435. extra: 1920/1748,
  34436. bottom: 42/1962
  34437. }
  34438. },
  34439. back: {
  34440. height: math.unit(4, "feet"),
  34441. weight: math.unit(400, "lb"),
  34442. name: "Back",
  34443. image: {
  34444. source: "./media/characters/ryth/back.svg",
  34445. extra: 1897/1690,
  34446. bottom: 89/1986
  34447. }
  34448. },
  34449. mouth: {
  34450. height: math.unit(1.39, "feet"),
  34451. name: "Mouth",
  34452. image: {
  34453. source: "./media/characters/ryth/mouth.svg"
  34454. }
  34455. },
  34456. tailmaw: {
  34457. height: math.unit(1.23, "feet"),
  34458. name: "Tailmaw",
  34459. image: {
  34460. source: "./media/characters/ryth/tailmaw.svg"
  34461. }
  34462. },
  34463. goia: {
  34464. height: math.unit(4, "meters"),
  34465. weight: math.unit(10800, "lb"),
  34466. name: "Goia",
  34467. image: {
  34468. source: "./media/characters/ryth/goia.svg",
  34469. extra: 745/640,
  34470. bottom: 107/852
  34471. }
  34472. },
  34473. goiaFront: {
  34474. height: math.unit(4, "meters"),
  34475. weight: math.unit(10800, "lb"),
  34476. name: "Goia (Front)",
  34477. image: {
  34478. source: "./media/characters/ryth/goia-front.svg",
  34479. extra: 750/586,
  34480. bottom: 114/864
  34481. }
  34482. },
  34483. goiaMaw: {
  34484. height: math.unit(5.55, "feet"),
  34485. name: "Goia Maw",
  34486. image: {
  34487. source: "./media/characters/ryth/goia-maw.svg"
  34488. }
  34489. },
  34490. goiaForepaw: {
  34491. height: math.unit(3.5, "feet"),
  34492. name: "Goia Forepaw",
  34493. image: {
  34494. source: "./media/characters/ryth/goia-forepaw.svg"
  34495. }
  34496. },
  34497. goiaHindpaw: {
  34498. height: math.unit(5.55, "feet"),
  34499. name: "Goia Hindpaw",
  34500. image: {
  34501. source: "./media/characters/ryth/goia-hindpaw.svg"
  34502. }
  34503. },
  34504. },
  34505. [
  34506. {
  34507. name: "Normal",
  34508. height: math.unit(4, "feet"),
  34509. default: true
  34510. },
  34511. ]
  34512. ))
  34513. characterMakers.push(() => makeCharacter(
  34514. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34515. {
  34516. front: {
  34517. height: math.unit(7, "feet"),
  34518. weight: math.unit(180, "lb"),
  34519. name: "Front",
  34520. image: {
  34521. source: "./media/characters/necrolance/front.svg",
  34522. extra: 1062/947,
  34523. bottom: 41/1103
  34524. }
  34525. },
  34526. back: {
  34527. height: math.unit(7, "feet"),
  34528. weight: math.unit(180, "lb"),
  34529. name: "Back",
  34530. image: {
  34531. source: "./media/characters/necrolance/back.svg",
  34532. extra: 1045/984,
  34533. bottom: 14/1059
  34534. }
  34535. },
  34536. wing: {
  34537. height: math.unit(2.67, "feet"),
  34538. name: "Wing",
  34539. image: {
  34540. source: "./media/characters/necrolance/wing.svg"
  34541. }
  34542. },
  34543. },
  34544. [
  34545. {
  34546. name: "Normal",
  34547. height: math.unit(7, "feet"),
  34548. default: true
  34549. },
  34550. ]
  34551. ))
  34552. characterMakers.push(() => makeCharacter(
  34553. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34554. {
  34555. front: {
  34556. height: math.unit(76, "meters"),
  34557. weight: math.unit(30000, "tons"),
  34558. name: "Front",
  34559. image: {
  34560. source: "./media/characters/tyler/front.svg",
  34561. extra: 1640/1640,
  34562. bottom: 114/1754
  34563. }
  34564. },
  34565. },
  34566. [
  34567. {
  34568. name: "Macro",
  34569. height: math.unit(76, "meters"),
  34570. default: true
  34571. },
  34572. ]
  34573. ))
  34574. characterMakers.push(() => makeCharacter(
  34575. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34576. {
  34577. front: {
  34578. height: math.unit(4 + 11/12, "feet"),
  34579. weight: math.unit(132, "lb"),
  34580. name: "Front",
  34581. image: {
  34582. source: "./media/characters/icey/front.svg",
  34583. extra: 2750/2550,
  34584. bottom: 33/2783
  34585. }
  34586. },
  34587. back: {
  34588. height: math.unit(4 + 11/12, "feet"),
  34589. weight: math.unit(132, "lb"),
  34590. name: "Back",
  34591. image: {
  34592. source: "./media/characters/icey/back.svg",
  34593. extra: 2624/2481,
  34594. bottom: 35/2659
  34595. }
  34596. },
  34597. },
  34598. [
  34599. {
  34600. name: "Normal",
  34601. height: math.unit(4 + 11/12, "feet"),
  34602. default: true
  34603. },
  34604. ]
  34605. ))
  34606. characterMakers.push(() => makeCharacter(
  34607. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34608. {
  34609. front: {
  34610. height: math.unit(100, "feet"),
  34611. weight: math.unit(0, "lb"),
  34612. name: "Front",
  34613. image: {
  34614. source: "./media/characters/smile/front.svg",
  34615. extra: 2983/2912,
  34616. bottom: 162/3145
  34617. }
  34618. },
  34619. back: {
  34620. height: math.unit(100, "feet"),
  34621. weight: math.unit(0, "lb"),
  34622. name: "Back",
  34623. image: {
  34624. source: "./media/characters/smile/back.svg",
  34625. extra: 3143/3031,
  34626. bottom: 91/3234
  34627. }
  34628. },
  34629. head: {
  34630. height: math.unit(26.3, "feet"),
  34631. weight: math.unit(0, "lb"),
  34632. name: "Head",
  34633. image: {
  34634. source: "./media/characters/smile/head.svg"
  34635. }
  34636. },
  34637. collar: {
  34638. height: math.unit(5.3, "feet"),
  34639. weight: math.unit(0, "lb"),
  34640. name: "Collar",
  34641. image: {
  34642. source: "./media/characters/smile/collar.svg"
  34643. }
  34644. },
  34645. },
  34646. [
  34647. {
  34648. name: "Macro",
  34649. height: math.unit(100, "feet"),
  34650. default: true
  34651. },
  34652. ]
  34653. ))
  34654. characterMakers.push(() => makeCharacter(
  34655. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34656. {
  34657. dragon: {
  34658. height: math.unit(26, "feet"),
  34659. weight: math.unit(36, "tons"),
  34660. name: "Dragon",
  34661. image: {
  34662. source: "./media/characters/arimphae/dragon.svg",
  34663. extra: 1574/983,
  34664. bottom: 357/1931
  34665. }
  34666. },
  34667. drake: {
  34668. height: math.unit(9, "feet"),
  34669. weight: math.unit(1.5, "tons"),
  34670. name: "Drake",
  34671. image: {
  34672. source: "./media/characters/arimphae/drake.svg",
  34673. extra: 1120/925,
  34674. bottom: 435/1555
  34675. }
  34676. },
  34677. },
  34678. [
  34679. {
  34680. name: "Small",
  34681. height: math.unit(26*5/9, "feet")
  34682. },
  34683. {
  34684. name: "Normal",
  34685. height: math.unit(26, "feet"),
  34686. default: true
  34687. },
  34688. ]
  34689. ))
  34690. characterMakers.push(() => makeCharacter(
  34691. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34692. {
  34693. front: {
  34694. height: math.unit(8 + 9/12, "feet"),
  34695. name: "Front",
  34696. image: {
  34697. source: "./media/characters/xander/front.svg",
  34698. extra: 1237/974,
  34699. bottom: 94/1331
  34700. }
  34701. },
  34702. },
  34703. [
  34704. {
  34705. name: "Normal",
  34706. height: math.unit(8 + 9/12, "feet"),
  34707. default: true
  34708. },
  34709. {
  34710. name: "Gaze Grabber",
  34711. height: math.unit(13 + 8/12, "feet")
  34712. },
  34713. {
  34714. name: "Jaw Dropper",
  34715. height: math.unit(27, "feet")
  34716. },
  34717. {
  34718. name: "Show Stopper",
  34719. height: math.unit(136, "feet")
  34720. },
  34721. {
  34722. name: "Superstar",
  34723. height: math.unit(1.9e6, "miles")
  34724. },
  34725. ]
  34726. ))
  34727. characterMakers.push(() => makeCharacter(
  34728. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34729. {
  34730. side: {
  34731. height: math.unit(2100, "feet"),
  34732. name: "Side",
  34733. image: {
  34734. source: "./media/characters/osiris/side.svg",
  34735. extra: 1105/939,
  34736. bottom: 167/1272
  34737. }
  34738. },
  34739. },
  34740. [
  34741. {
  34742. name: "Macro",
  34743. height: math.unit(2100, "feet"),
  34744. default: true
  34745. },
  34746. ]
  34747. ))
  34748. characterMakers.push(() => makeCharacter(
  34749. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34750. {
  34751. front: {
  34752. height: math.unit(6 + 8/12, "feet"),
  34753. weight: math.unit(225, "lb"),
  34754. name: "Front",
  34755. image: {
  34756. source: "./media/characters/rhys-londe/front.svg",
  34757. extra: 2258/2141,
  34758. bottom: 188/2446
  34759. }
  34760. },
  34761. back: {
  34762. height: math.unit(6 + 8/12, "feet"),
  34763. weight: math.unit(225, "lb"),
  34764. name: "Back",
  34765. image: {
  34766. source: "./media/characters/rhys-londe/back.svg",
  34767. extra: 2237/2137,
  34768. bottom: 63/2300
  34769. }
  34770. },
  34771. frontNsfw: {
  34772. height: math.unit(6 + 8/12, "feet"),
  34773. weight: math.unit(225, "lb"),
  34774. name: "Front (NSFW)",
  34775. image: {
  34776. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34777. extra: 2258/2141,
  34778. bottom: 188/2446
  34779. }
  34780. },
  34781. backNsfw: {
  34782. height: math.unit(6 + 8/12, "feet"),
  34783. weight: math.unit(225, "lb"),
  34784. name: "Back (NSFW)",
  34785. image: {
  34786. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34787. extra: 2237/2137,
  34788. bottom: 63/2300
  34789. }
  34790. },
  34791. dick: {
  34792. height: math.unit(30, "inches"),
  34793. name: "Dick",
  34794. image: {
  34795. source: "./media/characters/rhys-londe/dick.svg"
  34796. }
  34797. },
  34798. maw: {
  34799. height: math.unit(1.6, "feet"),
  34800. name: "Maw",
  34801. image: {
  34802. source: "./media/characters/rhys-londe/maw.svg"
  34803. }
  34804. },
  34805. },
  34806. [
  34807. {
  34808. name: "Normal",
  34809. height: math.unit(6 + 8/12, "feet"),
  34810. default: true
  34811. },
  34812. ]
  34813. ))
  34814. characterMakers.push(() => makeCharacter(
  34815. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34816. {
  34817. front: {
  34818. height: math.unit(3 + 10/12, "feet"),
  34819. weight: math.unit(90, "lb"),
  34820. name: "Front",
  34821. image: {
  34822. source: "./media/characters/taivas-ensim/front.svg",
  34823. extra: 1327/1216,
  34824. bottom: 96/1423
  34825. }
  34826. },
  34827. back: {
  34828. height: math.unit(3 + 10/12, "feet"),
  34829. weight: math.unit(90, "lb"),
  34830. name: "Back",
  34831. image: {
  34832. source: "./media/characters/taivas-ensim/back.svg",
  34833. extra: 1355/1247,
  34834. bottom: 11/1366
  34835. }
  34836. },
  34837. frontNsfw: {
  34838. height: math.unit(3 + 10/12, "feet"),
  34839. weight: math.unit(90, "lb"),
  34840. name: "Front (NSFW)",
  34841. image: {
  34842. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34843. extra: 1327/1216,
  34844. bottom: 96/1423
  34845. }
  34846. },
  34847. backNsfw: {
  34848. height: math.unit(3 + 10/12, "feet"),
  34849. weight: math.unit(90, "lb"),
  34850. name: "Back (NSFW)",
  34851. image: {
  34852. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34853. extra: 1355/1247,
  34854. bottom: 11/1366
  34855. }
  34856. },
  34857. },
  34858. [
  34859. {
  34860. name: "Normal",
  34861. height: math.unit(3 + 10/12, "feet"),
  34862. default: true
  34863. },
  34864. ]
  34865. ))
  34866. characterMakers.push(() => makeCharacter(
  34867. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34868. {
  34869. front: {
  34870. height: math.unit(9 + 6/12, "feet"),
  34871. weight: math.unit(940, "lb"),
  34872. name: "Front",
  34873. image: {
  34874. source: "./media/characters/byliss/front.svg",
  34875. extra: 1327/1290,
  34876. bottom: 82/1409
  34877. }
  34878. },
  34879. back: {
  34880. height: math.unit(9 + 6/12, "feet"),
  34881. weight: math.unit(940, "lb"),
  34882. name: "Back",
  34883. image: {
  34884. source: "./media/characters/byliss/back.svg",
  34885. extra: 1376/1349,
  34886. bottom: 9/1385
  34887. }
  34888. },
  34889. frontNsfw: {
  34890. height: math.unit(9 + 6/12, "feet"),
  34891. weight: math.unit(940, "lb"),
  34892. name: "Front (NSFW)",
  34893. image: {
  34894. source: "./media/characters/byliss/front-nsfw.svg",
  34895. extra: 1327/1290,
  34896. bottom: 82/1409
  34897. }
  34898. },
  34899. backNsfw: {
  34900. height: math.unit(9 + 6/12, "feet"),
  34901. weight: math.unit(940, "lb"),
  34902. name: "Back (NSFW)",
  34903. image: {
  34904. source: "./media/characters/byliss/back-nsfw.svg",
  34905. extra: 1376/1349,
  34906. bottom: 9/1385
  34907. }
  34908. },
  34909. },
  34910. [
  34911. {
  34912. name: "Normal",
  34913. height: math.unit(9 + 6/12, "feet"),
  34914. default: true
  34915. },
  34916. ]
  34917. ))
  34918. characterMakers.push(() => makeCharacter(
  34919. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34920. {
  34921. front: {
  34922. height: math.unit(5 + 2/12, "feet"),
  34923. weight: math.unit(200, "lb"),
  34924. name: "Front",
  34925. image: {
  34926. source: "./media/characters/noraly/front.svg",
  34927. extra: 4985/4773,
  34928. bottom: 150/5135
  34929. }
  34930. },
  34931. full: {
  34932. height: math.unit(5 + 2/12, "feet"),
  34933. weight: math.unit(164, "lb"),
  34934. name: "Full",
  34935. image: {
  34936. source: "./media/characters/noraly/full.svg",
  34937. extra: 1114/1059,
  34938. bottom: 35/1149
  34939. }
  34940. },
  34941. fuller: {
  34942. height: math.unit(5 + 2/12, "feet"),
  34943. weight: math.unit(230, "lb"),
  34944. name: "Fuller",
  34945. image: {
  34946. source: "./media/characters/noraly/fuller.svg",
  34947. extra: 1114/1059,
  34948. bottom: 35/1149
  34949. }
  34950. },
  34951. fullest: {
  34952. height: math.unit(5 + 2/12, "feet"),
  34953. weight: math.unit(300, "lb"),
  34954. name: "Fullest",
  34955. image: {
  34956. source: "./media/characters/noraly/fullest.svg",
  34957. extra: 1114/1059,
  34958. bottom: 35/1149
  34959. }
  34960. },
  34961. },
  34962. [
  34963. {
  34964. name: "Normal",
  34965. height: math.unit(5 + 2/12, "feet"),
  34966. default: true
  34967. },
  34968. ]
  34969. ))
  34970. characterMakers.push(() => makeCharacter(
  34971. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34972. {
  34973. front: {
  34974. height: math.unit(5 + 2/12, "feet"),
  34975. weight: math.unit(210, "lb"),
  34976. name: "Front",
  34977. image: {
  34978. source: "./media/characters/pera/front.svg",
  34979. extra: 1560/1531,
  34980. bottom: 165/1725
  34981. }
  34982. },
  34983. back: {
  34984. height: math.unit(5 + 2/12, "feet"),
  34985. weight: math.unit(210, "lb"),
  34986. name: "Back",
  34987. image: {
  34988. source: "./media/characters/pera/back.svg",
  34989. extra: 1523/1493,
  34990. bottom: 152/1675
  34991. }
  34992. },
  34993. dick: {
  34994. height: math.unit(2.4, "feet"),
  34995. name: "Dick",
  34996. image: {
  34997. source: "./media/characters/pera/dick.svg"
  34998. }
  34999. },
  35000. },
  35001. [
  35002. {
  35003. name: "Normal",
  35004. height: math.unit(5 + 2/12, "feet"),
  35005. default: true
  35006. },
  35007. ]
  35008. ))
  35009. characterMakers.push(() => makeCharacter(
  35010. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35011. {
  35012. front: {
  35013. height: math.unit(12, "feet"),
  35014. weight: math.unit(3200, "lb"),
  35015. name: "Front",
  35016. image: {
  35017. source: "./media/characters/julian/front.svg",
  35018. extra: 2962/2701,
  35019. bottom: 184/3146
  35020. }
  35021. },
  35022. maw: {
  35023. height: math.unit(5.35, "feet"),
  35024. name: "Maw",
  35025. image: {
  35026. source: "./media/characters/julian/maw.svg"
  35027. }
  35028. },
  35029. paw: {
  35030. height: math.unit(3.07, "feet"),
  35031. name: "Paw",
  35032. image: {
  35033. source: "./media/characters/julian/paw.svg"
  35034. }
  35035. },
  35036. },
  35037. [
  35038. {
  35039. name: "Default",
  35040. height: math.unit(12, "feet"),
  35041. default: true
  35042. },
  35043. {
  35044. name: "Big",
  35045. height: math.unit(50, "feet")
  35046. },
  35047. {
  35048. name: "Really Big",
  35049. height: math.unit(1, "mile")
  35050. },
  35051. {
  35052. name: "Extremely Big",
  35053. height: math.unit(100, "miles")
  35054. },
  35055. {
  35056. name: "Planet Hugger",
  35057. height: math.unit(200, "megameters")
  35058. },
  35059. {
  35060. name: "Unreasonably Big",
  35061. height: math.unit(1e300, "meters")
  35062. },
  35063. ]
  35064. ))
  35065. characterMakers.push(() => makeCharacter(
  35066. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35067. {
  35068. solgooleo: {
  35069. height: math.unit(4, "meters"),
  35070. weight: math.unit(6000*1.5, "kg"),
  35071. volume: math.unit(6000, "liters"),
  35072. name: "Solgooleo",
  35073. image: {
  35074. source: "./media/characters/pi/solgooleo.svg",
  35075. extra: 388/331,
  35076. bottom: 29/417
  35077. }
  35078. },
  35079. },
  35080. [
  35081. {
  35082. name: "Normal",
  35083. height: math.unit(4, "meters"),
  35084. default: true
  35085. },
  35086. ]
  35087. ))
  35088. characterMakers.push(() => makeCharacter(
  35089. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35090. {
  35091. front: {
  35092. height: math.unit(8, "feet"),
  35093. weight: math.unit(4, "tons"),
  35094. name: "Front",
  35095. image: {
  35096. source: "./media/characters/shaun/front.svg",
  35097. extra: 503/495,
  35098. bottom: 20/523
  35099. }
  35100. },
  35101. back: {
  35102. height: math.unit(8, "feet"),
  35103. weight: math.unit(4, "tons"),
  35104. name: "Back",
  35105. image: {
  35106. source: "./media/characters/shaun/back.svg",
  35107. extra: 487/480,
  35108. bottom: 20/507
  35109. }
  35110. },
  35111. },
  35112. [
  35113. {
  35114. name: "Lorg",
  35115. height: math.unit(8, "feet"),
  35116. default: true
  35117. },
  35118. ]
  35119. ))
  35120. characterMakers.push(() => makeCharacter(
  35121. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35122. {
  35123. frontAnthro: {
  35124. height: math.unit(7, "feet"),
  35125. name: "Front",
  35126. image: {
  35127. source: "./media/characters/sini/front-anthro.svg",
  35128. extra: 726/678,
  35129. bottom: 35/761
  35130. },
  35131. form: "anthro",
  35132. default: true
  35133. },
  35134. backAnthro: {
  35135. height: math.unit(7, "feet"),
  35136. name: "Back",
  35137. image: {
  35138. source: "./media/characters/sini/back-anthro.svg",
  35139. extra: 743/701,
  35140. bottom: 12/755
  35141. },
  35142. form: "anthro",
  35143. },
  35144. frontAnthroNsfw: {
  35145. height: math.unit(7, "feet"),
  35146. name: "Front (NSFW)",
  35147. image: {
  35148. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35149. extra: 726/678,
  35150. bottom: 35/761
  35151. },
  35152. form: "anthro"
  35153. },
  35154. backAnthroNsfw: {
  35155. height: math.unit(7, "feet"),
  35156. name: "Back (NSFW)",
  35157. image: {
  35158. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35159. extra: 743/701,
  35160. bottom: 12/755
  35161. },
  35162. form: "anthro",
  35163. },
  35164. mawAnthro: {
  35165. height: math.unit(2.14, "feet"),
  35166. name: "Maw",
  35167. image: {
  35168. source: "./media/characters/sini/maw-anthro.svg"
  35169. },
  35170. form: "anthro"
  35171. },
  35172. dick: {
  35173. height: math.unit(1.45, "feet"),
  35174. name: "Dick",
  35175. image: {
  35176. source: "./media/characters/sini/dick-anthro.svg"
  35177. },
  35178. form: "anthro"
  35179. },
  35180. feral: {
  35181. height: math.unit(16, "feet"),
  35182. name: "Feral",
  35183. image: {
  35184. source: "./media/characters/sini/feral.svg",
  35185. extra: 814/605,
  35186. bottom: 11/825
  35187. },
  35188. form: "feral",
  35189. default: true
  35190. },
  35191. feralNsfw: {
  35192. height: math.unit(16, "feet"),
  35193. name: "Feral (NSFW)",
  35194. image: {
  35195. source: "./media/characters/sini/feral-nsfw.svg",
  35196. extra: 814/605,
  35197. bottom: 11/825
  35198. },
  35199. form: "feral"
  35200. },
  35201. mawFeral: {
  35202. height: math.unit(5.66, "feet"),
  35203. name: "Maw",
  35204. image: {
  35205. source: "./media/characters/sini/maw-feral.svg"
  35206. },
  35207. form: "feral",
  35208. },
  35209. pawFeral: {
  35210. height: math.unit(5.17, "feet"),
  35211. name: "Paw",
  35212. image: {
  35213. source: "./media/characters/sini/paw-feral.svg"
  35214. },
  35215. form: "feral",
  35216. },
  35217. rumpFeral: {
  35218. height: math.unit(13.11, "feet"),
  35219. name: "Rump",
  35220. image: {
  35221. source: "./media/characters/sini/rump-feral.svg"
  35222. },
  35223. form: "feral",
  35224. },
  35225. dickFeral: {
  35226. height: math.unit(1, "feet"),
  35227. name: "Dick",
  35228. image: {
  35229. source: "./media/characters/sini/dick-feral.svg"
  35230. },
  35231. form: "feral",
  35232. },
  35233. eyeFeral: {
  35234. height: math.unit(1.23, "feet"),
  35235. name: "Eye",
  35236. image: {
  35237. source: "./media/characters/sini/eye-feral.svg"
  35238. },
  35239. form: "feral",
  35240. },
  35241. },
  35242. [
  35243. {
  35244. name: "Normal",
  35245. height: math.unit(7, "feet"),
  35246. default: true,
  35247. form: "anthro"
  35248. },
  35249. {
  35250. name: "Normal",
  35251. height: math.unit(16, "feet"),
  35252. default: true,
  35253. form: "feral"
  35254. },
  35255. ],
  35256. {
  35257. "anthro": {
  35258. name: "Anthro",
  35259. default: true
  35260. },
  35261. "feral": {
  35262. name: "Feral",
  35263. }
  35264. }
  35265. ))
  35266. characterMakers.push(() => makeCharacter(
  35267. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35268. {
  35269. side: {
  35270. height: math.unit(47.2, "meters"),
  35271. weight: math.unit(10000, "tons"),
  35272. name: "Side",
  35273. image: {
  35274. source: "./media/characters/raylldo/side.svg",
  35275. extra: 2363/642,
  35276. bottom: 221/2584
  35277. }
  35278. },
  35279. top: {
  35280. height: math.unit(240, "meters"),
  35281. weight: math.unit(10000, "tons"),
  35282. name: "Top",
  35283. image: {
  35284. source: "./media/characters/raylldo/top.svg"
  35285. }
  35286. },
  35287. bottom: {
  35288. height: math.unit(240, "meters"),
  35289. weight: math.unit(10000, "tons"),
  35290. name: "Bottom",
  35291. image: {
  35292. source: "./media/characters/raylldo/bottom.svg"
  35293. }
  35294. },
  35295. head: {
  35296. height: math.unit(38.6, "meters"),
  35297. name: "Head",
  35298. image: {
  35299. source: "./media/characters/raylldo/head.svg",
  35300. extra: 1335/1112,
  35301. bottom: 0/1335
  35302. }
  35303. },
  35304. maw: {
  35305. height: math.unit(16.37, "meters"),
  35306. name: "Maw",
  35307. image: {
  35308. source: "./media/characters/raylldo/maw.svg",
  35309. extra: 883/660,
  35310. bottom: 0/883
  35311. },
  35312. extraAttributes: {
  35313. preyCapacity: {
  35314. name: "Capacity",
  35315. power: 3,
  35316. type: "volume",
  35317. base: math.unit(1000, "people")
  35318. },
  35319. tongueSize: {
  35320. name: "Tongue Size",
  35321. power: 2,
  35322. type: "area",
  35323. base: math.unit(21, "m^2")
  35324. }
  35325. }
  35326. },
  35327. forepaw: {
  35328. height: math.unit(18, "meters"),
  35329. name: "Forepaw",
  35330. image: {
  35331. source: "./media/characters/raylldo/forepaw.svg"
  35332. }
  35333. },
  35334. hindpaw: {
  35335. height: math.unit(23, "meters"),
  35336. name: "Hindpaw",
  35337. image: {
  35338. source: "./media/characters/raylldo/hindpaw.svg"
  35339. }
  35340. },
  35341. genitals: {
  35342. height: math.unit(42, "meters"),
  35343. name: "Genitals",
  35344. image: {
  35345. source: "./media/characters/raylldo/genitals.svg"
  35346. }
  35347. },
  35348. },
  35349. [
  35350. {
  35351. name: "Normal",
  35352. height: math.unit(47.2, "meters"),
  35353. default: true
  35354. },
  35355. ]
  35356. ))
  35357. characterMakers.push(() => makeCharacter(
  35358. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35359. {
  35360. anthroFront: {
  35361. height: math.unit(9, "feet"),
  35362. weight: math.unit(600, "lb"),
  35363. name: "Anthro (Front)",
  35364. image: {
  35365. source: "./media/characters/glint/anthro-front.svg",
  35366. extra: 1097/1018,
  35367. bottom: 28/1125
  35368. }
  35369. },
  35370. anthroBack: {
  35371. height: math.unit(9, "feet"),
  35372. weight: math.unit(600, "lb"),
  35373. name: "Anthro (Back)",
  35374. image: {
  35375. source: "./media/characters/glint/anthro-back.svg",
  35376. extra: 1154/997,
  35377. bottom: 36/1190
  35378. }
  35379. },
  35380. feral: {
  35381. height: math.unit(11, "feet"),
  35382. weight: math.unit(50000, "lb"),
  35383. name: "Feral",
  35384. image: {
  35385. source: "./media/characters/glint/feral.svg",
  35386. extra: 3035/1585,
  35387. bottom: 1169/4204
  35388. }
  35389. },
  35390. dickAnthro: {
  35391. height: math.unit(0.7, "meters"),
  35392. name: "Dick (Anthro)",
  35393. image: {
  35394. source: "./media/characters/glint/dick-anthro.svg"
  35395. }
  35396. },
  35397. dickFeral: {
  35398. height: math.unit(2.65, "meters"),
  35399. name: "Dick (Feral)",
  35400. image: {
  35401. source: "./media/characters/glint/dick-feral.svg"
  35402. }
  35403. },
  35404. slitHidden: {
  35405. height: math.unit(5.85, "meters"),
  35406. name: "Slit (Hidden)",
  35407. image: {
  35408. source: "./media/characters/glint/slit-hidden.svg"
  35409. }
  35410. },
  35411. slitErect: {
  35412. height: math.unit(5.85, "meters"),
  35413. name: "Slit (Erect)",
  35414. image: {
  35415. source: "./media/characters/glint/slit-erect.svg"
  35416. }
  35417. },
  35418. mawAnthro: {
  35419. height: math.unit(0.63, "meters"),
  35420. name: "Maw (Anthro)",
  35421. image: {
  35422. source: "./media/characters/glint/maw.svg"
  35423. }
  35424. },
  35425. mawFeral: {
  35426. height: math.unit(2.89, "meters"),
  35427. name: "Maw (Feral)",
  35428. image: {
  35429. source: "./media/characters/glint/maw.svg"
  35430. }
  35431. },
  35432. },
  35433. [
  35434. {
  35435. name: "Normal",
  35436. height: math.unit(9, "feet"),
  35437. default: true
  35438. },
  35439. ]
  35440. ))
  35441. characterMakers.push(() => makeCharacter(
  35442. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35443. {
  35444. side: {
  35445. height: math.unit(15, "feet"),
  35446. weight: math.unit(5000, "kg"),
  35447. name: "Side",
  35448. image: {
  35449. source: "./media/characters/kairne/side.svg",
  35450. extra: 979/811,
  35451. bottom: 13/992
  35452. }
  35453. },
  35454. front: {
  35455. height: math.unit(15, "feet"),
  35456. weight: math.unit(5000, "kg"),
  35457. name: "Front",
  35458. image: {
  35459. source: "./media/characters/kairne/front.svg",
  35460. extra: 908/814,
  35461. bottom: 26/934
  35462. }
  35463. },
  35464. sideNsfw: {
  35465. height: math.unit(15, "feet"),
  35466. weight: math.unit(5000, "kg"),
  35467. name: "Side (NSFW)",
  35468. image: {
  35469. source: "./media/characters/kairne/side-nsfw.svg",
  35470. extra: 979/811,
  35471. bottom: 13/992
  35472. }
  35473. },
  35474. frontNsfw: {
  35475. height: math.unit(15, "feet"),
  35476. weight: math.unit(5000, "kg"),
  35477. name: "Front (NSFW)",
  35478. image: {
  35479. source: "./media/characters/kairne/front-nsfw.svg",
  35480. extra: 908/814,
  35481. bottom: 26/934
  35482. }
  35483. },
  35484. dickCaged: {
  35485. height: math.unit(0.65, "meters"),
  35486. name: "Dick-caged",
  35487. image: {
  35488. source: "./media/characters/kairne/dick-caged.svg"
  35489. }
  35490. },
  35491. dick: {
  35492. height: math.unit(0.79, "meters"),
  35493. name: "Dick",
  35494. image: {
  35495. source: "./media/characters/kairne/dick.svg"
  35496. }
  35497. },
  35498. genitals: {
  35499. height: math.unit(1.29, "meters"),
  35500. name: "Genitals",
  35501. image: {
  35502. source: "./media/characters/kairne/genitals.svg"
  35503. }
  35504. },
  35505. maw: {
  35506. height: math.unit(1.73, "meters"),
  35507. name: "Maw",
  35508. image: {
  35509. source: "./media/characters/kairne/maw.svg"
  35510. }
  35511. },
  35512. },
  35513. [
  35514. {
  35515. name: "Normal",
  35516. height: math.unit(15, "feet"),
  35517. default: true
  35518. },
  35519. ]
  35520. ))
  35521. characterMakers.push(() => makeCharacter(
  35522. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35523. {
  35524. front: {
  35525. height: math.unit(5 + 8/12, "feet"),
  35526. weight: math.unit(139, "lb"),
  35527. name: "Front",
  35528. image: {
  35529. source: "./media/characters/biscuit-jackal/front.svg",
  35530. extra: 2106/1961,
  35531. bottom: 58/2164
  35532. }
  35533. },
  35534. back: {
  35535. height: math.unit(5 + 8/12, "feet"),
  35536. weight: math.unit(139, "lb"),
  35537. name: "Back",
  35538. image: {
  35539. source: "./media/characters/biscuit-jackal/back.svg",
  35540. extra: 2132/1976,
  35541. bottom: 57/2189
  35542. }
  35543. },
  35544. werejackal: {
  35545. height: math.unit(6 + 3/12, "feet"),
  35546. weight: math.unit(188, "lb"),
  35547. name: "Werejackal",
  35548. image: {
  35549. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35550. extra: 2373/2178,
  35551. bottom: 53/2426
  35552. }
  35553. },
  35554. },
  35555. [
  35556. {
  35557. name: "Normal",
  35558. height: math.unit(5 + 8/12, "feet"),
  35559. default: true
  35560. },
  35561. ]
  35562. ))
  35563. characterMakers.push(() => makeCharacter(
  35564. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35565. {
  35566. front: {
  35567. height: math.unit(140, "cm"),
  35568. weight: math.unit(45, "kg"),
  35569. name: "Front",
  35570. image: {
  35571. source: "./media/characters/tayra-white/front.svg",
  35572. extra: 2229/2192,
  35573. bottom: 75/2304
  35574. }
  35575. },
  35576. },
  35577. [
  35578. {
  35579. name: "Normal",
  35580. height: math.unit(140, "cm"),
  35581. default: true
  35582. },
  35583. ]
  35584. ))
  35585. characterMakers.push(() => makeCharacter(
  35586. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35587. {
  35588. front: {
  35589. height: math.unit(4 + 5/12, "feet"),
  35590. name: "Front",
  35591. image: {
  35592. source: "./media/characters/scoop/front.svg",
  35593. extra: 1257/1136,
  35594. bottom: 69/1326
  35595. }
  35596. },
  35597. back: {
  35598. height: math.unit(4 + 5/12, "feet"),
  35599. name: "Back",
  35600. image: {
  35601. source: "./media/characters/scoop/back.svg",
  35602. extra: 1321/1152,
  35603. bottom: 32/1353
  35604. }
  35605. },
  35606. maw: {
  35607. height: math.unit(0.68, "feet"),
  35608. name: "Maw",
  35609. image: {
  35610. source: "./media/characters/scoop/maw.svg"
  35611. }
  35612. },
  35613. },
  35614. [
  35615. {
  35616. name: "Really Small",
  35617. height: math.unit(1, "mm")
  35618. },
  35619. {
  35620. name: "Micro",
  35621. height: math.unit(1, "inch")
  35622. },
  35623. {
  35624. name: "Normal",
  35625. height: math.unit(4 + 5/12, "feet"),
  35626. default: true
  35627. },
  35628. {
  35629. name: "Macro",
  35630. height: math.unit(200, "feet")
  35631. },
  35632. {
  35633. name: "Megamacro",
  35634. height: math.unit(3240, "feet")
  35635. },
  35636. {
  35637. name: "Teramacro",
  35638. height: math.unit(2500, "miles")
  35639. },
  35640. ]
  35641. ))
  35642. characterMakers.push(() => makeCharacter(
  35643. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35644. {
  35645. front: {
  35646. height: math.unit(15 + 7/12, "feet"),
  35647. weight: math.unit(1150, "tons"),
  35648. name: "Front",
  35649. image: {
  35650. source: "./media/characters/saphinara/front.svg",
  35651. extra: 1837/1643,
  35652. bottom: 84/1921
  35653. },
  35654. form: "normal",
  35655. default: true
  35656. },
  35657. side: {
  35658. height: math.unit(15 + 7/12, "feet"),
  35659. weight: math.unit(1150, "tons"),
  35660. name: "Side",
  35661. image: {
  35662. source: "./media/characters/saphinara/side.svg",
  35663. extra: 605/547,
  35664. bottom: 6/611
  35665. },
  35666. form: "normal"
  35667. },
  35668. back: {
  35669. height: math.unit(15 + 7/12, "feet"),
  35670. weight: math.unit(1150, "tons"),
  35671. name: "Back",
  35672. image: {
  35673. source: "./media/characters/saphinara/back.svg",
  35674. extra: 591/531,
  35675. bottom: 13/604
  35676. },
  35677. form: "normal"
  35678. },
  35679. frontTail: {
  35680. height: math.unit(15 + 7/12, "feet"),
  35681. weight: math.unit(1150, "tons"),
  35682. name: "Front (Full Tail)",
  35683. image: {
  35684. source: "./media/characters/saphinara/front-tail.svg",
  35685. extra: 2256/1630,
  35686. bottom: 261/2517
  35687. },
  35688. form: "normal"
  35689. },
  35690. insides: {
  35691. height: math.unit(11.92, "feet"),
  35692. name: "Insides",
  35693. image: {
  35694. source: "./media/characters/saphinara/insides.svg"
  35695. },
  35696. form: "normal"
  35697. },
  35698. head: {
  35699. height: math.unit(4.17, "feet"),
  35700. name: "Head",
  35701. image: {
  35702. source: "./media/characters/saphinara/head.svg"
  35703. },
  35704. form: "normal"
  35705. },
  35706. tongue: {
  35707. height: math.unit(4.60, "feet"),
  35708. name: "Tongue",
  35709. image: {
  35710. source: "./media/characters/saphinara/tongue.svg"
  35711. },
  35712. form: "normal"
  35713. },
  35714. headEnraged: {
  35715. height: math.unit(5.55, "feet"),
  35716. name: "Head (Enraged)",
  35717. image: {
  35718. source: "./media/characters/saphinara/head-enraged.svg"
  35719. },
  35720. form: "normal"
  35721. },
  35722. wings: {
  35723. height: math.unit(11.95, "feet"),
  35724. name: "Wings",
  35725. image: {
  35726. source: "./media/characters/saphinara/wings.svg"
  35727. },
  35728. form: "normal"
  35729. },
  35730. feathers: {
  35731. height: math.unit(8.92, "feet"),
  35732. name: "Feathers",
  35733. image: {
  35734. source: "./media/characters/saphinara/feathers.svg"
  35735. },
  35736. form: "normal"
  35737. },
  35738. shackles: {
  35739. height: math.unit(2, "feet"),
  35740. name: "Shackles",
  35741. image: {
  35742. source: "./media/characters/saphinara/shackles.svg"
  35743. },
  35744. form: "normal"
  35745. },
  35746. eyes: {
  35747. height: math.unit(1.331, "feet"),
  35748. name: "Eyes",
  35749. image: {
  35750. source: "./media/characters/saphinara/eyes.svg"
  35751. },
  35752. form: "normal"
  35753. },
  35754. eyesEnraged: {
  35755. height: math.unit(1.331, "feet"),
  35756. name: "Eyes (Enraged)",
  35757. image: {
  35758. source: "./media/characters/saphinara/eyes-enraged.svg"
  35759. },
  35760. form: "normal"
  35761. },
  35762. trueFormSide: {
  35763. height: math.unit(200, "feet"),
  35764. weight: math.unit(1e7, "tons"),
  35765. name: "Side",
  35766. image: {
  35767. source: "./media/characters/saphinara/true-form-side.svg",
  35768. extra: 1399/770,
  35769. bottom: 97/1496
  35770. },
  35771. form: "true-form",
  35772. default: true
  35773. },
  35774. trueFormMaw: {
  35775. height: math.unit(71.5, "feet"),
  35776. name: "Maw",
  35777. image: {
  35778. source: "./media/characters/saphinara/true-form-maw.svg",
  35779. extra: 2302/1453,
  35780. bottom: 0/2302
  35781. },
  35782. form: "true-form"
  35783. },
  35784. meowberusSide: {
  35785. height: math.unit(75, "feet"),
  35786. weight: math.unit(180000, "kg"),
  35787. preyCapacity: math.unit(50000, "people"),
  35788. name: "Side",
  35789. image: {
  35790. source: "./media/characters/saphinara/meowberus-side.svg",
  35791. extra: 1400/711,
  35792. bottom: 126/1526
  35793. },
  35794. form: "meowberus",
  35795. extraAttributes: {
  35796. "pawArea": {
  35797. name: "Paw Size",
  35798. power: 2,
  35799. type: "area",
  35800. base: math.unit(35, "m^2")
  35801. }
  35802. }
  35803. },
  35804. },
  35805. [
  35806. {
  35807. name: "Normal",
  35808. height: math.unit(15 + 7/12, "feet"),
  35809. default: true,
  35810. form: "normal"
  35811. },
  35812. {
  35813. name: "Angry",
  35814. height: math.unit(30 + 6/12, "feet"),
  35815. form: "normal"
  35816. },
  35817. {
  35818. name: "Enraged",
  35819. height: math.unit(102 + 1/12, "feet"),
  35820. form: "normal"
  35821. },
  35822. {
  35823. name: "True",
  35824. height: math.unit(200, "feet"),
  35825. default: true,
  35826. form: "true-form"
  35827. },
  35828. {
  35829. name: "Normal",
  35830. height: math.unit(75, "feet"),
  35831. default: true,
  35832. form: "meowberus"
  35833. },
  35834. ],
  35835. {
  35836. "normal": {
  35837. name: "Normal",
  35838. default: true
  35839. },
  35840. "true-form": {
  35841. name: "True Form"
  35842. },
  35843. "meowberus": {
  35844. name: "Meowberus",
  35845. },
  35846. }
  35847. ))
  35848. characterMakers.push(() => makeCharacter(
  35849. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35850. {
  35851. front: {
  35852. height: math.unit(6 + 8/12, "feet"),
  35853. weight: math.unit(300, "lb"),
  35854. name: "Front",
  35855. image: {
  35856. source: "./media/characters/jrain/front.svg",
  35857. extra: 3039/2865,
  35858. bottom: 399/3438
  35859. }
  35860. },
  35861. back: {
  35862. height: math.unit(6 + 8/12, "feet"),
  35863. weight: math.unit(300, "lb"),
  35864. name: "Back",
  35865. image: {
  35866. source: "./media/characters/jrain/back.svg",
  35867. extra: 3089/2938,
  35868. bottom: 172/3261
  35869. }
  35870. },
  35871. head: {
  35872. height: math.unit(2.14, "feet"),
  35873. name: "Head",
  35874. image: {
  35875. source: "./media/characters/jrain/head.svg"
  35876. }
  35877. },
  35878. maw: {
  35879. height: math.unit(1.77, "feet"),
  35880. name: "Maw",
  35881. image: {
  35882. source: "./media/characters/jrain/maw.svg"
  35883. }
  35884. },
  35885. leftHand: {
  35886. height: math.unit(1.1, "feet"),
  35887. name: "Left Hand",
  35888. image: {
  35889. source: "./media/characters/jrain/left-hand.svg"
  35890. }
  35891. },
  35892. rightHand: {
  35893. height: math.unit(1.1, "feet"),
  35894. name: "Right Hand",
  35895. image: {
  35896. source: "./media/characters/jrain/right-hand.svg"
  35897. }
  35898. },
  35899. eye: {
  35900. height: math.unit(0.35, "feet"),
  35901. name: "Eye",
  35902. image: {
  35903. source: "./media/characters/jrain/eye.svg"
  35904. }
  35905. },
  35906. },
  35907. [
  35908. {
  35909. name: "Normal",
  35910. height: math.unit(6 + 8/12, "feet"),
  35911. default: true
  35912. },
  35913. {
  35914. name: "Casually Large",
  35915. height: math.unit(25, "feet")
  35916. },
  35917. {
  35918. name: "Giant",
  35919. height: math.unit(100, "feet")
  35920. },
  35921. {
  35922. name: "Kaiju",
  35923. height: math.unit(300, "feet")
  35924. },
  35925. ]
  35926. ))
  35927. characterMakers.push(() => makeCharacter(
  35928. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35929. {
  35930. dragon: {
  35931. height: math.unit(5, "meters"),
  35932. name: "Dragon",
  35933. image: {
  35934. source: "./media/characters/sabrina/dragon.svg",
  35935. extra: 3670 / 2365,
  35936. bottom: 333 / 4003
  35937. }
  35938. },
  35939. gryphon: {
  35940. height: math.unit(3, "meters"),
  35941. name: "Gryphon",
  35942. image: {
  35943. source: "./media/characters/sabrina/gryphon.svg",
  35944. extra: 1576 / 945,
  35945. bottom: 71 / 1647
  35946. }
  35947. },
  35948. snake: {
  35949. height: math.unit(12, "meters"),
  35950. name: "Snake",
  35951. image: {
  35952. source: "./media/characters/sabrina/snake.svg",
  35953. extra: 1758 / 1320,
  35954. bottom: 186 / 1944
  35955. }
  35956. },
  35957. collar: {
  35958. height: math.unit(1.86, "meters"),
  35959. name: "Collar",
  35960. image: {
  35961. source: "./media/characters/sabrina/collar.svg"
  35962. }
  35963. },
  35964. eye: {
  35965. height: math.unit(0.53, "meters"),
  35966. name: "Eye",
  35967. image: {
  35968. source: "./media/characters/sabrina/eye.svg"
  35969. }
  35970. },
  35971. foot: {
  35972. height: math.unit(1.86, "meters"),
  35973. name: "Foot",
  35974. image: {
  35975. source: "./media/characters/sabrina/foot.svg"
  35976. }
  35977. },
  35978. hand: {
  35979. height: math.unit(1.32, "meters"),
  35980. name: "Hand",
  35981. image: {
  35982. source: "./media/characters/sabrina/hand.svg"
  35983. }
  35984. },
  35985. head: {
  35986. height: math.unit(2.44, "meters"),
  35987. name: "Head",
  35988. image: {
  35989. source: "./media/characters/sabrina/head.svg"
  35990. }
  35991. },
  35992. headAngry: {
  35993. height: math.unit(2.44, "meters"),
  35994. name: "Head (Angry))",
  35995. image: {
  35996. source: "./media/characters/sabrina/head-angry.svg"
  35997. }
  35998. },
  35999. maw: {
  36000. height: math.unit(1.65, "meters"),
  36001. name: "Maw",
  36002. image: {
  36003. source: "./media/characters/sabrina/maw.svg"
  36004. }
  36005. },
  36006. spikes: {
  36007. height: math.unit(1.69, "meters"),
  36008. name: "Spikes",
  36009. image: {
  36010. source: "./media/characters/sabrina/spikes.svg"
  36011. }
  36012. },
  36013. stomach: {
  36014. height: math.unit(1.15, "meters"),
  36015. name: "Stomach",
  36016. image: {
  36017. source: "./media/characters/sabrina/stomach.svg"
  36018. }
  36019. },
  36020. tongue: {
  36021. height: math.unit(1.27, "meters"),
  36022. name: "Tongue",
  36023. image: {
  36024. source: "./media/characters/sabrina/tongue.svg"
  36025. }
  36026. },
  36027. wingDorsal: {
  36028. height: math.unit(4.85, "meters"),
  36029. name: "Wing (Dorsal)",
  36030. image: {
  36031. source: "./media/characters/sabrina/wing-dorsal.svg"
  36032. }
  36033. },
  36034. wingVentral: {
  36035. height: math.unit(4.85, "meters"),
  36036. name: "Wing (Ventral)",
  36037. image: {
  36038. source: "./media/characters/sabrina/wing-ventral.svg"
  36039. }
  36040. },
  36041. },
  36042. [
  36043. {
  36044. name: "Normal",
  36045. height: math.unit(5, "meters"),
  36046. default: true
  36047. },
  36048. ]
  36049. ))
  36050. characterMakers.push(() => makeCharacter(
  36051. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36052. {
  36053. frontMaid: {
  36054. height: math.unit(5 + 5/12, "feet"),
  36055. weight: math.unit(130, "lb"),
  36056. name: "Front (Maid)",
  36057. image: {
  36058. source: "./media/characters/midnight-tales/front-maid.svg",
  36059. extra: 489/454,
  36060. bottom: 61/550
  36061. }
  36062. },
  36063. frontFormal: {
  36064. height: math.unit(5 + 5/12, "feet"),
  36065. weight: math.unit(130, "lb"),
  36066. name: "Front (Formal)",
  36067. image: {
  36068. source: "./media/characters/midnight-tales/front-formal.svg",
  36069. extra: 489/454,
  36070. bottom: 61/550
  36071. }
  36072. },
  36073. back: {
  36074. height: math.unit(5 + 5/12, "feet"),
  36075. weight: math.unit(130, "lb"),
  36076. name: "Back",
  36077. image: {
  36078. source: "./media/characters/midnight-tales/back.svg",
  36079. extra: 498/456,
  36080. bottom: 33/531
  36081. }
  36082. },
  36083. frontBeast: {
  36084. height: math.unit(40, "feet"),
  36085. weight: math.unit(64000, "lb"),
  36086. name: "Front (Beast)",
  36087. image: {
  36088. source: "./media/characters/midnight-tales/front-beast.svg",
  36089. extra: 927/860,
  36090. bottom: 53/980
  36091. }
  36092. },
  36093. backBeast: {
  36094. height: math.unit(40, "feet"),
  36095. weight: math.unit(64000, "lb"),
  36096. name: "Back (Beast)",
  36097. image: {
  36098. source: "./media/characters/midnight-tales/back-beast.svg",
  36099. extra: 929/855,
  36100. bottom: 16/945
  36101. }
  36102. },
  36103. footBeast: {
  36104. height: math.unit(6.7, "feet"),
  36105. name: "Foot (Beast)",
  36106. image: {
  36107. source: "./media/characters/midnight-tales/foot-beast.svg"
  36108. }
  36109. },
  36110. headBeast: {
  36111. height: math.unit(8, "feet"),
  36112. name: "Head (Beast)",
  36113. image: {
  36114. source: "./media/characters/midnight-tales/head-beast.svg"
  36115. }
  36116. },
  36117. },
  36118. [
  36119. {
  36120. name: "Normal",
  36121. height: math.unit(5 + 5 / 12, "feet"),
  36122. default: true
  36123. },
  36124. {
  36125. name: "Macro",
  36126. height: math.unit(25, "feet")
  36127. },
  36128. ]
  36129. ))
  36130. characterMakers.push(() => makeCharacter(
  36131. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36132. {
  36133. front: {
  36134. height: math.unit(5 + 10/12, "feet"),
  36135. name: "Front",
  36136. image: {
  36137. source: "./media/characters/argon/front.svg",
  36138. extra: 2009/1935,
  36139. bottom: 118/2127
  36140. }
  36141. },
  36142. back: {
  36143. height: math.unit(5 + 10/12, "feet"),
  36144. name: "Back",
  36145. image: {
  36146. source: "./media/characters/argon/back.svg",
  36147. extra: 2047/1992,
  36148. bottom: 20/2067
  36149. }
  36150. },
  36151. frontDressed: {
  36152. height: math.unit(5 + 10/12, "feet"),
  36153. name: "Front (Dressed)",
  36154. image: {
  36155. source: "./media/characters/argon/front-dressed.svg",
  36156. extra: 2009/1935,
  36157. bottom: 118/2127
  36158. }
  36159. },
  36160. },
  36161. [
  36162. {
  36163. name: "Normal",
  36164. height: math.unit(5 + 10/12, "feet"),
  36165. default: true
  36166. },
  36167. ]
  36168. ))
  36169. characterMakers.push(() => makeCharacter(
  36170. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36171. {
  36172. front: {
  36173. height: math.unit(8 + 6/12, "feet"),
  36174. weight: math.unit(1150, "lb"),
  36175. name: "Front",
  36176. image: {
  36177. source: "./media/characters/kichi/front.svg",
  36178. extra: 1267/1164,
  36179. bottom: 61/1328
  36180. }
  36181. },
  36182. back: {
  36183. height: math.unit(8 + 6/12, "feet"),
  36184. weight: math.unit(1150, "lb"),
  36185. name: "Back",
  36186. image: {
  36187. source: "./media/characters/kichi/back.svg",
  36188. extra: 1273/1166,
  36189. bottom: 33/1306
  36190. }
  36191. },
  36192. },
  36193. [
  36194. {
  36195. name: "Normal",
  36196. height: math.unit(8 + 6/12, "feet"),
  36197. default: true
  36198. },
  36199. ]
  36200. ))
  36201. characterMakers.push(() => makeCharacter(
  36202. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36203. {
  36204. front: {
  36205. height: math.unit(6, "feet"),
  36206. weight: math.unit(210, "lb"),
  36207. name: "Front",
  36208. image: {
  36209. source: "./media/characters/manetel-greyscale/front.svg",
  36210. extra: 350/312,
  36211. bottom: 8/358
  36212. }
  36213. },
  36214. },
  36215. [
  36216. {
  36217. name: "Micro",
  36218. height: math.unit(2, "inches")
  36219. },
  36220. {
  36221. name: "Normal",
  36222. height: math.unit(6, "feet"),
  36223. default: true
  36224. },
  36225. {
  36226. name: "Minimacro",
  36227. height: math.unit(17, "feet")
  36228. },
  36229. {
  36230. name: "Macro",
  36231. height: math.unit(117, "feet")
  36232. },
  36233. ]
  36234. ))
  36235. characterMakers.push(() => makeCharacter(
  36236. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36237. {
  36238. side: {
  36239. height: math.unit(5 + 1/12, "feet"),
  36240. weight: math.unit(418, "lb"),
  36241. name: "Side",
  36242. image: {
  36243. source: "./media/characters/softpurr/side.svg",
  36244. extra: 1993/1945,
  36245. bottom: 134/2127
  36246. }
  36247. },
  36248. front: {
  36249. height: math.unit(5 + 1/12, "feet"),
  36250. weight: math.unit(418, "lb"),
  36251. name: "Front",
  36252. image: {
  36253. source: "./media/characters/softpurr/front.svg",
  36254. extra: 1950/1856,
  36255. bottom: 174/2124
  36256. }
  36257. },
  36258. paw: {
  36259. height: math.unit(1, "feet"),
  36260. name: "Paw",
  36261. image: {
  36262. source: "./media/characters/softpurr/paw.svg"
  36263. }
  36264. },
  36265. },
  36266. [
  36267. {
  36268. name: "Normal",
  36269. height: math.unit(5 + 1/12, "feet"),
  36270. default: true
  36271. },
  36272. ]
  36273. ))
  36274. characterMakers.push(() => makeCharacter(
  36275. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36276. {
  36277. front: {
  36278. height: math.unit(260, "meters"),
  36279. name: "Front",
  36280. image: {
  36281. source: "./media/characters/anahita/front.svg",
  36282. extra: 665/635,
  36283. bottom: 89/754
  36284. }
  36285. },
  36286. },
  36287. [
  36288. {
  36289. name: "Macro",
  36290. height: math.unit(260, "meters"),
  36291. default: true
  36292. },
  36293. ]
  36294. ))
  36295. characterMakers.push(() => makeCharacter(
  36296. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36297. {
  36298. front: {
  36299. height: math.unit(4 + 10/12, "feet"),
  36300. weight: math.unit(160, "lb"),
  36301. name: "Front",
  36302. image: {
  36303. source: "./media/characters/chip-mouse/front.svg",
  36304. extra: 3528/3408,
  36305. bottom: 0/3528
  36306. }
  36307. },
  36308. frontNsfw: {
  36309. height: math.unit(4 + 10/12, "feet"),
  36310. weight: math.unit(160, "lb"),
  36311. name: "Front (NSFW)",
  36312. image: {
  36313. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36314. extra: 3528/3408,
  36315. bottom: 0/3528
  36316. }
  36317. },
  36318. },
  36319. [
  36320. {
  36321. name: "Normal",
  36322. height: math.unit(4 + 10/12, "feet"),
  36323. default: true
  36324. },
  36325. ]
  36326. ))
  36327. characterMakers.push(() => makeCharacter(
  36328. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36329. {
  36330. side: {
  36331. height: math.unit(10, "feet"),
  36332. weight: math.unit(14000, "lb"),
  36333. name: "Side",
  36334. image: {
  36335. source: "./media/characters/kremm/side.svg",
  36336. extra: 1390/1053,
  36337. bottom: 90/1480
  36338. }
  36339. },
  36340. gut: {
  36341. height: math.unit(5.8, "feet"),
  36342. name: "Gut",
  36343. image: {
  36344. source: "./media/characters/kremm/gut.svg"
  36345. }
  36346. },
  36347. ass: {
  36348. height: math.unit(6.1, "feet"),
  36349. name: "Ass",
  36350. image: {
  36351. source: "./media/characters/kremm/ass.svg"
  36352. }
  36353. },
  36354. jaws: {
  36355. height: math.unit(2.2, "feet"),
  36356. name: "Jaws",
  36357. image: {
  36358. source: "./media/characters/kremm/jaws.svg"
  36359. }
  36360. },
  36361. dick: {
  36362. height: math.unit(4.26, "feet"),
  36363. name: "Dick",
  36364. image: {
  36365. source: "./media/characters/kremm/dick.svg"
  36366. }
  36367. },
  36368. },
  36369. [
  36370. {
  36371. name: "Normal",
  36372. height: math.unit(10, "feet"),
  36373. default: true
  36374. },
  36375. ]
  36376. ))
  36377. characterMakers.push(() => makeCharacter(
  36378. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36379. {
  36380. front: {
  36381. height: math.unit(30, "stories"),
  36382. name: "Front",
  36383. image: {
  36384. source: "./media/characters/kai/front.svg",
  36385. extra: 1892/1718,
  36386. bottom: 162/2054
  36387. }
  36388. },
  36389. },
  36390. [
  36391. {
  36392. name: "Macro",
  36393. height: math.unit(30, "stories"),
  36394. default: true
  36395. },
  36396. ]
  36397. ))
  36398. characterMakers.push(() => makeCharacter(
  36399. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36400. {
  36401. front: {
  36402. height: math.unit(6 + 4/12, "feet"),
  36403. weight: math.unit(145, "lb"),
  36404. name: "Front",
  36405. image: {
  36406. source: "./media/characters/sykes/front.svg",
  36407. extra: 1321 / 1187,
  36408. bottom: 66 / 1387
  36409. }
  36410. },
  36411. back: {
  36412. height: math.unit(6 + 4/12, "feet"),
  36413. weight: math.unit(145, "lb"),
  36414. name: "Back",
  36415. image: {
  36416. source: "./media/characters/sykes/back.svg",
  36417. extra: 1326/1181,
  36418. bottom: 31/1357
  36419. }
  36420. },
  36421. traditionalOutfit: {
  36422. height: math.unit(6 + 4/12, "feet"),
  36423. weight: math.unit(145, "lb"),
  36424. name: "Traditional Outfit",
  36425. image: {
  36426. source: "./media/characters/sykes/traditional-outfit.svg",
  36427. extra: 1321 / 1187,
  36428. bottom: 66 / 1387
  36429. }
  36430. },
  36431. adventureOutfit: {
  36432. height: math.unit(6 + 4/12, "feet"),
  36433. weight: math.unit(145, "lb"),
  36434. name: "Adventure Outfit",
  36435. image: {
  36436. source: "./media/characters/sykes/adventure-outfit.svg",
  36437. extra: 1321 / 1187,
  36438. bottom: 66 / 1387
  36439. }
  36440. },
  36441. handLeft: {
  36442. height: math.unit(0.9, "feet"),
  36443. name: "Hand (Left)",
  36444. image: {
  36445. source: "./media/characters/sykes/hand-left.svg"
  36446. }
  36447. },
  36448. handRight: {
  36449. height: math.unit(0.839, "feet"),
  36450. name: "Hand (Right)",
  36451. image: {
  36452. source: "./media/characters/sykes/hand-right.svg"
  36453. }
  36454. },
  36455. leftFoot: {
  36456. height: math.unit(1.2, "feet"),
  36457. name: "Foot (Left)",
  36458. image: {
  36459. source: "./media/characters/sykes/foot-left.svg"
  36460. }
  36461. },
  36462. rightFoot: {
  36463. height: math.unit(1.2, "feet"),
  36464. name: "Foot (Right)",
  36465. image: {
  36466. source: "./media/characters/sykes/foot-right.svg"
  36467. }
  36468. },
  36469. maw: {
  36470. height: math.unit(1.93, "feet"),
  36471. name: "Maw",
  36472. image: {
  36473. source: "./media/characters/sykes/maw.svg"
  36474. }
  36475. },
  36476. teeth: {
  36477. height: math.unit(0.51, "feet"),
  36478. name: "Teeth",
  36479. image: {
  36480. source: "./media/characters/sykes/teeth.svg"
  36481. }
  36482. },
  36483. tongue: {
  36484. height: math.unit(2.13, "feet"),
  36485. name: "Tongue",
  36486. image: {
  36487. source: "./media/characters/sykes/tongue.svg"
  36488. }
  36489. },
  36490. uvula: {
  36491. height: math.unit(0.16, "feet"),
  36492. name: "Uvula",
  36493. image: {
  36494. source: "./media/characters/sykes/uvula.svg"
  36495. }
  36496. },
  36497. collar: {
  36498. height: math.unit(0.287, "feet"),
  36499. name: "Collar",
  36500. image: {
  36501. source: "./media/characters/sykes/collar.svg"
  36502. }
  36503. },
  36504. tail: {
  36505. height: math.unit(3.8, "feet"),
  36506. name: "Tail",
  36507. image: {
  36508. source: "./media/characters/sykes/tail.svg"
  36509. }
  36510. },
  36511. },
  36512. [
  36513. {
  36514. name: "Shrunken",
  36515. height: math.unit(5, "inches")
  36516. },
  36517. {
  36518. name: "Normal",
  36519. height: math.unit(6 + 4 / 12, "feet"),
  36520. default: true
  36521. },
  36522. {
  36523. name: "Big",
  36524. height: math.unit(15, "feet")
  36525. },
  36526. ]
  36527. ))
  36528. characterMakers.push(() => makeCharacter(
  36529. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36530. {
  36531. front: {
  36532. height: math.unit(5 + 8/12, "feet"),
  36533. weight: math.unit(190, "lb"),
  36534. name: "Front",
  36535. image: {
  36536. source: "./media/characters/oven-otter/front.svg",
  36537. extra: 1809/1740,
  36538. bottom: 181/1990
  36539. }
  36540. },
  36541. back: {
  36542. height: math.unit(5 + 8/12, "feet"),
  36543. weight: math.unit(190, "lb"),
  36544. name: "Back",
  36545. image: {
  36546. source: "./media/characters/oven-otter/back.svg",
  36547. extra: 1709/1635,
  36548. bottom: 118/1827
  36549. }
  36550. },
  36551. hand: {
  36552. height: math.unit(1.07, "feet"),
  36553. name: "Hand",
  36554. image: {
  36555. source: "./media/characters/oven-otter/hand.svg"
  36556. }
  36557. },
  36558. beans: {
  36559. height: math.unit(1.74, "feet"),
  36560. name: "Beans",
  36561. image: {
  36562. source: "./media/characters/oven-otter/beans.svg"
  36563. }
  36564. },
  36565. },
  36566. [
  36567. {
  36568. name: "Micro",
  36569. height: math.unit(0.5, "inches")
  36570. },
  36571. {
  36572. name: "Normal",
  36573. height: math.unit(5 + 8/12, "feet"),
  36574. default: true
  36575. },
  36576. {
  36577. name: "Macro",
  36578. height: math.unit(250, "feet")
  36579. },
  36580. {
  36581. name: "Really High",
  36582. height: math.unit(420, "feet")
  36583. },
  36584. ]
  36585. ))
  36586. characterMakers.push(() => makeCharacter(
  36587. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36588. {
  36589. front: {
  36590. height: math.unit(5, "meters"),
  36591. weight: math.unit(292000000000000, "kg"),
  36592. name: "Front",
  36593. image: {
  36594. source: "./media/characters/devourer/front.svg",
  36595. extra: 1800/1733,
  36596. bottom: 211/2011
  36597. }
  36598. },
  36599. maw: {
  36600. height: math.unit(1.1, "meter"),
  36601. name: "Maw",
  36602. image: {
  36603. source: "./media/characters/devourer/maw.svg"
  36604. }
  36605. },
  36606. },
  36607. [
  36608. {
  36609. name: "Small",
  36610. height: math.unit(3, "meters")
  36611. },
  36612. {
  36613. name: "Large",
  36614. height: math.unit(5, "meters"),
  36615. default: true
  36616. },
  36617. ]
  36618. ))
  36619. characterMakers.push(() => makeCharacter(
  36620. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36621. {
  36622. front: {
  36623. height: math.unit(6, "feet"),
  36624. weight: math.unit(400, "lb"),
  36625. name: "Front",
  36626. image: {
  36627. source: "./media/characters/ellarby/front.svg",
  36628. extra: 1909/1763,
  36629. bottom: 80/1989
  36630. }
  36631. },
  36632. back: {
  36633. height: math.unit(6, "feet"),
  36634. weight: math.unit(400, "lb"),
  36635. name: "Back",
  36636. image: {
  36637. source: "./media/characters/ellarby/back.svg",
  36638. extra: 1914/1784,
  36639. bottom: 172/2086
  36640. }
  36641. },
  36642. },
  36643. [
  36644. {
  36645. name: "Mischief",
  36646. height: math.unit(18, "inches")
  36647. },
  36648. {
  36649. name: "Trouble",
  36650. height: math.unit(12, "feet")
  36651. },
  36652. {
  36653. name: "Havoc",
  36654. height: math.unit(200, "feet"),
  36655. default: true
  36656. },
  36657. {
  36658. name: "Pandemonium",
  36659. height: math.unit(1, "mile")
  36660. },
  36661. {
  36662. name: "Catastrophe",
  36663. height: math.unit(100, "miles")
  36664. },
  36665. ]
  36666. ))
  36667. characterMakers.push(() => makeCharacter(
  36668. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36669. {
  36670. front: {
  36671. height: math.unit(4.7, "meters"),
  36672. weight: math.unit(6500, "kg"),
  36673. name: "Front",
  36674. image: {
  36675. source: "./media/characters/vex/front.svg",
  36676. extra: 1288/1140,
  36677. bottom: 100/1388
  36678. }
  36679. },
  36680. },
  36681. [
  36682. {
  36683. name: "Normal",
  36684. height: math.unit(4.7, "meters"),
  36685. default: true
  36686. },
  36687. ]
  36688. ))
  36689. characterMakers.push(() => makeCharacter(
  36690. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36691. {
  36692. normal: {
  36693. height: math.unit(6, "feet"),
  36694. weight: math.unit(350, "lb"),
  36695. name: "Normal",
  36696. image: {
  36697. source: "./media/characters/teshy/normal.svg",
  36698. extra: 1795/1735,
  36699. bottom: 16/1811
  36700. }
  36701. },
  36702. monsterFront: {
  36703. height: math.unit(12, "feet"),
  36704. weight: math.unit(4700, "lb"),
  36705. name: "Monster (Front)",
  36706. image: {
  36707. source: "./media/characters/teshy/monster-front.svg",
  36708. extra: 2042/2034,
  36709. bottom: 128/2170
  36710. }
  36711. },
  36712. monsterSide: {
  36713. height: math.unit(12, "feet"),
  36714. weight: math.unit(4700, "lb"),
  36715. name: "Monster (Side)",
  36716. image: {
  36717. source: "./media/characters/teshy/monster-side.svg",
  36718. extra: 2067/2056,
  36719. bottom: 70/2137
  36720. }
  36721. },
  36722. monsterBack: {
  36723. height: math.unit(12, "feet"),
  36724. weight: math.unit(4700, "lb"),
  36725. name: "Monster (Back)",
  36726. image: {
  36727. source: "./media/characters/teshy/monster-back.svg",
  36728. extra: 1921/1914,
  36729. bottom: 171/2092
  36730. }
  36731. },
  36732. },
  36733. [
  36734. {
  36735. name: "Normal",
  36736. height: math.unit(6, "feet"),
  36737. default: true
  36738. },
  36739. ]
  36740. ))
  36741. characterMakers.push(() => makeCharacter(
  36742. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36743. {
  36744. front: {
  36745. height: math.unit(6, "feet"),
  36746. name: "Front",
  36747. image: {
  36748. source: "./media/characters/ramey/front.svg",
  36749. extra: 790/787,
  36750. bottom: 27/817
  36751. }
  36752. },
  36753. },
  36754. [
  36755. {
  36756. name: "Normal",
  36757. height: math.unit(6, "feet"),
  36758. default: true
  36759. },
  36760. ]
  36761. ))
  36762. characterMakers.push(() => makeCharacter(
  36763. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36764. {
  36765. front: {
  36766. height: math.unit(5 + 5/12, "feet"),
  36767. weight: math.unit(120, "lb"),
  36768. name: "Front",
  36769. image: {
  36770. source: "./media/characters/phirae/front.svg",
  36771. extra: 2491/2436,
  36772. bottom: 38/2529
  36773. }
  36774. },
  36775. },
  36776. [
  36777. {
  36778. name: "Normal",
  36779. height: math.unit(5 + 5/12, "feet"),
  36780. default: true
  36781. },
  36782. ]
  36783. ))
  36784. characterMakers.push(() => makeCharacter(
  36785. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36786. {
  36787. front: {
  36788. height: math.unit(5 + 3/12, "feet"),
  36789. name: "Front",
  36790. image: {
  36791. source: "./media/characters/stagglas/front.svg",
  36792. extra: 962/882,
  36793. bottom: 53/1015
  36794. }
  36795. },
  36796. feral: {
  36797. height: math.unit(335, "cm"),
  36798. name: "Feral",
  36799. image: {
  36800. source: "./media/characters/stagglas/feral.svg",
  36801. extra: 1732/1090,
  36802. bottom: 48/1780
  36803. }
  36804. },
  36805. },
  36806. [
  36807. {
  36808. name: "Normal",
  36809. height: math.unit(5 + 3/12, "feet"),
  36810. default: true
  36811. },
  36812. ]
  36813. ))
  36814. characterMakers.push(() => makeCharacter(
  36815. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36816. {
  36817. front: {
  36818. height: math.unit(5 + 4/12, "feet"),
  36819. weight: math.unit(145, "lb"),
  36820. name: "Front",
  36821. image: {
  36822. source: "./media/characters/starra/front.svg",
  36823. extra: 1790/1691,
  36824. bottom: 91/1881
  36825. }
  36826. },
  36827. },
  36828. [
  36829. {
  36830. name: "Normal",
  36831. height: math.unit(5 + 4/12, "feet"),
  36832. default: true
  36833. },
  36834. ]
  36835. ))
  36836. characterMakers.push(() => makeCharacter(
  36837. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36838. {
  36839. front: {
  36840. height: math.unit(3.5, "meters"),
  36841. name: "Front",
  36842. image: {
  36843. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36844. extra: 1248/972,
  36845. bottom: 38/1286
  36846. }
  36847. },
  36848. },
  36849. [
  36850. {
  36851. name: "Normal",
  36852. height: math.unit(3.5, "meters"),
  36853. default: true
  36854. },
  36855. ]
  36856. ))
  36857. characterMakers.push(() => makeCharacter(
  36858. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36859. {
  36860. side: {
  36861. height: math.unit(8 + 2/12, "feet"),
  36862. weight: math.unit(1240, "lb"),
  36863. name: "Side",
  36864. image: {
  36865. source: "./media/characters/mika-valentine/side.svg",
  36866. extra: 2670/2501,
  36867. bottom: 250/2920
  36868. }
  36869. },
  36870. },
  36871. [
  36872. {
  36873. name: "Normal",
  36874. height: math.unit(8 + 2/12, "feet"),
  36875. default: true
  36876. },
  36877. ]
  36878. ))
  36879. characterMakers.push(() => makeCharacter(
  36880. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36881. {
  36882. front: {
  36883. height: math.unit(7 + 2/12, "feet"),
  36884. name: "Front",
  36885. image: {
  36886. source: "./media/characters/xoltol/front.svg",
  36887. extra: 2212/2124,
  36888. bottom: 84/2296
  36889. }
  36890. },
  36891. side: {
  36892. height: math.unit(7 + 2/12, "feet"),
  36893. name: "Side",
  36894. image: {
  36895. source: "./media/characters/xoltol/side.svg",
  36896. extra: 2273/2197,
  36897. bottom: 26/2299
  36898. }
  36899. },
  36900. hand: {
  36901. height: math.unit(2.5, "feet"),
  36902. name: "Hand",
  36903. image: {
  36904. source: "./media/characters/xoltol/hand.svg"
  36905. }
  36906. },
  36907. },
  36908. [
  36909. {
  36910. name: "Small-ish",
  36911. height: math.unit(5 + 11/12, "feet")
  36912. },
  36913. {
  36914. name: "Normal",
  36915. height: math.unit(7 + 2/12, "feet")
  36916. },
  36917. {
  36918. name: "\"Macro\"",
  36919. height: math.unit(14 + 9/12, "feet"),
  36920. default: true
  36921. },
  36922. {
  36923. name: "Alternate Height",
  36924. height: math.unit(20, "feet")
  36925. },
  36926. {
  36927. name: "Actually Macro",
  36928. height: math.unit(100, "feet")
  36929. },
  36930. ]
  36931. ))
  36932. characterMakers.push(() => makeCharacter(
  36933. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36934. {
  36935. front: {
  36936. height: math.unit(5 + 2/12, "feet"),
  36937. weight: math.unit(75, "kg"),
  36938. name: "Front",
  36939. image: {
  36940. source: "./media/characters/kotetsu-redwood/front.svg",
  36941. extra: 1053/942,
  36942. bottom: 60/1113
  36943. }
  36944. },
  36945. },
  36946. [
  36947. {
  36948. name: "Normal",
  36949. height: math.unit(5 + 2/12, "feet"),
  36950. default: true
  36951. },
  36952. ]
  36953. ))
  36954. characterMakers.push(() => makeCharacter(
  36955. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36956. {
  36957. front: {
  36958. height: math.unit(2.4, "meters"),
  36959. weight: math.unit(125, "kg"),
  36960. name: "Front",
  36961. image: {
  36962. source: "./media/characters/lilith/front.svg",
  36963. extra: 1590/1513,
  36964. bottom: 203/1793
  36965. }
  36966. },
  36967. },
  36968. [
  36969. {
  36970. name: "Humanoid",
  36971. height: math.unit(2.4, "meters")
  36972. },
  36973. {
  36974. name: "Normal",
  36975. height: math.unit(6, "meters"),
  36976. default: true
  36977. },
  36978. {
  36979. name: "Largest",
  36980. height: math.unit(55, "meters")
  36981. },
  36982. ]
  36983. ))
  36984. characterMakers.push(() => makeCharacter(
  36985. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36986. {
  36987. front: {
  36988. height: math.unit(8 + 4/12, "feet"),
  36989. weight: math.unit(535, "lb"),
  36990. name: "Front",
  36991. image: {
  36992. source: "./media/characters/beh'kah-bolger/front.svg",
  36993. extra: 1660/1603,
  36994. bottom: 37/1697
  36995. }
  36996. },
  36997. },
  36998. [
  36999. {
  37000. name: "Normal",
  37001. height: math.unit(8 + 4/12, "feet"),
  37002. default: true
  37003. },
  37004. {
  37005. name: "Kaiju",
  37006. height: math.unit(250, "feet")
  37007. },
  37008. {
  37009. name: "Still Growing",
  37010. height: math.unit(10, "miles")
  37011. },
  37012. {
  37013. name: "Continental",
  37014. height: math.unit(5000, "miles")
  37015. },
  37016. {
  37017. name: "Final Form",
  37018. height: math.unit(2500000, "miles")
  37019. },
  37020. ]
  37021. ))
  37022. characterMakers.push(() => makeCharacter(
  37023. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37024. {
  37025. front: {
  37026. height: math.unit(7 + 2/12, "feet"),
  37027. weight: math.unit(230, "kg"),
  37028. name: "Front",
  37029. image: {
  37030. source: "./media/characters/tatyana-milewska/front.svg",
  37031. extra: 1199/1150,
  37032. bottom: 86/1285
  37033. }
  37034. },
  37035. },
  37036. [
  37037. {
  37038. name: "Normal",
  37039. height: math.unit(7 + 2/12, "feet"),
  37040. default: true
  37041. },
  37042. {
  37043. name: "Big",
  37044. height: math.unit(12, "feet")
  37045. },
  37046. {
  37047. name: "Minimacro",
  37048. height: math.unit(20, "feet")
  37049. },
  37050. {
  37051. name: "Macro",
  37052. height: math.unit(120, "feet")
  37053. },
  37054. ]
  37055. ))
  37056. characterMakers.push(() => makeCharacter(
  37057. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37058. {
  37059. front: {
  37060. height: math.unit(7 + 8/12, "feet"),
  37061. weight: math.unit(152, "kg"),
  37062. name: "Front",
  37063. image: {
  37064. source: "./media/characters/helen-arri/front.svg",
  37065. extra: 440/423,
  37066. bottom: 14/454
  37067. }
  37068. },
  37069. back: {
  37070. height: math.unit(7 + 8/12, "feet"),
  37071. weight: math.unit(152, "kg"),
  37072. name: "Back",
  37073. image: {
  37074. source: "./media/characters/helen-arri/back.svg",
  37075. extra: 443/426,
  37076. bottom: 8/451
  37077. }
  37078. },
  37079. },
  37080. [
  37081. {
  37082. name: "Normal",
  37083. height: math.unit(7 + 8/12, "feet"),
  37084. default: true
  37085. },
  37086. {
  37087. name: "Big",
  37088. height: math.unit(14, "feet")
  37089. },
  37090. {
  37091. name: "Minimacro",
  37092. height: math.unit(24, "feet")
  37093. },
  37094. {
  37095. name: "Macro",
  37096. height: math.unit(140, "feet")
  37097. },
  37098. ]
  37099. ))
  37100. characterMakers.push(() => makeCharacter(
  37101. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37102. {
  37103. front: {
  37104. height: math.unit(6, "meters"),
  37105. name: "Front",
  37106. image: {
  37107. source: "./media/characters/ehanu-rehu/front.svg",
  37108. extra: 1800/1800,
  37109. bottom: 59/1859
  37110. }
  37111. },
  37112. },
  37113. [
  37114. {
  37115. name: "Normal",
  37116. height: math.unit(6, "meters"),
  37117. default: true
  37118. },
  37119. ]
  37120. ))
  37121. characterMakers.push(() => makeCharacter(
  37122. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37123. {
  37124. front: {
  37125. height: math.unit(7 + 3/12, "feet"),
  37126. name: "Front",
  37127. image: {
  37128. source: "./media/characters/renholder/front.svg",
  37129. extra: 3096/2960,
  37130. bottom: 250/3346
  37131. }
  37132. },
  37133. },
  37134. [
  37135. {
  37136. name: "Normal Bat",
  37137. height: math.unit(7 + 3/12, "feet"),
  37138. default: true
  37139. },
  37140. {
  37141. name: "Slightly Tall Bat",
  37142. height: math.unit(100, "feet")
  37143. },
  37144. {
  37145. name: "Big Bat",
  37146. height: math.unit(1000, "feet")
  37147. },
  37148. {
  37149. name: "City-Sized Bat",
  37150. height: math.unit(200000, "feet")
  37151. },
  37152. {
  37153. name: "Bigger Bat",
  37154. height: math.unit(10000, "miles")
  37155. },
  37156. {
  37157. name: "Solar Sized Bat",
  37158. height: math.unit(100, "AU")
  37159. },
  37160. {
  37161. name: "Galactic Bat",
  37162. height: math.unit(200000, "lightyears")
  37163. },
  37164. {
  37165. name: "Universally Known Bat",
  37166. height: math.unit(1, "universe")
  37167. },
  37168. ]
  37169. ))
  37170. characterMakers.push(() => makeCharacter(
  37171. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37172. {
  37173. front: {
  37174. height: math.unit(6 + 11/12, "feet"),
  37175. weight: math.unit(250, "lb"),
  37176. name: "Front",
  37177. image: {
  37178. source: "./media/characters/cookiecat/front.svg",
  37179. extra: 893/827,
  37180. bottom: 14/907
  37181. }
  37182. },
  37183. },
  37184. [
  37185. {
  37186. name: "Micro",
  37187. height: math.unit(3, "inches")
  37188. },
  37189. {
  37190. name: "Normal",
  37191. height: math.unit(6 + 11/12, "feet"),
  37192. default: true
  37193. },
  37194. {
  37195. name: "Macro",
  37196. height: math.unit(100, "feet")
  37197. },
  37198. {
  37199. name: "Macro+",
  37200. height: math.unit(404, "feet")
  37201. },
  37202. {
  37203. name: "Megamacro",
  37204. height: math.unit(165, "miles")
  37205. },
  37206. {
  37207. name: "Planetary",
  37208. height: math.unit(4600, "miles")
  37209. },
  37210. ]
  37211. ))
  37212. characterMakers.push(() => makeCharacter(
  37213. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37214. {
  37215. front: {
  37216. height: math.unit(10 + 3/12, "feet"),
  37217. weight: math.unit(1500, "lb"),
  37218. name: "Front",
  37219. image: {
  37220. source: "./media/characters/tux-kusanagi/front.svg",
  37221. extra: 944/840,
  37222. bottom: 39/983
  37223. }
  37224. },
  37225. back: {
  37226. height: math.unit(10 + 3/12, "feet"),
  37227. weight: math.unit(1500, "lb"),
  37228. name: "Back",
  37229. image: {
  37230. source: "./media/characters/tux-kusanagi/back.svg",
  37231. extra: 941/842,
  37232. bottom: 28/969
  37233. }
  37234. },
  37235. rump: {
  37236. height: math.unit(5.25, "feet"),
  37237. name: "Rump",
  37238. image: {
  37239. source: "./media/characters/tux-kusanagi/rump.svg"
  37240. }
  37241. },
  37242. beak: {
  37243. height: math.unit(1.54, "feet"),
  37244. name: "Beak",
  37245. image: {
  37246. source: "./media/characters/tux-kusanagi/beak.svg"
  37247. }
  37248. },
  37249. },
  37250. [
  37251. {
  37252. name: "Normal",
  37253. height: math.unit(10 + 3/12, "feet"),
  37254. default: true
  37255. },
  37256. ]
  37257. ))
  37258. characterMakers.push(() => makeCharacter(
  37259. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37260. {
  37261. front: {
  37262. height: math.unit(58, "feet"),
  37263. weight: math.unit(200, "tons"),
  37264. name: "Front",
  37265. image: {
  37266. source: "./media/characters/uzarmazari/front.svg",
  37267. extra: 1575/1455,
  37268. bottom: 152/1727
  37269. }
  37270. },
  37271. back: {
  37272. height: math.unit(58, "feet"),
  37273. weight: math.unit(200, "tons"),
  37274. name: "Back",
  37275. image: {
  37276. source: "./media/characters/uzarmazari/back.svg",
  37277. extra: 1585/1510,
  37278. bottom: 157/1742
  37279. }
  37280. },
  37281. head: {
  37282. height: math.unit(26, "feet"),
  37283. name: "Head",
  37284. image: {
  37285. source: "./media/characters/uzarmazari/head.svg"
  37286. }
  37287. },
  37288. },
  37289. [
  37290. {
  37291. name: "Normal",
  37292. height: math.unit(58, "feet"),
  37293. default: true
  37294. },
  37295. ]
  37296. ))
  37297. characterMakers.push(() => makeCharacter(
  37298. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37299. {
  37300. side: {
  37301. height: math.unit(15, "feet"),
  37302. name: "Side",
  37303. image: {
  37304. source: "./media/characters/akitu/side.svg",
  37305. extra: 1421/1321,
  37306. bottom: 157/1578
  37307. }
  37308. },
  37309. front: {
  37310. height: math.unit(15, "feet"),
  37311. name: "Front",
  37312. image: {
  37313. source: "./media/characters/akitu/front.svg",
  37314. extra: 1435/1326,
  37315. bottom: 232/1667
  37316. }
  37317. },
  37318. },
  37319. [
  37320. {
  37321. name: "Normal",
  37322. height: math.unit(15, "feet"),
  37323. default: true
  37324. },
  37325. ]
  37326. ))
  37327. characterMakers.push(() => makeCharacter(
  37328. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37329. {
  37330. front: {
  37331. height: math.unit(10 + 8/12, "feet"),
  37332. name: "Front",
  37333. image: {
  37334. source: "./media/characters/azalie-croixland/front.svg",
  37335. extra: 1972/1856,
  37336. bottom: 31/2003
  37337. }
  37338. },
  37339. },
  37340. [
  37341. {
  37342. name: "Original Height",
  37343. height: math.unit(5 + 4/12, "feet")
  37344. },
  37345. {
  37346. name: "Normal Height",
  37347. height: math.unit(10 + 8/12, "feet"),
  37348. default: true
  37349. },
  37350. ]
  37351. ))
  37352. characterMakers.push(() => makeCharacter(
  37353. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37354. {
  37355. side: {
  37356. height: math.unit(7 + 1/12, "feet"),
  37357. weight: math.unit(245, "lb"),
  37358. name: "Side",
  37359. image: {
  37360. source: "./media/characters/kavus-kazian/side.svg",
  37361. extra: 349/342,
  37362. bottom: 15/364
  37363. }
  37364. },
  37365. },
  37366. [
  37367. {
  37368. name: "Normal",
  37369. height: math.unit(7 + 1/12, "feet"),
  37370. default: true
  37371. },
  37372. ]
  37373. ))
  37374. characterMakers.push(() => makeCharacter(
  37375. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37376. {
  37377. normalFront: {
  37378. height: math.unit(5 + 11/12, "feet"),
  37379. name: "Front",
  37380. image: {
  37381. source: "./media/characters/moonlight-rose/normal-front.svg",
  37382. extra: 1980/1825,
  37383. bottom: 18/1998
  37384. },
  37385. form: "normal",
  37386. default: true
  37387. },
  37388. normalBack: {
  37389. height: math.unit(5 + 11/12, "feet"),
  37390. name: "Back",
  37391. image: {
  37392. source: "./media/characters/moonlight-rose/normal-back.svg",
  37393. extra: 2010/1839,
  37394. bottom: 10/2020
  37395. },
  37396. form: "normal"
  37397. },
  37398. demonFront: {
  37399. height: math.unit(1.5, "earths"),
  37400. name: "Front",
  37401. image: {
  37402. source: "./media/characters/moonlight-rose/demon.svg",
  37403. extra: 1400/1294,
  37404. bottom: 45/1445
  37405. },
  37406. form: "demon",
  37407. default: true
  37408. },
  37409. terraFront: {
  37410. height: math.unit(1.5, "earths"),
  37411. name: "Front",
  37412. image: {
  37413. source: "./media/characters/moonlight-rose/terra.svg"
  37414. },
  37415. form: "terra",
  37416. default: true
  37417. },
  37418. jupiterFront: {
  37419. height: math.unit(69911*2, "km"),
  37420. name: "Front",
  37421. image: {
  37422. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37423. extra: 1367/1286,
  37424. bottom: 55/1422
  37425. },
  37426. form: "jupiter",
  37427. default: true
  37428. },
  37429. neptuneFront: {
  37430. height: math.unit(24622*2, "feet"),
  37431. name: "Front",
  37432. image: {
  37433. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37434. extra: 1851/1712,
  37435. bottom: 0/1851
  37436. },
  37437. form: "neptune",
  37438. default: true
  37439. },
  37440. },
  37441. [
  37442. {
  37443. name: "\"Natural\" Height",
  37444. height: math.unit(5 + 11/12, "feet"),
  37445. form: "normal"
  37446. },
  37447. {
  37448. name: "Smallest comfortable size",
  37449. height: math.unit(40, "meters"),
  37450. form: "normal"
  37451. },
  37452. {
  37453. name: "Common size",
  37454. height: math.unit(50, "km"),
  37455. form: "normal",
  37456. default: true
  37457. },
  37458. {
  37459. name: "Normal",
  37460. height: math.unit(1.5, "earths"),
  37461. form: "demon",
  37462. default: true
  37463. },
  37464. {
  37465. name: "Universal",
  37466. height: math.unit(15, "universes"),
  37467. form: "demon"
  37468. },
  37469. {
  37470. name: "Earth",
  37471. height: math.unit(1.5, "earths"),
  37472. form: "terra",
  37473. default: true
  37474. },
  37475. {
  37476. name: "Super Earth",
  37477. height: math.unit(67.5, "earths"),
  37478. form: "terra"
  37479. },
  37480. {
  37481. name: "Doesn't fit in a solar system...",
  37482. height: math.unit(1, "galaxy"),
  37483. form: "terra"
  37484. },
  37485. {
  37486. name: "Saturn",
  37487. height: math.unit(58232*2, "km"),
  37488. form: "jupiter"
  37489. },
  37490. {
  37491. name: "Jupiter",
  37492. height: math.unit(69911*2, "km"),
  37493. form: "jupiter",
  37494. default: true
  37495. },
  37496. {
  37497. name: "HD 100546 b",
  37498. height: math.unit(482938, "km"),
  37499. form: "jupiter"
  37500. },
  37501. {
  37502. name: "Enceladus",
  37503. height: math.unit(513*2, "km"),
  37504. form: "neptune"
  37505. },
  37506. {
  37507. name: "Europe",
  37508. height: math.unit(1560*2, "km"),
  37509. form: "neptune"
  37510. },
  37511. {
  37512. name: "Neptune",
  37513. height: math.unit(24622*2, "km"),
  37514. form: "neptune",
  37515. default: true
  37516. },
  37517. {
  37518. name: "CoRoT-9b",
  37519. height: math.unit(75067*2, "km"),
  37520. form: "neptune"
  37521. },
  37522. ],
  37523. {
  37524. "normal": {
  37525. name: "Normal",
  37526. default: true
  37527. },
  37528. "demon": {
  37529. name: "Demon"
  37530. },
  37531. "terra": {
  37532. name: "Terra"
  37533. },
  37534. "jupiter": {
  37535. name: "Jupiter"
  37536. },
  37537. "neptune": {
  37538. name: "Neptune"
  37539. }
  37540. }
  37541. ))
  37542. characterMakers.push(() => makeCharacter(
  37543. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37544. {
  37545. front: {
  37546. height: math.unit(16, "feet"),
  37547. weight: math.unit(610, "kg"),
  37548. name: "Front",
  37549. image: {
  37550. source: "./media/characters/huckle/front.svg",
  37551. extra: 1731/1625,
  37552. bottom: 33/1764
  37553. }
  37554. },
  37555. back: {
  37556. height: math.unit(16, "feet"),
  37557. weight: math.unit(610, "kg"),
  37558. name: "Back",
  37559. image: {
  37560. source: "./media/characters/huckle/back.svg",
  37561. extra: 1738/1651,
  37562. bottom: 37/1775
  37563. }
  37564. },
  37565. laughing: {
  37566. height: math.unit(3.75, "feet"),
  37567. name: "Laughing",
  37568. image: {
  37569. source: "./media/characters/huckle/laughing.svg"
  37570. }
  37571. },
  37572. angry: {
  37573. height: math.unit(4.15, "feet"),
  37574. name: "Angry",
  37575. image: {
  37576. source: "./media/characters/huckle/angry.svg"
  37577. }
  37578. },
  37579. },
  37580. [
  37581. {
  37582. name: "Normal",
  37583. height: math.unit(16, "feet"),
  37584. default: true
  37585. },
  37586. {
  37587. name: "Mini Macro",
  37588. height: math.unit(463, "feet")
  37589. },
  37590. {
  37591. name: "Macro",
  37592. height: math.unit(1680, "meters")
  37593. },
  37594. {
  37595. name: "Mega Macro",
  37596. height: math.unit(175, "km")
  37597. },
  37598. {
  37599. name: "Terra Macro",
  37600. height: math.unit(32, "gigameters")
  37601. },
  37602. {
  37603. name: "Multiverse+",
  37604. height: math.unit(2.56e23, "yottameters")
  37605. },
  37606. ]
  37607. ))
  37608. characterMakers.push(() => makeCharacter(
  37609. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37610. {
  37611. front: {
  37612. height: math.unit(6 + 9/12, "feet"),
  37613. weight: math.unit(280, "lb"),
  37614. name: "Front",
  37615. image: {
  37616. source: "./media/characters/candy/front.svg",
  37617. extra: 234/217,
  37618. bottom: 11/245
  37619. }
  37620. },
  37621. },
  37622. [
  37623. {
  37624. name: "Really Small",
  37625. height: math.unit(0.1, "nm")
  37626. },
  37627. {
  37628. name: "Micro",
  37629. height: math.unit(2, "inches")
  37630. },
  37631. {
  37632. name: "Normal",
  37633. height: math.unit(6 + 9/12, "feet"),
  37634. default: true
  37635. },
  37636. {
  37637. name: "Small Macro",
  37638. height: math.unit(69, "feet")
  37639. },
  37640. {
  37641. name: "Macro",
  37642. height: math.unit(160, "feet")
  37643. },
  37644. {
  37645. name: "Megamacro",
  37646. height: math.unit(22000, "miles")
  37647. },
  37648. {
  37649. name: "Gigamacro",
  37650. height: math.unit(50000, "miles")
  37651. },
  37652. ]
  37653. ))
  37654. characterMakers.push(() => makeCharacter(
  37655. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37656. {
  37657. front: {
  37658. height: math.unit(4, "feet"),
  37659. weight: math.unit(90, "lb"),
  37660. name: "Front",
  37661. image: {
  37662. source: "./media/characters/joey-mcdonald/front.svg",
  37663. extra: 1059/852,
  37664. bottom: 33/1092
  37665. }
  37666. },
  37667. back: {
  37668. height: math.unit(4, "feet"),
  37669. weight: math.unit(90, "lb"),
  37670. name: "Back",
  37671. image: {
  37672. source: "./media/characters/joey-mcdonald/back.svg",
  37673. extra: 1077/879,
  37674. bottom: 5/1082
  37675. }
  37676. },
  37677. frontKobold: {
  37678. height: math.unit(4, "feet"),
  37679. weight: math.unit(100, "lb"),
  37680. name: "Front-kobold",
  37681. image: {
  37682. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37683. extra: 1480/1367,
  37684. bottom: 0/1480
  37685. }
  37686. },
  37687. backKobold: {
  37688. height: math.unit(4, "feet"),
  37689. weight: math.unit(100, "lb"),
  37690. name: "Back-kobold",
  37691. image: {
  37692. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37693. extra: 1449/1361,
  37694. bottom: 0/1449
  37695. }
  37696. },
  37697. },
  37698. [
  37699. {
  37700. name: "Normal",
  37701. height: math.unit(4, "feet"),
  37702. default: true
  37703. },
  37704. ]
  37705. ))
  37706. characterMakers.push(() => makeCharacter(
  37707. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37708. {
  37709. front: {
  37710. height: math.unit(12 + 6/12, "feet"),
  37711. name: "Front",
  37712. image: {
  37713. source: "./media/characters/kass-lockheed/front.svg",
  37714. extra: 354/343,
  37715. bottom: 9/363
  37716. }
  37717. },
  37718. back: {
  37719. height: math.unit(12 + 6/12, "feet"),
  37720. name: "Back",
  37721. image: {
  37722. source: "./media/characters/kass-lockheed/back.svg",
  37723. extra: 364/352,
  37724. bottom: 3/367
  37725. }
  37726. },
  37727. dick: {
  37728. height: math.unit(3.12, "feet"),
  37729. name: "Dick",
  37730. image: {
  37731. source: "./media/characters/kass-lockheed/dick.svg"
  37732. }
  37733. },
  37734. head: {
  37735. height: math.unit(2.6, "feet"),
  37736. name: "Head",
  37737. image: {
  37738. source: "./media/characters/kass-lockheed/head.svg"
  37739. }
  37740. },
  37741. bleh: {
  37742. height: math.unit(2.85, "feet"),
  37743. name: "Bleh",
  37744. image: {
  37745. source: "./media/characters/kass-lockheed/bleh.svg"
  37746. }
  37747. },
  37748. smug: {
  37749. height: math.unit(2.85, "feet"),
  37750. name: "Smug",
  37751. image: {
  37752. source: "./media/characters/kass-lockheed/smug.svg"
  37753. }
  37754. },
  37755. },
  37756. [
  37757. {
  37758. name: "Normal",
  37759. height: math.unit(12 + 6/12, "feet"),
  37760. default: true
  37761. },
  37762. ]
  37763. ))
  37764. characterMakers.push(() => makeCharacter(
  37765. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37766. {
  37767. front: {
  37768. height: math.unit(6 + 2/12, "feet"),
  37769. name: "Front",
  37770. image: {
  37771. source: "./media/characters/taylor/front.svg",
  37772. extra: 639/495,
  37773. bottom: 12/651
  37774. }
  37775. },
  37776. },
  37777. [
  37778. {
  37779. name: "Normal",
  37780. height: math.unit(6 + 2/12, "feet"),
  37781. default: true
  37782. },
  37783. {
  37784. name: "Big",
  37785. height: math.unit(15, "feet")
  37786. },
  37787. {
  37788. name: "Lorg",
  37789. height: math.unit(80, "feet")
  37790. },
  37791. {
  37792. name: "Too Lorg",
  37793. height: math.unit(120, "feet")
  37794. },
  37795. ]
  37796. ))
  37797. characterMakers.push(() => makeCharacter(
  37798. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37799. {
  37800. front: {
  37801. height: math.unit(15, "feet"),
  37802. name: "Front",
  37803. image: {
  37804. source: "./media/characters/kaizer/front.svg",
  37805. extra: 1612/1436,
  37806. bottom: 43/1655
  37807. }
  37808. },
  37809. },
  37810. [
  37811. {
  37812. name: "Normal",
  37813. height: math.unit(15, "feet"),
  37814. default: true
  37815. },
  37816. ]
  37817. ))
  37818. characterMakers.push(() => makeCharacter(
  37819. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37820. {
  37821. front: {
  37822. height: math.unit(2, "feet"),
  37823. weight: math.unit(30, "lb"),
  37824. name: "Front",
  37825. image: {
  37826. source: "./media/characters/sandy/front.svg",
  37827. extra: 1439/1307,
  37828. bottom: 194/1633
  37829. }
  37830. },
  37831. },
  37832. [
  37833. {
  37834. name: "Normal",
  37835. height: math.unit(2, "feet"),
  37836. default: true
  37837. },
  37838. ]
  37839. ))
  37840. characterMakers.push(() => makeCharacter(
  37841. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37842. {
  37843. front: {
  37844. height: math.unit(3, "feet"),
  37845. name: "Front",
  37846. image: {
  37847. source: "./media/characters/mellvi/front.svg",
  37848. extra: 1831/1630,
  37849. bottom: 58/1889
  37850. }
  37851. },
  37852. },
  37853. [
  37854. {
  37855. name: "Normal",
  37856. height: math.unit(3, "feet"),
  37857. default: true
  37858. },
  37859. ]
  37860. ))
  37861. characterMakers.push(() => makeCharacter(
  37862. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37863. {
  37864. front: {
  37865. height: math.unit(5 + 11/12, "feet"),
  37866. weight: math.unit(200, "lb"),
  37867. name: "Front",
  37868. image: {
  37869. source: "./media/characters/shirou/front.svg",
  37870. extra: 2491/2383,
  37871. bottom: 189/2680
  37872. }
  37873. },
  37874. back: {
  37875. height: math.unit(5 + 11/12, "feet"),
  37876. weight: math.unit(200, "lb"),
  37877. name: "Back",
  37878. image: {
  37879. source: "./media/characters/shirou/back.svg",
  37880. extra: 2554/2450,
  37881. bottom: 76/2630
  37882. }
  37883. },
  37884. },
  37885. [
  37886. {
  37887. name: "Normal",
  37888. height: math.unit(5 + 11/12, "feet"),
  37889. default: true
  37890. },
  37891. ]
  37892. ))
  37893. characterMakers.push(() => makeCharacter(
  37894. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37895. {
  37896. front: {
  37897. height: math.unit(6 + 3/12, "feet"),
  37898. weight: math.unit(177, "lb"),
  37899. name: "Front",
  37900. image: {
  37901. source: "./media/characters/noryu/front.svg",
  37902. extra: 973/885,
  37903. bottom: 10/983
  37904. }
  37905. },
  37906. },
  37907. [
  37908. {
  37909. name: "Normal",
  37910. height: math.unit(6 + 3/12, "feet"),
  37911. default: true
  37912. },
  37913. ]
  37914. ))
  37915. characterMakers.push(() => makeCharacter(
  37916. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37917. {
  37918. front: {
  37919. height: math.unit(5 + 6/12, "feet"),
  37920. weight: math.unit(170, "lb"),
  37921. name: "Front",
  37922. image: {
  37923. source: "./media/characters/mevolas-rubenido/front.svg",
  37924. extra: 2109/1901,
  37925. bottom: 96/2205
  37926. }
  37927. },
  37928. },
  37929. [
  37930. {
  37931. name: "Normal",
  37932. height: math.unit(5 + 6/12, "feet"),
  37933. default: true
  37934. },
  37935. ]
  37936. ))
  37937. characterMakers.push(() => makeCharacter(
  37938. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37939. {
  37940. front: {
  37941. height: math.unit(100, "feet"),
  37942. name: "Front",
  37943. image: {
  37944. source: "./media/characters/dee/front.svg",
  37945. extra: 2153/2036,
  37946. bottom: 59/2212
  37947. }
  37948. },
  37949. back: {
  37950. height: math.unit(100, "feet"),
  37951. name: "Back",
  37952. image: {
  37953. source: "./media/characters/dee/back.svg",
  37954. extra: 2183/2058,
  37955. bottom: 75/2258
  37956. }
  37957. },
  37958. foot: {
  37959. height: math.unit(19.43, "feet"),
  37960. name: "Foot",
  37961. image: {
  37962. source: "./media/characters/dee/foot.svg"
  37963. }
  37964. },
  37965. hoof: {
  37966. height: math.unit(20.6, "feet"),
  37967. name: "Hoof",
  37968. image: {
  37969. source: "./media/characters/dee/hoof.svg"
  37970. }
  37971. },
  37972. },
  37973. [
  37974. {
  37975. name: "Macro",
  37976. height: math.unit(100, "feet"),
  37977. default: true
  37978. },
  37979. ]
  37980. ))
  37981. characterMakers.push(() => makeCharacter(
  37982. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37983. {
  37984. front: {
  37985. height: math.unit(5 + 6/12, "feet"),
  37986. name: "Front",
  37987. image: {
  37988. source: "./media/characters/teh/front.svg",
  37989. extra: 1002/847,
  37990. bottom: 62/1064
  37991. }
  37992. },
  37993. },
  37994. [
  37995. {
  37996. name: "Normal",
  37997. height: math.unit(5 + 6/12, "feet"),
  37998. default: true
  37999. },
  38000. ]
  38001. ))
  38002. characterMakers.push(() => makeCharacter(
  38003. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38004. {
  38005. side: {
  38006. height: math.unit(6 + 1/12, "feet"),
  38007. weight: math.unit(204, "lb"),
  38008. name: "Side",
  38009. image: {
  38010. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38011. extra: 974/775,
  38012. bottom: 169/1143
  38013. }
  38014. },
  38015. sitting: {
  38016. height: math.unit(6 + 2/12, "feet"),
  38017. weight: math.unit(204, "lb"),
  38018. name: "Sitting",
  38019. image: {
  38020. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38021. extra: 1175/964,
  38022. bottom: 378/1553
  38023. }
  38024. },
  38025. },
  38026. [
  38027. {
  38028. name: "Normal",
  38029. height: math.unit(6 + 1/12, "feet"),
  38030. default: true
  38031. },
  38032. ]
  38033. ))
  38034. characterMakers.push(() => makeCharacter(
  38035. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38036. {
  38037. front: {
  38038. height: math.unit(6, "inches"),
  38039. name: "Front",
  38040. image: {
  38041. source: "./media/characters/tululi/front.svg",
  38042. extra: 1997/1876,
  38043. bottom: 20/2017
  38044. }
  38045. },
  38046. },
  38047. [
  38048. {
  38049. name: "Normal",
  38050. height: math.unit(6, "inches"),
  38051. default: true
  38052. },
  38053. ]
  38054. ))
  38055. characterMakers.push(() => makeCharacter(
  38056. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38057. {
  38058. front: {
  38059. height: math.unit(4 + 1/12, "feet"),
  38060. name: "Front",
  38061. image: {
  38062. source: "./media/characters/star/front.svg",
  38063. extra: 1493/1189,
  38064. bottom: 48/1541
  38065. }
  38066. },
  38067. },
  38068. [
  38069. {
  38070. name: "Normal",
  38071. height: math.unit(4 + 1/12, "feet"),
  38072. default: true
  38073. },
  38074. ]
  38075. ))
  38076. characterMakers.push(() => makeCharacter(
  38077. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38078. {
  38079. front: {
  38080. height: math.unit(6 + 3/12, "feet"),
  38081. name: "Front",
  38082. image: {
  38083. source: "./media/characters/comet/front.svg",
  38084. extra: 1681/1462,
  38085. bottom: 26/1707
  38086. }
  38087. },
  38088. },
  38089. [
  38090. {
  38091. name: "Normal",
  38092. height: math.unit(6 + 3/12, "feet"),
  38093. default: true
  38094. },
  38095. ]
  38096. ))
  38097. characterMakers.push(() => makeCharacter(
  38098. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38099. {
  38100. front: {
  38101. height: math.unit(950, "feet"),
  38102. name: "Front",
  38103. image: {
  38104. source: "./media/characters/vortex/front.svg",
  38105. extra: 1497/1434,
  38106. bottom: 56/1553
  38107. }
  38108. },
  38109. maw: {
  38110. height: math.unit(285, "feet"),
  38111. name: "Maw",
  38112. image: {
  38113. source: "./media/characters/vortex/maw.svg"
  38114. }
  38115. },
  38116. },
  38117. [
  38118. {
  38119. name: "Macro",
  38120. height: math.unit(950, "feet"),
  38121. default: true
  38122. },
  38123. ]
  38124. ))
  38125. characterMakers.push(() => makeCharacter(
  38126. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38127. {
  38128. front: {
  38129. height: math.unit(600, "feet"),
  38130. weight: math.unit(0.02, "grams"),
  38131. name: "Front",
  38132. image: {
  38133. source: "./media/characters/doodle/front.svg",
  38134. extra: 1578/1413,
  38135. bottom: 37/1615
  38136. }
  38137. },
  38138. },
  38139. [
  38140. {
  38141. name: "Macro",
  38142. height: math.unit(600, "feet"),
  38143. default: true
  38144. },
  38145. ]
  38146. ))
  38147. characterMakers.push(() => makeCharacter(
  38148. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38149. {
  38150. front: {
  38151. height: math.unit(6 + 6/12, "feet"),
  38152. name: "Front",
  38153. image: {
  38154. source: "./media/characters/jai/front.svg",
  38155. extra: 1645/1534,
  38156. bottom: 115/1760
  38157. }
  38158. },
  38159. },
  38160. [
  38161. {
  38162. name: "Normal",
  38163. height: math.unit(6 + 6/12, "feet"),
  38164. default: true
  38165. },
  38166. ]
  38167. ))
  38168. characterMakers.push(() => makeCharacter(
  38169. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38170. {
  38171. front: {
  38172. height: math.unit(6 + 8/12, "feet"),
  38173. name: "Front",
  38174. image: {
  38175. source: "./media/characters/pixel/front.svg",
  38176. extra: 1900/1735,
  38177. bottom: 63/1963
  38178. }
  38179. },
  38180. },
  38181. [
  38182. {
  38183. name: "Normal",
  38184. height: math.unit(6 + 8/12, "feet"),
  38185. default: true
  38186. },
  38187. ]
  38188. ))
  38189. characterMakers.push(() => makeCharacter(
  38190. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38191. {
  38192. back: {
  38193. height: math.unit(4 + 1/12, "feet"),
  38194. weight: math.unit(75, "lb"),
  38195. name: "Back",
  38196. image: {
  38197. source: "./media/characters/rhett/back.svg",
  38198. extra: 930/878,
  38199. bottom: 25/955
  38200. }
  38201. },
  38202. front: {
  38203. height: math.unit(4 + 1/12, "feet"),
  38204. weight: math.unit(75, "lb"),
  38205. name: "Front",
  38206. image: {
  38207. source: "./media/characters/rhett/front.svg",
  38208. extra: 1682/1586,
  38209. bottom: 92/1774
  38210. }
  38211. },
  38212. },
  38213. [
  38214. {
  38215. name: "Micro",
  38216. height: math.unit(8, "inches")
  38217. },
  38218. {
  38219. name: "Tiny",
  38220. height: math.unit(2, "feet")
  38221. },
  38222. {
  38223. name: "Normal",
  38224. height: math.unit(4 + 1/12, "feet"),
  38225. default: true
  38226. },
  38227. ]
  38228. ))
  38229. characterMakers.push(() => makeCharacter(
  38230. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38231. {
  38232. front: {
  38233. height: math.unit(3 + 3/12, "feet"),
  38234. name: "Front",
  38235. image: {
  38236. source: "./media/characters/penny/front.svg",
  38237. extra: 1406/1311,
  38238. bottom: 26/1432
  38239. }
  38240. },
  38241. },
  38242. [
  38243. {
  38244. name: "Normal",
  38245. height: math.unit(3 + 3/12, "feet"),
  38246. default: true
  38247. },
  38248. ]
  38249. ))
  38250. characterMakers.push(() => makeCharacter(
  38251. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38252. {
  38253. front: {
  38254. height: math.unit(4 + 11/12, "feet"),
  38255. name: "Front",
  38256. image: {
  38257. source: "./media/characters/monty/front.svg",
  38258. extra: 1479/1209,
  38259. bottom: 0/1479
  38260. }
  38261. },
  38262. },
  38263. [
  38264. {
  38265. name: "Normal",
  38266. height: math.unit(4 + 11/12, "feet"),
  38267. default: true
  38268. },
  38269. ]
  38270. ))
  38271. characterMakers.push(() => makeCharacter(
  38272. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38273. {
  38274. front: {
  38275. height: math.unit(8 + 4/12, "feet"),
  38276. name: "Front",
  38277. image: {
  38278. source: "./media/characters/sterling/front.svg",
  38279. extra: 1420/1236,
  38280. bottom: 27/1447
  38281. }
  38282. },
  38283. },
  38284. [
  38285. {
  38286. name: "Normal",
  38287. height: math.unit(8 + 4/12, "feet"),
  38288. default: true
  38289. },
  38290. ]
  38291. ))
  38292. characterMakers.push(() => makeCharacter(
  38293. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38294. {
  38295. front: {
  38296. height: math.unit(15, "feet"),
  38297. name: "Front",
  38298. image: {
  38299. source: "./media/characters/marble/front.svg",
  38300. extra: 973/937,
  38301. bottom: 32/1005
  38302. }
  38303. },
  38304. },
  38305. [
  38306. {
  38307. name: "Normal",
  38308. height: math.unit(15, "feet"),
  38309. default: true
  38310. },
  38311. ]
  38312. ))
  38313. characterMakers.push(() => makeCharacter(
  38314. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38315. {
  38316. front: {
  38317. height: math.unit(3, "inches"),
  38318. name: "Front",
  38319. image: {
  38320. source: "./media/characters/powder/front.svg",
  38321. extra: 1504/1334,
  38322. bottom: 518/2022
  38323. }
  38324. },
  38325. },
  38326. [
  38327. {
  38328. name: "Normal",
  38329. height: math.unit(3, "inches"),
  38330. default: true
  38331. },
  38332. ]
  38333. ))
  38334. characterMakers.push(() => makeCharacter(
  38335. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38336. {
  38337. front: {
  38338. height: math.unit(4 + 5/12, "feet"),
  38339. name: "Front",
  38340. image: {
  38341. source: "./media/characters/joey-raccoon/front.svg",
  38342. extra: 1273/1197,
  38343. bottom: 0/1273
  38344. }
  38345. },
  38346. },
  38347. [
  38348. {
  38349. name: "Normal",
  38350. height: math.unit(4 + 5/12, "feet"),
  38351. default: true
  38352. },
  38353. ]
  38354. ))
  38355. characterMakers.push(() => makeCharacter(
  38356. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38357. {
  38358. front: {
  38359. height: math.unit(8 + 4/12, "feet"),
  38360. name: "Front",
  38361. image: {
  38362. source: "./media/characters/vick/front.svg",
  38363. extra: 2187/2118,
  38364. bottom: 47/2234
  38365. }
  38366. },
  38367. },
  38368. [
  38369. {
  38370. name: "Normal",
  38371. height: math.unit(8 + 4/12, "feet"),
  38372. default: true
  38373. },
  38374. ]
  38375. ))
  38376. characterMakers.push(() => makeCharacter(
  38377. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38378. {
  38379. front: {
  38380. height: math.unit(5 + 5/12, "feet"),
  38381. name: "Front",
  38382. image: {
  38383. source: "./media/characters/mitsy/front.svg",
  38384. extra: 1842/1695,
  38385. bottom: 0/1842
  38386. }
  38387. },
  38388. },
  38389. [
  38390. {
  38391. name: "Normal",
  38392. height: math.unit(5 + 5/12, "feet"),
  38393. default: true
  38394. },
  38395. ]
  38396. ))
  38397. characterMakers.push(() => makeCharacter(
  38398. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38399. {
  38400. front: {
  38401. height: math.unit(6 + 3/12, "feet"),
  38402. name: "Front",
  38403. image: {
  38404. source: "./media/characters/silvy/front.svg",
  38405. extra: 1995/1836,
  38406. bottom: 225/2220
  38407. }
  38408. },
  38409. },
  38410. [
  38411. {
  38412. name: "Normal",
  38413. height: math.unit(6 + 3/12, "feet"),
  38414. default: true
  38415. },
  38416. ]
  38417. ))
  38418. characterMakers.push(() => makeCharacter(
  38419. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38420. {
  38421. front: {
  38422. height: math.unit(3 + 8/12, "feet"),
  38423. name: "Front",
  38424. image: {
  38425. source: "./media/characters/rodney/front.svg",
  38426. extra: 1956/1747,
  38427. bottom: 31/1987
  38428. }
  38429. },
  38430. frontDressed: {
  38431. height: math.unit(2.9, "feet"),
  38432. name: "Front (Dressed)",
  38433. image: {
  38434. source: "./media/characters/rodney/front-dressed.svg",
  38435. extra: 1382/1241,
  38436. bottom: 385/1767
  38437. }
  38438. },
  38439. },
  38440. [
  38441. {
  38442. name: "Normal",
  38443. height: math.unit(3 + 8/12, "feet"),
  38444. default: true
  38445. },
  38446. ]
  38447. ))
  38448. characterMakers.push(() => makeCharacter(
  38449. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38450. {
  38451. front: {
  38452. height: math.unit(5 + 9/12, "feet"),
  38453. weight: math.unit(194, "lbs"),
  38454. name: "Front",
  38455. image: {
  38456. source: "./media/characters/zakail-sudekai/front.svg",
  38457. extra: 2696/2533,
  38458. bottom: 248/2944
  38459. }
  38460. },
  38461. maw: {
  38462. height: math.unit(1.35, "feet"),
  38463. name: "Maw",
  38464. image: {
  38465. source: "./media/characters/zakail-sudekai/maw.svg"
  38466. }
  38467. },
  38468. },
  38469. [
  38470. {
  38471. name: "Normal",
  38472. height: math.unit(5 + 9/12, "feet"),
  38473. default: true
  38474. },
  38475. ]
  38476. ))
  38477. characterMakers.push(() => makeCharacter(
  38478. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38479. {
  38480. front: {
  38481. height: math.unit(8 + 4/12, "feet"),
  38482. weight: math.unit(1200, "lb"),
  38483. name: "Front",
  38484. image: {
  38485. source: "./media/characters/eleanor/front.svg",
  38486. extra: 1226/1192,
  38487. bottom: 52/1278
  38488. }
  38489. },
  38490. back: {
  38491. height: math.unit(8 + 4/12, "feet"),
  38492. weight: math.unit(1200, "lb"),
  38493. name: "Back",
  38494. image: {
  38495. source: "./media/characters/eleanor/back.svg",
  38496. extra: 1242/1184,
  38497. bottom: 60/1302
  38498. }
  38499. },
  38500. head: {
  38501. height: math.unit(2.62, "feet"),
  38502. name: "Head",
  38503. image: {
  38504. source: "./media/characters/eleanor/head.svg"
  38505. }
  38506. },
  38507. },
  38508. [
  38509. {
  38510. name: "Normal",
  38511. height: math.unit(8 + 4/12, "feet"),
  38512. default: true
  38513. },
  38514. ]
  38515. ))
  38516. characterMakers.push(() => makeCharacter(
  38517. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38518. {
  38519. front: {
  38520. height: math.unit(8 + 4/12, "feet"),
  38521. weight: math.unit(750, "lb"),
  38522. name: "Front",
  38523. image: {
  38524. source: "./media/characters/tanya/front.svg",
  38525. extra: 1749/1615,
  38526. bottom: 33/1782
  38527. }
  38528. },
  38529. },
  38530. [
  38531. {
  38532. name: "Normal",
  38533. height: math.unit(8 + 4/12, "feet"),
  38534. default: true
  38535. },
  38536. ]
  38537. ))
  38538. characterMakers.push(() => makeCharacter(
  38539. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38540. {
  38541. front: {
  38542. height: math.unit(5, "feet"),
  38543. weight: math.unit(225, "lb"),
  38544. name: "Front",
  38545. image: {
  38546. source: "./media/characters/cindy/front.svg",
  38547. extra: 1320/1250,
  38548. bottom: 42/1362
  38549. }
  38550. },
  38551. frontDressed: {
  38552. height: math.unit(5, "feet"),
  38553. weight: math.unit(225, "lb"),
  38554. name: "Front (Dressed)",
  38555. image: {
  38556. source: "./media/characters/cindy/front-dressed.svg",
  38557. extra: 1320/1250,
  38558. bottom: 42/1362
  38559. }
  38560. },
  38561. back: {
  38562. height: math.unit(5, "feet"),
  38563. weight: math.unit(225, "lb"),
  38564. name: "Back",
  38565. image: {
  38566. source: "./media/characters/cindy/back.svg",
  38567. extra: 1384/1346,
  38568. bottom: 14/1398
  38569. }
  38570. },
  38571. },
  38572. [
  38573. {
  38574. name: "Normal",
  38575. height: math.unit(5, "feet"),
  38576. default: true
  38577. },
  38578. ]
  38579. ))
  38580. characterMakers.push(() => makeCharacter(
  38581. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38582. {
  38583. front: {
  38584. height: math.unit(6 + 9/12, "feet"),
  38585. weight: math.unit(440, "lb"),
  38586. name: "Front",
  38587. image: {
  38588. source: "./media/characters/wilbur-owen/front.svg",
  38589. extra: 1575/1448,
  38590. bottom: 72/1647
  38591. }
  38592. },
  38593. back: {
  38594. height: math.unit(6 + 9/12, "feet"),
  38595. weight: math.unit(440, "lb"),
  38596. name: "Back",
  38597. image: {
  38598. source: "./media/characters/wilbur-owen/back.svg",
  38599. extra: 1578/1445,
  38600. bottom: 36/1614
  38601. }
  38602. },
  38603. },
  38604. [
  38605. {
  38606. name: "Normal",
  38607. height: math.unit(6 + 9/12, "feet"),
  38608. default: true
  38609. },
  38610. ]
  38611. ))
  38612. characterMakers.push(() => makeCharacter(
  38613. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38614. {
  38615. front: {
  38616. height: math.unit(6 + 5/12, "feet"),
  38617. weight: math.unit(650, "lb"),
  38618. name: "Front",
  38619. image: {
  38620. source: "./media/characters/keegan/front.svg",
  38621. extra: 2387/2198,
  38622. bottom: 33/2420
  38623. }
  38624. },
  38625. side: {
  38626. height: math.unit(6 + 5/12, "feet"),
  38627. weight: math.unit(650, "lb"),
  38628. name: "Side",
  38629. image: {
  38630. source: "./media/characters/keegan/side.svg",
  38631. extra: 2390/2202,
  38632. bottom: 47/2437
  38633. }
  38634. },
  38635. back: {
  38636. height: math.unit(6 + 5/12, "feet"),
  38637. weight: math.unit(650, "lb"),
  38638. name: "Back",
  38639. image: {
  38640. source: "./media/characters/keegan/back.svg",
  38641. extra: 2418/2268,
  38642. bottom: 15/2433
  38643. }
  38644. },
  38645. frontSfw: {
  38646. height: math.unit(6 + 5/12, "feet"),
  38647. weight: math.unit(650, "lb"),
  38648. name: "Front (SFW)",
  38649. image: {
  38650. source: "./media/characters/keegan/front-sfw.svg",
  38651. extra: 2387/2198,
  38652. bottom: 33/2420
  38653. }
  38654. },
  38655. beans: {
  38656. height: math.unit(1.85, "feet"),
  38657. name: "Beans",
  38658. image: {
  38659. source: "./media/characters/keegan/beans.svg"
  38660. }
  38661. },
  38662. },
  38663. [
  38664. {
  38665. name: "Normal",
  38666. height: math.unit(6 + 5/12, "feet"),
  38667. default: true
  38668. },
  38669. ]
  38670. ))
  38671. characterMakers.push(() => makeCharacter(
  38672. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38673. {
  38674. front: {
  38675. height: math.unit(9, "feet"),
  38676. name: "Front",
  38677. image: {
  38678. source: "./media/characters/colton/front.svg",
  38679. extra: 1589/1326,
  38680. bottom: 139/1728
  38681. }
  38682. },
  38683. },
  38684. [
  38685. {
  38686. name: "Normal",
  38687. height: math.unit(9, "feet"),
  38688. default: true
  38689. },
  38690. ]
  38691. ))
  38692. characterMakers.push(() => makeCharacter(
  38693. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38694. {
  38695. front: {
  38696. height: math.unit(2 + 9/12, "feet"),
  38697. name: "Front",
  38698. image: {
  38699. source: "./media/characters/bora/front.svg",
  38700. extra: 1265/1250,
  38701. bottom: 24/1289
  38702. }
  38703. },
  38704. },
  38705. [
  38706. {
  38707. name: "Normal",
  38708. height: math.unit(2 + 9/12, "feet"),
  38709. default: true
  38710. },
  38711. ]
  38712. ))
  38713. characterMakers.push(() => makeCharacter(
  38714. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38715. {
  38716. front: {
  38717. height: math.unit(8, "feet"),
  38718. name: "Front",
  38719. image: {
  38720. source: "./media/characters/myu-myu/front.svg",
  38721. extra: 1949/1857,
  38722. bottom: 90/2039
  38723. }
  38724. },
  38725. },
  38726. [
  38727. {
  38728. name: "Normal",
  38729. height: math.unit(8, "feet"),
  38730. default: true
  38731. },
  38732. {
  38733. name: "Big",
  38734. height: math.unit(15, "feet")
  38735. },
  38736. {
  38737. name: "BIG",
  38738. height: math.unit(25, "feet")
  38739. },
  38740. ]
  38741. ))
  38742. characterMakers.push(() => makeCharacter(
  38743. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38744. {
  38745. side: {
  38746. height: math.unit(7 + 5/12, "feet"),
  38747. weight: math.unit(2800, "lb"),
  38748. name: "Side",
  38749. image: {
  38750. source: "./media/characters/haloren/side.svg",
  38751. extra: 1793/409,
  38752. bottom: 59/1852
  38753. }
  38754. },
  38755. frontPaw: {
  38756. height: math.unit(2.36, "feet"),
  38757. name: "Front paw",
  38758. image: {
  38759. source: "./media/characters/haloren/front-paw.svg"
  38760. }
  38761. },
  38762. hindPaw: {
  38763. height: math.unit(3.18, "feet"),
  38764. name: "Hind paw",
  38765. image: {
  38766. source: "./media/characters/haloren/hind-paw.svg"
  38767. }
  38768. },
  38769. maw: {
  38770. height: math.unit(5.05, "feet"),
  38771. name: "Maw",
  38772. image: {
  38773. source: "./media/characters/haloren/maw.svg"
  38774. }
  38775. },
  38776. dick: {
  38777. height: math.unit(2.90, "feet"),
  38778. name: "Dick",
  38779. image: {
  38780. source: "./media/characters/haloren/dick.svg"
  38781. }
  38782. },
  38783. },
  38784. [
  38785. {
  38786. name: "Normal",
  38787. height: math.unit(7 + 5/12, "feet"),
  38788. default: true
  38789. },
  38790. {
  38791. name: "Enhanced",
  38792. height: math.unit(14 + 3/12, "feet")
  38793. },
  38794. ]
  38795. ))
  38796. characterMakers.push(() => makeCharacter(
  38797. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38798. {
  38799. front: {
  38800. height: math.unit(171, "cm"),
  38801. name: "Front",
  38802. image: {
  38803. source: "./media/characters/kimmy/front.svg",
  38804. extra: 1491/1435,
  38805. bottom: 53/1544
  38806. }
  38807. },
  38808. },
  38809. [
  38810. {
  38811. name: "Small",
  38812. height: math.unit(9, "cm")
  38813. },
  38814. {
  38815. name: "Normal",
  38816. height: math.unit(171, "cm"),
  38817. default: true
  38818. },
  38819. ]
  38820. ))
  38821. characterMakers.push(() => makeCharacter(
  38822. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38823. {
  38824. front: {
  38825. height: math.unit(8, "feet"),
  38826. weight: math.unit(300, "lb"),
  38827. name: "Front",
  38828. image: {
  38829. source: "./media/characters/galeboomer/front.svg",
  38830. extra: 4651/4415,
  38831. bottom: 162/4813
  38832. }
  38833. },
  38834. back: {
  38835. height: math.unit(8, "feet"),
  38836. weight: math.unit(300, "lb"),
  38837. name: "Back",
  38838. image: {
  38839. source: "./media/characters/galeboomer/back.svg",
  38840. extra: 4544/4314,
  38841. bottom: 16/4560
  38842. }
  38843. },
  38844. frontAlt: {
  38845. height: math.unit(8, "feet"),
  38846. weight: math.unit(300, "lb"),
  38847. name: "Front (Alt)",
  38848. image: {
  38849. source: "./media/characters/galeboomer/front-alt.svg",
  38850. extra: 4458/4228,
  38851. bottom: 68/4526
  38852. }
  38853. },
  38854. maw: {
  38855. height: math.unit(1.2, "feet"),
  38856. name: "Maw",
  38857. image: {
  38858. source: "./media/characters/galeboomer/maw.svg"
  38859. }
  38860. },
  38861. },
  38862. [
  38863. {
  38864. name: "Normal",
  38865. height: math.unit(8, "feet"),
  38866. default: true
  38867. },
  38868. ]
  38869. ))
  38870. characterMakers.push(() => makeCharacter(
  38871. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38872. {
  38873. front: {
  38874. height: math.unit(5 + 9/12, "feet"),
  38875. weight: math.unit(120, "lb"),
  38876. name: "Front",
  38877. image: {
  38878. source: "./media/characters/chyr/front.svg",
  38879. extra: 1323/1254,
  38880. bottom: 63/1386
  38881. }
  38882. },
  38883. back: {
  38884. height: math.unit(5 + 9/12, "feet"),
  38885. weight: math.unit(120, "lb"),
  38886. name: "Back",
  38887. image: {
  38888. source: "./media/characters/chyr/back.svg",
  38889. extra: 1323/1252,
  38890. bottom: 48/1371
  38891. }
  38892. },
  38893. },
  38894. [
  38895. {
  38896. name: "Normal",
  38897. height: math.unit(5 + 9/12, "feet"),
  38898. default: true
  38899. },
  38900. ]
  38901. ))
  38902. characterMakers.push(() => makeCharacter(
  38903. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38904. {
  38905. front: {
  38906. height: math.unit(7, "feet"),
  38907. weight: math.unit(310, "lb"),
  38908. name: "Front",
  38909. image: {
  38910. source: "./media/characters/solarus/front.svg",
  38911. extra: 2415/2021,
  38912. bottom: 103/2518
  38913. }
  38914. },
  38915. back: {
  38916. height: math.unit(7, "feet"),
  38917. weight: math.unit(310, "lb"),
  38918. name: "Back",
  38919. image: {
  38920. source: "./media/characters/solarus/back.svg",
  38921. extra: 2463/2089,
  38922. bottom: 79/2542
  38923. }
  38924. },
  38925. },
  38926. [
  38927. {
  38928. name: "Normal",
  38929. height: math.unit(7, "feet"),
  38930. default: true
  38931. },
  38932. ]
  38933. ))
  38934. characterMakers.push(() => makeCharacter(
  38935. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38936. {
  38937. front: {
  38938. height: math.unit(16, "feet"),
  38939. name: "Front",
  38940. image: {
  38941. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38942. extra: 1844/1780,
  38943. bottom: 58/1902
  38944. }
  38945. },
  38946. winterCoat: {
  38947. height: math.unit(16, "feet"),
  38948. name: "Winter Coat",
  38949. image: {
  38950. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38951. extra: 1807/1775,
  38952. bottom: 69/1876
  38953. }
  38954. },
  38955. },
  38956. [
  38957. {
  38958. name: "Normal",
  38959. height: math.unit(16, "feet"),
  38960. default: true
  38961. },
  38962. {
  38963. name: "Chicago Size",
  38964. height: math.unit(560, "feet")
  38965. },
  38966. ]
  38967. ))
  38968. characterMakers.push(() => makeCharacter(
  38969. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38970. {
  38971. front: {
  38972. height: math.unit(11 + 6/12, "feet"),
  38973. weight: math.unit(1366, "lb"),
  38974. name: "Front",
  38975. image: {
  38976. source: "./media/characters/lexor/front.svg",
  38977. extra: 1560/1481,
  38978. bottom: 211/1771
  38979. }
  38980. },
  38981. back: {
  38982. height: math.unit(11 + 6/12, "feet"),
  38983. weight: math.unit(1366, "lb"),
  38984. name: "Back",
  38985. image: {
  38986. source: "./media/characters/lexor/back.svg",
  38987. extra: 1614/1533,
  38988. bottom: 76/1690
  38989. }
  38990. },
  38991. maw: {
  38992. height: math.unit(3, "feet"),
  38993. name: "Maw",
  38994. image: {
  38995. source: "./media/characters/lexor/maw.svg"
  38996. }
  38997. },
  38998. dick: {
  38999. height: math.unit(2.59, "feet"),
  39000. name: "Dick",
  39001. image: {
  39002. source: "./media/characters/lexor/dick.svg"
  39003. }
  39004. },
  39005. },
  39006. [
  39007. {
  39008. name: "Normal",
  39009. height: math.unit(11 + 6/12, "feet"),
  39010. default: true
  39011. },
  39012. ]
  39013. ))
  39014. characterMakers.push(() => makeCharacter(
  39015. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39016. {
  39017. front: {
  39018. height: math.unit(5 + 8/12, "feet"),
  39019. name: "Front",
  39020. image: {
  39021. source: "./media/characters/magnum/front.svg",
  39022. extra: 942/855,
  39023. bottom: 26/968
  39024. }
  39025. },
  39026. },
  39027. [
  39028. {
  39029. name: "Normal",
  39030. height: math.unit(5 + 8/12, "feet"),
  39031. default: true
  39032. },
  39033. ]
  39034. ))
  39035. characterMakers.push(() => makeCharacter(
  39036. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39037. {
  39038. front: {
  39039. height: math.unit(18 + 4/12, "feet"),
  39040. weight: math.unit(1500, "kg"),
  39041. name: "Front",
  39042. image: {
  39043. source: "./media/characters/solas-sharpsman/front.svg",
  39044. extra: 1698/1589,
  39045. bottom: 0/1698
  39046. }
  39047. },
  39048. },
  39049. [
  39050. {
  39051. name: "Normal",
  39052. height: math.unit(18 + 4/12, "feet"),
  39053. default: true
  39054. },
  39055. ]
  39056. ))
  39057. characterMakers.push(() => makeCharacter(
  39058. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39059. {
  39060. front: {
  39061. height: math.unit(5 + 5/12, "feet"),
  39062. weight: math.unit(180, "lb"),
  39063. name: "Front",
  39064. image: {
  39065. source: "./media/characters/october/front.svg",
  39066. extra: 1800/1650,
  39067. bottom: 0/1800
  39068. }
  39069. },
  39070. frontNsfw: {
  39071. height: math.unit(5 + 5/12, "feet"),
  39072. weight: math.unit(180, "lb"),
  39073. name: "Front (NSFW)",
  39074. image: {
  39075. source: "./media/characters/october/front-nsfw.svg",
  39076. extra: 1392/1307,
  39077. bottom: 42/1434
  39078. }
  39079. },
  39080. },
  39081. [
  39082. {
  39083. name: "Normal",
  39084. height: math.unit(5 + 5/12, "feet"),
  39085. default: true
  39086. },
  39087. ]
  39088. ))
  39089. characterMakers.push(() => makeCharacter(
  39090. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39091. {
  39092. front: {
  39093. height: math.unit(8 + 6/12, "feet"),
  39094. name: "Front",
  39095. image: {
  39096. source: "./media/characters/essynkardi/front.svg",
  39097. extra: 1541/1457,
  39098. bottom: 47/1588
  39099. }
  39100. },
  39101. },
  39102. [
  39103. {
  39104. name: "Normal",
  39105. height: math.unit(8 + 6/12, "feet"),
  39106. default: true
  39107. },
  39108. ]
  39109. ))
  39110. characterMakers.push(() => makeCharacter(
  39111. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39112. {
  39113. front: {
  39114. height: math.unit(6 + 6/12, "feet"),
  39115. weight: math.unit(7, "lb"),
  39116. name: "Front",
  39117. image: {
  39118. source: "./media/characters/icky/front.svg",
  39119. extra: 813/782,
  39120. bottom: 66/879
  39121. }
  39122. },
  39123. back: {
  39124. height: math.unit(6 + 6/12, "feet"),
  39125. weight: math.unit(7, "lb"),
  39126. name: "Back",
  39127. image: {
  39128. source: "./media/characters/icky/back.svg",
  39129. extra: 754/735,
  39130. bottom: 56/810
  39131. }
  39132. },
  39133. },
  39134. [
  39135. {
  39136. name: "Normal",
  39137. height: math.unit(6 + 6/12, "feet"),
  39138. default: true
  39139. },
  39140. ]
  39141. ))
  39142. characterMakers.push(() => makeCharacter(
  39143. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39144. {
  39145. front: {
  39146. height: math.unit(15, "feet"),
  39147. name: "Front",
  39148. image: {
  39149. source: "./media/characters/rojas/front.svg",
  39150. extra: 1462/1408,
  39151. bottom: 95/1557
  39152. }
  39153. },
  39154. back: {
  39155. height: math.unit(15, "feet"),
  39156. name: "Back",
  39157. image: {
  39158. source: "./media/characters/rojas/back.svg",
  39159. extra: 1023/954,
  39160. bottom: 28/1051
  39161. }
  39162. },
  39163. },
  39164. [
  39165. {
  39166. name: "Normal",
  39167. height: math.unit(15, "feet"),
  39168. default: true
  39169. },
  39170. ]
  39171. ))
  39172. characterMakers.push(() => makeCharacter(
  39173. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39174. {
  39175. frontHuman: {
  39176. height: math.unit(5 + 7/12, "feet"),
  39177. name: "Front (Human)",
  39178. image: {
  39179. source: "./media/characters/alek-dryagan/front-human.svg",
  39180. extra: 1687/1667,
  39181. bottom: 69/1756
  39182. }
  39183. },
  39184. backHuman: {
  39185. height: math.unit(5 + 7/12, "feet"),
  39186. name: "Back (Human)",
  39187. image: {
  39188. source: "./media/characters/alek-dryagan/back-human.svg",
  39189. extra: 1670/1649,
  39190. bottom: 65/1735
  39191. }
  39192. },
  39193. frontDemi: {
  39194. height: math.unit(65, "feet"),
  39195. name: "Front (Demi)",
  39196. image: {
  39197. source: "./media/characters/alek-dryagan/front-demi.svg",
  39198. extra: 1669/1642,
  39199. bottom: 49/1718
  39200. }
  39201. },
  39202. backDemi: {
  39203. height: math.unit(65, "feet"),
  39204. name: "Back (Demi)",
  39205. image: {
  39206. source: "./media/characters/alek-dryagan/back-demi.svg",
  39207. extra: 1658/1637,
  39208. bottom: 40/1698
  39209. }
  39210. },
  39211. mawHuman: {
  39212. height: math.unit(0.3, "feet"),
  39213. name: "Maw (Human)",
  39214. image: {
  39215. source: "./media/characters/alek-dryagan/maw-human.svg"
  39216. }
  39217. },
  39218. mawDemi: {
  39219. height: math.unit(3.8, "feet"),
  39220. name: "Maw (Demi)",
  39221. image: {
  39222. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39223. }
  39224. },
  39225. },
  39226. [
  39227. {
  39228. name: "Normal",
  39229. height: math.unit(5 + 7/12, "feet"),
  39230. default: true
  39231. },
  39232. ]
  39233. ))
  39234. characterMakers.push(() => makeCharacter(
  39235. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39236. {
  39237. frontHuman: {
  39238. height: math.unit(5 + 2/12, "feet"),
  39239. name: "Front (Human)",
  39240. image: {
  39241. source: "./media/characters/gen/front-human.svg",
  39242. extra: 1627/1538,
  39243. bottom: 71/1698
  39244. }
  39245. },
  39246. backHuman: {
  39247. height: math.unit(5 + 2/12, "feet"),
  39248. name: "Back (Human)",
  39249. image: {
  39250. source: "./media/characters/gen/back-human.svg",
  39251. extra: 1638/1548,
  39252. bottom: 69/1707
  39253. }
  39254. },
  39255. frontDemi: {
  39256. height: math.unit(5 + 2/12, "feet"),
  39257. name: "Front (Demi)",
  39258. image: {
  39259. source: "./media/characters/gen/front-demi.svg",
  39260. extra: 1627/1538,
  39261. bottom: 71/1698
  39262. }
  39263. },
  39264. backDemi: {
  39265. height: math.unit(5 + 2/12, "feet"),
  39266. name: "Back (Demi)",
  39267. image: {
  39268. source: "./media/characters/gen/back-demi.svg",
  39269. extra: 1638/1548,
  39270. bottom: 69/1707
  39271. }
  39272. },
  39273. },
  39274. [
  39275. {
  39276. name: "Normal",
  39277. height: math.unit(5 + 2/12, "feet"),
  39278. default: true
  39279. },
  39280. ]
  39281. ))
  39282. characterMakers.push(() => makeCharacter(
  39283. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39284. {
  39285. frontImp: {
  39286. height: math.unit(1 + 11/12, "feet"),
  39287. name: "Front (Imp)",
  39288. image: {
  39289. source: "./media/characters/max-kobold/front-imp.svg",
  39290. extra: 1238/1134,
  39291. bottom: 81/1319
  39292. }
  39293. },
  39294. backImp: {
  39295. height: math.unit(1 + 11/12, "feet"),
  39296. name: "Back (Imp)",
  39297. image: {
  39298. source: "./media/characters/max-kobold/back-imp.svg",
  39299. extra: 1334/1175,
  39300. bottom: 34/1368
  39301. }
  39302. },
  39303. frontDemi: {
  39304. height: math.unit(5 + 9/12, "feet"),
  39305. name: "Front (Demi)",
  39306. image: {
  39307. source: "./media/characters/max-kobold/front-demi.svg",
  39308. extra: 1715/1685,
  39309. bottom: 54/1769
  39310. }
  39311. },
  39312. backDemi: {
  39313. height: math.unit(5 + 9/12, "feet"),
  39314. name: "Back (Demi)",
  39315. image: {
  39316. source: "./media/characters/max-kobold/back-demi.svg",
  39317. extra: 1752/1729,
  39318. bottom: 41/1793
  39319. }
  39320. },
  39321. handImp: {
  39322. height: math.unit(0.45, "feet"),
  39323. name: "Hand (Imp)",
  39324. image: {
  39325. source: "./media/characters/max-kobold/hand.svg"
  39326. }
  39327. },
  39328. pawImp: {
  39329. height: math.unit(0.46, "feet"),
  39330. name: "Paw (Imp)",
  39331. image: {
  39332. source: "./media/characters/max-kobold/paw.svg"
  39333. }
  39334. },
  39335. handDemi: {
  39336. height: math.unit(0.80, "feet"),
  39337. name: "Hand (Demi)",
  39338. image: {
  39339. source: "./media/characters/max-kobold/hand.svg"
  39340. }
  39341. },
  39342. pawDemi: {
  39343. height: math.unit(1.1, "feet"),
  39344. name: "Paw (Demi)",
  39345. image: {
  39346. source: "./media/characters/max-kobold/paw.svg"
  39347. }
  39348. },
  39349. headImp: {
  39350. height: math.unit(1.33, "feet"),
  39351. name: "Head (Imp)",
  39352. image: {
  39353. source: "./media/characters/max-kobold/head-imp.svg"
  39354. }
  39355. },
  39356. mawImp: {
  39357. height: math.unit(0.75, "feet"),
  39358. name: "Maw (Imp)",
  39359. image: {
  39360. source: "./media/characters/max-kobold/maw-imp.svg"
  39361. }
  39362. },
  39363. mawDemi: {
  39364. height: math.unit(0.42, "feet"),
  39365. name: "Maw (Demi)",
  39366. image: {
  39367. source: "./media/characters/max-kobold/maw-demi.svg"
  39368. }
  39369. },
  39370. },
  39371. [
  39372. {
  39373. name: "Normal",
  39374. height: math.unit(1 + 11/12, "feet"),
  39375. default: true
  39376. },
  39377. ]
  39378. ))
  39379. characterMakers.push(() => makeCharacter(
  39380. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39381. {
  39382. front: {
  39383. height: math.unit(7 + 5/12, "feet"),
  39384. name: "Front",
  39385. image: {
  39386. source: "./media/characters/carbon/front.svg",
  39387. extra: 1754/1689,
  39388. bottom: 65/1819
  39389. }
  39390. },
  39391. back: {
  39392. height: math.unit(7 + 5/12, "feet"),
  39393. name: "Back",
  39394. image: {
  39395. source: "./media/characters/carbon/back.svg",
  39396. extra: 1762/1695,
  39397. bottom: 24/1786
  39398. }
  39399. },
  39400. frontGigantamax: {
  39401. height: math.unit(150, "feet"),
  39402. name: "Front (Gigantamax)",
  39403. image: {
  39404. source: "./media/characters/carbon/front-gigantamax.svg",
  39405. extra: 1826/1669,
  39406. bottom: 59/1885
  39407. }
  39408. },
  39409. backGigantamax: {
  39410. height: math.unit(150, "feet"),
  39411. name: "Back (Gigantamax)",
  39412. image: {
  39413. source: "./media/characters/carbon/back-gigantamax.svg",
  39414. extra: 1796/1653,
  39415. bottom: 53/1849
  39416. }
  39417. },
  39418. maw: {
  39419. height: math.unit(0.48, "feet"),
  39420. name: "Maw",
  39421. image: {
  39422. source: "./media/characters/carbon/maw.svg"
  39423. }
  39424. },
  39425. mawGigantamax: {
  39426. height: math.unit(7.5, "feet"),
  39427. name: "Maw (Gigantamax)",
  39428. image: {
  39429. source: "./media/characters/carbon/maw-gigantamax.svg"
  39430. }
  39431. },
  39432. },
  39433. [
  39434. {
  39435. name: "Normal",
  39436. height: math.unit(7 + 5/12, "feet"),
  39437. default: true
  39438. },
  39439. ]
  39440. ))
  39441. characterMakers.push(() => makeCharacter(
  39442. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39443. {
  39444. front: {
  39445. height: math.unit(6, "feet"),
  39446. name: "Front",
  39447. image: {
  39448. source: "./media/characters/maverick/front.svg",
  39449. extra: 1672/1661,
  39450. bottom: 85/1757
  39451. }
  39452. },
  39453. back: {
  39454. height: math.unit(6, "feet"),
  39455. name: "Back",
  39456. image: {
  39457. source: "./media/characters/maverick/back.svg",
  39458. extra: 1642/1631,
  39459. bottom: 38/1680
  39460. }
  39461. },
  39462. },
  39463. [
  39464. {
  39465. name: "Normal",
  39466. height: math.unit(6, "feet"),
  39467. default: true
  39468. },
  39469. ]
  39470. ))
  39471. characterMakers.push(() => makeCharacter(
  39472. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39473. {
  39474. front: {
  39475. height: math.unit(15, "feet"),
  39476. weight: math.unit(615, "lb"),
  39477. name: "Front",
  39478. image: {
  39479. source: "./media/characters/grockle/front.svg",
  39480. extra: 1535/1427,
  39481. bottom: 56/1591
  39482. }
  39483. },
  39484. },
  39485. [
  39486. {
  39487. name: "Normal",
  39488. height: math.unit(15, "feet"),
  39489. default: true
  39490. },
  39491. {
  39492. name: "Large",
  39493. height: math.unit(150, "feet")
  39494. },
  39495. {
  39496. name: "Macro",
  39497. height: math.unit(1876, "feet")
  39498. },
  39499. {
  39500. name: "Mega Macro",
  39501. height: math.unit(121940, "feet")
  39502. },
  39503. {
  39504. name: "Giga Macro",
  39505. height: math.unit(750, "km")
  39506. },
  39507. {
  39508. name: "Tera Macro",
  39509. height: math.unit(750000, "km")
  39510. },
  39511. {
  39512. name: "Galactic",
  39513. height: math.unit(1.4e5, "km")
  39514. },
  39515. {
  39516. name: "Godlike",
  39517. height: math.unit(9.8e280, "galaxies")
  39518. },
  39519. ]
  39520. ))
  39521. characterMakers.push(() => makeCharacter(
  39522. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39523. {
  39524. front: {
  39525. height: math.unit(11, "meters"),
  39526. weight: math.unit(20, "tonnes"),
  39527. name: "Front",
  39528. image: {
  39529. source: "./media/characters/alistair/front.svg",
  39530. extra: 1265/1009,
  39531. bottom: 93/1358
  39532. }
  39533. },
  39534. },
  39535. [
  39536. {
  39537. name: "Normal",
  39538. height: math.unit(11, "meters"),
  39539. default: true
  39540. },
  39541. ]
  39542. ))
  39543. characterMakers.push(() => makeCharacter(
  39544. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39545. {
  39546. front: {
  39547. height: math.unit(5 + 8/12, "feet"),
  39548. name: "Front",
  39549. image: {
  39550. source: "./media/characters/haruka/front.svg",
  39551. extra: 2012/1952,
  39552. bottom: 0/2012
  39553. }
  39554. },
  39555. },
  39556. [
  39557. {
  39558. name: "Normal",
  39559. height: math.unit(5 + 8/12, "feet"),
  39560. default: true
  39561. },
  39562. ]
  39563. ))
  39564. characterMakers.push(() => makeCharacter(
  39565. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39566. {
  39567. back: {
  39568. height: math.unit(9, "feet"),
  39569. name: "Back",
  39570. image: {
  39571. source: "./media/characters/vivian-sylveon/back.svg",
  39572. extra: 1853/1714,
  39573. bottom: 0/1853
  39574. }
  39575. },
  39576. },
  39577. [
  39578. {
  39579. name: "Normal",
  39580. height: math.unit(9, "feet"),
  39581. default: true
  39582. },
  39583. {
  39584. name: "Macro",
  39585. height: math.unit(500, "feet")
  39586. },
  39587. {
  39588. name: "Megamacro",
  39589. height: math.unit(600, "miles")
  39590. },
  39591. {
  39592. name: "Gigamacro",
  39593. height: math.unit(30000, "miles")
  39594. },
  39595. ]
  39596. ))
  39597. characterMakers.push(() => makeCharacter(
  39598. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39599. {
  39600. anthro: {
  39601. height: math.unit(5 + 10/12, "feet"),
  39602. weight: math.unit(100, "lb"),
  39603. name: "Anthro",
  39604. image: {
  39605. source: "./media/characters/daiki/anthro.svg",
  39606. extra: 1115/1027,
  39607. bottom: 69/1184
  39608. }
  39609. },
  39610. feral: {
  39611. height: math.unit(200, "feet"),
  39612. name: "Feral",
  39613. image: {
  39614. source: "./media/characters/daiki/feral.svg",
  39615. extra: 1256/313,
  39616. bottom: 39/1295
  39617. }
  39618. },
  39619. feralHead: {
  39620. height: math.unit(171, "feet"),
  39621. name: "Feral Head",
  39622. image: {
  39623. source: "./media/characters/daiki/feral-head.svg"
  39624. }
  39625. },
  39626. manaDragon: {
  39627. height: math.unit(170, "meters"),
  39628. name: "Mana-dragon",
  39629. image: {
  39630. source: "./media/characters/daiki/mana-dragon.svg",
  39631. extra: 763/420,
  39632. bottom: 97/860
  39633. }
  39634. },
  39635. },
  39636. [
  39637. {
  39638. name: "Normal",
  39639. height: math.unit(5 + 10/12, "feet"),
  39640. default: true
  39641. },
  39642. ]
  39643. ))
  39644. characterMakers.push(() => makeCharacter(
  39645. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39646. {
  39647. fullyEquippedFront: {
  39648. height: math.unit(3 + 1/12, "feet"),
  39649. weight: math.unit(24, "lb"),
  39650. name: "Fully Equipped (Front)",
  39651. image: {
  39652. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39653. extra: 687/605,
  39654. bottom: 18/705
  39655. }
  39656. },
  39657. fullyEquippedBack: {
  39658. height: math.unit(3 + 1/12, "feet"),
  39659. weight: math.unit(24, "lb"),
  39660. name: "Fully Equipped (Back)",
  39661. image: {
  39662. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39663. extra: 689/590,
  39664. bottom: 18/707
  39665. }
  39666. },
  39667. dailyWear: {
  39668. height: math.unit(3 + 1/12, "feet"),
  39669. weight: math.unit(24, "lb"),
  39670. name: "Daily Wear",
  39671. image: {
  39672. source: "./media/characters/tea-spot/daily-wear.svg",
  39673. extra: 701/620,
  39674. bottom: 21/722
  39675. }
  39676. },
  39677. maidWork: {
  39678. height: math.unit(3 + 1/12, "feet"),
  39679. weight: math.unit(24, "lb"),
  39680. name: "Maid Work",
  39681. image: {
  39682. source: "./media/characters/tea-spot/maid-work.svg",
  39683. extra: 693/609,
  39684. bottom: 15/708
  39685. }
  39686. },
  39687. },
  39688. [
  39689. {
  39690. name: "Normal",
  39691. height: math.unit(3 + 1/12, "feet"),
  39692. default: true
  39693. },
  39694. ]
  39695. ))
  39696. characterMakers.push(() => makeCharacter(
  39697. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39698. {
  39699. front: {
  39700. height: math.unit(175, "cm"),
  39701. weight: math.unit(75, "kg"),
  39702. name: "Front",
  39703. image: {
  39704. source: "./media/characters/chee/front.svg",
  39705. extra: 1796/1740,
  39706. bottom: 40/1836
  39707. }
  39708. },
  39709. },
  39710. [
  39711. {
  39712. name: "Micro-Micro",
  39713. height: math.unit(1, "nm")
  39714. },
  39715. {
  39716. name: "Micro-erst",
  39717. height: math.unit(1, "micrometer")
  39718. },
  39719. {
  39720. name: "Micro-er",
  39721. height: math.unit(1, "cm")
  39722. },
  39723. {
  39724. name: "Normal",
  39725. height: math.unit(175, "cm"),
  39726. default: true
  39727. },
  39728. {
  39729. name: "Macro",
  39730. height: math.unit(100, "m")
  39731. },
  39732. {
  39733. name: "Macro-er",
  39734. height: math.unit(1, "km")
  39735. },
  39736. {
  39737. name: "Macro-erst",
  39738. height: math.unit(10, "km")
  39739. },
  39740. {
  39741. name: "Macro-Macro",
  39742. height: math.unit(100, "km")
  39743. },
  39744. ]
  39745. ))
  39746. characterMakers.push(() => makeCharacter(
  39747. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39748. {
  39749. front: {
  39750. height: math.unit(11 + 9/12, "feet"),
  39751. weight: math.unit(935, "lb"),
  39752. name: "Front",
  39753. image: {
  39754. source: "./media/characters/kingsley/front.svg",
  39755. extra: 1803/1674,
  39756. bottom: 127/1930
  39757. }
  39758. },
  39759. frontNude: {
  39760. height: math.unit(11 + 9/12, "feet"),
  39761. weight: math.unit(935, "lb"),
  39762. name: "Front (Nude)",
  39763. image: {
  39764. source: "./media/characters/kingsley/front-nude.svg",
  39765. extra: 1803/1674,
  39766. bottom: 127/1930
  39767. }
  39768. },
  39769. },
  39770. [
  39771. {
  39772. name: "Normal",
  39773. height: math.unit(11 + 9/12, "feet"),
  39774. default: true
  39775. },
  39776. ]
  39777. ))
  39778. characterMakers.push(() => makeCharacter(
  39779. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39780. {
  39781. side: {
  39782. height: math.unit(9, "feet"),
  39783. name: "Side",
  39784. image: {
  39785. source: "./media/characters/rymel/side.svg",
  39786. extra: 792/469,
  39787. bottom: 121/913
  39788. }
  39789. },
  39790. maw: {
  39791. height: math.unit(2.4, "meters"),
  39792. name: "Maw",
  39793. image: {
  39794. source: "./media/characters/rymel/maw.svg"
  39795. }
  39796. },
  39797. },
  39798. [
  39799. {
  39800. name: "House Drake",
  39801. height: math.unit(2, "feet")
  39802. },
  39803. {
  39804. name: "Reduced",
  39805. height: math.unit(4.5, "feet")
  39806. },
  39807. {
  39808. name: "Normal",
  39809. height: math.unit(9, "feet"),
  39810. default: true
  39811. },
  39812. ]
  39813. ))
  39814. characterMakers.push(() => makeCharacter(
  39815. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39816. {
  39817. front: {
  39818. height: math.unit(1.74, "meters"),
  39819. weight: math.unit(55, "kg"),
  39820. name: "Front",
  39821. image: {
  39822. source: "./media/characters/rubus/front.svg",
  39823. extra: 1894/1742,
  39824. bottom: 44/1938
  39825. }
  39826. },
  39827. },
  39828. [
  39829. {
  39830. name: "Normal",
  39831. height: math.unit(1.74, "meters"),
  39832. default: true
  39833. },
  39834. ]
  39835. ))
  39836. characterMakers.push(() => makeCharacter(
  39837. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39838. {
  39839. front: {
  39840. height: math.unit(5 + 2/12, "feet"),
  39841. weight: math.unit(112, "lb"),
  39842. name: "Front",
  39843. image: {
  39844. source: "./media/characters/cassie-kingston/front.svg",
  39845. extra: 1438/1390,
  39846. bottom: 47/1485
  39847. }
  39848. },
  39849. },
  39850. [
  39851. {
  39852. name: "Normal",
  39853. height: math.unit(5 + 2/12, "feet"),
  39854. default: true
  39855. },
  39856. {
  39857. name: "Macro",
  39858. height: math.unit(128, "feet")
  39859. },
  39860. {
  39861. name: "Megamacro",
  39862. height: math.unit(2.56, "miles")
  39863. },
  39864. ]
  39865. ))
  39866. characterMakers.push(() => makeCharacter(
  39867. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39868. {
  39869. front: {
  39870. height: math.unit(7, "feet"),
  39871. name: "Front",
  39872. image: {
  39873. source: "./media/characters/fox/front.svg",
  39874. extra: 1798/1703,
  39875. bottom: 55/1853
  39876. }
  39877. },
  39878. back: {
  39879. height: math.unit(7, "feet"),
  39880. name: "Back",
  39881. image: {
  39882. source: "./media/characters/fox/back.svg",
  39883. extra: 1748/1649,
  39884. bottom: 32/1780
  39885. }
  39886. },
  39887. head: {
  39888. height: math.unit(1.95, "feet"),
  39889. name: "Head",
  39890. image: {
  39891. source: "./media/characters/fox/head.svg"
  39892. }
  39893. },
  39894. dick: {
  39895. height: math.unit(1.33, "feet"),
  39896. name: "Dick",
  39897. image: {
  39898. source: "./media/characters/fox/dick.svg"
  39899. }
  39900. },
  39901. foot: {
  39902. height: math.unit(1, "feet"),
  39903. name: "Foot",
  39904. image: {
  39905. source: "./media/characters/fox/foot.svg"
  39906. }
  39907. },
  39908. paw: {
  39909. height: math.unit(0.92, "feet"),
  39910. name: "Paw",
  39911. image: {
  39912. source: "./media/characters/fox/paw.svg"
  39913. }
  39914. },
  39915. },
  39916. [
  39917. {
  39918. name: "Small",
  39919. height: math.unit(3, "inches")
  39920. },
  39921. {
  39922. name: "\"Realistic\"",
  39923. height: math.unit(7, "feet")
  39924. },
  39925. {
  39926. name: "Normal",
  39927. height: math.unit(150, "feet"),
  39928. default: true
  39929. },
  39930. {
  39931. name: "BIG",
  39932. height: math.unit(1200, "feet")
  39933. },
  39934. {
  39935. name: "👀",
  39936. height: math.unit(5, "miles")
  39937. },
  39938. {
  39939. name: "👀👀👀",
  39940. height: math.unit(64, "miles")
  39941. },
  39942. ]
  39943. ))
  39944. characterMakers.push(() => makeCharacter(
  39945. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39946. {
  39947. front: {
  39948. height: math.unit(625, "feet"),
  39949. name: "Front",
  39950. image: {
  39951. source: "./media/characters/asonja-rossa/front.svg",
  39952. extra: 1833/1686,
  39953. bottom: 24/1857
  39954. }
  39955. },
  39956. back: {
  39957. height: math.unit(625, "feet"),
  39958. name: "Back",
  39959. image: {
  39960. source: "./media/characters/asonja-rossa/back.svg",
  39961. extra: 1852/1753,
  39962. bottom: 26/1878
  39963. }
  39964. },
  39965. },
  39966. [
  39967. {
  39968. name: "Macro",
  39969. height: math.unit(625, "feet"),
  39970. default: true
  39971. },
  39972. ]
  39973. ))
  39974. characterMakers.push(() => makeCharacter(
  39975. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39976. {
  39977. side: {
  39978. height: math.unit(8, "feet"),
  39979. name: "Side",
  39980. image: {
  39981. source: "./media/characters/rezukii/side.svg",
  39982. extra: 979/542,
  39983. bottom: 87/1066
  39984. }
  39985. },
  39986. sitting: {
  39987. height: math.unit(14.6, "feet"),
  39988. name: "Sitting",
  39989. image: {
  39990. source: "./media/characters/rezukii/sitting.svg",
  39991. extra: 1023/813,
  39992. bottom: 45/1068
  39993. }
  39994. },
  39995. },
  39996. [
  39997. {
  39998. name: "Tiny",
  39999. height: math.unit(2, "feet")
  40000. },
  40001. {
  40002. name: "Smol",
  40003. height: math.unit(4, "feet")
  40004. },
  40005. {
  40006. name: "Normal",
  40007. height: math.unit(8, "feet"),
  40008. default: true
  40009. },
  40010. {
  40011. name: "Big",
  40012. height: math.unit(12, "feet")
  40013. },
  40014. {
  40015. name: "Macro",
  40016. height: math.unit(30, "feet")
  40017. },
  40018. ]
  40019. ))
  40020. characterMakers.push(() => makeCharacter(
  40021. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40022. {
  40023. front: {
  40024. height: math.unit(14, "feet"),
  40025. weight: math.unit(9.5, "tonnes"),
  40026. name: "Front",
  40027. image: {
  40028. source: "./media/characters/dawnheart/front.svg",
  40029. extra: 2792/2675,
  40030. bottom: 64/2856
  40031. }
  40032. },
  40033. },
  40034. [
  40035. {
  40036. name: "Normal",
  40037. height: math.unit(14, "feet"),
  40038. default: true
  40039. },
  40040. ]
  40041. ))
  40042. characterMakers.push(() => makeCharacter(
  40043. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40044. {
  40045. front: {
  40046. height: math.unit(1.7, "m"),
  40047. name: "Front",
  40048. image: {
  40049. source: "./media/characters/gladi/front.svg",
  40050. extra: 1460/1362,
  40051. bottom: 19/1479
  40052. }
  40053. },
  40054. back: {
  40055. height: math.unit(1.7, "m"),
  40056. name: "Back",
  40057. image: {
  40058. source: "./media/characters/gladi/back.svg",
  40059. extra: 1459/1357,
  40060. bottom: 12/1471
  40061. }
  40062. },
  40063. feral: {
  40064. height: math.unit(2.05, "m"),
  40065. name: "Feral",
  40066. image: {
  40067. source: "./media/characters/gladi/feral.svg",
  40068. extra: 821/557,
  40069. bottom: 91/912
  40070. }
  40071. },
  40072. },
  40073. [
  40074. {
  40075. name: "Shortest",
  40076. height: math.unit(70, "cm")
  40077. },
  40078. {
  40079. name: "Normal",
  40080. height: math.unit(1.7, "m")
  40081. },
  40082. {
  40083. name: "Macro",
  40084. height: math.unit(10, "m"),
  40085. default: true
  40086. },
  40087. {
  40088. name: "Tallest",
  40089. height: math.unit(200, "m")
  40090. },
  40091. ]
  40092. ))
  40093. characterMakers.push(() => makeCharacter(
  40094. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40095. {
  40096. front: {
  40097. height: math.unit(5 + 7/12, "feet"),
  40098. weight: math.unit(2, "tons"),
  40099. name: "Front",
  40100. image: {
  40101. source: "./media/characters/erdno/front.svg",
  40102. extra: 1234/1129,
  40103. bottom: 35/1269
  40104. }
  40105. },
  40106. angled: {
  40107. height: math.unit(5 + 7/12, "feet"),
  40108. weight: math.unit(2, "tons"),
  40109. name: "Angled",
  40110. image: {
  40111. source: "./media/characters/erdno/angled.svg",
  40112. extra: 1185/1139,
  40113. bottom: 36/1221
  40114. }
  40115. },
  40116. side: {
  40117. height: math.unit(5 + 7/12, "feet"),
  40118. weight: math.unit(2, "tons"),
  40119. name: "Side",
  40120. image: {
  40121. source: "./media/characters/erdno/side.svg",
  40122. extra: 1191/1144,
  40123. bottom: 40/1231
  40124. }
  40125. },
  40126. back: {
  40127. height: math.unit(5 + 7/12, "feet"),
  40128. weight: math.unit(2, "tons"),
  40129. name: "Back",
  40130. image: {
  40131. source: "./media/characters/erdno/back.svg",
  40132. extra: 1202/1146,
  40133. bottom: 17/1219
  40134. }
  40135. },
  40136. frontNsfw: {
  40137. height: math.unit(5 + 7/12, "feet"),
  40138. weight: math.unit(2, "tons"),
  40139. name: "Front (NSFW)",
  40140. image: {
  40141. source: "./media/characters/erdno/front-nsfw.svg",
  40142. extra: 1234/1129,
  40143. bottom: 35/1269
  40144. }
  40145. },
  40146. angledNsfw: {
  40147. height: math.unit(5 + 7/12, "feet"),
  40148. weight: math.unit(2, "tons"),
  40149. name: "Angled (NSFW)",
  40150. image: {
  40151. source: "./media/characters/erdno/angled-nsfw.svg",
  40152. extra: 1185/1139,
  40153. bottom: 36/1221
  40154. }
  40155. },
  40156. sideNsfw: {
  40157. height: math.unit(5 + 7/12, "feet"),
  40158. weight: math.unit(2, "tons"),
  40159. name: "Side (NSFW)",
  40160. image: {
  40161. source: "./media/characters/erdno/side-nsfw.svg",
  40162. extra: 1191/1144,
  40163. bottom: 40/1231
  40164. }
  40165. },
  40166. backNsfw: {
  40167. height: math.unit(5 + 7/12, "feet"),
  40168. weight: math.unit(2, "tons"),
  40169. name: "Back (NSFW)",
  40170. image: {
  40171. source: "./media/characters/erdno/back-nsfw.svg",
  40172. extra: 1202/1146,
  40173. bottom: 17/1219
  40174. }
  40175. },
  40176. frontHyper: {
  40177. height: math.unit(5 + 7/12, "feet"),
  40178. weight: math.unit(2, "tons"),
  40179. name: "Front (Hyper)",
  40180. image: {
  40181. source: "./media/characters/erdno/front-hyper.svg",
  40182. extra: 1298/1136,
  40183. bottom: 35/1333
  40184. }
  40185. },
  40186. },
  40187. [
  40188. {
  40189. name: "Normal",
  40190. height: math.unit(5 + 7/12, "feet"),
  40191. default: true
  40192. },
  40193. {
  40194. name: "Big",
  40195. height: math.unit(5.7, "meters")
  40196. },
  40197. {
  40198. name: "Macro",
  40199. height: math.unit(5.7, "kilometers")
  40200. },
  40201. {
  40202. name: "Megamacro",
  40203. height: math.unit(5.7, "earths")
  40204. },
  40205. ]
  40206. ))
  40207. characterMakers.push(() => makeCharacter(
  40208. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40209. {
  40210. front: {
  40211. height: math.unit(5 + 10/12, "feet"),
  40212. weight: math.unit(150, "lb"),
  40213. name: "Front",
  40214. image: {
  40215. source: "./media/characters/jamie/front.svg",
  40216. extra: 1908/1768,
  40217. bottom: 19/1927
  40218. }
  40219. },
  40220. },
  40221. [
  40222. {
  40223. name: "Minimum",
  40224. height: math.unit(2, "cm")
  40225. },
  40226. {
  40227. name: "Micro",
  40228. height: math.unit(3, "inches")
  40229. },
  40230. {
  40231. name: "Normal",
  40232. height: math.unit(5 + 10/12, "feet"),
  40233. default: true
  40234. },
  40235. {
  40236. name: "Macro",
  40237. height: math.unit(150, "feet")
  40238. },
  40239. {
  40240. name: "Megamacro",
  40241. height: math.unit(10000, "m")
  40242. },
  40243. ]
  40244. ))
  40245. characterMakers.push(() => makeCharacter(
  40246. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40247. {
  40248. front: {
  40249. height: math.unit(2, "meters"),
  40250. weight: math.unit(100, "kg"),
  40251. name: "Front",
  40252. image: {
  40253. source: "./media/characters/shiron/front.svg",
  40254. extra: 2103/1985,
  40255. bottom: 98/2201
  40256. }
  40257. },
  40258. back: {
  40259. height: math.unit(2, "meters"),
  40260. weight: math.unit(100, "kg"),
  40261. name: "Back",
  40262. image: {
  40263. source: "./media/characters/shiron/back.svg",
  40264. extra: 2110/2015,
  40265. bottom: 89/2199
  40266. }
  40267. },
  40268. hand: {
  40269. height: math.unit(0.96, "feet"),
  40270. name: "Hand",
  40271. image: {
  40272. source: "./media/characters/shiron/hand.svg"
  40273. }
  40274. },
  40275. foot: {
  40276. height: math.unit(1.464, "feet"),
  40277. name: "Foot",
  40278. image: {
  40279. source: "./media/characters/shiron/foot.svg"
  40280. }
  40281. },
  40282. },
  40283. [
  40284. {
  40285. name: "Normal",
  40286. height: math.unit(2, "meters")
  40287. },
  40288. {
  40289. name: "Macro",
  40290. height: math.unit(500, "meters"),
  40291. default: true
  40292. },
  40293. {
  40294. name: "Megamacro",
  40295. height: math.unit(20, "km")
  40296. },
  40297. ]
  40298. ))
  40299. characterMakers.push(() => makeCharacter(
  40300. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40301. {
  40302. front: {
  40303. height: math.unit(6, "feet"),
  40304. name: "Front",
  40305. image: {
  40306. source: "./media/characters/sam/front.svg",
  40307. extra: 849/826,
  40308. bottom: 19/868
  40309. }
  40310. },
  40311. },
  40312. [
  40313. {
  40314. name: "Normal",
  40315. height: math.unit(6, "feet"),
  40316. default: true
  40317. },
  40318. ]
  40319. ))
  40320. characterMakers.push(() => makeCharacter(
  40321. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40322. {
  40323. front: {
  40324. height: math.unit(8 + 4/12, "feet"),
  40325. weight: math.unit(122, "kg"),
  40326. name: "Front",
  40327. image: {
  40328. source: "./media/characters/namori-kurogawa/front.svg",
  40329. extra: 1894/1576,
  40330. bottom: 34/1928
  40331. }
  40332. },
  40333. },
  40334. [
  40335. {
  40336. name: "Normal",
  40337. height: math.unit(8 + 4/12, "feet"),
  40338. default: true
  40339. },
  40340. ]
  40341. ))
  40342. characterMakers.push(() => makeCharacter(
  40343. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40344. {
  40345. front: {
  40346. height: math.unit(9, "feet"),
  40347. weight: math.unit(621, "lb"),
  40348. name: "Front",
  40349. image: {
  40350. source: "./media/characters/unmru/front.svg",
  40351. extra: 1853/1747,
  40352. bottom: 73/1926
  40353. }
  40354. },
  40355. side: {
  40356. height: math.unit(9, "feet"),
  40357. weight: math.unit(621, "lb"),
  40358. name: "Side",
  40359. image: {
  40360. source: "./media/characters/unmru/side.svg",
  40361. extra: 1781/1671,
  40362. bottom: 127/1908
  40363. }
  40364. },
  40365. back: {
  40366. height: math.unit(9, "feet"),
  40367. weight: math.unit(621, "lb"),
  40368. name: "Back",
  40369. image: {
  40370. source: "./media/characters/unmru/back.svg",
  40371. extra: 1894/1765,
  40372. bottom: 75/1969
  40373. }
  40374. },
  40375. dick: {
  40376. height: math.unit(3, "feet"),
  40377. weight: math.unit(35, "lb"),
  40378. name: "Dick",
  40379. image: {
  40380. source: "./media/characters/unmru/dick.svg"
  40381. }
  40382. },
  40383. },
  40384. [
  40385. {
  40386. name: "Normal",
  40387. height: math.unit(9, "feet")
  40388. },
  40389. {
  40390. name: "Natural",
  40391. height: math.unit(27, "feet"),
  40392. default: true
  40393. },
  40394. {
  40395. name: "Giant",
  40396. height: math.unit(90, "feet")
  40397. },
  40398. {
  40399. name: "Kaiju",
  40400. height: math.unit(270, "feet")
  40401. },
  40402. {
  40403. name: "Macro",
  40404. height: math.unit(900, "feet")
  40405. },
  40406. {
  40407. name: "Macro+",
  40408. height: math.unit(2700, "feet")
  40409. },
  40410. {
  40411. name: "Megamacro",
  40412. height: math.unit(9000, "feet")
  40413. },
  40414. {
  40415. name: "City-Crushing",
  40416. height: math.unit(27000, "feet")
  40417. },
  40418. {
  40419. name: "Mountain-Mashing",
  40420. height: math.unit(90000, "feet")
  40421. },
  40422. {
  40423. name: "Earth-Eclipsing",
  40424. height: math.unit(2.7e8, "feet")
  40425. },
  40426. {
  40427. name: "Sol-Swallowing",
  40428. height: math.unit(9e10, "feet")
  40429. },
  40430. {
  40431. name: "Majoris-Munching",
  40432. height: math.unit(2.7e13, "feet")
  40433. },
  40434. ]
  40435. ))
  40436. characterMakers.push(() => makeCharacter(
  40437. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40438. {
  40439. front: {
  40440. height: math.unit(1, "inch"),
  40441. name: "Front",
  40442. image: {
  40443. source: "./media/characters/squeaks-mouse/front.svg",
  40444. extra: 352/308,
  40445. bottom: 25/377
  40446. }
  40447. },
  40448. },
  40449. [
  40450. {
  40451. name: "Micro",
  40452. height: math.unit(1, "inch"),
  40453. default: true
  40454. },
  40455. ]
  40456. ))
  40457. characterMakers.push(() => makeCharacter(
  40458. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40459. {
  40460. side: {
  40461. height: math.unit(35, "feet"),
  40462. name: "Side",
  40463. image: {
  40464. source: "./media/characters/sayko/side.svg",
  40465. extra: 1697/1021,
  40466. bottom: 82/1779
  40467. }
  40468. },
  40469. head: {
  40470. height: math.unit(16, "feet"),
  40471. name: "Head",
  40472. image: {
  40473. source: "./media/characters/sayko/head.svg"
  40474. }
  40475. },
  40476. forepaw: {
  40477. height: math.unit(7.85, "feet"),
  40478. name: "Forepaw",
  40479. image: {
  40480. source: "./media/characters/sayko/forepaw.svg"
  40481. }
  40482. },
  40483. hindpaw: {
  40484. height: math.unit(8.8, "feet"),
  40485. name: "Hindpaw",
  40486. image: {
  40487. source: "./media/characters/sayko/hindpaw.svg"
  40488. }
  40489. },
  40490. },
  40491. [
  40492. {
  40493. name: "Normal",
  40494. height: math.unit(35, "feet"),
  40495. default: true
  40496. },
  40497. {
  40498. name: "Colossus",
  40499. height: math.unit(100, "meters")
  40500. },
  40501. {
  40502. name: "\"Small\" Deity",
  40503. height: math.unit(1, "km")
  40504. },
  40505. {
  40506. name: "\"Large\" Deity",
  40507. height: math.unit(15, "km")
  40508. },
  40509. ]
  40510. ))
  40511. characterMakers.push(() => makeCharacter(
  40512. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40513. {
  40514. front: {
  40515. height: math.unit(6, "feet"),
  40516. weight: math.unit(250, "lb"),
  40517. name: "Front",
  40518. image: {
  40519. source: "./media/characters/mukiro/front.svg",
  40520. extra: 1368/1310,
  40521. bottom: 34/1402
  40522. }
  40523. },
  40524. },
  40525. [
  40526. {
  40527. name: "Normal",
  40528. height: math.unit(6, "feet"),
  40529. default: true
  40530. },
  40531. ]
  40532. ))
  40533. characterMakers.push(() => makeCharacter(
  40534. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40535. {
  40536. front: {
  40537. height: math.unit(12 + 4/12, "feet"),
  40538. name: "Front",
  40539. image: {
  40540. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40541. extra: 1346/1311,
  40542. bottom: 65/1411
  40543. }
  40544. },
  40545. },
  40546. [
  40547. {
  40548. name: "Base",
  40549. height: math.unit(12 + 4/12, "feet"),
  40550. default: true
  40551. },
  40552. {
  40553. name: "Macro",
  40554. height: math.unit(150, "feet")
  40555. },
  40556. {
  40557. name: "Mega",
  40558. height: math.unit(2, "miles")
  40559. },
  40560. {
  40561. name: "Demi God",
  40562. height: math.unit(4, "AU")
  40563. },
  40564. {
  40565. name: "God Size",
  40566. height: math.unit(1, "universe")
  40567. },
  40568. ]
  40569. ))
  40570. characterMakers.push(() => makeCharacter(
  40571. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40572. {
  40573. front: {
  40574. height: math.unit(3 + 3/12, "feet"),
  40575. weight: math.unit(88, "lb"),
  40576. name: "Front",
  40577. image: {
  40578. source: "./media/characters/trey/front.svg",
  40579. extra: 1815/1509,
  40580. bottom: 60/1875
  40581. }
  40582. },
  40583. },
  40584. [
  40585. {
  40586. name: "Normal",
  40587. height: math.unit(3 + 3/12, "feet"),
  40588. default: true
  40589. },
  40590. ]
  40591. ))
  40592. characterMakers.push(() => makeCharacter(
  40593. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40594. {
  40595. front: {
  40596. height: math.unit(4, "meters"),
  40597. name: "Front",
  40598. image: {
  40599. source: "./media/characters/adelonda/front.svg",
  40600. extra: 1077/982,
  40601. bottom: 39/1116
  40602. }
  40603. },
  40604. back: {
  40605. height: math.unit(4, "meters"),
  40606. name: "Back",
  40607. image: {
  40608. source: "./media/characters/adelonda/back.svg",
  40609. extra: 1105/1003,
  40610. bottom: 25/1130
  40611. }
  40612. },
  40613. feral: {
  40614. height: math.unit(40/1.5, "meters"),
  40615. name: "Feral",
  40616. image: {
  40617. source: "./media/characters/adelonda/feral.svg",
  40618. extra: 597/271,
  40619. bottom: 387/984
  40620. }
  40621. },
  40622. },
  40623. [
  40624. {
  40625. name: "Normal",
  40626. height: math.unit(4, "meters"),
  40627. default: true
  40628. },
  40629. ]
  40630. ))
  40631. characterMakers.push(() => makeCharacter(
  40632. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40633. {
  40634. front: {
  40635. height: math.unit(8 + 4/12, "feet"),
  40636. weight: math.unit(670, "lb"),
  40637. name: "Front",
  40638. image: {
  40639. source: "./media/characters/acadiel/front.svg",
  40640. extra: 1901/1595,
  40641. bottom: 142/2043
  40642. }
  40643. },
  40644. },
  40645. [
  40646. {
  40647. name: "Normal",
  40648. height: math.unit(8 + 4/12, "feet"),
  40649. default: true
  40650. },
  40651. {
  40652. name: "Macro",
  40653. height: math.unit(200, "feet")
  40654. },
  40655. ]
  40656. ))
  40657. characterMakers.push(() => makeCharacter(
  40658. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40659. {
  40660. front: {
  40661. height: math.unit(6 + 2/12, "feet"),
  40662. weight: math.unit(185, "lb"),
  40663. name: "Front",
  40664. image: {
  40665. source: "./media/characters/kayne-ein/front.svg",
  40666. extra: 1780/1560,
  40667. bottom: 81/1861
  40668. }
  40669. },
  40670. },
  40671. [
  40672. {
  40673. name: "Normal",
  40674. height: math.unit(6 + 2/12, "feet"),
  40675. default: true
  40676. },
  40677. {
  40678. name: "Transformation Stage",
  40679. height: math.unit(15, "feet")
  40680. },
  40681. {
  40682. name: "Macro",
  40683. height: math.unit(150, "feet")
  40684. },
  40685. {
  40686. name: "Earth's Shadow",
  40687. height: math.unit(6200, "miles")
  40688. },
  40689. {
  40690. name: "Universal Demon",
  40691. height: math.unit(28e9, "parsecs")
  40692. },
  40693. {
  40694. name: "Multiverse God",
  40695. height: math.unit(3, "multiverses")
  40696. },
  40697. ]
  40698. ))
  40699. characterMakers.push(() => makeCharacter(
  40700. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40701. {
  40702. front: {
  40703. height: math.unit(5 + 5/12, "feet"),
  40704. name: "Front",
  40705. image: {
  40706. source: "./media/characters/fawn/front.svg",
  40707. extra: 1873/1731,
  40708. bottom: 95/1968
  40709. }
  40710. },
  40711. back: {
  40712. height: math.unit(5 + 5/12, "feet"),
  40713. name: "Back",
  40714. image: {
  40715. source: "./media/characters/fawn/back.svg",
  40716. extra: 1813/1700,
  40717. bottom: 14/1827
  40718. }
  40719. },
  40720. hoof: {
  40721. height: math.unit(1.45, "feet"),
  40722. name: "Hoof",
  40723. image: {
  40724. source: "./media/characters/fawn/hoof.svg"
  40725. }
  40726. },
  40727. },
  40728. [
  40729. {
  40730. name: "Normal",
  40731. height: math.unit(5 + 5/12, "feet"),
  40732. default: true
  40733. },
  40734. ]
  40735. ))
  40736. characterMakers.push(() => makeCharacter(
  40737. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40738. {
  40739. front: {
  40740. height: math.unit(2 + 5/12, "feet"),
  40741. name: "Front",
  40742. image: {
  40743. source: "./media/characters/orion/front.svg",
  40744. extra: 1366/1304,
  40745. bottom: 43/1409
  40746. }
  40747. },
  40748. paw: {
  40749. height: math.unit(0.52, "feet"),
  40750. name: "Paw",
  40751. image: {
  40752. source: "./media/characters/orion/paw.svg"
  40753. }
  40754. },
  40755. },
  40756. [
  40757. {
  40758. name: "Normal",
  40759. height: math.unit(2 + 5/12, "feet"),
  40760. default: true
  40761. },
  40762. ]
  40763. ))
  40764. characterMakers.push(() => makeCharacter(
  40765. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40766. {
  40767. front: {
  40768. height: math.unit(5 + 10/12, "feet"),
  40769. name: "Front",
  40770. image: {
  40771. source: "./media/characters/vera/front.svg",
  40772. extra: 1680/1575,
  40773. bottom: 49/1729
  40774. }
  40775. },
  40776. back: {
  40777. height: math.unit(5 + 10/12, "feet"),
  40778. name: "Back",
  40779. image: {
  40780. source: "./media/characters/vera/back.svg",
  40781. extra: 1700/1588,
  40782. bottom: 18/1718
  40783. }
  40784. },
  40785. arcanine: {
  40786. height: math.unit(6 + 8/12, "feet"),
  40787. name: "Arcanine",
  40788. image: {
  40789. source: "./media/characters/vera/arcanine.svg",
  40790. extra: 1590/1511,
  40791. bottom: 71/1661
  40792. }
  40793. },
  40794. maw: {
  40795. height: math.unit(0.82, "feet"),
  40796. name: "Maw",
  40797. image: {
  40798. source: "./media/characters/vera/maw.svg"
  40799. }
  40800. },
  40801. mawArcanine: {
  40802. height: math.unit(0.97, "feet"),
  40803. name: "Maw (Arcanine)",
  40804. image: {
  40805. source: "./media/characters/vera/maw-arcanine.svg"
  40806. }
  40807. },
  40808. paw: {
  40809. height: math.unit(0.75, "feet"),
  40810. name: "Paw",
  40811. image: {
  40812. source: "./media/characters/vera/paw.svg"
  40813. }
  40814. },
  40815. pawprint: {
  40816. height: math.unit(0.52, "feet"),
  40817. name: "Pawprint",
  40818. image: {
  40819. source: "./media/characters/vera/pawprint.svg"
  40820. }
  40821. },
  40822. },
  40823. [
  40824. {
  40825. name: "Normal",
  40826. height: math.unit(5 + 10/12, "feet"),
  40827. default: true
  40828. },
  40829. {
  40830. name: "Macro",
  40831. height: math.unit(75, "feet")
  40832. },
  40833. ]
  40834. ))
  40835. characterMakers.push(() => makeCharacter(
  40836. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40837. {
  40838. front: {
  40839. height: math.unit(4, "feet"),
  40840. weight: math.unit(40, "lb"),
  40841. name: "Front",
  40842. image: {
  40843. source: "./media/characters/orvan-rabbit/front.svg",
  40844. extra: 1896/1642,
  40845. bottom: 29/1925
  40846. }
  40847. },
  40848. },
  40849. [
  40850. {
  40851. name: "Normal",
  40852. height: math.unit(4, "feet"),
  40853. default: true
  40854. },
  40855. ]
  40856. ))
  40857. characterMakers.push(() => makeCharacter(
  40858. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40859. {
  40860. front: {
  40861. height: math.unit(6, "feet"),
  40862. weight: math.unit(168, "lb"),
  40863. name: "Front",
  40864. image: {
  40865. source: "./media/characters/lisa/front.svg",
  40866. extra: 2065/1867,
  40867. bottom: 46/2111
  40868. }
  40869. },
  40870. back: {
  40871. height: math.unit(6, "feet"),
  40872. weight: math.unit(168, "lb"),
  40873. name: "Back",
  40874. image: {
  40875. source: "./media/characters/lisa/back.svg",
  40876. extra: 1982/1838,
  40877. bottom: 29/2011
  40878. }
  40879. },
  40880. maw: {
  40881. height: math.unit(0.81, "feet"),
  40882. name: "Maw",
  40883. image: {
  40884. source: "./media/characters/lisa/maw.svg"
  40885. }
  40886. },
  40887. paw: {
  40888. height: math.unit(0.9, "feet"),
  40889. name: "Paw",
  40890. image: {
  40891. source: "./media/characters/lisa/paw.svg"
  40892. }
  40893. },
  40894. caribousune: {
  40895. height: math.unit(7 + 2/12, "feet"),
  40896. weight: math.unit(268, "lb"),
  40897. name: "Caribousune",
  40898. image: {
  40899. source: "./media/characters/lisa/caribousune.svg",
  40900. extra: 1843/1633,
  40901. bottom: 29/1872
  40902. }
  40903. },
  40904. frontCaribousune: {
  40905. height: math.unit(7 + 2/12, "feet"),
  40906. weight: math.unit(268, "lb"),
  40907. name: "Front (Caribousune)",
  40908. image: {
  40909. source: "./media/characters/lisa/front-caribousune.svg",
  40910. extra: 1818/1638,
  40911. bottom: 52/1870
  40912. }
  40913. },
  40914. sideCaribousune: {
  40915. height: math.unit(7 + 2/12, "feet"),
  40916. weight: math.unit(268, "lb"),
  40917. name: "Side (Caribousune)",
  40918. image: {
  40919. source: "./media/characters/lisa/side-caribousune.svg",
  40920. extra: 1851/1635,
  40921. bottom: 16/1867
  40922. }
  40923. },
  40924. backCaribousune: {
  40925. height: math.unit(7 + 2/12, "feet"),
  40926. weight: math.unit(268, "lb"),
  40927. name: "Back (Caribousune)",
  40928. image: {
  40929. source: "./media/characters/lisa/back-caribousune.svg",
  40930. extra: 1801/1604,
  40931. bottom: 44/1845
  40932. }
  40933. },
  40934. caribou: {
  40935. height: math.unit(7 + 2/12, "feet"),
  40936. weight: math.unit(268, "lb"),
  40937. name: "Caribou",
  40938. image: {
  40939. source: "./media/characters/lisa/caribou.svg",
  40940. extra: 1843/1633,
  40941. bottom: 29/1872
  40942. }
  40943. },
  40944. frontCaribou: {
  40945. height: math.unit(7 + 2/12, "feet"),
  40946. weight: math.unit(268, "lb"),
  40947. name: "Front (Caribou)",
  40948. image: {
  40949. source: "./media/characters/lisa/front-caribou.svg",
  40950. extra: 1818/1638,
  40951. bottom: 52/1870
  40952. }
  40953. },
  40954. sideCaribou: {
  40955. height: math.unit(7 + 2/12, "feet"),
  40956. weight: math.unit(268, "lb"),
  40957. name: "Side (Caribou)",
  40958. image: {
  40959. source: "./media/characters/lisa/side-caribou.svg",
  40960. extra: 1851/1635,
  40961. bottom: 16/1867
  40962. }
  40963. },
  40964. backCaribou: {
  40965. height: math.unit(7 + 2/12, "feet"),
  40966. weight: math.unit(268, "lb"),
  40967. name: "Back (Caribou)",
  40968. image: {
  40969. source: "./media/characters/lisa/back-caribou.svg",
  40970. extra: 1801/1604,
  40971. bottom: 44/1845
  40972. }
  40973. },
  40974. mawCaribou: {
  40975. height: math.unit(1.45, "feet"),
  40976. name: "Maw (Caribou)",
  40977. image: {
  40978. source: "./media/characters/lisa/maw-caribou.svg"
  40979. }
  40980. },
  40981. mawCaribousune: {
  40982. height: math.unit(1.45, "feet"),
  40983. name: "Maw (Caribousune)",
  40984. image: {
  40985. source: "./media/characters/lisa/maw-caribousune.svg"
  40986. }
  40987. },
  40988. pawCaribousune: {
  40989. height: math.unit(1.61, "feet"),
  40990. name: "Paw (Caribou)",
  40991. image: {
  40992. source: "./media/characters/lisa/paw-caribousune.svg"
  40993. }
  40994. },
  40995. },
  40996. [
  40997. {
  40998. name: "Normal",
  40999. height: math.unit(6, "feet")
  41000. },
  41001. {
  41002. name: "God Size",
  41003. height: math.unit(72, "feet"),
  41004. default: true
  41005. },
  41006. {
  41007. name: "Towering",
  41008. height: math.unit(288, "feet")
  41009. },
  41010. {
  41011. name: "City Size",
  41012. height: math.unit(48384, "feet")
  41013. },
  41014. {
  41015. name: "Continental",
  41016. height: math.unit(4200, "miles")
  41017. },
  41018. {
  41019. name: "Planet Eater",
  41020. height: math.unit(42, "earths")
  41021. },
  41022. {
  41023. name: "Star Swallower",
  41024. height: math.unit(42, "solarradii")
  41025. },
  41026. {
  41027. name: "System Swallower",
  41028. height: math.unit(84000, "AU")
  41029. },
  41030. {
  41031. name: "Galaxy Gobbler",
  41032. height: math.unit(42, "galaxies")
  41033. },
  41034. {
  41035. name: "Universe Devourer",
  41036. height: math.unit(42, "universes")
  41037. },
  41038. {
  41039. name: "Multiverse Muncher",
  41040. height: math.unit(42, "multiverses")
  41041. },
  41042. ]
  41043. ))
  41044. characterMakers.push(() => makeCharacter(
  41045. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41046. {
  41047. front: {
  41048. height: math.unit(36, "feet"),
  41049. name: "Front",
  41050. image: {
  41051. source: "./media/characters/shadow-rat/front.svg",
  41052. extra: 1845/1758,
  41053. bottom: 83/1928
  41054. }
  41055. },
  41056. },
  41057. [
  41058. {
  41059. name: "Macro",
  41060. height: math.unit(36, "feet"),
  41061. default: true
  41062. },
  41063. ]
  41064. ))
  41065. characterMakers.push(() => makeCharacter(
  41066. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41067. {
  41068. side: {
  41069. height: math.unit(8, "feet"),
  41070. weight: math.unit(2630, "lb"),
  41071. name: "Side",
  41072. image: {
  41073. source: "./media/characters/torallia/side.svg",
  41074. extra: 2164/2021,
  41075. bottom: 371/2535
  41076. }
  41077. },
  41078. },
  41079. [
  41080. {
  41081. name: "Mortal Interaction",
  41082. height: math.unit(8, "feet")
  41083. },
  41084. {
  41085. name: "Natural",
  41086. height: math.unit(24, "feet"),
  41087. default: true
  41088. },
  41089. {
  41090. name: "Giant",
  41091. height: math.unit(80, "feet")
  41092. },
  41093. {
  41094. name: "Kaiju",
  41095. height: math.unit(240, "feet")
  41096. },
  41097. {
  41098. name: "Macro",
  41099. height: math.unit(800, "feet")
  41100. },
  41101. {
  41102. name: "Macro+",
  41103. height: math.unit(2400, "feet")
  41104. },
  41105. {
  41106. name: "Macro++",
  41107. height: math.unit(8000, "feet")
  41108. },
  41109. {
  41110. name: "City-Crushing",
  41111. height: math.unit(24000, "feet")
  41112. },
  41113. {
  41114. name: "Mountain-Mashing",
  41115. height: math.unit(80000, "feet")
  41116. },
  41117. {
  41118. name: "District Demolisher",
  41119. height: math.unit(240000, "feet")
  41120. },
  41121. {
  41122. name: "Tri-County Terror",
  41123. height: math.unit(800000, "feet")
  41124. },
  41125. {
  41126. name: "State Smasher",
  41127. height: math.unit(2.4e6, "feet")
  41128. },
  41129. {
  41130. name: "Nation Nemesis",
  41131. height: math.unit(8e6, "feet")
  41132. },
  41133. {
  41134. name: "Continent Cracker",
  41135. height: math.unit(2.4e7, "feet")
  41136. },
  41137. {
  41138. name: "Planet-Pillaging",
  41139. height: math.unit(8e7, "feet")
  41140. },
  41141. {
  41142. name: "Earth-Eclipsing",
  41143. height: math.unit(2.4e8, "feet")
  41144. },
  41145. {
  41146. name: "Jovian-Jostling",
  41147. height: math.unit(8e8, "feet")
  41148. },
  41149. {
  41150. name: "Gas Giant Gulper",
  41151. height: math.unit(2.4e9, "feet")
  41152. },
  41153. {
  41154. name: "Astral Annihilator",
  41155. height: math.unit(8e9, "feet")
  41156. },
  41157. {
  41158. name: "Celestial Conqueror",
  41159. height: math.unit(2.4e10, "feet")
  41160. },
  41161. {
  41162. name: "Sol-Swallowing",
  41163. height: math.unit(8e10, "feet")
  41164. },
  41165. {
  41166. name: "Hunter of the Heavens",
  41167. height: math.unit(2.4e13, "feet")
  41168. },
  41169. ]
  41170. ))
  41171. characterMakers.push(() => makeCharacter(
  41172. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41173. {
  41174. front: {
  41175. height: math.unit(6 + 8/12, "feet"),
  41176. weight: math.unit(250, "kilograms"),
  41177. volume: math.unit(28, "liters"),
  41178. name: "Front",
  41179. image: {
  41180. source: "./media/characters/rebecca-pawlson/front.svg",
  41181. extra: 1737/1596,
  41182. bottom: 107/1844
  41183. }
  41184. },
  41185. back: {
  41186. height: math.unit(6 + 8/12, "feet"),
  41187. weight: math.unit(250, "kilograms"),
  41188. volume: math.unit(28, "liters"),
  41189. name: "Back",
  41190. image: {
  41191. source: "./media/characters/rebecca-pawlson/back.svg",
  41192. extra: 1702/1523,
  41193. bottom: 86/1788
  41194. }
  41195. },
  41196. },
  41197. [
  41198. {
  41199. name: "Normal",
  41200. height: math.unit(6 + 8/12, "feet")
  41201. },
  41202. {
  41203. name: "Mini Macro",
  41204. height: math.unit(10, "feet"),
  41205. default: true
  41206. },
  41207. {
  41208. name: "Macro",
  41209. height: math.unit(100, "feet")
  41210. },
  41211. {
  41212. name: "Mega Macro",
  41213. height: math.unit(2500, "feet")
  41214. },
  41215. {
  41216. name: "Giga Macro",
  41217. height: math.unit(50, "miles")
  41218. },
  41219. ]
  41220. ))
  41221. characterMakers.push(() => makeCharacter(
  41222. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41223. {
  41224. front: {
  41225. height: math.unit(7 + 6/12, "feet"),
  41226. weight: math.unit(600, "lb"),
  41227. name: "Front",
  41228. image: {
  41229. source: "./media/characters/moxie-nova/front.svg",
  41230. extra: 1734/1652,
  41231. bottom: 41/1775
  41232. }
  41233. },
  41234. },
  41235. [
  41236. {
  41237. name: "Normal",
  41238. height: math.unit(7 + 6/12, "feet"),
  41239. default: true
  41240. },
  41241. ]
  41242. ))
  41243. characterMakers.push(() => makeCharacter(
  41244. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41245. {
  41246. goat: {
  41247. height: math.unit(4, "feet"),
  41248. weight: math.unit(180, "lb"),
  41249. name: "Goat",
  41250. image: {
  41251. source: "./media/characters/tiffany/goat.svg",
  41252. extra: 1845/1595,
  41253. bottom: 106/1951
  41254. }
  41255. },
  41256. front: {
  41257. height: math.unit(5, "feet"),
  41258. weight: math.unit(150, "lb"),
  41259. name: "Foxcoon",
  41260. image: {
  41261. source: "./media/characters/tiffany/foxcoon.svg",
  41262. extra: 1941/1845,
  41263. bottom: 58/1999
  41264. }
  41265. },
  41266. },
  41267. [
  41268. {
  41269. name: "Normal",
  41270. height: math.unit(5, "feet"),
  41271. default: true
  41272. },
  41273. ]
  41274. ))
  41275. characterMakers.push(() => makeCharacter(
  41276. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41277. {
  41278. front: {
  41279. height: math.unit(8, "feet"),
  41280. weight: math.unit(300, "lb"),
  41281. name: "Front",
  41282. image: {
  41283. source: "./media/characters/raxinath/front.svg",
  41284. extra: 1407/1309,
  41285. bottom: 39/1446
  41286. }
  41287. },
  41288. back: {
  41289. height: math.unit(8, "feet"),
  41290. weight: math.unit(300, "lb"),
  41291. name: "Back",
  41292. image: {
  41293. source: "./media/characters/raxinath/back.svg",
  41294. extra: 1405/1315,
  41295. bottom: 9/1414
  41296. }
  41297. },
  41298. },
  41299. [
  41300. {
  41301. name: "Speck",
  41302. height: math.unit(0.5, "nm")
  41303. },
  41304. {
  41305. name: "Micro",
  41306. height: math.unit(3, "inches")
  41307. },
  41308. {
  41309. name: "Kobold",
  41310. height: math.unit(3, "feet")
  41311. },
  41312. {
  41313. name: "Normal",
  41314. height: math.unit(8, "feet"),
  41315. default: true
  41316. },
  41317. {
  41318. name: "Giant",
  41319. height: math.unit(50, "feet")
  41320. },
  41321. {
  41322. name: "Macro",
  41323. height: math.unit(1000, "feet")
  41324. },
  41325. {
  41326. name: "Megamacro",
  41327. height: math.unit(1, "mile")
  41328. },
  41329. ]
  41330. ))
  41331. characterMakers.push(() => makeCharacter(
  41332. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41333. {
  41334. front: {
  41335. height: math.unit(10, "feet"),
  41336. weight: math.unit(1442, "lb"),
  41337. name: "Front",
  41338. image: {
  41339. source: "./media/characters/mal-dragon/front.svg",
  41340. extra: 1515/1444,
  41341. bottom: 113/1628
  41342. }
  41343. },
  41344. back: {
  41345. height: math.unit(10, "feet"),
  41346. weight: math.unit(1442, "lb"),
  41347. name: "Back",
  41348. image: {
  41349. source: "./media/characters/mal-dragon/back.svg",
  41350. extra: 1527/1434,
  41351. bottom: 25/1552
  41352. }
  41353. },
  41354. },
  41355. [
  41356. {
  41357. name: "Mortal Interaction",
  41358. height: math.unit(10, "feet"),
  41359. default: true
  41360. },
  41361. {
  41362. name: "Large",
  41363. height: math.unit(30, "feet")
  41364. },
  41365. {
  41366. name: "Kaiju",
  41367. height: math.unit(300, "feet")
  41368. },
  41369. {
  41370. name: "Megamacro",
  41371. height: math.unit(10000, "feet")
  41372. },
  41373. {
  41374. name: "Continent Cracker",
  41375. height: math.unit(30000000, "feet")
  41376. },
  41377. {
  41378. name: "Sol-Swallowing",
  41379. height: math.unit(1e11, "feet")
  41380. },
  41381. {
  41382. name: "Light Universal",
  41383. height: math.unit(5, "universes")
  41384. },
  41385. {
  41386. name: "Universe Atoms",
  41387. height: math.unit(1.829e9, "universes")
  41388. },
  41389. {
  41390. name: "Light Multiversal",
  41391. height: math.unit(5, "multiverses")
  41392. },
  41393. {
  41394. name: "Multiverse Atoms",
  41395. height: math.unit(1.829e9, "multiverses")
  41396. },
  41397. {
  41398. name: "Fabric of Time",
  41399. height: math.unit(1e262, "multiverses")
  41400. },
  41401. ]
  41402. ))
  41403. characterMakers.push(() => makeCharacter(
  41404. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41405. {
  41406. front: {
  41407. height: math.unit(9, "feet"),
  41408. weight: math.unit(1050, "lb"),
  41409. name: "Front",
  41410. image: {
  41411. source: "./media/characters/tabitha/front.svg",
  41412. extra: 2083/1994,
  41413. bottom: 68/2151
  41414. }
  41415. },
  41416. },
  41417. [
  41418. {
  41419. name: "Baseline",
  41420. height: math.unit(9, "feet"),
  41421. default: true
  41422. },
  41423. {
  41424. name: "Giant",
  41425. height: math.unit(90, "feet")
  41426. },
  41427. {
  41428. name: "Macro",
  41429. height: math.unit(900, "feet")
  41430. },
  41431. {
  41432. name: "Megamacro",
  41433. height: math.unit(9000, "feet")
  41434. },
  41435. {
  41436. name: "City-Crushing",
  41437. height: math.unit(27000, "feet")
  41438. },
  41439. {
  41440. name: "Mountain-Mashing",
  41441. height: math.unit(90000, "feet")
  41442. },
  41443. {
  41444. name: "Nation Nemesis",
  41445. height: math.unit(9e6, "feet")
  41446. },
  41447. {
  41448. name: "Continent Cracker",
  41449. height: math.unit(27e6, "feet")
  41450. },
  41451. {
  41452. name: "Earth-Eclipsing",
  41453. height: math.unit(2.7e8, "feet")
  41454. },
  41455. {
  41456. name: "Gas Giant Gulper",
  41457. height: math.unit(2.7e9, "feet")
  41458. },
  41459. {
  41460. name: "Sol-Swallowing",
  41461. height: math.unit(9e10, "feet")
  41462. },
  41463. {
  41464. name: "Galaxy Gulper",
  41465. height: math.unit(9, "galaxies")
  41466. },
  41467. {
  41468. name: "Cosmos Churner",
  41469. height: math.unit(9, "universes")
  41470. },
  41471. ]
  41472. ))
  41473. characterMakers.push(() => makeCharacter(
  41474. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41475. {
  41476. front: {
  41477. height: math.unit(160, "cm"),
  41478. weight: math.unit(55, "kg"),
  41479. name: "Front",
  41480. image: {
  41481. source: "./media/characters/tow/front.svg",
  41482. extra: 1751/1722,
  41483. bottom: 74/1825
  41484. }
  41485. },
  41486. },
  41487. [
  41488. {
  41489. name: "Norm",
  41490. height: math.unit(160, "cm")
  41491. },
  41492. {
  41493. name: "Casual",
  41494. height: math.unit(3200, "m"),
  41495. default: true
  41496. },
  41497. {
  41498. name: "Show-Off",
  41499. height: math.unit(160, "km")
  41500. },
  41501. ]
  41502. ))
  41503. characterMakers.push(() => makeCharacter(
  41504. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41505. {
  41506. front: {
  41507. height: math.unit(7 + 11/12, "feet"),
  41508. weight: math.unit(342.8, "lb"),
  41509. name: "Front",
  41510. image: {
  41511. source: "./media/characters/vivian-orca-dragon/front.svg",
  41512. extra: 1890/1865,
  41513. bottom: 28/1918
  41514. }
  41515. },
  41516. },
  41517. [
  41518. {
  41519. name: "Micro",
  41520. height: math.unit(5, "inches")
  41521. },
  41522. {
  41523. name: "Normal",
  41524. height: math.unit(7 + 11/12, "feet"),
  41525. default: true
  41526. },
  41527. {
  41528. name: "Macro",
  41529. height: math.unit(395 + 7/12, "feet")
  41530. },
  41531. ]
  41532. ))
  41533. characterMakers.push(() => makeCharacter(
  41534. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41535. {
  41536. side: {
  41537. height: math.unit(10, "feet"),
  41538. weight: math.unit(1442, "lb"),
  41539. name: "Side",
  41540. image: {
  41541. source: "./media/characters/lotherakon/side.svg",
  41542. extra: 1604/1497,
  41543. bottom: 89/1693
  41544. }
  41545. },
  41546. },
  41547. [
  41548. {
  41549. name: "Mortal Interaction",
  41550. height: math.unit(10, "feet")
  41551. },
  41552. {
  41553. name: "Large",
  41554. height: math.unit(30, "feet"),
  41555. default: true
  41556. },
  41557. {
  41558. name: "Giant",
  41559. height: math.unit(100, "feet")
  41560. },
  41561. {
  41562. name: "Kaiju",
  41563. height: math.unit(300, "feet")
  41564. },
  41565. {
  41566. name: "Macro",
  41567. height: math.unit(1000, "feet")
  41568. },
  41569. {
  41570. name: "Macro+",
  41571. height: math.unit(3000, "feet")
  41572. },
  41573. {
  41574. name: "Megamacro",
  41575. height: math.unit(10000, "feet")
  41576. },
  41577. {
  41578. name: "City-Crushing",
  41579. height: math.unit(30000, "feet")
  41580. },
  41581. {
  41582. name: "Continent Cracker",
  41583. height: math.unit(30e6, "feet")
  41584. },
  41585. {
  41586. name: "Earth Eclipsing",
  41587. height: math.unit(3e8, "feet")
  41588. },
  41589. {
  41590. name: "Gas Giant Gulper",
  41591. height: math.unit(3e9, "feet")
  41592. },
  41593. {
  41594. name: "Sol-Swallowing",
  41595. height: math.unit(1e11, "feet")
  41596. },
  41597. {
  41598. name: "System Swallower",
  41599. height: math.unit(3e14, "feet")
  41600. },
  41601. {
  41602. name: "Galaxy Gulper",
  41603. height: math.unit(10, "galaxies")
  41604. },
  41605. {
  41606. name: "Light Universal",
  41607. height: math.unit(5, "universes")
  41608. },
  41609. {
  41610. name: "Universe Palm",
  41611. height: math.unit(20, "universes")
  41612. },
  41613. {
  41614. name: "Light Multiversal",
  41615. height: math.unit(5, "multiverses")
  41616. },
  41617. {
  41618. name: "Multiverse Palm",
  41619. height: math.unit(20, "multiverses")
  41620. },
  41621. {
  41622. name: "Inferno Incarnate",
  41623. height: math.unit(1e7, "multiverses")
  41624. },
  41625. ]
  41626. ))
  41627. characterMakers.push(() => makeCharacter(
  41628. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41629. {
  41630. front: {
  41631. height: math.unit(8, "feet"),
  41632. weight: math.unit(1200, "lb"),
  41633. name: "Front",
  41634. image: {
  41635. source: "./media/characters/malithee/front.svg",
  41636. extra: 1675/1640,
  41637. bottom: 162/1837
  41638. }
  41639. },
  41640. },
  41641. [
  41642. {
  41643. name: "Mortal Interaction",
  41644. height: math.unit(8, "feet"),
  41645. default: true
  41646. },
  41647. {
  41648. name: "Large",
  41649. height: math.unit(24, "feet")
  41650. },
  41651. {
  41652. name: "Kaiju",
  41653. height: math.unit(240, "feet")
  41654. },
  41655. {
  41656. name: "Megamacro",
  41657. height: math.unit(8000, "feet")
  41658. },
  41659. {
  41660. name: "Continent Cracker",
  41661. height: math.unit(24e6, "feet")
  41662. },
  41663. {
  41664. name: "Earth-Eclipsing",
  41665. height: math.unit(2.4e8, "feet")
  41666. },
  41667. {
  41668. name: "Sol-Swallowing",
  41669. height: math.unit(8e10, "feet")
  41670. },
  41671. {
  41672. name: "Galaxy Gulper",
  41673. height: math.unit(8, "galaxies")
  41674. },
  41675. {
  41676. name: "Light Universal",
  41677. height: math.unit(4, "universes")
  41678. },
  41679. {
  41680. name: "Universe Atoms",
  41681. height: math.unit(1.829e9, "universes")
  41682. },
  41683. {
  41684. name: "Light Multiversal",
  41685. height: math.unit(4, "multiverses")
  41686. },
  41687. {
  41688. name: "Multiverse Atoms",
  41689. height: math.unit(1.829e9, "multiverses")
  41690. },
  41691. {
  41692. name: "Nigh-Omnipresence",
  41693. height: math.unit(8e261, "multiverses")
  41694. },
  41695. ]
  41696. ))
  41697. characterMakers.push(() => makeCharacter(
  41698. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41699. {
  41700. front: {
  41701. height: math.unit(10, "feet"),
  41702. weight: math.unit(1500, "lb"),
  41703. name: "Front",
  41704. image: {
  41705. source: "./media/characters/miles-thestia/front.svg",
  41706. extra: 1812/1727,
  41707. bottom: 86/1898
  41708. }
  41709. },
  41710. back: {
  41711. height: math.unit(10, "feet"),
  41712. weight: math.unit(1500, "lb"),
  41713. name: "Back",
  41714. image: {
  41715. source: "./media/characters/miles-thestia/back.svg",
  41716. extra: 1799/1690,
  41717. bottom: 47/1846
  41718. }
  41719. },
  41720. frontNsfw: {
  41721. height: math.unit(10, "feet"),
  41722. weight: math.unit(1500, "lb"),
  41723. name: "Front (NSFW)",
  41724. image: {
  41725. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41726. extra: 1812/1727,
  41727. bottom: 86/1898
  41728. }
  41729. },
  41730. },
  41731. [
  41732. {
  41733. name: "Mini-Macro",
  41734. height: math.unit(10, "feet"),
  41735. default: true
  41736. },
  41737. ]
  41738. ))
  41739. characterMakers.push(() => makeCharacter(
  41740. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41741. {
  41742. front: {
  41743. height: math.unit(25, "feet"),
  41744. name: "Front",
  41745. image: {
  41746. source: "./media/characters/titan-s-wulf/front.svg",
  41747. extra: 1560/1484,
  41748. bottom: 76/1636
  41749. }
  41750. },
  41751. },
  41752. [
  41753. {
  41754. name: "Smallest",
  41755. height: math.unit(25, "feet"),
  41756. default: true
  41757. },
  41758. {
  41759. name: "Normal",
  41760. height: math.unit(200, "feet")
  41761. },
  41762. {
  41763. name: "Macro",
  41764. height: math.unit(200000, "feet")
  41765. },
  41766. {
  41767. name: "Multiversal Original",
  41768. height: math.unit(10000, "multiverses")
  41769. },
  41770. ]
  41771. ))
  41772. characterMakers.push(() => makeCharacter(
  41773. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41774. {
  41775. front: {
  41776. height: math.unit(8, "feet"),
  41777. weight: math.unit(553, "lb"),
  41778. name: "Front",
  41779. image: {
  41780. source: "./media/characters/tawendeh/front.svg",
  41781. extra: 2365/2268,
  41782. bottom: 83/2448
  41783. }
  41784. },
  41785. frontClothed: {
  41786. height: math.unit(8, "feet"),
  41787. weight: math.unit(553, "lb"),
  41788. name: "Front (Clothed)",
  41789. image: {
  41790. source: "./media/characters/tawendeh/front-clothed.svg",
  41791. extra: 2365/2268,
  41792. bottom: 83/2448
  41793. }
  41794. },
  41795. back: {
  41796. height: math.unit(8, "feet"),
  41797. weight: math.unit(553, "lb"),
  41798. name: "Back",
  41799. image: {
  41800. source: "./media/characters/tawendeh/back.svg",
  41801. extra: 2397/2294,
  41802. bottom: 42/2439
  41803. }
  41804. },
  41805. },
  41806. [
  41807. {
  41808. name: "Mortal Interaction",
  41809. height: math.unit(8, "feet"),
  41810. default: true
  41811. },
  41812. {
  41813. name: "Giant",
  41814. height: math.unit(80, "feet")
  41815. },
  41816. {
  41817. name: "Macro",
  41818. height: math.unit(800, "feet")
  41819. },
  41820. {
  41821. name: "Megamacro",
  41822. height: math.unit(8000, "feet")
  41823. },
  41824. {
  41825. name: "City-Crushing",
  41826. height: math.unit(24000, "feet")
  41827. },
  41828. {
  41829. name: "Mountain-Mashing",
  41830. height: math.unit(80000, "feet")
  41831. },
  41832. {
  41833. name: "Nation Nemesis",
  41834. height: math.unit(8e6, "feet")
  41835. },
  41836. {
  41837. name: "Continent Cracker",
  41838. height: math.unit(24e6, "feet")
  41839. },
  41840. {
  41841. name: "Earth-Eclipsing",
  41842. height: math.unit(2.4e8, "feet")
  41843. },
  41844. {
  41845. name: "Gas Giant Gulper",
  41846. height: math.unit(2.4e9, "feet")
  41847. },
  41848. {
  41849. name: "Sol-Swallowing",
  41850. height: math.unit(8e10, "feet")
  41851. },
  41852. {
  41853. name: "Galaxy Gulper",
  41854. height: math.unit(8, "galaxies")
  41855. },
  41856. {
  41857. name: "Cosmos Churner",
  41858. height: math.unit(8, "universes")
  41859. },
  41860. {
  41861. name: "Omnipotent Otter",
  41862. height: math.unit(80, "universes")
  41863. },
  41864. ]
  41865. ))
  41866. characterMakers.push(() => makeCharacter(
  41867. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41868. {
  41869. front: {
  41870. height: math.unit(2.6, "meters"),
  41871. weight: math.unit(900, "kg"),
  41872. name: "Front",
  41873. image: {
  41874. source: "./media/characters/neesha/front.svg",
  41875. extra: 1803/1653,
  41876. bottom: 128/1931
  41877. }
  41878. },
  41879. },
  41880. [
  41881. {
  41882. name: "Normal",
  41883. height: math.unit(2.6, "meters"),
  41884. default: true
  41885. },
  41886. {
  41887. name: "Macro",
  41888. height: math.unit(50, "meters")
  41889. },
  41890. ]
  41891. ))
  41892. characterMakers.push(() => makeCharacter(
  41893. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41894. {
  41895. front: {
  41896. height: math.unit(5, "feet"),
  41897. weight: math.unit(185, "lb"),
  41898. name: "Front",
  41899. image: {
  41900. source: "./media/characters/kyera/front.svg",
  41901. extra: 1875/1790,
  41902. bottom: 96/1971
  41903. }
  41904. },
  41905. },
  41906. [
  41907. {
  41908. name: "Normal",
  41909. height: math.unit(5, "feet"),
  41910. default: true
  41911. },
  41912. ]
  41913. ))
  41914. characterMakers.push(() => makeCharacter(
  41915. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41916. {
  41917. front: {
  41918. height: math.unit(7 + 6/12, "feet"),
  41919. weight: math.unit(540, "lb"),
  41920. name: "Front",
  41921. image: {
  41922. source: "./media/characters/yuko/front.svg",
  41923. extra: 1282/1222,
  41924. bottom: 101/1383
  41925. }
  41926. },
  41927. frontClothed: {
  41928. height: math.unit(7 + 6/12, "feet"),
  41929. weight: math.unit(540, "lb"),
  41930. name: "Front (Clothed)",
  41931. image: {
  41932. source: "./media/characters/yuko/front-clothed.svg",
  41933. extra: 1282/1222,
  41934. bottom: 101/1383
  41935. }
  41936. },
  41937. },
  41938. [
  41939. {
  41940. name: "Normal",
  41941. height: math.unit(7 + 6/12, "feet"),
  41942. default: true
  41943. },
  41944. {
  41945. name: "Macro",
  41946. height: math.unit(26 + 9/12, "feet")
  41947. },
  41948. {
  41949. name: "Megamacro",
  41950. height: math.unit(300, "feet")
  41951. },
  41952. {
  41953. name: "Gigamacro",
  41954. height: math.unit(5000, "feet")
  41955. },
  41956. {
  41957. name: "Planetary",
  41958. height: math.unit(10000, "miles")
  41959. },
  41960. ]
  41961. ))
  41962. characterMakers.push(() => makeCharacter(
  41963. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41964. {
  41965. front: {
  41966. height: math.unit(8 + 2/12, "feet"),
  41967. weight: math.unit(600, "lb"),
  41968. name: "Front",
  41969. image: {
  41970. source: "./media/characters/deam-nitrel/front.svg",
  41971. extra: 1308/1234,
  41972. bottom: 125/1433
  41973. }
  41974. },
  41975. },
  41976. [
  41977. {
  41978. name: "Normal",
  41979. height: math.unit(8 + 2/12, "feet"),
  41980. default: true
  41981. },
  41982. ]
  41983. ))
  41984. characterMakers.push(() => makeCharacter(
  41985. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41986. {
  41987. front: {
  41988. height: math.unit(6.1, "feet"),
  41989. weight: math.unit(180, "lb"),
  41990. name: "Front",
  41991. image: {
  41992. source: "./media/characters/skyress/front.svg",
  41993. extra: 1045/915,
  41994. bottom: 28/1073
  41995. }
  41996. },
  41997. maw: {
  41998. height: math.unit(1, "feet"),
  41999. name: "Maw",
  42000. image: {
  42001. source: "./media/characters/skyress/maw.svg"
  42002. }
  42003. },
  42004. },
  42005. [
  42006. {
  42007. name: "Normal",
  42008. height: math.unit(6.1, "feet"),
  42009. default: true
  42010. },
  42011. {
  42012. name: "Macro",
  42013. height: math.unit(200, "feet")
  42014. },
  42015. ]
  42016. ))
  42017. characterMakers.push(() => makeCharacter(
  42018. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42019. {
  42020. front: {
  42021. height: math.unit(4 + 2/12, "feet"),
  42022. weight: math.unit(40, "kg"),
  42023. name: "Front",
  42024. image: {
  42025. source: "./media/characters/amethyst-jones/front.svg",
  42026. extra: 1220/1150,
  42027. bottom: 101/1321
  42028. }
  42029. },
  42030. },
  42031. [
  42032. {
  42033. name: "Normal",
  42034. height: math.unit(4 + 2/12, "feet"),
  42035. default: true
  42036. },
  42037. ]
  42038. ))
  42039. characterMakers.push(() => makeCharacter(
  42040. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42041. {
  42042. front: {
  42043. height: math.unit(1.7, "m"),
  42044. weight: math.unit(135, "lb"),
  42045. name: "Front",
  42046. image: {
  42047. source: "./media/characters/jade/front.svg",
  42048. extra: 1818/1767,
  42049. bottom: 32/1850
  42050. }
  42051. },
  42052. back: {
  42053. height: math.unit(1.7, "m"),
  42054. weight: math.unit(135, "lb"),
  42055. name: "Back",
  42056. image: {
  42057. source: "./media/characters/jade/back.svg",
  42058. extra: 1869/1809,
  42059. bottom: 35/1904
  42060. }
  42061. },
  42062. hand: {
  42063. height: math.unit(0.24, "m"),
  42064. name: "Hand",
  42065. image: {
  42066. source: "./media/characters/jade/hand.svg"
  42067. }
  42068. },
  42069. foot: {
  42070. height: math.unit(0.263, "m"),
  42071. name: "Foot",
  42072. image: {
  42073. source: "./media/characters/jade/foot.svg"
  42074. }
  42075. },
  42076. dick: {
  42077. height: math.unit(0.47, "m"),
  42078. name: "Dick",
  42079. image: {
  42080. source: "./media/characters/jade/dick.svg"
  42081. }
  42082. },
  42083. },
  42084. [
  42085. {
  42086. name: "Micro",
  42087. height: math.unit(22, "cm")
  42088. },
  42089. {
  42090. name: "Normal",
  42091. height: math.unit(1.7, "m"),
  42092. default: true
  42093. },
  42094. {
  42095. name: "Macro",
  42096. height: math.unit(152, "m")
  42097. },
  42098. ]
  42099. ))
  42100. characterMakers.push(() => makeCharacter(
  42101. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42102. {
  42103. front: {
  42104. height: math.unit(100, "miles"),
  42105. weight: math.unit(20000, "tons"),
  42106. name: "Front",
  42107. image: {
  42108. source: "./media/characters/cookie/front.svg",
  42109. extra: 1125/1070,
  42110. bottom: 30/1155
  42111. }
  42112. },
  42113. },
  42114. [
  42115. {
  42116. name: "Big",
  42117. height: math.unit(50, "feet")
  42118. },
  42119. {
  42120. name: "Macro",
  42121. height: math.unit(100, "miles"),
  42122. default: true
  42123. },
  42124. {
  42125. name: "Megamacro",
  42126. height: math.unit(90000, "miles")
  42127. },
  42128. ]
  42129. ))
  42130. characterMakers.push(() => makeCharacter(
  42131. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42132. {
  42133. front: {
  42134. height: math.unit(6, "feet"),
  42135. weight: math.unit(145, "lb"),
  42136. name: "Front",
  42137. image: {
  42138. source: "./media/characters/farzian/front.svg",
  42139. extra: 1902/1693,
  42140. bottom: 108/2010
  42141. }
  42142. },
  42143. },
  42144. [
  42145. {
  42146. name: "Macro",
  42147. height: math.unit(500, "feet"),
  42148. default: true
  42149. },
  42150. ]
  42151. ))
  42152. characterMakers.push(() => makeCharacter(
  42153. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42154. {
  42155. front: {
  42156. height: math.unit(3 + 6/12, "feet"),
  42157. weight: math.unit(50, "lb"),
  42158. name: "Front",
  42159. image: {
  42160. source: "./media/characters/kimberly-tilson/front.svg",
  42161. extra: 1400/1322,
  42162. bottom: 36/1436
  42163. }
  42164. },
  42165. back: {
  42166. height: math.unit(3 + 6/12, "feet"),
  42167. weight: math.unit(50, "lb"),
  42168. name: "Back",
  42169. image: {
  42170. source: "./media/characters/kimberly-tilson/back.svg",
  42171. extra: 1370/1307,
  42172. bottom: 20/1390
  42173. }
  42174. },
  42175. },
  42176. [
  42177. {
  42178. name: "Normal",
  42179. height: math.unit(3 + 6/12, "feet"),
  42180. default: true
  42181. },
  42182. ]
  42183. ))
  42184. characterMakers.push(() => makeCharacter(
  42185. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42186. {
  42187. front: {
  42188. height: math.unit(1148, "feet"),
  42189. weight: math.unit(34057, "lb"),
  42190. name: "Front",
  42191. image: {
  42192. source: "./media/characters/harthos/front.svg",
  42193. extra: 1391/1339,
  42194. bottom: 13/1404
  42195. }
  42196. },
  42197. },
  42198. [
  42199. {
  42200. name: "Macro",
  42201. height: math.unit(1148, "feet"),
  42202. default: true
  42203. },
  42204. ]
  42205. ))
  42206. characterMakers.push(() => makeCharacter(
  42207. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42208. {
  42209. front: {
  42210. height: math.unit(15, "feet"),
  42211. name: "Front",
  42212. image: {
  42213. source: "./media/characters/hypatia/front.svg",
  42214. extra: 1653/1591,
  42215. bottom: 79/1732
  42216. }
  42217. },
  42218. },
  42219. [
  42220. {
  42221. name: "Normal",
  42222. height: math.unit(15, "feet")
  42223. },
  42224. {
  42225. name: "Small",
  42226. height: math.unit(300, "feet")
  42227. },
  42228. {
  42229. name: "Macro",
  42230. height: math.unit(2500, "feet"),
  42231. default: true
  42232. },
  42233. {
  42234. name: "Mega Macro",
  42235. height: math.unit(1500, "miles")
  42236. },
  42237. {
  42238. name: "Giga Macro",
  42239. height: math.unit(1.5e6, "miles")
  42240. },
  42241. ]
  42242. ))
  42243. characterMakers.push(() => makeCharacter(
  42244. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42245. {
  42246. front: {
  42247. height: math.unit(6, "feet"),
  42248. weight: math.unit(200, "lb"),
  42249. name: "Front",
  42250. image: {
  42251. source: "./media/characters/wulver/front.svg",
  42252. extra: 1724/1632,
  42253. bottom: 130/1854
  42254. }
  42255. },
  42256. frontNsfw: {
  42257. height: math.unit(6, "feet"),
  42258. weight: math.unit(200, "lb"),
  42259. name: "Front (NSFW)",
  42260. image: {
  42261. source: "./media/characters/wulver/front-nsfw.svg",
  42262. extra: 1724/1632,
  42263. bottom: 130/1854
  42264. }
  42265. },
  42266. },
  42267. [
  42268. {
  42269. name: "Human-Sized",
  42270. height: math.unit(6, "feet")
  42271. },
  42272. {
  42273. name: "Normal",
  42274. height: math.unit(4, "meters"),
  42275. default: true
  42276. },
  42277. {
  42278. name: "Large",
  42279. height: math.unit(6, "m")
  42280. },
  42281. ]
  42282. ))
  42283. characterMakers.push(() => makeCharacter(
  42284. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42285. {
  42286. front: {
  42287. height: math.unit(7, "feet"),
  42288. name: "Front",
  42289. image: {
  42290. source: "./media/characters/maru/front.svg",
  42291. extra: 1595/1570,
  42292. bottom: 0/1595
  42293. }
  42294. },
  42295. },
  42296. [
  42297. {
  42298. name: "Normal",
  42299. height: math.unit(7, "feet"),
  42300. default: true
  42301. },
  42302. {
  42303. name: "Macro",
  42304. height: math.unit(700, "feet")
  42305. },
  42306. {
  42307. name: "Mega Macro",
  42308. height: math.unit(25, "miles")
  42309. },
  42310. ]
  42311. ))
  42312. characterMakers.push(() => makeCharacter(
  42313. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42314. {
  42315. front: {
  42316. height: math.unit(6, "feet"),
  42317. weight: math.unit(170, "lb"),
  42318. name: "Front",
  42319. image: {
  42320. source: "./media/characters/xenon/front.svg",
  42321. extra: 1376/1305,
  42322. bottom: 56/1432
  42323. }
  42324. },
  42325. back: {
  42326. height: math.unit(6, "feet"),
  42327. weight: math.unit(170, "lb"),
  42328. name: "Back",
  42329. image: {
  42330. source: "./media/characters/xenon/back.svg",
  42331. extra: 1328/1259,
  42332. bottom: 95/1423
  42333. }
  42334. },
  42335. maw: {
  42336. height: math.unit(0.52, "feet"),
  42337. name: "Maw",
  42338. image: {
  42339. source: "./media/characters/xenon/maw.svg"
  42340. }
  42341. },
  42342. handLeft: {
  42343. height: math.unit(0.82 * 169 / 153, "feet"),
  42344. name: "Hand (Left)",
  42345. image: {
  42346. source: "./media/characters/xenon/hand-left.svg"
  42347. }
  42348. },
  42349. handRight: {
  42350. height: math.unit(0.82, "feet"),
  42351. name: "Hand (Right)",
  42352. image: {
  42353. source: "./media/characters/xenon/hand-right.svg"
  42354. }
  42355. },
  42356. footLeft: {
  42357. height: math.unit(1.13, "feet"),
  42358. name: "Foot (Left)",
  42359. image: {
  42360. source: "./media/characters/xenon/foot-left.svg"
  42361. }
  42362. },
  42363. footRight: {
  42364. height: math.unit(1.13 * 194 / 196, "feet"),
  42365. name: "Foot (Right)",
  42366. image: {
  42367. source: "./media/characters/xenon/foot-right.svg"
  42368. }
  42369. },
  42370. },
  42371. [
  42372. {
  42373. name: "Micro",
  42374. height: math.unit(0.8, "inches")
  42375. },
  42376. {
  42377. name: "Normal",
  42378. height: math.unit(6, "feet")
  42379. },
  42380. {
  42381. name: "Macro",
  42382. height: math.unit(50, "feet"),
  42383. default: true
  42384. },
  42385. {
  42386. name: "Macro+",
  42387. height: math.unit(250, "feet")
  42388. },
  42389. {
  42390. name: "Megamacro",
  42391. height: math.unit(1500, "feet")
  42392. },
  42393. ]
  42394. ))
  42395. characterMakers.push(() => makeCharacter(
  42396. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42397. {
  42398. front: {
  42399. height: math.unit(7 + 5/12, "feet"),
  42400. name: "Front",
  42401. image: {
  42402. source: "./media/characters/zane/front.svg",
  42403. extra: 1260/1203,
  42404. bottom: 94/1354
  42405. }
  42406. },
  42407. back: {
  42408. height: math.unit(5.05, "feet"),
  42409. name: "Back",
  42410. image: {
  42411. source: "./media/characters/zane/back.svg",
  42412. extra: 893/829,
  42413. bottom: 30/923
  42414. }
  42415. },
  42416. werewolf: {
  42417. height: math.unit(11, "feet"),
  42418. name: "Werewolf",
  42419. image: {
  42420. source: "./media/characters/zane/werewolf.svg",
  42421. extra: 1383/1323,
  42422. bottom: 89/1472
  42423. }
  42424. },
  42425. foot: {
  42426. height: math.unit(1.46, "feet"),
  42427. name: "Foot",
  42428. image: {
  42429. source: "./media/characters/zane/foot.svg"
  42430. }
  42431. },
  42432. footFront: {
  42433. height: math.unit(0.784, "feet"),
  42434. name: "Foot (Front)",
  42435. image: {
  42436. source: "./media/characters/zane/foot-front.svg"
  42437. }
  42438. },
  42439. dick: {
  42440. height: math.unit(1.95, "feet"),
  42441. name: "Dick",
  42442. image: {
  42443. source: "./media/characters/zane/dick.svg"
  42444. }
  42445. },
  42446. dickWerewolf: {
  42447. height: math.unit(3.77, "feet"),
  42448. name: "Dick (Werewolf)",
  42449. image: {
  42450. source: "./media/characters/zane/dick.svg"
  42451. }
  42452. },
  42453. },
  42454. [
  42455. {
  42456. name: "Normal",
  42457. height: math.unit(7 + 5/12, "feet"),
  42458. default: true
  42459. },
  42460. ]
  42461. ))
  42462. characterMakers.push(() => makeCharacter(
  42463. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42464. {
  42465. front: {
  42466. height: math.unit(6 + 2/12, "feet"),
  42467. weight: math.unit(284, "lb"),
  42468. name: "Front",
  42469. image: {
  42470. source: "./media/characters/benni-desparque/front.svg",
  42471. extra: 1353/1126,
  42472. bottom: 69/1422
  42473. }
  42474. },
  42475. },
  42476. [
  42477. {
  42478. name: "Civilian",
  42479. height: math.unit(6 + 2/12, "feet")
  42480. },
  42481. {
  42482. name: "Normal",
  42483. height: math.unit(98, "feet"),
  42484. default: true
  42485. },
  42486. {
  42487. name: "Kaiju Fighter",
  42488. height: math.unit(268, "feet")
  42489. },
  42490. ]
  42491. ))
  42492. characterMakers.push(() => makeCharacter(
  42493. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42494. {
  42495. front: {
  42496. height: math.unit(5, "feet"),
  42497. weight: math.unit(105, "lb"),
  42498. name: "Front",
  42499. image: {
  42500. source: "./media/characters/maxine/front.svg",
  42501. extra: 1386/1250,
  42502. bottom: 71/1457
  42503. }
  42504. },
  42505. },
  42506. [
  42507. {
  42508. name: "Normal",
  42509. height: math.unit(5, "feet"),
  42510. default: true
  42511. },
  42512. ]
  42513. ))
  42514. characterMakers.push(() => makeCharacter(
  42515. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42516. {
  42517. front: {
  42518. height: math.unit(11 + 7/12, "feet"),
  42519. weight: math.unit(9576, "lb"),
  42520. name: "Front",
  42521. image: {
  42522. source: "./media/characters/scaly/front.svg",
  42523. extra: 888/867,
  42524. bottom: 36/924
  42525. }
  42526. },
  42527. },
  42528. [
  42529. {
  42530. name: "Normal",
  42531. height: math.unit(11 + 7/12, "feet"),
  42532. default: true
  42533. },
  42534. ]
  42535. ))
  42536. characterMakers.push(() => makeCharacter(
  42537. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42538. {
  42539. front: {
  42540. height: math.unit(6 + 3/12, "feet"),
  42541. name: "Front",
  42542. image: {
  42543. source: "./media/characters/saelria/front.svg",
  42544. extra: 1243/1138,
  42545. bottom: 46/1289
  42546. }
  42547. },
  42548. },
  42549. [
  42550. {
  42551. name: "Micro",
  42552. height: math.unit(6, "inches"),
  42553. },
  42554. {
  42555. name: "Normal",
  42556. height: math.unit(6 + 3/12, "feet"),
  42557. default: true
  42558. },
  42559. {
  42560. name: "Macro",
  42561. height: math.unit(25, "feet")
  42562. },
  42563. ]
  42564. ))
  42565. characterMakers.push(() => makeCharacter(
  42566. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42567. {
  42568. front: {
  42569. height: math.unit(80, "meters"),
  42570. weight: math.unit(7000, "tonnes"),
  42571. name: "Front",
  42572. image: {
  42573. source: "./media/characters/tef/front.svg",
  42574. extra: 2036/1991,
  42575. bottom: 54/2090
  42576. }
  42577. },
  42578. back: {
  42579. height: math.unit(80, "meters"),
  42580. weight: math.unit(7000, "tonnes"),
  42581. name: "Back",
  42582. image: {
  42583. source: "./media/characters/tef/back.svg",
  42584. extra: 2036/1991,
  42585. bottom: 54/2090
  42586. }
  42587. },
  42588. },
  42589. [
  42590. {
  42591. name: "Macro",
  42592. height: math.unit(80, "meters"),
  42593. default: true
  42594. },
  42595. ]
  42596. ))
  42597. characterMakers.push(() => makeCharacter(
  42598. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42599. {
  42600. front: {
  42601. height: math.unit(13, "feet"),
  42602. weight: math.unit(6, "tons"),
  42603. name: "Front",
  42604. image: {
  42605. source: "./media/characters/rover/front.svg",
  42606. extra: 1233/1156,
  42607. bottom: 50/1283
  42608. }
  42609. },
  42610. back: {
  42611. height: math.unit(13, "feet"),
  42612. weight: math.unit(6, "tons"),
  42613. name: "Back",
  42614. image: {
  42615. source: "./media/characters/rover/back.svg",
  42616. extra: 1327/1258,
  42617. bottom: 39/1366
  42618. }
  42619. },
  42620. },
  42621. [
  42622. {
  42623. name: "Normal",
  42624. height: math.unit(13, "feet"),
  42625. default: true
  42626. },
  42627. {
  42628. name: "Macro",
  42629. height: math.unit(1300, "feet")
  42630. },
  42631. {
  42632. name: "Megamacro",
  42633. height: math.unit(1300, "miles")
  42634. },
  42635. {
  42636. name: "Gigamacro",
  42637. height: math.unit(1300000, "miles")
  42638. },
  42639. ]
  42640. ))
  42641. characterMakers.push(() => makeCharacter(
  42642. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42643. {
  42644. front: {
  42645. height: math.unit(6, "feet"),
  42646. weight: math.unit(150, "lb"),
  42647. name: "Front",
  42648. image: {
  42649. source: "./media/characters/ariz/front.svg",
  42650. extra: 1401/1346,
  42651. bottom: 5/1406
  42652. }
  42653. },
  42654. },
  42655. [
  42656. {
  42657. name: "Normal",
  42658. height: math.unit(10, "feet"),
  42659. default: true
  42660. },
  42661. ]
  42662. ))
  42663. characterMakers.push(() => makeCharacter(
  42664. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42665. {
  42666. front: {
  42667. height: math.unit(6, "feet"),
  42668. weight: math.unit(140, "lb"),
  42669. name: "Front",
  42670. image: {
  42671. source: "./media/characters/sigrun/front.svg",
  42672. extra: 1418/1359,
  42673. bottom: 27/1445
  42674. }
  42675. },
  42676. },
  42677. [
  42678. {
  42679. name: "Macro",
  42680. height: math.unit(35, "feet"),
  42681. default: true
  42682. },
  42683. ]
  42684. ))
  42685. characterMakers.push(() => makeCharacter(
  42686. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42687. {
  42688. front: {
  42689. height: math.unit(6, "feet"),
  42690. weight: math.unit(150, "lb"),
  42691. name: "Front",
  42692. image: {
  42693. source: "./media/characters/numin/front.svg",
  42694. extra: 1433/1388,
  42695. bottom: 12/1445
  42696. }
  42697. },
  42698. },
  42699. [
  42700. {
  42701. name: "Macro",
  42702. height: math.unit(21.5, "km"),
  42703. default: true
  42704. },
  42705. ]
  42706. ))
  42707. characterMakers.push(() => makeCharacter(
  42708. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42709. {
  42710. front: {
  42711. height: math.unit(6, "feet"),
  42712. weight: math.unit(463, "lb"),
  42713. name: "Front",
  42714. image: {
  42715. source: "./media/characters/melwa/front.svg",
  42716. extra: 1307/1248,
  42717. bottom: 93/1400
  42718. }
  42719. },
  42720. },
  42721. [
  42722. {
  42723. name: "Macro",
  42724. height: math.unit(50, "meters"),
  42725. default: true
  42726. },
  42727. ]
  42728. ))
  42729. characterMakers.push(() => makeCharacter(
  42730. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42731. {
  42732. front: {
  42733. height: math.unit(325, "feet"),
  42734. name: "Front",
  42735. image: {
  42736. source: "./media/characters/zorkaiju/front.svg",
  42737. extra: 1955/1814,
  42738. bottom: 40/1995
  42739. }
  42740. },
  42741. frontExtended: {
  42742. height: math.unit(325, "feet"),
  42743. name: "Front (Extended)",
  42744. image: {
  42745. source: "./media/characters/zorkaiju/front-extended.svg",
  42746. extra: 1955/1814,
  42747. bottom: 40/1995
  42748. }
  42749. },
  42750. side: {
  42751. height: math.unit(325, "feet"),
  42752. name: "Side",
  42753. image: {
  42754. source: "./media/characters/zorkaiju/side.svg",
  42755. extra: 1495/1396,
  42756. bottom: 17/1512
  42757. }
  42758. },
  42759. sideExtended: {
  42760. height: math.unit(325, "feet"),
  42761. name: "Side (Extended)",
  42762. image: {
  42763. source: "./media/characters/zorkaiju/side-extended.svg",
  42764. extra: 1495/1396,
  42765. bottom: 17/1512
  42766. }
  42767. },
  42768. back: {
  42769. height: math.unit(325, "feet"),
  42770. name: "Back",
  42771. image: {
  42772. source: "./media/characters/zorkaiju/back.svg",
  42773. extra: 1959/1821,
  42774. bottom: 31/1990
  42775. }
  42776. },
  42777. backExtended: {
  42778. height: math.unit(325, "feet"),
  42779. name: "Back (Extended)",
  42780. image: {
  42781. source: "./media/characters/zorkaiju/back-extended.svg",
  42782. extra: 1959/1821,
  42783. bottom: 31/1990
  42784. }
  42785. },
  42786. hand: {
  42787. height: math.unit(58.4, "feet"),
  42788. name: "Hand",
  42789. image: {
  42790. source: "./media/characters/zorkaiju/hand.svg"
  42791. }
  42792. },
  42793. handExtended: {
  42794. height: math.unit(61.4, "feet"),
  42795. name: "Hand (Extended)",
  42796. image: {
  42797. source: "./media/characters/zorkaiju/hand-extended.svg"
  42798. }
  42799. },
  42800. foot: {
  42801. height: math.unit(95, "feet"),
  42802. name: "Foot",
  42803. image: {
  42804. source: "./media/characters/zorkaiju/foot.svg"
  42805. }
  42806. },
  42807. leftArm: {
  42808. height: math.unit(59, "feet"),
  42809. name: "Left Arm",
  42810. image: {
  42811. source: "./media/characters/zorkaiju/left-arm.svg"
  42812. }
  42813. },
  42814. rightArm: {
  42815. height: math.unit(59, "feet"),
  42816. name: "Right Arm",
  42817. image: {
  42818. source: "./media/characters/zorkaiju/right-arm.svg"
  42819. }
  42820. },
  42821. leftArmExtended: {
  42822. height: math.unit(59 * 1.033546, "feet"),
  42823. name: "Left Arm (Extended)",
  42824. image: {
  42825. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42826. }
  42827. },
  42828. rightArmExtended: {
  42829. height: math.unit(59 * 1.0496, "feet"),
  42830. name: "Right Arm (Extended)",
  42831. image: {
  42832. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42833. }
  42834. },
  42835. tail: {
  42836. height: math.unit(104, "feet"),
  42837. name: "Tail",
  42838. image: {
  42839. source: "./media/characters/zorkaiju/tail.svg"
  42840. }
  42841. },
  42842. tailExtended: {
  42843. height: math.unit(104, "feet"),
  42844. name: "Tail (Extended)",
  42845. image: {
  42846. source: "./media/characters/zorkaiju/tail-extended.svg"
  42847. }
  42848. },
  42849. tailBottom: {
  42850. height: math.unit(104, "feet"),
  42851. name: "Tail Bottom",
  42852. image: {
  42853. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42854. }
  42855. },
  42856. crystal: {
  42857. height: math.unit(27.54, "feet"),
  42858. name: "Crystal",
  42859. image: {
  42860. source: "./media/characters/zorkaiju/crystal.svg"
  42861. }
  42862. },
  42863. },
  42864. [
  42865. {
  42866. name: "Kaiju",
  42867. height: math.unit(325, "feet"),
  42868. default: true
  42869. },
  42870. ]
  42871. ))
  42872. characterMakers.push(() => makeCharacter(
  42873. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42874. {
  42875. front: {
  42876. height: math.unit(6 + 1/12, "feet"),
  42877. weight: math.unit(115, "lb"),
  42878. name: "Front",
  42879. image: {
  42880. source: "./media/characters/bailey-belfry/front.svg",
  42881. extra: 1240/1121,
  42882. bottom: 101/1341
  42883. }
  42884. },
  42885. },
  42886. [
  42887. {
  42888. name: "Normal",
  42889. height: math.unit(6 + 1/12, "feet"),
  42890. default: true
  42891. },
  42892. ]
  42893. ))
  42894. characterMakers.push(() => makeCharacter(
  42895. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42896. {
  42897. side: {
  42898. height: math.unit(4, "meters"),
  42899. weight: math.unit(250, "kg"),
  42900. name: "Side",
  42901. image: {
  42902. source: "./media/characters/blacky/side.svg",
  42903. extra: 1027/919,
  42904. bottom: 43/1070
  42905. }
  42906. },
  42907. maw: {
  42908. height: math.unit(1, "meters"),
  42909. name: "Maw",
  42910. image: {
  42911. source: "./media/characters/blacky/maw.svg"
  42912. }
  42913. },
  42914. paw: {
  42915. height: math.unit(1, "meters"),
  42916. name: "Paw",
  42917. image: {
  42918. source: "./media/characters/blacky/paw.svg"
  42919. }
  42920. },
  42921. },
  42922. [
  42923. {
  42924. name: "Normal",
  42925. height: math.unit(4, "meters"),
  42926. default: true
  42927. },
  42928. ]
  42929. ))
  42930. characterMakers.push(() => makeCharacter(
  42931. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42932. {
  42933. front: {
  42934. height: math.unit(170, "cm"),
  42935. weight: math.unit(66, "kg"),
  42936. name: "Front",
  42937. image: {
  42938. source: "./media/characters/thux-ei/front.svg",
  42939. extra: 1109/1011,
  42940. bottom: 8/1117
  42941. }
  42942. },
  42943. },
  42944. [
  42945. {
  42946. name: "Normal",
  42947. height: math.unit(170, "cm"),
  42948. default: true
  42949. },
  42950. ]
  42951. ))
  42952. characterMakers.push(() => makeCharacter(
  42953. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42954. {
  42955. front: {
  42956. height: math.unit(5, "feet"),
  42957. weight: math.unit(120, "lb"),
  42958. name: "Front",
  42959. image: {
  42960. source: "./media/characters/roxanne-voltaire/front.svg",
  42961. extra: 1901/1779,
  42962. bottom: 53/1954
  42963. }
  42964. },
  42965. },
  42966. [
  42967. {
  42968. name: "Normal",
  42969. height: math.unit(5, "feet"),
  42970. default: true
  42971. },
  42972. {
  42973. name: "Giant",
  42974. height: math.unit(50, "feet")
  42975. },
  42976. {
  42977. name: "Titan",
  42978. height: math.unit(500, "feet")
  42979. },
  42980. {
  42981. name: "Macro",
  42982. height: math.unit(5000, "feet")
  42983. },
  42984. {
  42985. name: "Megamacro",
  42986. height: math.unit(50000, "feet")
  42987. },
  42988. {
  42989. name: "Gigamacro",
  42990. height: math.unit(500000, "feet")
  42991. },
  42992. {
  42993. name: "Teramacro",
  42994. height: math.unit(5e6, "feet")
  42995. },
  42996. ]
  42997. ))
  42998. characterMakers.push(() => makeCharacter(
  42999. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43000. {
  43001. front: {
  43002. height: math.unit(6 + 2/12, "feet"),
  43003. name: "Front",
  43004. image: {
  43005. source: "./media/characters/squeaks/front.svg",
  43006. extra: 1823/1768,
  43007. bottom: 138/1961
  43008. }
  43009. },
  43010. },
  43011. [
  43012. {
  43013. name: "Micro",
  43014. height: math.unit(0.5, "inches")
  43015. },
  43016. {
  43017. name: "Normal",
  43018. height: math.unit(6 + 2/12, "feet"),
  43019. default: true
  43020. },
  43021. {
  43022. name: "Macro",
  43023. height: math.unit(600, "feet")
  43024. },
  43025. ]
  43026. ))
  43027. characterMakers.push(() => makeCharacter(
  43028. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43029. {
  43030. front: {
  43031. height: math.unit(1.72, "meters"),
  43032. name: "Front",
  43033. image: {
  43034. source: "./media/characters/archinger/front.svg",
  43035. extra: 1861/1675,
  43036. bottom: 125/1986
  43037. }
  43038. },
  43039. back: {
  43040. height: math.unit(1.72, "meters"),
  43041. name: "Back",
  43042. image: {
  43043. source: "./media/characters/archinger/back.svg",
  43044. extra: 1844/1701,
  43045. bottom: 104/1948
  43046. }
  43047. },
  43048. cock: {
  43049. height: math.unit(0.59, "feet"),
  43050. name: "Cock",
  43051. image: {
  43052. source: "./media/characters/archinger/cock.svg"
  43053. }
  43054. },
  43055. },
  43056. [
  43057. {
  43058. name: "Normal",
  43059. height: math.unit(1.72, "meters"),
  43060. default: true
  43061. },
  43062. {
  43063. name: "Macro",
  43064. height: math.unit(84, "meters")
  43065. },
  43066. {
  43067. name: "Macro+",
  43068. height: math.unit(112, "meters")
  43069. },
  43070. {
  43071. name: "Macro++",
  43072. height: math.unit(960, "meters")
  43073. },
  43074. {
  43075. name: "Macro+++",
  43076. height: math.unit(4, "km")
  43077. },
  43078. {
  43079. name: "Macro++++",
  43080. height: math.unit(48, "km")
  43081. },
  43082. {
  43083. name: "Macro+++++",
  43084. height: math.unit(4500, "km")
  43085. },
  43086. ]
  43087. ))
  43088. characterMakers.push(() => makeCharacter(
  43089. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43090. {
  43091. front: {
  43092. height: math.unit(5 + 5/12, "feet"),
  43093. name: "Front",
  43094. image: {
  43095. source: "./media/characters/alsnapz/front.svg",
  43096. extra: 1157/1065,
  43097. bottom: 42/1199
  43098. }
  43099. },
  43100. },
  43101. [
  43102. {
  43103. name: "Normal",
  43104. height: math.unit(5 + 5/12, "feet"),
  43105. default: true
  43106. },
  43107. ]
  43108. ))
  43109. characterMakers.push(() => makeCharacter(
  43110. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43111. {
  43112. side: {
  43113. height: math.unit(3.2, "earths"),
  43114. name: "Side",
  43115. image: {
  43116. source: "./media/characters/mag/side.svg",
  43117. extra: 1331/1008,
  43118. bottom: 52/1383
  43119. }
  43120. },
  43121. wing: {
  43122. height: math.unit(1.94, "earths"),
  43123. name: "Wing",
  43124. image: {
  43125. source: "./media/characters/mag/wing.svg"
  43126. }
  43127. },
  43128. dick: {
  43129. height: math.unit(1.8, "earths"),
  43130. name: "Dick",
  43131. image: {
  43132. source: "./media/characters/mag/dick.svg"
  43133. }
  43134. },
  43135. ass: {
  43136. height: math.unit(1.33, "earths"),
  43137. name: "Ass",
  43138. image: {
  43139. source: "./media/characters/mag/ass.svg"
  43140. }
  43141. },
  43142. head: {
  43143. height: math.unit(1.1, "earths"),
  43144. name: "Head",
  43145. image: {
  43146. source: "./media/characters/mag/head.svg"
  43147. }
  43148. },
  43149. maw: {
  43150. height: math.unit(1.62, "earths"),
  43151. name: "Maw",
  43152. image: {
  43153. source: "./media/characters/mag/maw.svg"
  43154. }
  43155. },
  43156. },
  43157. [
  43158. {
  43159. name: "Small",
  43160. height: math.unit(162, "feet")
  43161. },
  43162. {
  43163. name: "Normal",
  43164. height: math.unit(3.2, "earths"),
  43165. default: true
  43166. },
  43167. ]
  43168. ))
  43169. characterMakers.push(() => makeCharacter(
  43170. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43171. {
  43172. front: {
  43173. height: math.unit(512, "feet"),
  43174. weight: math.unit(63509, "tonnes"),
  43175. name: "Front",
  43176. image: {
  43177. source: "./media/characters/vorrel-harroc/front.svg",
  43178. extra: 1075/1063,
  43179. bottom: 62/1137
  43180. }
  43181. },
  43182. },
  43183. [
  43184. {
  43185. name: "Normal",
  43186. height: math.unit(10, "feet")
  43187. },
  43188. {
  43189. name: "Macro",
  43190. height: math.unit(512, "feet"),
  43191. default: true
  43192. },
  43193. {
  43194. name: "Megamacro",
  43195. height: math.unit(256, "miles")
  43196. },
  43197. {
  43198. name: "Gigamacro",
  43199. height: math.unit(4096, "miles")
  43200. },
  43201. ]
  43202. ))
  43203. characterMakers.push(() => makeCharacter(
  43204. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43205. {
  43206. side: {
  43207. height: math.unit(50, "feet"),
  43208. name: "Side",
  43209. image: {
  43210. source: "./media/characters/froimar/side.svg",
  43211. extra: 855/638,
  43212. bottom: 99/954
  43213. }
  43214. },
  43215. },
  43216. [
  43217. {
  43218. name: "Macro",
  43219. height: math.unit(50, "feet"),
  43220. default: true
  43221. },
  43222. ]
  43223. ))
  43224. characterMakers.push(() => makeCharacter(
  43225. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43226. {
  43227. front: {
  43228. height: math.unit(210, "miles"),
  43229. name: "Front",
  43230. image: {
  43231. source: "./media/characters/timothy/front.svg",
  43232. extra: 1007/943,
  43233. bottom: 62/1069
  43234. }
  43235. },
  43236. frontSkirt: {
  43237. height: math.unit(210, "miles"),
  43238. name: "Front (Skirt)",
  43239. image: {
  43240. source: "./media/characters/timothy/front-skirt.svg",
  43241. extra: 1007/943,
  43242. bottom: 62/1069
  43243. }
  43244. },
  43245. frontCoat: {
  43246. height: math.unit(210, "miles"),
  43247. name: "Front (Coat)",
  43248. image: {
  43249. source: "./media/characters/timothy/front-coat.svg",
  43250. extra: 1007/943,
  43251. bottom: 62/1069
  43252. }
  43253. },
  43254. },
  43255. [
  43256. {
  43257. name: "Macro",
  43258. height: math.unit(210, "miles"),
  43259. default: true
  43260. },
  43261. {
  43262. name: "Megamacro",
  43263. height: math.unit(210000, "miles")
  43264. },
  43265. ]
  43266. ))
  43267. characterMakers.push(() => makeCharacter(
  43268. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43269. {
  43270. front: {
  43271. height: math.unit(188, "feet"),
  43272. name: "Front",
  43273. image: {
  43274. source: "./media/characters/pyotr/front.svg",
  43275. extra: 1912/1826,
  43276. bottom: 18/1930
  43277. }
  43278. },
  43279. },
  43280. [
  43281. {
  43282. name: "Macro",
  43283. height: math.unit(188, "feet"),
  43284. default: true
  43285. },
  43286. {
  43287. name: "Megamacro",
  43288. height: math.unit(8, "miles")
  43289. },
  43290. ]
  43291. ))
  43292. characterMakers.push(() => makeCharacter(
  43293. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43294. {
  43295. side: {
  43296. height: math.unit(10, "feet"),
  43297. weight: math.unit(4500, "lb"),
  43298. name: "Side",
  43299. image: {
  43300. source: "./media/characters/ackart/side.svg",
  43301. extra: 1776/1668,
  43302. bottom: 116/1892
  43303. }
  43304. },
  43305. },
  43306. [
  43307. {
  43308. name: "Normal",
  43309. height: math.unit(10, "feet"),
  43310. default: true
  43311. },
  43312. ]
  43313. ))
  43314. characterMakers.push(() => makeCharacter(
  43315. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43316. {
  43317. side: {
  43318. height: math.unit(21, "feet"),
  43319. name: "Side",
  43320. image: {
  43321. source: "./media/characters/nolow/side.svg",
  43322. extra: 1484/1434,
  43323. bottom: 85/1569
  43324. }
  43325. },
  43326. sideErect: {
  43327. height: math.unit(21, "feet"),
  43328. name: "Side-erect",
  43329. image: {
  43330. source: "./media/characters/nolow/side-erect.svg",
  43331. extra: 1484/1434,
  43332. bottom: 85/1569
  43333. }
  43334. },
  43335. },
  43336. [
  43337. {
  43338. name: "Regular",
  43339. height: math.unit(12, "feet")
  43340. },
  43341. {
  43342. name: "Big Chee",
  43343. height: math.unit(21, "feet"),
  43344. default: true
  43345. },
  43346. ]
  43347. ))
  43348. characterMakers.push(() => makeCharacter(
  43349. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43350. {
  43351. front: {
  43352. height: math.unit(7, "feet"),
  43353. weight: math.unit(250, "lb"),
  43354. name: "Front",
  43355. image: {
  43356. source: "./media/characters/nines/front.svg",
  43357. extra: 1741/1607,
  43358. bottom: 41/1782
  43359. }
  43360. },
  43361. side: {
  43362. height: math.unit(7, "feet"),
  43363. weight: math.unit(250, "lb"),
  43364. name: "Side",
  43365. image: {
  43366. source: "./media/characters/nines/side.svg",
  43367. extra: 1854/1735,
  43368. bottom: 93/1947
  43369. }
  43370. },
  43371. back: {
  43372. height: math.unit(7, "feet"),
  43373. weight: math.unit(250, "lb"),
  43374. name: "Back",
  43375. image: {
  43376. source: "./media/characters/nines/back.svg",
  43377. extra: 1748/1615,
  43378. bottom: 20/1768
  43379. }
  43380. },
  43381. },
  43382. [
  43383. {
  43384. name: "Megamacro",
  43385. height: math.unit(99, "km"),
  43386. default: true
  43387. },
  43388. ]
  43389. ))
  43390. characterMakers.push(() => makeCharacter(
  43391. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43392. {
  43393. front: {
  43394. height: math.unit(5 + 10/12, "feet"),
  43395. weight: math.unit(210, "lb"),
  43396. name: "Front",
  43397. image: {
  43398. source: "./media/characters/zenith/front.svg",
  43399. extra: 1531/1452,
  43400. bottom: 198/1729
  43401. }
  43402. },
  43403. back: {
  43404. height: math.unit(5 + 10/12, "feet"),
  43405. weight: math.unit(210, "lb"),
  43406. name: "Back",
  43407. image: {
  43408. source: "./media/characters/zenith/back.svg",
  43409. extra: 1571/1487,
  43410. bottom: 75/1646
  43411. }
  43412. },
  43413. },
  43414. [
  43415. {
  43416. name: "Normal",
  43417. height: math.unit(5 + 10/12, "feet"),
  43418. default: true
  43419. }
  43420. ]
  43421. ))
  43422. characterMakers.push(() => makeCharacter(
  43423. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43424. {
  43425. front: {
  43426. height: math.unit(4, "feet"),
  43427. weight: math.unit(60, "lb"),
  43428. name: "Front",
  43429. image: {
  43430. source: "./media/characters/jasper/front.svg",
  43431. extra: 1450/1379,
  43432. bottom: 19/1469
  43433. }
  43434. },
  43435. },
  43436. [
  43437. {
  43438. name: "Normal",
  43439. height: math.unit(4, "feet"),
  43440. default: true
  43441. },
  43442. ]
  43443. ))
  43444. characterMakers.push(() => makeCharacter(
  43445. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43446. {
  43447. front: {
  43448. height: math.unit(6 + 5/12, "feet"),
  43449. weight: math.unit(290, "lb"),
  43450. name: "Front",
  43451. image: {
  43452. source: "./media/characters/tiberius-thyben/front.svg",
  43453. extra: 757/739,
  43454. bottom: 39/796
  43455. }
  43456. },
  43457. },
  43458. [
  43459. {
  43460. name: "Micro",
  43461. height: math.unit(1.5, "inches")
  43462. },
  43463. {
  43464. name: "Normal",
  43465. height: math.unit(6 + 5/12, "feet"),
  43466. default: true
  43467. },
  43468. {
  43469. name: "Macro",
  43470. height: math.unit(300, "feet")
  43471. },
  43472. ]
  43473. ))
  43474. characterMakers.push(() => makeCharacter(
  43475. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43476. {
  43477. front: {
  43478. height: math.unit(5 + 6/12, "feet"),
  43479. weight: math.unit(60, "kg"),
  43480. name: "Front",
  43481. image: {
  43482. source: "./media/characters/sabre/front.svg",
  43483. extra: 738/671,
  43484. bottom: 27/765
  43485. }
  43486. },
  43487. },
  43488. [
  43489. {
  43490. name: "Teeny",
  43491. height: math.unit(2, "inches")
  43492. },
  43493. {
  43494. name: "Smol",
  43495. height: math.unit(8, "inches")
  43496. },
  43497. {
  43498. name: "Normal",
  43499. height: math.unit(5 + 6/12, "feet"),
  43500. default: true
  43501. },
  43502. {
  43503. name: "Mini-Macro",
  43504. height: math.unit(15, "feet")
  43505. },
  43506. {
  43507. name: "Macro",
  43508. height: math.unit(50, "feet")
  43509. },
  43510. ]
  43511. ))
  43512. characterMakers.push(() => makeCharacter(
  43513. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43514. {
  43515. front: {
  43516. height: math.unit(6 + 4/12, "feet"),
  43517. weight: math.unit(170, "lb"),
  43518. name: "Front",
  43519. image: {
  43520. source: "./media/characters/charlie/front.svg",
  43521. extra: 1348/1228,
  43522. bottom: 15/1363
  43523. }
  43524. },
  43525. },
  43526. [
  43527. {
  43528. name: "Macro",
  43529. height: math.unit(1700, "meters"),
  43530. default: true
  43531. },
  43532. {
  43533. name: "MegaMacro",
  43534. height: math.unit(20400, "meters")
  43535. },
  43536. ]
  43537. ))
  43538. characterMakers.push(() => makeCharacter(
  43539. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43540. {
  43541. front: {
  43542. height: math.unit(6 + 3/12, "feet"),
  43543. weight: math.unit(185, "lb"),
  43544. name: "Front",
  43545. image: {
  43546. source: "./media/characters/susan-grant/front.svg",
  43547. extra: 1351/1327,
  43548. bottom: 26/1377
  43549. }
  43550. },
  43551. },
  43552. [
  43553. {
  43554. name: "Normal",
  43555. height: math.unit(6 + 3/12, "feet"),
  43556. default: true
  43557. },
  43558. {
  43559. name: "Macro",
  43560. height: math.unit(225, "feet")
  43561. },
  43562. {
  43563. name: "Macro+",
  43564. height: math.unit(900, "feet")
  43565. },
  43566. {
  43567. name: "MegaMacro",
  43568. height: math.unit(14400, "feet")
  43569. },
  43570. ]
  43571. ))
  43572. characterMakers.push(() => makeCharacter(
  43573. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43574. {
  43575. front: {
  43576. height: math.unit(5 + 4/12, "feet"),
  43577. weight: math.unit(110, "lb"),
  43578. name: "Front",
  43579. image: {
  43580. source: "./media/characters/axel-isanov/front.svg",
  43581. extra: 1096/1065,
  43582. bottom: 13/1109
  43583. }
  43584. },
  43585. },
  43586. [
  43587. {
  43588. name: "Normal",
  43589. height: math.unit(5 + 4/12, "feet"),
  43590. default: true
  43591. },
  43592. ]
  43593. ))
  43594. characterMakers.push(() => makeCharacter(
  43595. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43596. {
  43597. front: {
  43598. height: math.unit(9, "feet"),
  43599. weight: math.unit(467, "lb"),
  43600. name: "Front",
  43601. image: {
  43602. source: "./media/characters/necahual/front.svg",
  43603. extra: 920/873,
  43604. bottom: 26/946
  43605. }
  43606. },
  43607. back: {
  43608. height: math.unit(9, "feet"),
  43609. weight: math.unit(467, "lb"),
  43610. name: "Back",
  43611. image: {
  43612. source: "./media/characters/necahual/back.svg",
  43613. extra: 930/884,
  43614. bottom: 16/946
  43615. }
  43616. },
  43617. frontUnderwear: {
  43618. height: math.unit(9, "feet"),
  43619. weight: math.unit(467, "lb"),
  43620. name: "Front (Underwear)",
  43621. image: {
  43622. source: "./media/characters/necahual/front-underwear.svg",
  43623. extra: 920/873,
  43624. bottom: 26/946
  43625. }
  43626. },
  43627. frontDressed: {
  43628. height: math.unit(9, "feet"),
  43629. weight: math.unit(467, "lb"),
  43630. name: "Front (Dressed)",
  43631. image: {
  43632. source: "./media/characters/necahual/front-dressed.svg",
  43633. extra: 920/873,
  43634. bottom: 26/946
  43635. }
  43636. },
  43637. },
  43638. [
  43639. {
  43640. name: "Comprsesed",
  43641. height: math.unit(9, "feet")
  43642. },
  43643. {
  43644. name: "Natural",
  43645. height: math.unit(15, "feet"),
  43646. default: true
  43647. },
  43648. {
  43649. name: "Boosted",
  43650. height: math.unit(50, "feet")
  43651. },
  43652. {
  43653. name: "Boosted+",
  43654. height: math.unit(150, "feet")
  43655. },
  43656. {
  43657. name: "Max",
  43658. height: math.unit(500, "feet")
  43659. },
  43660. ]
  43661. ))
  43662. characterMakers.push(() => makeCharacter(
  43663. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43664. {
  43665. front: {
  43666. height: math.unit(22 + 1/12, "feet"),
  43667. weight: math.unit(3200, "lb"),
  43668. name: "Front",
  43669. image: {
  43670. source: "./media/characters/theo-acacia/front.svg",
  43671. extra: 1796/1741,
  43672. bottom: 83/1879
  43673. }
  43674. },
  43675. frontUnderwear: {
  43676. height: math.unit(22 + 1/12, "feet"),
  43677. weight: math.unit(3200, "lb"),
  43678. name: "Front (Underwear)",
  43679. image: {
  43680. source: "./media/characters/theo-acacia/front-underwear.svg",
  43681. extra: 1796/1741,
  43682. bottom: 83/1879
  43683. }
  43684. },
  43685. frontNude: {
  43686. height: math.unit(22 + 1/12, "feet"),
  43687. weight: math.unit(3200, "lb"),
  43688. name: "Front (Nude)",
  43689. image: {
  43690. source: "./media/characters/theo-acacia/front-nude.svg",
  43691. extra: 1796/1741,
  43692. bottom: 83/1879
  43693. }
  43694. },
  43695. },
  43696. [
  43697. {
  43698. name: "Normal",
  43699. height: math.unit(22 + 1/12, "feet"),
  43700. default: true
  43701. },
  43702. ]
  43703. ))
  43704. characterMakers.push(() => makeCharacter(
  43705. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43706. {
  43707. front: {
  43708. height: math.unit(20, "feet"),
  43709. name: "Front",
  43710. image: {
  43711. source: "./media/characters/astra/front.svg",
  43712. extra: 1850/1714,
  43713. bottom: 106/1956
  43714. }
  43715. },
  43716. frontUndressed: {
  43717. height: math.unit(20, "feet"),
  43718. name: "Front (Undressed)",
  43719. image: {
  43720. source: "./media/characters/astra/front-undressed.svg",
  43721. extra: 1926/1749,
  43722. bottom: 0/1926
  43723. }
  43724. },
  43725. hand: {
  43726. height: math.unit(1.53, "feet"),
  43727. name: "Hand",
  43728. image: {
  43729. source: "./media/characters/astra/hand.svg"
  43730. }
  43731. },
  43732. paw: {
  43733. height: math.unit(1.53, "feet"),
  43734. name: "Paw",
  43735. image: {
  43736. source: "./media/characters/astra/paw.svg"
  43737. }
  43738. },
  43739. },
  43740. [
  43741. {
  43742. name: "Smallest",
  43743. height: math.unit(20, "feet")
  43744. },
  43745. {
  43746. name: "Normal",
  43747. height: math.unit(1e9, "miles"),
  43748. default: true
  43749. },
  43750. {
  43751. name: "Larger",
  43752. height: math.unit(5, "multiverses")
  43753. },
  43754. {
  43755. name: "Largest",
  43756. height: math.unit(1e9, "multiverses")
  43757. },
  43758. ]
  43759. ))
  43760. characterMakers.push(() => makeCharacter(
  43761. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43762. {
  43763. front: {
  43764. height: math.unit(8, "feet"),
  43765. name: "Front",
  43766. image: {
  43767. source: "./media/characters/breanna/front.svg",
  43768. extra: 1912/1632,
  43769. bottom: 33/1945
  43770. }
  43771. },
  43772. },
  43773. [
  43774. {
  43775. name: "Smallest",
  43776. height: math.unit(8, "feet")
  43777. },
  43778. {
  43779. name: "Normal",
  43780. height: math.unit(1, "mile"),
  43781. default: true
  43782. },
  43783. {
  43784. name: "Maximum",
  43785. height: math.unit(1500000000000, "lightyears")
  43786. },
  43787. ]
  43788. ))
  43789. characterMakers.push(() => makeCharacter(
  43790. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43791. {
  43792. front: {
  43793. height: math.unit(5 + 11/12, "feet"),
  43794. weight: math.unit(155, "lb"),
  43795. name: "Front",
  43796. image: {
  43797. source: "./media/characters/cai/front.svg",
  43798. extra: 1823/1702,
  43799. bottom: 32/1855
  43800. }
  43801. },
  43802. back: {
  43803. height: math.unit(5 + 11/12, "feet"),
  43804. weight: math.unit(155, "lb"),
  43805. name: "Back",
  43806. image: {
  43807. source: "./media/characters/cai/back.svg",
  43808. extra: 1809/1708,
  43809. bottom: 31/1840
  43810. }
  43811. },
  43812. },
  43813. [
  43814. {
  43815. name: "Normal",
  43816. height: math.unit(5 + 11/12, "feet"),
  43817. default: true
  43818. },
  43819. {
  43820. name: "Big",
  43821. height: math.unit(15, "feet")
  43822. },
  43823. {
  43824. name: "Macro",
  43825. height: math.unit(200, "feet")
  43826. },
  43827. ]
  43828. ))
  43829. characterMakers.push(() => makeCharacter(
  43830. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43831. {
  43832. front: {
  43833. height: math.unit(5 + 6/12, "feet"),
  43834. weight: math.unit(160, "lb"),
  43835. name: "Front",
  43836. image: {
  43837. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43838. extra: 1227/1174,
  43839. bottom: 37/1264
  43840. }
  43841. },
  43842. },
  43843. [
  43844. {
  43845. name: "Macro",
  43846. height: math.unit(444, "meters"),
  43847. default: true
  43848. },
  43849. ]
  43850. ))
  43851. characterMakers.push(() => makeCharacter(
  43852. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43853. {
  43854. front: {
  43855. height: math.unit(18 + 7/12, "feet"),
  43856. name: "Front",
  43857. image: {
  43858. source: "./media/characters/rex/front.svg",
  43859. extra: 1941/1807,
  43860. bottom: 66/2007
  43861. }
  43862. },
  43863. back: {
  43864. height: math.unit(18 + 7/12, "feet"),
  43865. name: "Back",
  43866. image: {
  43867. source: "./media/characters/rex/back.svg",
  43868. extra: 1937/1822,
  43869. bottom: 42/1979
  43870. }
  43871. },
  43872. boot: {
  43873. height: math.unit(3.45, "feet"),
  43874. name: "Boot",
  43875. image: {
  43876. source: "./media/characters/rex/boot.svg"
  43877. }
  43878. },
  43879. paw: {
  43880. height: math.unit(4.17, "feet"),
  43881. name: "Paw",
  43882. image: {
  43883. source: "./media/characters/rex/paw.svg"
  43884. }
  43885. },
  43886. head: {
  43887. height: math.unit(6.728, "feet"),
  43888. name: "Head",
  43889. image: {
  43890. source: "./media/characters/rex/head.svg"
  43891. }
  43892. },
  43893. },
  43894. [
  43895. {
  43896. name: "Nano",
  43897. height: math.unit(18 + 7/12, "feet")
  43898. },
  43899. {
  43900. name: "Micro",
  43901. height: math.unit(1.5, "megameters")
  43902. },
  43903. {
  43904. name: "Normal",
  43905. height: math.unit(440, "megameters"),
  43906. default: true
  43907. },
  43908. {
  43909. name: "Macro",
  43910. height: math.unit(2.5, "gigameters")
  43911. },
  43912. {
  43913. name: "Gigamacro",
  43914. height: math.unit(2, "galaxies")
  43915. },
  43916. ]
  43917. ))
  43918. characterMakers.push(() => makeCharacter(
  43919. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43920. {
  43921. side: {
  43922. height: math.unit(32, "feet"),
  43923. weight: math.unit(250000, "lb"),
  43924. name: "Side",
  43925. image: {
  43926. source: "./media/characters/silverwing/side.svg",
  43927. extra: 1100/1019,
  43928. bottom: 204/1304
  43929. }
  43930. },
  43931. },
  43932. [
  43933. {
  43934. name: "Normal",
  43935. height: math.unit(32, "feet"),
  43936. default: true
  43937. },
  43938. ]
  43939. ))
  43940. characterMakers.push(() => makeCharacter(
  43941. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43942. {
  43943. front: {
  43944. height: math.unit(6 + 6/12, "feet"),
  43945. weight: math.unit(350, "lb"),
  43946. name: "Front",
  43947. image: {
  43948. source: "./media/characters/tristan-hawthorne/front.svg",
  43949. extra: 1159/1124,
  43950. bottom: 37/1196
  43951. },
  43952. form: "labrador",
  43953. default: true
  43954. },
  43955. skunkFront: {
  43956. height: math.unit(4 + 6/12, "feet"),
  43957. weight: math.unit(120, "lb"),
  43958. name: "Front",
  43959. image: {
  43960. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43961. extra: 1609/1551,
  43962. bottom: 169/1778
  43963. },
  43964. form: "skunk",
  43965. default: true
  43966. },
  43967. },
  43968. [
  43969. {
  43970. name: "Normal",
  43971. height: math.unit(6 + 6/12, "feet"),
  43972. form: "labrador",
  43973. default: true
  43974. },
  43975. {
  43976. name: "Normal",
  43977. height: math.unit(4 + 6/12, "feet"),
  43978. form: "skunk",
  43979. default: true
  43980. },
  43981. ],
  43982. {
  43983. "labrador": {
  43984. name: "Labrador",
  43985. default: true
  43986. },
  43987. "skunk": {
  43988. name: "Skunk"
  43989. }
  43990. }
  43991. ))
  43992. characterMakers.push(() => makeCharacter(
  43993. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43994. {
  43995. front: {
  43996. height: math.unit(5 + 11/12, "feet"),
  43997. weight: math.unit(190, "lb"),
  43998. name: "Front",
  43999. image: {
  44000. source: "./media/characters/mizu/front.svg",
  44001. extra: 1988/1788,
  44002. bottom: 14/2002
  44003. }
  44004. },
  44005. },
  44006. [
  44007. {
  44008. name: "Normal",
  44009. height: math.unit(5 + 11/12, "feet"),
  44010. default: true
  44011. },
  44012. ]
  44013. ))
  44014. characterMakers.push(() => makeCharacter(
  44015. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44016. {
  44017. front: {
  44018. height: math.unit(1.7, "feet"),
  44019. weight: math.unit(50, "lb"),
  44020. name: "Front",
  44021. image: {
  44022. source: "./media/characters/dechroma/front.svg",
  44023. extra: 1095/859,
  44024. bottom: 64/1159
  44025. }
  44026. },
  44027. },
  44028. [
  44029. {
  44030. name: "Normal",
  44031. height: math.unit(1.7, "feet"),
  44032. default: true
  44033. },
  44034. ]
  44035. ))
  44036. characterMakers.push(() => makeCharacter(
  44037. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44038. {
  44039. side: {
  44040. height: math.unit(30, "feet"),
  44041. name: "Side",
  44042. image: {
  44043. source: "./media/characters/veluren-thanazel/side.svg",
  44044. extra: 1611/633,
  44045. bottom: 118/1729
  44046. }
  44047. },
  44048. front: {
  44049. height: math.unit(30, "feet"),
  44050. name: "Front",
  44051. image: {
  44052. source: "./media/characters/veluren-thanazel/front.svg",
  44053. extra: 1486/636,
  44054. bottom: 238/1724
  44055. }
  44056. },
  44057. head: {
  44058. height: math.unit(21.4, "feet"),
  44059. name: "Head",
  44060. image: {
  44061. source: "./media/characters/veluren-thanazel/head.svg"
  44062. }
  44063. },
  44064. genitals: {
  44065. height: math.unit(19.4, "feet"),
  44066. name: "Genitals",
  44067. image: {
  44068. source: "./media/characters/veluren-thanazel/genitals.svg"
  44069. }
  44070. },
  44071. },
  44072. [
  44073. {
  44074. name: "Social",
  44075. height: math.unit(6, "feet")
  44076. },
  44077. {
  44078. name: "Play",
  44079. height: math.unit(12, "feet")
  44080. },
  44081. {
  44082. name: "True",
  44083. height: math.unit(30, "feet"),
  44084. default: true
  44085. },
  44086. ]
  44087. ))
  44088. characterMakers.push(() => makeCharacter(
  44089. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44090. {
  44091. front: {
  44092. height: math.unit(7 + 6/12, "feet"),
  44093. weight: math.unit(500, "kg"),
  44094. name: "Front",
  44095. image: {
  44096. source: "./media/characters/arcturas/front.svg",
  44097. extra: 1700/1500,
  44098. bottom: 145/1845
  44099. }
  44100. },
  44101. },
  44102. [
  44103. {
  44104. name: "Normal",
  44105. height: math.unit(7 + 6/12, "feet"),
  44106. default: true
  44107. },
  44108. ]
  44109. ))
  44110. characterMakers.push(() => makeCharacter(
  44111. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44112. {
  44113. side: {
  44114. height: math.unit(6, "feet"),
  44115. weight: math.unit(2, "tons"),
  44116. name: "Side",
  44117. image: {
  44118. source: "./media/characters/vitaen/side.svg",
  44119. extra: 1157/617,
  44120. bottom: 122/1279
  44121. }
  44122. },
  44123. },
  44124. [
  44125. {
  44126. name: "Normal",
  44127. height: math.unit(6, "feet"),
  44128. default: true
  44129. },
  44130. ]
  44131. ))
  44132. characterMakers.push(() => makeCharacter(
  44133. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44134. {
  44135. front: {
  44136. height: math.unit(19, "feet"),
  44137. name: "Front",
  44138. image: {
  44139. source: "./media/characters/fia-dreamweaver/front.svg",
  44140. extra: 1630/1504,
  44141. bottom: 25/1655
  44142. }
  44143. },
  44144. },
  44145. [
  44146. {
  44147. name: "Normal",
  44148. height: math.unit(19, "feet"),
  44149. default: true
  44150. },
  44151. ]
  44152. ))
  44153. characterMakers.push(() => makeCharacter(
  44154. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44155. {
  44156. front: {
  44157. height: math.unit(5 + 4/12, "feet"),
  44158. name: "Front",
  44159. image: {
  44160. source: "./media/characters/artan/front.svg",
  44161. extra: 1618/1535,
  44162. bottom: 46/1664
  44163. }
  44164. },
  44165. back: {
  44166. height: math.unit(5 + 4/12, "feet"),
  44167. name: "Back",
  44168. image: {
  44169. source: "./media/characters/artan/back.svg",
  44170. extra: 1618/1543,
  44171. bottom: 31/1649
  44172. }
  44173. },
  44174. },
  44175. [
  44176. {
  44177. name: "Normal",
  44178. height: math.unit(5 + 4/12, "feet"),
  44179. default: true
  44180. },
  44181. ]
  44182. ))
  44183. characterMakers.push(() => makeCharacter(
  44184. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44185. {
  44186. side: {
  44187. height: math.unit(182, "cm"),
  44188. weight: math.unit(1000, "lb"),
  44189. name: "Side",
  44190. image: {
  44191. source: "./media/characters/silver-dragon/side.svg",
  44192. extra: 710/287,
  44193. bottom: 88/798
  44194. }
  44195. },
  44196. },
  44197. [
  44198. {
  44199. name: "Normal",
  44200. height: math.unit(182, "cm"),
  44201. default: true
  44202. },
  44203. ]
  44204. ))
  44205. characterMakers.push(() => makeCharacter(
  44206. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44207. {
  44208. side: {
  44209. height: math.unit(6 + 6/12, "feet"),
  44210. weight: math.unit(1.5, "tons"),
  44211. name: "Side",
  44212. image: {
  44213. source: "./media/characters/zephyr/side.svg",
  44214. extra: 1433/586,
  44215. bottom: 109/1542
  44216. }
  44217. },
  44218. },
  44219. [
  44220. {
  44221. name: "Normal",
  44222. height: math.unit(6 + 6/12, "feet"),
  44223. default: true
  44224. },
  44225. ]
  44226. ))
  44227. characterMakers.push(() => makeCharacter(
  44228. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44229. {
  44230. side: {
  44231. height: math.unit(1, "feet"),
  44232. name: "Side",
  44233. image: {
  44234. source: "./media/characters/vixye/side.svg",
  44235. extra: 632/541,
  44236. bottom: 0/632
  44237. }
  44238. },
  44239. },
  44240. [
  44241. {
  44242. name: "Normal",
  44243. height: math.unit(1, "feet"),
  44244. default: true
  44245. },
  44246. {
  44247. name: "True",
  44248. height: math.unit(1e15, "multiverses")
  44249. },
  44250. ]
  44251. ))
  44252. characterMakers.push(() => makeCharacter(
  44253. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44254. {
  44255. front: {
  44256. height: math.unit(8 + 2/12, "feet"),
  44257. weight: math.unit(650, "lb"),
  44258. name: "Front",
  44259. image: {
  44260. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44261. extra: 1174/1137,
  44262. bottom: 82/1256
  44263. }
  44264. },
  44265. back: {
  44266. height: math.unit(8 + 2/12, "feet"),
  44267. weight: math.unit(650, "lb"),
  44268. name: "Back",
  44269. image: {
  44270. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44271. extra: 1204/1157,
  44272. bottom: 46/1250
  44273. }
  44274. },
  44275. },
  44276. [
  44277. {
  44278. name: "Wildform",
  44279. height: math.unit(8 + 2/12, "feet"),
  44280. default: true
  44281. },
  44282. ]
  44283. ))
  44284. characterMakers.push(() => makeCharacter(
  44285. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44286. {
  44287. front: {
  44288. height: math.unit(18, "feet"),
  44289. name: "Front",
  44290. image: {
  44291. source: "./media/characters/cyphin/front.svg",
  44292. extra: 970/886,
  44293. bottom: 42/1012
  44294. }
  44295. },
  44296. back: {
  44297. height: math.unit(18, "feet"),
  44298. name: "Back",
  44299. image: {
  44300. source: "./media/characters/cyphin/back.svg",
  44301. extra: 1009/894,
  44302. bottom: 24/1033
  44303. }
  44304. },
  44305. head: {
  44306. height: math.unit(5.05, "feet"),
  44307. name: "Head",
  44308. image: {
  44309. source: "./media/characters/cyphin/head.svg"
  44310. }
  44311. },
  44312. tailbud: {
  44313. height: math.unit(5, "feet"),
  44314. name: "Tailbud",
  44315. image: {
  44316. source: "./media/characters/cyphin/tailbud.svg"
  44317. }
  44318. },
  44319. },
  44320. [
  44321. ]
  44322. ))
  44323. characterMakers.push(() => makeCharacter(
  44324. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44325. {
  44326. side: {
  44327. height: math.unit(10, "feet"),
  44328. weight: math.unit(6, "tons"),
  44329. name: "Side",
  44330. image: {
  44331. source: "./media/characters/raijin/side.svg",
  44332. extra: 1529/613,
  44333. bottom: 337/1866
  44334. }
  44335. },
  44336. },
  44337. [
  44338. {
  44339. name: "Normal",
  44340. height: math.unit(10, "feet"),
  44341. default: true
  44342. },
  44343. ]
  44344. ))
  44345. characterMakers.push(() => makeCharacter(
  44346. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44347. {
  44348. side: {
  44349. height: math.unit(9, "feet"),
  44350. name: "Side",
  44351. image: {
  44352. source: "./media/characters/nilghais/side.svg",
  44353. extra: 1047/744,
  44354. bottom: 91/1138
  44355. }
  44356. },
  44357. head: {
  44358. height: math.unit(3.14, "feet"),
  44359. name: "Head",
  44360. image: {
  44361. source: "./media/characters/nilghais/head.svg"
  44362. }
  44363. },
  44364. mouth: {
  44365. height: math.unit(4.6, "feet"),
  44366. name: "Mouth",
  44367. image: {
  44368. source: "./media/characters/nilghais/mouth.svg"
  44369. }
  44370. },
  44371. wings: {
  44372. height: math.unit(24, "feet"),
  44373. name: "Wings",
  44374. image: {
  44375. source: "./media/characters/nilghais/wings.svg"
  44376. }
  44377. },
  44378. ass: {
  44379. height: math.unit(6.12, "feet"),
  44380. name: "Ass",
  44381. image: {
  44382. source: "./media/characters/nilghais/ass.svg"
  44383. }
  44384. },
  44385. },
  44386. [
  44387. {
  44388. name: "Normal",
  44389. height: math.unit(9, "feet"),
  44390. default: true
  44391. },
  44392. ]
  44393. ))
  44394. characterMakers.push(() => makeCharacter(
  44395. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44396. {
  44397. regular: {
  44398. height: math.unit(16 + 2/12, "feet"),
  44399. weight: math.unit(2300, "lb"),
  44400. name: "Regular",
  44401. image: {
  44402. source: "./media/characters/zolgar/regular.svg",
  44403. extra: 1246/1004,
  44404. bottom: 124/1370
  44405. }
  44406. },
  44407. boxers: {
  44408. height: math.unit(16 + 2/12, "feet"),
  44409. weight: math.unit(2300, "lb"),
  44410. name: "Boxers",
  44411. image: {
  44412. source: "./media/characters/zolgar/boxers.svg",
  44413. extra: 1246/1004,
  44414. bottom: 124/1370
  44415. }
  44416. },
  44417. armored: {
  44418. height: math.unit(16 + 2/12, "feet"),
  44419. weight: math.unit(2300, "lb"),
  44420. name: "Armored",
  44421. image: {
  44422. source: "./media/characters/zolgar/armored.svg",
  44423. extra: 1246/1004,
  44424. bottom: 124/1370
  44425. }
  44426. },
  44427. goth: {
  44428. height: math.unit(16 + 2/12, "feet"),
  44429. weight: math.unit(2300, "lb"),
  44430. name: "Goth",
  44431. image: {
  44432. source: "./media/characters/zolgar/goth.svg",
  44433. extra: 1246/1004,
  44434. bottom: 124/1370
  44435. }
  44436. },
  44437. },
  44438. [
  44439. {
  44440. name: "Shrunken Down",
  44441. height: math.unit(9 + 2/12, "feet")
  44442. },
  44443. {
  44444. name: "Normal",
  44445. height: math.unit(16 + 2/12, "feet"),
  44446. default: true
  44447. },
  44448. ]
  44449. ))
  44450. characterMakers.push(() => makeCharacter(
  44451. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44452. {
  44453. front: {
  44454. height: math.unit(6, "feet"),
  44455. weight: math.unit(168, "lb"),
  44456. name: "Front",
  44457. image: {
  44458. source: "./media/characters/luca/front.svg",
  44459. extra: 841/667,
  44460. bottom: 102/943
  44461. }
  44462. },
  44463. },
  44464. [
  44465. {
  44466. name: "Normal",
  44467. height: math.unit(6, "feet"),
  44468. default: true
  44469. },
  44470. ]
  44471. ))
  44472. characterMakers.push(() => makeCharacter(
  44473. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44474. {
  44475. side: {
  44476. height: math.unit(7 + 3/12, "feet"),
  44477. weight: math.unit(312, "lb"),
  44478. name: "Side",
  44479. image: {
  44480. source: "./media/characters/zezo/side.svg",
  44481. extra: 1192/1067,
  44482. bottom: 63/1255
  44483. }
  44484. },
  44485. },
  44486. [
  44487. {
  44488. name: "Normal",
  44489. height: math.unit(7 + 3/12, "feet"),
  44490. default: true
  44491. },
  44492. ]
  44493. ))
  44494. characterMakers.push(() => makeCharacter(
  44495. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44496. {
  44497. front: {
  44498. height: math.unit(5 + 5/12, "feet"),
  44499. weight: math.unit(170, "lb"),
  44500. name: "Front",
  44501. image: {
  44502. source: "./media/characters/mayso/front.svg",
  44503. extra: 1215/1108,
  44504. bottom: 16/1231
  44505. }
  44506. },
  44507. },
  44508. [
  44509. {
  44510. name: "Normal",
  44511. height: math.unit(5 + 5/12, "feet"),
  44512. default: true
  44513. },
  44514. ]
  44515. ))
  44516. characterMakers.push(() => makeCharacter(
  44517. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44518. {
  44519. front: {
  44520. height: math.unit(4 + 3/12, "feet"),
  44521. weight: math.unit(80, "lb"),
  44522. name: "Front",
  44523. image: {
  44524. source: "./media/characters/hess/front.svg",
  44525. extra: 1200/1123,
  44526. bottom: 16/1216
  44527. }
  44528. },
  44529. },
  44530. [
  44531. {
  44532. name: "Normal",
  44533. height: math.unit(4 + 3/12, "feet"),
  44534. default: true
  44535. },
  44536. ]
  44537. ))
  44538. characterMakers.push(() => makeCharacter(
  44539. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44540. {
  44541. front: {
  44542. height: math.unit(1.9, "meters"),
  44543. name: "Front",
  44544. image: {
  44545. source: "./media/characters/ashgar/front.svg",
  44546. extra: 1177/1146,
  44547. bottom: 99/1276
  44548. }
  44549. },
  44550. back: {
  44551. height: math.unit(1.9, "meters"),
  44552. name: "Back",
  44553. image: {
  44554. source: "./media/characters/ashgar/back.svg",
  44555. extra: 1201/1183,
  44556. bottom: 53/1254
  44557. }
  44558. },
  44559. feral: {
  44560. height: math.unit(1.4, "meters"),
  44561. name: "Feral",
  44562. image: {
  44563. source: "./media/characters/ashgar/feral.svg",
  44564. extra: 370/345,
  44565. bottom: 45/415
  44566. }
  44567. },
  44568. },
  44569. [
  44570. {
  44571. name: "Normal",
  44572. height: math.unit(1.9, "meters"),
  44573. default: true
  44574. },
  44575. ]
  44576. ))
  44577. characterMakers.push(() => makeCharacter(
  44578. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44579. {
  44580. regular: {
  44581. height: math.unit(6, "feet"),
  44582. weight: math.unit(220, "lb"),
  44583. name: "Regular",
  44584. image: {
  44585. source: "./media/characters/phillip/regular.svg",
  44586. extra: 1373/1277,
  44587. bottom: 75/1448
  44588. }
  44589. },
  44590. dressed: {
  44591. height: math.unit(6, "feet"),
  44592. weight: math.unit(220, "lb"),
  44593. name: "Dressed",
  44594. image: {
  44595. source: "./media/characters/phillip/dressed.svg",
  44596. extra: 1373/1277,
  44597. bottom: 75/1448
  44598. }
  44599. },
  44600. paw: {
  44601. height: math.unit(1.44, "feet"),
  44602. name: "Paw",
  44603. image: {
  44604. source: "./media/characters/phillip/paw.svg"
  44605. }
  44606. },
  44607. },
  44608. [
  44609. {
  44610. name: "Normal",
  44611. height: math.unit(6, "feet"),
  44612. default: true
  44613. },
  44614. ]
  44615. ))
  44616. characterMakers.push(() => makeCharacter(
  44617. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44618. {
  44619. side: {
  44620. height: math.unit(42, "feet"),
  44621. name: "Side",
  44622. image: {
  44623. source: "./media/characters/uvula/side.svg",
  44624. extra: 683/586,
  44625. bottom: 60/743
  44626. }
  44627. },
  44628. front: {
  44629. height: math.unit(42, "feet"),
  44630. name: "Front",
  44631. image: {
  44632. source: "./media/characters/uvula/front.svg",
  44633. extra: 705/613,
  44634. bottom: 54/759
  44635. }
  44636. },
  44637. maw: {
  44638. height: math.unit(23.5, "feet"),
  44639. name: "Maw",
  44640. image: {
  44641. source: "./media/characters/uvula/maw.svg"
  44642. }
  44643. },
  44644. },
  44645. [
  44646. {
  44647. name: "Original Size",
  44648. height: math.unit(14, "inches")
  44649. },
  44650. {
  44651. name: "Human Size",
  44652. height: math.unit(6, "feet")
  44653. },
  44654. {
  44655. name: "Big",
  44656. height: math.unit(42, "feet"),
  44657. default: true
  44658. },
  44659. {
  44660. name: "Bigger",
  44661. height: math.unit(100, "feet")
  44662. },
  44663. ]
  44664. ))
  44665. characterMakers.push(() => makeCharacter(
  44666. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44667. {
  44668. front: {
  44669. height: math.unit(5 + 11/12, "feet"),
  44670. name: "Front",
  44671. image: {
  44672. source: "./media/characters/lannah/front.svg",
  44673. extra: 1208/1113,
  44674. bottom: 97/1305
  44675. }
  44676. },
  44677. },
  44678. [
  44679. {
  44680. name: "Normal",
  44681. height: math.unit(5 + 11/12, "feet"),
  44682. default: true
  44683. },
  44684. ]
  44685. ))
  44686. characterMakers.push(() => makeCharacter(
  44687. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44688. {
  44689. front: {
  44690. height: math.unit(6 + 3/12, "feet"),
  44691. weight: math.unit(3.5, "tons"),
  44692. name: "Front",
  44693. image: {
  44694. source: "./media/characters/emberflame/front.svg",
  44695. extra: 1198/672,
  44696. bottom: 82/1280
  44697. }
  44698. },
  44699. side: {
  44700. height: math.unit(6 + 3/12, "feet"),
  44701. weight: math.unit(3.5, "tons"),
  44702. name: "Side",
  44703. image: {
  44704. source: "./media/characters/emberflame/side.svg",
  44705. extra: 938/527,
  44706. bottom: 56/994
  44707. }
  44708. },
  44709. },
  44710. [
  44711. {
  44712. name: "Normal",
  44713. height: math.unit(6 + 3/12, "feet"),
  44714. default: true
  44715. },
  44716. ]
  44717. ))
  44718. characterMakers.push(() => makeCharacter(
  44719. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44720. {
  44721. side: {
  44722. height: math.unit(17.5, "feet"),
  44723. weight: math.unit(35, "tons"),
  44724. name: "Side",
  44725. image: {
  44726. source: "./media/characters/sophie-ambrose/side.svg",
  44727. extra: 1573/1242,
  44728. bottom: 71/1644
  44729. }
  44730. },
  44731. maw: {
  44732. height: math.unit(7.4, "feet"),
  44733. name: "Maw",
  44734. image: {
  44735. source: "./media/characters/sophie-ambrose/maw.svg"
  44736. }
  44737. },
  44738. },
  44739. [
  44740. {
  44741. name: "Normal",
  44742. height: math.unit(17.5, "feet"),
  44743. default: true
  44744. },
  44745. ]
  44746. ))
  44747. characterMakers.push(() => makeCharacter(
  44748. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44749. {
  44750. front: {
  44751. height: math.unit(280, "feet"),
  44752. weight: math.unit(550, "tons"),
  44753. name: "Front",
  44754. image: {
  44755. source: "./media/characters/king-mugi/front.svg",
  44756. extra: 1102/947,
  44757. bottom: 104/1206
  44758. }
  44759. },
  44760. },
  44761. [
  44762. {
  44763. name: "King Mugi",
  44764. height: math.unit(280, "feet"),
  44765. default: true
  44766. },
  44767. ]
  44768. ))
  44769. characterMakers.push(() => makeCharacter(
  44770. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44771. {
  44772. front: {
  44773. height: math.unit(64, "meters"),
  44774. name: "Front",
  44775. image: {
  44776. source: "./media/characters/nova-fox/front.svg",
  44777. extra: 1310/1246,
  44778. bottom: 65/1375
  44779. }
  44780. },
  44781. },
  44782. [
  44783. {
  44784. name: "Macro",
  44785. height: math.unit(64, "meters"),
  44786. default: true
  44787. },
  44788. ]
  44789. ))
  44790. characterMakers.push(() => makeCharacter(
  44791. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44792. {
  44793. front: {
  44794. height: math.unit(6 + 3/12, "feet"),
  44795. weight: math.unit(170, "lb"),
  44796. name: "Front",
  44797. image: {
  44798. source: "./media/characters/sam-bat/front.svg",
  44799. extra: 1601/1411,
  44800. bottom: 125/1726
  44801. }
  44802. },
  44803. back: {
  44804. height: math.unit(6 + 3/12, "feet"),
  44805. weight: math.unit(170, "lb"),
  44806. name: "Back",
  44807. image: {
  44808. source: "./media/characters/sam-bat/back.svg",
  44809. extra: 1577/1405,
  44810. bottom: 58/1635
  44811. }
  44812. },
  44813. },
  44814. [
  44815. {
  44816. name: "Normal",
  44817. height: math.unit(6 + 3/12, "feet"),
  44818. default: true
  44819. },
  44820. ]
  44821. ))
  44822. characterMakers.push(() => makeCharacter(
  44823. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44824. {
  44825. front: {
  44826. height: math.unit(59, "feet"),
  44827. weight: math.unit(40000, "lb"),
  44828. name: "Front",
  44829. image: {
  44830. source: "./media/characters/inari/front.svg",
  44831. extra: 1884/1350,
  44832. bottom: 95/1979
  44833. }
  44834. },
  44835. },
  44836. [
  44837. {
  44838. name: "Gigantamax",
  44839. height: math.unit(59, "feet"),
  44840. default: true
  44841. },
  44842. ]
  44843. ))
  44844. characterMakers.push(() => makeCharacter(
  44845. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44846. {
  44847. front: {
  44848. height: math.unit(5 + 8/12, "feet"),
  44849. name: "Front",
  44850. image: {
  44851. source: "./media/characters/elizabeth/front.svg",
  44852. extra: 1395/1298,
  44853. bottom: 54/1449
  44854. }
  44855. },
  44856. mouth: {
  44857. height: math.unit(1.97, "feet"),
  44858. name: "Mouth",
  44859. image: {
  44860. source: "./media/characters/elizabeth/mouth.svg"
  44861. }
  44862. },
  44863. foot: {
  44864. height: math.unit(1.17, "feet"),
  44865. name: "Foot",
  44866. image: {
  44867. source: "./media/characters/elizabeth/foot.svg"
  44868. }
  44869. },
  44870. },
  44871. [
  44872. {
  44873. name: "Normal",
  44874. height: math.unit(5 + 8/12, "feet"),
  44875. default: true
  44876. },
  44877. {
  44878. name: "Minimacro",
  44879. height: math.unit(18, "feet")
  44880. },
  44881. {
  44882. name: "Macro",
  44883. height: math.unit(180, "feet")
  44884. },
  44885. ]
  44886. ))
  44887. characterMakers.push(() => makeCharacter(
  44888. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44889. {
  44890. front: {
  44891. height: math.unit(5 + 2/12, "feet"),
  44892. name: "Front",
  44893. image: {
  44894. source: "./media/characters/october-gossamer/front.svg",
  44895. extra: 505/454,
  44896. bottom: 7/512
  44897. }
  44898. },
  44899. back: {
  44900. height: math.unit(5 + 2/12, "feet"),
  44901. name: "Back",
  44902. image: {
  44903. source: "./media/characters/october-gossamer/back.svg",
  44904. extra: 501/454,
  44905. bottom: 11/512
  44906. }
  44907. },
  44908. },
  44909. [
  44910. {
  44911. name: "Normal",
  44912. height: math.unit(5 + 2/12, "feet"),
  44913. default: true
  44914. },
  44915. ]
  44916. ))
  44917. characterMakers.push(() => makeCharacter(
  44918. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44919. {
  44920. front: {
  44921. height: math.unit(5, "feet"),
  44922. name: "Front",
  44923. image: {
  44924. source: "./media/characters/epiglottis/front.svg",
  44925. extra: 923/849,
  44926. bottom: 17/940
  44927. }
  44928. },
  44929. },
  44930. [
  44931. {
  44932. name: "Original Size",
  44933. height: math.unit(10, "inches")
  44934. },
  44935. {
  44936. name: "Human Size",
  44937. height: math.unit(5, "feet"),
  44938. default: true
  44939. },
  44940. {
  44941. name: "Big",
  44942. height: math.unit(25, "feet")
  44943. },
  44944. {
  44945. name: "Bigger",
  44946. height: math.unit(50, "feet")
  44947. },
  44948. {
  44949. name: "oh lawd",
  44950. height: math.unit(75, "feet")
  44951. },
  44952. ]
  44953. ))
  44954. characterMakers.push(() => makeCharacter(
  44955. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44956. {
  44957. front: {
  44958. height: math.unit(2 + 4/12, "feet"),
  44959. weight: math.unit(60, "lb"),
  44960. name: "Front",
  44961. image: {
  44962. source: "./media/characters/lerm/front.svg",
  44963. extra: 796/790,
  44964. bottom: 79/875
  44965. }
  44966. },
  44967. },
  44968. [
  44969. {
  44970. name: "Normal",
  44971. height: math.unit(2 + 4/12, "feet"),
  44972. default: true
  44973. },
  44974. ]
  44975. ))
  44976. characterMakers.push(() => makeCharacter(
  44977. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44978. {
  44979. front: {
  44980. height: math.unit(5.5, "feet"),
  44981. weight: math.unit(130, "lb"),
  44982. name: "Front",
  44983. image: {
  44984. source: "./media/characters/xena-nebadon/front.svg",
  44985. extra: 1828/1730,
  44986. bottom: 79/1907
  44987. }
  44988. },
  44989. },
  44990. [
  44991. {
  44992. name: "Tiny Puppy",
  44993. height: math.unit(3, "inches")
  44994. },
  44995. {
  44996. name: "Normal",
  44997. height: math.unit(5.5, "feet"),
  44998. default: true
  44999. },
  45000. {
  45001. name: "Lotta Lady",
  45002. height: math.unit(12, "feet")
  45003. },
  45004. {
  45005. name: "Pretty Big",
  45006. height: math.unit(100, "feet")
  45007. },
  45008. {
  45009. name: "Big",
  45010. height: math.unit(500, "feet")
  45011. },
  45012. {
  45013. name: "Skyscraper Toys",
  45014. height: math.unit(2500, "feet")
  45015. },
  45016. {
  45017. name: "Plane Catcher",
  45018. height: math.unit(8, "miles")
  45019. },
  45020. {
  45021. name: "Planet Toys",
  45022. height: math.unit(15, "earths")
  45023. },
  45024. {
  45025. name: "Stardust",
  45026. height: math.unit(0.25, "galaxies")
  45027. },
  45028. {
  45029. name: "Snacks",
  45030. height: math.unit(70, "universes")
  45031. },
  45032. ]
  45033. ))
  45034. characterMakers.push(() => makeCharacter(
  45035. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45036. {
  45037. front: {
  45038. height: math.unit(1.6, "meters"),
  45039. weight: math.unit(60, "kg"),
  45040. name: "Front",
  45041. image: {
  45042. source: "./media/characters/bounty/front.svg",
  45043. extra: 1426/1308,
  45044. bottom: 15/1441
  45045. }
  45046. },
  45047. back: {
  45048. height: math.unit(1.6, "meters"),
  45049. weight: math.unit(60, "kg"),
  45050. name: "Back",
  45051. image: {
  45052. source: "./media/characters/bounty/back.svg",
  45053. extra: 1417/1307,
  45054. bottom: 8/1425
  45055. }
  45056. },
  45057. },
  45058. [
  45059. {
  45060. name: "Normal",
  45061. height: math.unit(1.6, "meters"),
  45062. default: true
  45063. },
  45064. {
  45065. name: "Macro",
  45066. height: math.unit(300, "meters")
  45067. },
  45068. ]
  45069. ))
  45070. characterMakers.push(() => makeCharacter(
  45071. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45072. {
  45073. front: {
  45074. height: math.unit(2 + 8/12, "feet"),
  45075. weight: math.unit(15, "lb"),
  45076. name: "Front",
  45077. image: {
  45078. source: "./media/characters/mochi/front.svg",
  45079. extra: 1022/852,
  45080. bottom: 435/1457
  45081. }
  45082. },
  45083. back: {
  45084. height: math.unit(2 + 8/12, "feet"),
  45085. weight: math.unit(15, "lb"),
  45086. name: "Back",
  45087. image: {
  45088. source: "./media/characters/mochi/back.svg",
  45089. extra: 1335/1119,
  45090. bottom: 39/1374
  45091. }
  45092. },
  45093. bird: {
  45094. height: math.unit(2 + 8/12, "feet"),
  45095. weight: math.unit(15, "lb"),
  45096. name: "Bird",
  45097. image: {
  45098. source: "./media/characters/mochi/bird.svg",
  45099. extra: 1251/1113,
  45100. bottom: 178/1429
  45101. }
  45102. },
  45103. kaiju: {
  45104. height: math.unit(154, "feet"),
  45105. weight: math.unit(1e7, "lb"),
  45106. name: "Kaiju",
  45107. image: {
  45108. source: "./media/characters/mochi/kaiju.svg",
  45109. extra: 460/324,
  45110. bottom: 40/500
  45111. }
  45112. },
  45113. head: {
  45114. height: math.unit(1.21, "feet"),
  45115. name: "Head",
  45116. image: {
  45117. source: "./media/characters/mochi/head.svg"
  45118. }
  45119. },
  45120. alternateTail: {
  45121. height: math.unit(2 + 8/12, "feet"),
  45122. weight: math.unit(45, "lb"),
  45123. name: "Alternate Tail",
  45124. image: {
  45125. source: "./media/characters/mochi/alternate-tail.svg",
  45126. extra: 139/76,
  45127. bottom: 45/184
  45128. }
  45129. },
  45130. },
  45131. [
  45132. {
  45133. name: "Micro",
  45134. height: math.unit(2, "inches")
  45135. },
  45136. {
  45137. name: "Normal",
  45138. height: math.unit(2 + 8/12, "feet"),
  45139. default: true
  45140. },
  45141. {
  45142. name: "Macro",
  45143. height: math.unit(106, "feet")
  45144. },
  45145. ]
  45146. ))
  45147. characterMakers.push(() => makeCharacter(
  45148. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45149. {
  45150. front: {
  45151. height: math.unit(5.67, "feet"),
  45152. weight: math.unit(135, "lb"),
  45153. name: "Front",
  45154. image: {
  45155. source: "./media/characters/sarel/front.svg",
  45156. extra: 865/788,
  45157. bottom: 97/962
  45158. }
  45159. },
  45160. back: {
  45161. height: math.unit(5.67, "feet"),
  45162. weight: math.unit(135, "lb"),
  45163. name: "Back",
  45164. image: {
  45165. source: "./media/characters/sarel/back.svg",
  45166. extra: 857/777,
  45167. bottom: 32/889
  45168. }
  45169. },
  45170. chozoan: {
  45171. height: math.unit(5.67, "feet"),
  45172. weight: math.unit(135, "lb"),
  45173. name: "Chozoan",
  45174. image: {
  45175. source: "./media/characters/sarel/chozoan.svg",
  45176. extra: 865/788,
  45177. bottom: 97/962
  45178. }
  45179. },
  45180. current: {
  45181. height: math.unit(5.67, "feet"),
  45182. weight: math.unit(135, "lb"),
  45183. name: "Current",
  45184. image: {
  45185. source: "./media/characters/sarel/current.svg",
  45186. extra: 865/788,
  45187. bottom: 97/962
  45188. }
  45189. },
  45190. head: {
  45191. height: math.unit(1.77, "feet"),
  45192. name: "Head",
  45193. image: {
  45194. source: "./media/characters/sarel/head.svg"
  45195. }
  45196. },
  45197. claws: {
  45198. height: math.unit(1.8, "feet"),
  45199. name: "Claws",
  45200. image: {
  45201. source: "./media/characters/sarel/claws.svg"
  45202. }
  45203. },
  45204. clawsAlt: {
  45205. height: math.unit(1.8, "feet"),
  45206. name: "Claws-alt",
  45207. image: {
  45208. source: "./media/characters/sarel/claws-alt.svg"
  45209. }
  45210. },
  45211. },
  45212. [
  45213. {
  45214. name: "Normal",
  45215. height: math.unit(5.67, "feet"),
  45216. default: true
  45217. },
  45218. ]
  45219. ))
  45220. characterMakers.push(() => makeCharacter(
  45221. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45222. {
  45223. front: {
  45224. height: math.unit(5500, "feet"),
  45225. name: "Front",
  45226. image: {
  45227. source: "./media/characters/alyonia/front.svg",
  45228. extra: 1200/1135,
  45229. bottom: 29/1229
  45230. }
  45231. },
  45232. back: {
  45233. height: math.unit(5500, "feet"),
  45234. name: "Back",
  45235. image: {
  45236. source: "./media/characters/alyonia/back.svg",
  45237. extra: 1205/1138,
  45238. bottom: 10/1215
  45239. }
  45240. },
  45241. },
  45242. [
  45243. {
  45244. name: "Small",
  45245. height: math.unit(10, "feet")
  45246. },
  45247. {
  45248. name: "Macro",
  45249. height: math.unit(500, "feet")
  45250. },
  45251. {
  45252. name: "Mega Macro",
  45253. height: math.unit(5500, "feet"),
  45254. default: true
  45255. },
  45256. {
  45257. name: "Mega Macro+",
  45258. height: math.unit(500000, "feet")
  45259. },
  45260. {
  45261. name: "Giga Macro",
  45262. height: math.unit(3000, "miles")
  45263. },
  45264. {
  45265. name: "Tera Macro",
  45266. height: math.unit(2.8e6, "miles")
  45267. },
  45268. {
  45269. name: "Galactic",
  45270. height: math.unit(120000, "lightyears")
  45271. },
  45272. ]
  45273. ))
  45274. characterMakers.push(() => makeCharacter(
  45275. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45276. {
  45277. werewolf: {
  45278. height: math.unit(8, "feet"),
  45279. weight: math.unit(425, "lb"),
  45280. name: "Werewolf",
  45281. image: {
  45282. source: "./media/characters/autumn/werewolf.svg",
  45283. extra: 2154/2031,
  45284. bottom: 160/2314
  45285. }
  45286. },
  45287. human: {
  45288. height: math.unit(5 + 8/12, "feet"),
  45289. weight: math.unit(150, "lb"),
  45290. name: "Human",
  45291. image: {
  45292. source: "./media/characters/autumn/human.svg",
  45293. extra: 1200/1149,
  45294. bottom: 30/1230
  45295. }
  45296. },
  45297. },
  45298. [
  45299. {
  45300. name: "Normal",
  45301. height: math.unit(8, "feet"),
  45302. default: true
  45303. },
  45304. ]
  45305. ))
  45306. characterMakers.push(() => makeCharacter(
  45307. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45308. {
  45309. front: {
  45310. height: math.unit(8 + 5/12, "feet"),
  45311. weight: math.unit(825, "lb"),
  45312. name: "Front",
  45313. image: {
  45314. source: "./media/characters/cobalt-charizard/front.svg",
  45315. extra: 1268/1155,
  45316. bottom: 122/1390
  45317. }
  45318. },
  45319. side: {
  45320. height: math.unit(8 + 5/12, "feet"),
  45321. weight: math.unit(825, "lb"),
  45322. name: "Side",
  45323. image: {
  45324. source: "./media/characters/cobalt-charizard/side.svg",
  45325. extra: 1348/1257,
  45326. bottom: 58/1406
  45327. }
  45328. },
  45329. gMax: {
  45330. height: math.unit(134 + 11/12, "feet"),
  45331. name: "G-Max",
  45332. image: {
  45333. source: "./media/characters/cobalt-charizard/g-max.svg",
  45334. extra: 1835/1541,
  45335. bottom: 151/1986
  45336. }
  45337. },
  45338. },
  45339. [
  45340. {
  45341. name: "Normal",
  45342. height: math.unit(8 + 5/12, "feet"),
  45343. default: true
  45344. },
  45345. ]
  45346. ))
  45347. characterMakers.push(() => makeCharacter(
  45348. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45349. {
  45350. front: {
  45351. height: math.unit(6 + 3/12, "feet"),
  45352. weight: math.unit(210, "lb"),
  45353. name: "Front",
  45354. image: {
  45355. source: "./media/characters/stella/front.svg",
  45356. extra: 3549/3335,
  45357. bottom: 51/3600
  45358. }
  45359. },
  45360. },
  45361. [
  45362. {
  45363. name: "Normal",
  45364. height: math.unit(6 + 3/12, "feet"),
  45365. default: true
  45366. },
  45367. ]
  45368. ))
  45369. characterMakers.push(() => makeCharacter(
  45370. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45371. {
  45372. front: {
  45373. height: math.unit(5, "feet"),
  45374. weight: math.unit(90, "lb"),
  45375. name: "Front",
  45376. image: {
  45377. source: "./media/characters/riley-bishop/front.svg",
  45378. extra: 1450/1428,
  45379. bottom: 152/1602
  45380. }
  45381. },
  45382. },
  45383. [
  45384. {
  45385. name: "Normal",
  45386. height: math.unit(5, "feet"),
  45387. default: true
  45388. },
  45389. ]
  45390. ))
  45391. characterMakers.push(() => makeCharacter(
  45392. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45393. {
  45394. side: {
  45395. height: math.unit(8 + 2/12, "feet"),
  45396. weight: math.unit(500, "kg"),
  45397. name: "Side",
  45398. image: {
  45399. source: "./media/characters/theo-arcanine/side.svg",
  45400. extra: 1342/1074,
  45401. bottom: 111/1453
  45402. }
  45403. },
  45404. },
  45405. [
  45406. {
  45407. name: "Normal",
  45408. height: math.unit(8 + 2/12, "feet"),
  45409. default: true
  45410. },
  45411. ]
  45412. ))
  45413. characterMakers.push(() => makeCharacter(
  45414. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45415. {
  45416. front: {
  45417. height: math.unit(4, "feet"),
  45418. name: "Front",
  45419. image: {
  45420. source: "./media/characters/kali/front.svg",
  45421. extra: 1921/1357,
  45422. bottom: 70/1991
  45423. }
  45424. },
  45425. },
  45426. [
  45427. {
  45428. name: "Normal",
  45429. height: math.unit(4, "feet"),
  45430. default: true
  45431. },
  45432. {
  45433. name: "Macro",
  45434. height: math.unit(32, "meters")
  45435. },
  45436. {
  45437. name: "Macro+",
  45438. height: math.unit(150, "meters")
  45439. },
  45440. {
  45441. name: "Megamacro",
  45442. height: math.unit(7500, "meters")
  45443. },
  45444. {
  45445. name: "Megamacro+",
  45446. height: math.unit(80, "kilometers")
  45447. },
  45448. ]
  45449. ))
  45450. characterMakers.push(() => makeCharacter(
  45451. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45452. {
  45453. side: {
  45454. height: math.unit(5 + 11/12, "feet"),
  45455. weight: math.unit(236, "lb"),
  45456. name: "Side",
  45457. image: {
  45458. source: "./media/characters/gapp/side.svg",
  45459. extra: 775/340,
  45460. bottom: 58/833
  45461. }
  45462. },
  45463. mouth: {
  45464. height: math.unit(2.98, "feet"),
  45465. name: "Mouth",
  45466. image: {
  45467. source: "./media/characters/gapp/mouth.svg"
  45468. }
  45469. },
  45470. },
  45471. [
  45472. {
  45473. name: "Normal",
  45474. height: math.unit(5 + 1/12, "feet"),
  45475. default: true
  45476. },
  45477. ]
  45478. ))
  45479. characterMakers.push(() => makeCharacter(
  45480. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45481. {
  45482. front: {
  45483. height: math.unit(6, "feet"),
  45484. name: "Front",
  45485. image: {
  45486. source: "./media/characters/persephone/front.svg",
  45487. extra: 1895/1717,
  45488. bottom: 96/1991
  45489. }
  45490. },
  45491. back: {
  45492. height: math.unit(6, "feet"),
  45493. name: "Back",
  45494. image: {
  45495. source: "./media/characters/persephone/back.svg",
  45496. extra: 1868/1679,
  45497. bottom: 26/1894
  45498. }
  45499. },
  45500. casual: {
  45501. height: math.unit(6, "feet"),
  45502. name: "Casual",
  45503. image: {
  45504. source: "./media/characters/persephone/casual.svg",
  45505. extra: 1713/1541,
  45506. bottom: 76/1789
  45507. }
  45508. },
  45509. },
  45510. [
  45511. {
  45512. name: "Human Size",
  45513. height: math.unit(6, "feet")
  45514. },
  45515. {
  45516. name: "Big Steppy",
  45517. height: math.unit(600, "meters"),
  45518. default: true
  45519. },
  45520. {
  45521. name: "Galaxy Brain",
  45522. height: math.unit(1, "zettameter")
  45523. },
  45524. ]
  45525. ))
  45526. characterMakers.push(() => makeCharacter(
  45527. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45528. {
  45529. front: {
  45530. height: math.unit(1.85, "meters"),
  45531. name: "Front",
  45532. image: {
  45533. source: "./media/characters/riley-foxthing/front.svg",
  45534. extra: 1495/1354,
  45535. bottom: 122/1617
  45536. }
  45537. },
  45538. frontAlt: {
  45539. height: math.unit(1.85, "meters"),
  45540. name: "Front (Alt)",
  45541. image: {
  45542. source: "./media/characters/riley-foxthing/front-alt.svg",
  45543. extra: 1572/1389,
  45544. bottom: 116/1688
  45545. }
  45546. },
  45547. },
  45548. [
  45549. {
  45550. name: "Normal Sized",
  45551. height: math.unit(1.85, "meters"),
  45552. default: true
  45553. },
  45554. {
  45555. name: "Quite Sizable",
  45556. height: math.unit(5, "meters")
  45557. },
  45558. {
  45559. name: "Rather Large",
  45560. height: math.unit(20, "meters")
  45561. },
  45562. {
  45563. name: "Macro",
  45564. height: math.unit(450, "meters")
  45565. },
  45566. {
  45567. name: "Giga",
  45568. height: math.unit(5, "km")
  45569. },
  45570. ]
  45571. ))
  45572. characterMakers.push(() => makeCharacter(
  45573. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45574. {
  45575. front: {
  45576. height: math.unit(6, "feet"),
  45577. weight: math.unit(200, "lb"),
  45578. name: "Front",
  45579. image: {
  45580. source: "./media/characters/blizzard/front.svg",
  45581. extra: 1136/990,
  45582. bottom: 136/1272
  45583. }
  45584. },
  45585. back: {
  45586. height: math.unit(6, "feet"),
  45587. weight: math.unit(200, "lb"),
  45588. name: "Back",
  45589. image: {
  45590. source: "./media/characters/blizzard/back.svg",
  45591. extra: 1175/1034,
  45592. bottom: 97/1272
  45593. }
  45594. },
  45595. sitting: {
  45596. height: math.unit(3.725, "feet"),
  45597. weight: math.unit(200, "lb"),
  45598. name: "Sitting",
  45599. image: {
  45600. source: "./media/characters/blizzard/sitting.svg",
  45601. extra: 581/485,
  45602. bottom: 90/671
  45603. }
  45604. },
  45605. frontWizard: {
  45606. height: math.unit(7.9, "feet"),
  45607. weight: math.unit(200, "lb"),
  45608. name: "Front (Wizard)",
  45609. image: {
  45610. source: "./media/characters/blizzard/front-wizard.svg"
  45611. }
  45612. },
  45613. backWizard: {
  45614. height: math.unit(7.9, "feet"),
  45615. weight: math.unit(200, "lb"),
  45616. name: "Back (Wizard)",
  45617. image: {
  45618. source: "./media/characters/blizzard/back-wizard.svg"
  45619. }
  45620. },
  45621. frontNsfw: {
  45622. height: math.unit(6, "feet"),
  45623. weight: math.unit(200, "lb"),
  45624. name: "Front (NSFW)",
  45625. image: {
  45626. source: "./media/characters/blizzard/front-nsfw.svg",
  45627. extra: 1136/990,
  45628. bottom: 136/1272
  45629. }
  45630. },
  45631. backNsfw: {
  45632. height: math.unit(6, "feet"),
  45633. weight: math.unit(200, "lb"),
  45634. name: "Back (NSFW)",
  45635. image: {
  45636. source: "./media/characters/blizzard/back-nsfw.svg",
  45637. extra: 1175/1034,
  45638. bottom: 97/1272
  45639. }
  45640. },
  45641. sittingNsfw: {
  45642. height: math.unit(3.725, "feet"),
  45643. weight: math.unit(200, "lb"),
  45644. name: "Sitting (NSFW)",
  45645. image: {
  45646. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45647. extra: 581/485,
  45648. bottom: 90/671
  45649. }
  45650. },
  45651. wizardFrontNsfw: {
  45652. height: math.unit(7.9, "feet"),
  45653. weight: math.unit(200, "lb"),
  45654. name: "Wizard (Front, NSFW)",
  45655. image: {
  45656. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45657. }
  45658. },
  45659. },
  45660. [
  45661. {
  45662. name: "Normal",
  45663. height: math.unit(6, "feet"),
  45664. default: true
  45665. },
  45666. ]
  45667. ))
  45668. characterMakers.push(() => makeCharacter(
  45669. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45670. {
  45671. front: {
  45672. height: math.unit(5 + 2/12, "feet"),
  45673. name: "Front",
  45674. image: {
  45675. source: "./media/characters/lumi/front.svg",
  45676. extra: 1328/1268,
  45677. bottom: 103/1431
  45678. }
  45679. },
  45680. back: {
  45681. height: math.unit(5 + 2/12, "feet"),
  45682. name: "Back",
  45683. image: {
  45684. source: "./media/characters/lumi/back.svg",
  45685. extra: 1381/1327,
  45686. bottom: 43/1424
  45687. }
  45688. },
  45689. },
  45690. [
  45691. {
  45692. name: "Normal",
  45693. height: math.unit(5 + 2/12, "feet"),
  45694. default: true
  45695. },
  45696. ]
  45697. ))
  45698. characterMakers.push(() => makeCharacter(
  45699. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45700. {
  45701. front: {
  45702. height: math.unit(5 + 9/12, "feet"),
  45703. name: "Front",
  45704. image: {
  45705. source: "./media/characters/aliya-cotton/front.svg",
  45706. extra: 577/564,
  45707. bottom: 29/606
  45708. }
  45709. },
  45710. },
  45711. [
  45712. {
  45713. name: "Normal",
  45714. height: math.unit(5 + 9/12, "feet"),
  45715. default: true
  45716. },
  45717. ]
  45718. ))
  45719. characterMakers.push(() => makeCharacter(
  45720. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45721. {
  45722. front: {
  45723. height: math.unit(2.7, "meters"),
  45724. weight: math.unit(25000, "lb"),
  45725. name: "Front",
  45726. image: {
  45727. source: "./media/characters/noah-luxray/front.svg",
  45728. extra: 1644/825,
  45729. bottom: 339/1983
  45730. }
  45731. },
  45732. side: {
  45733. height: math.unit(2.97, "meters"),
  45734. weight: math.unit(25000, "lb"),
  45735. name: "Side",
  45736. image: {
  45737. source: "./media/characters/noah-luxray/side.svg",
  45738. extra: 1319/650,
  45739. bottom: 163/1482
  45740. }
  45741. },
  45742. dick: {
  45743. height: math.unit(7.4, "feet"),
  45744. weight: math.unit(2500, "lb"),
  45745. name: "Dick",
  45746. image: {
  45747. source: "./media/characters/noah-luxray/dick.svg"
  45748. }
  45749. },
  45750. dickAlt: {
  45751. height: math.unit(10.83, "feet"),
  45752. weight: math.unit(2500, "lb"),
  45753. name: "Dick-alt",
  45754. image: {
  45755. source: "./media/characters/noah-luxray/dick-alt.svg"
  45756. }
  45757. },
  45758. },
  45759. [
  45760. {
  45761. name: "BIG",
  45762. height: math.unit(2.7, "meters"),
  45763. default: true
  45764. },
  45765. ]
  45766. ))
  45767. characterMakers.push(() => makeCharacter(
  45768. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45769. {
  45770. standing: {
  45771. height: math.unit(183, "cm"),
  45772. weight: math.unit(68, "kg"),
  45773. name: "Standing",
  45774. image: {
  45775. source: "./media/characters/arion/standing.svg",
  45776. extra: 1869/1807,
  45777. bottom: 93/1962
  45778. }
  45779. },
  45780. reclining: {
  45781. height: math.unit(70.5, "cm"),
  45782. weight: math.unit(68, "lb"),
  45783. name: "Reclining",
  45784. image: {
  45785. source: "./media/characters/arion/reclining.svg",
  45786. extra: 937/870,
  45787. bottom: 63/1000
  45788. }
  45789. },
  45790. },
  45791. [
  45792. {
  45793. name: "Colossus Size, Low",
  45794. height: math.unit(33, "meters"),
  45795. default: true
  45796. },
  45797. {
  45798. name: "Colossus Size, Mid",
  45799. height: math.unit(52, "meters")
  45800. },
  45801. {
  45802. name: "Colossus Size, High",
  45803. height: math.unit(60, "meters")
  45804. },
  45805. {
  45806. name: "Titan Size, Low",
  45807. height: math.unit(91, "meters"),
  45808. },
  45809. {
  45810. name: "Titan Size, Mid",
  45811. height: math.unit(122, "meters")
  45812. },
  45813. {
  45814. name: "Titan Size, High",
  45815. height: math.unit(162, "meters")
  45816. },
  45817. ]
  45818. ))
  45819. characterMakers.push(() => makeCharacter(
  45820. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45821. {
  45822. front: {
  45823. height: math.unit(53, "meters"),
  45824. name: "Front",
  45825. image: {
  45826. source: "./media/characters/stellar-marbey/front.svg",
  45827. extra: 1913/1805,
  45828. bottom: 92/2005
  45829. }
  45830. },
  45831. back: {
  45832. height: math.unit(53, "meters"),
  45833. name: "Back",
  45834. image: {
  45835. source: "./media/characters/stellar-marbey/back.svg",
  45836. extra: 1960/1851,
  45837. bottom: 28/1988
  45838. }
  45839. },
  45840. mouth: {
  45841. height: math.unit(3.5, "meters"),
  45842. name: "Mouth",
  45843. image: {
  45844. source: "./media/characters/stellar-marbey/mouth.svg"
  45845. }
  45846. },
  45847. },
  45848. [
  45849. {
  45850. name: "Macro",
  45851. height: math.unit(53, "meters"),
  45852. default: true
  45853. },
  45854. ]
  45855. ))
  45856. characterMakers.push(() => makeCharacter(
  45857. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45858. {
  45859. front: {
  45860. height: math.unit(8 + 1/12, "feet"),
  45861. weight: math.unit(233, "lb"),
  45862. name: "Front",
  45863. image: {
  45864. source: "./media/characters/matsu/front.svg",
  45865. extra: 832/772,
  45866. bottom: 40/872
  45867. }
  45868. },
  45869. back: {
  45870. height: math.unit(8 + 1/12, "feet"),
  45871. weight: math.unit(233, "lb"),
  45872. name: "Back",
  45873. image: {
  45874. source: "./media/characters/matsu/back.svg",
  45875. extra: 839/780,
  45876. bottom: 47/886
  45877. }
  45878. },
  45879. },
  45880. [
  45881. {
  45882. name: "Normal",
  45883. height: math.unit(8 + 1/12, "feet"),
  45884. default: true
  45885. },
  45886. ]
  45887. ))
  45888. characterMakers.push(() => makeCharacter(
  45889. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45890. {
  45891. front: {
  45892. height: math.unit(4, "feet"),
  45893. weight: math.unit(148, "lb"),
  45894. name: "Front",
  45895. image: {
  45896. source: "./media/characters/thiz/front.svg",
  45897. extra: 1913/1748,
  45898. bottom: 62/1975
  45899. }
  45900. },
  45901. },
  45902. [
  45903. {
  45904. name: "Normal",
  45905. height: math.unit(4, "feet"),
  45906. default: true
  45907. },
  45908. ]
  45909. ))
  45910. characterMakers.push(() => makeCharacter(
  45911. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45912. {
  45913. front: {
  45914. height: math.unit(7 + 6/12, "feet"),
  45915. weight: math.unit(267, "lb"),
  45916. name: "Front",
  45917. image: {
  45918. source: "./media/characters/marcel/front.svg",
  45919. extra: 1221/1096,
  45920. bottom: 76/1297
  45921. }
  45922. },
  45923. },
  45924. [
  45925. {
  45926. name: "Normal",
  45927. height: math.unit(7 + 6/12, "feet"),
  45928. default: true
  45929. },
  45930. ]
  45931. ))
  45932. characterMakers.push(() => makeCharacter(
  45933. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45934. {
  45935. side: {
  45936. height: math.unit(42, "meters"),
  45937. name: "Side",
  45938. image: {
  45939. source: "./media/characters/flake/side.svg",
  45940. extra: 1525/1306,
  45941. bottom: 209/1734
  45942. }
  45943. },
  45944. },
  45945. [
  45946. {
  45947. name: "Normal",
  45948. height: math.unit(42, "meters"),
  45949. default: true
  45950. },
  45951. ]
  45952. ))
  45953. characterMakers.push(() => makeCharacter(
  45954. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45955. {
  45956. dressed: {
  45957. height: math.unit(6 + 4/12, "feet"),
  45958. weight: math.unit(520, "lb"),
  45959. name: "Dressed",
  45960. image: {
  45961. source: "./media/characters/someonne/dressed.svg",
  45962. extra: 1020/1010,
  45963. bottom: 178/1198
  45964. }
  45965. },
  45966. undressed: {
  45967. height: math.unit(6 + 4/12, "feet"),
  45968. weight: math.unit(520, "lb"),
  45969. name: "Undressed",
  45970. image: {
  45971. source: "./media/characters/someonne/undressed.svg",
  45972. extra: 1019/1014,
  45973. bottom: 169/1188
  45974. }
  45975. },
  45976. },
  45977. [
  45978. {
  45979. name: "Normal",
  45980. height: math.unit(6 + 4/12, "feet"),
  45981. default: true
  45982. },
  45983. ]
  45984. ))
  45985. characterMakers.push(() => makeCharacter(
  45986. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45987. {
  45988. front: {
  45989. height: math.unit(3, "feet"),
  45990. weight: math.unit(30, "lb"),
  45991. name: "Front",
  45992. image: {
  45993. source: "./media/characters/till/front.svg",
  45994. extra: 892/823,
  45995. bottom: 55/947
  45996. }
  45997. },
  45998. },
  45999. [
  46000. {
  46001. name: "Normal",
  46002. height: math.unit(3, "feet"),
  46003. default: true
  46004. },
  46005. ]
  46006. ))
  46007. characterMakers.push(() => makeCharacter(
  46008. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46009. {
  46010. front: {
  46011. height: math.unit(9 + 8/12, "feet"),
  46012. weight: math.unit(800, "lb"),
  46013. name: "Front",
  46014. image: {
  46015. source: "./media/characters/sydney-heki/front.svg",
  46016. extra: 1360/1300,
  46017. bottom: 22/1382
  46018. }
  46019. },
  46020. back: {
  46021. height: math.unit(9 + 8/12, "feet"),
  46022. weight: math.unit(800, "lb"),
  46023. name: "Back",
  46024. image: {
  46025. source: "./media/characters/sydney-heki/back.svg",
  46026. extra: 1356/1293,
  46027. bottom: 12/1368
  46028. }
  46029. },
  46030. frontDressed: {
  46031. height: math.unit(9 + 8/12, "feet"),
  46032. weight: math.unit(800, "lb"),
  46033. name: "Front-dressed",
  46034. image: {
  46035. source: "./media/characters/sydney-heki/front-dressed.svg",
  46036. extra: 1360/1300,
  46037. bottom: 22/1382
  46038. }
  46039. },
  46040. },
  46041. [
  46042. {
  46043. name: "Normal",
  46044. height: math.unit(9 + 8/12, "feet"),
  46045. default: true
  46046. },
  46047. {
  46048. name: "Macro",
  46049. height: math.unit(500, "feet")
  46050. },
  46051. {
  46052. name: "Megamacro",
  46053. height: math.unit(3.6, "miles")
  46054. },
  46055. ]
  46056. ))
  46057. characterMakers.push(() => makeCharacter(
  46058. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46059. {
  46060. front: {
  46061. height: math.unit(200, "cm"),
  46062. weight: math.unit(250, "lb"),
  46063. name: "Front",
  46064. image: {
  46065. source: "./media/characters/fowler-karlsson/front.svg",
  46066. extra: 897/845,
  46067. bottom: 123/1020
  46068. }
  46069. },
  46070. back: {
  46071. height: math.unit(200, "cm"),
  46072. weight: math.unit(250, "lb"),
  46073. name: "Back",
  46074. image: {
  46075. source: "./media/characters/fowler-karlsson/back.svg",
  46076. extra: 999/944,
  46077. bottom: 26/1025
  46078. }
  46079. },
  46080. dick: {
  46081. height: math.unit(1.92, "feet"),
  46082. weight: math.unit(150, "lb"),
  46083. name: "Dick",
  46084. image: {
  46085. source: "./media/characters/fowler-karlsson/dick.svg"
  46086. }
  46087. },
  46088. },
  46089. [
  46090. {
  46091. name: "Normal",
  46092. height: math.unit(200, "cm"),
  46093. default: true
  46094. },
  46095. {
  46096. name: "Smaller Macro",
  46097. height: math.unit(90, "m")
  46098. },
  46099. {
  46100. name: "Macro",
  46101. height: math.unit(150, "m")
  46102. },
  46103. {
  46104. name: "Bigger Macro",
  46105. height: math.unit(300, "m")
  46106. },
  46107. ]
  46108. ))
  46109. characterMakers.push(() => makeCharacter(
  46110. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46111. {
  46112. side: {
  46113. height: math.unit(8 + 2/12, "feet"),
  46114. weight: math.unit(1, "tonne"),
  46115. name: "Side",
  46116. image: {
  46117. source: "./media/characters/rylide/side.svg",
  46118. extra: 1318/1034,
  46119. bottom: 106/1424
  46120. }
  46121. },
  46122. sitting: {
  46123. height: math.unit(303, "cm"),
  46124. weight: math.unit(1, "tonne"),
  46125. name: "Sitting",
  46126. image: {
  46127. source: "./media/characters/rylide/sitting.svg",
  46128. extra: 1303/1103,
  46129. bottom: 36/1339
  46130. }
  46131. },
  46132. },
  46133. [
  46134. {
  46135. name: "Normal",
  46136. height: math.unit(8 + 2/12, "feet"),
  46137. default: true
  46138. },
  46139. ]
  46140. ))
  46141. characterMakers.push(() => makeCharacter(
  46142. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46143. {
  46144. front: {
  46145. height: math.unit(5 + 10/12, "feet"),
  46146. weight: math.unit(160, "lb"),
  46147. name: "Front",
  46148. image: {
  46149. source: "./media/characters/pudask/front.svg",
  46150. extra: 1616/1590,
  46151. bottom: 161/1777
  46152. }
  46153. },
  46154. },
  46155. [
  46156. {
  46157. name: "Ferret Height",
  46158. height: math.unit(2 + 5/12, "feet")
  46159. },
  46160. {
  46161. name: "Canon Height",
  46162. height: math.unit(5 + 10/12, "feet"),
  46163. default: true
  46164. },
  46165. ]
  46166. ))
  46167. characterMakers.push(() => makeCharacter(
  46168. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46169. {
  46170. front: {
  46171. height: math.unit(3 + 6/12, "feet"),
  46172. weight: math.unit(60, "lb"),
  46173. name: "Front",
  46174. image: {
  46175. source: "./media/characters/ramita/front.svg",
  46176. extra: 1402/1232,
  46177. bottom: 62/1464
  46178. }
  46179. },
  46180. dressed: {
  46181. height: math.unit(3 + 6/12, "feet"),
  46182. weight: math.unit(60, "lb"),
  46183. name: "Dressed",
  46184. image: {
  46185. source: "./media/characters/ramita/dressed.svg",
  46186. extra: 1534/1249,
  46187. bottom: 50/1584
  46188. }
  46189. },
  46190. },
  46191. [
  46192. {
  46193. name: "Normal",
  46194. height: math.unit(3 + 6/12, "feet"),
  46195. default: true
  46196. },
  46197. ]
  46198. ))
  46199. characterMakers.push(() => makeCharacter(
  46200. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46201. {
  46202. front: {
  46203. height: math.unit(8, "feet"),
  46204. name: "Front",
  46205. image: {
  46206. source: "./media/characters/ark/front.svg",
  46207. extra: 772/693,
  46208. bottom: 45/817
  46209. }
  46210. },
  46211. },
  46212. [
  46213. {
  46214. name: "Normal",
  46215. height: math.unit(8, "feet"),
  46216. default: true
  46217. },
  46218. ]
  46219. ))
  46220. characterMakers.push(() => makeCharacter(
  46221. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46222. {
  46223. front: {
  46224. height: math.unit(6, "feet"),
  46225. weight: math.unit(250, "lb"),
  46226. volume: math.unit(5/8, "gallons"),
  46227. name: "Front",
  46228. image: {
  46229. source: "./media/characters/ludwig-horn/front.svg",
  46230. extra: 1782/1635,
  46231. bottom: 96/1878
  46232. }
  46233. },
  46234. back: {
  46235. height: math.unit(6, "feet"),
  46236. weight: math.unit(250, "lb"),
  46237. volume: math.unit(5/8, "gallons"),
  46238. name: "Back",
  46239. image: {
  46240. source: "./media/characters/ludwig-horn/back.svg",
  46241. extra: 1874/1729,
  46242. bottom: 27/1901
  46243. }
  46244. },
  46245. dick: {
  46246. height: math.unit(1.05, "feet"),
  46247. weight: math.unit(15, "lb"),
  46248. volume: math.unit(5/8, "gallons"),
  46249. name: "Dick",
  46250. image: {
  46251. source: "./media/characters/ludwig-horn/dick.svg"
  46252. }
  46253. },
  46254. },
  46255. [
  46256. {
  46257. name: "Small",
  46258. height: math.unit(6, "feet")
  46259. },
  46260. {
  46261. name: "Typical",
  46262. height: math.unit(12, "feet"),
  46263. default: true
  46264. },
  46265. {
  46266. name: "Building",
  46267. height: math.unit(80, "feet")
  46268. },
  46269. {
  46270. name: "Town",
  46271. height: math.unit(800, "feet")
  46272. },
  46273. {
  46274. name: "Kingdom",
  46275. height: math.unit(80000, "feet")
  46276. },
  46277. {
  46278. name: "Planet",
  46279. height: math.unit(8000000, "feet")
  46280. },
  46281. {
  46282. name: "Universe",
  46283. height: math.unit(8000000000, "feet")
  46284. },
  46285. {
  46286. name: "Transcended",
  46287. height: math.unit(8e27, "feet")
  46288. },
  46289. ]
  46290. ))
  46291. characterMakers.push(() => makeCharacter(
  46292. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46293. {
  46294. front: {
  46295. height: math.unit(5, "feet"),
  46296. weight: math.unit(50, "kg"),
  46297. name: "Front",
  46298. image: {
  46299. source: "./media/characters/biot-avery/front.svg",
  46300. extra: 1295/1232,
  46301. bottom: 86/1381
  46302. }
  46303. },
  46304. },
  46305. [
  46306. {
  46307. name: "Normal",
  46308. height: math.unit(5, "feet"),
  46309. default: true
  46310. },
  46311. ]
  46312. ))
  46313. characterMakers.push(() => makeCharacter(
  46314. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46315. {
  46316. front: {
  46317. height: math.unit(6, "feet"),
  46318. name: "Front",
  46319. image: {
  46320. source: "./media/characters/kitsune-kiro/front.svg",
  46321. extra: 1270/1158,
  46322. bottom: 42/1312
  46323. }
  46324. },
  46325. frontAlt: {
  46326. height: math.unit(6, "feet"),
  46327. name: "Front-alt",
  46328. image: {
  46329. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46330. extra: 1130/1081,
  46331. bottom: 36/1166
  46332. }
  46333. },
  46334. },
  46335. [
  46336. {
  46337. name: "Smol",
  46338. height: math.unit(3, "feet")
  46339. },
  46340. {
  46341. name: "Normal",
  46342. height: math.unit(6, "feet"),
  46343. default: true
  46344. },
  46345. ]
  46346. ))
  46347. characterMakers.push(() => makeCharacter(
  46348. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46349. {
  46350. front: {
  46351. height: math.unit(6, "feet"),
  46352. weight: math.unit(125, "lb"),
  46353. name: "Front",
  46354. image: {
  46355. source: "./media/characters/jack-thatcher/front.svg",
  46356. extra: 1474/1370,
  46357. bottom: 26/1500
  46358. }
  46359. },
  46360. back: {
  46361. height: math.unit(6, "feet"),
  46362. weight: math.unit(125, "lb"),
  46363. name: "Back",
  46364. image: {
  46365. source: "./media/characters/jack-thatcher/back.svg",
  46366. extra: 1489/1384,
  46367. bottom: 18/1507
  46368. }
  46369. },
  46370. },
  46371. [
  46372. {
  46373. name: "Normal",
  46374. height: math.unit(6, "feet"),
  46375. default: true
  46376. },
  46377. {
  46378. name: "Macro",
  46379. height: math.unit(75, "feet")
  46380. },
  46381. {
  46382. name: "Macro-er",
  46383. height: math.unit(250, "feet")
  46384. },
  46385. ]
  46386. ))
  46387. characterMakers.push(() => makeCharacter(
  46388. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46389. {
  46390. front: {
  46391. height: math.unit(7, "feet"),
  46392. weight: math.unit(110, "kg"),
  46393. name: "Front",
  46394. image: {
  46395. source: "./media/characters/max-hyper/front.svg",
  46396. extra: 1969/1881,
  46397. bottom: 49/2018
  46398. }
  46399. },
  46400. },
  46401. [
  46402. {
  46403. name: "Normal",
  46404. height: math.unit(7, "feet"),
  46405. default: true
  46406. },
  46407. ]
  46408. ))
  46409. characterMakers.push(() => makeCharacter(
  46410. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46411. {
  46412. front: {
  46413. height: math.unit(5 + 5/12, "feet"),
  46414. weight: math.unit(160, "lb"),
  46415. name: "Front",
  46416. image: {
  46417. source: "./media/characters/spook/front.svg",
  46418. extra: 794/791,
  46419. bottom: 54/848
  46420. }
  46421. },
  46422. back: {
  46423. height: math.unit(5 + 5/12, "feet"),
  46424. weight: math.unit(160, "lb"),
  46425. name: "Back",
  46426. image: {
  46427. source: "./media/characters/spook/back.svg",
  46428. extra: 812/798,
  46429. bottom: 32/844
  46430. }
  46431. },
  46432. },
  46433. [
  46434. {
  46435. name: "Normal",
  46436. height: math.unit(5 + 5/12, "feet"),
  46437. default: true
  46438. },
  46439. ]
  46440. ))
  46441. characterMakers.push(() => makeCharacter(
  46442. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46443. {
  46444. front: {
  46445. height: math.unit(18, "feet"),
  46446. name: "Front",
  46447. image: {
  46448. source: "./media/characters/xeaduulix/front.svg",
  46449. extra: 1380/1166,
  46450. bottom: 110/1490
  46451. }
  46452. },
  46453. back: {
  46454. height: math.unit(18, "feet"),
  46455. name: "Back",
  46456. image: {
  46457. source: "./media/characters/xeaduulix/back.svg",
  46458. extra: 1592/1170,
  46459. bottom: 128/1720
  46460. }
  46461. },
  46462. frontNsfw: {
  46463. height: math.unit(18, "feet"),
  46464. name: "Front (NSFW)",
  46465. image: {
  46466. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46467. extra: 1380/1166,
  46468. bottom: 110/1490
  46469. }
  46470. },
  46471. backNsfw: {
  46472. height: math.unit(18, "feet"),
  46473. name: "Back (NSFW)",
  46474. image: {
  46475. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46476. extra: 1592/1170,
  46477. bottom: 128/1720
  46478. }
  46479. },
  46480. },
  46481. [
  46482. {
  46483. name: "Normal",
  46484. height: math.unit(18, "feet"),
  46485. default: true
  46486. },
  46487. ]
  46488. ))
  46489. characterMakers.push(() => makeCharacter(
  46490. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46491. {
  46492. spreadWings: {
  46493. height: math.unit(20, "feet"),
  46494. name: "Spread Wings",
  46495. image: {
  46496. source: "./media/characters/fledge/spread-wings.svg",
  46497. extra: 693/635,
  46498. bottom: 26/719
  46499. }
  46500. },
  46501. front: {
  46502. height: math.unit(20, "feet"),
  46503. name: "Front",
  46504. image: {
  46505. source: "./media/characters/fledge/front.svg",
  46506. extra: 684/637,
  46507. bottom: 18/702
  46508. }
  46509. },
  46510. frontAlt: {
  46511. height: math.unit(20, "feet"),
  46512. name: "Front (Alt)",
  46513. image: {
  46514. source: "./media/characters/fledge/front-alt.svg",
  46515. extra: 708/664,
  46516. bottom: 13/721
  46517. }
  46518. },
  46519. back: {
  46520. height: math.unit(20, "feet"),
  46521. name: "Back",
  46522. image: {
  46523. source: "./media/characters/fledge/back.svg",
  46524. extra: 718/634,
  46525. bottom: 22/740
  46526. }
  46527. },
  46528. head: {
  46529. height: math.unit(5.55, "feet"),
  46530. name: "Head",
  46531. image: {
  46532. source: "./media/characters/fledge/head.svg"
  46533. }
  46534. },
  46535. headAlt: {
  46536. height: math.unit(5.1, "feet"),
  46537. name: "Head (Alt)",
  46538. image: {
  46539. source: "./media/characters/fledge/head-alt.svg"
  46540. }
  46541. },
  46542. },
  46543. [
  46544. {
  46545. name: "Small",
  46546. height: math.unit(6 + 2/12, "feet")
  46547. },
  46548. {
  46549. name: "Big",
  46550. height: math.unit(20, "feet"),
  46551. default: true
  46552. },
  46553. {
  46554. name: "Giant",
  46555. height: math.unit(100, "feet")
  46556. },
  46557. {
  46558. name: "Macro",
  46559. height: math.unit(200, "feet")
  46560. },
  46561. ]
  46562. ))
  46563. characterMakers.push(() => makeCharacter(
  46564. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46565. {
  46566. front: {
  46567. height: math.unit(1, "meter"),
  46568. name: "Front",
  46569. image: {
  46570. source: "./media/characters/atlas-morenai/front.svg",
  46571. extra: 1275/1043,
  46572. bottom: 19/1294
  46573. }
  46574. },
  46575. back: {
  46576. height: math.unit(1, "meter"),
  46577. name: "Back",
  46578. image: {
  46579. source: "./media/characters/atlas-morenai/back.svg",
  46580. extra: 1141/1001,
  46581. bottom: 25/1166
  46582. }
  46583. },
  46584. },
  46585. [
  46586. {
  46587. name: "Normal",
  46588. height: math.unit(1, "meter"),
  46589. default: true
  46590. },
  46591. {
  46592. name: "Magic-Infused",
  46593. height: math.unit(5, "meters")
  46594. },
  46595. ]
  46596. ))
  46597. characterMakers.push(() => makeCharacter(
  46598. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46599. {
  46600. front: {
  46601. height: math.unit(5, "meters"),
  46602. name: "Front",
  46603. image: {
  46604. source: "./media/characters/cintia/front.svg",
  46605. extra: 1312/1228,
  46606. bottom: 38/1350
  46607. }
  46608. },
  46609. back: {
  46610. height: math.unit(5, "meters"),
  46611. name: "Back",
  46612. image: {
  46613. source: "./media/characters/cintia/back.svg",
  46614. extra: 1260/1166,
  46615. bottom: 98/1358
  46616. }
  46617. },
  46618. frontDick: {
  46619. height: math.unit(5, "meters"),
  46620. name: "Front (Dick)",
  46621. image: {
  46622. source: "./media/characters/cintia/front-dick.svg",
  46623. extra: 1312/1228,
  46624. bottom: 38/1350
  46625. }
  46626. },
  46627. backDick: {
  46628. height: math.unit(5, "meters"),
  46629. name: "Back (Dick)",
  46630. image: {
  46631. source: "./media/characters/cintia/back-dick.svg",
  46632. extra: 1260/1166,
  46633. bottom: 98/1358
  46634. }
  46635. },
  46636. bust: {
  46637. height: math.unit(1.97, "meters"),
  46638. name: "Bust",
  46639. image: {
  46640. source: "./media/characters/cintia/bust.svg",
  46641. extra: 617/565,
  46642. bottom: 0/617
  46643. }
  46644. },
  46645. },
  46646. [
  46647. {
  46648. name: "Normal",
  46649. height: math.unit(5, "meters"),
  46650. default: true
  46651. },
  46652. ]
  46653. ))
  46654. characterMakers.push(() => makeCharacter(
  46655. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46656. {
  46657. side: {
  46658. height: math.unit(100, "feet"),
  46659. name: "Side",
  46660. image: {
  46661. source: "./media/characters/denora/side.svg",
  46662. extra: 875/803,
  46663. bottom: 9/884
  46664. }
  46665. },
  46666. },
  46667. [
  46668. {
  46669. name: "Standard",
  46670. height: math.unit(100, "feet"),
  46671. default: true
  46672. },
  46673. {
  46674. name: "Grand",
  46675. height: math.unit(1000, "feet")
  46676. },
  46677. {
  46678. name: "Conquering",
  46679. height: math.unit(10000, "feet")
  46680. },
  46681. ]
  46682. ))
  46683. characterMakers.push(() => makeCharacter(
  46684. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46685. {
  46686. dressed: {
  46687. height: math.unit(8 + 5/12, "feet"),
  46688. weight: math.unit(700, "lb"),
  46689. name: "Dressed",
  46690. image: {
  46691. source: "./media/characters/kiva/dressed.svg",
  46692. extra: 1102/1055,
  46693. bottom: 60/1162
  46694. }
  46695. },
  46696. nude: {
  46697. height: math.unit(8 + 5/12, "feet"),
  46698. weight: math.unit(700, "lb"),
  46699. name: "Nude",
  46700. image: {
  46701. source: "./media/characters/kiva/nude.svg",
  46702. extra: 1102/1055,
  46703. bottom: 60/1162
  46704. }
  46705. },
  46706. },
  46707. [
  46708. {
  46709. name: "Base Height",
  46710. height: math.unit(8 + 5/12, "feet"),
  46711. default: true
  46712. },
  46713. {
  46714. name: "Macro",
  46715. height: math.unit(100, "feet")
  46716. },
  46717. {
  46718. name: "Max",
  46719. height: math.unit(3280, "feet")
  46720. },
  46721. ]
  46722. ))
  46723. characterMakers.push(() => makeCharacter(
  46724. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46725. {
  46726. front: {
  46727. height: math.unit(6 + 8/12, "feet"),
  46728. weight: math.unit(250, "lb"),
  46729. name: "Front",
  46730. image: {
  46731. source: "./media/characters/ztragon/front.svg",
  46732. extra: 1825/1684,
  46733. bottom: 98/1923
  46734. }
  46735. },
  46736. },
  46737. [
  46738. {
  46739. name: "Normal",
  46740. height: math.unit(6 + 8/12, "feet"),
  46741. default: true
  46742. },
  46743. {
  46744. name: "Macro",
  46745. height: math.unit(80, "feet")
  46746. },
  46747. ]
  46748. ))
  46749. characterMakers.push(() => makeCharacter(
  46750. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46751. {
  46752. front: {
  46753. height: math.unit(10.4, "feet"),
  46754. weight: math.unit(2, "tons"),
  46755. name: "Front",
  46756. image: {
  46757. source: "./media/characters/yesenia/front.svg",
  46758. extra: 1479/1474,
  46759. bottom: 233/1712
  46760. }
  46761. },
  46762. },
  46763. [
  46764. {
  46765. name: "Normal",
  46766. height: math.unit(10.4, "feet"),
  46767. default: true
  46768. },
  46769. ]
  46770. ))
  46771. characterMakers.push(() => makeCharacter(
  46772. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46773. {
  46774. normal: {
  46775. height: math.unit(6 + 1/12, "feet"),
  46776. weight: math.unit(180, "lb"),
  46777. name: "Normal",
  46778. image: {
  46779. source: "./media/characters/leanne-lycheborne/normal.svg",
  46780. extra: 1748/1660,
  46781. bottom: 98/1846
  46782. }
  46783. },
  46784. were: {
  46785. height: math.unit(12, "feet"),
  46786. weight: math.unit(1600, "lb"),
  46787. name: "Were",
  46788. image: {
  46789. source: "./media/characters/leanne-lycheborne/were.svg",
  46790. extra: 1485/1432,
  46791. bottom: 66/1551
  46792. }
  46793. },
  46794. },
  46795. [
  46796. {
  46797. name: "Normal",
  46798. height: math.unit(6 + 1/12, "feet"),
  46799. default: true
  46800. },
  46801. ]
  46802. ))
  46803. characterMakers.push(() => makeCharacter(
  46804. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46805. {
  46806. side: {
  46807. height: math.unit(13, "feet"),
  46808. name: "Side",
  46809. image: {
  46810. source: "./media/characters/kira-tyler/side.svg",
  46811. extra: 693/393,
  46812. bottom: 58/751
  46813. }
  46814. },
  46815. },
  46816. [
  46817. {
  46818. name: "Normal",
  46819. height: math.unit(13, "feet"),
  46820. default: true
  46821. },
  46822. ]
  46823. ))
  46824. characterMakers.push(() => makeCharacter(
  46825. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46826. {
  46827. front: {
  46828. height: math.unit(10.3, "feet"),
  46829. weight: math.unit(150, "lb"),
  46830. name: "Front",
  46831. image: {
  46832. source: "./media/characters/blaze/front.svg",
  46833. extra: 1378/1286,
  46834. bottom: 172/1550
  46835. }
  46836. },
  46837. },
  46838. [
  46839. {
  46840. name: "Normal",
  46841. height: math.unit(10.3, "feet"),
  46842. default: true
  46843. },
  46844. ]
  46845. ))
  46846. characterMakers.push(() => makeCharacter(
  46847. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46848. {
  46849. side: {
  46850. height: math.unit(2, "meters"),
  46851. weight: math.unit(400, "kg"),
  46852. name: "Side",
  46853. image: {
  46854. source: "./media/characters/anu/side.svg",
  46855. extra: 506/394,
  46856. bottom: 18/524
  46857. }
  46858. },
  46859. },
  46860. [
  46861. {
  46862. name: "Humanoid",
  46863. height: math.unit(2, "meters")
  46864. },
  46865. {
  46866. name: "Normal",
  46867. height: math.unit(5, "meters"),
  46868. default: true
  46869. },
  46870. ]
  46871. ))
  46872. characterMakers.push(() => makeCharacter(
  46873. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46874. {
  46875. front: {
  46876. height: math.unit(5 + 5/12, "feet"),
  46877. weight: math.unit(170, "lb"),
  46878. name: "Front",
  46879. image: {
  46880. source: "./media/characters/synx-the-lynx/front.svg",
  46881. extra: 1893/1745,
  46882. bottom: 17/1910
  46883. }
  46884. },
  46885. side: {
  46886. height: math.unit(5 + 5/12, "feet"),
  46887. weight: math.unit(170, "lb"),
  46888. name: "Side",
  46889. image: {
  46890. source: "./media/characters/synx-the-lynx/side.svg",
  46891. extra: 1884/1740,
  46892. bottom: 39/1923
  46893. }
  46894. },
  46895. back: {
  46896. height: math.unit(5 + 5/12, "feet"),
  46897. weight: math.unit(170, "lb"),
  46898. name: "Back",
  46899. image: {
  46900. source: "./media/characters/synx-the-lynx/back.svg",
  46901. extra: 1903/1755,
  46902. bottom: 14/1917
  46903. }
  46904. },
  46905. },
  46906. [
  46907. {
  46908. name: "Normal",
  46909. height: math.unit(5 + 5/12, "feet"),
  46910. default: true
  46911. },
  46912. ]
  46913. ))
  46914. characterMakers.push(() => makeCharacter(
  46915. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46916. {
  46917. back: {
  46918. height: math.unit(15, "feet"),
  46919. name: "Back",
  46920. image: {
  46921. source: "./media/characters/nadezda-fex/back.svg",
  46922. extra: 1695/1481,
  46923. bottom: 25/1720
  46924. }
  46925. },
  46926. },
  46927. [
  46928. {
  46929. name: "Normal",
  46930. height: math.unit(15, "feet"),
  46931. default: true
  46932. },
  46933. {
  46934. name: "Macro",
  46935. height: math.unit(2.5, "miles")
  46936. },
  46937. {
  46938. name: "Goddess",
  46939. height: math.unit(2, "multiverses")
  46940. },
  46941. ]
  46942. ))
  46943. characterMakers.push(() => makeCharacter(
  46944. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46945. {
  46946. front: {
  46947. height: math.unit(216, "cm"),
  46948. name: "Front",
  46949. image: {
  46950. source: "./media/characters/lev/front.svg",
  46951. extra: 1728/1670,
  46952. bottom: 82/1810
  46953. }
  46954. },
  46955. back: {
  46956. height: math.unit(216, "cm"),
  46957. name: "Back",
  46958. image: {
  46959. source: "./media/characters/lev/back.svg",
  46960. extra: 1738/1675,
  46961. bottom: 24/1762
  46962. }
  46963. },
  46964. dressed: {
  46965. height: math.unit(216, "cm"),
  46966. name: "Dressed",
  46967. image: {
  46968. source: "./media/characters/lev/dressed.svg",
  46969. extra: 1397/1351,
  46970. bottom: 73/1470
  46971. }
  46972. },
  46973. head: {
  46974. height: math.unit(0.51, "meter"),
  46975. name: "Head",
  46976. image: {
  46977. source: "./media/characters/lev/head.svg"
  46978. }
  46979. },
  46980. },
  46981. [
  46982. {
  46983. name: "Normal",
  46984. height: math.unit(216, "cm"),
  46985. default: true
  46986. },
  46987. {
  46988. name: "Relatively Macro",
  46989. height: math.unit(80, "meters")
  46990. },
  46991. {
  46992. name: "Megamacro",
  46993. height: math.unit(21600, "meters")
  46994. },
  46995. {
  46996. name: "Megamacro+",
  46997. height: math.unit(64800, "meters")
  46998. },
  46999. ]
  47000. ))
  47001. characterMakers.push(() => makeCharacter(
  47002. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47003. {
  47004. front: {
  47005. height: math.unit(2, "meters"),
  47006. weight: math.unit(80, "kg"),
  47007. name: "Front",
  47008. image: {
  47009. source: "./media/characters/moka/front.svg",
  47010. extra: 1337/1255,
  47011. bottom: 58/1395
  47012. }
  47013. },
  47014. },
  47015. [
  47016. {
  47017. name: "Micro",
  47018. height: math.unit(15, "cm")
  47019. },
  47020. {
  47021. name: "Normal",
  47022. height: math.unit(2, "meters"),
  47023. default: true
  47024. },
  47025. {
  47026. name: "Macro",
  47027. height: math.unit(20, "meters"),
  47028. },
  47029. ]
  47030. ))
  47031. characterMakers.push(() => makeCharacter(
  47032. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47033. {
  47034. front: {
  47035. height: math.unit(9, "feet"),
  47036. weight: math.unit(240, "lb"),
  47037. name: "Front",
  47038. image: {
  47039. source: "./media/characters/kuzco/front.svg",
  47040. extra: 1593/1487,
  47041. bottom: 32/1625
  47042. }
  47043. },
  47044. side: {
  47045. height: math.unit(9, "feet"),
  47046. weight: math.unit(240, "lb"),
  47047. name: "Side",
  47048. image: {
  47049. source: "./media/characters/kuzco/side.svg",
  47050. extra: 1575/1485,
  47051. bottom: 30/1605
  47052. }
  47053. },
  47054. back: {
  47055. height: math.unit(9, "feet"),
  47056. weight: math.unit(240, "lb"),
  47057. name: "Back",
  47058. image: {
  47059. source: "./media/characters/kuzco/back.svg",
  47060. extra: 1603/1514,
  47061. bottom: 14/1617
  47062. }
  47063. },
  47064. },
  47065. [
  47066. {
  47067. name: "Normal",
  47068. height: math.unit(9, "feet"),
  47069. default: true
  47070. },
  47071. ]
  47072. ))
  47073. characterMakers.push(() => makeCharacter(
  47074. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47075. {
  47076. side: {
  47077. height: math.unit(2, "meters"),
  47078. weight: math.unit(300, "kg"),
  47079. name: "Side",
  47080. image: {
  47081. source: "./media/characters/ceruleus/side.svg",
  47082. extra: 1068/974,
  47083. bottom: 126/1194
  47084. }
  47085. },
  47086. maw: {
  47087. height: math.unit(0.8125, "meter"),
  47088. name: "Maw",
  47089. image: {
  47090. source: "./media/characters/ceruleus/maw.svg"
  47091. }
  47092. },
  47093. },
  47094. [
  47095. {
  47096. name: "Normal",
  47097. height: math.unit(16, "meters"),
  47098. default: true
  47099. },
  47100. ]
  47101. ))
  47102. characterMakers.push(() => makeCharacter(
  47103. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47104. {
  47105. front: {
  47106. height: math.unit(9, "feet"),
  47107. weight: math.unit(500, "kg"),
  47108. name: "Front",
  47109. image: {
  47110. source: "./media/characters/acouya/front.svg",
  47111. extra: 1660/1473,
  47112. bottom: 28/1688
  47113. }
  47114. },
  47115. },
  47116. [
  47117. {
  47118. name: "Normal",
  47119. height: math.unit(9, "feet"),
  47120. default: true
  47121. },
  47122. ]
  47123. ))
  47124. characterMakers.push(() => makeCharacter(
  47125. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47126. {
  47127. front: {
  47128. height: math.unit(5 + 6/12, "feet"),
  47129. weight: math.unit(195, "lb"),
  47130. name: "Front",
  47131. image: {
  47132. source: "./media/characters/vant/front.svg",
  47133. extra: 1396/1320,
  47134. bottom: 20/1416
  47135. }
  47136. },
  47137. back: {
  47138. height: math.unit(5 + 6/12, "feet"),
  47139. weight: math.unit(195, "lb"),
  47140. name: "Back",
  47141. image: {
  47142. source: "./media/characters/vant/back.svg",
  47143. extra: 1396/1320,
  47144. bottom: 20/1416
  47145. }
  47146. },
  47147. maw: {
  47148. height: math.unit(0.75, "feet"),
  47149. name: "Maw",
  47150. image: {
  47151. source: "./media/characters/vant/maw.svg"
  47152. }
  47153. },
  47154. paw: {
  47155. height: math.unit(1.07, "feet"),
  47156. name: "Paw",
  47157. image: {
  47158. source: "./media/characters/vant/paw.svg"
  47159. }
  47160. },
  47161. },
  47162. [
  47163. {
  47164. name: "Micro",
  47165. height: math.unit(0.25, "inches")
  47166. },
  47167. {
  47168. name: "Normal",
  47169. height: math.unit(5 + 6/12, "feet"),
  47170. default: true
  47171. },
  47172. {
  47173. name: "Macro",
  47174. height: math.unit(75, "feet")
  47175. },
  47176. ]
  47177. ))
  47178. characterMakers.push(() => makeCharacter(
  47179. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47180. {
  47181. front: {
  47182. height: math.unit(30, "meters"),
  47183. weight: math.unit(363, "tons"),
  47184. name: "Front",
  47185. image: {
  47186. source: "./media/characters/ahra/front.svg",
  47187. extra: 1914/1814,
  47188. bottom: 46/1960
  47189. }
  47190. },
  47191. },
  47192. [
  47193. {
  47194. name: "Macro",
  47195. height: math.unit(30, "meters"),
  47196. default: true
  47197. },
  47198. ]
  47199. ))
  47200. characterMakers.push(() => makeCharacter(
  47201. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47202. {
  47203. undressed: {
  47204. height: math.unit(2, "m"),
  47205. weight: math.unit(250, "kg"),
  47206. name: "Undressed",
  47207. image: {
  47208. source: "./media/characters/coriander/undressed.svg",
  47209. extra: 1757/1606,
  47210. bottom: 107/1864
  47211. }
  47212. },
  47213. dressed: {
  47214. height: math.unit(2, "m"),
  47215. weight: math.unit(250, "kg"),
  47216. name: "Dressed",
  47217. image: {
  47218. source: "./media/characters/coriander/dressed.svg",
  47219. extra: 1757/1606,
  47220. bottom: 107/1864
  47221. }
  47222. },
  47223. },
  47224. [
  47225. {
  47226. name: "Normal",
  47227. height: math.unit(4, "meters"),
  47228. default: true
  47229. },
  47230. {
  47231. name: "XL",
  47232. height: math.unit(6, "meters")
  47233. },
  47234. {
  47235. name: "XXL",
  47236. height: math.unit(8, "meters")
  47237. },
  47238. ]
  47239. ))
  47240. characterMakers.push(() => makeCharacter(
  47241. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47242. {
  47243. front: {
  47244. height: math.unit(6, "feet"),
  47245. name: "Front",
  47246. image: {
  47247. source: "./media/characters/syrinx/front.svg",
  47248. extra: 1557/1259,
  47249. bottom: 171/1728
  47250. }
  47251. },
  47252. },
  47253. [
  47254. {
  47255. name: "Normal",
  47256. height: math.unit(6 + 3/12, "feet"),
  47257. default: true
  47258. },
  47259. ]
  47260. ))
  47261. characterMakers.push(() => makeCharacter(
  47262. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47263. {
  47264. front: {
  47265. height: math.unit(11 + 6/12, "feet"),
  47266. weight: math.unit(1.5, "tons"),
  47267. name: "Front",
  47268. image: {
  47269. source: "./media/characters/bor/front.svg",
  47270. extra: 1189/1109,
  47271. bottom: 170/1359
  47272. }
  47273. },
  47274. },
  47275. [
  47276. {
  47277. name: "Normal",
  47278. height: math.unit(11 + 6/12, "feet"),
  47279. default: true
  47280. },
  47281. {
  47282. name: "Macro",
  47283. height: math.unit(32 + 9/12, "feet")
  47284. },
  47285. ]
  47286. ))
  47287. characterMakers.push(() => makeCharacter(
  47288. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47289. {
  47290. anthro: {
  47291. height: math.unit(9, "feet"),
  47292. weight: math.unit(2076, "lb"),
  47293. name: "Anthro",
  47294. image: {
  47295. source: "./media/characters/abacus/anthro.svg",
  47296. extra: 1540/1494,
  47297. bottom: 233/1773
  47298. }
  47299. },
  47300. pigeon: {
  47301. height: math.unit(1, "feet"),
  47302. name: "Pigeon",
  47303. image: {
  47304. source: "./media/characters/abacus/pigeon.svg",
  47305. extra: 528/525,
  47306. bottom: 46/574
  47307. }
  47308. },
  47309. },
  47310. [
  47311. {
  47312. name: "Normal",
  47313. height: math.unit(9, "feet"),
  47314. default: true
  47315. },
  47316. ]
  47317. ))
  47318. characterMakers.push(() => makeCharacter(
  47319. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47320. {
  47321. side: {
  47322. height: math.unit(6, "feet"),
  47323. name: "Side",
  47324. image: {
  47325. source: "./media/characters/delkhan/side.svg",
  47326. extra: 1884/1786,
  47327. bottom: 308/2192
  47328. }
  47329. },
  47330. head: {
  47331. height: math.unit(3.38, "feet"),
  47332. name: "Head",
  47333. image: {
  47334. source: "./media/characters/delkhan/head.svg"
  47335. }
  47336. },
  47337. },
  47338. [
  47339. {
  47340. name: "Normal",
  47341. height: math.unit(72, "feet"),
  47342. default: true
  47343. },
  47344. {
  47345. name: "Giant",
  47346. height: math.unit(172, "feet")
  47347. },
  47348. ]
  47349. ))
  47350. characterMakers.push(() => makeCharacter(
  47351. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47352. {
  47353. standing: {
  47354. height: math.unit(6, "feet"),
  47355. name: "Standing",
  47356. image: {
  47357. source: "./media/characters/euchidat/standing.svg",
  47358. extra: 1612/1553,
  47359. bottom: 116/1728
  47360. }
  47361. },
  47362. leaning: {
  47363. height: math.unit(6, "feet"),
  47364. name: "Leaning",
  47365. image: {
  47366. source: "./media/characters/euchidat/leaning.svg",
  47367. extra: 1719/1674,
  47368. bottom: 27/1746
  47369. }
  47370. },
  47371. },
  47372. [
  47373. {
  47374. name: "Normal",
  47375. height: math.unit(175, "feet"),
  47376. default: true
  47377. },
  47378. {
  47379. name: "Megamacro",
  47380. height: math.unit(190, "miles")
  47381. },
  47382. {
  47383. name: "Gigamacro",
  47384. height: math.unit(190000, "miles")
  47385. },
  47386. ]
  47387. ))
  47388. characterMakers.push(() => makeCharacter(
  47389. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47390. {
  47391. front: {
  47392. height: math.unit(6, "feet"),
  47393. weight: math.unit(150, "lb"),
  47394. name: "Front",
  47395. image: {
  47396. source: "./media/characters/rebecca-stack/front.svg",
  47397. extra: 1256/1201,
  47398. bottom: 18/1274
  47399. }
  47400. },
  47401. },
  47402. [
  47403. {
  47404. name: "Normal",
  47405. height: math.unit(5 + 8/12, "feet"),
  47406. default: true
  47407. },
  47408. {
  47409. name: "Demolitionist",
  47410. height: math.unit(200, "feet")
  47411. },
  47412. {
  47413. name: "Out of Control",
  47414. height: math.unit(2, "miles")
  47415. },
  47416. {
  47417. name: "Giga",
  47418. height: math.unit(7200, "miles")
  47419. },
  47420. ]
  47421. ))
  47422. characterMakers.push(() => makeCharacter(
  47423. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47424. {
  47425. front: {
  47426. height: math.unit(6, "feet"),
  47427. weight: math.unit(150, "lb"),
  47428. name: "Front",
  47429. image: {
  47430. source: "./media/characters/jenny-cartwright/front.svg",
  47431. extra: 1384/1376,
  47432. bottom: 58/1442
  47433. }
  47434. },
  47435. },
  47436. [
  47437. {
  47438. name: "Normal",
  47439. height: math.unit(6 + 7/12, "feet"),
  47440. default: true
  47441. },
  47442. {
  47443. name: "Librarian",
  47444. height: math.unit(55, "feet")
  47445. },
  47446. {
  47447. name: "Sightseer",
  47448. height: math.unit(50, "miles")
  47449. },
  47450. {
  47451. name: "Giga",
  47452. height: math.unit(30000, "miles")
  47453. },
  47454. ]
  47455. ))
  47456. characterMakers.push(() => makeCharacter(
  47457. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47458. {
  47459. nude: {
  47460. height: math.unit(8, "feet"),
  47461. weight: math.unit(225, "lb"),
  47462. name: "Nude",
  47463. image: {
  47464. source: "./media/characters/marvy/nude.svg",
  47465. extra: 1900/1683,
  47466. bottom: 89/1989
  47467. }
  47468. },
  47469. dressed: {
  47470. height: math.unit(8, "feet"),
  47471. weight: math.unit(225, "lb"),
  47472. name: "Dressed",
  47473. image: {
  47474. source: "./media/characters/marvy/dressed.svg",
  47475. extra: 1900/1683,
  47476. bottom: 89/1989
  47477. }
  47478. },
  47479. head: {
  47480. height: math.unit(2.85, "feet"),
  47481. name: "Head",
  47482. image: {
  47483. source: "./media/characters/marvy/head.svg"
  47484. }
  47485. },
  47486. },
  47487. [
  47488. {
  47489. name: "Normal",
  47490. height: math.unit(8, "feet"),
  47491. default: true
  47492. },
  47493. ]
  47494. ))
  47495. characterMakers.push(() => makeCharacter(
  47496. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47497. {
  47498. front: {
  47499. height: math.unit(8, "feet"),
  47500. weight: math.unit(250, "lb"),
  47501. name: "Front",
  47502. image: {
  47503. source: "./media/characters/leah/front.svg",
  47504. extra: 1257/1149,
  47505. bottom: 109/1366
  47506. }
  47507. },
  47508. },
  47509. [
  47510. {
  47511. name: "Normal",
  47512. height: math.unit(8, "feet"),
  47513. default: true
  47514. },
  47515. {
  47516. name: "Minimacro",
  47517. height: math.unit(40, "feet")
  47518. },
  47519. {
  47520. name: "Macro",
  47521. height: math.unit(124, "feet")
  47522. },
  47523. {
  47524. name: "Megamacro",
  47525. height: math.unit(850, "feet")
  47526. },
  47527. ]
  47528. ))
  47529. characterMakers.push(() => makeCharacter(
  47530. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47531. {
  47532. side: {
  47533. height: math.unit(13 + 6/12, "feet"),
  47534. weight: math.unit(3200, "lb"),
  47535. name: "Side",
  47536. image: {
  47537. source: "./media/characters/alvir/side.svg",
  47538. extra: 896/589,
  47539. bottom: 26/922
  47540. }
  47541. },
  47542. },
  47543. [
  47544. {
  47545. name: "Normal",
  47546. height: math.unit(13 + 6/12, "feet"),
  47547. default: true
  47548. },
  47549. ]
  47550. ))
  47551. characterMakers.push(() => makeCharacter(
  47552. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47553. {
  47554. front: {
  47555. height: math.unit(5 + 4/12, "feet"),
  47556. weight: math.unit(236, "lb"),
  47557. name: "Front",
  47558. image: {
  47559. source: "./media/characters/zaina-khalil/front.svg",
  47560. extra: 1533/1485,
  47561. bottom: 94/1627
  47562. }
  47563. },
  47564. side: {
  47565. height: math.unit(5 + 4/12, "feet"),
  47566. weight: math.unit(236, "lb"),
  47567. name: "Side",
  47568. image: {
  47569. source: "./media/characters/zaina-khalil/side.svg",
  47570. extra: 1537/1498,
  47571. bottom: 66/1603
  47572. }
  47573. },
  47574. back: {
  47575. height: math.unit(5 + 4/12, "feet"),
  47576. weight: math.unit(236, "lb"),
  47577. name: "Back",
  47578. image: {
  47579. source: "./media/characters/zaina-khalil/back.svg",
  47580. extra: 1546/1494,
  47581. bottom: 89/1635
  47582. }
  47583. },
  47584. },
  47585. [
  47586. {
  47587. name: "Normal",
  47588. height: math.unit(5 + 4/12, "feet"),
  47589. default: true
  47590. },
  47591. ]
  47592. ))
  47593. characterMakers.push(() => makeCharacter(
  47594. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47595. {
  47596. side: {
  47597. height: math.unit(12, "feet"),
  47598. weight: math.unit(4000, "lb"),
  47599. name: "Side",
  47600. image: {
  47601. source: "./media/characters/terry/side.svg",
  47602. extra: 1518/1439,
  47603. bottom: 149/1667
  47604. }
  47605. },
  47606. },
  47607. [
  47608. {
  47609. name: "Normal",
  47610. height: math.unit(12, "feet"),
  47611. default: true
  47612. },
  47613. ]
  47614. ))
  47615. characterMakers.push(() => makeCharacter(
  47616. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47617. {
  47618. front: {
  47619. height: math.unit(12, "feet"),
  47620. weight: math.unit(1500, "lb"),
  47621. name: "Front",
  47622. image: {
  47623. source: "./media/characters/kahea/front.svg",
  47624. extra: 1722/1617,
  47625. bottom: 179/1901
  47626. }
  47627. },
  47628. },
  47629. [
  47630. {
  47631. name: "Normal",
  47632. height: math.unit(12, "feet"),
  47633. default: true
  47634. },
  47635. ]
  47636. ))
  47637. characterMakers.push(() => makeCharacter(
  47638. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47639. {
  47640. demonFront: {
  47641. height: math.unit(36, "feet"),
  47642. name: "Front",
  47643. image: {
  47644. source: "./media/characters/alex-xuria/demon-front.svg",
  47645. extra: 1705/1673,
  47646. bottom: 198/1903
  47647. },
  47648. form: "demon",
  47649. default: true
  47650. },
  47651. demonBack: {
  47652. height: math.unit(36, "feet"),
  47653. name: "Back",
  47654. image: {
  47655. source: "./media/characters/alex-xuria/demon-back.svg",
  47656. extra: 1725/1693,
  47657. bottom: 70/1795
  47658. },
  47659. form: "demon"
  47660. },
  47661. demonHead: {
  47662. height: math.unit(2.14, "meters"),
  47663. name: "Head",
  47664. image: {
  47665. source: "./media/characters/alex-xuria/demon-head.svg"
  47666. },
  47667. form: "demon"
  47668. },
  47669. demonHand: {
  47670. height: math.unit(1.61, "meters"),
  47671. name: "Hand",
  47672. image: {
  47673. source: "./media/characters/alex-xuria/demon-hand.svg"
  47674. },
  47675. form: "demon"
  47676. },
  47677. demonPaw: {
  47678. height: math.unit(1.35, "meters"),
  47679. name: "Paw",
  47680. image: {
  47681. source: "./media/characters/alex-xuria/demon-paw.svg"
  47682. },
  47683. form: "demon"
  47684. },
  47685. demonFoot: {
  47686. height: math.unit(2.2, "meters"),
  47687. name: "Foot",
  47688. image: {
  47689. source: "./media/characters/alex-xuria/demon-foot.svg"
  47690. },
  47691. form: "demon"
  47692. },
  47693. demonCock: {
  47694. height: math.unit(1.74, "meters"),
  47695. name: "Cock",
  47696. image: {
  47697. source: "./media/characters/alex-xuria/demon-cock.svg"
  47698. },
  47699. form: "demon"
  47700. },
  47701. demonTailClosed: {
  47702. height: math.unit(1.47, "meters"),
  47703. name: "Tail (Closed)",
  47704. image: {
  47705. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47706. },
  47707. form: "demon"
  47708. },
  47709. demonTailOpen: {
  47710. height: math.unit(2.85, "meters"),
  47711. name: "Tail (Open)",
  47712. image: {
  47713. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47714. },
  47715. form: "demon"
  47716. },
  47717. incubusFront: {
  47718. height: math.unit(12, "feet"),
  47719. name: "Front",
  47720. image: {
  47721. source: "./media/characters/alex-xuria/incubus-front.svg",
  47722. extra: 1754/1677,
  47723. bottom: 125/1879
  47724. },
  47725. form: "incubus",
  47726. default: true
  47727. },
  47728. incubusBack: {
  47729. height: math.unit(12, "feet"),
  47730. name: "Back",
  47731. image: {
  47732. source: "./media/characters/alex-xuria/incubus-back.svg",
  47733. extra: 1702/1647,
  47734. bottom: 30/1732
  47735. },
  47736. form: "incubus"
  47737. },
  47738. incubusHead: {
  47739. height: math.unit(3.45, "feet"),
  47740. name: "Head",
  47741. image: {
  47742. source: "./media/characters/alex-xuria/incubus-head.svg"
  47743. },
  47744. form: "incubus"
  47745. },
  47746. rabbitFront: {
  47747. height: math.unit(6, "feet"),
  47748. name: "Front",
  47749. image: {
  47750. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47751. extra: 1369/1349,
  47752. bottom: 45/1414
  47753. },
  47754. form: "rabbit",
  47755. default: true
  47756. },
  47757. rabbitSide: {
  47758. height: math.unit(6, "feet"),
  47759. name: "Side",
  47760. image: {
  47761. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47762. extra: 1370/1356,
  47763. bottom: 37/1407
  47764. },
  47765. form: "rabbit"
  47766. },
  47767. rabbitBack: {
  47768. height: math.unit(6, "feet"),
  47769. name: "Back",
  47770. image: {
  47771. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47772. extra: 1375/1358,
  47773. bottom: 43/1418
  47774. },
  47775. form: "rabbit"
  47776. },
  47777. },
  47778. [
  47779. {
  47780. name: "Normal",
  47781. height: math.unit(6, "feet"),
  47782. default: true,
  47783. form: "rabbit"
  47784. },
  47785. {
  47786. name: "Incubus",
  47787. height: math.unit(12, "feet"),
  47788. default: true,
  47789. form: "incubus"
  47790. },
  47791. {
  47792. name: "Demon",
  47793. height: math.unit(36, "feet"),
  47794. default: true,
  47795. form: "demon"
  47796. }
  47797. ],
  47798. {
  47799. "demon": {
  47800. name: "Demon",
  47801. default: true
  47802. },
  47803. "incubus": {
  47804. name: "Incubus",
  47805. },
  47806. "rabbit": {
  47807. name: "Rabbit"
  47808. }
  47809. }
  47810. ))
  47811. characterMakers.push(() => makeCharacter(
  47812. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47813. {
  47814. front: {
  47815. height: math.unit(7 + 5/12, "feet"),
  47816. weight: math.unit(510, "lb"),
  47817. name: "Front",
  47818. image: {
  47819. source: "./media/characters/syrup/front.svg",
  47820. extra: 932/916,
  47821. bottom: 26/958
  47822. }
  47823. },
  47824. },
  47825. [
  47826. {
  47827. name: "Normal",
  47828. height: math.unit(7 + 5/12, "feet"),
  47829. default: true
  47830. },
  47831. {
  47832. name: "Big",
  47833. height: math.unit(50, "feet")
  47834. },
  47835. {
  47836. name: "Macro",
  47837. height: math.unit(300, "feet")
  47838. },
  47839. {
  47840. name: "Megamacro",
  47841. height: math.unit(1, "mile")
  47842. },
  47843. ]
  47844. ))
  47845. characterMakers.push(() => makeCharacter(
  47846. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47847. {
  47848. front: {
  47849. height: math.unit(6 + 9/12, "feet"),
  47850. name: "Front",
  47851. image: {
  47852. source: "./media/characters/zeimne/front.svg",
  47853. extra: 1969/1806,
  47854. bottom: 53/2022
  47855. }
  47856. },
  47857. },
  47858. [
  47859. {
  47860. name: "Normal",
  47861. height: math.unit(6 + 9/12, "feet"),
  47862. default: true
  47863. },
  47864. {
  47865. name: "Giant",
  47866. height: math.unit(550, "feet")
  47867. },
  47868. {
  47869. name: "Mega",
  47870. height: math.unit(3, "miles")
  47871. },
  47872. {
  47873. name: "Giga",
  47874. height: math.unit(250, "miles")
  47875. },
  47876. {
  47877. name: "Tera",
  47878. height: math.unit(1, "AU")
  47879. },
  47880. ]
  47881. ))
  47882. characterMakers.push(() => makeCharacter(
  47883. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47884. {
  47885. front: {
  47886. height: math.unit(5 + 2/12, "feet"),
  47887. name: "Front",
  47888. image: {
  47889. source: "./media/characters/grar/front.svg",
  47890. extra: 1331/1119,
  47891. bottom: 60/1391
  47892. }
  47893. },
  47894. back: {
  47895. height: math.unit(5 + 2/12, "feet"),
  47896. name: "Back",
  47897. image: {
  47898. source: "./media/characters/grar/back.svg",
  47899. extra: 1385/1169,
  47900. bottom: 23/1408
  47901. }
  47902. },
  47903. },
  47904. [
  47905. {
  47906. name: "Normal",
  47907. height: math.unit(5 + 2/12, "feet"),
  47908. default: true
  47909. },
  47910. ]
  47911. ))
  47912. characterMakers.push(() => makeCharacter(
  47913. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47914. {
  47915. front: {
  47916. height: math.unit(13 + 7/12, "feet"),
  47917. weight: math.unit(2200, "lb"),
  47918. name: "Front",
  47919. image: {
  47920. source: "./media/characters/endraya/front.svg",
  47921. extra: 1289/1215,
  47922. bottom: 50/1339
  47923. }
  47924. },
  47925. nude: {
  47926. height: math.unit(13 + 7/12, "feet"),
  47927. weight: math.unit(2200, "lb"),
  47928. name: "Nude",
  47929. image: {
  47930. source: "./media/characters/endraya/nude.svg",
  47931. extra: 1247/1171,
  47932. bottom: 40/1287
  47933. }
  47934. },
  47935. head: {
  47936. height: math.unit(2.6, "feet"),
  47937. name: "Head",
  47938. image: {
  47939. source: "./media/characters/endraya/head.svg"
  47940. }
  47941. },
  47942. slit: {
  47943. height: math.unit(3.4, "feet"),
  47944. name: "Slit",
  47945. image: {
  47946. source: "./media/characters/endraya/slit.svg"
  47947. }
  47948. },
  47949. },
  47950. [
  47951. {
  47952. name: "Normal",
  47953. height: math.unit(13 + 7/12, "feet"),
  47954. default: true
  47955. },
  47956. {
  47957. name: "Macro",
  47958. height: math.unit(200, "feet")
  47959. },
  47960. ]
  47961. ))
  47962. characterMakers.push(() => makeCharacter(
  47963. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47964. {
  47965. front: {
  47966. height: math.unit(1.81, "meters"),
  47967. weight: math.unit(69, "kg"),
  47968. name: "Front",
  47969. image: {
  47970. source: "./media/characters/rodryana/front.svg",
  47971. extra: 2002/1921,
  47972. bottom: 53/2055
  47973. }
  47974. },
  47975. back: {
  47976. height: math.unit(1.81, "meters"),
  47977. weight: math.unit(69, "kg"),
  47978. name: "Back",
  47979. image: {
  47980. source: "./media/characters/rodryana/back.svg",
  47981. extra: 1993/1926,
  47982. bottom: 48/2041
  47983. }
  47984. },
  47985. maw: {
  47986. height: math.unit(0.19769417475, "meters"),
  47987. name: "Maw",
  47988. image: {
  47989. source: "./media/characters/rodryana/maw.svg"
  47990. }
  47991. },
  47992. slit: {
  47993. height: math.unit(0.31631067961, "meters"),
  47994. name: "Slit",
  47995. image: {
  47996. source: "./media/characters/rodryana/slit.svg"
  47997. }
  47998. },
  47999. },
  48000. [
  48001. {
  48002. name: "Normal",
  48003. height: math.unit(1.81, "meters")
  48004. },
  48005. {
  48006. name: "Mini Macro",
  48007. height: math.unit(181, "meters")
  48008. },
  48009. {
  48010. name: "Macro",
  48011. height: math.unit(452, "meters"),
  48012. default: true
  48013. },
  48014. {
  48015. name: "Mega Macro",
  48016. height: math.unit(1.375, "km")
  48017. },
  48018. {
  48019. name: "Giga Macro",
  48020. height: math.unit(13.575, "km")
  48021. },
  48022. ]
  48023. ))
  48024. characterMakers.push(() => makeCharacter(
  48025. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48026. {
  48027. front: {
  48028. height: math.unit(6, "feet"),
  48029. weight: math.unit(1000, "lb"),
  48030. name: "Front",
  48031. image: {
  48032. source: "./media/characters/asaya/front.svg",
  48033. extra: 1460/1200,
  48034. bottom: 71/1531
  48035. }
  48036. },
  48037. },
  48038. [
  48039. {
  48040. name: "Normal",
  48041. height: math.unit(8, "km"),
  48042. default: true
  48043. },
  48044. ]
  48045. ))
  48046. characterMakers.push(() => makeCharacter(
  48047. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48048. {
  48049. front: {
  48050. height: math.unit(3.5, "meters"),
  48051. name: "Front",
  48052. image: {
  48053. source: "./media/characters/sarzu-and-israz/front.svg",
  48054. extra: 1570/1558,
  48055. bottom: 150/1720
  48056. },
  48057. },
  48058. back: {
  48059. height: math.unit(3.5, "meters"),
  48060. name: "Back",
  48061. image: {
  48062. source: "./media/characters/sarzu-and-israz/back.svg",
  48063. extra: 1523/1509,
  48064. bottom: 132/1655
  48065. },
  48066. },
  48067. frontFemale: {
  48068. height: math.unit(3.5, "meters"),
  48069. name: "Front (Female)",
  48070. image: {
  48071. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48072. extra: 1570/1558,
  48073. bottom: 150/1720
  48074. },
  48075. },
  48076. frontHerm: {
  48077. height: math.unit(3.5, "meters"),
  48078. name: "Front (Herm)",
  48079. image: {
  48080. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48081. extra: 1570/1558,
  48082. bottom: 150/1720
  48083. },
  48084. },
  48085. },
  48086. [
  48087. {
  48088. name: "Normal",
  48089. height: math.unit(3.5, "meters"),
  48090. default: true,
  48091. },
  48092. {
  48093. name: "Macro",
  48094. height: math.unit(65.5, "meters"),
  48095. },
  48096. ],
  48097. ))
  48098. characterMakers.push(() => makeCharacter(
  48099. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48100. {
  48101. front: {
  48102. height: math.unit(6, "feet"),
  48103. weight: math.unit(250, "lb"),
  48104. name: "Front",
  48105. image: {
  48106. source: "./media/characters/zenimma/front.svg",
  48107. extra: 1346/1320,
  48108. bottom: 58/1404
  48109. }
  48110. },
  48111. back: {
  48112. height: math.unit(6, "feet"),
  48113. weight: math.unit(250, "lb"),
  48114. name: "Back",
  48115. image: {
  48116. source: "./media/characters/zenimma/back.svg",
  48117. extra: 1324/1308,
  48118. bottom: 44/1368
  48119. }
  48120. },
  48121. dick: {
  48122. height: math.unit(1.44, "feet"),
  48123. name: "Dick",
  48124. image: {
  48125. source: "./media/characters/zenimma/dick.svg"
  48126. }
  48127. },
  48128. },
  48129. [
  48130. {
  48131. name: "Canon Height",
  48132. height: math.unit(66, "miles"),
  48133. default: true
  48134. },
  48135. ]
  48136. ))
  48137. characterMakers.push(() => makeCharacter(
  48138. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48139. {
  48140. nude: {
  48141. height: math.unit(6, "feet"),
  48142. weight: math.unit(150, "lb"),
  48143. name: "Nude",
  48144. image: {
  48145. source: "./media/characters/shavon/nude.svg",
  48146. extra: 1242/1096,
  48147. bottom: 98/1340
  48148. }
  48149. },
  48150. dressed: {
  48151. height: math.unit(6, "feet"),
  48152. weight: math.unit(150, "lb"),
  48153. name: "Dressed",
  48154. image: {
  48155. source: "./media/characters/shavon/dressed.svg",
  48156. extra: 1242/1096,
  48157. bottom: 98/1340
  48158. }
  48159. },
  48160. },
  48161. [
  48162. {
  48163. name: "Macro",
  48164. height: math.unit(255, "feet"),
  48165. default: true
  48166. },
  48167. ]
  48168. ))
  48169. characterMakers.push(() => makeCharacter(
  48170. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48171. {
  48172. front: {
  48173. height: math.unit(6, "feet"),
  48174. name: "Front",
  48175. image: {
  48176. source: "./media/characters/steph/front.svg",
  48177. extra: 1430/1330,
  48178. bottom: 54/1484
  48179. }
  48180. },
  48181. },
  48182. [
  48183. {
  48184. name: "Normal",
  48185. height: math.unit(6, "feet"),
  48186. default: true
  48187. },
  48188. ]
  48189. ))
  48190. characterMakers.push(() => makeCharacter(
  48191. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48192. {
  48193. front: {
  48194. height: math.unit(9, "feet"),
  48195. weight: math.unit(400, "lb"),
  48196. name: "Front",
  48197. image: {
  48198. source: "./media/characters/kil'aman/front.svg",
  48199. extra: 1210/1159,
  48200. bottom: 109/1319
  48201. }
  48202. },
  48203. head: {
  48204. height: math.unit(2.14, "feet"),
  48205. name: "Head",
  48206. image: {
  48207. source: "./media/characters/kil'aman/head.svg"
  48208. }
  48209. },
  48210. maw: {
  48211. height: math.unit(1.21, "feet"),
  48212. name: "Maw",
  48213. image: {
  48214. source: "./media/characters/kil'aman/maw.svg"
  48215. }
  48216. },
  48217. foot: {
  48218. height: math.unit(1.7, "feet"),
  48219. name: "Foot",
  48220. image: {
  48221. source: "./media/characters/kil'aman/foot.svg"
  48222. }
  48223. },
  48224. dick: {
  48225. height: math.unit(2.1, "feet"),
  48226. name: "Dick",
  48227. image: {
  48228. source: "./media/characters/kil'aman/dick.svg"
  48229. }
  48230. },
  48231. },
  48232. [
  48233. {
  48234. name: "Normal",
  48235. height: math.unit(9, "feet")
  48236. },
  48237. {
  48238. name: "Canon Height",
  48239. height: math.unit(10, "miles"),
  48240. default: true
  48241. },
  48242. {
  48243. name: "Maximum",
  48244. height: math.unit(6e9, "miles")
  48245. },
  48246. ]
  48247. ))
  48248. characterMakers.push(() => makeCharacter(
  48249. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48250. {
  48251. front: {
  48252. height: math.unit(90, "feet"),
  48253. weight: math.unit(675000, "lb"),
  48254. name: "Front",
  48255. image: {
  48256. source: "./media/characters/qadan/front.svg",
  48257. extra: 1012/1004,
  48258. bottom: 78/1090
  48259. }
  48260. },
  48261. back: {
  48262. height: math.unit(90, "feet"),
  48263. weight: math.unit(675000, "lb"),
  48264. name: "Back",
  48265. image: {
  48266. source: "./media/characters/qadan/back.svg",
  48267. extra: 1042/1031,
  48268. bottom: 55/1097
  48269. }
  48270. },
  48271. armored: {
  48272. height: math.unit(90, "feet"),
  48273. weight: math.unit(675000, "lb"),
  48274. name: "Armored",
  48275. image: {
  48276. source: "./media/characters/qadan/armored.svg",
  48277. extra: 1047/1037,
  48278. bottom: 48/1095
  48279. }
  48280. },
  48281. },
  48282. [
  48283. {
  48284. name: "Normal",
  48285. height: math.unit(90, "feet"),
  48286. default: true
  48287. },
  48288. ]
  48289. ))
  48290. characterMakers.push(() => makeCharacter(
  48291. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48292. {
  48293. front: {
  48294. height: math.unit(6, "feet"),
  48295. weight: math.unit(225, "lb"),
  48296. name: "Front",
  48297. image: {
  48298. source: "./media/characters/brooke/front.svg",
  48299. extra: 1050/1010,
  48300. bottom: 66/1116
  48301. }
  48302. },
  48303. back: {
  48304. height: math.unit(6, "feet"),
  48305. weight: math.unit(225, "lb"),
  48306. name: "Back",
  48307. image: {
  48308. source: "./media/characters/brooke/back.svg",
  48309. extra: 1053/1013,
  48310. bottom: 41/1094
  48311. }
  48312. },
  48313. dressed: {
  48314. height: math.unit(6, "feet"),
  48315. weight: math.unit(225, "lb"),
  48316. name: "Dressed",
  48317. image: {
  48318. source: "./media/characters/brooke/dressed.svg",
  48319. extra: 1050/1010,
  48320. bottom: 66/1116
  48321. }
  48322. },
  48323. },
  48324. [
  48325. {
  48326. name: "Canon Height",
  48327. height: math.unit(500, "miles"),
  48328. default: true
  48329. },
  48330. ]
  48331. ))
  48332. characterMakers.push(() => makeCharacter(
  48333. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48334. {
  48335. front: {
  48336. height: math.unit(6 + 2/12, "feet"),
  48337. weight: math.unit(210, "lb"),
  48338. name: "Front",
  48339. image: {
  48340. source: "./media/characters/wubs/front.svg",
  48341. extra: 1345/1325,
  48342. bottom: 70/1415
  48343. }
  48344. },
  48345. back: {
  48346. height: math.unit(6 + 2/12, "feet"),
  48347. weight: math.unit(210, "lb"),
  48348. name: "Back",
  48349. image: {
  48350. source: "./media/characters/wubs/back.svg",
  48351. extra: 1296/1275,
  48352. bottom: 58/1354
  48353. }
  48354. },
  48355. },
  48356. [
  48357. {
  48358. name: "Normal",
  48359. height: math.unit(6 + 2/12, "feet"),
  48360. default: true
  48361. },
  48362. {
  48363. name: "Macro",
  48364. height: math.unit(1000, "feet")
  48365. },
  48366. {
  48367. name: "Megamacro",
  48368. height: math.unit(1, "mile")
  48369. },
  48370. ]
  48371. ))
  48372. characterMakers.push(() => makeCharacter(
  48373. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48374. {
  48375. front: {
  48376. height: math.unit(4, "feet"),
  48377. weight: math.unit(120, "lb"),
  48378. name: "Front",
  48379. image: {
  48380. source: "./media/characters/blue/front.svg",
  48381. extra: 1636/1525,
  48382. bottom: 43/1679
  48383. }
  48384. },
  48385. back: {
  48386. height: math.unit(4, "feet"),
  48387. weight: math.unit(120, "lb"),
  48388. name: "Back",
  48389. image: {
  48390. source: "./media/characters/blue/back.svg",
  48391. extra: 1660/1560,
  48392. bottom: 57/1717
  48393. }
  48394. },
  48395. paws: {
  48396. height: math.unit(0.826, "feet"),
  48397. name: "Paws",
  48398. image: {
  48399. source: "./media/characters/blue/paws.svg"
  48400. }
  48401. },
  48402. },
  48403. [
  48404. {
  48405. name: "Micro",
  48406. height: math.unit(3, "inches")
  48407. },
  48408. {
  48409. name: "Normal",
  48410. height: math.unit(4, "feet"),
  48411. default: true
  48412. },
  48413. {
  48414. name: "Femenine Form",
  48415. height: math.unit(14, "feet")
  48416. },
  48417. {
  48418. name: "Werebat Form",
  48419. height: math.unit(18, "feet")
  48420. },
  48421. ]
  48422. ))
  48423. characterMakers.push(() => makeCharacter(
  48424. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48425. {
  48426. female: {
  48427. height: math.unit(7 + 4/12, "feet"),
  48428. weight: math.unit(243, "lb"),
  48429. name: "Female",
  48430. image: {
  48431. source: "./media/characters/kaya/female.svg",
  48432. extra: 975/898,
  48433. bottom: 34/1009
  48434. }
  48435. },
  48436. herm: {
  48437. height: math.unit(7 + 4/12, "feet"),
  48438. weight: math.unit(243, "lb"),
  48439. name: "Herm",
  48440. image: {
  48441. source: "./media/characters/kaya/herm.svg",
  48442. extra: 975/898,
  48443. bottom: 34/1009
  48444. }
  48445. },
  48446. },
  48447. [
  48448. {
  48449. name: "Normal",
  48450. height: math.unit(7 + 4/12, "feet"),
  48451. default: true
  48452. },
  48453. ]
  48454. ))
  48455. characterMakers.push(() => makeCharacter(
  48456. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48457. {
  48458. female: {
  48459. height: math.unit(9 + 4/12, "feet"),
  48460. weight: math.unit(398, "lb"),
  48461. name: "Female",
  48462. image: {
  48463. source: "./media/characters/kassandra/female.svg",
  48464. extra: 908/839,
  48465. bottom: 61/969
  48466. }
  48467. },
  48468. intersex: {
  48469. height: math.unit(9 + 4/12, "feet"),
  48470. weight: math.unit(398, "lb"),
  48471. name: "Intersex",
  48472. image: {
  48473. source: "./media/characters/kassandra/intersex.svg",
  48474. extra: 908/839,
  48475. bottom: 61/969
  48476. }
  48477. },
  48478. },
  48479. [
  48480. {
  48481. name: "Normal",
  48482. height: math.unit(9 + 4/12, "feet"),
  48483. default: true
  48484. },
  48485. ]
  48486. ))
  48487. characterMakers.push(() => makeCharacter(
  48488. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48489. {
  48490. front: {
  48491. height: math.unit(3, "meters"),
  48492. name: "Front",
  48493. image: {
  48494. source: "./media/characters/amy/front.svg",
  48495. extra: 1380/1343,
  48496. bottom: 70/1450
  48497. }
  48498. },
  48499. back: {
  48500. height: math.unit(3, "meters"),
  48501. name: "Back",
  48502. image: {
  48503. source: "./media/characters/amy/back.svg",
  48504. extra: 1380/1347,
  48505. bottom: 66/1446
  48506. }
  48507. },
  48508. },
  48509. [
  48510. {
  48511. name: "Normal",
  48512. height: math.unit(3, "meters"),
  48513. default: true
  48514. },
  48515. ]
  48516. ))
  48517. characterMakers.push(() => makeCharacter(
  48518. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48519. {
  48520. side: {
  48521. height: math.unit(47, "cm"),
  48522. weight: math.unit(10.8, "kg"),
  48523. name: "Side",
  48524. image: {
  48525. source: "./media/characters/alphaschakal/side.svg",
  48526. extra: 1058/568,
  48527. bottom: 62/1120
  48528. }
  48529. },
  48530. back: {
  48531. height: math.unit(78, "cm"),
  48532. weight: math.unit(10.8, "kg"),
  48533. name: "Back",
  48534. image: {
  48535. source: "./media/characters/alphaschakal/back.svg",
  48536. extra: 1102/942,
  48537. bottom: 185/1287
  48538. }
  48539. },
  48540. head: {
  48541. height: math.unit(28, "cm"),
  48542. name: "Head",
  48543. image: {
  48544. source: "./media/characters/alphaschakal/head.svg",
  48545. extra: 696/508,
  48546. bottom: 0/696
  48547. }
  48548. },
  48549. paw: {
  48550. height: math.unit(16, "cm"),
  48551. name: "Paw",
  48552. image: {
  48553. source: "./media/characters/alphaschakal/paw.svg"
  48554. }
  48555. },
  48556. },
  48557. [
  48558. {
  48559. name: "Normal",
  48560. height: math.unit(47, "cm"),
  48561. default: true
  48562. },
  48563. {
  48564. name: "Macro",
  48565. height: math.unit(340, "cm")
  48566. },
  48567. ]
  48568. ))
  48569. characterMakers.push(() => makeCharacter(
  48570. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48571. {
  48572. front: {
  48573. height: math.unit(36, "earths"),
  48574. name: "Front",
  48575. image: {
  48576. source: "./media/characters/ecobyss/front.svg",
  48577. extra: 1282/1215,
  48578. bottom: 11/1293
  48579. }
  48580. },
  48581. back: {
  48582. height: math.unit(36, "earths"),
  48583. name: "Back",
  48584. image: {
  48585. source: "./media/characters/ecobyss/back.svg",
  48586. extra: 1291/1222,
  48587. bottom: 8/1299
  48588. }
  48589. },
  48590. },
  48591. [
  48592. {
  48593. name: "Normal",
  48594. height: math.unit(36, "earths"),
  48595. default: true
  48596. },
  48597. ]
  48598. ))
  48599. characterMakers.push(() => makeCharacter(
  48600. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48601. {
  48602. front: {
  48603. height: math.unit(12, "feet"),
  48604. name: "Front",
  48605. image: {
  48606. source: "./media/characters/vasuk/front.svg",
  48607. extra: 1326/1207,
  48608. bottom: 64/1390
  48609. }
  48610. },
  48611. },
  48612. [
  48613. {
  48614. name: "Normal",
  48615. height: math.unit(12, "feet"),
  48616. default: true
  48617. },
  48618. ]
  48619. ))
  48620. characterMakers.push(() => makeCharacter(
  48621. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48622. {
  48623. side: {
  48624. height: math.unit(100, "feet"),
  48625. name: "Side",
  48626. image: {
  48627. source: "./media/characters/linneaus/side.svg",
  48628. extra: 987/807,
  48629. bottom: 47/1034
  48630. }
  48631. },
  48632. },
  48633. [
  48634. {
  48635. name: "Macro",
  48636. height: math.unit(100, "feet"),
  48637. default: true
  48638. },
  48639. ]
  48640. ))
  48641. characterMakers.push(() => makeCharacter(
  48642. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48643. {
  48644. front: {
  48645. height: math.unit(8, "feet"),
  48646. weight: math.unit(1200, "lb"),
  48647. name: "Front",
  48648. image: {
  48649. source: "./media/characters/nyterious-daligdig/front.svg",
  48650. extra: 1284/1094,
  48651. bottom: 84/1368
  48652. }
  48653. },
  48654. back: {
  48655. height: math.unit(8, "feet"),
  48656. weight: math.unit(1200, "lb"),
  48657. name: "Back",
  48658. image: {
  48659. source: "./media/characters/nyterious-daligdig/back.svg",
  48660. extra: 1301/1121,
  48661. bottom: 129/1430
  48662. }
  48663. },
  48664. mouth: {
  48665. height: math.unit(1.464, "feet"),
  48666. name: "Mouth",
  48667. image: {
  48668. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48669. }
  48670. },
  48671. },
  48672. [
  48673. {
  48674. name: "Small",
  48675. height: math.unit(8, "feet"),
  48676. default: true
  48677. },
  48678. {
  48679. name: "Normal",
  48680. height: math.unit(15, "feet")
  48681. },
  48682. {
  48683. name: "Macro",
  48684. height: math.unit(90, "feet")
  48685. },
  48686. ]
  48687. ))
  48688. characterMakers.push(() => makeCharacter(
  48689. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48690. {
  48691. front: {
  48692. height: math.unit(7 + 4/12, "feet"),
  48693. weight: math.unit(252, "lb"),
  48694. name: "Front",
  48695. image: {
  48696. source: "./media/characters/bandel/front.svg",
  48697. extra: 1946/1775,
  48698. bottom: 26/1972
  48699. }
  48700. },
  48701. back: {
  48702. height: math.unit(7 + 4/12, "feet"),
  48703. weight: math.unit(252, "lb"),
  48704. name: "Back",
  48705. image: {
  48706. source: "./media/characters/bandel/back.svg",
  48707. extra: 1940/1770,
  48708. bottom: 25/1965
  48709. }
  48710. },
  48711. maw: {
  48712. height: math.unit(2.15, "feet"),
  48713. name: "Maw",
  48714. image: {
  48715. source: "./media/characters/bandel/maw.svg"
  48716. }
  48717. },
  48718. stomach: {
  48719. height: math.unit(1.95, "feet"),
  48720. name: "Stomach",
  48721. image: {
  48722. source: "./media/characters/bandel/stomach.svg"
  48723. }
  48724. },
  48725. },
  48726. [
  48727. {
  48728. name: "Normal",
  48729. height: math.unit(7 + 4/12, "feet"),
  48730. default: true
  48731. },
  48732. ]
  48733. ))
  48734. characterMakers.push(() => makeCharacter(
  48735. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48736. {
  48737. front: {
  48738. height: math.unit(10 + 5/12, "feet"),
  48739. weight: math.unit(773.5, "kg"),
  48740. name: "Front",
  48741. image: {
  48742. source: "./media/characters/zed/front.svg",
  48743. extra: 987/941,
  48744. bottom: 52/1039
  48745. }
  48746. },
  48747. },
  48748. [
  48749. {
  48750. name: "Short",
  48751. height: math.unit(5 + 4/12, "feet")
  48752. },
  48753. {
  48754. name: "Average",
  48755. height: math.unit(10 + 5/12, "feet"),
  48756. default: true
  48757. },
  48758. {
  48759. name: "Mini-Macro",
  48760. height: math.unit(24 + 9/12, "feet")
  48761. },
  48762. {
  48763. name: "Macro",
  48764. height: math.unit(249, "feet")
  48765. },
  48766. {
  48767. name: "Mega-Macro",
  48768. height: math.unit(12490, "feet")
  48769. },
  48770. {
  48771. name: "Giga-Macro",
  48772. height: math.unit(24.9, "miles")
  48773. },
  48774. {
  48775. name: "Tera-Macro",
  48776. height: math.unit(24900, "miles")
  48777. },
  48778. {
  48779. name: "Cosmic Scale",
  48780. height: math.unit(38.9, "lightyears")
  48781. },
  48782. {
  48783. name: "Universal Scale",
  48784. height: math.unit(138e12, "lightyears")
  48785. },
  48786. ]
  48787. ))
  48788. characterMakers.push(() => makeCharacter(
  48789. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48790. {
  48791. front: {
  48792. height: math.unit(1561, "inches"),
  48793. name: "Front",
  48794. image: {
  48795. source: "./media/characters/ivan/front.svg",
  48796. extra: 1126/1071,
  48797. bottom: 26/1152
  48798. }
  48799. },
  48800. back: {
  48801. height: math.unit(1561, "inches"),
  48802. name: "Back",
  48803. image: {
  48804. source: "./media/characters/ivan/back.svg",
  48805. extra: 1134/1079,
  48806. bottom: 30/1164
  48807. }
  48808. },
  48809. },
  48810. [
  48811. {
  48812. name: "Normal",
  48813. height: math.unit(1561, "inches"),
  48814. default: true
  48815. },
  48816. ]
  48817. ))
  48818. characterMakers.push(() => makeCharacter(
  48819. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48820. {
  48821. front: {
  48822. height: math.unit(5 + 7/12, "feet"),
  48823. weight: math.unit(150, "lb"),
  48824. name: "Front",
  48825. image: {
  48826. source: "./media/characters/robin-arctic-hare/front.svg",
  48827. extra: 1148/974,
  48828. bottom: 20/1168
  48829. }
  48830. },
  48831. },
  48832. [
  48833. {
  48834. name: "Normal",
  48835. height: math.unit(5 + 7/12, "feet"),
  48836. default: true
  48837. },
  48838. ]
  48839. ))
  48840. characterMakers.push(() => makeCharacter(
  48841. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48842. {
  48843. side: {
  48844. height: math.unit(5, "feet"),
  48845. name: "Side",
  48846. image: {
  48847. source: "./media/characters/birch/side.svg",
  48848. extra: 985/796,
  48849. bottom: 111/1096
  48850. }
  48851. },
  48852. },
  48853. [
  48854. {
  48855. name: "Normal",
  48856. height: math.unit(5, "feet"),
  48857. default: true
  48858. },
  48859. ]
  48860. ))
  48861. characterMakers.push(() => makeCharacter(
  48862. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48863. {
  48864. front: {
  48865. height: math.unit(4, "feet"),
  48866. name: "Front",
  48867. image: {
  48868. source: "./media/characters/rasp/front.svg",
  48869. extra: 561/478,
  48870. bottom: 74/635
  48871. }
  48872. },
  48873. },
  48874. [
  48875. {
  48876. name: "Normal",
  48877. height: math.unit(4, "feet"),
  48878. default: true
  48879. },
  48880. ]
  48881. ))
  48882. characterMakers.push(() => makeCharacter(
  48883. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48884. {
  48885. front: {
  48886. height: math.unit(4 + 6/12, "feet"),
  48887. name: "Front",
  48888. image: {
  48889. source: "./media/characters/agatha/front.svg",
  48890. extra: 947/933,
  48891. bottom: 42/989
  48892. }
  48893. },
  48894. back: {
  48895. height: math.unit(4 + 6/12, "feet"),
  48896. name: "Back",
  48897. image: {
  48898. source: "./media/characters/agatha/back.svg",
  48899. extra: 935/922,
  48900. bottom: 48/983
  48901. }
  48902. },
  48903. },
  48904. [
  48905. {
  48906. name: "Normal",
  48907. height: math.unit(4 + 6 /12, "feet"),
  48908. default: true
  48909. },
  48910. {
  48911. name: "Max Size",
  48912. height: math.unit(500, "feet")
  48913. },
  48914. ]
  48915. ))
  48916. characterMakers.push(() => makeCharacter(
  48917. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48918. {
  48919. side: {
  48920. height: math.unit(30, "feet"),
  48921. name: "Side",
  48922. image: {
  48923. source: "./media/characters/roggy/side.svg",
  48924. extra: 909/643,
  48925. bottom: 63/972
  48926. }
  48927. },
  48928. lounging: {
  48929. height: math.unit(20, "feet"),
  48930. name: "Lounging",
  48931. image: {
  48932. source: "./media/characters/roggy/lounging.svg",
  48933. extra: 643/479,
  48934. bottom: 145/788
  48935. }
  48936. },
  48937. handpaw: {
  48938. height: math.unit(13.1, "feet"),
  48939. name: "Handpaw",
  48940. image: {
  48941. source: "./media/characters/roggy/handpaw.svg"
  48942. }
  48943. },
  48944. footpaw: {
  48945. height: math.unit(15.8, "feet"),
  48946. name: "Footpaw",
  48947. image: {
  48948. source: "./media/characters/roggy/footpaw.svg"
  48949. }
  48950. },
  48951. },
  48952. [
  48953. {
  48954. name: "Menacing",
  48955. height: math.unit(30, "feet"),
  48956. default: true
  48957. },
  48958. ]
  48959. ))
  48960. characterMakers.push(() => makeCharacter(
  48961. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48962. {
  48963. front: {
  48964. height: math.unit(5 + 7/12, "feet"),
  48965. weight: math.unit(135, "lb"),
  48966. name: "Front",
  48967. image: {
  48968. source: "./media/characters/naomi/front.svg",
  48969. extra: 1209/1154,
  48970. bottom: 129/1338
  48971. }
  48972. },
  48973. back: {
  48974. height: math.unit(5 + 7/12, "feet"),
  48975. weight: math.unit(135, "lb"),
  48976. name: "Back",
  48977. image: {
  48978. source: "./media/characters/naomi/back.svg",
  48979. extra: 1252/1190,
  48980. bottom: 23/1275
  48981. }
  48982. },
  48983. },
  48984. [
  48985. {
  48986. name: "Normal",
  48987. height: math.unit(5 + 7 /12, "feet"),
  48988. default: true
  48989. },
  48990. ]
  48991. ))
  48992. characterMakers.push(() => makeCharacter(
  48993. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48994. {
  48995. side: {
  48996. height: math.unit(35, "meters"),
  48997. name: "Side",
  48998. image: {
  48999. source: "./media/characters/kimpi/side.svg",
  49000. extra: 419/382,
  49001. bottom: 63/482
  49002. }
  49003. },
  49004. hand: {
  49005. height: math.unit(8.96, "meters"),
  49006. name: "Hand",
  49007. image: {
  49008. source: "./media/characters/kimpi/hand.svg"
  49009. }
  49010. },
  49011. },
  49012. [
  49013. {
  49014. name: "Normal",
  49015. height: math.unit(35, "meters"),
  49016. default: true
  49017. },
  49018. ]
  49019. ))
  49020. characterMakers.push(() => makeCharacter(
  49021. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49022. {
  49023. front: {
  49024. height: math.unit(4 + 4/12, "feet"),
  49025. name: "Front",
  49026. image: {
  49027. source: "./media/characters/pepper-purrloin/front.svg",
  49028. extra: 1141/1024,
  49029. bottom: 21/1162
  49030. }
  49031. },
  49032. },
  49033. [
  49034. {
  49035. name: "Normal",
  49036. height: math.unit(4 + 4/12, "feet"),
  49037. default: true
  49038. },
  49039. ]
  49040. ))
  49041. characterMakers.push(() => makeCharacter(
  49042. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49043. {
  49044. front: {
  49045. height: math.unit(6 + 2/12, "feet"),
  49046. name: "Front",
  49047. image: {
  49048. source: "./media/characters/raphael/front.svg",
  49049. extra: 1101/962,
  49050. bottom: 59/1160
  49051. }
  49052. },
  49053. },
  49054. [
  49055. {
  49056. name: "Normal",
  49057. height: math.unit(6 + 2/12, "feet"),
  49058. default: true
  49059. },
  49060. ]
  49061. ))
  49062. characterMakers.push(() => makeCharacter(
  49063. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49064. {
  49065. front: {
  49066. height: math.unit(6, "feet"),
  49067. weight: math.unit(150, "lb"),
  49068. name: "Front",
  49069. image: {
  49070. source: "./media/characters/victor-williams/front.svg",
  49071. extra: 1894/1825,
  49072. bottom: 67/1961
  49073. }
  49074. },
  49075. },
  49076. [
  49077. {
  49078. name: "Normal",
  49079. height: math.unit(6, "feet"),
  49080. default: true
  49081. },
  49082. ]
  49083. ))
  49084. characterMakers.push(() => makeCharacter(
  49085. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49086. {
  49087. front: {
  49088. height: math.unit(5 + 8/12, "feet"),
  49089. weight: math.unit(150, "lb"),
  49090. name: "Front",
  49091. image: {
  49092. source: "./media/characters/rachel/front.svg",
  49093. extra: 1902/1787,
  49094. bottom: 46/1948
  49095. }
  49096. },
  49097. },
  49098. [
  49099. {
  49100. name: "Base Height",
  49101. height: math.unit(5 + 8/12, "feet"),
  49102. default: true
  49103. },
  49104. {
  49105. name: "Macro",
  49106. height: math.unit(200, "feet")
  49107. },
  49108. {
  49109. name: "Mega Macro",
  49110. height: math.unit(1, "mile")
  49111. },
  49112. {
  49113. name: "Giga Macro",
  49114. height: math.unit(1500, "miles")
  49115. },
  49116. {
  49117. name: "Tera Macro",
  49118. height: math.unit(8000, "miles")
  49119. },
  49120. {
  49121. name: "Tera Macro+",
  49122. height: math.unit(2e5, "miles")
  49123. },
  49124. ]
  49125. ))
  49126. characterMakers.push(() => makeCharacter(
  49127. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49128. {
  49129. front: {
  49130. height: math.unit(6.5, "feet"),
  49131. name: "Front",
  49132. image: {
  49133. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49134. extra: 860/819,
  49135. bottom: 307/1167
  49136. }
  49137. },
  49138. back: {
  49139. height: math.unit(6.5, "feet"),
  49140. name: "Back",
  49141. image: {
  49142. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49143. extra: 880/837,
  49144. bottom: 395/1275
  49145. }
  49146. },
  49147. sleeping: {
  49148. height: math.unit(2.79, "feet"),
  49149. name: "Sleeping",
  49150. image: {
  49151. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49152. extra: 465/383,
  49153. bottom: 263/728
  49154. }
  49155. },
  49156. maw: {
  49157. height: math.unit(2.52, "feet"),
  49158. name: "Maw",
  49159. image: {
  49160. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49161. }
  49162. },
  49163. },
  49164. [
  49165. {
  49166. name: "Normal",
  49167. height: math.unit(6.5, "feet"),
  49168. default: true
  49169. },
  49170. ]
  49171. ))
  49172. characterMakers.push(() => makeCharacter(
  49173. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49174. {
  49175. front: {
  49176. height: math.unit(5, "feet"),
  49177. name: "Front",
  49178. image: {
  49179. source: "./media/characters/nova-nerium/front.svg",
  49180. extra: 1548/1392,
  49181. bottom: 374/1922
  49182. }
  49183. },
  49184. back: {
  49185. height: math.unit(5, "feet"),
  49186. name: "Back",
  49187. image: {
  49188. source: "./media/characters/nova-nerium/back.svg",
  49189. extra: 1658/1468,
  49190. bottom: 257/1915
  49191. }
  49192. },
  49193. },
  49194. [
  49195. {
  49196. name: "Normal",
  49197. height: math.unit(5, "feet"),
  49198. default: true
  49199. },
  49200. ]
  49201. ))
  49202. characterMakers.push(() => makeCharacter(
  49203. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49204. {
  49205. front: {
  49206. height: math.unit(5 + 4/12, "feet"),
  49207. name: "Front",
  49208. image: {
  49209. source: "./media/characters/ashe-pyriph/front.svg",
  49210. extra: 1935/1747,
  49211. bottom: 60/1995
  49212. }
  49213. },
  49214. },
  49215. [
  49216. {
  49217. name: "Normal",
  49218. height: math.unit(5 + 4/12, "feet"),
  49219. default: true
  49220. },
  49221. ]
  49222. ))
  49223. characterMakers.push(() => makeCharacter(
  49224. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49225. {
  49226. front: {
  49227. height: math.unit(8.7, "feet"),
  49228. name: "Front",
  49229. image: {
  49230. source: "./media/characters/flicker-wisp/front.svg",
  49231. extra: 1835/1613,
  49232. bottom: 449/2284
  49233. }
  49234. },
  49235. side: {
  49236. height: math.unit(8.7, "feet"),
  49237. name: "Side",
  49238. image: {
  49239. source: "./media/characters/flicker-wisp/side.svg",
  49240. extra: 1841/1642,
  49241. bottom: 336/2177
  49242. },
  49243. default: true
  49244. },
  49245. maw: {
  49246. height: math.unit(3.35, "feet"),
  49247. name: "Maw",
  49248. image: {
  49249. source: "./media/characters/flicker-wisp/maw.svg",
  49250. extra: 2338/1506,
  49251. bottom: 0/2338
  49252. }
  49253. },
  49254. ovipositor: {
  49255. height: math.unit(4.95, "feet"),
  49256. name: "Ovipositor",
  49257. image: {
  49258. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49259. }
  49260. },
  49261. egg: {
  49262. height: math.unit(0.385, "feet"),
  49263. weight: math.unit(2, "lb"),
  49264. name: "Egg",
  49265. image: {
  49266. source: "./media/characters/flicker-wisp/egg.svg"
  49267. }
  49268. },
  49269. },
  49270. [
  49271. {
  49272. name: "Normal",
  49273. height: math.unit(8.7, "feet"),
  49274. default: true
  49275. },
  49276. ]
  49277. ))
  49278. characterMakers.push(() => makeCharacter(
  49279. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49280. {
  49281. side: {
  49282. height: math.unit(11, "feet"),
  49283. name: "Side",
  49284. image: {
  49285. source: "./media/characters/faefnul/side.svg",
  49286. extra: 1100/1007,
  49287. bottom: 0/1100
  49288. }
  49289. },
  49290. },
  49291. [
  49292. {
  49293. name: "Normal",
  49294. height: math.unit(11, "feet"),
  49295. default: true
  49296. },
  49297. ]
  49298. ))
  49299. characterMakers.push(() => makeCharacter(
  49300. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49301. {
  49302. front: {
  49303. height: math.unit(6 + 2/12, "feet"),
  49304. name: "Front",
  49305. image: {
  49306. source: "./media/characters/shady/front.svg",
  49307. extra: 502/461,
  49308. bottom: 9/511
  49309. }
  49310. },
  49311. kneeling: {
  49312. height: math.unit(4.6, "feet"),
  49313. name: "Kneeling",
  49314. image: {
  49315. source: "./media/characters/shady/kneeling.svg",
  49316. extra: 1328/1219,
  49317. bottom: 117/1445
  49318. }
  49319. },
  49320. maw: {
  49321. height: math.unit(2, "feet"),
  49322. name: "Maw",
  49323. image: {
  49324. source: "./media/characters/shady/maw.svg"
  49325. }
  49326. },
  49327. },
  49328. [
  49329. {
  49330. name: "Nano",
  49331. height: math.unit(1, "mm")
  49332. },
  49333. {
  49334. name: "Micro",
  49335. height: math.unit(12, "mm")
  49336. },
  49337. {
  49338. name: "Tiny",
  49339. height: math.unit(3, "inches")
  49340. },
  49341. {
  49342. name: "Normal",
  49343. height: math.unit(6 + 2/12, "feet"),
  49344. default: true
  49345. },
  49346. {
  49347. name: "Big",
  49348. height: math.unit(15, "feet")
  49349. },
  49350. {
  49351. name: "Macro",
  49352. height: math.unit(150, "feet")
  49353. },
  49354. {
  49355. name: "Titanic",
  49356. height: math.unit(500, "feet")
  49357. },
  49358. ]
  49359. ))
  49360. characterMakers.push(() => makeCharacter(
  49361. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49362. {
  49363. front: {
  49364. height: math.unit(12, "feet"),
  49365. name: "Front",
  49366. image: {
  49367. source: "./media/characters/fenrir/front.svg",
  49368. extra: 968/875,
  49369. bottom: 22/990
  49370. }
  49371. },
  49372. },
  49373. [
  49374. {
  49375. name: "Big",
  49376. height: math.unit(12, "feet"),
  49377. default: true
  49378. },
  49379. ]
  49380. ))
  49381. characterMakers.push(() => makeCharacter(
  49382. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49383. {
  49384. front: {
  49385. height: math.unit(5 + 4/12, "feet"),
  49386. name: "Front",
  49387. image: {
  49388. source: "./media/characters/makar/front.svg",
  49389. extra: 1181/1112,
  49390. bottom: 78/1259
  49391. }
  49392. },
  49393. },
  49394. [
  49395. {
  49396. name: "Normal",
  49397. height: math.unit(5 + 4/12, "feet"),
  49398. default: true
  49399. },
  49400. ]
  49401. ))
  49402. characterMakers.push(() => makeCharacter(
  49403. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49404. {
  49405. front: {
  49406. height: math.unit(5 + 7/12, "feet"),
  49407. name: "Front",
  49408. image: {
  49409. source: "./media/characters/callow/front.svg",
  49410. extra: 1482/1304,
  49411. bottom: 23/1505
  49412. }
  49413. },
  49414. back: {
  49415. height: math.unit(5 + 7/12, "feet"),
  49416. name: "Back",
  49417. image: {
  49418. source: "./media/characters/callow/back.svg",
  49419. extra: 1484/1296,
  49420. bottom: 25/1509
  49421. }
  49422. },
  49423. },
  49424. [
  49425. {
  49426. name: "Micro",
  49427. height: math.unit(3, "inches"),
  49428. default: true
  49429. },
  49430. {
  49431. name: "Normal",
  49432. height: math.unit(5 + 7/12, "feet")
  49433. },
  49434. ]
  49435. ))
  49436. characterMakers.push(() => makeCharacter(
  49437. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49438. {
  49439. front: {
  49440. height: math.unit(6 + 2/12, "feet"),
  49441. name: "Front",
  49442. image: {
  49443. source: "./media/characters/natel/front.svg",
  49444. extra: 1833/1692,
  49445. bottom: 166/1999
  49446. }
  49447. },
  49448. },
  49449. [
  49450. {
  49451. name: "Normal",
  49452. height: math.unit(6 + 2/12, "feet"),
  49453. default: true
  49454. },
  49455. ]
  49456. ))
  49457. characterMakers.push(() => makeCharacter(
  49458. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49459. {
  49460. front: {
  49461. height: math.unit(1.75, "meters"),
  49462. name: "Front",
  49463. image: {
  49464. source: "./media/characters/misu/front.svg",
  49465. extra: 1690/1558,
  49466. bottom: 234/1924
  49467. }
  49468. },
  49469. back: {
  49470. height: math.unit(1.75, "meters"),
  49471. name: "Back",
  49472. image: {
  49473. source: "./media/characters/misu/back.svg",
  49474. extra: 1762/1618,
  49475. bottom: 146/1908
  49476. }
  49477. },
  49478. frontNude: {
  49479. height: math.unit(1.75, "meters"),
  49480. name: "Front (Nude)",
  49481. image: {
  49482. source: "./media/characters/misu/front-nude.svg",
  49483. extra: 1690/1558,
  49484. bottom: 234/1924
  49485. }
  49486. },
  49487. backNude: {
  49488. height: math.unit(1.75, "meters"),
  49489. name: "Back (Nude)",
  49490. image: {
  49491. source: "./media/characters/misu/back-nude.svg",
  49492. extra: 1762/1618,
  49493. bottom: 146/1908
  49494. }
  49495. },
  49496. frontErect: {
  49497. height: math.unit(1.75, "meters"),
  49498. name: "Front (Erect)",
  49499. image: {
  49500. source: "./media/characters/misu/front-erect.svg",
  49501. extra: 1690/1558,
  49502. bottom: 234/1924
  49503. }
  49504. },
  49505. maw: {
  49506. height: math.unit(0.47, "meters"),
  49507. name: "Maw",
  49508. image: {
  49509. source: "./media/characters/misu/maw.svg"
  49510. }
  49511. },
  49512. head: {
  49513. height: math.unit(0.35, "meters"),
  49514. name: "Head",
  49515. image: {
  49516. source: "./media/characters/misu/head.svg"
  49517. }
  49518. },
  49519. rear: {
  49520. height: math.unit(0.47, "meters"),
  49521. name: "Rear",
  49522. image: {
  49523. source: "./media/characters/misu/rear.svg"
  49524. }
  49525. },
  49526. },
  49527. [
  49528. {
  49529. name: "Normal",
  49530. height: math.unit(1.75, "meters")
  49531. },
  49532. {
  49533. name: "Not good for the people",
  49534. height: math.unit(42, "meters")
  49535. },
  49536. {
  49537. name: "Not good for the neighborhood",
  49538. height: math.unit(135, "meters")
  49539. },
  49540. {
  49541. name: "Bit bigger problem",
  49542. height: math.unit(380, "meters"),
  49543. default: true
  49544. },
  49545. {
  49546. name: "Not good for the city",
  49547. height: math.unit(1.5, "km")
  49548. },
  49549. {
  49550. name: "Not good for the county",
  49551. height: math.unit(5.5, "km")
  49552. },
  49553. {
  49554. name: "Not good for the state",
  49555. height: math.unit(25, "km")
  49556. },
  49557. {
  49558. name: "Not good for the country",
  49559. height: math.unit(125, "km")
  49560. },
  49561. {
  49562. name: "Not good for the continent",
  49563. height: math.unit(2100, "km")
  49564. },
  49565. {
  49566. name: "Not good for the planet",
  49567. height: math.unit(35000, "km")
  49568. },
  49569. {
  49570. name: "Just no",
  49571. height: math.unit(8.5e18, "km")
  49572. },
  49573. ]
  49574. ))
  49575. characterMakers.push(() => makeCharacter(
  49576. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49577. {
  49578. front: {
  49579. height: math.unit(6.5, "feet"),
  49580. name: "Front",
  49581. image: {
  49582. source: "./media/characters/poppy/front.svg",
  49583. extra: 1878/1812,
  49584. bottom: 43/1921
  49585. }
  49586. },
  49587. feet: {
  49588. height: math.unit(1.06, "feet"),
  49589. name: "Feet",
  49590. image: {
  49591. source: "./media/characters/poppy/feet.svg",
  49592. extra: 1083/1083,
  49593. bottom: 87/1170
  49594. }
  49595. },
  49596. },
  49597. [
  49598. {
  49599. name: "Human",
  49600. height: math.unit(6.5, "feet")
  49601. },
  49602. {
  49603. name: "Default",
  49604. height: math.unit(300, "feet"),
  49605. default: true
  49606. },
  49607. {
  49608. name: "Huge",
  49609. height: math.unit(850, "feet")
  49610. },
  49611. {
  49612. name: "Mega",
  49613. height: math.unit(8000, "feet")
  49614. },
  49615. {
  49616. name: "Giga",
  49617. height: math.unit(300, "miles")
  49618. },
  49619. ]
  49620. ))
  49621. characterMakers.push(() => makeCharacter(
  49622. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49623. {
  49624. bipedal: {
  49625. height: math.unit(7, "feet"),
  49626. name: "Bipedal",
  49627. image: {
  49628. source: "./media/characters/zener/bipedal.svg",
  49629. extra: 874/805,
  49630. bottom: 109/983
  49631. }
  49632. },
  49633. quadrupedal: {
  49634. height: math.unit(4.64, "feet"),
  49635. name: "Quadrupedal",
  49636. image: {
  49637. source: "./media/characters/zener/quadrupedal.svg",
  49638. extra: 638/507,
  49639. bottom: 190/828
  49640. }
  49641. },
  49642. cock: {
  49643. height: math.unit(18, "inches"),
  49644. name: "Cock",
  49645. image: {
  49646. source: "./media/characters/zener/cock.svg"
  49647. }
  49648. },
  49649. },
  49650. [
  49651. {
  49652. name: "Normal",
  49653. height: math.unit(7, "feet"),
  49654. default: true
  49655. },
  49656. ]
  49657. ))
  49658. characterMakers.push(() => makeCharacter(
  49659. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49660. {
  49661. nude: {
  49662. height: math.unit(5 + 6/12, "feet"),
  49663. name: "Nude",
  49664. image: {
  49665. source: "./media/characters/charlie-dog/nude.svg",
  49666. extra: 768/734,
  49667. bottom: 26/794
  49668. }
  49669. },
  49670. dressed: {
  49671. height: math.unit(5 + 6/12, "feet"),
  49672. name: "Dressed",
  49673. image: {
  49674. source: "./media/characters/charlie-dog/dressed.svg",
  49675. extra: 768/734,
  49676. bottom: 26/794
  49677. }
  49678. },
  49679. },
  49680. [
  49681. {
  49682. name: "Normal",
  49683. height: math.unit(5 + 6/12, "feet"),
  49684. default: true
  49685. },
  49686. ]
  49687. ))
  49688. characterMakers.push(() => makeCharacter(
  49689. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49690. {
  49691. front: {
  49692. height: math.unit(6 + 4/12, "feet"),
  49693. name: "Front",
  49694. image: {
  49695. source: "./media/characters/ir'istrasz/front.svg",
  49696. extra: 1014/977,
  49697. bottom: 65/1079
  49698. }
  49699. },
  49700. back: {
  49701. height: math.unit(6 + 4/12, "feet"),
  49702. name: "Back",
  49703. image: {
  49704. source: "./media/characters/ir'istrasz/back.svg",
  49705. extra: 1024/992,
  49706. bottom: 34/1058
  49707. }
  49708. },
  49709. },
  49710. [
  49711. {
  49712. name: "Normal",
  49713. height: math.unit(6 + 4/12, "feet"),
  49714. default: true
  49715. },
  49716. ]
  49717. ))
  49718. characterMakers.push(() => makeCharacter(
  49719. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49720. {
  49721. front: {
  49722. height: math.unit(5 + 8/12, "feet"),
  49723. name: "Front",
  49724. image: {
  49725. source: "./media/characters/dee-ditto/front.svg",
  49726. extra: 1874/1785,
  49727. bottom: 68/1942
  49728. }
  49729. },
  49730. back: {
  49731. height: math.unit(5 + 8/12, "feet"),
  49732. name: "Back",
  49733. image: {
  49734. source: "./media/characters/dee-ditto/back.svg",
  49735. extra: 1870/1783,
  49736. bottom: 77/1947
  49737. }
  49738. },
  49739. },
  49740. [
  49741. {
  49742. name: "Normal",
  49743. height: math.unit(5 + 8/12, "feet"),
  49744. default: true
  49745. },
  49746. ]
  49747. ))
  49748. characterMakers.push(() => makeCharacter(
  49749. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49750. {
  49751. front: {
  49752. height: math.unit(7 + 6/12, "feet"),
  49753. name: "Front",
  49754. image: {
  49755. source: "./media/characters/fey/front.svg",
  49756. extra: 995/979,
  49757. bottom: 30/1025
  49758. }
  49759. },
  49760. back: {
  49761. height: math.unit(7 + 6/12, "feet"),
  49762. name: "Back",
  49763. image: {
  49764. source: "./media/characters/fey/back.svg",
  49765. extra: 1079/1008,
  49766. bottom: 5/1084
  49767. }
  49768. },
  49769. dressed: {
  49770. height: math.unit(7 + 6/12, "feet"),
  49771. name: "Dressed",
  49772. image: {
  49773. source: "./media/characters/fey/dressed.svg",
  49774. extra: 995/979,
  49775. bottom: 30/1025
  49776. }
  49777. },
  49778. },
  49779. [
  49780. {
  49781. name: "Normal",
  49782. height: math.unit(7 + 6/12, "feet"),
  49783. default: true
  49784. },
  49785. ]
  49786. ))
  49787. characterMakers.push(() => makeCharacter(
  49788. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49789. {
  49790. standing: {
  49791. height: math.unit(17, "feet"),
  49792. name: "Standing",
  49793. image: {
  49794. source: "./media/characters/aster/standing.svg",
  49795. extra: 1798/1598,
  49796. bottom: 117/1915
  49797. }
  49798. },
  49799. },
  49800. [
  49801. {
  49802. name: "Normal",
  49803. height: math.unit(17, "feet"),
  49804. default: true
  49805. },
  49806. {
  49807. name: "Homewrecker",
  49808. height: math.unit(95, "feet")
  49809. },
  49810. {
  49811. name: "Planet Devourer",
  49812. height: math.unit(1008000, "miles")
  49813. },
  49814. ]
  49815. ))
  49816. characterMakers.push(() => makeCharacter(
  49817. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49818. {
  49819. front: {
  49820. height: math.unit(6 + 5/12, "feet"),
  49821. weight: math.unit(265, "lb"),
  49822. name: "Front",
  49823. image: {
  49824. source: "./media/characters/devon-childs/front.svg",
  49825. extra: 1795/1721,
  49826. bottom: 41/1836
  49827. }
  49828. },
  49829. side: {
  49830. height: math.unit(6 + 5/12, "feet"),
  49831. weight: math.unit(265, "lb"),
  49832. name: "Side",
  49833. image: {
  49834. source: "./media/characters/devon-childs/side.svg",
  49835. extra: 1812/1738,
  49836. bottom: 30/1842
  49837. }
  49838. },
  49839. back: {
  49840. height: math.unit(6 + 5/12, "feet"),
  49841. weight: math.unit(265, "lb"),
  49842. name: "Back",
  49843. image: {
  49844. source: "./media/characters/devon-childs/back.svg",
  49845. extra: 1808/1735,
  49846. bottom: 23/1831
  49847. }
  49848. },
  49849. hand: {
  49850. height: math.unit(1.464, "feet"),
  49851. name: "Hand",
  49852. image: {
  49853. source: "./media/characters/devon-childs/hand.svg"
  49854. }
  49855. },
  49856. foot: {
  49857. height: math.unit(1.6, "feet"),
  49858. name: "Foot",
  49859. image: {
  49860. source: "./media/characters/devon-childs/foot.svg"
  49861. }
  49862. },
  49863. },
  49864. [
  49865. {
  49866. name: "Micro",
  49867. height: math.unit(7, "cm")
  49868. },
  49869. {
  49870. name: "Normal",
  49871. height: math.unit(6 + 5/12, "feet"),
  49872. default: true
  49873. },
  49874. {
  49875. name: "Macro",
  49876. height: math.unit(154, "feet")
  49877. },
  49878. ]
  49879. ))
  49880. characterMakers.push(() => makeCharacter(
  49881. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49882. {
  49883. front: {
  49884. height: math.unit(6, "feet"),
  49885. weight: math.unit(180, "lb"),
  49886. name: "Front",
  49887. image: {
  49888. source: "./media/characters/lydemox-vir/front.svg",
  49889. extra: 1632/1435,
  49890. bottom: 58/1690
  49891. }
  49892. },
  49893. frontSFW: {
  49894. height: math.unit(6, "feet"),
  49895. weight: math.unit(180, "lb"),
  49896. name: "Front (SFW)",
  49897. image: {
  49898. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49899. extra: 1632/1435,
  49900. bottom: 58/1690
  49901. }
  49902. },
  49903. back: {
  49904. height: math.unit(6, "feet"),
  49905. weight: math.unit(180, "lb"),
  49906. name: "Back",
  49907. image: {
  49908. source: "./media/characters/lydemox-vir/back.svg",
  49909. extra: 1593/1408,
  49910. bottom: 31/1624
  49911. }
  49912. },
  49913. paw: {
  49914. height: math.unit(1.85, "feet"),
  49915. name: "Paw",
  49916. image: {
  49917. source: "./media/characters/lydemox-vir/paw.svg"
  49918. }
  49919. },
  49920. dick: {
  49921. height: math.unit(1.8, "feet"),
  49922. name: "Dick",
  49923. image: {
  49924. source: "./media/characters/lydemox-vir/dick.svg"
  49925. }
  49926. },
  49927. },
  49928. [
  49929. {
  49930. name: "Macro",
  49931. height: math.unit(100, "feet"),
  49932. default: true
  49933. },
  49934. {
  49935. name: "Teramacro",
  49936. height: math.unit(1, "earth")
  49937. },
  49938. {
  49939. name: "Planetary",
  49940. height: math.unit(20, "earths")
  49941. },
  49942. ]
  49943. ))
  49944. characterMakers.push(() => makeCharacter(
  49945. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49946. {
  49947. front: {
  49948. height: math.unit(15 + 8/12, "feet"),
  49949. weight: math.unit(1237, "kg"),
  49950. name: "Front",
  49951. image: {
  49952. source: "./media/characters/mia/front.svg",
  49953. extra: 1573/1446,
  49954. bottom: 58/1631
  49955. }
  49956. },
  49957. },
  49958. [
  49959. {
  49960. name: "Small",
  49961. height: math.unit(9 + 5/12, "feet")
  49962. },
  49963. {
  49964. name: "Normal",
  49965. height: math.unit(15 + 8/12, "feet"),
  49966. default: true
  49967. },
  49968. ]
  49969. ))
  49970. characterMakers.push(() => makeCharacter(
  49971. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49972. {
  49973. front: {
  49974. height: math.unit(10 + 6/12, "feet"),
  49975. weight: math.unit(1.3, "tons"),
  49976. name: "Front",
  49977. image: {
  49978. source: "./media/characters/mr-graves/front.svg",
  49979. extra: 1779/1695,
  49980. bottom: 198/1977
  49981. }
  49982. },
  49983. },
  49984. [
  49985. {
  49986. name: "Normal",
  49987. height: math.unit(10 + 6 /12, "feet"),
  49988. default: true
  49989. },
  49990. ]
  49991. ))
  49992. characterMakers.push(() => makeCharacter(
  49993. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49994. {
  49995. dressedFront: {
  49996. height: math.unit(5 + 8/12, "feet"),
  49997. weight: math.unit(125, "lb"),
  49998. name: "Dressed (Front)",
  49999. image: {
  50000. source: "./media/characters/jess/dressed-front.svg",
  50001. extra: 1176/1152,
  50002. bottom: 42/1218
  50003. }
  50004. },
  50005. dressedSide: {
  50006. height: math.unit(5 + 8/12, "feet"),
  50007. weight: math.unit(125, "lb"),
  50008. name: "Dressed (Side)",
  50009. image: {
  50010. source: "./media/characters/jess/dressed-side.svg",
  50011. extra: 1204/1190,
  50012. bottom: 6/1210
  50013. }
  50014. },
  50015. nudeFront: {
  50016. height: math.unit(5 + 8/12, "feet"),
  50017. weight: math.unit(125, "lb"),
  50018. name: "Nude (Front)",
  50019. image: {
  50020. source: "./media/characters/jess/nude-front.svg",
  50021. extra: 1176/1152,
  50022. bottom: 42/1218
  50023. }
  50024. },
  50025. nudeSide: {
  50026. height: math.unit(5 + 8/12, "feet"),
  50027. weight: math.unit(125, "lb"),
  50028. name: "Nude (Side)",
  50029. image: {
  50030. source: "./media/characters/jess/nude-side.svg",
  50031. extra: 1204/1190,
  50032. bottom: 6/1210
  50033. }
  50034. },
  50035. organsFront: {
  50036. height: math.unit(2.83799342105, "feet"),
  50037. name: "Organs (Front)",
  50038. image: {
  50039. source: "./media/characters/jess/organs-front.svg"
  50040. }
  50041. },
  50042. organsSide: {
  50043. height: math.unit(2.64225290474, "feet"),
  50044. name: "Organs (Side)",
  50045. image: {
  50046. source: "./media/characters/jess/organs-side.svg"
  50047. }
  50048. },
  50049. digestiveTractFront: {
  50050. height: math.unit(2.8106580871, "feet"),
  50051. name: "Digestive Tract (Front)",
  50052. image: {
  50053. source: "./media/characters/jess/digestive-tract-front.svg"
  50054. }
  50055. },
  50056. digestiveTractSide: {
  50057. height: math.unit(2.54365045014, "feet"),
  50058. name: "Digestive Tract (Side)",
  50059. image: {
  50060. source: "./media/characters/jess/digestive-tract-side.svg"
  50061. }
  50062. },
  50063. respiratorySystemFront: {
  50064. height: math.unit(1.11196233456, "feet"),
  50065. name: "Respiratory System (Front)",
  50066. image: {
  50067. source: "./media/characters/jess/respiratory-system-front.svg"
  50068. }
  50069. },
  50070. respiratorySystemSide: {
  50071. height: math.unit(0.89327966297, "feet"),
  50072. name: "Respiratory System (Side)",
  50073. image: {
  50074. source: "./media/characters/jess/respiratory-system-side.svg"
  50075. }
  50076. },
  50077. urinaryTractFront: {
  50078. height: math.unit(1.16126356186, "feet"),
  50079. name: "Urinary Tract (Front)",
  50080. image: {
  50081. source: "./media/characters/jess/urinary-tract-front.svg"
  50082. }
  50083. },
  50084. urinaryTractSide: {
  50085. height: math.unit(1.20910039627, "feet"),
  50086. name: "Urinary Tract (Side)",
  50087. image: {
  50088. source: "./media/characters/jess/urinary-tract-side.svg"
  50089. }
  50090. },
  50091. reproductiveOrgansFront: {
  50092. height: math.unit(0.48422591566, "feet"),
  50093. name: "Reproductive Organs (Front)",
  50094. image: {
  50095. source: "./media/characters/jess/reproductive-organs-front.svg"
  50096. }
  50097. },
  50098. reproductiveOrgansSide: {
  50099. height: math.unit(0.61553314481, "feet"),
  50100. name: "Reproductive Organs (Side)",
  50101. image: {
  50102. source: "./media/characters/jess/reproductive-organs-side.svg"
  50103. }
  50104. },
  50105. breastsFront: {
  50106. height: math.unit(0.47690395121, "feet"),
  50107. name: "Breasts (Front)",
  50108. image: {
  50109. source: "./media/characters/jess/breasts-front.svg"
  50110. }
  50111. },
  50112. breastsSide: {
  50113. height: math.unit(0.30556998307, "feet"),
  50114. name: "Breasts (Side)",
  50115. image: {
  50116. source: "./media/characters/jess/breasts-side.svg"
  50117. }
  50118. },
  50119. heartFront: {
  50120. height: math.unit(0.53011022622, "feet"),
  50121. name: "Heart (Front)",
  50122. image: {
  50123. source: "./media/characters/jess/heart-front.svg"
  50124. }
  50125. },
  50126. heartSide: {
  50127. height: math.unit(0.51790695213, "feet"),
  50128. name: "Heart (Side)",
  50129. image: {
  50130. source: "./media/characters/jess/heart-side.svg"
  50131. }
  50132. },
  50133. earsAndNoseFront: {
  50134. height: math.unit(0.29385483995, "feet"),
  50135. name: "Ears and Nose (Front)",
  50136. image: {
  50137. source: "./media/characters/jess/ears-and-nose-front.svg"
  50138. }
  50139. },
  50140. earsAndNoseSide: {
  50141. height: math.unit(0.18109658741, "feet"),
  50142. name: "Ears and Nose (Side)",
  50143. image: {
  50144. source: "./media/characters/jess/ears-and-nose-side.svg"
  50145. }
  50146. },
  50147. },
  50148. [
  50149. {
  50150. name: "Normal",
  50151. height: math.unit(5 + 8/12, "feet"),
  50152. default: true
  50153. },
  50154. ]
  50155. ))
  50156. characterMakers.push(() => makeCharacter(
  50157. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50158. {
  50159. front: {
  50160. height: math.unit(6, "feet"),
  50161. weight: math.unit(6.64467e-7, "grams"),
  50162. name: "Front",
  50163. image: {
  50164. source: "./media/characters/wimpering/front.svg",
  50165. extra: 597/587,
  50166. bottom: 34/631
  50167. }
  50168. },
  50169. },
  50170. [
  50171. {
  50172. name: "Micro",
  50173. height: math.unit(0.4, "mm"),
  50174. default: true
  50175. },
  50176. ]
  50177. ))
  50178. characterMakers.push(() => makeCharacter(
  50179. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50180. {
  50181. front: {
  50182. height: math.unit(5 + 2/12, "feet"),
  50183. weight: math.unit(110, "lb"),
  50184. name: "Front",
  50185. image: {
  50186. source: "./media/characters/keltre/front.svg",
  50187. extra: 1099/1057,
  50188. bottom: 22/1121
  50189. }
  50190. },
  50191. back: {
  50192. height: math.unit(5 + 2/12, "feet"),
  50193. weight: math.unit(110, "lb"),
  50194. name: "Back",
  50195. image: {
  50196. source: "./media/characters/keltre/back.svg",
  50197. extra: 1095/1053,
  50198. bottom: 17/1112
  50199. }
  50200. },
  50201. dressed: {
  50202. height: math.unit(5 + 2/12, "feet"),
  50203. weight: math.unit(110, "lb"),
  50204. name: "Dressed",
  50205. image: {
  50206. source: "./media/characters/keltre/dressed.svg",
  50207. extra: 1099/1057,
  50208. bottom: 22/1121
  50209. }
  50210. },
  50211. winter: {
  50212. height: math.unit(5 + 2/12, "feet"),
  50213. weight: math.unit(110, "lb"),
  50214. name: "Winter",
  50215. image: {
  50216. source: "./media/characters/keltre/winter.svg",
  50217. extra: 1099/1057,
  50218. bottom: 22/1121
  50219. }
  50220. },
  50221. head: {
  50222. height: math.unit(1.61 * 0.86, "feet"),
  50223. name: "Head",
  50224. image: {
  50225. source: "./media/characters/keltre/head.svg",
  50226. extra: 534/421,
  50227. bottom: 0/534
  50228. }
  50229. },
  50230. hand: {
  50231. height: math.unit(1.3 * 0.86, "feet"),
  50232. name: "Hand",
  50233. image: {
  50234. source: "./media/characters/keltre/hand.svg"
  50235. }
  50236. },
  50237. foot: {
  50238. height: math.unit(1.8 * 0.86, "feet"),
  50239. name: "Foot",
  50240. image: {
  50241. source: "./media/characters/keltre/foot.svg"
  50242. }
  50243. },
  50244. },
  50245. [
  50246. {
  50247. name: "Fine",
  50248. height: math.unit(1, "inch")
  50249. },
  50250. {
  50251. name: "Dimnutive",
  50252. height: math.unit(4, "inches")
  50253. },
  50254. {
  50255. name: "Tiny",
  50256. height: math.unit(1, "foot")
  50257. },
  50258. {
  50259. name: "Small",
  50260. height: math.unit(3, "feet")
  50261. },
  50262. {
  50263. name: "Normal",
  50264. height: math.unit(5 + 2/12, "feet"),
  50265. default: true
  50266. },
  50267. ]
  50268. ))
  50269. characterMakers.push(() => makeCharacter(
  50270. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50271. {
  50272. front: {
  50273. height: math.unit(6 + 2/12, "feet"),
  50274. name: "Front",
  50275. image: {
  50276. source: "./media/characters/nox/front.svg",
  50277. extra: 1917/1830,
  50278. bottom: 74/1991
  50279. }
  50280. },
  50281. back: {
  50282. height: math.unit(6 + 2/12, "feet"),
  50283. name: "Back",
  50284. image: {
  50285. source: "./media/characters/nox/back.svg",
  50286. extra: 1896/1815,
  50287. bottom: 21/1917
  50288. }
  50289. },
  50290. head: {
  50291. height: math.unit(1.1, "feet"),
  50292. name: "Head",
  50293. image: {
  50294. source: "./media/characters/nox/head.svg",
  50295. extra: 874/704,
  50296. bottom: 0/874
  50297. }
  50298. },
  50299. tattoo: {
  50300. height: math.unit(0.729, "feet"),
  50301. name: "Tattoo",
  50302. image: {
  50303. source: "./media/characters/nox/tattoo.svg"
  50304. }
  50305. },
  50306. },
  50307. [
  50308. {
  50309. name: "Normal",
  50310. height: math.unit(6 + 2/12, "feet")
  50311. },
  50312. {
  50313. name: "Gigamacro",
  50314. height: math.unit(2, "earths"),
  50315. default: true
  50316. },
  50317. {
  50318. name: "Cosmic",
  50319. height: math.unit(867, "yottameters")
  50320. },
  50321. ]
  50322. ))
  50323. characterMakers.push(() => makeCharacter(
  50324. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50325. {
  50326. front: {
  50327. height: math.unit(6, "feet"),
  50328. weight: math.unit(150, "lb"),
  50329. name: "Front",
  50330. image: {
  50331. source: "./media/characters/caspian/front.svg",
  50332. extra: 1443/1359,
  50333. bottom: 0/1443
  50334. }
  50335. },
  50336. back: {
  50337. height: math.unit(6, "feet"),
  50338. weight: math.unit(150, "lb"),
  50339. name: "Back",
  50340. image: {
  50341. source: "./media/characters/caspian/back.svg",
  50342. extra: 1379/1309,
  50343. bottom: 0/1379
  50344. }
  50345. },
  50346. head: {
  50347. height: math.unit(0.9, "feet"),
  50348. name: "Head",
  50349. image: {
  50350. source: "./media/characters/caspian/head.svg",
  50351. extra: 692/492,
  50352. bottom: 0/692
  50353. }
  50354. },
  50355. headAlt: {
  50356. height: math.unit(0.95, "feet"),
  50357. name: "Head (Alt)",
  50358. image: {
  50359. source: "./media/characters/caspian/head-alt.svg",
  50360. extra: 668/508,
  50361. bottom: 0/668
  50362. }
  50363. },
  50364. hand: {
  50365. height: math.unit(0.8, "feet"),
  50366. name: "Hand",
  50367. image: {
  50368. source: "./media/characters/caspian/hand.svg"
  50369. }
  50370. },
  50371. paw: {
  50372. height: math.unit(0.95, "feet"),
  50373. name: "Paw",
  50374. image: {
  50375. source: "./media/characters/caspian/paw.svg"
  50376. }
  50377. },
  50378. },
  50379. [
  50380. {
  50381. name: "Normal",
  50382. height: math.unit(162, "feet"),
  50383. default: true
  50384. },
  50385. ]
  50386. ))
  50387. characterMakers.push(() => makeCharacter(
  50388. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50389. {
  50390. front: {
  50391. height: math.unit(6, "feet"),
  50392. name: "Front",
  50393. image: {
  50394. source: "./media/characters/myra-aisling/front.svg",
  50395. extra: 1268/1166,
  50396. bottom: 73/1341
  50397. }
  50398. },
  50399. back: {
  50400. height: math.unit(6, "feet"),
  50401. name: "Back",
  50402. image: {
  50403. source: "./media/characters/myra-aisling/back.svg",
  50404. extra: 1249/1149,
  50405. bottom: 79/1328
  50406. }
  50407. },
  50408. dressed: {
  50409. height: math.unit(6, "feet"),
  50410. name: "Dressed",
  50411. image: {
  50412. source: "./media/characters/myra-aisling/dressed.svg",
  50413. extra: 1290/1189,
  50414. bottom: 47/1337
  50415. }
  50416. },
  50417. hand: {
  50418. height: math.unit(1.1, "feet"),
  50419. name: "Hand",
  50420. image: {
  50421. source: "./media/characters/myra-aisling/hand.svg"
  50422. }
  50423. },
  50424. paw: {
  50425. height: math.unit(1.23, "feet"),
  50426. name: "Paw",
  50427. image: {
  50428. source: "./media/characters/myra-aisling/paw.svg"
  50429. }
  50430. },
  50431. },
  50432. [
  50433. {
  50434. name: "Normal",
  50435. height: math.unit(160, "feet"),
  50436. default: true
  50437. },
  50438. ]
  50439. ))
  50440. characterMakers.push(() => makeCharacter(
  50441. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50442. {
  50443. front: {
  50444. height: math.unit(6, "feet"),
  50445. name: "Front",
  50446. image: {
  50447. source: "./media/characters/tenley-sidero/front.svg",
  50448. extra: 1365/1276,
  50449. bottom: 47/1412
  50450. }
  50451. },
  50452. back: {
  50453. height: math.unit(6, "feet"),
  50454. name: "Back",
  50455. image: {
  50456. source: "./media/characters/tenley-sidero/back.svg",
  50457. extra: 1383/1283,
  50458. bottom: 35/1418
  50459. }
  50460. },
  50461. dressed: {
  50462. height: math.unit(6, "feet"),
  50463. name: "Dressed",
  50464. image: {
  50465. source: "./media/characters/tenley-sidero/dressed.svg",
  50466. extra: 1364/1275,
  50467. bottom: 42/1406
  50468. }
  50469. },
  50470. head: {
  50471. height: math.unit(1.47, "feet"),
  50472. name: "Head",
  50473. image: {
  50474. source: "./media/characters/tenley-sidero/head.svg",
  50475. extra: 610/490,
  50476. bottom: 0/610
  50477. }
  50478. },
  50479. },
  50480. [
  50481. {
  50482. name: "Normal",
  50483. height: math.unit(154, "feet"),
  50484. default: true
  50485. },
  50486. ]
  50487. ))
  50488. characterMakers.push(() => makeCharacter(
  50489. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50490. {
  50491. front: {
  50492. height: math.unit(5, "inches"),
  50493. name: "Front",
  50494. image: {
  50495. source: "./media/characters/mallory/front.svg",
  50496. extra: 1919/1678,
  50497. bottom: 29/1948
  50498. }
  50499. },
  50500. hand: {
  50501. height: math.unit(0.73, "inches"),
  50502. name: "Hand",
  50503. image: {
  50504. source: "./media/characters/mallory/hand.svg"
  50505. }
  50506. },
  50507. paw: {
  50508. height: math.unit(0.68, "inches"),
  50509. name: "Paw",
  50510. image: {
  50511. source: "./media/characters/mallory/paw.svg"
  50512. }
  50513. },
  50514. },
  50515. [
  50516. {
  50517. name: "Small",
  50518. height: math.unit(5, "inches"),
  50519. default: true
  50520. },
  50521. ]
  50522. ))
  50523. characterMakers.push(() => makeCharacter(
  50524. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50525. {
  50526. naked: {
  50527. height: math.unit(6, "feet"),
  50528. name: "Naked",
  50529. image: {
  50530. source: "./media/characters/mab/naked.svg",
  50531. extra: 1855/1757,
  50532. bottom: 208/2063
  50533. }
  50534. },
  50535. outside: {
  50536. height: math.unit(6, "feet"),
  50537. name: "Outside",
  50538. image: {
  50539. source: "./media/characters/mab/outside.svg",
  50540. extra: 1855/1757,
  50541. bottom: 208/2063
  50542. }
  50543. },
  50544. party: {
  50545. height: math.unit(6, "feet"),
  50546. name: "Party",
  50547. image: {
  50548. source: "./media/characters/mab/party.svg",
  50549. extra: 1855/1757,
  50550. bottom: 208/2063
  50551. }
  50552. },
  50553. },
  50554. [
  50555. {
  50556. name: "Normal",
  50557. height: math.unit(165, "feet"),
  50558. default: true
  50559. },
  50560. ]
  50561. ))
  50562. characterMakers.push(() => makeCharacter(
  50563. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50564. {
  50565. feral: {
  50566. height: math.unit(12, "feet"),
  50567. weight: math.unit(20000, "lb"),
  50568. name: "Side",
  50569. image: {
  50570. source: "./media/characters/winter/feral.svg",
  50571. extra: 1286/943,
  50572. bottom: 112/1398
  50573. },
  50574. form: "feral",
  50575. default: true
  50576. },
  50577. feralNsfw: {
  50578. height: math.unit(12, "feet"),
  50579. weight: math.unit(20000, "lb"),
  50580. name: "Side (NSFW)",
  50581. image: {
  50582. source: "./media/characters/winter/feral-nsfw.svg",
  50583. extra: 1286/943,
  50584. bottom: 112/1398
  50585. },
  50586. form: "feral"
  50587. },
  50588. dick: {
  50589. height: math.unit(3.79, "feet"),
  50590. name: "Dick",
  50591. image: {
  50592. source: "./media/characters/winter/dick.svg"
  50593. },
  50594. form: "feral"
  50595. },
  50596. anthro: {
  50597. height: math.unit(12, "feet"),
  50598. weight: math.unit(10, "tons"),
  50599. name: "Anthro",
  50600. image: {
  50601. source: "./media/characters/winter/anthro.svg",
  50602. extra: 1701/1553,
  50603. bottom: 64/1765
  50604. },
  50605. form: "anthro",
  50606. default: true
  50607. },
  50608. },
  50609. [
  50610. {
  50611. name: "Big",
  50612. height: math.unit(12, "feet"),
  50613. default: true,
  50614. form: "feral"
  50615. },
  50616. {
  50617. name: "Big",
  50618. height: math.unit(12, "feet"),
  50619. default: true,
  50620. form: "anthro"
  50621. },
  50622. ],
  50623. {
  50624. "feral": {
  50625. name: "Feral",
  50626. default: true
  50627. },
  50628. "anthro": {
  50629. name: "Anthro"
  50630. }
  50631. }
  50632. ))
  50633. characterMakers.push(() => makeCharacter(
  50634. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50635. {
  50636. front: {
  50637. height: math.unit(4.1, "inches"),
  50638. name: "Front",
  50639. image: {
  50640. source: "./media/characters/alto/front.svg",
  50641. extra: 736/627,
  50642. bottom: 90/826
  50643. }
  50644. },
  50645. },
  50646. [
  50647. {
  50648. name: "Normal",
  50649. height: math.unit(4.1, "inches"),
  50650. default: true
  50651. },
  50652. ]
  50653. ))
  50654. characterMakers.push(() => makeCharacter(
  50655. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50656. {
  50657. sitting: {
  50658. height: math.unit(3, "feet"),
  50659. name: "Sitting",
  50660. image: {
  50661. source: "./media/characters/ratstrid-v/sitting.svg",
  50662. extra: 355/310,
  50663. bottom: 136/491
  50664. }
  50665. },
  50666. },
  50667. [
  50668. {
  50669. name: "Normal",
  50670. height: math.unit(3, "feet"),
  50671. default: true
  50672. },
  50673. ]
  50674. ))
  50675. characterMakers.push(() => makeCharacter(
  50676. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50677. {
  50678. back: {
  50679. height: math.unit(6, "feet"),
  50680. weight: math.unit(450, "lb"),
  50681. name: "Back",
  50682. image: {
  50683. source: "./media/characters/siz/back.svg",
  50684. extra: 1449/1274,
  50685. bottom: 13/1462
  50686. }
  50687. },
  50688. },
  50689. [
  50690. {
  50691. name: "Smallest",
  50692. height: math.unit(18 + 3/12, "feet")
  50693. },
  50694. {
  50695. name: "Modest",
  50696. height: math.unit(56 + 8/12, "feet"),
  50697. default: true
  50698. },
  50699. {
  50700. name: "Largest",
  50701. height: math.unit(3590, "feet")
  50702. },
  50703. ]
  50704. ))
  50705. characterMakers.push(() => makeCharacter(
  50706. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50707. {
  50708. front: {
  50709. height: math.unit(5 + 9/12, "feet"),
  50710. weight: math.unit(150, "lb"),
  50711. name: "Front",
  50712. image: {
  50713. source: "./media/characters/ven/front.svg",
  50714. extra: 1372/1320,
  50715. bottom: 73/1445
  50716. }
  50717. },
  50718. side: {
  50719. height: math.unit(5 + 9/12, "feet"),
  50720. weight: math.unit(1150, "lb"),
  50721. name: "Side",
  50722. image: {
  50723. source: "./media/characters/ven/side.svg",
  50724. extra: 1119/1070,
  50725. bottom: 42/1161
  50726. },
  50727. default: true
  50728. },
  50729. },
  50730. [
  50731. {
  50732. name: "Normal",
  50733. height: math.unit(5 + 9/12, "feet"),
  50734. default: true
  50735. },
  50736. ]
  50737. ))
  50738. characterMakers.push(() => makeCharacter(
  50739. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50740. {
  50741. front: {
  50742. height: math.unit(12, "feet"),
  50743. weight: math.unit(1000, "kg"),
  50744. name: "Front",
  50745. image: {
  50746. source: "./media/characters/maple/front.svg",
  50747. extra: 1193/1081,
  50748. bottom: 22/1215
  50749. }
  50750. },
  50751. },
  50752. [
  50753. {
  50754. name: "Compressed",
  50755. height: math.unit(7, "feet")
  50756. },
  50757. {
  50758. name: "Normal",
  50759. height: math.unit(12, "feet"),
  50760. default: true
  50761. },
  50762. ]
  50763. ))
  50764. characterMakers.push(() => makeCharacter(
  50765. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50766. {
  50767. front: {
  50768. height: math.unit(9, "feet"),
  50769. weight: math.unit(1500, "lb"),
  50770. name: "Front",
  50771. image: {
  50772. source: "./media/characters/nora/front.svg",
  50773. extra: 1348/1286,
  50774. bottom: 218/1566
  50775. }
  50776. },
  50777. erect: {
  50778. height: math.unit(9, "feet"),
  50779. weight: math.unit(11500, "lb"),
  50780. name: "Erect",
  50781. image: {
  50782. source: "./media/characters/nora/erect.svg",
  50783. extra: 1488/1433,
  50784. bottom: 133/1621
  50785. }
  50786. },
  50787. },
  50788. [
  50789. {
  50790. name: "Normal",
  50791. height: math.unit(9, "feet"),
  50792. default: true
  50793. },
  50794. ]
  50795. ))
  50796. characterMakers.push(() => makeCharacter(
  50797. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50798. {
  50799. front: {
  50800. height: math.unit(25, "feet"),
  50801. weight: math.unit(27500, "lb"),
  50802. name: "Front",
  50803. image: {
  50804. source: "./media/characters/north-caudin/front.svg",
  50805. extra: 1184/1082,
  50806. bottom: 23/1207
  50807. }
  50808. },
  50809. },
  50810. [
  50811. {
  50812. name: "Compressed",
  50813. height: math.unit(10, "feet")
  50814. },
  50815. {
  50816. name: "Normal",
  50817. height: math.unit(25, "feet"),
  50818. default: true
  50819. },
  50820. ]
  50821. ))
  50822. characterMakers.push(() => makeCharacter(
  50823. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50824. {
  50825. front: {
  50826. height: math.unit(9, "feet"),
  50827. weight: math.unit(1250, "lb"),
  50828. name: "Front",
  50829. image: {
  50830. source: "./media/characters/merrian/front.svg",
  50831. extra: 2393/2304,
  50832. bottom: 40/2433
  50833. }
  50834. },
  50835. },
  50836. [
  50837. {
  50838. name: "Normal",
  50839. height: math.unit(9, "feet"),
  50840. default: true
  50841. },
  50842. ]
  50843. ))
  50844. characterMakers.push(() => makeCharacter(
  50845. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50846. {
  50847. front: {
  50848. height: math.unit(9, "feet"),
  50849. weight: math.unit(1000, "lb"),
  50850. name: "Front",
  50851. image: {
  50852. source: "./media/characters/hazel/front.svg",
  50853. extra: 2351/2298,
  50854. bottom: 38/2389
  50855. }
  50856. },
  50857. },
  50858. [
  50859. {
  50860. name: "Normal",
  50861. height: math.unit(9, "feet"),
  50862. default: true
  50863. },
  50864. ]
  50865. ))
  50866. characterMakers.push(() => makeCharacter(
  50867. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50868. {
  50869. front: {
  50870. height: math.unit(13, "feet"),
  50871. weight: math.unit(3200, "lb"),
  50872. name: "Front",
  50873. image: {
  50874. source: "./media/characters/emma/front.svg",
  50875. extra: 2263/2029,
  50876. bottom: 68/2331
  50877. }
  50878. },
  50879. },
  50880. [
  50881. {
  50882. name: "Normal",
  50883. height: math.unit(13, "feet"),
  50884. default: true
  50885. },
  50886. ]
  50887. ))
  50888. characterMakers.push(() => makeCharacter(
  50889. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50890. {
  50891. front: {
  50892. height: math.unit(11 + 9/12, "feet"),
  50893. weight: math.unit(2500, "lb"),
  50894. name: "Front",
  50895. image: {
  50896. source: "./media/characters/ilumina/front.svg",
  50897. extra: 2248/2209,
  50898. bottom: 164/2412
  50899. }
  50900. },
  50901. },
  50902. [
  50903. {
  50904. name: "Normal",
  50905. height: math.unit(11 + 9/12, "feet"),
  50906. default: true
  50907. },
  50908. ]
  50909. ))
  50910. characterMakers.push(() => makeCharacter(
  50911. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50912. {
  50913. front: {
  50914. height: math.unit(8 + 10/12, "feet"),
  50915. weight: math.unit(1350, "lb"),
  50916. name: "Front",
  50917. image: {
  50918. source: "./media/characters/moonshine/front.svg",
  50919. extra: 2395/2288,
  50920. bottom: 40/2435
  50921. }
  50922. },
  50923. },
  50924. [
  50925. {
  50926. name: "Normal",
  50927. height: math.unit(8 + 10/12, "feet"),
  50928. default: true
  50929. },
  50930. ]
  50931. ))
  50932. characterMakers.push(() => makeCharacter(
  50933. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50934. {
  50935. front: {
  50936. height: math.unit(14, "feet"),
  50937. weight: math.unit(3400, "lb"),
  50938. name: "Front",
  50939. image: {
  50940. source: "./media/characters/aletia/front.svg",
  50941. extra: 1185/1052,
  50942. bottom: 21/1206
  50943. }
  50944. },
  50945. },
  50946. [
  50947. {
  50948. name: "Compressed",
  50949. height: math.unit(8, "feet")
  50950. },
  50951. {
  50952. name: "Normal",
  50953. height: math.unit(14, "feet"),
  50954. default: true
  50955. },
  50956. ]
  50957. ))
  50958. characterMakers.push(() => makeCharacter(
  50959. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50960. {
  50961. front: {
  50962. height: math.unit(17, "feet"),
  50963. weight: math.unit(6500, "lb"),
  50964. name: "Front",
  50965. image: {
  50966. source: "./media/characters/deidra/front.svg",
  50967. extra: 1201/1081,
  50968. bottom: 16/1217
  50969. }
  50970. },
  50971. },
  50972. [
  50973. {
  50974. name: "Compressed",
  50975. height: math.unit(9 + 6/12, "feet")
  50976. },
  50977. {
  50978. name: "Normal",
  50979. height: math.unit(17, "feet"),
  50980. default: true
  50981. },
  50982. ]
  50983. ))
  50984. characterMakers.push(() => makeCharacter(
  50985. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50986. {
  50987. front: {
  50988. height: math.unit(7 + 4/12, "feet"),
  50989. weight: math.unit(280, "lb"),
  50990. name: "Front",
  50991. image: {
  50992. source: "./media/characters/freki-yrmori/front.svg",
  50993. extra: 1286/1182,
  50994. bottom: 29/1315
  50995. }
  50996. },
  50997. maw: {
  50998. height: math.unit(0.9, "feet"),
  50999. name: "Maw",
  51000. image: {
  51001. source: "./media/characters/freki-yrmori/maw.svg"
  51002. }
  51003. },
  51004. },
  51005. [
  51006. {
  51007. name: "Normal",
  51008. height: math.unit(7 + 4/12, "feet"),
  51009. default: true
  51010. },
  51011. {
  51012. name: "Macro",
  51013. height: math.unit(38.5, "meters")
  51014. },
  51015. ]
  51016. ))
  51017. characterMakers.push(() => makeCharacter(
  51018. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51019. {
  51020. side: {
  51021. height: math.unit(47.2, "meters"),
  51022. weight: math.unit(10000, "tons"),
  51023. name: "Side",
  51024. image: {
  51025. source: "./media/characters/aetherios/side.svg",
  51026. extra: 2363/642,
  51027. bottom: 221/2584
  51028. }
  51029. },
  51030. top: {
  51031. height: math.unit(240, "meters"),
  51032. weight: math.unit(10000, "tons"),
  51033. name: "Top",
  51034. image: {
  51035. source: "./media/characters/aetherios/top.svg"
  51036. }
  51037. },
  51038. bottom: {
  51039. height: math.unit(240, "meters"),
  51040. weight: math.unit(10000, "tons"),
  51041. name: "Bottom",
  51042. image: {
  51043. source: "./media/characters/aetherios/bottom.svg"
  51044. }
  51045. },
  51046. head: {
  51047. height: math.unit(38.6, "meters"),
  51048. name: "Head",
  51049. image: {
  51050. source: "./media/characters/aetherios/head.svg",
  51051. extra: 1335/1112,
  51052. bottom: 0/1335
  51053. }
  51054. },
  51055. front: {
  51056. height: math.unit(29, "meters"),
  51057. name: "Front",
  51058. image: {
  51059. source: "./media/characters/aetherios/front.svg",
  51060. extra: 1266/953,
  51061. bottom: 158/1424
  51062. }
  51063. },
  51064. maw: {
  51065. height: math.unit(16.37, "meters"),
  51066. name: "Maw",
  51067. image: {
  51068. source: "./media/characters/aetherios/maw.svg",
  51069. extra: 748/637,
  51070. bottom: 0/748
  51071. },
  51072. extraAttributes: {
  51073. preyCapacity: {
  51074. name: "Capacity",
  51075. power: 3,
  51076. type: "volume",
  51077. base: math.unit(1000, "people")
  51078. },
  51079. tongueSize: {
  51080. name: "Tongue Size",
  51081. power: 2,
  51082. type: "area",
  51083. base: math.unit(21, "m^2")
  51084. }
  51085. }
  51086. },
  51087. forepaw: {
  51088. height: math.unit(18, "meters"),
  51089. name: "Forepaw",
  51090. image: {
  51091. source: "./media/characters/aetherios/forepaw.svg"
  51092. }
  51093. },
  51094. hindpaw: {
  51095. height: math.unit(23, "meters"),
  51096. name: "Hindpaw",
  51097. image: {
  51098. source: "./media/characters/aetherios/hindpaw.svg"
  51099. }
  51100. },
  51101. genitals: {
  51102. height: math.unit(42, "meters"),
  51103. name: "Genitals",
  51104. image: {
  51105. source: "./media/characters/aetherios/genitals.svg"
  51106. }
  51107. },
  51108. },
  51109. [
  51110. {
  51111. name: "Normal",
  51112. height: math.unit(47.2, "meters"),
  51113. default: true
  51114. },
  51115. {
  51116. name: "Macro",
  51117. height: math.unit(160, "meters")
  51118. },
  51119. {
  51120. name: "Mega",
  51121. height: math.unit(1.87, "km")
  51122. },
  51123. {
  51124. name: "Giga",
  51125. height: math.unit(40000, "km")
  51126. },
  51127. {
  51128. name: "Stellar",
  51129. height: math.unit(158000000, "km")
  51130. },
  51131. {
  51132. name: "Cosmic",
  51133. height: math.unit(9.46e12, "km")
  51134. },
  51135. ]
  51136. ))
  51137. characterMakers.push(() => makeCharacter(
  51138. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51139. {
  51140. front: {
  51141. height: math.unit(5 + 4/12, "feet"),
  51142. weight: math.unit(80, "lb"),
  51143. name: "Front",
  51144. image: {
  51145. source: "./media/characters/mizu-gieeg/front.svg",
  51146. extra: 850/709,
  51147. bottom: 52/902
  51148. }
  51149. },
  51150. back: {
  51151. height: math.unit(5 + 4/12, "feet"),
  51152. weight: math.unit(80, "lb"),
  51153. name: "Back",
  51154. image: {
  51155. source: "./media/characters/mizu-gieeg/back.svg",
  51156. extra: 882/745,
  51157. bottom: 25/907
  51158. }
  51159. },
  51160. },
  51161. [
  51162. {
  51163. name: "Normal",
  51164. height: math.unit(5 + 4/12, "feet"),
  51165. default: true
  51166. },
  51167. ]
  51168. ))
  51169. characterMakers.push(() => makeCharacter(
  51170. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51171. {
  51172. front: {
  51173. height: math.unit(6, "feet"),
  51174. name: "Front",
  51175. image: {
  51176. source: "./media/characters/roselle-st-papier/front.svg",
  51177. extra: 1430/1280,
  51178. bottom: 37/1467
  51179. }
  51180. },
  51181. back: {
  51182. height: math.unit(6, "feet"),
  51183. name: "Back",
  51184. image: {
  51185. source: "./media/characters/roselle-st-papier/back.svg",
  51186. extra: 1491/1296,
  51187. bottom: 23/1514
  51188. }
  51189. },
  51190. ear: {
  51191. height: math.unit(1.26, "feet"),
  51192. name: "Ear",
  51193. image: {
  51194. source: "./media/characters/roselle-st-papier/ear.svg"
  51195. }
  51196. },
  51197. },
  51198. [
  51199. {
  51200. name: "Normal",
  51201. height: math.unit(150, "feet"),
  51202. default: true
  51203. },
  51204. ]
  51205. ))
  51206. characterMakers.push(() => makeCharacter(
  51207. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51208. {
  51209. front: {
  51210. height: math.unit(1, "inches"),
  51211. name: "Front",
  51212. image: {
  51213. source: "./media/characters/valargent/front.svg",
  51214. extra: 1825/1694,
  51215. bottom: 62/1887
  51216. }
  51217. },
  51218. back: {
  51219. height: math.unit(1, "inches"),
  51220. name: "Back",
  51221. image: {
  51222. source: "./media/characters/valargent/back.svg",
  51223. extra: 1775/1682,
  51224. bottom: 88/1863
  51225. }
  51226. },
  51227. },
  51228. [
  51229. {
  51230. name: "Micro",
  51231. height: math.unit(1, "inch"),
  51232. default: true
  51233. },
  51234. ]
  51235. ))
  51236. characterMakers.push(() => makeCharacter(
  51237. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51238. {
  51239. front: {
  51240. height: math.unit(3.4, "meters"),
  51241. name: "Front",
  51242. image: {
  51243. source: "./media/characters/zarina/front.svg",
  51244. extra: 1733/1425,
  51245. bottom: 93/1826
  51246. }
  51247. },
  51248. squatting: {
  51249. height: math.unit(2.14, "meters"),
  51250. name: "Squatting",
  51251. image: {
  51252. source: "./media/characters/zarina/squatting.svg",
  51253. extra: 1073/788,
  51254. bottom: 63/1136
  51255. }
  51256. },
  51257. back: {
  51258. height: math.unit(2.14, "meters"),
  51259. name: "Back",
  51260. image: {
  51261. source: "./media/characters/zarina/back.svg",
  51262. extra: 1128/885,
  51263. bottom: 0/1128
  51264. }
  51265. },
  51266. },
  51267. [
  51268. {
  51269. name: "Normal",
  51270. height: math.unit(3.4, "meters"),
  51271. default: true
  51272. },
  51273. {
  51274. name: "Big",
  51275. height: math.unit(5, "meters")
  51276. },
  51277. {
  51278. name: "Macro",
  51279. height: math.unit(110, "meters")
  51280. },
  51281. ]
  51282. ))
  51283. characterMakers.push(() => makeCharacter(
  51284. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51285. {
  51286. front: {
  51287. height: math.unit(7, "feet"),
  51288. name: "Front",
  51289. image: {
  51290. source: "./media/characters/ventus-astro-fox/front.svg",
  51291. extra: 1792/1623,
  51292. bottom: 28/1820
  51293. }
  51294. },
  51295. back: {
  51296. height: math.unit(7, "feet"),
  51297. name: "Back",
  51298. image: {
  51299. source: "./media/characters/ventus-astro-fox/back.svg",
  51300. extra: 1789/1620,
  51301. bottom: 31/1820
  51302. }
  51303. },
  51304. outfit: {
  51305. height: math.unit(7, "feet"),
  51306. name: "Outfit",
  51307. image: {
  51308. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51309. extra: 1054/925,
  51310. bottom: 15/1069
  51311. }
  51312. },
  51313. head: {
  51314. height: math.unit(1.12, "feet"),
  51315. name: "Head",
  51316. image: {
  51317. source: "./media/characters/ventus-astro-fox/head.svg",
  51318. extra: 866/504,
  51319. bottom: 0/866
  51320. }
  51321. },
  51322. hand: {
  51323. height: math.unit(1, "feet"),
  51324. name: "Hand",
  51325. image: {
  51326. source: "./media/characters/ventus-astro-fox/hand.svg"
  51327. }
  51328. },
  51329. paw: {
  51330. height: math.unit(1.5, "feet"),
  51331. name: "Paw",
  51332. image: {
  51333. source: "./media/characters/ventus-astro-fox/paw.svg"
  51334. }
  51335. },
  51336. },
  51337. [
  51338. {
  51339. name: "Normal",
  51340. height: math.unit(7, "feet"),
  51341. default: true
  51342. },
  51343. {
  51344. name: "Macro",
  51345. height: math.unit(200, "feet")
  51346. },
  51347. {
  51348. name: "Cosmic",
  51349. height: math.unit(3, "universes")
  51350. },
  51351. ]
  51352. ))
  51353. characterMakers.push(() => makeCharacter(
  51354. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51355. {
  51356. front: {
  51357. height: math.unit(3, "meters"),
  51358. weight: math.unit(7000, "lb"),
  51359. name: "Front",
  51360. image: {
  51361. source: "./media/characters/core-t/front.svg",
  51362. extra: 5729/4941,
  51363. bottom: 1129/6858
  51364. }
  51365. },
  51366. },
  51367. [
  51368. {
  51369. name: "Big",
  51370. height: math.unit(3, "meters"),
  51371. default: true
  51372. },
  51373. ]
  51374. ))
  51375. characterMakers.push(() => makeCharacter(
  51376. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51377. {
  51378. normal: {
  51379. height: math.unit(6 + 6/12, "feet"),
  51380. weight: math.unit(275, "lb"),
  51381. name: "Front",
  51382. image: {
  51383. source: "./media/characters/cadbunny/normal.svg",
  51384. extra: 1129/947,
  51385. bottom: 93/1222
  51386. },
  51387. default: true,
  51388. form: "normal"
  51389. },
  51390. gigantamax: {
  51391. height: math.unit(26, "feet"),
  51392. weight: math.unit(16000, "lb"),
  51393. name: "Front",
  51394. image: {
  51395. source: "./media/characters/cadbunny/gigantamax.svg",
  51396. extra: 1133/944,
  51397. bottom: 90/1223
  51398. },
  51399. default: true,
  51400. form: "gigantamax"
  51401. },
  51402. },
  51403. [
  51404. {
  51405. name: "Normal",
  51406. height: math.unit(6 + 6/12, "feet"),
  51407. default: true,
  51408. form: "normal"
  51409. },
  51410. {
  51411. name: "Small",
  51412. height: math.unit(26, "feet"),
  51413. default: true,
  51414. form: "gigantamax"
  51415. },
  51416. {
  51417. name: "Large",
  51418. height: math.unit(78, "feet"),
  51419. form: "gigantamax"
  51420. },
  51421. ],
  51422. {
  51423. "normal": {
  51424. name: "Normal",
  51425. default: true
  51426. },
  51427. "gigantamax": {
  51428. name: "Gigantamax"
  51429. }
  51430. }
  51431. ))
  51432. characterMakers.push(() => makeCharacter(
  51433. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51434. {
  51435. anthroFront: {
  51436. height: math.unit(8, "feet"),
  51437. weight: math.unit(300, "lb"),
  51438. name: "Front",
  51439. image: {
  51440. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51441. extra: 1272/1176,
  51442. bottom: 53/1325
  51443. },
  51444. form: "anthro",
  51445. default: true
  51446. },
  51447. feralSide: {
  51448. height: math.unit(4, "feet"),
  51449. weight: math.unit(250, "lb"),
  51450. name: "Side",
  51451. image: {
  51452. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51453. extra: 731/621,
  51454. bottom: 0/731
  51455. },
  51456. form: "feral",
  51457. default: true
  51458. },
  51459. },
  51460. [
  51461. {
  51462. name: "Regular",
  51463. height: math.unit(8, "feet"),
  51464. form: "anthro"
  51465. },
  51466. {
  51467. name: "Macro",
  51468. height: math.unit(250, "feet"),
  51469. form: "anthro",
  51470. default: true
  51471. },
  51472. {
  51473. name: "Regular",
  51474. height: math.unit(4, "feet"),
  51475. form: "feral"
  51476. },
  51477. {
  51478. name: "Macro",
  51479. height: math.unit(125, "feet"),
  51480. form: "feral",
  51481. default: true
  51482. },
  51483. ],
  51484. {
  51485. "anthro": {
  51486. name: "Anthro",
  51487. default: true
  51488. },
  51489. "feral": {
  51490. name: "Feral",
  51491. },
  51492. }
  51493. ))
  51494. characterMakers.push(() => makeCharacter(
  51495. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51496. {
  51497. front: {
  51498. height: math.unit(11 + 10/12, "feet"),
  51499. weight: math.unit(1587, "kg"),
  51500. name: "Front",
  51501. image: {
  51502. source: "./media/characters/maple-javira-dragon/front.svg",
  51503. extra: 1136/744,
  51504. bottom: 73/1209
  51505. }
  51506. },
  51507. side: {
  51508. height: math.unit(11 + 10/12, "feet"),
  51509. weight: math.unit(1587, "kg"),
  51510. name: "Side",
  51511. image: {
  51512. source: "./media/characters/maple-javira-dragon/side.svg",
  51513. extra: 712/505,
  51514. bottom: 17/729
  51515. }
  51516. },
  51517. head: {
  51518. height: math.unit(8.05, "feet"),
  51519. name: "Head",
  51520. image: {
  51521. source: "./media/characters/maple-javira-dragon/head.svg",
  51522. extra: 1420/1344,
  51523. bottom: 0/1420
  51524. }
  51525. },
  51526. },
  51527. [
  51528. {
  51529. name: "Normal",
  51530. height: math.unit(11 + 10/12, "feet"),
  51531. default: true
  51532. },
  51533. ]
  51534. ))
  51535. characterMakers.push(() => makeCharacter(
  51536. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51537. {
  51538. front: {
  51539. height: math.unit(117, "cm"),
  51540. weight: math.unit(50, "kg"),
  51541. name: "Front",
  51542. image: {
  51543. source: "./media/characters/sonia-wyverntail/front.svg",
  51544. extra: 708/592,
  51545. bottom: 25/733
  51546. }
  51547. },
  51548. },
  51549. [
  51550. {
  51551. name: "Normal",
  51552. height: math.unit(117, "cm"),
  51553. default: true
  51554. },
  51555. ]
  51556. ))
  51557. characterMakers.push(() => makeCharacter(
  51558. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51559. {
  51560. front: {
  51561. height: math.unit(6 + 5/12, "feet"),
  51562. name: "Front",
  51563. image: {
  51564. source: "./media/characters/micah/front.svg",
  51565. extra: 1758/1546,
  51566. bottom: 214/1972
  51567. }
  51568. },
  51569. },
  51570. [
  51571. {
  51572. name: "Normal",
  51573. height: math.unit(6 + 5/12, "feet"),
  51574. default: true
  51575. },
  51576. ]
  51577. ))
  51578. characterMakers.push(() => makeCharacter(
  51579. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51580. {
  51581. front: {
  51582. height: math.unit(1.75, "meters"),
  51583. weight: math.unit(100, "kg"),
  51584. name: "Front",
  51585. image: {
  51586. source: "./media/characters/zarya/front.svg",
  51587. extra: 741/735,
  51588. bottom: 44/785
  51589. },
  51590. extraAttributes: {
  51591. "tailLength": {
  51592. name: "Tail Length",
  51593. power: 1,
  51594. type: "length",
  51595. base: math.unit(180, "cm")
  51596. },
  51597. "pawLength": {
  51598. name: "Paw Length",
  51599. power: 1,
  51600. type: "length",
  51601. base: math.unit(31, "cm")
  51602. },
  51603. }
  51604. },
  51605. side: {
  51606. height: math.unit(1.75, "meters"),
  51607. weight: math.unit(100, "kg"),
  51608. name: "Side",
  51609. image: {
  51610. source: "./media/characters/zarya/side.svg",
  51611. extra: 776/770,
  51612. bottom: 17/793
  51613. },
  51614. extraAttributes: {
  51615. "tailLength": {
  51616. name: "Tail Length",
  51617. power: 1,
  51618. type: "length",
  51619. base: math.unit(180, "cm")
  51620. },
  51621. "pawLength": {
  51622. name: "Paw Length",
  51623. power: 1,
  51624. type: "length",
  51625. base: math.unit(31, "cm")
  51626. },
  51627. }
  51628. },
  51629. back: {
  51630. height: math.unit(1.75, "meters"),
  51631. weight: math.unit(100, "kg"),
  51632. name: "Back",
  51633. image: {
  51634. source: "./media/characters/zarya/back.svg",
  51635. extra: 741/735,
  51636. bottom: 44/785
  51637. },
  51638. extraAttributes: {
  51639. "tailLength": {
  51640. name: "Tail Length",
  51641. power: 1,
  51642. type: "length",
  51643. base: math.unit(180, "cm")
  51644. },
  51645. "pawLength": {
  51646. name: "Paw Length",
  51647. power: 1,
  51648. type: "length",
  51649. base: math.unit(31, "cm")
  51650. },
  51651. }
  51652. },
  51653. frontNoTail: {
  51654. height: math.unit(1.75, "meters"),
  51655. weight: math.unit(100, "kg"),
  51656. name: "Front (No Tail)",
  51657. image: {
  51658. source: "./media/characters/zarya/front-no-tail.svg",
  51659. extra: 741/735,
  51660. bottom: 44/785
  51661. },
  51662. extraAttributes: {
  51663. "tailLength": {
  51664. name: "Tail Length",
  51665. power: 1,
  51666. type: "length",
  51667. base: math.unit(180, "cm")
  51668. },
  51669. "pawLength": {
  51670. name: "Paw Length",
  51671. power: 1,
  51672. type: "length",
  51673. base: math.unit(31, "cm")
  51674. },
  51675. }
  51676. },
  51677. dressed: {
  51678. height: math.unit(1.75, "meters"),
  51679. weight: math.unit(100, "kg"),
  51680. name: "Dressed",
  51681. image: {
  51682. source: "./media/characters/zarya/dressed.svg",
  51683. extra: 683/672,
  51684. bottom: 79/762
  51685. },
  51686. extraAttributes: {
  51687. "tailLength": {
  51688. name: "Tail Length",
  51689. power: 1,
  51690. type: "length",
  51691. base: math.unit(180, "cm")
  51692. },
  51693. "pawLength": {
  51694. name: "Paw Length",
  51695. power: 1,
  51696. type: "length",
  51697. base: math.unit(31, "cm")
  51698. },
  51699. }
  51700. },
  51701. },
  51702. [
  51703. {
  51704. name: "Micro",
  51705. height: math.unit(5, "cm")
  51706. },
  51707. {
  51708. name: "Normal",
  51709. height: math.unit(1.75, "meters"),
  51710. default: true
  51711. },
  51712. {
  51713. name: "Macro",
  51714. height: math.unit(122, "meters")
  51715. },
  51716. ]
  51717. ))
  51718. characterMakers.push(() => makeCharacter(
  51719. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51720. {
  51721. front: {
  51722. height: math.unit(7.5, "feet"),
  51723. name: "Front",
  51724. image: {
  51725. source: "./media/characters/sven-hatisson/front.svg",
  51726. extra: 917/857,
  51727. bottom: 42/959
  51728. }
  51729. },
  51730. back: {
  51731. height: math.unit(7.5, "feet"),
  51732. name: "Back",
  51733. image: {
  51734. source: "./media/characters/sven-hatisson/back.svg",
  51735. extra: 903/856,
  51736. bottom: 15/918
  51737. }
  51738. },
  51739. },
  51740. [
  51741. {
  51742. name: "Base Height",
  51743. height: math.unit(7.5, "feet")
  51744. },
  51745. {
  51746. name: "Usual Height",
  51747. height: math.unit(13.5, "feet"),
  51748. default: true
  51749. },
  51750. {
  51751. name: "Smaller Macro",
  51752. height: math.unit(85, "feet")
  51753. },
  51754. {
  51755. name: "Moderate Macro",
  51756. height: math.unit(320, "feet")
  51757. },
  51758. {
  51759. name: "Large Macro",
  51760. height: math.unit(1000, "feet")
  51761. },
  51762. {
  51763. name: "Largest Size",
  51764. height: math.unit(2, "miles")
  51765. },
  51766. ]
  51767. ))
  51768. characterMakers.push(() => makeCharacter(
  51769. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51770. {
  51771. side: {
  51772. height: math.unit(1.8, "meters"),
  51773. weight: math.unit(275, "kg"),
  51774. name: "Side",
  51775. image: {
  51776. source: "./media/characters/terra/side.svg",
  51777. extra: 1273/1147,
  51778. bottom: 0/1273
  51779. }
  51780. },
  51781. },
  51782. [
  51783. {
  51784. name: "Normal",
  51785. height: math.unit(16.2, "meters"),
  51786. default: true
  51787. },
  51788. ]
  51789. ))
  51790. characterMakers.push(() => makeCharacter(
  51791. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51792. {
  51793. borzoiFront: {
  51794. height: math.unit(6 + 9/12, "feet"),
  51795. name: "Front",
  51796. image: {
  51797. source: "./media/characters/rae/borzoi-front.svg",
  51798. extra: 1161/1098,
  51799. bottom: 31/1192
  51800. },
  51801. form: "borzoi",
  51802. default: true
  51803. },
  51804. werewolfFront: {
  51805. height: math.unit(8 + 7/12, "feet"),
  51806. name: "Front",
  51807. image: {
  51808. source: "./media/characters/rae/werewolf-front.svg",
  51809. extra: 1411/1334,
  51810. bottom: 127/1538
  51811. },
  51812. form: "werewolf",
  51813. default: true
  51814. },
  51815. },
  51816. [
  51817. {
  51818. name: "Normal",
  51819. height: math.unit(6 + 9/12, "feet"),
  51820. default: true,
  51821. form: "borzoi"
  51822. },
  51823. {
  51824. name: "Normal",
  51825. height: math.unit(8 + 7/12, "feet"),
  51826. default: true,
  51827. form: "werewolf"
  51828. },
  51829. ],
  51830. {
  51831. "borzoi": {
  51832. name: "Borzoi",
  51833. default: true
  51834. },
  51835. "werewolf": {
  51836. name: "Werewolf",
  51837. },
  51838. }
  51839. ))
  51840. characterMakers.push(() => makeCharacter(
  51841. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51842. {
  51843. front: {
  51844. height: math.unit(8 + 7/12, "feet"),
  51845. weight: math.unit(482, "lb"),
  51846. name: "Front",
  51847. image: {
  51848. source: "./media/characters/kit/front.svg",
  51849. extra: 1247/1103,
  51850. bottom: 41/1288
  51851. }
  51852. },
  51853. back: {
  51854. height: math.unit(8 + 7/12, "feet"),
  51855. weight: math.unit(482, "lb"),
  51856. name: "Back",
  51857. image: {
  51858. source: "./media/characters/kit/back.svg",
  51859. extra: 1252/1123,
  51860. bottom: 21/1273
  51861. }
  51862. },
  51863. paw: {
  51864. height: math.unit(1.46, "feet"),
  51865. name: "Paw",
  51866. image: {
  51867. source: "./media/characters/kit/paw.svg"
  51868. }
  51869. },
  51870. },
  51871. [
  51872. {
  51873. name: "Normal",
  51874. height: math.unit(2.61, "meters"),
  51875. default: true
  51876. },
  51877. {
  51878. name: "\"Tall\"",
  51879. height: math.unit(8.21, "meters")
  51880. },
  51881. {
  51882. name: "Tall",
  51883. height: math.unit(19.6, "meters")
  51884. },
  51885. {
  51886. name: "Very Tall",
  51887. height: math.unit(57.91, "meters")
  51888. },
  51889. {
  51890. name: "Semi-Macro",
  51891. height: math.unit(138.64, "meters")
  51892. },
  51893. {
  51894. name: "Macro",
  51895. height: math.unit(831.99, "meters")
  51896. },
  51897. {
  51898. name: "EX-Macro",
  51899. height: math.unit(96451121, "meters")
  51900. },
  51901. {
  51902. name: "S1-Omnipotent",
  51903. height: math.unit(4.42074e+9, "meters")
  51904. },
  51905. {
  51906. name: "S2-Omnipotent",
  51907. height: math.unit(9.42074e+17, "meters")
  51908. },
  51909. {
  51910. name: "Omnipotent",
  51911. height: math.unit(4.23112e+24, "meters")
  51912. },
  51913. {
  51914. name: "Hypergod",
  51915. height: math.unit(5.05176e+27, "meters")
  51916. },
  51917. {
  51918. name: "Hypergod-EX",
  51919. height: math.unit(9.45532e+49, "meters")
  51920. },
  51921. {
  51922. name: "Hypergod-SP",
  51923. height: math.unit(9.45532e+195, "meters")
  51924. },
  51925. ]
  51926. ))
  51927. characterMakers.push(() => makeCharacter(
  51928. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51929. {
  51930. side: {
  51931. height: math.unit(0.6, "meters"),
  51932. weight: math.unit(24, "kg"),
  51933. name: "Side",
  51934. image: {
  51935. source: "./media/characters/celeste/side.svg",
  51936. extra: 810/517,
  51937. bottom: 53/863
  51938. }
  51939. },
  51940. },
  51941. [
  51942. {
  51943. name: "Velociraptor",
  51944. height: math.unit(0.6, "meters"),
  51945. default: true
  51946. },
  51947. {
  51948. name: "Utahraptor",
  51949. height: math.unit(1.8, "meters")
  51950. },
  51951. {
  51952. name: "Gallimimus",
  51953. height: math.unit(4.0, "meters")
  51954. },
  51955. {
  51956. name: "Large",
  51957. height: math.unit(20, "meters")
  51958. },
  51959. {
  51960. name: "Planetary",
  51961. height: math.unit(50, "megameters")
  51962. },
  51963. {
  51964. name: "Stellar",
  51965. height: math.unit(1.5, "gigameters")
  51966. },
  51967. {
  51968. name: "Galactic",
  51969. height: math.unit(100, "exameters")
  51970. },
  51971. ]
  51972. ))
  51973. characterMakers.push(() => makeCharacter(
  51974. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51975. {
  51976. front: {
  51977. height: math.unit(6, "feet"),
  51978. weight: math.unit(210, "lb"),
  51979. name: "Front",
  51980. image: {
  51981. source: "./media/characters/glacia/front.svg",
  51982. extra: 958/901,
  51983. bottom: 45/1003
  51984. }
  51985. },
  51986. },
  51987. [
  51988. {
  51989. name: "Macro",
  51990. height: math.unit(1000, "meters"),
  51991. default: true
  51992. },
  51993. ]
  51994. ))
  51995. characterMakers.push(() => makeCharacter(
  51996. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51997. {
  51998. front: {
  51999. height: math.unit(4, "meters"),
  52000. name: "Front",
  52001. image: {
  52002. source: "./media/characters/giri/front.svg",
  52003. extra: 966/894,
  52004. bottom: 21/987
  52005. }
  52006. },
  52007. },
  52008. [
  52009. {
  52010. name: "Normal",
  52011. height: math.unit(4, "meters"),
  52012. default: true
  52013. },
  52014. ]
  52015. ))
  52016. characterMakers.push(() => makeCharacter(
  52017. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52018. {
  52019. back: {
  52020. height: math.unit(4, "feet"),
  52021. weight: math.unit(37, "lb"),
  52022. name: "Back",
  52023. image: {
  52024. source: "./media/characters/tin/back.svg",
  52025. extra: 845/780,
  52026. bottom: 28/873
  52027. }
  52028. },
  52029. },
  52030. [
  52031. {
  52032. name: "Normal",
  52033. height: math.unit(4, "feet"),
  52034. default: true
  52035. },
  52036. ]
  52037. ))
  52038. characterMakers.push(() => makeCharacter(
  52039. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52040. {
  52041. front: {
  52042. height: math.unit(25, "feet"),
  52043. name: "Front",
  52044. image: {
  52045. source: "./media/characters/cadenza-vivace/front.svg",
  52046. extra: 1842/1578,
  52047. bottom: 30/1872
  52048. }
  52049. },
  52050. },
  52051. [
  52052. {
  52053. name: "Macro",
  52054. height: math.unit(25, "feet"),
  52055. default: true
  52056. },
  52057. ]
  52058. ))
  52059. characterMakers.push(() => makeCharacter(
  52060. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52061. {
  52062. front: {
  52063. height: math.unit(10, "feet"),
  52064. weight: math.unit(625, "kg"),
  52065. name: "Front",
  52066. image: {
  52067. source: "./media/characters/zain/front.svg",
  52068. extra: 1682/1498,
  52069. bottom: 223/1905
  52070. }
  52071. },
  52072. back: {
  52073. height: math.unit(10, "feet"),
  52074. weight: math.unit(625, "kg"),
  52075. name: "Back",
  52076. image: {
  52077. source: "./media/characters/zain/back.svg",
  52078. extra: 1814/1657,
  52079. bottom: 152/1966
  52080. }
  52081. },
  52082. head: {
  52083. height: math.unit(10, "feet"),
  52084. weight: math.unit(625, "kg"),
  52085. name: "Head",
  52086. image: {
  52087. source: "./media/characters/zain/head.svg",
  52088. extra: 1059/762,
  52089. bottom: 0/1059
  52090. }
  52091. },
  52092. },
  52093. [
  52094. {
  52095. name: "Normal",
  52096. height: math.unit(10, "feet"),
  52097. default: true
  52098. },
  52099. ]
  52100. ))
  52101. characterMakers.push(() => makeCharacter(
  52102. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52103. {
  52104. front: {
  52105. height: math.unit(6 + 5/12, "feet"),
  52106. weight: math.unit(750, "lb"),
  52107. name: "Front",
  52108. image: {
  52109. source: "./media/characters/ruchex/front.svg",
  52110. extra: 877/820,
  52111. bottom: 17/894
  52112. },
  52113. extraAttributes: {
  52114. "width": {
  52115. name: "Width",
  52116. power: 1,
  52117. type: "length",
  52118. base: math.unit(4.757, "feet")
  52119. },
  52120. }
  52121. },
  52122. },
  52123. [
  52124. {
  52125. name: "Normal",
  52126. height: math.unit(6 + 5/12, "feet"),
  52127. default: true
  52128. },
  52129. ]
  52130. ))
  52131. characterMakers.push(() => makeCharacter(
  52132. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52133. {
  52134. dressedFront: {
  52135. height: math.unit(191, "cm"),
  52136. weight: math.unit(80, "kg"),
  52137. name: "Front",
  52138. image: {
  52139. source: "./media/characters/buster/dressed-front.svg",
  52140. extra: 1022/973,
  52141. bottom: 69/1091
  52142. }
  52143. },
  52144. dressedBack: {
  52145. height: math.unit(191, "cm"),
  52146. weight: math.unit(80, "kg"),
  52147. name: "Back",
  52148. image: {
  52149. source: "./media/characters/buster/dressed-back.svg",
  52150. extra: 1018/970,
  52151. bottom: 55/1073
  52152. }
  52153. },
  52154. nudeFront: {
  52155. height: math.unit(191, "cm"),
  52156. weight: math.unit(80, "kg"),
  52157. name: "Front (Nude)",
  52158. image: {
  52159. source: "./media/characters/buster/nude-front.svg",
  52160. extra: 1022/973,
  52161. bottom: 69/1091
  52162. }
  52163. },
  52164. nudeBack: {
  52165. height: math.unit(191, "cm"),
  52166. weight: math.unit(80, "kg"),
  52167. name: "Back (Nude)",
  52168. image: {
  52169. source: "./media/characters/buster/nude-back.svg",
  52170. extra: 1018/970,
  52171. bottom: 55/1073
  52172. }
  52173. },
  52174. dick: {
  52175. height: math.unit(2.59, "feet"),
  52176. name: "Dick",
  52177. image: {
  52178. source: "./media/characters/buster/dick.svg"
  52179. }
  52180. },
  52181. ass: {
  52182. height: math.unit(1.2, "feet"),
  52183. name: "Ass",
  52184. image: {
  52185. source: "./media/characters/buster/ass.svg"
  52186. }
  52187. },
  52188. },
  52189. [
  52190. {
  52191. name: "Normal",
  52192. height: math.unit(191, "cm"),
  52193. default: true
  52194. },
  52195. ]
  52196. ))
  52197. characterMakers.push(() => makeCharacter(
  52198. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52199. {
  52200. side: {
  52201. height: math.unit(8.1, "feet"),
  52202. weight: math.unit(3500, "lb"),
  52203. name: "Side",
  52204. image: {
  52205. source: "./media/characters/sonya/side.svg",
  52206. extra: 1730/1317,
  52207. bottom: 86/1816
  52208. }
  52209. },
  52210. },
  52211. [
  52212. {
  52213. name: "Normal",
  52214. height: math.unit(8.1, "feet"),
  52215. default: true
  52216. },
  52217. ]
  52218. ))
  52219. characterMakers.push(() => makeCharacter(
  52220. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52221. {
  52222. front: {
  52223. height: math.unit(6, "feet"),
  52224. weight: math.unit(150, "lb"),
  52225. name: "Front",
  52226. image: {
  52227. source: "./media/characters/cadence-andrysiak/front.svg",
  52228. extra: 1164/1121,
  52229. bottom: 60/1224
  52230. }
  52231. },
  52232. back: {
  52233. height: math.unit(6, "feet"),
  52234. weight: math.unit(150, "lb"),
  52235. name: "Back",
  52236. image: {
  52237. source: "./media/characters/cadence-andrysiak/back.svg",
  52238. extra: 1200/1165,
  52239. bottom: 9/1209
  52240. }
  52241. },
  52242. dressed: {
  52243. height: math.unit(6, "feet"),
  52244. weight: math.unit(150, "lb"),
  52245. name: "Dressed",
  52246. image: {
  52247. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52248. extra: 1164/1121,
  52249. bottom: 60/1224
  52250. }
  52251. },
  52252. },
  52253. [
  52254. {
  52255. name: "Micro",
  52256. height: math.unit(1, "mm")
  52257. },
  52258. {
  52259. name: "Normal",
  52260. height: math.unit(6, "feet"),
  52261. default: true
  52262. },
  52263. ]
  52264. ))
  52265. characterMakers.push(() => makeCharacter(
  52266. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52267. {
  52268. front: {
  52269. height: math.unit(60, "inches"),
  52270. weight: math.unit(16, "lb"),
  52271. preyCapacity: math.unit(80, "liters"),
  52272. name: "Front",
  52273. image: {
  52274. source: "./media/characters/penny-lynx/front.svg",
  52275. extra: 1959/1769,
  52276. bottom: 49/2008
  52277. }
  52278. },
  52279. },
  52280. [
  52281. {
  52282. name: "Nokia",
  52283. height: math.unit(2, "inches")
  52284. },
  52285. {
  52286. name: "Desktop",
  52287. height: math.unit(24, "inches")
  52288. },
  52289. {
  52290. name: "TV",
  52291. height: math.unit(60, "inches")
  52292. },
  52293. {
  52294. name: "Jumbotron",
  52295. height: math.unit(12, "feet")
  52296. },
  52297. {
  52298. name: "Billboard",
  52299. height: math.unit(48, "feet"),
  52300. default: true
  52301. },
  52302. {
  52303. name: "IMAX",
  52304. height: math.unit(96, "feet")
  52305. },
  52306. {
  52307. name: "SINGULARITY",
  52308. height: math.unit(864938, "miles")
  52309. },
  52310. ]
  52311. ))
  52312. characterMakers.push(() => makeCharacter(
  52313. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52314. {
  52315. front: {
  52316. height: math.unit(5 + 4/12, "feet"),
  52317. weight: math.unit(230, "lb"),
  52318. name: "Front",
  52319. image: {
  52320. source: "./media/characters/sukebe/front.svg",
  52321. extra: 2130/2038,
  52322. bottom: 90/2220
  52323. }
  52324. },
  52325. back: {
  52326. height: math.unit(3.48, "feet"),
  52327. weight: math.unit(230, "lb"),
  52328. name: "Back",
  52329. image: {
  52330. source: "./media/characters/sukebe/back.svg",
  52331. extra: 1670/1604,
  52332. bottom: 0/1670
  52333. }
  52334. },
  52335. },
  52336. [
  52337. {
  52338. name: "Normal",
  52339. height: math.unit(5 + 4/12, "feet"),
  52340. default: true
  52341. },
  52342. ]
  52343. ))
  52344. characterMakers.push(() => makeCharacter(
  52345. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52346. {
  52347. front: {
  52348. height: math.unit(6, "feet"),
  52349. name: "Front",
  52350. image: {
  52351. source: "./media/characters/nylla/front.svg",
  52352. extra: 1868/1699,
  52353. bottom: 97/1965
  52354. }
  52355. },
  52356. back: {
  52357. height: math.unit(6, "feet"),
  52358. name: "Back",
  52359. image: {
  52360. source: "./media/characters/nylla/back.svg",
  52361. extra: 1889/1712,
  52362. bottom: 93/1982
  52363. }
  52364. },
  52365. frontNsfw: {
  52366. height: math.unit(6, "feet"),
  52367. name: "Front (NSFW)",
  52368. image: {
  52369. source: "./media/characters/nylla/front-nsfw.svg",
  52370. extra: 1868/1699,
  52371. bottom: 97/1965
  52372. },
  52373. extraAttributes: {
  52374. "dickLength": {
  52375. name: "Dick Length",
  52376. power: 1,
  52377. type: "length",
  52378. base: math.unit(1.4, "feet")
  52379. },
  52380. "cumVolume": {
  52381. name: "Cum Volume",
  52382. power: 3,
  52383. type: "volume",
  52384. base: math.unit(100, "mL")
  52385. },
  52386. }
  52387. },
  52388. backNsfw: {
  52389. height: math.unit(6, "feet"),
  52390. name: "Back (NSFW)",
  52391. image: {
  52392. source: "./media/characters/nylla/back-nsfw.svg",
  52393. extra: 1889/1712,
  52394. bottom: 93/1982
  52395. }
  52396. },
  52397. maw: {
  52398. height: math.unit(2.10, "feet"),
  52399. name: "Maw",
  52400. image: {
  52401. source: "./media/characters/nylla/maw.svg"
  52402. }
  52403. },
  52404. paws: {
  52405. height: math.unit(2.06, "feet"),
  52406. name: "Paws",
  52407. image: {
  52408. source: "./media/characters/nylla/paws.svg"
  52409. }
  52410. },
  52411. muzzle: {
  52412. height: math.unit(0.61, "feet"),
  52413. name: "Muzzle",
  52414. image: {
  52415. source: "./media/characters/nylla/muzzle.svg"
  52416. }
  52417. },
  52418. sheath: {
  52419. height: math.unit(1.305, "feet"),
  52420. name: "Sheath",
  52421. image: {
  52422. source: "./media/characters/nylla/sheath.svg"
  52423. }
  52424. },
  52425. },
  52426. [
  52427. {
  52428. name: "Micro",
  52429. height: math.unit(7.5, "inches")
  52430. },
  52431. {
  52432. name: "Normal",
  52433. height: math.unit(7, "feet"),
  52434. default: true
  52435. },
  52436. {
  52437. name: "Macro",
  52438. height: math.unit(60, "feet")
  52439. },
  52440. {
  52441. name: "Mega",
  52442. height: math.unit(200, "feet")
  52443. },
  52444. ]
  52445. ))
  52446. characterMakers.push(() => makeCharacter(
  52447. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52448. {
  52449. front: {
  52450. height: math.unit(10, "feet"),
  52451. weight: math.unit(2300, "lb"),
  52452. name: "Front",
  52453. image: {
  52454. source: "./media/characters/hunt3r/front.svg",
  52455. extra: 1909/1742,
  52456. bottom: 46/1955
  52457. }
  52458. },
  52459. },
  52460. [
  52461. {
  52462. name: "Normal",
  52463. height: math.unit(10, "feet"),
  52464. default: true
  52465. },
  52466. ]
  52467. ))
  52468. characterMakers.push(() => makeCharacter(
  52469. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52470. {
  52471. dressed: {
  52472. height: math.unit(11, "feet"),
  52473. weight: math.unit(18500, "lb"),
  52474. preyCapacity: math.unit(9, "people"),
  52475. name: "Dressed",
  52476. image: {
  52477. source: "./media/characters/cylphis/dressed.svg",
  52478. extra: 1028/1003,
  52479. bottom: 75/1103
  52480. },
  52481. },
  52482. undressed: {
  52483. height: math.unit(11, "feet"),
  52484. weight: math.unit(18500, "lb"),
  52485. preyCapacity: math.unit(9, "people"),
  52486. name: "Undressed",
  52487. image: {
  52488. source: "./media/characters/cylphis/undressed.svg",
  52489. extra: 1028/1003,
  52490. bottom: 75/1103
  52491. }
  52492. },
  52493. full: {
  52494. height: math.unit(11, "feet"),
  52495. weight: math.unit(18500 + 150*9, "lb"),
  52496. preyCapacity: math.unit(9, "people"),
  52497. name: "Full",
  52498. image: {
  52499. source: "./media/characters/cylphis/full.svg",
  52500. extra: 1028/1003,
  52501. bottom: 75/1103
  52502. }
  52503. },
  52504. },
  52505. [
  52506. {
  52507. name: "Small",
  52508. height: math.unit(8, "feet")
  52509. },
  52510. {
  52511. name: "Normal",
  52512. height: math.unit(11, "feet"),
  52513. default: true
  52514. },
  52515. ]
  52516. ))
  52517. characterMakers.push(() => makeCharacter(
  52518. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52519. {
  52520. front: {
  52521. height: math.unit(2 + 7/12, "feet"),
  52522. name: "Front",
  52523. image: {
  52524. source: "./media/characters/orishan/front.svg",
  52525. extra: 1058/1023,
  52526. bottom: 23/1081
  52527. }
  52528. },
  52529. back: {
  52530. height: math.unit(2 + 7/12, "feet"),
  52531. name: "Back",
  52532. image: {
  52533. source: "./media/characters/orishan/back.svg",
  52534. extra: 1058/1023,
  52535. bottom: 23/1081
  52536. }
  52537. },
  52538. },
  52539. [
  52540. {
  52541. name: "Micro",
  52542. height: math.unit(2, "cm")
  52543. },
  52544. {
  52545. name: "Normal",
  52546. height: math.unit(2 + 7/12, "feet"),
  52547. default: true
  52548. },
  52549. ]
  52550. ))
  52551. characterMakers.push(() => makeCharacter(
  52552. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52553. {
  52554. front: {
  52555. height: math.unit(3, "meters"),
  52556. weight: math.unit(508, "kg"),
  52557. name: "Front",
  52558. image: {
  52559. source: "./media/characters/seranis/front.svg",
  52560. extra: 1478/1454,
  52561. bottom: 41/1519
  52562. }
  52563. },
  52564. },
  52565. [
  52566. {
  52567. name: "Normal",
  52568. height: math.unit(3, "meters"),
  52569. default: true
  52570. },
  52571. {
  52572. name: "Macro",
  52573. height: math.unit(108, "meters")
  52574. },
  52575. {
  52576. name: "Megamacro",
  52577. height: math.unit(1250, "meters")
  52578. },
  52579. ]
  52580. ))
  52581. characterMakers.push(() => makeCharacter(
  52582. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52583. {
  52584. undressed: {
  52585. height: math.unit(5 + 3/12, "feet"),
  52586. name: "Undressed",
  52587. image: {
  52588. source: "./media/characters/ankou/undressed.svg",
  52589. extra: 1301/1213,
  52590. bottom: 87/1388
  52591. }
  52592. },
  52593. dressed: {
  52594. height: math.unit(5 + 3/12, "feet"),
  52595. name: "Dressed",
  52596. image: {
  52597. source: "./media/characters/ankou/dressed.svg",
  52598. extra: 1301/1213,
  52599. bottom: 87/1388
  52600. }
  52601. },
  52602. head: {
  52603. height: math.unit(1.61, "feet"),
  52604. name: "Head",
  52605. image: {
  52606. source: "./media/characters/ankou/head.svg"
  52607. }
  52608. },
  52609. },
  52610. [
  52611. {
  52612. name: "Normal",
  52613. height: math.unit(5 + 3/12, "feet"),
  52614. default: true
  52615. },
  52616. ]
  52617. ))
  52618. characterMakers.push(() => makeCharacter(
  52619. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52620. {
  52621. side: {
  52622. height: math.unit(6 + 3/12, "feet"),
  52623. weight: math.unit(200, "kg"),
  52624. name: "Side",
  52625. image: {
  52626. source: "./media/characters/juniper-skunktaur/side.svg",
  52627. extra: 1574/1229,
  52628. bottom: 38/1612
  52629. }
  52630. },
  52631. front: {
  52632. height: math.unit(6 + 3/12, "feet"),
  52633. weight: math.unit(200, "kg"),
  52634. name: "Front",
  52635. image: {
  52636. source: "./media/characters/juniper-skunktaur/front.svg",
  52637. extra: 1337/1278,
  52638. bottom: 22/1359
  52639. }
  52640. },
  52641. back: {
  52642. height: math.unit(6 + 3/12, "feet"),
  52643. weight: math.unit(200, "kg"),
  52644. name: "Back",
  52645. image: {
  52646. source: "./media/characters/juniper-skunktaur/back.svg",
  52647. extra: 1618/1273,
  52648. bottom: 13/1631
  52649. }
  52650. },
  52651. top: {
  52652. height: math.unit(2.62, "feet"),
  52653. weight: math.unit(200, "kg"),
  52654. name: "Top",
  52655. image: {
  52656. source: "./media/characters/juniper-skunktaur/top.svg"
  52657. }
  52658. },
  52659. },
  52660. [
  52661. {
  52662. name: "Normal",
  52663. height: math.unit(6 + 3/12, "feet"),
  52664. default: true
  52665. },
  52666. ]
  52667. ))
  52668. characterMakers.push(() => makeCharacter(
  52669. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52670. {
  52671. front: {
  52672. height: math.unit(20.5, "feet"),
  52673. name: "Front",
  52674. image: {
  52675. source: "./media/characters/rei/front.svg",
  52676. extra: 1349/1195,
  52677. bottom: 31/1380
  52678. }
  52679. },
  52680. back: {
  52681. height: math.unit(20.5, "feet"),
  52682. name: "Back",
  52683. image: {
  52684. source: "./media/characters/rei/back.svg",
  52685. extra: 1358/1204,
  52686. bottom: 22/1380
  52687. }
  52688. },
  52689. pawsDigi: {
  52690. height: math.unit(3.45, "feet"),
  52691. name: "Paws (Digi)",
  52692. image: {
  52693. source: "./media/characters/rei/paws-digi.svg"
  52694. }
  52695. },
  52696. pawsPlanti: {
  52697. height: math.unit(3.45, "feet"),
  52698. name: "Paws (Planti)",
  52699. image: {
  52700. source: "./media/characters/rei/paws-planti.svg"
  52701. }
  52702. },
  52703. },
  52704. [
  52705. {
  52706. name: "Normal",
  52707. height: math.unit(20.5, "feet"),
  52708. default: true
  52709. },
  52710. ]
  52711. ))
  52712. characterMakers.push(() => makeCharacter(
  52713. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52714. {
  52715. front: {
  52716. height: math.unit(5 + 11/12, "feet"),
  52717. name: "Front",
  52718. image: {
  52719. source: "./media/characters/carina/front.svg",
  52720. extra: 1720/1449,
  52721. bottom: 14/1734
  52722. }
  52723. },
  52724. back: {
  52725. height: math.unit(5 + 11/12, "feet"),
  52726. name: "Back",
  52727. image: {
  52728. source: "./media/characters/carina/back.svg",
  52729. extra: 1493/1445,
  52730. bottom: 17/1510
  52731. }
  52732. },
  52733. paw: {
  52734. height: math.unit(0.92, "feet"),
  52735. name: "Paw",
  52736. image: {
  52737. source: "./media/characters/carina/paw.svg"
  52738. }
  52739. },
  52740. },
  52741. [
  52742. {
  52743. name: "Normal",
  52744. height: math.unit(5 + 11/12, "feet"),
  52745. default: true
  52746. },
  52747. ]
  52748. ))
  52749. characterMakers.push(() => makeCharacter(
  52750. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52751. {
  52752. normal_front: {
  52753. height: math.unit(4.88, "meters"),
  52754. name: "Front",
  52755. image: {
  52756. source: "./media/characters/maya/normal-front.svg",
  52757. extra: 1222/1145,
  52758. bottom: 57/1279
  52759. },
  52760. form: "normal",
  52761. default: true
  52762. },
  52763. monstrous_front: {
  52764. height: math.unit(10, "meters"),
  52765. name: "Front",
  52766. image: {
  52767. source: "./media/characters/maya/monstrous-front.svg",
  52768. extra: 1523/1109,
  52769. bottom: 113/1636
  52770. },
  52771. form: "monstrous",
  52772. extraAttributes: {
  52773. "swallowSize": {
  52774. name: "Tailmaw Bite Size",
  52775. power: 3,
  52776. type: "volume",
  52777. base: math.unit(43000, "liters")
  52778. },
  52779. }
  52780. },
  52781. taur_front: {
  52782. height: math.unit(10, "meters"),
  52783. name: "Front",
  52784. image: {
  52785. source: "./media/characters/maya/taur-front.svg",
  52786. extra: 743/506,
  52787. bottom: 101/844
  52788. },
  52789. form: "taur",
  52790. },
  52791. },
  52792. [
  52793. {
  52794. name: "Normal",
  52795. height: math.unit(4.88, "meters"),
  52796. default: true,
  52797. form: "normal"
  52798. },
  52799. {
  52800. name: "Macro",
  52801. height: math.unit(38.1, "meters"),
  52802. form: "normal"
  52803. },
  52804. {
  52805. name: "Macro+",
  52806. height: math.unit(152.4, "meters"),
  52807. form: "normal"
  52808. },
  52809. {
  52810. name: "Macro++",
  52811. height: math.unit(16.09, "km"),
  52812. form: "normal"
  52813. },
  52814. {
  52815. name: "Mega-macro",
  52816. height: math.unit(700, "megameters"),
  52817. form: "normal"
  52818. },
  52819. {
  52820. name: "Satiated",
  52821. height: math.unit(10, "meters"),
  52822. default: true,
  52823. form: "monstrous"
  52824. },
  52825. {
  52826. name: "Hungry",
  52827. height: math.unit(75, "meters"),
  52828. form: "monstrous"
  52829. },
  52830. {
  52831. name: "Ravenous",
  52832. height: math.unit(500, "meters"),
  52833. form: "monstrous"
  52834. },
  52835. {
  52836. name: "\"Normal\"",
  52837. height: math.unit(10, "meters"),
  52838. form: "taur"
  52839. },
  52840. {
  52841. name: "Macro",
  52842. height: math.unit(50, "meters"),
  52843. form: "taur"
  52844. },
  52845. ],
  52846. {
  52847. "normal": {
  52848. name: "Normal",
  52849. default: true
  52850. },
  52851. "monstrous": {
  52852. name: "Monstrous",
  52853. },
  52854. "taur": {
  52855. name: "Taur",
  52856. },
  52857. }
  52858. ))
  52859. characterMakers.push(() => makeCharacter(
  52860. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52861. {
  52862. front: {
  52863. height: math.unit(6 + 2/12, "feet"),
  52864. weight: math.unit(500, "lb"),
  52865. preyCapacity: math.unit(4, "people"),
  52866. name: "Front",
  52867. image: {
  52868. source: "./media/characters/yepir/front.svg"
  52869. }
  52870. },
  52871. side: {
  52872. height: math.unit(6 + 2/12, "feet"),
  52873. weight: math.unit(500, "lb"),
  52874. preyCapacity: math.unit(4, "people"),
  52875. name: "Side",
  52876. image: {
  52877. source: "./media/characters/yepir/side.svg"
  52878. }
  52879. },
  52880. paw: {
  52881. height: math.unit(1.05, "feet"),
  52882. name: "Paw",
  52883. image: {
  52884. source: "./media/characters/yepir/paw.svg"
  52885. }
  52886. },
  52887. },
  52888. [
  52889. {
  52890. name: "Normal",
  52891. height: math.unit(6 + 2/12, "feet"),
  52892. default: true
  52893. },
  52894. ]
  52895. ))
  52896. characterMakers.push(() => makeCharacter(
  52897. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52898. {
  52899. front: {
  52900. height: math.unit(5 + 4/12, "feet"),
  52901. name: "Front",
  52902. image: {
  52903. source: "./media/characters/russec/front.svg",
  52904. extra: 1926/1626,
  52905. bottom: 72/1998
  52906. }
  52907. },
  52908. back: {
  52909. height: math.unit(5 + 4/12, "feet"),
  52910. name: "Back",
  52911. image: {
  52912. source: "./media/characters/russec/back.svg",
  52913. extra: 1910/1591,
  52914. bottom: 48/1958
  52915. }
  52916. },
  52917. },
  52918. [
  52919. {
  52920. name: "Small",
  52921. height: math.unit(5 + 4/12, "feet")
  52922. },
  52923. {
  52924. name: "Normal",
  52925. height: math.unit(72, "feet"),
  52926. default: true
  52927. },
  52928. ]
  52929. ))
  52930. characterMakers.push(() => makeCharacter(
  52931. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52932. {
  52933. side: {
  52934. height: math.unit(12, "feet"),
  52935. name: "Side",
  52936. image: {
  52937. source: "./media/characters/cianus/side.svg",
  52938. extra: 808/526,
  52939. bottom: 61/869
  52940. }
  52941. },
  52942. },
  52943. [
  52944. {
  52945. name: "Normal",
  52946. height: math.unit(12, "feet"),
  52947. default: true
  52948. },
  52949. ]
  52950. ))
  52951. characterMakers.push(() => makeCharacter(
  52952. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52953. {
  52954. front: {
  52955. height: math.unit(9 + 6/12, "feet"),
  52956. weight: math.unit(300, "lb"),
  52957. name: "Front",
  52958. image: {
  52959. source: "./media/characters/ahab/front.svg",
  52960. extra: 1897/1868,
  52961. bottom: 121/2018
  52962. }
  52963. },
  52964. frontNsfw: {
  52965. height: math.unit(9 + 6/12, "feet"),
  52966. weight: math.unit(300, "lb"),
  52967. name: "Front-nsfw",
  52968. image: {
  52969. source: "./media/characters/ahab/front-nsfw.svg",
  52970. extra: 1897/1868,
  52971. bottom: 121/2018
  52972. }
  52973. },
  52974. },
  52975. [
  52976. {
  52977. name: "Normal",
  52978. height: math.unit(9 + 6/12, "feet")
  52979. },
  52980. {
  52981. name: "Macro",
  52982. height: math.unit(657, "feet"),
  52983. default: true
  52984. },
  52985. ]
  52986. ))
  52987. characterMakers.push(() => makeCharacter(
  52988. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52989. {
  52990. front: {
  52991. height: math.unit(2.69, "meters"),
  52992. weight: math.unit(132, "kg"),
  52993. name: "Front",
  52994. image: {
  52995. source: "./media/characters/aarkus/front.svg",
  52996. extra: 1400/1231,
  52997. bottom: 34/1434
  52998. }
  52999. },
  53000. back: {
  53001. height: math.unit(2.69, "meters"),
  53002. weight: math.unit(132, "kg"),
  53003. name: "Back",
  53004. image: {
  53005. source: "./media/characters/aarkus/back.svg",
  53006. extra: 1381/1218,
  53007. bottom: 30/1411
  53008. }
  53009. },
  53010. frontNsfw: {
  53011. height: math.unit(2.69, "meters"),
  53012. weight: math.unit(132, "kg"),
  53013. name: "Front (NSFW)",
  53014. image: {
  53015. source: "./media/characters/aarkus/front-nsfw.svg",
  53016. extra: 1400/1231,
  53017. bottom: 34/1434
  53018. }
  53019. },
  53020. foot: {
  53021. height: math.unit(1.45, "feet"),
  53022. name: "Foot",
  53023. image: {
  53024. source: "./media/characters/aarkus/foot.svg"
  53025. }
  53026. },
  53027. head: {
  53028. height: math.unit(2.85, "feet"),
  53029. name: "Head",
  53030. image: {
  53031. source: "./media/characters/aarkus/head.svg"
  53032. }
  53033. },
  53034. headAlt: {
  53035. height: math.unit(3.07, "feet"),
  53036. name: "Head (Alt)",
  53037. image: {
  53038. source: "./media/characters/aarkus/head-alt.svg"
  53039. }
  53040. },
  53041. mouth: {
  53042. height: math.unit(1.25, "feet"),
  53043. name: "Mouth",
  53044. image: {
  53045. source: "./media/characters/aarkus/mouth.svg"
  53046. }
  53047. },
  53048. dick: {
  53049. height: math.unit(1.77, "feet"),
  53050. name: "Dick",
  53051. image: {
  53052. source: "./media/characters/aarkus/dick.svg"
  53053. }
  53054. },
  53055. },
  53056. [
  53057. {
  53058. name: "Normal",
  53059. height: math.unit(2.69, "meters"),
  53060. default: true
  53061. },
  53062. {
  53063. name: "Macro",
  53064. height: math.unit(269, "meters")
  53065. },
  53066. {
  53067. name: "Macro+",
  53068. height: math.unit(672.5, "meters")
  53069. },
  53070. {
  53071. name: "Megamacro",
  53072. height: math.unit(2.017, "km")
  53073. },
  53074. ]
  53075. ))
  53076. characterMakers.push(() => makeCharacter(
  53077. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53078. {
  53079. front: {
  53080. height: math.unit(23.47, "cm"),
  53081. weight: math.unit(600, "grams"),
  53082. name: "Front",
  53083. image: {
  53084. source: "./media/characters/diode/front.svg",
  53085. extra: 1778/1396,
  53086. bottom: 95/1873
  53087. }
  53088. },
  53089. side: {
  53090. height: math.unit(23.47, "cm"),
  53091. weight: math.unit(600, "grams"),
  53092. name: "Side",
  53093. image: {
  53094. source: "./media/characters/diode/side.svg",
  53095. extra: 1831/1404,
  53096. bottom: 86/1917
  53097. }
  53098. },
  53099. wings: {
  53100. height: math.unit(0.683, "feet"),
  53101. name: "Wings",
  53102. image: {
  53103. source: "./media/characters/diode/wings.svg"
  53104. }
  53105. },
  53106. },
  53107. [
  53108. {
  53109. name: "Normal",
  53110. height: math.unit(23.47, "cm"),
  53111. default: true
  53112. },
  53113. ]
  53114. ))
  53115. characterMakers.push(() => makeCharacter(
  53116. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53117. {
  53118. front: {
  53119. height: math.unit(6 + 3/12, "feet"),
  53120. weight: math.unit(250, "lb"),
  53121. name: "Front",
  53122. image: {
  53123. source: "./media/characters/reika/front.svg",
  53124. extra: 1120/1078,
  53125. bottom: 86/1206
  53126. }
  53127. },
  53128. },
  53129. [
  53130. {
  53131. name: "Normal",
  53132. height: math.unit(6 + 3/12, "feet"),
  53133. default: true
  53134. },
  53135. ]
  53136. ))
  53137. characterMakers.push(() => makeCharacter(
  53138. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53139. {
  53140. front: {
  53141. height: math.unit(16 + 8/12, "feet"),
  53142. weight: math.unit(9000, "lb"),
  53143. name: "Front",
  53144. image: {
  53145. source: "./media/characters/lokuto-takama/front.svg",
  53146. extra: 1774/1632,
  53147. bottom: 147/1921
  53148. },
  53149. extraAttributes: {
  53150. "bustWidth": {
  53151. name: "Bust Width",
  53152. power: 1,
  53153. type: "length",
  53154. base: math.unit(2.4, "meters")
  53155. },
  53156. "breastWeight": {
  53157. name: "Breast Weight",
  53158. power: 3,
  53159. type: "mass",
  53160. base: math.unit(1000, "kg")
  53161. },
  53162. }
  53163. },
  53164. },
  53165. [
  53166. {
  53167. name: "Normal",
  53168. height: math.unit(16 + 8/12, "feet"),
  53169. default: true
  53170. },
  53171. ]
  53172. ))
  53173. characterMakers.push(() => makeCharacter(
  53174. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53175. {
  53176. front: {
  53177. height: math.unit(10, "cm"),
  53178. weight: math.unit(850, "grams"),
  53179. name: "Front",
  53180. image: {
  53181. source: "./media/characters/owak-bone/front.svg",
  53182. extra: 1965/1801,
  53183. bottom: 31/1996
  53184. }
  53185. },
  53186. },
  53187. [
  53188. {
  53189. name: "Normal",
  53190. height: math.unit(10, "cm"),
  53191. default: true
  53192. },
  53193. ]
  53194. ))
  53195. characterMakers.push(() => makeCharacter(
  53196. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53197. {
  53198. front: {
  53199. height: math.unit(2 + 6/12, "feet"),
  53200. weight: math.unit(9, "lb"),
  53201. name: "Front",
  53202. image: {
  53203. source: "./media/characters/muffin/front.svg",
  53204. extra: 1220/1195,
  53205. bottom: 84/1304
  53206. }
  53207. },
  53208. },
  53209. [
  53210. {
  53211. name: "Normal",
  53212. height: math.unit(2 + 6/12, "feet"),
  53213. default: true
  53214. },
  53215. ]
  53216. ))
  53217. characterMakers.push(() => makeCharacter(
  53218. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53219. {
  53220. front: {
  53221. height: math.unit(7, "feet"),
  53222. name: "Front",
  53223. image: {
  53224. source: "./media/characters/chimera/front.svg",
  53225. extra: 1752/1614,
  53226. bottom: 68/1820
  53227. }
  53228. },
  53229. },
  53230. [
  53231. {
  53232. name: "Normal",
  53233. height: math.unit(7, "feet")
  53234. },
  53235. {
  53236. name: "Gigamacro",
  53237. height: math.unit(2.9, "gigameters"),
  53238. default: true
  53239. },
  53240. {
  53241. name: "Universal",
  53242. height: math.unit(1.56e26, "yottameters")
  53243. },
  53244. ]
  53245. ))
  53246. characterMakers.push(() => makeCharacter(
  53247. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53248. {
  53249. front: {
  53250. height: math.unit(3, "feet"),
  53251. weight: math.unit(20, "lb"),
  53252. name: "Front",
  53253. image: {
  53254. source: "./media/characters/kit-fennec-fox/front.svg",
  53255. extra: 1027/932,
  53256. bottom: 16/1043
  53257. }
  53258. },
  53259. back: {
  53260. height: math.unit(3, "feet"),
  53261. weight: math.unit(20, "lb"),
  53262. name: "Back",
  53263. image: {
  53264. source: "./media/characters/kit-fennec-fox/back.svg",
  53265. extra: 1027/932,
  53266. bottom: 16/1043
  53267. }
  53268. },
  53269. },
  53270. [
  53271. {
  53272. name: "Normal",
  53273. height: math.unit(3, "feet"),
  53274. default: true
  53275. },
  53276. ]
  53277. ))
  53278. characterMakers.push(() => makeCharacter(
  53279. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53280. {
  53281. front: {
  53282. height: math.unit(167, "cm"),
  53283. name: "Front",
  53284. image: {
  53285. source: "./media/characters/blue-otter/front.svg",
  53286. extra: 1951/1920,
  53287. bottom: 31/1982
  53288. }
  53289. },
  53290. },
  53291. [
  53292. {
  53293. name: "Otter-Sized",
  53294. height: math.unit(100, "cm")
  53295. },
  53296. {
  53297. name: "Normal",
  53298. height: math.unit(167, "cm"),
  53299. default: true
  53300. },
  53301. ]
  53302. ))
  53303. characterMakers.push(() => makeCharacter(
  53304. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53305. {
  53306. front: {
  53307. height: math.unit(4 + 4/12, "feet"),
  53308. name: "Front",
  53309. image: {
  53310. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53311. extra: 1072/1067,
  53312. bottom: 117/1189
  53313. }
  53314. },
  53315. back: {
  53316. height: math.unit(4 + 4/12, "feet"),
  53317. name: "Back",
  53318. image: {
  53319. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53320. extra: 1135/1129,
  53321. bottom: 57/1192
  53322. }
  53323. },
  53324. head: {
  53325. height: math.unit(1.77, "feet"),
  53326. name: "Head",
  53327. image: {
  53328. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53329. }
  53330. },
  53331. },
  53332. [
  53333. {
  53334. name: "Normal",
  53335. height: math.unit(4 + 4/12, "feet"),
  53336. default: true
  53337. },
  53338. ]
  53339. ))
  53340. characterMakers.push(() => makeCharacter(
  53341. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53342. {
  53343. front: {
  53344. height: math.unit(2, "inches"),
  53345. name: "Front",
  53346. image: {
  53347. source: "./media/characters/carley-hartford/front.svg",
  53348. extra: 1035/988,
  53349. bottom: 23/1058
  53350. }
  53351. },
  53352. back: {
  53353. height: math.unit(2, "inches"),
  53354. name: "Back",
  53355. image: {
  53356. source: "./media/characters/carley-hartford/back.svg",
  53357. extra: 1035/988,
  53358. bottom: 23/1058
  53359. }
  53360. },
  53361. dressed: {
  53362. height: math.unit(2, "inches"),
  53363. name: "Dressed",
  53364. image: {
  53365. source: "./media/characters/carley-hartford/dressed.svg",
  53366. extra: 651/620,
  53367. bottom: 0/651
  53368. }
  53369. },
  53370. },
  53371. [
  53372. {
  53373. name: "Micro",
  53374. height: math.unit(2, "inches"),
  53375. default: true
  53376. },
  53377. {
  53378. name: "Macro",
  53379. height: math.unit(6 + 3/12, "feet")
  53380. },
  53381. ]
  53382. ))
  53383. characterMakers.push(() => makeCharacter(
  53384. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53385. {
  53386. front: {
  53387. height: math.unit(2 + 3/12, "feet"),
  53388. weight: math.unit(15 + 7/16, "lb"),
  53389. name: "Front",
  53390. image: {
  53391. source: "./media/characters/duke/front.svg",
  53392. extra: 910/815,
  53393. bottom: 30/940
  53394. }
  53395. },
  53396. },
  53397. [
  53398. {
  53399. name: "Normal",
  53400. height: math.unit(2 + 3/12, "feet"),
  53401. default: true
  53402. },
  53403. ]
  53404. ))
  53405. characterMakers.push(() => makeCharacter(
  53406. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53407. {
  53408. front: {
  53409. height: math.unit(5 + 4/12, "feet"),
  53410. weight: math.unit(156, "lb"),
  53411. name: "Front",
  53412. image: {
  53413. source: "./media/characters/dein/front.svg",
  53414. extra: 855/815,
  53415. bottom: 48/903
  53416. }
  53417. },
  53418. side: {
  53419. height: math.unit(5 + 4/12, "feet"),
  53420. weight: math.unit(156, "lb"),
  53421. name: "side",
  53422. image: {
  53423. source: "./media/characters/dein/side.svg",
  53424. extra: 846/803,
  53425. bottom: 25/871
  53426. }
  53427. },
  53428. maw: {
  53429. height: math.unit(1.45, "feet"),
  53430. name: "Maw",
  53431. image: {
  53432. source: "./media/characters/dein/maw.svg"
  53433. }
  53434. },
  53435. },
  53436. [
  53437. {
  53438. name: "Ferret Sized",
  53439. height: math.unit(2 + 5/12, "feet")
  53440. },
  53441. {
  53442. name: "Normal",
  53443. height: math.unit(5 + 4/12, "feet"),
  53444. default: true
  53445. },
  53446. ]
  53447. ))
  53448. characterMakers.push(() => makeCharacter(
  53449. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53450. {
  53451. front: {
  53452. height: math.unit(84 + 8/12, "feet"),
  53453. weight: math.unit(942180, "lb"),
  53454. name: "Front",
  53455. image: {
  53456. source: "./media/characters/daurine-arima/front.svg",
  53457. extra: 1989/1782,
  53458. bottom: 37/2026
  53459. }
  53460. },
  53461. side: {
  53462. height: math.unit(84 + 8/12, "feet"),
  53463. weight: math.unit(942180, "lb"),
  53464. name: "Side",
  53465. image: {
  53466. source: "./media/characters/daurine-arima/side.svg",
  53467. extra: 1997/1790,
  53468. bottom: 21/2018
  53469. }
  53470. },
  53471. back: {
  53472. height: math.unit(84 + 8/12, "feet"),
  53473. weight: math.unit(942180, "lb"),
  53474. name: "Back",
  53475. image: {
  53476. source: "./media/characters/daurine-arima/back.svg",
  53477. extra: 1992/1800,
  53478. bottom: 12/2004
  53479. }
  53480. },
  53481. head: {
  53482. height: math.unit(15.5, "feet"),
  53483. name: "Head",
  53484. image: {
  53485. source: "./media/characters/daurine-arima/head.svg"
  53486. }
  53487. },
  53488. headAlt: {
  53489. height: math.unit(19.19, "feet"),
  53490. name: "Head (Alt)",
  53491. image: {
  53492. source: "./media/characters/daurine-arima/head-alt.svg"
  53493. }
  53494. },
  53495. },
  53496. [
  53497. {
  53498. name: "Minimum height",
  53499. height: math.unit(8 + 10/12, "feet")
  53500. },
  53501. {
  53502. name: "Comfort height",
  53503. height: math.unit(19 + 6 /12, "feet")
  53504. },
  53505. {
  53506. name: "\"Normal\" height",
  53507. height: math.unit(28 + 10/12, "feet")
  53508. },
  53509. {
  53510. name: "Base height",
  53511. height: math.unit(84 + 8/12, "feet"),
  53512. default: true
  53513. },
  53514. {
  53515. name: "Mini-macro",
  53516. height: math.unit(2360, "feet")
  53517. },
  53518. {
  53519. name: "Macro",
  53520. height: math.unit(10, "miles")
  53521. },
  53522. {
  53523. name: "Goddess",
  53524. height: math.unit(9.99e40, "yottameters")
  53525. },
  53526. ]
  53527. ))
  53528. characterMakers.push(() => makeCharacter(
  53529. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53530. {
  53531. front: {
  53532. height: math.unit(2.3, "meters"),
  53533. name: "Front",
  53534. image: {
  53535. source: "./media/characters/cilenomon/front.svg",
  53536. extra: 1963/1778,
  53537. bottom: 54/2017
  53538. }
  53539. },
  53540. },
  53541. [
  53542. {
  53543. name: "Normal",
  53544. height: math.unit(2.3, "meters"),
  53545. default: true
  53546. },
  53547. {
  53548. name: "Big",
  53549. height: math.unit(5, "meters")
  53550. },
  53551. {
  53552. name: "Macro",
  53553. height: math.unit(30, "meters")
  53554. },
  53555. {
  53556. name: "True",
  53557. height: math.unit(1, "universe")
  53558. },
  53559. ]
  53560. ))
  53561. characterMakers.push(() => makeCharacter(
  53562. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53563. {
  53564. front: {
  53565. height: math.unit(5, "feet"),
  53566. name: "Front",
  53567. image: {
  53568. source: "./media/characters/sen-mink/front.svg",
  53569. extra: 1727/1675,
  53570. bottom: 35/1762
  53571. }
  53572. },
  53573. },
  53574. [
  53575. {
  53576. name: "Normal",
  53577. height: math.unit(5, "feet"),
  53578. default: true
  53579. },
  53580. ]
  53581. ))
  53582. characterMakers.push(() => makeCharacter(
  53583. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53584. {
  53585. front: {
  53586. height: math.unit(5.42999, "feet"),
  53587. weight: math.unit(100, "lb"),
  53588. name: "Front",
  53589. image: {
  53590. source: "./media/characters/ophois/front.svg",
  53591. extra: 1429/1286,
  53592. bottom: 60/1489
  53593. }
  53594. },
  53595. },
  53596. [
  53597. {
  53598. name: "Normal",
  53599. height: math.unit(5.42999, "feet"),
  53600. default: true
  53601. },
  53602. ]
  53603. ))
  53604. characterMakers.push(() => makeCharacter(
  53605. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53606. {
  53607. front: {
  53608. height: math.unit(2, "meters"),
  53609. name: "Front",
  53610. image: {
  53611. source: "./media/characters/riley/front.svg",
  53612. extra: 1779/1754,
  53613. bottom: 139/1918
  53614. }
  53615. },
  53616. },
  53617. [
  53618. {
  53619. name: "Normal",
  53620. height: math.unit(2, "meters"),
  53621. default: true
  53622. },
  53623. ]
  53624. ))
  53625. characterMakers.push(() => makeCharacter(
  53626. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53627. {
  53628. front: {
  53629. height: math.unit(6 + 2/12, "feet"),
  53630. weight: math.unit(195, "lb"),
  53631. preyCapacity: math.unit(6, "people"),
  53632. name: "Front",
  53633. image: {
  53634. source: "./media/characters/shuken-flash/front.svg",
  53635. extra: 1905/1739,
  53636. bottom: 65/1970
  53637. }
  53638. },
  53639. back: {
  53640. height: math.unit(6 + 2/12, "feet"),
  53641. weight: math.unit(195, "lb"),
  53642. preyCapacity: math.unit(6, "people"),
  53643. name: "Back",
  53644. image: {
  53645. source: "./media/characters/shuken-flash/back.svg",
  53646. extra: 1912/1751,
  53647. bottom: 13/1925
  53648. }
  53649. },
  53650. },
  53651. [
  53652. {
  53653. name: "Normal",
  53654. height: math.unit(6 + 2/12, "feet"),
  53655. default: true
  53656. },
  53657. ]
  53658. ))
  53659. characterMakers.push(() => makeCharacter(
  53660. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53661. {
  53662. front: {
  53663. height: math.unit(5 + 9/12, "feet"),
  53664. weight: math.unit(150, "lb"),
  53665. name: "Front",
  53666. image: {
  53667. source: "./media/characters/plat/front.svg",
  53668. extra: 1816/1703,
  53669. bottom: 43/1859
  53670. }
  53671. },
  53672. side: {
  53673. height: math.unit(5 + 9/12, "feet"),
  53674. weight: math.unit(300, "lb"),
  53675. name: "Side",
  53676. image: {
  53677. source: "./media/characters/plat/side.svg",
  53678. extra: 1824/1699,
  53679. bottom: 18/1842
  53680. }
  53681. },
  53682. },
  53683. [
  53684. {
  53685. name: "Normal",
  53686. height: math.unit(5 + 9/12, "feet"),
  53687. default: true
  53688. },
  53689. ]
  53690. ))
  53691. characterMakers.push(() => makeCharacter(
  53692. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53693. {
  53694. front: {
  53695. height: math.unit(9, "feet"),
  53696. weight: math.unit(1800, "lb"),
  53697. name: "Front",
  53698. image: {
  53699. source: "./media/characters/elaine/front.svg",
  53700. extra: 1833/1354,
  53701. bottom: 25/1858
  53702. }
  53703. },
  53704. back: {
  53705. height: math.unit(8.8, "feet"),
  53706. weight: math.unit(1800, "lb"),
  53707. name: "Back",
  53708. image: {
  53709. source: "./media/characters/elaine/back.svg",
  53710. extra: 1641/1233,
  53711. bottom: 53/1694
  53712. }
  53713. },
  53714. },
  53715. [
  53716. {
  53717. name: "Normal",
  53718. height: math.unit(9, "feet"),
  53719. default: true
  53720. },
  53721. ]
  53722. ))
  53723. characterMakers.push(() => makeCharacter(
  53724. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53725. {
  53726. front: {
  53727. height: math.unit(17 + 9/12, "feet"),
  53728. weight: math.unit(8000, "lb"),
  53729. name: "Front",
  53730. image: {
  53731. source: "./media/characters/vera-raven/front.svg",
  53732. extra: 1457/1412,
  53733. bottom: 121/1578
  53734. }
  53735. },
  53736. side: {
  53737. height: math.unit(17 + 9/12, "feet"),
  53738. weight: math.unit(8000, "lb"),
  53739. name: "Side",
  53740. image: {
  53741. source: "./media/characters/vera-raven/side.svg",
  53742. extra: 1510/1464,
  53743. bottom: 54/1564
  53744. }
  53745. },
  53746. },
  53747. [
  53748. {
  53749. name: "Normal",
  53750. height: math.unit(17 + 9/12, "feet"),
  53751. default: true
  53752. },
  53753. ]
  53754. ))
  53755. characterMakers.push(() => makeCharacter(
  53756. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53757. {
  53758. dressed: {
  53759. height: math.unit(6 + 9/12, "feet"),
  53760. name: "Dressed",
  53761. image: {
  53762. source: "./media/characters/nakisha/dressed.svg",
  53763. extra: 1909/1757,
  53764. bottom: 48/1957
  53765. }
  53766. },
  53767. nude: {
  53768. height: math.unit(6 + 9/12, "feet"),
  53769. name: "Nude",
  53770. image: {
  53771. source: "./media/characters/nakisha/nude.svg",
  53772. extra: 1917/1765,
  53773. bottom: 34/1951
  53774. }
  53775. },
  53776. },
  53777. [
  53778. {
  53779. name: "Normal",
  53780. height: math.unit(6 + 9/12, "feet"),
  53781. default: true
  53782. },
  53783. ]
  53784. ))
  53785. characterMakers.push(() => makeCharacter(
  53786. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53787. {
  53788. front: {
  53789. height: math.unit(87, "meters"),
  53790. name: "Front",
  53791. image: {
  53792. source: "./media/characters/serafin/front.svg",
  53793. extra: 1919/1776,
  53794. bottom: 65/1984
  53795. }
  53796. },
  53797. },
  53798. [
  53799. {
  53800. name: "Normal",
  53801. height: math.unit(87, "meters"),
  53802. default: true
  53803. },
  53804. ]
  53805. ))
  53806. characterMakers.push(() => makeCharacter(
  53807. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53808. {
  53809. front: {
  53810. height: math.unit(6, "feet"),
  53811. weight: math.unit(200, "lb"),
  53812. name: "Front",
  53813. image: {
  53814. source: "./media/characters/poptart/front.svg",
  53815. extra: 615/583,
  53816. bottom: 23/638
  53817. }
  53818. },
  53819. back: {
  53820. height: math.unit(6, "feet"),
  53821. weight: math.unit(200, "lb"),
  53822. name: "Back",
  53823. image: {
  53824. source: "./media/characters/poptart/back.svg",
  53825. extra: 617/584,
  53826. bottom: 22/639
  53827. }
  53828. },
  53829. frontNsfw: {
  53830. height: math.unit(6, "feet"),
  53831. weight: math.unit(200, "lb"),
  53832. name: "Front (NSFW)",
  53833. image: {
  53834. source: "./media/characters/poptart/front-nsfw.svg",
  53835. extra: 615/583,
  53836. bottom: 23/638
  53837. }
  53838. },
  53839. backNsfw: {
  53840. height: math.unit(6, "feet"),
  53841. weight: math.unit(200, "lb"),
  53842. name: "Back (NSFW)",
  53843. image: {
  53844. source: "./media/characters/poptart/back-nsfw.svg",
  53845. extra: 617/584,
  53846. bottom: 22/639
  53847. }
  53848. },
  53849. hand: {
  53850. height: math.unit(1.14, "feet"),
  53851. name: "Hand",
  53852. image: {
  53853. source: "./media/characters/poptart/hand.svg"
  53854. }
  53855. },
  53856. foot: {
  53857. height: math.unit(1.5, "feet"),
  53858. name: "Foot",
  53859. image: {
  53860. source: "./media/characters/poptart/foot.svg"
  53861. }
  53862. },
  53863. },
  53864. [
  53865. {
  53866. name: "Normal",
  53867. height: math.unit(6, "feet"),
  53868. default: true
  53869. },
  53870. {
  53871. name: "Grande",
  53872. height: math.unit(350, "feet")
  53873. },
  53874. {
  53875. name: "Massif",
  53876. height: math.unit(967, "feet")
  53877. },
  53878. ]
  53879. ))
  53880. characterMakers.push(() => makeCharacter(
  53881. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53882. {
  53883. hyenaSide: {
  53884. height: math.unit(120, "cm"),
  53885. weight: math.unit(120, "lb"),
  53886. name: "Side",
  53887. image: {
  53888. source: "./media/characters/trance/hyena-side.svg",
  53889. extra: 998/904,
  53890. bottom: 76/1074
  53891. }
  53892. },
  53893. },
  53894. [
  53895. {
  53896. name: "Normal",
  53897. height: math.unit(120, "cm"),
  53898. default: true
  53899. },
  53900. {
  53901. name: "Dire",
  53902. height: math.unit(230, "cm")
  53903. },
  53904. {
  53905. name: "Macro",
  53906. height: math.unit(37, "feet")
  53907. },
  53908. ]
  53909. ))
  53910. characterMakers.push(() => makeCharacter(
  53911. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53912. {
  53913. front: {
  53914. height: math.unit(6 + 3/12, "feet"),
  53915. name: "Front",
  53916. image: {
  53917. source: "./media/characters/michael-berretta/front.svg",
  53918. extra: 515/494,
  53919. bottom: 20/535
  53920. }
  53921. },
  53922. back: {
  53923. height: math.unit(6 + 3/12, "feet"),
  53924. name: "Back",
  53925. image: {
  53926. source: "./media/characters/michael-berretta/back.svg",
  53927. extra: 520/497,
  53928. bottom: 21/541
  53929. }
  53930. },
  53931. frontNsfw: {
  53932. height: math.unit(6 + 3/12, "feet"),
  53933. name: "Front (NSFW)",
  53934. image: {
  53935. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53936. extra: 515/494,
  53937. bottom: 20/535
  53938. }
  53939. },
  53940. dick: {
  53941. height: math.unit(1, "feet"),
  53942. name: "Dick",
  53943. image: {
  53944. source: "./media/characters/michael-berretta/dick.svg"
  53945. }
  53946. },
  53947. },
  53948. [
  53949. {
  53950. name: "Normal",
  53951. height: math.unit(6 + 3/12, "feet"),
  53952. default: true
  53953. },
  53954. {
  53955. name: "Big",
  53956. height: math.unit(12, "feet")
  53957. },
  53958. {
  53959. name: "Macro",
  53960. height: math.unit(187.5, "feet")
  53961. },
  53962. ]
  53963. ))
  53964. characterMakers.push(() => makeCharacter(
  53965. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53966. {
  53967. front: {
  53968. height: math.unit(9 + 9/12, "feet"),
  53969. weight: math.unit(1244, "lb"),
  53970. name: "Front",
  53971. image: {
  53972. source: "./media/characters/stella-edgecomb/front.svg",
  53973. extra: 1835/1706,
  53974. bottom: 49/1884
  53975. }
  53976. },
  53977. pen: {
  53978. height: math.unit(0.95, "feet"),
  53979. name: "Pen",
  53980. image: {
  53981. source: "./media/characters/stella-edgecomb/pen.svg"
  53982. }
  53983. },
  53984. },
  53985. [
  53986. {
  53987. name: "Cozy Bear",
  53988. height: math.unit(0.5, "inches")
  53989. },
  53990. {
  53991. name: "Normal",
  53992. height: math.unit(9 + 9/12, "feet"),
  53993. default: true
  53994. },
  53995. {
  53996. name: "Giga Bear",
  53997. height: math.unit(1, "mile")
  53998. },
  53999. {
  54000. name: "Great Bear",
  54001. height: math.unit(53, "miles")
  54002. },
  54003. {
  54004. name: "Goddess Bear",
  54005. height: math.unit(40000, "miles")
  54006. },
  54007. {
  54008. name: "Sun Bear",
  54009. height: math.unit(900000, "miles")
  54010. },
  54011. ]
  54012. ))
  54013. characterMakers.push(() => makeCharacter(
  54014. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54015. {
  54016. anthroFront: {
  54017. height: math.unit(556, "cm"),
  54018. weight: math.unit(2650, "kg"),
  54019. preyCapacity: math.unit(3, "people"),
  54020. name: "Front",
  54021. image: {
  54022. source: "./media/characters/ash´iika/front.svg",
  54023. extra: 710/673,
  54024. bottom: 15/725
  54025. },
  54026. form: "anthro",
  54027. default: true
  54028. },
  54029. anthroSide: {
  54030. height: math.unit(556, "cm"),
  54031. weight: math.unit(2650, "kg"),
  54032. preyCapacity: math.unit(3, "people"),
  54033. name: "Side",
  54034. image: {
  54035. source: "./media/characters/ash´iika/side.svg",
  54036. extra: 696/676,
  54037. bottom: 13/709
  54038. },
  54039. form: "anthro"
  54040. },
  54041. anthroDressed: {
  54042. height: math.unit(556, "cm"),
  54043. weight: math.unit(2650, "kg"),
  54044. preyCapacity: math.unit(3, "people"),
  54045. name: "Dressed",
  54046. image: {
  54047. source: "./media/characters/ash´iika/dressed.svg",
  54048. extra: 710/673,
  54049. bottom: 15/725
  54050. },
  54051. form: "anthro"
  54052. },
  54053. anthroHead: {
  54054. height: math.unit(3.5, "feet"),
  54055. name: "Head",
  54056. image: {
  54057. source: "./media/characters/ash´iika/head.svg",
  54058. extra: 348/291,
  54059. bottom: 45/393
  54060. },
  54061. form: "anthro"
  54062. },
  54063. feralSide: {
  54064. height: math.unit(870, "cm"),
  54065. weight: math.unit(17500, "kg"),
  54066. preyCapacity: math.unit(15, "people"),
  54067. name: "Side",
  54068. image: {
  54069. source: "./media/characters/ash´iika/feral.svg",
  54070. extra: 595/199,
  54071. bottom: 7/602
  54072. },
  54073. form: "feral",
  54074. default: true,
  54075. },
  54076. },
  54077. [
  54078. {
  54079. name: "Normal",
  54080. height: math.unit(556, "cm"),
  54081. default: true,
  54082. form: "anthro"
  54083. },
  54084. {
  54085. name: "Macro",
  54086. height: math.unit(88, "meters"),
  54087. form: "anthro"
  54088. },
  54089. {
  54090. name: "Normal",
  54091. height: math.unit(870, "cm"),
  54092. default: true,
  54093. form: "feral"
  54094. },
  54095. {
  54096. name: "Large",
  54097. height: math.unit(25, "meters"),
  54098. form: "feral"
  54099. },
  54100. ],
  54101. {
  54102. "anthro": {
  54103. name: "Anthro",
  54104. default: true
  54105. },
  54106. "feral": {
  54107. name: "Feral",
  54108. },
  54109. }
  54110. ))
  54111. characterMakers.push(() => makeCharacter(
  54112. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54113. {
  54114. front: {
  54115. height: math.unit(10, "feet"),
  54116. weight: math.unit(800, "lb"),
  54117. name: "Front",
  54118. image: {
  54119. source: "./media/characters/yen/front.svg",
  54120. extra: 443/411,
  54121. bottom: 6/449
  54122. }
  54123. },
  54124. sleeping: {
  54125. height: math.unit(10, "feet"),
  54126. weight: math.unit(800, "lb"),
  54127. name: "Sleeping",
  54128. image: {
  54129. source: "./media/characters/yen/sleeping.svg",
  54130. extra: 470/422,
  54131. bottom: 0/470
  54132. }
  54133. },
  54134. head: {
  54135. height: math.unit(2.2, "feet"),
  54136. name: "Head",
  54137. image: {
  54138. source: "./media/characters/yen/head.svg"
  54139. }
  54140. },
  54141. headAlt: {
  54142. height: math.unit(2.1, "feet"),
  54143. name: "Head (Alt)",
  54144. image: {
  54145. source: "./media/characters/yen/head-alt.svg"
  54146. }
  54147. },
  54148. },
  54149. [
  54150. {
  54151. name: "Normal",
  54152. height: math.unit(10, "feet"),
  54153. default: true
  54154. },
  54155. ]
  54156. ))
  54157. characterMakers.push(() => makeCharacter(
  54158. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54159. {
  54160. front: {
  54161. height: math.unit(12, "feet"),
  54162. name: "Front",
  54163. image: {
  54164. source: "./media/characters/citra/front.svg",
  54165. extra: 1950/1710,
  54166. bottom: 47/1997
  54167. }
  54168. },
  54169. },
  54170. [
  54171. {
  54172. name: "Normal",
  54173. height: math.unit(12, "feet"),
  54174. default: true
  54175. },
  54176. ]
  54177. ))
  54178. characterMakers.push(() => makeCharacter(
  54179. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54180. {
  54181. side: {
  54182. height: math.unit(7 + 10/12, "feet"),
  54183. name: "Side",
  54184. image: {
  54185. source: "./media/characters/sholstim/side.svg",
  54186. extra: 786/682,
  54187. bottom: 40/826
  54188. }
  54189. },
  54190. },
  54191. [
  54192. {
  54193. name: "Normal",
  54194. height: math.unit(7 + 10/12, "feet"),
  54195. default: true
  54196. },
  54197. ]
  54198. ))
  54199. characterMakers.push(() => makeCharacter(
  54200. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54201. {
  54202. front: {
  54203. height: math.unit(3.10, "meters"),
  54204. name: "Front",
  54205. image: {
  54206. source: "./media/characters/aggyn/front.svg",
  54207. extra: 1188/963,
  54208. bottom: 24/1212
  54209. }
  54210. },
  54211. },
  54212. [
  54213. {
  54214. name: "Normal",
  54215. height: math.unit(3.10, "meters"),
  54216. default: true
  54217. },
  54218. ]
  54219. ))
  54220. characterMakers.push(() => makeCharacter(
  54221. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54222. {
  54223. front: {
  54224. height: math.unit(7 + 5/12, "feet"),
  54225. weight: math.unit(687, "lb"),
  54226. name: "Front",
  54227. image: {
  54228. source: "./media/characters/alsandair-hergenroether/front.svg",
  54229. extra: 1251/1186,
  54230. bottom: 75/1326
  54231. }
  54232. },
  54233. back: {
  54234. height: math.unit(7 + 5/12, "feet"),
  54235. weight: math.unit(687, "lb"),
  54236. name: "Back",
  54237. image: {
  54238. source: "./media/characters/alsandair-hergenroether/back.svg",
  54239. extra: 1290/1229,
  54240. bottom: 17/1307
  54241. }
  54242. },
  54243. },
  54244. [
  54245. {
  54246. name: "Max Compression",
  54247. height: math.unit(7 + 5/12, "feet"),
  54248. default: true
  54249. },
  54250. {
  54251. name: "\"Normal\"",
  54252. height: math.unit(2, "universes")
  54253. },
  54254. ]
  54255. ))
  54256. characterMakers.push(() => makeCharacter(
  54257. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54258. {
  54259. front: {
  54260. height: math.unit(4 + 1/12, "feet"),
  54261. weight: math.unit(92, "lb"),
  54262. name: "Front",
  54263. image: {
  54264. source: "./media/characters/ie/front.svg",
  54265. extra: 1585/1352,
  54266. bottom: 91/1676
  54267. }
  54268. },
  54269. },
  54270. [
  54271. {
  54272. name: "Normal",
  54273. height: math.unit(4 + 1/12, "feet"),
  54274. default: true
  54275. },
  54276. ]
  54277. ))
  54278. characterMakers.push(() => makeCharacter(
  54279. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54280. {
  54281. anthro: {
  54282. height: math.unit(6, "feet"),
  54283. weight: math.unit(150, "lb"),
  54284. name: "Front",
  54285. image: {
  54286. source: "./media/characters/willow/anthro.svg",
  54287. extra: 1073/986,
  54288. bottom: 34/1107
  54289. },
  54290. form: "anthro",
  54291. default: true
  54292. },
  54293. taur: {
  54294. height: math.unit(6, "feet"),
  54295. weight: math.unit(150, "lb"),
  54296. name: "Side",
  54297. image: {
  54298. source: "./media/characters/willow/taur.svg",
  54299. extra: 647/512,
  54300. bottom: 136/783
  54301. },
  54302. form: "taur",
  54303. default: true
  54304. },
  54305. },
  54306. [
  54307. {
  54308. name: "Humanoid",
  54309. height: math.unit(2.7, "meters"),
  54310. form: "anthro"
  54311. },
  54312. {
  54313. name: "Normal",
  54314. height: math.unit(9, "meters"),
  54315. form: "anthro",
  54316. default: true
  54317. },
  54318. {
  54319. name: "Humanoid",
  54320. height: math.unit(2.1, "meters"),
  54321. form: "taur"
  54322. },
  54323. {
  54324. name: "Normal",
  54325. height: math.unit(7, "meters"),
  54326. form: "taur",
  54327. default: true
  54328. },
  54329. ],
  54330. {
  54331. "anthro": {
  54332. name: "Anthro",
  54333. default: true
  54334. },
  54335. "taur": {
  54336. name: "Taur",
  54337. },
  54338. }
  54339. ))
  54340. characterMakers.push(() => makeCharacter(
  54341. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54342. {
  54343. front: {
  54344. height: math.unit(2 + 5/12, "feet"),
  54345. name: "Front",
  54346. image: {
  54347. source: "./media/characters/kyan/front.svg",
  54348. extra: 460/334,
  54349. bottom: 23/483
  54350. },
  54351. extraAttributes: {
  54352. "toeLength": {
  54353. name: "Toe Length",
  54354. power: 1,
  54355. type: "length",
  54356. base: math.unit(7, "cm")
  54357. },
  54358. "toeclawLength": {
  54359. name: "Toeclaw Length",
  54360. power: 1,
  54361. type: "length",
  54362. base: math.unit(4.7, "cm")
  54363. },
  54364. "earHeight": {
  54365. name: "Ear Height",
  54366. power: 1,
  54367. type: "length",
  54368. base: math.unit(14.1, "cm")
  54369. },
  54370. }
  54371. },
  54372. paws: {
  54373. height: math.unit(0.45, "feet"),
  54374. name: "Paws",
  54375. image: {
  54376. source: "./media/characters/kyan/paws.svg",
  54377. extra: 581/581,
  54378. bottom: 114/695
  54379. }
  54380. },
  54381. },
  54382. [
  54383. {
  54384. name: "Normal",
  54385. height: math.unit(2 + 5/12, "feet"),
  54386. default: true
  54387. },
  54388. ]
  54389. ))
  54390. characterMakers.push(() => makeCharacter(
  54391. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54392. {
  54393. front: {
  54394. height: math.unit(2 + 2/3, "feet"),
  54395. name: "Front",
  54396. image: {
  54397. source: "./media/characters/xazzon/front.svg",
  54398. extra: 1109/984,
  54399. bottom: 42/1151
  54400. }
  54401. },
  54402. back: {
  54403. height: math.unit(2 + 2/3, "feet"),
  54404. name: "Back",
  54405. image: {
  54406. source: "./media/characters/xazzon/back.svg",
  54407. extra: 1095/971,
  54408. bottom: 23/1118
  54409. }
  54410. },
  54411. },
  54412. [
  54413. {
  54414. name: "Normal",
  54415. height: math.unit(2 + 2/3, "feet"),
  54416. default: true
  54417. },
  54418. ]
  54419. ))
  54420. characterMakers.push(() => makeCharacter(
  54421. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54422. {
  54423. dressed: {
  54424. height: math.unit(5 + 7/12, "feet"),
  54425. weight: math.unit(173, "lb"),
  54426. name: "Dressed",
  54427. image: {
  54428. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54429. extra: 3262/2862,
  54430. bottom: 188/3450
  54431. }
  54432. },
  54433. undressed: {
  54434. height: math.unit(5 + 7/12, "feet"),
  54435. weight: math.unit(173, "lb"),
  54436. name: "Undressed",
  54437. image: {
  54438. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54439. extra: 3262/2862,
  54440. bottom: 188/3450
  54441. }
  54442. },
  54443. },
  54444. [
  54445. {
  54446. name: "The void",
  54447. height: math.unit(7.29193e-34, "angstroms")
  54448. },
  54449. {
  54450. name: "Uh-Oh.",
  54451. height: math.unit(5.734e-7, "angstroms")
  54452. },
  54453. {
  54454. name: "Pico",
  54455. height: math.unit(0.876, "angstroms")
  54456. },
  54457. {
  54458. name: "Nano",
  54459. height: math.unit(0.000134200, "mm")
  54460. },
  54461. {
  54462. name: "Micro",
  54463. height: math.unit(0.0673020, "mm")
  54464. },
  54465. {
  54466. name: "Tiny",
  54467. height: math.unit(2.4, "mm")
  54468. },
  54469. {
  54470. name: "Actual Normal",
  54471. height: math.unit(3, "inches"),
  54472. default: true
  54473. },
  54474. {
  54475. name: "Normal",
  54476. height: math.unit(5 + 8/12, "feet")
  54477. },
  54478. {
  54479. name: "Giant",
  54480. height: math.unit(12, "feet")
  54481. },
  54482. {
  54483. name: "City Ruler",
  54484. height: math.unit(270, "meters")
  54485. },
  54486. {
  54487. name: "Giga",
  54488. height: math.unit(1117.6, "km")
  54489. },
  54490. {
  54491. name: "All-Powerful Queen",
  54492. height: math.unit(70.8, "gigameters")
  54493. },
  54494. {
  54495. name: "'Goddess'",
  54496. height: math.unit(600, "yottameters")
  54497. },
  54498. {
  54499. name: "Biggest!",
  54500. height: math.unit(4.23e5, "yottameters")
  54501. },
  54502. ]
  54503. ))
  54504. characterMakers.push(() => makeCharacter(
  54505. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54506. {
  54507. front: {
  54508. height: math.unit(8, "feet"),
  54509. weight: math.unit(300, "lb"),
  54510. name: "Front",
  54511. image: {
  54512. source: "./media/characters/khyla-shadowsong/front.svg",
  54513. extra: 861/798,
  54514. bottom: 32/893
  54515. }
  54516. },
  54517. side: {
  54518. height: math.unit(8, "feet"),
  54519. weight: math.unit(300, "lb"),
  54520. name: "Side",
  54521. image: {
  54522. source: "./media/characters/khyla-shadowsong/side.svg",
  54523. extra: 790/750,
  54524. bottom: 87/877
  54525. }
  54526. },
  54527. back: {
  54528. height: math.unit(8, "feet"),
  54529. weight: math.unit(300, "lb"),
  54530. name: "Back",
  54531. image: {
  54532. source: "./media/characters/khyla-shadowsong/back.svg",
  54533. extra: 855/808,
  54534. bottom: 14/869
  54535. }
  54536. },
  54537. head: {
  54538. height: math.unit(2.7, "feet"),
  54539. name: "Head",
  54540. image: {
  54541. source: "./media/characters/khyla-shadowsong/head.svg"
  54542. }
  54543. },
  54544. },
  54545. [
  54546. {
  54547. name: "Micro",
  54548. height: math.unit(6, "inches")
  54549. },
  54550. {
  54551. name: "Normal",
  54552. height: math.unit(8, "feet"),
  54553. default: true
  54554. },
  54555. ]
  54556. ))
  54557. characterMakers.push(() => makeCharacter(
  54558. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54559. {
  54560. hyperFront: {
  54561. height: math.unit(9 + 4/12, "feet"),
  54562. weight: math.unit(2000, "lb"),
  54563. name: "Front",
  54564. image: {
  54565. source: "./media/characters/tiden/hyper-front.svg",
  54566. extra: 400/382,
  54567. bottom: 6/406
  54568. },
  54569. form: "hyper",
  54570. },
  54571. regularFront: {
  54572. height: math.unit(7 + 10/12, "feet"),
  54573. weight: math.unit(470, "lb"),
  54574. name: "Front",
  54575. image: {
  54576. source: "./media/characters/tiden/regular-front.svg",
  54577. extra: 468/442,
  54578. bottom: 6/474
  54579. },
  54580. form: "regular",
  54581. },
  54582. },
  54583. [
  54584. {
  54585. name: "Normal",
  54586. height: math.unit(9 + 4/12, "feet"),
  54587. default: true,
  54588. form: "hyper"
  54589. },
  54590. {
  54591. name: "Normal",
  54592. height: math.unit(7 + 10/12, "feet"),
  54593. default: true,
  54594. form: "regular"
  54595. },
  54596. ],
  54597. {
  54598. "hyper": {
  54599. name: "Hyper",
  54600. default: true
  54601. },
  54602. "regular": {
  54603. name: "Regular",
  54604. },
  54605. }
  54606. ))
  54607. characterMakers.push(() => makeCharacter(
  54608. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54609. {
  54610. side: {
  54611. height: math.unit(6, "feet"),
  54612. weight: math.unit(150, "lb"),
  54613. name: "Side",
  54614. image: {
  54615. source: "./media/characters/jason-crowe/side.svg",
  54616. extra: 1771/766,
  54617. bottom: 219/1990
  54618. }
  54619. },
  54620. },
  54621. [
  54622. {
  54623. name: "Pocket Gryphon",
  54624. height: math.unit(6, "cm")
  54625. },
  54626. {
  54627. name: "Raven",
  54628. height: math.unit(60, "cm")
  54629. },
  54630. {
  54631. name: "Normal",
  54632. height: math.unit(1, "meter"),
  54633. default: true
  54634. },
  54635. ]
  54636. ))
  54637. characterMakers.push(() => makeCharacter(
  54638. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54639. {
  54640. front: {
  54641. height: math.unit(9 + 6/12, "feet"),
  54642. weight: math.unit(1100, "lb"),
  54643. name: "Front",
  54644. image: {
  54645. source: "./media/characters/django/front.svg",
  54646. extra: 1231/1136,
  54647. bottom: 34/1265
  54648. }
  54649. },
  54650. side: {
  54651. height: math.unit(9 + 6/12, "feet"),
  54652. weight: math.unit(1100, "lb"),
  54653. name: "Side",
  54654. image: {
  54655. source: "./media/characters/django/side.svg",
  54656. extra: 1267/1174,
  54657. bottom: 9/1276
  54658. }
  54659. },
  54660. },
  54661. [
  54662. {
  54663. name: "Normal",
  54664. height: math.unit(9 + 6/12, "feet"),
  54665. default: true
  54666. },
  54667. {
  54668. name: "Macro 1",
  54669. height: math.unit(50, "feet")
  54670. },
  54671. {
  54672. name: "Macro 2",
  54673. height: math.unit(500, "feet")
  54674. },
  54675. {
  54676. name: "Mega Macro",
  54677. height: math.unit(5300, "feet")
  54678. },
  54679. ]
  54680. ))
  54681. characterMakers.push(() => makeCharacter(
  54682. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54683. {
  54684. frontSfw: {
  54685. height: math.unit(120, "cm"),
  54686. weight: math.unit(15, "kg"),
  54687. name: "Front (SFW)",
  54688. image: {
  54689. source: "./media/characters/eri/front-sfw.svg",
  54690. extra: 1014/939,
  54691. bottom: 37/1051
  54692. },
  54693. form: "moth",
  54694. },
  54695. frontNsfw: {
  54696. height: math.unit(120, "cm"),
  54697. weight: math.unit(15, "kg"),
  54698. name: "Front (NSFW)",
  54699. image: {
  54700. source: "./media/characters/eri/front-nsfw.svg",
  54701. extra: 1014/939,
  54702. bottom: 37/1051
  54703. },
  54704. form: "moth",
  54705. default: true
  54706. },
  54707. egg: {
  54708. height: math.unit(10, "cm"),
  54709. name: "Egg",
  54710. image: {
  54711. source: "./media/characters/eri/egg.svg"
  54712. },
  54713. form: "egg",
  54714. default: true
  54715. },
  54716. },
  54717. [
  54718. {
  54719. name: "Normal",
  54720. height: math.unit(120, "cm"),
  54721. default: true,
  54722. form: "moth"
  54723. },
  54724. {
  54725. name: "Normal",
  54726. height: math.unit(10, "cm"),
  54727. default: true,
  54728. form: "egg"
  54729. },
  54730. ],
  54731. {
  54732. "moth": {
  54733. name: "Moth",
  54734. default: true
  54735. },
  54736. "egg": {
  54737. name: "Egg",
  54738. },
  54739. }
  54740. ))
  54741. characterMakers.push(() => makeCharacter(
  54742. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54743. {
  54744. front: {
  54745. height: math.unit(200, "feet"),
  54746. name: "Front",
  54747. image: {
  54748. source: "./media/characters/bishop-dowser/front.svg",
  54749. extra: 933/868,
  54750. bottom: 106/1039
  54751. }
  54752. },
  54753. },
  54754. [
  54755. {
  54756. name: "Giant",
  54757. height: math.unit(200, "feet"),
  54758. default: true
  54759. },
  54760. ]
  54761. ))
  54762. characterMakers.push(() => makeCharacter(
  54763. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54764. {
  54765. front: {
  54766. height: math.unit(2, "meters"),
  54767. preyCapacity: math.unit(3, "people"),
  54768. name: "Front",
  54769. image: {
  54770. source: "./media/characters/fryra/front.svg",
  54771. extra: 1025/948,
  54772. bottom: 30/1055
  54773. },
  54774. extraAttributes: {
  54775. "breastVolume": {
  54776. name: "Breast Volume",
  54777. power: 3,
  54778. type: "volume",
  54779. base: math.unit(8, "liters")
  54780. },
  54781. }
  54782. },
  54783. back: {
  54784. height: math.unit(2, "meters"),
  54785. preyCapacity: math.unit(3, "people"),
  54786. name: "Back",
  54787. image: {
  54788. source: "./media/characters/fryra/back.svg",
  54789. extra: 993/938,
  54790. bottom: 38/1031
  54791. },
  54792. extraAttributes: {
  54793. "breastVolume": {
  54794. name: "Breast Volume",
  54795. power: 3,
  54796. type: "volume",
  54797. base: math.unit(8, "liters")
  54798. },
  54799. }
  54800. },
  54801. head: {
  54802. height: math.unit(1.33, "feet"),
  54803. name: "Head",
  54804. image: {
  54805. source: "./media/characters/fryra/head.svg"
  54806. }
  54807. },
  54808. maw: {
  54809. height: math.unit(0.56, "feet"),
  54810. name: "Maw",
  54811. image: {
  54812. source: "./media/characters/fryra/maw.svg"
  54813. }
  54814. },
  54815. },
  54816. [
  54817. {
  54818. name: "Micro",
  54819. height: math.unit(5, "cm")
  54820. },
  54821. {
  54822. name: "Normal",
  54823. height: math.unit(2, "meters"),
  54824. default: true
  54825. },
  54826. {
  54827. name: "Small Macro",
  54828. height: math.unit(8, "meters")
  54829. },
  54830. {
  54831. name: "Macro",
  54832. height: math.unit(50, "meters")
  54833. },
  54834. {
  54835. name: "Megamacro",
  54836. height: math.unit(1, "km")
  54837. },
  54838. {
  54839. name: "Planetary",
  54840. height: math.unit(300000, "km")
  54841. },
  54842. {
  54843. name: "Universal",
  54844. height: math.unit(250, "lightyears")
  54845. },
  54846. {
  54847. name: "Fabric of Reality",
  54848. height: math.unit(1000, "multiverses")
  54849. },
  54850. ]
  54851. ))
  54852. characterMakers.push(() => makeCharacter(
  54853. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54854. {
  54855. frontDressed: {
  54856. height: math.unit(6 + 2/12, "feet"),
  54857. name: "Front (Dressed)",
  54858. image: {
  54859. source: "./media/characters/fiera/front-dressed.svg",
  54860. extra: 1883/1793,
  54861. bottom: 70/1953
  54862. }
  54863. },
  54864. backDressed: {
  54865. height: math.unit(6 + 2/12, "feet"),
  54866. name: "Back (Dressed)",
  54867. image: {
  54868. source: "./media/characters/fiera/back-dressed.svg",
  54869. extra: 1847/1780,
  54870. bottom: 70/1917
  54871. }
  54872. },
  54873. frontNude: {
  54874. height: math.unit(6 + 2/12, "feet"),
  54875. name: "Front (Nude)",
  54876. image: {
  54877. source: "./media/characters/fiera/front-nude.svg",
  54878. extra: 1875/1785,
  54879. bottom: 66/1941
  54880. }
  54881. },
  54882. backNude: {
  54883. height: math.unit(6 + 2/12, "feet"),
  54884. name: "Back (Nude)",
  54885. image: {
  54886. source: "./media/characters/fiera/back-nude.svg",
  54887. extra: 1855/1788,
  54888. bottom: 44/1899
  54889. }
  54890. },
  54891. maw: {
  54892. height: math.unit(1.3, "feet"),
  54893. name: "Maw",
  54894. image: {
  54895. source: "./media/characters/fiera/maw.svg"
  54896. }
  54897. },
  54898. paw: {
  54899. height: math.unit(1, "feet"),
  54900. name: "Paw",
  54901. image: {
  54902. source: "./media/characters/fiera/paw.svg"
  54903. }
  54904. },
  54905. shoe: {
  54906. height: math.unit(1.05, "feet"),
  54907. name: "Shoe",
  54908. image: {
  54909. source: "./media/characters/fiera/shoe.svg"
  54910. }
  54911. },
  54912. },
  54913. [
  54914. {
  54915. name: "Normal",
  54916. height: math.unit(6 + 2/12, "feet"),
  54917. default: true
  54918. },
  54919. {
  54920. name: "Size Difference",
  54921. height: math.unit(13, "feet")
  54922. },
  54923. {
  54924. name: "Macro",
  54925. height: math.unit(60, "feet")
  54926. },
  54927. {
  54928. name: "Mega Macro",
  54929. height: math.unit(200, "feet")
  54930. },
  54931. ]
  54932. ))
  54933. characterMakers.push(() => makeCharacter(
  54934. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54935. {
  54936. back: {
  54937. height: math.unit(6, "feet"),
  54938. name: "Back",
  54939. image: {
  54940. source: "./media/characters/flare/back.svg",
  54941. extra: 1883/1765,
  54942. bottom: 32/1915
  54943. }
  54944. },
  54945. },
  54946. [
  54947. {
  54948. name: "Normal",
  54949. height: math.unit(6 + 2/12, "feet"),
  54950. default: true
  54951. },
  54952. {
  54953. name: "Size Difference",
  54954. height: math.unit(13, "feet")
  54955. },
  54956. {
  54957. name: "Macro",
  54958. height: math.unit(60, "feet")
  54959. },
  54960. {
  54961. name: "Macro 2",
  54962. height: math.unit(100, "feet")
  54963. },
  54964. {
  54965. name: "Mega Macro",
  54966. height: math.unit(200, "feet")
  54967. },
  54968. ]
  54969. ))
  54970. characterMakers.push(() => makeCharacter(
  54971. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54972. {
  54973. front: {
  54974. height: math.unit(2.2, "m"),
  54975. weight: math.unit(300, "kg"),
  54976. name: "Front",
  54977. image: {
  54978. source: "./media/characters/hanna/front.svg",
  54979. extra: 1696/1502,
  54980. bottom: 206/1902
  54981. }
  54982. },
  54983. },
  54984. [
  54985. {
  54986. name: "Humanoid",
  54987. height: math.unit(2.2, "meters")
  54988. },
  54989. {
  54990. name: "Normal",
  54991. height: math.unit(4.8, "meters"),
  54992. default: true
  54993. },
  54994. ]
  54995. ))
  54996. characterMakers.push(() => makeCharacter(
  54997. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54998. {
  54999. front: {
  55000. height: math.unit(2.8, "meters"),
  55001. name: "Front",
  55002. image: {
  55003. source: "./media/characters/argo/front.svg",
  55004. extra: 731/518,
  55005. bottom: 84/815
  55006. }
  55007. },
  55008. },
  55009. [
  55010. {
  55011. name: "Normal",
  55012. height: math.unit(3, "meters"),
  55013. default: true
  55014. },
  55015. ]
  55016. ))
  55017. characterMakers.push(() => makeCharacter(
  55018. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55019. {
  55020. side: {
  55021. height: math.unit(3.8, "meters"),
  55022. name: "Side",
  55023. image: {
  55024. source: "./media/characters/sybil/side.svg",
  55025. extra: 382/361,
  55026. bottom: 25/407
  55027. }
  55028. },
  55029. },
  55030. [
  55031. {
  55032. name: "Normal",
  55033. height: math.unit(3.8, "meters"),
  55034. default: true
  55035. },
  55036. ]
  55037. ))
  55038. characterMakers.push(() => makeCharacter(
  55039. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55040. {
  55041. side: {
  55042. height: math.unit(6, "meters"),
  55043. name: "Side",
  55044. image: {
  55045. source: "./media/characters/plum/side.svg",
  55046. extra: 858/755,
  55047. bottom: 45/903
  55048. },
  55049. form: "taur",
  55050. default: true
  55051. },
  55052. back: {
  55053. height: math.unit(6.3, "meters"),
  55054. name: "Back",
  55055. image: {
  55056. source: "./media/characters/plum/back.svg",
  55057. extra: 887/813,
  55058. bottom: 32/919
  55059. },
  55060. form: "taur",
  55061. },
  55062. feral: {
  55063. height: math.unit(5.5, "meter"),
  55064. name: "Front",
  55065. image: {
  55066. source: "./media/characters/plum/feral.svg",
  55067. extra: 568/403,
  55068. bottom: 51/619
  55069. },
  55070. form: "feral",
  55071. default: true
  55072. },
  55073. head: {
  55074. height: math.unit(1.46, "meter"),
  55075. name: "Head",
  55076. image: {
  55077. source: "./media/characters/plum/head.svg"
  55078. },
  55079. form: "taur"
  55080. },
  55081. tailTop: {
  55082. height: math.unit(5.6, "meter"),
  55083. name: "Tail (Top)",
  55084. image: {
  55085. source: "./media/characters/plum/tail-top.svg"
  55086. },
  55087. form: "taur",
  55088. },
  55089. tailBottom: {
  55090. height: math.unit(5.6, "meter"),
  55091. name: "Tail (Bottom)",
  55092. image: {
  55093. source: "./media/characters/plum/tail-bottom.svg"
  55094. },
  55095. form: "taur",
  55096. },
  55097. feralHead: {
  55098. height: math.unit(2.56549521, "meter"),
  55099. name: "Head",
  55100. image: {
  55101. source: "./media/characters/plum/head.svg"
  55102. },
  55103. form: "feral"
  55104. },
  55105. feralTailTop: {
  55106. height: math.unit(5.44728435, "meter"),
  55107. name: "Tail (Top)",
  55108. image: {
  55109. source: "./media/characters/plum/tail-top.svg"
  55110. },
  55111. form: "feral",
  55112. },
  55113. feralTailBottom: {
  55114. height: math.unit(5.44728435, "meter"),
  55115. name: "Tail (Bottom)",
  55116. image: {
  55117. source: "./media/characters/plum/tail-bottom.svg"
  55118. },
  55119. form: "feral",
  55120. },
  55121. },
  55122. [
  55123. {
  55124. name: "Normal",
  55125. height: math.unit(6, "meters"),
  55126. default: true,
  55127. form: "taur"
  55128. },
  55129. {
  55130. name: "Normal",
  55131. height: math.unit(5.5, "meters"),
  55132. default: true,
  55133. form: "feral"
  55134. },
  55135. ],
  55136. {
  55137. "taur": {
  55138. name: "Taur",
  55139. default: true
  55140. },
  55141. "feral": {
  55142. name: "Feral",
  55143. },
  55144. }
  55145. ))
  55146. characterMakers.push(() => makeCharacter(
  55147. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55148. {
  55149. front: {
  55150. height: math.unit(6, "feet"),
  55151. weight: math.unit(115, "lb"),
  55152. name: "Front",
  55153. image: {
  55154. source: "./media/characters/celeste-kitsune/front.svg",
  55155. extra: 393/366,
  55156. bottom: 7/400
  55157. }
  55158. },
  55159. side: {
  55160. height: math.unit(6, "feet"),
  55161. weight: math.unit(115, "lb"),
  55162. name: "Side",
  55163. image: {
  55164. source: "./media/characters/celeste-kitsune/side.svg",
  55165. extra: 818/765,
  55166. bottom: 40/858
  55167. }
  55168. },
  55169. },
  55170. [
  55171. {
  55172. name: "Megamacro",
  55173. height: math.unit(1500, "miles"),
  55174. default: true
  55175. },
  55176. ]
  55177. ))
  55178. characterMakers.push(() => makeCharacter(
  55179. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55180. {
  55181. front: {
  55182. height: math.unit(8, "meters"),
  55183. name: "Front",
  55184. image: {
  55185. source: "./media/characters/io/front.svg",
  55186. extra: 865/722,
  55187. bottom: 58/923
  55188. }
  55189. },
  55190. back: {
  55191. height: math.unit(8, "meters"),
  55192. name: "Back",
  55193. image: {
  55194. source: "./media/characters/io/back.svg",
  55195. extra: 920/776,
  55196. bottom: 42/962
  55197. }
  55198. },
  55199. head: {
  55200. height: math.unit(5.09, "meters"),
  55201. name: "Head",
  55202. image: {
  55203. source: "./media/characters/io/head.svg"
  55204. }
  55205. },
  55206. hand: {
  55207. height: math.unit(1.6, "meters"),
  55208. name: "Hand",
  55209. image: {
  55210. source: "./media/characters/io/hand.svg"
  55211. }
  55212. },
  55213. foot: {
  55214. height: math.unit(2.4, "meters"),
  55215. name: "Foot",
  55216. image: {
  55217. source: "./media/characters/io/foot.svg"
  55218. }
  55219. },
  55220. },
  55221. [
  55222. {
  55223. name: "Normal",
  55224. height: math.unit(8, "meters"),
  55225. default: true
  55226. },
  55227. ]
  55228. ))
  55229. characterMakers.push(() => makeCharacter(
  55230. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55231. {
  55232. side: {
  55233. height: math.unit(6 + 3/12, "feet"),
  55234. weight: math.unit(225, "lb"),
  55235. name: "Side",
  55236. image: {
  55237. source: "./media/characters/silas/side.svg",
  55238. extra: 703/653,
  55239. bottom: 23/726
  55240. },
  55241. extraAttributes: {
  55242. "pawLength": {
  55243. name: "Paw Length",
  55244. power: 1,
  55245. type: "length",
  55246. base: math.unit(12, "inches")
  55247. },
  55248. "pawWidth": {
  55249. name: "Paw Width",
  55250. power: 1,
  55251. type: "length",
  55252. base: math.unit(4.5, "inches")
  55253. },
  55254. "pawArea": {
  55255. name: "Paw Area",
  55256. power: 2,
  55257. type: "area",
  55258. base: math.unit(12 * 4.5, "inches^2")
  55259. },
  55260. }
  55261. },
  55262. },
  55263. [
  55264. {
  55265. name: "Normal",
  55266. height: math.unit(6 + 3/12, "feet"),
  55267. default: true
  55268. },
  55269. ]
  55270. ))
  55271. characterMakers.push(() => makeCharacter(
  55272. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55273. {
  55274. back: {
  55275. height: math.unit(1.6, "meters"),
  55276. weight: math.unit(150, "lb"),
  55277. name: "Back",
  55278. image: {
  55279. source: "./media/characters/zari/back.svg",
  55280. extra: 424/411,
  55281. bottom: 32/456
  55282. },
  55283. extraAttributes: {
  55284. "bladderCapacity": {
  55285. name: "Bladder Size",
  55286. power: 3,
  55287. type: "volume",
  55288. base: math.unit(500, "mL")
  55289. },
  55290. "bladderFlow": {
  55291. name: "Flow Rate",
  55292. power: 3,
  55293. type: "volume",
  55294. base: math.unit(25, "mL")
  55295. },
  55296. }
  55297. },
  55298. },
  55299. [
  55300. {
  55301. name: "Normal",
  55302. height: math.unit(1.6, "meters"),
  55303. default: true
  55304. },
  55305. ]
  55306. ))
  55307. characterMakers.push(() => makeCharacter(
  55308. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55309. {
  55310. front: {
  55311. height: math.unit(25, "feet"),
  55312. weight: math.unit(5, "tons"),
  55313. name: "Front",
  55314. image: {
  55315. source: "./media/characters/charlie-human/front.svg",
  55316. extra: 1870/1740,
  55317. bottom: 102/1972
  55318. },
  55319. extraAttributes: {
  55320. "dickLength": {
  55321. name: "Dick Length",
  55322. power: 1,
  55323. type: "length",
  55324. base: math.unit(9, "feet")
  55325. },
  55326. }
  55327. },
  55328. back: {
  55329. height: math.unit(25, "feet"),
  55330. weight: math.unit(5, "tons"),
  55331. name: "Back",
  55332. image: {
  55333. source: "./media/characters/charlie-human/back.svg",
  55334. extra: 1858/1733,
  55335. bottom: 105/1963
  55336. },
  55337. extraAttributes: {
  55338. "dickLength": {
  55339. name: "Dick Length",
  55340. power: 1,
  55341. type: "length",
  55342. base: math.unit(9, "feet")
  55343. },
  55344. }
  55345. },
  55346. },
  55347. [
  55348. {
  55349. name: "\"Normal\"",
  55350. height: math.unit(6 + 4/12, "feet")
  55351. },
  55352. {
  55353. name: "Big",
  55354. height: math.unit(25, "feet"),
  55355. default: true
  55356. },
  55357. ]
  55358. ))
  55359. characterMakers.push(() => makeCharacter(
  55360. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55361. {
  55362. front: {
  55363. height: math.unit(6 + 4/12, "feet"),
  55364. weight: math.unit(320, "lb"),
  55365. name: "Front",
  55366. image: {
  55367. source: "./media/characters/ookitsu/front.svg",
  55368. extra: 1160/976,
  55369. bottom: 38/1198
  55370. }
  55371. },
  55372. frontNsfw: {
  55373. height: math.unit(6 + 4/12, "feet"),
  55374. weight: math.unit(320, "lb"),
  55375. name: "Front (NSFW)",
  55376. image: {
  55377. source: "./media/characters/ookitsu/front-nsfw.svg",
  55378. extra: 1160/976,
  55379. bottom: 38/1198
  55380. }
  55381. },
  55382. back: {
  55383. height: math.unit(6 + 4/12, "feet"),
  55384. weight: math.unit(320, "lb"),
  55385. name: "Back",
  55386. image: {
  55387. source: "./media/characters/ookitsu/back.svg",
  55388. extra: 1030/975,
  55389. bottom: 70/1100
  55390. }
  55391. },
  55392. head: {
  55393. height: math.unit(1.79, "feet"),
  55394. name: "Head",
  55395. image: {
  55396. source: "./media/characters/ookitsu/head.svg"
  55397. }
  55398. },
  55399. hand: {
  55400. height: math.unit(0.92, "feet"),
  55401. name: "Hand",
  55402. image: {
  55403. source: "./media/characters/ookitsu/hand.svg"
  55404. }
  55405. },
  55406. tails: {
  55407. height: math.unit(3.3, "feet"),
  55408. name: "Tails",
  55409. image: {
  55410. source: "./media/characters/ookitsu/tails.svg"
  55411. }
  55412. },
  55413. dick: {
  55414. height: math.unit(1.10833, "feet"),
  55415. name: "Dick",
  55416. image: {
  55417. source: "./media/characters/ookitsu/dick.svg"
  55418. }
  55419. },
  55420. },
  55421. [
  55422. {
  55423. name: "Normal",
  55424. height: math.unit(6 + 4/12, "feet"),
  55425. default: true
  55426. },
  55427. {
  55428. name: "Macro",
  55429. height: math.unit(30, "feet")
  55430. },
  55431. ]
  55432. ))
  55433. characterMakers.push(() => makeCharacter(
  55434. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55435. {
  55436. anthroFront: {
  55437. height: math.unit(6, "feet"),
  55438. weight: math.unit(250, "lb"),
  55439. name: "Front",
  55440. image: {
  55441. source: "./media/characters/jhusky/anthro-front.svg",
  55442. extra: 474/439,
  55443. bottom: 7/481
  55444. },
  55445. form: "anthro",
  55446. default: true
  55447. },
  55448. taurSideSfw: {
  55449. height: math.unit(6 + 4/12, "feet"),
  55450. weight: math.unit(500, "lb"),
  55451. name: "Side (SFW)",
  55452. image: {
  55453. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55454. extra: 1741/1629,
  55455. bottom: 196/1937
  55456. },
  55457. form: "taur",
  55458. default: true
  55459. },
  55460. taurSideNsfw: {
  55461. height: math.unit(6 + 4/12, "feet"),
  55462. weight: math.unit(500, "lb"),
  55463. name: "Taur (NSFW)",
  55464. image: {
  55465. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55466. extra: 1741/1629,
  55467. bottom: 196/1937
  55468. },
  55469. form: "taur",
  55470. },
  55471. },
  55472. [
  55473. {
  55474. name: "Huge",
  55475. height: math.unit(500, "feet"),
  55476. form: "anthro"
  55477. },
  55478. {
  55479. name: "Macro",
  55480. height: math.unit(1000, "feet"),
  55481. default: true,
  55482. form: "anthro"
  55483. },
  55484. {
  55485. name: "Megamacro",
  55486. height: math.unit(10000, "feet"),
  55487. form: "anthro"
  55488. },
  55489. {
  55490. name: "Huge",
  55491. height: math.unit(528, "feet"),
  55492. form: "taur"
  55493. },
  55494. {
  55495. name: "Macro",
  55496. height: math.unit(1056, "feet"),
  55497. default: true,
  55498. form: "taur"
  55499. },
  55500. {
  55501. name: "Megamacro",
  55502. height: math.unit(10556, "feet"),
  55503. form: "taur"
  55504. },
  55505. ],
  55506. {
  55507. "anthro": {
  55508. name: "Anthro",
  55509. default: true
  55510. },
  55511. "taur": {
  55512. name: "Taur",
  55513. },
  55514. }
  55515. ))
  55516. characterMakers.push(() => makeCharacter(
  55517. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55518. {
  55519. front: {
  55520. height: math.unit(8, "feet"),
  55521. weight: math.unit(500, "lb"),
  55522. name: "Front",
  55523. image: {
  55524. source: "./media/characters/armail/front.svg",
  55525. extra: 1753/1669,
  55526. bottom: 155/1908
  55527. }
  55528. },
  55529. back: {
  55530. height: math.unit(8, "feet"),
  55531. weight: math.unit(500, "lb"),
  55532. name: "Back",
  55533. image: {
  55534. source: "./media/characters/armail/back.svg",
  55535. extra: 1872/1803,
  55536. bottom: 63/1935
  55537. }
  55538. },
  55539. },
  55540. [
  55541. {
  55542. name: "Micro",
  55543. height: math.unit(0.25, "feet")
  55544. },
  55545. {
  55546. name: "Normal",
  55547. height: math.unit(8, "feet"),
  55548. default: true
  55549. },
  55550. {
  55551. name: "Mini-macro",
  55552. height: math.unit(30, "feet")
  55553. },
  55554. {
  55555. name: "Macro",
  55556. height: math.unit(400, "feet")
  55557. },
  55558. {
  55559. name: "Mega-macro",
  55560. height: math.unit(6000, "feet")
  55561. },
  55562. ]
  55563. ))
  55564. characterMakers.push(() => makeCharacter(
  55565. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55566. {
  55567. front: {
  55568. height: math.unit(6 + 7/12, "feet"),
  55569. weight: math.unit(210, "lb"),
  55570. name: "Front",
  55571. image: {
  55572. source: "./media/characters/wilfred-t-buxton/front.svg",
  55573. extra: 1068/882,
  55574. bottom: 28/1096
  55575. }
  55576. },
  55577. },
  55578. [
  55579. {
  55580. name: "Normal",
  55581. height: math.unit(6 + 7/12, "feet"),
  55582. default: true
  55583. },
  55584. ]
  55585. ))
  55586. characterMakers.push(() => makeCharacter(
  55587. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55588. {
  55589. front: {
  55590. height: math.unit(5 + 2/12, "feet"),
  55591. weight: math.unit(120, "lb"),
  55592. name: "Front",
  55593. image: {
  55594. source: "./media/characters/leighton-marrow/front.svg",
  55595. extra: 441/409,
  55596. bottom: 37/478
  55597. }
  55598. },
  55599. },
  55600. [
  55601. {
  55602. name: "Normal",
  55603. height: math.unit(5 + 2/12, "feet"),
  55604. default: true
  55605. },
  55606. ]
  55607. ))
  55608. characterMakers.push(() => makeCharacter(
  55609. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55610. {
  55611. front: {
  55612. height: math.unit(4, "meters"),
  55613. weight: math.unit(1200, "kg"),
  55614. name: "Front",
  55615. image: {
  55616. source: "./media/characters/licos/front.svg",
  55617. extra: 1727/1604,
  55618. bottom: 101/1828
  55619. },
  55620. form: "anthro",
  55621. default: true
  55622. },
  55623. taur_side: {
  55624. height: math.unit(20, "meters"),
  55625. weight: math.unit(1100000, "kg"),
  55626. name: "Side",
  55627. image: {
  55628. source: "./media/characters/licos/taur.svg",
  55629. extra: 1158/1091,
  55630. bottom: 80/1238
  55631. },
  55632. form: "taur",
  55633. default: true
  55634. },
  55635. },
  55636. [
  55637. {
  55638. name: "Normal",
  55639. height: math.unit(4, "meters"),
  55640. default: true,
  55641. form: "anthro"
  55642. },
  55643. {
  55644. name: "Normal",
  55645. height: math.unit(20, "meters"),
  55646. default: true,
  55647. form: "taur"
  55648. },
  55649. ],
  55650. {
  55651. "anthro": {
  55652. name: "Anthro",
  55653. default: true
  55654. },
  55655. "taur": {
  55656. name: "Taur",
  55657. },
  55658. }
  55659. ))
  55660. characterMakers.push(() => makeCharacter(
  55661. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55662. {
  55663. front: {
  55664. height: math.unit(10 + 3/12, "feet"),
  55665. name: "Front",
  55666. image: {
  55667. source: "./media/characters/theo-monkey/front.svg",
  55668. extra: 1735/1658,
  55669. bottom: 73/1808
  55670. }
  55671. },
  55672. back: {
  55673. height: math.unit(10 + 3/12, "feet"),
  55674. name: "Back",
  55675. image: {
  55676. source: "./media/characters/theo-monkey/back.svg",
  55677. extra: 1742/1664,
  55678. bottom: 33/1775
  55679. }
  55680. },
  55681. head: {
  55682. height: math.unit(2.29, "feet"),
  55683. name: "Head",
  55684. image: {
  55685. source: "./media/characters/theo-monkey/head.svg"
  55686. }
  55687. },
  55688. handPalm: {
  55689. height: math.unit(1.73, "feet"),
  55690. name: "Hand (Palm)",
  55691. image: {
  55692. source: "./media/characters/theo-monkey/hand-palm.svg"
  55693. }
  55694. },
  55695. handBack: {
  55696. height: math.unit(1.63, "feet"),
  55697. name: "Hand (Back)",
  55698. image: {
  55699. source: "./media/characters/theo-monkey/hand-back.svg"
  55700. }
  55701. },
  55702. footSole: {
  55703. height: math.unit(2.15, "feet"),
  55704. name: "Foot (Sole)",
  55705. image: {
  55706. source: "./media/characters/theo-monkey/foot-sole.svg"
  55707. }
  55708. },
  55709. footSide: {
  55710. height: math.unit(1.6, "feet"),
  55711. name: "Foot (Side)",
  55712. image: {
  55713. source: "./media/characters/theo-monkey/foot-side.svg"
  55714. }
  55715. },
  55716. },
  55717. [
  55718. {
  55719. name: "Normal",
  55720. height: math.unit(10 + 3/12, "feet"),
  55721. default: true
  55722. },
  55723. ]
  55724. ))
  55725. characterMakers.push(() => makeCharacter(
  55726. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55727. {
  55728. front: {
  55729. height: math.unit(11, "feet"),
  55730. weight: math.unit(3000, "lb"),
  55731. preyCapacity: math.unit(10, "people"),
  55732. name: "Front",
  55733. image: {
  55734. source: "./media/characters/brook/front.svg",
  55735. extra: 909/835,
  55736. bottom: 108/1017
  55737. }
  55738. },
  55739. back: {
  55740. height: math.unit(11, "feet"),
  55741. weight: math.unit(3000, "lb"),
  55742. preyCapacity: math.unit(10, "people"),
  55743. name: "Back",
  55744. image: {
  55745. source: "./media/characters/brook/back.svg",
  55746. extra: 976/916,
  55747. bottom: 34/1010
  55748. }
  55749. },
  55750. backAlt: {
  55751. height: math.unit(11, "feet"),
  55752. weight: math.unit(3000, "lb"),
  55753. preyCapacity: math.unit(10, "people"),
  55754. name: "Back (Alt)",
  55755. image: {
  55756. source: "./media/characters/brook/back-alt.svg",
  55757. extra: 1283/1213,
  55758. bottom: 35/1318
  55759. }
  55760. },
  55761. bust: {
  55762. height: math.unit(9.0859030837, "feet"),
  55763. weight: math.unit(3000, "lb"),
  55764. preyCapacity: math.unit(10, "people"),
  55765. name: "Bust",
  55766. image: {
  55767. source: "./media/characters/brook/bust.svg",
  55768. extra: 2043/1923,
  55769. bottom: 0/2043
  55770. }
  55771. },
  55772. },
  55773. [
  55774. {
  55775. name: "Small",
  55776. height: math.unit(11, "feet"),
  55777. default: true
  55778. },
  55779. {
  55780. name: "Towering",
  55781. height: math.unit(5, "km")
  55782. },
  55783. {
  55784. name: "Enormous",
  55785. height: math.unit(25, "earths")
  55786. },
  55787. ]
  55788. ))
  55789. characterMakers.push(() => makeCharacter(
  55790. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55791. {
  55792. front: {
  55793. height: math.unit(4, "feet"),
  55794. weight: math.unit(150, "lb"),
  55795. name: "Front",
  55796. image: {
  55797. source: "./media/characters/squishi/front.svg",
  55798. extra: 1428/1271,
  55799. bottom: 30/1458
  55800. },
  55801. extraAttributes: {
  55802. "pawSize": {
  55803. name: "Paw Size",
  55804. power: 1,
  55805. type: "length",
  55806. base: math.unit(14, "ShoeSizeMensUS"),
  55807. defaultUnit: "ShoeSizeMensUS"
  55808. },
  55809. }
  55810. },
  55811. side: {
  55812. height: math.unit(4, "feet"),
  55813. weight: math.unit(150, "lb"),
  55814. name: "Side",
  55815. image: {
  55816. source: "./media/characters/squishi/side.svg",
  55817. extra: 1428/1271,
  55818. bottom: 30/1458
  55819. },
  55820. extraAttributes: {
  55821. "pawSize": {
  55822. name: "Paw Size",
  55823. power: 1,
  55824. type: "length",
  55825. base: math.unit(14, "ShoeSizeMensUS"),
  55826. defaultUnit: "ShoeSizeMensUS"
  55827. },
  55828. }
  55829. },
  55830. back: {
  55831. height: math.unit(4, "feet"),
  55832. weight: math.unit(150, "lb"),
  55833. name: "Back",
  55834. image: {
  55835. source: "./media/characters/squishi/back.svg",
  55836. extra: 1428/1271,
  55837. bottom: 30/1458
  55838. },
  55839. extraAttributes: {
  55840. "pawSize": {
  55841. name: "Paw Size",
  55842. power: 1,
  55843. type: "length",
  55844. base: math.unit(14, "ShoeSizeMensUS"),
  55845. defaultUnit: "ShoeSizeMensUS"
  55846. },
  55847. }
  55848. },
  55849. },
  55850. [
  55851. {
  55852. name: "Normal",
  55853. height: math.unit(4, "feet"),
  55854. default: true
  55855. },
  55856. ]
  55857. ))
  55858. characterMakers.push(() => makeCharacter(
  55859. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55860. {
  55861. front: {
  55862. height: math.unit(7 + 8/12, "feet"),
  55863. weight: math.unit(333, "lb"),
  55864. name: "Front",
  55865. image: {
  55866. source: "./media/characters/vincent-vasroc/front.svg",
  55867. extra: 1962/1860,
  55868. bottom: 41/2003
  55869. }
  55870. },
  55871. back: {
  55872. height: math.unit(7 + 8/12, "feet"),
  55873. weight: math.unit(333, "lb"),
  55874. name: "Back",
  55875. image: {
  55876. source: "./media/characters/vincent-vasroc/back.svg",
  55877. extra: 1952/1815,
  55878. bottom: 33/1985
  55879. }
  55880. },
  55881. paw: {
  55882. height: math.unit(1.24, "feet"),
  55883. name: "Paw",
  55884. image: {
  55885. source: "./media/characters/vincent-vasroc/paw.svg"
  55886. }
  55887. },
  55888. ear: {
  55889. height: math.unit(0.75, "feet"),
  55890. name: "Ear",
  55891. image: {
  55892. source: "./media/characters/vincent-vasroc/ear.svg"
  55893. }
  55894. },
  55895. },
  55896. [
  55897. {
  55898. name: "Nano",
  55899. height: math.unit(92, "micrometers")
  55900. },
  55901. {
  55902. name: "Normal",
  55903. height: math.unit(7 + 8/12, "feet"),
  55904. default: true
  55905. },
  55906. ]
  55907. ))
  55908. characterMakers.push(() => makeCharacter(
  55909. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55910. {
  55911. frontNsfw: {
  55912. height: math.unit(40, "feet"),
  55913. weight: math.unit(58, "tons"),
  55914. name: "Front (NSFW)",
  55915. image: {
  55916. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55917. extra: 1265/965,
  55918. bottom: 155/1420
  55919. }
  55920. },
  55921. frontSfw: {
  55922. height: math.unit(40, "feet"),
  55923. weight: math.unit(58, "tons"),
  55924. name: "Front (SFW)",
  55925. image: {
  55926. source: "./media/characters/ru-kahn/front-sfw.svg",
  55927. extra: 1265/965,
  55928. bottom: 80/1345
  55929. }
  55930. },
  55931. },
  55932. [
  55933. {
  55934. name: "Small",
  55935. height: math.unit(4, "feet")
  55936. },
  55937. {
  55938. name: "Normal",
  55939. height: math.unit(40, "feet"),
  55940. default: true
  55941. },
  55942. {
  55943. name: "Macro",
  55944. height: math.unit(400, "feet")
  55945. },
  55946. ]
  55947. ))
  55948. characterMakers.push(() => makeCharacter(
  55949. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55950. {
  55951. frontNude: {
  55952. height: math.unit(6 + 5/12, "feet"),
  55953. name: "Front (Nude)",
  55954. image: {
  55955. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55956. extra: 1369/1366,
  55957. bottom: 68/1437
  55958. }
  55959. },
  55960. frontDressed: {
  55961. height: math.unit(6 + 5/12, "feet"),
  55962. name: "Front (Dressed)",
  55963. image: {
  55964. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55965. extra: 1369/1366,
  55966. bottom: 68/1437
  55967. }
  55968. },
  55969. },
  55970. [
  55971. {
  55972. name: "Normal",
  55973. height: math.unit(6 + 5/12, "feet"),
  55974. default: true
  55975. },
  55976. {
  55977. name: "Maximum",
  55978. height: math.unit(1930, "feet")
  55979. },
  55980. ]
  55981. ))
  55982. characterMakers.push(() => makeCharacter(
  55983. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55984. {
  55985. front: {
  55986. height: math.unit(5 + 6/12, "feet"),
  55987. name: "Front",
  55988. image: {
  55989. source: "./media/characters/kaja/front.svg",
  55990. extra: 1874/1514,
  55991. bottom: 117/1991
  55992. }
  55993. },
  55994. },
  55995. [
  55996. {
  55997. name: "Normal",
  55998. height: math.unit(5 + 6/12, "feet"),
  55999. default: true
  56000. },
  56001. ]
  56002. ))
  56003. characterMakers.push(() => makeCharacter(
  56004. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56005. {
  56006. front: {
  56007. height: math.unit(5 + 9/12, "feet"),
  56008. weight: math.unit(200, "lb"),
  56009. name: "Front",
  56010. image: {
  56011. source: "./media/characters/mark-smith/front.svg",
  56012. extra: 1004/943,
  56013. bottom: 58/1062
  56014. }
  56015. },
  56016. back: {
  56017. height: math.unit(5 + 9/12, "feet"),
  56018. weight: math.unit(200, "lb"),
  56019. name: "Back",
  56020. image: {
  56021. source: "./media/characters/mark-smith/back.svg",
  56022. extra: 1023/953,
  56023. bottom: 24/1047
  56024. }
  56025. },
  56026. head: {
  56027. height: math.unit(1.82, "feet"),
  56028. name: "Head",
  56029. image: {
  56030. source: "./media/characters/mark-smith/head.svg"
  56031. }
  56032. },
  56033. hand: {
  56034. height: math.unit(1.4, "feet"),
  56035. name: "Hand",
  56036. image: {
  56037. source: "./media/characters/mark-smith/hand.svg"
  56038. }
  56039. },
  56040. paw: {
  56041. height: math.unit(1.69, "feet"),
  56042. name: "Paw",
  56043. image: {
  56044. source: "./media/characters/mark-smith/paw.svg"
  56045. }
  56046. },
  56047. },
  56048. [
  56049. {
  56050. name: "Micro",
  56051. height: math.unit(0.25, "inches")
  56052. },
  56053. {
  56054. name: "Normal",
  56055. height: math.unit(5 + 9/12, "feet"),
  56056. default: true
  56057. },
  56058. {
  56059. name: "Macro",
  56060. height: math.unit(500, "feet")
  56061. },
  56062. ]
  56063. ))
  56064. characterMakers.push(() => makeCharacter(
  56065. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56066. {
  56067. frontNude: {
  56068. height: math.unit(6, "feet"),
  56069. name: "Front (Nude)",
  56070. image: {
  56071. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56072. extra: 1384/1321,
  56073. bottom: 57/1441
  56074. }
  56075. },
  56076. frontDressed: {
  56077. height: math.unit(6, "feet"),
  56078. name: "Front (Dressed)",
  56079. image: {
  56080. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56081. extra: 1384/1321,
  56082. bottom: 57/1441
  56083. }
  56084. },
  56085. },
  56086. [
  56087. {
  56088. name: "Normal",
  56089. height: math.unit(6, "feet"),
  56090. default: true
  56091. },
  56092. {
  56093. name: "Maximum",
  56094. height: math.unit(1776, "feet")
  56095. },
  56096. ]
  56097. ))
  56098. characterMakers.push(() => makeCharacter(
  56099. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56100. {
  56101. front: {
  56102. height: math.unit(2 + 4/12, "feet"),
  56103. weight: math.unit(350, "lb"),
  56104. name: "Front",
  56105. image: {
  56106. source: "./media/characters/devos/front.svg",
  56107. extra: 958/852,
  56108. bottom: 143/1101
  56109. }
  56110. },
  56111. },
  56112. [
  56113. {
  56114. name: "Base",
  56115. height: math.unit(2 + 4/12, "feet"),
  56116. default: true
  56117. },
  56118. ]
  56119. ))
  56120. characterMakers.push(() => makeCharacter(
  56121. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56122. {
  56123. front: {
  56124. height: math.unit(9 + 2/12, "feet"),
  56125. name: "Front",
  56126. image: {
  56127. source: "./media/characters/hiveheart/front.svg",
  56128. extra: 394/364,
  56129. bottom: 65/459
  56130. }
  56131. },
  56132. back: {
  56133. height: math.unit(9 + 2/12, "feet"),
  56134. name: "Back",
  56135. image: {
  56136. source: "./media/characters/hiveheart/back.svg",
  56137. extra: 374/357,
  56138. bottom: 63/437
  56139. }
  56140. },
  56141. },
  56142. [
  56143. {
  56144. name: "Base",
  56145. height: math.unit(9 + 2/12, "feet"),
  56146. default: true
  56147. },
  56148. ]
  56149. ))
  56150. characterMakers.push(() => makeCharacter(
  56151. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56152. {
  56153. front: {
  56154. height: math.unit(2.5, "inches"),
  56155. weight: math.unit(0.6, "oz"),
  56156. name: "Front",
  56157. image: {
  56158. source: "./media/characters/bryn/front.svg",
  56159. extra: 1480/1205,
  56160. bottom: 27/1507
  56161. }
  56162. },
  56163. back: {
  56164. height: math.unit(2.5, "inches"),
  56165. weight: math.unit(0.6, "oz"),
  56166. name: "Back",
  56167. image: {
  56168. source: "./media/characters/bryn/back.svg",
  56169. extra: 1475/1201,
  56170. bottom: 39/1514
  56171. }
  56172. },
  56173. foot: {
  56174. height: math.unit(0.4, "inches"),
  56175. name: "Foot",
  56176. image: {
  56177. source: "./media/characters/bryn/foot.svg"
  56178. }
  56179. },
  56180. },
  56181. [
  56182. {
  56183. name: "Normal",
  56184. height: math.unit(2.5, "inches"),
  56185. default: true
  56186. },
  56187. ]
  56188. ))
  56189. characterMakers.push(() => makeCharacter(
  56190. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56191. {
  56192. side: {
  56193. height: math.unit(7, "feet"),
  56194. weight: math.unit(657, "kg"),
  56195. name: "Side",
  56196. image: {
  56197. source: "./media/characters/delta/side.svg",
  56198. extra: 781/212,
  56199. bottom: 7/788
  56200. },
  56201. extraAttributes: {
  56202. "wingspan": {
  56203. name: "Wingspan",
  56204. power: 1,
  56205. type: "length",
  56206. base: math.unit(48, "feet")
  56207. },
  56208. "length": {
  56209. name: "Length",
  56210. power: 1,
  56211. type: "length",
  56212. base: math.unit(21, "feet")
  56213. },
  56214. "pawSize": {
  56215. name: "Paw Size",
  56216. power: 2,
  56217. type: "area",
  56218. base: math.unit(1.5*1.4, "feet^2")
  56219. },
  56220. }
  56221. },
  56222. },
  56223. [
  56224. {
  56225. name: "Normal",
  56226. height: math.unit(6, "feet"),
  56227. default: true
  56228. },
  56229. ]
  56230. ))
  56231. characterMakers.push(() => makeCharacter(
  56232. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56233. {
  56234. front: {
  56235. height: math.unit(6, "feet"),
  56236. name: "Front",
  56237. image: {
  56238. source: "./media/characters/pyrow/front.svg",
  56239. extra: 513/486,
  56240. bottom: 14/527
  56241. }
  56242. },
  56243. frontWing: {
  56244. height: math.unit(6, "feet"),
  56245. name: "Front (Wing)",
  56246. image: {
  56247. source: "./media/characters/pyrow/front-wing.svg",
  56248. extra: 539/383,
  56249. bottom: 20/559
  56250. }
  56251. },
  56252. back: {
  56253. height: math.unit(6, "feet"),
  56254. name: "Back",
  56255. image: {
  56256. source: "./media/characters/pyrow/back.svg",
  56257. extra: 500/473,
  56258. bottom: 9/509
  56259. }
  56260. },
  56261. },
  56262. [
  56263. {
  56264. name: "Normal",
  56265. height: math.unit(6, "feet"),
  56266. default: true
  56267. },
  56268. ]
  56269. ))
  56270. characterMakers.push(() => makeCharacter(
  56271. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56272. {
  56273. front: {
  56274. height: math.unit(5, "meters"),
  56275. weight: math.unit(3, "tonnes"),
  56276. name: "Front",
  56277. image: {
  56278. source: "./media/characters/velikan/front.svg",
  56279. extra: 867/744,
  56280. bottom: 71/938
  56281. },
  56282. extraAttributes: {
  56283. "shoeSize": {
  56284. name: "Shoe Size",
  56285. power: 1,
  56286. type: "length",
  56287. base: math.unit(135, "ShoeSizeUK"),
  56288. defaultUnit: "ShoeSizeUK"
  56289. },
  56290. }
  56291. },
  56292. },
  56293. [
  56294. {
  56295. name: "Normal",
  56296. height: math.unit(5, "meters"),
  56297. default: true
  56298. },
  56299. {
  56300. name: "Macro",
  56301. height: math.unit(1, "km")
  56302. },
  56303. {
  56304. name: "Mega Macro",
  56305. height: math.unit(100, "km")
  56306. },
  56307. {
  56308. name: "Giga Macro",
  56309. height: math.unit(2, "megameters")
  56310. },
  56311. {
  56312. name: "Planetary",
  56313. height: math.unit(22, "megameters")
  56314. },
  56315. {
  56316. name: "Solar",
  56317. height: math.unit(8, "gigameters")
  56318. },
  56319. {
  56320. name: "Cosmic",
  56321. height: math.unit(10, "zettameters")
  56322. },
  56323. {
  56324. name: "Omni",
  56325. height: math.unit(9e260, "multiverses")
  56326. },
  56327. ]
  56328. ))
  56329. characterMakers.push(() => makeCharacter(
  56330. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56331. {
  56332. front: {
  56333. height: math.unit(4 + 3/12, "feet"),
  56334. weight: math.unit(90, "lb"),
  56335. name: "Front",
  56336. image: {
  56337. source: "./media/characters/sabiki/front.svg",
  56338. extra: 1662/1423,
  56339. bottom: 65/1727
  56340. }
  56341. },
  56342. },
  56343. [
  56344. {
  56345. name: "Normal",
  56346. height: math.unit(4 + 3/12, "feet"),
  56347. default: true
  56348. },
  56349. ]
  56350. ))
  56351. characterMakers.push(() => makeCharacter(
  56352. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56353. {
  56354. frontSfw: {
  56355. height: math.unit(2, "mm"),
  56356. name: "Front (SFW)",
  56357. image: {
  56358. source: "./media/characters/carmel/front-sfw.svg",
  56359. extra: 1131/1006,
  56360. bottom: 66/1197
  56361. }
  56362. },
  56363. frontNsfw: {
  56364. height: math.unit(2, "mm"),
  56365. name: "Front (NSFW)",
  56366. image: {
  56367. source: "./media/characters/carmel/front-nsfw.svg",
  56368. extra: 1131/1006,
  56369. bottom: 66/1197
  56370. }
  56371. },
  56372. foot: {
  56373. height: math.unit(0.3, "mm"),
  56374. name: "Foot",
  56375. image: {
  56376. source: "./media/characters/carmel/foot.svg"
  56377. }
  56378. },
  56379. tongue: {
  56380. height: math.unit(0.71, "mm"),
  56381. name: "Tongue",
  56382. image: {
  56383. source: "./media/characters/carmel/tongue.svg"
  56384. }
  56385. },
  56386. dick: {
  56387. height: math.unit(0.085, "mm"),
  56388. name: "Dick",
  56389. image: {
  56390. source: "./media/characters/carmel/dick.svg"
  56391. }
  56392. },
  56393. },
  56394. [
  56395. {
  56396. name: "Micro",
  56397. height: math.unit(2, "mm"),
  56398. default: true
  56399. },
  56400. {
  56401. name: "Normal",
  56402. height: math.unit(4 + 8/12, "feet")
  56403. },
  56404. {
  56405. name: "Mega Macro",
  56406. height: math.unit(250, "feet")
  56407. },
  56408. {
  56409. name: "BIGGER",
  56410. height: math.unit(1000, "feet")
  56411. },
  56412. {
  56413. name: "BIGGEST",
  56414. height: math.unit(2, "miles")
  56415. },
  56416. ]
  56417. ))
  56418. characterMakers.push(() => makeCharacter(
  56419. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56420. {
  56421. front: {
  56422. height: math.unit(6.5, "feet"),
  56423. weight: math.unit(198, "lb"),
  56424. name: "Front",
  56425. image: {
  56426. source: "./media/characters/tamani/anthro.svg",
  56427. extra: 930/890,
  56428. bottom: 34/964
  56429. },
  56430. form: "anthro",
  56431. default: true
  56432. },
  56433. side: {
  56434. height: math.unit(6, "feet"),
  56435. weight: math.unit(198*2, "lb"),
  56436. name: "Side",
  56437. image: {
  56438. source: "./media/characters/tamani/feral.svg",
  56439. extra: 559/519,
  56440. bottom: 43/602
  56441. },
  56442. form: "feral"
  56443. },
  56444. },
  56445. [
  56446. {
  56447. name: "Normal",
  56448. height: math.unit(6.5, "feet"),
  56449. default: true,
  56450. form: "anthro"
  56451. },
  56452. {
  56453. name: "Normal",
  56454. height: math.unit(6, "feet"),
  56455. default: true,
  56456. form: "feral"
  56457. },
  56458. ],
  56459. {
  56460. "anthro": {
  56461. name: "Anthro",
  56462. default: true
  56463. },
  56464. "feral": {
  56465. name: "Feral",
  56466. },
  56467. }
  56468. ))
  56469. characterMakers.push(() => makeCharacter(
  56470. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56471. {
  56472. front: {
  56473. height: math.unit(4 + 1/12, "feet"),
  56474. weight: math.unit(114, "lb"),
  56475. name: "Front",
  56476. image: {
  56477. source: "./media/characters/dex/front.svg",
  56478. extra: 787/680,
  56479. bottom: 18/805
  56480. }
  56481. },
  56482. side: {
  56483. height: math.unit(4 + 1/12, "feet"),
  56484. weight: math.unit(114, "lb"),
  56485. name: "Side",
  56486. image: {
  56487. source: "./media/characters/dex/side.svg",
  56488. extra: 785/680,
  56489. bottom: 12/797
  56490. }
  56491. },
  56492. back: {
  56493. height: math.unit(4 + 1/12, "feet"),
  56494. weight: math.unit(114, "lb"),
  56495. name: "Back",
  56496. image: {
  56497. source: "./media/characters/dex/back.svg",
  56498. extra: 785/681,
  56499. bottom: 17/802
  56500. }
  56501. },
  56502. loungewear: {
  56503. height: math.unit(4 + 1/12, "feet"),
  56504. weight: math.unit(114, "lb"),
  56505. name: "Loungewear",
  56506. image: {
  56507. source: "./media/characters/dex/loungewear.svg",
  56508. extra: 787/680,
  56509. bottom: 18/805
  56510. }
  56511. },
  56512. workout: {
  56513. height: math.unit(4 + 1/12, "feet"),
  56514. weight: math.unit(114, "lb"),
  56515. name: "Workout",
  56516. image: {
  56517. source: "./media/characters/dex/workout.svg",
  56518. extra: 787/680,
  56519. bottom: 18/805
  56520. }
  56521. },
  56522. schoolUniform: {
  56523. height: math.unit(4 + 1/12, "feet"),
  56524. weight: math.unit(114, "lb"),
  56525. name: "School-uniform",
  56526. image: {
  56527. source: "./media/characters/dex/school-uniform.svg",
  56528. extra: 787/680,
  56529. bottom: 18/805
  56530. }
  56531. },
  56532. maw: {
  56533. height: math.unit(0.55, "feet"),
  56534. name: "Maw",
  56535. image: {
  56536. source: "./media/characters/dex/maw.svg"
  56537. }
  56538. },
  56539. paw: {
  56540. height: math.unit(0.87, "feet"),
  56541. name: "Paw",
  56542. image: {
  56543. source: "./media/characters/dex/paw.svg"
  56544. }
  56545. },
  56546. bust: {
  56547. height: math.unit(1.67, "feet"),
  56548. name: "Bust",
  56549. image: {
  56550. source: "./media/characters/dex/bust.svg"
  56551. }
  56552. },
  56553. },
  56554. [
  56555. {
  56556. name: "Normal",
  56557. height: math.unit(4 + 1/12, "feet"),
  56558. default: true
  56559. },
  56560. ]
  56561. ))
  56562. characterMakers.push(() => makeCharacter(
  56563. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56564. {
  56565. front: {
  56566. height: math.unit(4 + 3/12, "feet"),
  56567. weight: math.unit(60, "lb"),
  56568. name: "Front",
  56569. image: {
  56570. source: "./media/characters/silke/front.svg",
  56571. extra: 1334/1122,
  56572. bottom: 21/1355
  56573. }
  56574. },
  56575. back: {
  56576. height: math.unit(4 + 3/12, "feet"),
  56577. weight: math.unit(60, "lb"),
  56578. name: "Back",
  56579. image: {
  56580. source: "./media/characters/silke/back.svg",
  56581. extra: 1328/1092,
  56582. bottom: 16/1344
  56583. }
  56584. },
  56585. dressed: {
  56586. height: math.unit(4 + 3/12, "feet"),
  56587. weight: math.unit(60, "lb"),
  56588. name: "Dressed",
  56589. image: {
  56590. source: "./media/characters/silke/dressed.svg",
  56591. extra: 1334/1122,
  56592. bottom: 43/1377
  56593. }
  56594. },
  56595. },
  56596. [
  56597. {
  56598. name: "Normal",
  56599. height: math.unit(4 + 3/12, "feet"),
  56600. default: true
  56601. },
  56602. ]
  56603. ))
  56604. characterMakers.push(() => makeCharacter(
  56605. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56606. {
  56607. front: {
  56608. height: math.unit(1.58, "meters"),
  56609. weight: math.unit(47, "kg"),
  56610. name: "Front",
  56611. image: {
  56612. source: "./media/characters/wireshark/front.svg",
  56613. extra: 883/838,
  56614. bottom: 66/949
  56615. }
  56616. },
  56617. },
  56618. [
  56619. {
  56620. name: "Normal",
  56621. height: math.unit(1.58, "meters"),
  56622. default: true
  56623. },
  56624. ]
  56625. ))
  56626. characterMakers.push(() => makeCharacter(
  56627. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56628. {
  56629. front: {
  56630. height: math.unit(6, "meters"),
  56631. weight: math.unit(15000, "kg"),
  56632. name: "Front",
  56633. image: {
  56634. source: "./media/characters/gallagher/front.svg",
  56635. extra: 532/493,
  56636. bottom: 0/532
  56637. }
  56638. },
  56639. },
  56640. [
  56641. {
  56642. name: "Normal",
  56643. height: math.unit(6, "meters"),
  56644. default: true
  56645. },
  56646. ]
  56647. ))
  56648. characterMakers.push(() => makeCharacter(
  56649. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56650. {
  56651. front: {
  56652. height: math.unit(2.4, "meters"),
  56653. weight: math.unit(270, "kg"),
  56654. name: "Front",
  56655. image: {
  56656. source: "./media/characters/alice/front.svg",
  56657. extra: 950/900,
  56658. bottom: 36/986
  56659. }
  56660. },
  56661. side: {
  56662. height: math.unit(2.4, "meters"),
  56663. weight: math.unit(270, "kg"),
  56664. name: "Side",
  56665. image: {
  56666. source: "./media/characters/alice/side.svg",
  56667. extra: 921/876,
  56668. bottom: 19/940
  56669. }
  56670. },
  56671. dressed: {
  56672. height: math.unit(2.4, "meters"),
  56673. weight: math.unit(270, "kg"),
  56674. name: "Dressed",
  56675. image: {
  56676. source: "./media/characters/alice/dressed.svg",
  56677. extra: 905/850,
  56678. bottom: 81/986
  56679. }
  56680. },
  56681. fishnet: {
  56682. height: math.unit(2.4, "meters"),
  56683. weight: math.unit(270, "kg"),
  56684. name: "Fishnet",
  56685. image: {
  56686. source: "./media/characters/alice/fishnet.svg",
  56687. extra: 905/850,
  56688. bottom: 81/986
  56689. }
  56690. },
  56691. },
  56692. [
  56693. {
  56694. name: "Normal",
  56695. height: math.unit(2.4, "meters"),
  56696. default: true
  56697. },
  56698. ]
  56699. ))
  56700. characterMakers.push(() => makeCharacter(
  56701. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56702. {
  56703. front: {
  56704. height: math.unit(175.25, "feet"),
  56705. name: "Front",
  56706. image: {
  56707. source: "./media/characters/fio/front.svg",
  56708. extra: 1883/1591,
  56709. bottom: 34/1917
  56710. }
  56711. },
  56712. },
  56713. [
  56714. {
  56715. name: "Normal",
  56716. height: math.unit(175.25, "cm"),
  56717. default: true
  56718. },
  56719. ]
  56720. ))
  56721. characterMakers.push(() => makeCharacter(
  56722. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56723. {
  56724. side: {
  56725. height: math.unit(6, "meters"),
  56726. weight: math.unit(3400, "kg"),
  56727. preyCapacity: math.unit(1700, "liters"),
  56728. name: "Side",
  56729. image: {
  56730. source: "./media/characters/hass/side.svg",
  56731. extra: 1058/997,
  56732. bottom: 177/1235
  56733. }
  56734. },
  56735. feeding: {
  56736. height: math.unit(6*0.63, "meters"),
  56737. weight: math.unit(3400, "kg"),
  56738. preyCapacity: math.unit(1700, "liters"),
  56739. name: "Feeding",
  56740. image: {
  56741. source: "./media/characters/hass/feeding.svg",
  56742. extra: 689/579,
  56743. bottom: 146/835
  56744. }
  56745. },
  56746. guts: {
  56747. height: math.unit(6, "meters"),
  56748. weight: math.unit(3400, "kg"),
  56749. name: "Guts",
  56750. image: {
  56751. source: "./media/characters/hass/guts.svg",
  56752. extra: 1223/1198,
  56753. bottom: 182/1405
  56754. }
  56755. },
  56756. dickFront: {
  56757. height: math.unit(1.4, "meters"),
  56758. name: "Dick (Front)",
  56759. image: {
  56760. source: "./media/characters/hass/dick-front.svg"
  56761. }
  56762. },
  56763. dickSide: {
  56764. height: math.unit(1.3, "meters"),
  56765. name: "Dick (Side)",
  56766. image: {
  56767. source: "./media/characters/hass/dick-side.svg"
  56768. }
  56769. },
  56770. dickBack: {
  56771. height: math.unit(1.4, "meters"),
  56772. name: "Dick (Back)",
  56773. image: {
  56774. source: "./media/characters/hass/dick-back.svg"
  56775. }
  56776. },
  56777. },
  56778. [
  56779. {
  56780. name: "Normal",
  56781. height: math.unit(6, "meters"),
  56782. default: true
  56783. },
  56784. ]
  56785. ))
  56786. characterMakers.push(() => makeCharacter(
  56787. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56788. {
  56789. front: {
  56790. height: math.unit(4, "feet"),
  56791. weight: math.unit(60, "lb"),
  56792. name: "Front",
  56793. image: {
  56794. source: "./media/characters/hickory-finnegan/front.svg",
  56795. extra: 444/411,
  56796. bottom: 10/454
  56797. }
  56798. },
  56799. side: {
  56800. height: math.unit(4, "feet"),
  56801. weight: math.unit(60, "lb"),
  56802. name: "Side",
  56803. image: {
  56804. source: "./media/characters/hickory-finnegan/side.svg",
  56805. extra: 444/411,
  56806. bottom: 10/454
  56807. }
  56808. },
  56809. back: {
  56810. height: math.unit(4, "feet"),
  56811. weight: math.unit(60, "lb"),
  56812. name: "Back",
  56813. image: {
  56814. source: "./media/characters/hickory-finnegan/back.svg",
  56815. extra: 444/411,
  56816. bottom: 10/454
  56817. }
  56818. },
  56819. },
  56820. [
  56821. {
  56822. name: "Normal",
  56823. height: math.unit(4, "feet"),
  56824. default: true
  56825. },
  56826. ]
  56827. ))
  56828. characterMakers.push(() => makeCharacter(
  56829. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56830. {
  56831. snivy_front: {
  56832. height: math.unit(2, "feet"),
  56833. weight: math.unit(17.9, "lb"),
  56834. name: "Front",
  56835. image: {
  56836. source: "./media/characters/robin-phox/snivy-front.svg",
  56837. extra: 569/504,
  56838. bottom: 33/602
  56839. },
  56840. form: "snivy",
  56841. default: true
  56842. },
  56843. snivy_frontNsfw: {
  56844. height: math.unit(2, "feet"),
  56845. weight: math.unit(17.9, "lb"),
  56846. name: "Front (NSFW)",
  56847. image: {
  56848. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56849. extra: 569/504,
  56850. bottom: 33/602
  56851. },
  56852. form: "snivy",
  56853. },
  56854. snivy_back: {
  56855. height: math.unit(2, "feet"),
  56856. weight: math.unit(17.9, "lb"),
  56857. name: "Back",
  56858. image: {
  56859. source: "./media/characters/robin-phox/snivy-back.svg",
  56860. extra: 577/508,
  56861. bottom: 21/598
  56862. },
  56863. form: "snivy",
  56864. },
  56865. snivy_foot: {
  56866. height: math.unit(0.68, "feet"),
  56867. name: "Foot",
  56868. image: {
  56869. source: "./media/characters/robin-phox/snivy-foot.svg"
  56870. },
  56871. form: "snivy",
  56872. },
  56873. snivy_sole: {
  56874. height: math.unit(0.68, "feet"),
  56875. name: "Sole",
  56876. image: {
  56877. source: "./media/characters/robin-phox/snivy-sole.svg"
  56878. },
  56879. form: "snivy",
  56880. },
  56881. yoshi_front: {
  56882. height: math.unit(6, "feet"),
  56883. weight: math.unit(150, "lb"),
  56884. name: "Front",
  56885. image: {
  56886. source: "./media/characters/robin-phox/yoshi-front.svg",
  56887. extra: 890/792,
  56888. bottom: 29/919
  56889. },
  56890. form: "yoshi",
  56891. default: true
  56892. },
  56893. yoshi_frontNsfw: {
  56894. height: math.unit(6, "feet"),
  56895. weight: math.unit(150, "lb"),
  56896. name: "Front (NSFW)",
  56897. image: {
  56898. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56899. extra: 890/792,
  56900. bottom: 29/919
  56901. },
  56902. form: "yoshi",
  56903. },
  56904. yoshi_back: {
  56905. height: math.unit(6, "feet"),
  56906. weight: math.unit(150, "lb"),
  56907. name: "Back",
  56908. image: {
  56909. source: "./media/characters/robin-phox/yoshi-back.svg",
  56910. extra: 890/792,
  56911. bottom: 29/919
  56912. },
  56913. form: "yoshi",
  56914. },
  56915. yoshi_foot: {
  56916. height: math.unit(1.5, "feet"),
  56917. name: "Foot",
  56918. image: {
  56919. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56920. },
  56921. form: "yoshi",
  56922. },
  56923. delphox_front: {
  56924. height: math.unit(4 + 11/12, "feet"),
  56925. weight: math.unit(86, "lb"),
  56926. name: "Front",
  56927. image: {
  56928. source: "./media/characters/robin-phox/delphox-front.svg",
  56929. extra: 1266/1069,
  56930. bottom: 32/1298
  56931. },
  56932. form: "delphox",
  56933. default: true
  56934. },
  56935. delphox_frontNsfw: {
  56936. height: math.unit(4 + 11/12, "feet"),
  56937. weight: math.unit(86, "lb"),
  56938. name: "Front (NSFW)",
  56939. image: {
  56940. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56941. extra: 1266/1069,
  56942. bottom: 32/1298
  56943. },
  56944. form: "delphox",
  56945. },
  56946. delphox_back: {
  56947. height: math.unit(4 + 11/12, "feet"),
  56948. weight: math.unit(86, "lb"),
  56949. name: "Back",
  56950. image: {
  56951. source: "./media/characters/robin-phox/delphox-back.svg",
  56952. extra: 1269/1083,
  56953. bottom: 15/1284
  56954. },
  56955. form: "delphox",
  56956. },
  56957. mienshao_front: {
  56958. height: math.unit(4 + 7/12, "feet"),
  56959. weight: math.unit(78.3, "lb"),
  56960. name: "Front",
  56961. image: {
  56962. source: "./media/characters/robin-phox/mienshao-front.svg",
  56963. extra: 1052/970,
  56964. bottom: 108/1160
  56965. },
  56966. form: "mienshao",
  56967. default: true
  56968. },
  56969. mienshao_frontNsfw: {
  56970. height: math.unit(4 + 7/12, "feet"),
  56971. weight: math.unit(78.3, "lb"),
  56972. name: "Front (NSFW)",
  56973. image: {
  56974. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56975. extra: 1052/970,
  56976. bottom: 108/1160
  56977. },
  56978. form: "mienshao",
  56979. },
  56980. mienshao_back: {
  56981. height: math.unit(4 + 7/12, "feet"),
  56982. weight: math.unit(78.3, "lb"),
  56983. name: "Back",
  56984. image: {
  56985. source: "./media/characters/robin-phox/mienshao-back.svg",
  56986. extra: 1102/982,
  56987. bottom: 32/1134
  56988. },
  56989. form: "mienshao",
  56990. },
  56991. inteleon_front: {
  56992. height: math.unit(6 + 3/12, "feet"),
  56993. weight: math.unit(99.6, "lb"),
  56994. name: "Front",
  56995. image: {
  56996. source: "./media/characters/robin-phox/inteleon-front.svg",
  56997. extra: 910/799,
  56998. bottom: 76/986
  56999. },
  57000. form: "inteleon",
  57001. default: true
  57002. },
  57003. inteleon_frontNsfw: {
  57004. height: math.unit(6 + 3/12, "feet"),
  57005. weight: math.unit(99.6, "lb"),
  57006. name: "Front (NSFW)",
  57007. image: {
  57008. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57009. extra: 910/799,
  57010. bottom: 76/986
  57011. },
  57012. form: "inteleon",
  57013. },
  57014. inteleon_back: {
  57015. height: math.unit(6 + 3/12, "feet"),
  57016. weight: math.unit(99.6, "lb"),
  57017. name: "Back",
  57018. image: {
  57019. source: "./media/characters/robin-phox/inteleon-back.svg",
  57020. extra: 907/796,
  57021. bottom: 25/932
  57022. },
  57023. form: "inteleon",
  57024. },
  57025. reshiram_front: {
  57026. height: math.unit(10 + 6/12, "feet"),
  57027. weight: math.unit(727.5, "lb"),
  57028. name: "Front",
  57029. image: {
  57030. source: "./media/characters/robin-phox/reshiram-front.svg",
  57031. extra: 1198/940,
  57032. bottom: 123/1321
  57033. },
  57034. form: "reshiram",
  57035. },
  57036. reshiram_frontNsfw: {
  57037. height: math.unit(10 + 6/12, "feet"),
  57038. weight: math.unit(727.5, "lb"),
  57039. name: "Front-nsfw",
  57040. image: {
  57041. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57042. extra: 1198/940,
  57043. bottom: 123/1321
  57044. },
  57045. form: "reshiram",
  57046. },
  57047. reshiram_back: {
  57048. height: math.unit(10 + 6/12, "feet"),
  57049. weight: math.unit(727.5, "lb"),
  57050. name: "Back",
  57051. image: {
  57052. source: "./media/characters/robin-phox/reshiram-back.svg",
  57053. extra: 1024/904,
  57054. bottom: 85/1109
  57055. },
  57056. form: "reshiram",
  57057. },
  57058. samurott_front: {
  57059. height: math.unit(8, "feet"),
  57060. weight: math.unit(208.6, "lb"),
  57061. name: "Front",
  57062. image: {
  57063. source: "./media/characters/robin-phox/samurott-front.svg",
  57064. extra: 1048/984,
  57065. bottom: 100/1148
  57066. },
  57067. form: "samurott",
  57068. },
  57069. samurott_frontNsfw: {
  57070. height: math.unit(8, "feet"),
  57071. weight: math.unit(208.6, "lb"),
  57072. name: "Front-nsfw",
  57073. image: {
  57074. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57075. extra: 1048/984,
  57076. bottom: 100/1148
  57077. },
  57078. form: "samurott",
  57079. },
  57080. samurott_back: {
  57081. height: math.unit(8, "feet"),
  57082. weight: math.unit(208.6, "lb"),
  57083. name: "Back",
  57084. image: {
  57085. source: "./media/characters/robin-phox/samurott-back.svg",
  57086. extra: 1110/1042,
  57087. bottom: 12/1122
  57088. },
  57089. form: "samurott",
  57090. },
  57091. samurott_feral: {
  57092. height: math.unit(4 + 11/12, "feet"),
  57093. weight: math.unit(208.6, "lb"),
  57094. name: "Feral",
  57095. image: {
  57096. source: "./media/characters/robin-phox/samurott-feral.svg",
  57097. extra: 766/681,
  57098. bottom: 108/874
  57099. },
  57100. form: "samurott",
  57101. },
  57102. },
  57103. [
  57104. {
  57105. name: "Normal",
  57106. height: math.unit(2, "feet"),
  57107. default: true,
  57108. form: "snivy"
  57109. },
  57110. {
  57111. name: "Normal",
  57112. height: math.unit(6, "feet"),
  57113. default: true,
  57114. form: "yoshi"
  57115. },
  57116. {
  57117. name: "Normal",
  57118. height: math.unit(4 + 11/12, "feet"),
  57119. default: true,
  57120. form: "delphox"
  57121. },
  57122. {
  57123. name: "Normal",
  57124. height: math.unit(4 + 7/12, "feet"),
  57125. default: true,
  57126. form: "mienshao"
  57127. },
  57128. {
  57129. name: "Normal",
  57130. height: math.unit(6 + 3/12, "feet"),
  57131. default: true,
  57132. form: "inteleon"
  57133. },
  57134. {
  57135. name: "Normal",
  57136. height: math.unit(10 + 6/12, "feet"),
  57137. default: true,
  57138. form: "reshiram"
  57139. },
  57140. {
  57141. name: "Normal",
  57142. height: math.unit(8, "feet"),
  57143. default: true,
  57144. form: "samurott"
  57145. },
  57146. {
  57147. name: "Macro",
  57148. height: math.unit(500, "feet"),
  57149. allForms: true
  57150. },
  57151. {
  57152. name: "Mega Macro",
  57153. height: math.unit(10, "earths"),
  57154. allForms: true
  57155. },
  57156. {
  57157. name: "Giga Macro",
  57158. height: math.unit(1, "galaxy"),
  57159. allForms: true
  57160. },
  57161. {
  57162. name: "Godly Macro",
  57163. height: math.unit(1e10, "multiverses"),
  57164. allForms: true
  57165. },
  57166. ],
  57167. {
  57168. "snivy": {
  57169. name: "Snivy",
  57170. default: true
  57171. },
  57172. "yoshi": {
  57173. name: "Yoshi",
  57174. },
  57175. "delphox": {
  57176. name: "Delphox",
  57177. },
  57178. "mienshao": {
  57179. name: "Mienshao",
  57180. },
  57181. "inteleon": {
  57182. name: "Inteleon",
  57183. },
  57184. "reshiram": {
  57185. name: "Reshiram",
  57186. },
  57187. "samurott": {
  57188. name: "Samurott",
  57189. },
  57190. }
  57191. ))
  57192. characterMakers.push(() => makeCharacter(
  57193. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57194. {
  57195. front: {
  57196. height: math.unit(4, "feet"),
  57197. name: "Front",
  57198. image: {
  57199. source: "./media/characters/ash-leung/front.svg",
  57200. extra: 1916/1792,
  57201. bottom: 50/1966
  57202. }
  57203. },
  57204. },
  57205. [
  57206. {
  57207. name: "Atomic",
  57208. height: math.unit(1, "angstrom")
  57209. },
  57210. {
  57211. name: "Microscopic",
  57212. height: math.unit(4000, "angstroms")
  57213. },
  57214. {
  57215. name: "Speck",
  57216. height: math.unit(1, "mm")
  57217. },
  57218. {
  57219. name: "Small",
  57220. height: math.unit(1, "inch")
  57221. },
  57222. {
  57223. name: "Normal",
  57224. height: math.unit(4, "feet"),
  57225. default: true
  57226. },
  57227. ]
  57228. ))
  57229. characterMakers.push(() => makeCharacter(
  57230. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57231. {
  57232. frontDressed: {
  57233. height: math.unit(2.08, "meters"),
  57234. weight: math.unit(175, "lb"),
  57235. name: "Front (Dressed)",
  57236. image: {
  57237. source: "./media/characters/carie/front-dressed.svg",
  57238. extra: 456/417,
  57239. bottom: 7/463
  57240. }
  57241. },
  57242. backDressed: {
  57243. height: math.unit(2.08, "meters"),
  57244. weight: math.unit(175, "lb"),
  57245. name: "Back (Dressed)",
  57246. image: {
  57247. source: "./media/characters/carie/back-dressed.svg",
  57248. extra: 455/414,
  57249. bottom: 11/466
  57250. }
  57251. },
  57252. front: {
  57253. height: math.unit(2, "meters"),
  57254. weight: math.unit(175, "lb"),
  57255. name: "Front",
  57256. image: {
  57257. source: "./media/characters/carie/front.svg",
  57258. extra: 438/399,
  57259. bottom: 12/450
  57260. }
  57261. },
  57262. back: {
  57263. height: math.unit(2, "meters"),
  57264. weight: math.unit(175, "lb"),
  57265. name: "Back",
  57266. image: {
  57267. source: "./media/characters/carie/back.svg",
  57268. extra: 438/397,
  57269. bottom: 7/445
  57270. }
  57271. },
  57272. },
  57273. [
  57274. {
  57275. name: "Normal",
  57276. height: math.unit(2.08, "meters"),
  57277. default: true
  57278. },
  57279. {
  57280. name: "Macro",
  57281. height: math.unit(2.08e3, "meters")
  57282. },
  57283. {
  57284. name: "Mega Macro",
  57285. height: math.unit(2.08e6, "meters")
  57286. },
  57287. {
  57288. name: "Giga Macro",
  57289. height: math.unit(2.08e9, "meters")
  57290. },
  57291. {
  57292. name: "Tera Macro",
  57293. height: math.unit(2.08e12, "meters")
  57294. },
  57295. {
  57296. name: "Peta Macro",
  57297. height: math.unit(2.08e15, "meters")
  57298. },
  57299. {
  57300. name: "Exa Macro",
  57301. height: math.unit(2.08e18, "meters")
  57302. },
  57303. {
  57304. name: "Zetta Macro",
  57305. height: math.unit(2.08e21, "meters")
  57306. },
  57307. {
  57308. name: "Yotta Macro",
  57309. height: math.unit(2.08e24, "meters")
  57310. },
  57311. ]
  57312. ))
  57313. characterMakers.push(() => makeCharacter(
  57314. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57315. {
  57316. front: {
  57317. height: math.unit(5 + 2/12, "feet"),
  57318. weight: math.unit(120, "lb"),
  57319. name: "Front",
  57320. image: {
  57321. source: "./media/characters/sai-bree/front.svg",
  57322. extra: 1843/1702,
  57323. bottom: 91/1934
  57324. }
  57325. },
  57326. back: {
  57327. height: math.unit(5 + 2/12, "feet"),
  57328. weight: math.unit(120, "lb"),
  57329. name: "Back",
  57330. image: {
  57331. source: "./media/characters/sai-bree/back.svg",
  57332. extra: 1809/1637,
  57333. bottom: 56/1865
  57334. }
  57335. },
  57336. },
  57337. [
  57338. {
  57339. name: "Normal",
  57340. height: math.unit(5 + 2/12, "feet"),
  57341. default: true
  57342. },
  57343. {
  57344. name: "Macro",
  57345. height: math.unit(500, "feet")
  57346. },
  57347. ]
  57348. ))
  57349. characterMakers.push(() => makeCharacter(
  57350. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57351. {
  57352. side: {
  57353. height: math.unit(0.77, "meters"),
  57354. weight: math.unit(120, "lb"),
  57355. name: "Side",
  57356. image: {
  57357. source: "./media/characters/davwyn/side.svg",
  57358. extra: 1557/1225,
  57359. bottom: 131/1688
  57360. }
  57361. },
  57362. front: {
  57363. height: math.unit(0.835410, "meters"),
  57364. weight: math.unit(120, "lb"),
  57365. name: "Front",
  57366. image: {
  57367. source: "./media/characters/davwyn/front.svg",
  57368. extra: 870/843,
  57369. bottom: 175/1045
  57370. }
  57371. },
  57372. },
  57373. [
  57374. {
  57375. name: "Minidrake",
  57376. height: math.unit(0.77/4, "meters")
  57377. },
  57378. {
  57379. name: "Normal",
  57380. height: math.unit(0.77, "meters"),
  57381. default: true
  57382. },
  57383. ]
  57384. ))
  57385. characterMakers.push(() => makeCharacter(
  57386. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57387. {
  57388. front: {
  57389. height: math.unit(10 + 3/12, "feet"),
  57390. weight: math.unit(2857, "lb"),
  57391. name: "Front",
  57392. image: {
  57393. source: "./media/characters/balans/front.svg",
  57394. extra: 427/402,
  57395. bottom: 26/453
  57396. }
  57397. },
  57398. side: {
  57399. height: math.unit(10 + 3/12, "feet"),
  57400. weight: math.unit(2857, "lb"),
  57401. name: "Side",
  57402. image: {
  57403. source: "./media/characters/balans/side.svg",
  57404. extra: 397/371,
  57405. bottom: 17/414
  57406. }
  57407. },
  57408. back: {
  57409. height: math.unit(10 + 3/12, "feet"),
  57410. weight: math.unit(2857, "lb"),
  57411. name: "Back",
  57412. image: {
  57413. source: "./media/characters/balans/back.svg",
  57414. extra: 408/381,
  57415. bottom: 14/422
  57416. }
  57417. },
  57418. hand: {
  57419. height: math.unit(1.15, "feet"),
  57420. name: "Hand",
  57421. image: {
  57422. source: "./media/characters/balans/hand.svg"
  57423. }
  57424. },
  57425. footRest: {
  57426. height: math.unit(3.1, "feet"),
  57427. name: "Foot (Rest)",
  57428. image: {
  57429. source: "./media/characters/balans/foot-rest.svg"
  57430. }
  57431. },
  57432. footActive: {
  57433. height: math.unit(3.5, "feet"),
  57434. name: "Foot (Active)",
  57435. image: {
  57436. source: "./media/characters/balans/foot-active.svg"
  57437. }
  57438. },
  57439. },
  57440. [
  57441. {
  57442. name: "Normal",
  57443. height: math.unit(10 + 3/12, "feet"),
  57444. default: true
  57445. },
  57446. ]
  57447. ))
  57448. characterMakers.push(() => makeCharacter(
  57449. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57450. {
  57451. side: {
  57452. height: math.unit(9, "meters"),
  57453. weight: math.unit(114, "tonnes"),
  57454. name: "Side",
  57455. image: {
  57456. source: "./media/characters/eldkveikir/side.svg",
  57457. extra: 1927/338,
  57458. bottom: 42/1969
  57459. }
  57460. },
  57461. sitting: {
  57462. height: math.unit(13.4, "meters"),
  57463. weight: math.unit(114, "tonnes"),
  57464. name: "Sitting",
  57465. image: {
  57466. source: "./media/characters/eldkveikir/sitting.svg",
  57467. extra: 1108/963,
  57468. bottom: 610/1718
  57469. }
  57470. },
  57471. maw: {
  57472. height: math.unit(8.36, "meters"),
  57473. name: "Maw",
  57474. image: {
  57475. source: "./media/characters/eldkveikir/maw.svg"
  57476. }
  57477. },
  57478. hand: {
  57479. height: math.unit(4.84, "meters"),
  57480. name: "Hand",
  57481. image: {
  57482. source: "./media/characters/eldkveikir/hand.svg"
  57483. }
  57484. },
  57485. foot: {
  57486. height: math.unit(6.9, "meters"),
  57487. name: "Foot",
  57488. image: {
  57489. source: "./media/characters/eldkveikir/foot.svg"
  57490. }
  57491. },
  57492. genitals: {
  57493. height: math.unit(9.6, "meters"),
  57494. name: "Genitals",
  57495. image: {
  57496. source: "./media/characters/eldkveikir/genitals.svg"
  57497. }
  57498. },
  57499. },
  57500. [
  57501. {
  57502. name: "Normal",
  57503. height: math.unit(9, "meters"),
  57504. default: true
  57505. },
  57506. ]
  57507. ))
  57508. characterMakers.push(() => makeCharacter(
  57509. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57510. {
  57511. front: {
  57512. height: math.unit(14, "feet"),
  57513. weight: math.unit(4100, "lb"),
  57514. name: "Front",
  57515. image: {
  57516. source: "./media/characters/arrow/front.svg",
  57517. extra: 330/318,
  57518. bottom: 56/386
  57519. }
  57520. },
  57521. },
  57522. [
  57523. {
  57524. name: "Normal",
  57525. height: math.unit(14, "feet"),
  57526. default: true
  57527. },
  57528. {
  57529. name: "Minimacro",
  57530. height: math.unit(63, "feet")
  57531. },
  57532. {
  57533. name: "Macro",
  57534. height: math.unit(630, "feet")
  57535. },
  57536. {
  57537. name: "Megamacro",
  57538. height: math.unit(12600, "feet")
  57539. },
  57540. {
  57541. name: "Gigamacro",
  57542. height: math.unit(18000, "miles")
  57543. },
  57544. ]
  57545. ))
  57546. characterMakers.push(() => makeCharacter(
  57547. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57548. {
  57549. front: {
  57550. height: math.unit(10, "feet"),
  57551. weight: math.unit(2.4, "tons"),
  57552. name: "Front",
  57553. image: {
  57554. source: "./media/characters/3yk-k0-unit/front.svg",
  57555. extra: 573/561,
  57556. bottom: 33/606
  57557. }
  57558. },
  57559. back: {
  57560. height: math.unit(10, "feet"),
  57561. weight: math.unit(2.4, "tons"),
  57562. name: "Back",
  57563. image: {
  57564. source: "./media/characters/3yk-k0-unit/back.svg",
  57565. extra: 614/573,
  57566. bottom: 32/646
  57567. }
  57568. },
  57569. maw: {
  57570. height: math.unit(2.15, "feet"),
  57571. name: "Maw",
  57572. image: {
  57573. source: "./media/characters/3yk-k0-unit/maw.svg"
  57574. }
  57575. },
  57576. },
  57577. [
  57578. {
  57579. name: "Normal",
  57580. height: math.unit(10, "feet"),
  57581. default: true
  57582. },
  57583. ]
  57584. ))
  57585. characterMakers.push(() => makeCharacter(
  57586. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57587. {
  57588. front: {
  57589. height: math.unit(8 + 8/12, "feet"),
  57590. name: "Front",
  57591. image: {
  57592. source: "./media/characters/nemo/front.svg",
  57593. extra: 1308/1217,
  57594. bottom: 57/1365
  57595. }
  57596. },
  57597. },
  57598. [
  57599. {
  57600. name: "Normal",
  57601. height: math.unit(8 + 8/12, "feet"),
  57602. default: true
  57603. },
  57604. ]
  57605. ))
  57606. characterMakers.push(() => makeCharacter(
  57607. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57608. {
  57609. front: {
  57610. height: math.unit(8, "feet"),
  57611. weight: math.unit(760, "lb"),
  57612. name: "Front",
  57613. image: {
  57614. source: "./media/characters/rexx/front.svg",
  57615. extra: 786/750,
  57616. bottom: 17/803
  57617. },
  57618. extraAttributes: {
  57619. "pawLength": {
  57620. name: "Paw Length",
  57621. power: 1,
  57622. type: "length",
  57623. base: math.unit(27, "inches")
  57624. },
  57625. }
  57626. },
  57627. },
  57628. [
  57629. {
  57630. name: "Micro",
  57631. height: math.unit(2, "inches")
  57632. },
  57633. {
  57634. name: "Normal",
  57635. height: math.unit(8, "feet"),
  57636. default: true
  57637. },
  57638. {
  57639. name: "Macro",
  57640. height: math.unit(150, "feet")
  57641. },
  57642. ]
  57643. ))
  57644. characterMakers.push(() => makeCharacter(
  57645. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57646. {
  57647. front: {
  57648. height: math.unit(18, "feet"),
  57649. weight: math.unit(1975, "lb"),
  57650. name: "Front",
  57651. image: {
  57652. source: "./media/characters/draco/front.svg",
  57653. extra: 1325/1241,
  57654. bottom: 83/1408
  57655. }
  57656. },
  57657. back: {
  57658. height: math.unit(18, "feet"),
  57659. weight: math.unit(1975, "lb"),
  57660. name: "Back",
  57661. image: {
  57662. source: "./media/characters/draco/back.svg",
  57663. extra: 1332/1250,
  57664. bottom: 43/1375
  57665. }
  57666. },
  57667. dick: {
  57668. height: math.unit(7.5, "feet"),
  57669. name: "Dick",
  57670. image: {
  57671. source: "./media/characters/draco/dick.svg"
  57672. }
  57673. },
  57674. },
  57675. [
  57676. {
  57677. name: "Normal",
  57678. height: math.unit(18, "feet"),
  57679. default: true
  57680. },
  57681. ]
  57682. ))
  57683. characterMakers.push(() => makeCharacter(
  57684. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57685. {
  57686. front: {
  57687. height: math.unit(3.2, "meters"),
  57688. name: "Front",
  57689. image: {
  57690. source: "./media/characters/harriett/front.svg",
  57691. extra: 1966/1915,
  57692. bottom: 9/1975
  57693. }
  57694. },
  57695. },
  57696. [
  57697. {
  57698. name: "Normal",
  57699. height: math.unit(3.2, "meters"),
  57700. default: true
  57701. },
  57702. ]
  57703. ))
  57704. characterMakers.push(() => makeCharacter(
  57705. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57706. {
  57707. sitting: {
  57708. height: math.unit(0.8, "meter"),
  57709. name: "Sitting",
  57710. image: {
  57711. source: "./media/characters/serpentus/sitting.svg",
  57712. extra: 293/290,
  57713. bottom: 140/433
  57714. }
  57715. },
  57716. },
  57717. [
  57718. {
  57719. name: "Normal",
  57720. height: math.unit(0.8, "meter"),
  57721. default: true
  57722. },
  57723. ]
  57724. ))
  57725. characterMakers.push(() => makeCharacter(
  57726. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57727. {
  57728. front: {
  57729. height: math.unit(5.7174385736, "feet"),
  57730. name: "Front",
  57731. image: {
  57732. source: "./media/characters/nova-polecat/front.svg",
  57733. extra: 1317/1216,
  57734. bottom: 92/1409
  57735. }
  57736. },
  57737. },
  57738. [
  57739. {
  57740. name: "Normal",
  57741. height: math.unit(5.7174385736, "feet"),
  57742. default: true
  57743. },
  57744. ]
  57745. ))
  57746. characterMakers.push(() => makeCharacter(
  57747. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57748. {
  57749. front: {
  57750. height: math.unit(5 + 4/12, "feet"),
  57751. weight: math.unit(250, "lb"),
  57752. name: "Front",
  57753. image: {
  57754. source: "./media/characters/mook/front.svg",
  57755. extra: 1088/1037,
  57756. bottom: 132/1220
  57757. }
  57758. },
  57759. back: {
  57760. height: math.unit(5 + 1/12, "feet"),
  57761. weight: math.unit(250, "lb"),
  57762. name: "Back",
  57763. image: {
  57764. source: "./media/characters/mook/back.svg",
  57765. extra: 1184/905,
  57766. bottom: 96/1280
  57767. }
  57768. },
  57769. head: {
  57770. height: math.unit(1.85, "feet"),
  57771. name: "Head",
  57772. image: {
  57773. source: "./media/characters/mook/head.svg"
  57774. }
  57775. },
  57776. hand: {
  57777. height: math.unit(1.9, "feet"),
  57778. name: "Hand",
  57779. image: {
  57780. source: "./media/characters/mook/hand.svg"
  57781. }
  57782. },
  57783. palm: {
  57784. height: math.unit(1.84, "feet"),
  57785. name: "Palm",
  57786. image: {
  57787. source: "./media/characters/mook/palm.svg"
  57788. }
  57789. },
  57790. foot: {
  57791. height: math.unit(1.44, "feet"),
  57792. name: "Foot",
  57793. image: {
  57794. source: "./media/characters/mook/foot.svg"
  57795. }
  57796. },
  57797. sole: {
  57798. height: math.unit(1.44, "feet"),
  57799. name: "Sole",
  57800. image: {
  57801. source: "./media/characters/mook/sole.svg"
  57802. }
  57803. },
  57804. },
  57805. [
  57806. {
  57807. name: "Normal",
  57808. height: math.unit(5 + 4/12, "feet"),
  57809. default: true
  57810. },
  57811. {
  57812. name: "Big",
  57813. height: math.unit(12, "feet")
  57814. },
  57815. ]
  57816. ))
  57817. characterMakers.push(() => makeCharacter(
  57818. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57819. {
  57820. front: {
  57821. height: math.unit(6 + 10/12, "feet"),
  57822. weight: math.unit(233, "lb"),
  57823. name: "Front",
  57824. image: {
  57825. source: "./media/characters/kayla/front.svg",
  57826. extra: 1850/1775,
  57827. bottom: 65/1915
  57828. }
  57829. },
  57830. },
  57831. [
  57832. {
  57833. name: "Normal",
  57834. height: math.unit(6 + 10/12, "feet"),
  57835. default: true
  57836. },
  57837. {
  57838. name: "Amazonian",
  57839. height: math.unit(12 + 5/12, "feet")
  57840. },
  57841. {
  57842. name: "Mini Giantess",
  57843. height: math.unit(26, "feet")
  57844. },
  57845. {
  57846. name: "Giantess",
  57847. height: math.unit(200, "feet")
  57848. },
  57849. {
  57850. name: "Mega Giantess",
  57851. height: math.unit(2500, "feet")
  57852. },
  57853. {
  57854. name: "City Sized",
  57855. height: math.unit(50, "miles")
  57856. },
  57857. {
  57858. name: "Country Sized",
  57859. height: math.unit(500, "miles")
  57860. },
  57861. {
  57862. name: "Continent Sized",
  57863. height: math.unit(2500, "miles")
  57864. },
  57865. {
  57866. name: "Planet Sized",
  57867. height: math.unit(10000, "miles")
  57868. },
  57869. {
  57870. name: "Star Sized",
  57871. height: math.unit(5e6, "miles")
  57872. },
  57873. {
  57874. name: "Solar System Sized",
  57875. height: math.unit(125, "AU")
  57876. },
  57877. {
  57878. name: "Galaxy Sized",
  57879. height: math.unit(300e3, "lightyears")
  57880. },
  57881. {
  57882. name: "Universe Sized",
  57883. height: math.unit(200e9, "lightyears")
  57884. },
  57885. {
  57886. name: "Multiverse Sized",
  57887. height: math.unit(20, "exauniverses")
  57888. },
  57889. {
  57890. name: "Mother of Existence",
  57891. height: math.unit(1e6, "yottauniverses")
  57892. },
  57893. ]
  57894. ))
  57895. characterMakers.push(() => makeCharacter(
  57896. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57897. {
  57898. side: {
  57899. height: math.unit(9.5, "meters"),
  57900. name: "Side",
  57901. image: {
  57902. source: "./media/characters/kulve-ragnarok/side.svg",
  57903. extra: 364/326,
  57904. bottom: 50/414
  57905. }
  57906. },
  57907. },
  57908. [
  57909. {
  57910. name: "Normal",
  57911. height: math.unit(9.5, "meters"),
  57912. default: true
  57913. },
  57914. ]
  57915. ))
  57916. characterMakers.push(() => makeCharacter(
  57917. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57918. {
  57919. front: {
  57920. height: math.unit(8 + 9/12, "feet"),
  57921. name: "Front",
  57922. image: {
  57923. source: "./media/characters/atlas-goat/front.svg",
  57924. extra: 1462/1323,
  57925. bottom: 12/1474
  57926. }
  57927. },
  57928. },
  57929. [
  57930. {
  57931. name: "Normal",
  57932. height: math.unit(8 + 9/12, "feet"),
  57933. default: true
  57934. },
  57935. {
  57936. name: "Skyline",
  57937. height: math.unit(845, "feet")
  57938. },
  57939. {
  57940. name: "Orbital",
  57941. height: math.unit(93000, "miles")
  57942. },
  57943. {
  57944. name: "Constellation",
  57945. height: math.unit(27000, "lightyears")
  57946. },
  57947. ]
  57948. ))
  57949. characterMakers.push(() => makeCharacter(
  57950. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57951. {
  57952. side: {
  57953. height: math.unit(1.8, "meters"),
  57954. weight: math.unit(120, "kg"),
  57955. name: "Side",
  57956. image: {
  57957. source: "./media/characters/xie-ling/side.svg",
  57958. extra: 646/574,
  57959. bottom: 44/690
  57960. }
  57961. },
  57962. },
  57963. [
  57964. {
  57965. name: "Tiny",
  57966. height: math.unit(1.80, "meters")
  57967. },
  57968. {
  57969. name: "Small",
  57970. height: math.unit(6, "meters")
  57971. },
  57972. {
  57973. name: "Medium",
  57974. height: math.unit(15, "meters")
  57975. },
  57976. {
  57977. name: "Normal",
  57978. height: math.unit(30, "meters"),
  57979. default: true
  57980. },
  57981. {
  57982. name: "Above Normal",
  57983. height: math.unit(60, "meters")
  57984. },
  57985. {
  57986. name: "Big",
  57987. height: math.unit(220, "meters")
  57988. },
  57989. {
  57990. name: "Giant",
  57991. height: math.unit(2.2, "km")
  57992. },
  57993. {
  57994. name: "Macro",
  57995. height: math.unit(25, "km")
  57996. },
  57997. {
  57998. name: "Mega Macro",
  57999. height: math.unit(350, "km")
  58000. },
  58001. {
  58002. name: "Mega Macro+",
  58003. height: math.unit(5000, "km")
  58004. },
  58005. {
  58006. name: "Goddess",
  58007. height: math.unit(3, "multiverses")
  58008. },
  58009. ]
  58010. ))
  58011. characterMakers.push(() => makeCharacter(
  58012. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58013. {
  58014. frontSfw: {
  58015. height: math.unit(5 + 11/12, "feet"),
  58016. weight: math.unit(210, "lb"),
  58017. name: "Front",
  58018. image: {
  58019. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58020. extra: 1928/1821,
  58021. bottom: 45/1973
  58022. }
  58023. },
  58024. backSfw: {
  58025. height: math.unit(5 + 11/12, "feet"),
  58026. weight: math.unit(210, "lb"),
  58027. name: "Back",
  58028. image: {
  58029. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58030. extra: 1920/1813,
  58031. bottom: 34/1954
  58032. }
  58033. },
  58034. frontNsfw: {
  58035. height: math.unit(5 + 11/12, "feet"),
  58036. weight: math.unit(210, "lb"),
  58037. name: "Front (NSFW)",
  58038. image: {
  58039. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58040. extra: 1928/1821,
  58041. bottom: 45/1973
  58042. }
  58043. },
  58044. backNsfw: {
  58045. height: math.unit(5 + 11/12, "feet"),
  58046. weight: math.unit(210, "lb"),
  58047. name: "Back (NSFW)",
  58048. image: {
  58049. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58050. extra: 1920/1813,
  58051. bottom: 34/1954
  58052. }
  58053. },
  58054. },
  58055. [
  58056. {
  58057. name: "Normal",
  58058. height: math.unit(5 + 11/12, "feet"),
  58059. default: true
  58060. },
  58061. {
  58062. name: "Goddess",
  58063. height: math.unit(20 + 3/12, "feet")
  58064. },
  58065. {
  58066. name: "Breaker of Man",
  58067. height: math.unit(329 + 9/12, "feet")
  58068. },
  58069. {
  58070. name: "Solar Justice",
  58071. height: math.unit(0.6, "solarradii")
  58072. },
  58073. {
  58074. name: "She Who Judges",
  58075. height: math.unit(1, "universe")
  58076. },
  58077. ]
  58078. ))
  58079. characterMakers.push(() => makeCharacter(
  58080. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58081. {
  58082. casual_front: {
  58083. height: math.unit(6 + 1/12, "feet"),
  58084. weight: math.unit(190, "lb"),
  58085. preyCapacity: math.unit(1, "people"),
  58086. name: "Front",
  58087. image: {
  58088. source: "./media/characters/managarmr/casual-front.svg",
  58089. extra: 411/381,
  58090. bottom: 15/426
  58091. },
  58092. extraAttributes: {
  58093. "pawSize": {
  58094. name: "Paw Size",
  58095. power: 1,
  58096. type: "length",
  58097. base: math.unit(0.2, "meters")
  58098. },
  58099. },
  58100. form: "casual",
  58101. },
  58102. casual_back: {
  58103. height: math.unit(6 + 1/12, "feet"),
  58104. weight: math.unit(190, "lb"),
  58105. preyCapacity: math.unit(1, "people"),
  58106. name: "Back",
  58107. image: {
  58108. source: "./media/characters/managarmr/casual-back.svg",
  58109. extra: 413/383,
  58110. bottom: 13/426
  58111. },
  58112. extraAttributes: {
  58113. "pawSize": {
  58114. name: "Paw Size",
  58115. power: 1,
  58116. type: "length",
  58117. base: math.unit(0.2, "meters")
  58118. },
  58119. },
  58120. form: "casual",
  58121. },
  58122. base_front: {
  58123. height: math.unit(7, "feet"),
  58124. weight: math.unit(210, "lb"),
  58125. preyCapacity: math.unit(2, "people"),
  58126. name: "Front",
  58127. image: {
  58128. source: "./media/characters/managarmr/base-front.svg",
  58129. extra: 580/485,
  58130. bottom: 32/612
  58131. },
  58132. extraAttributes: {
  58133. "wingspan": {
  58134. name: "Wingspan",
  58135. power: 1,
  58136. type: "length",
  58137. base: math.unit(4, "meters")
  58138. },
  58139. "pawSize": {
  58140. name: "Paw Size",
  58141. power: 1,
  58142. type: "length",
  58143. base: math.unit(0.2, "meters")
  58144. },
  58145. },
  58146. form: "base",
  58147. },
  58148. "true-divine_front": {
  58149. height: math.unit(40, "feet"),
  58150. weight: math.unit(39000, "lb"),
  58151. preyCapacity: math.unit(375, "people"),
  58152. name: "Front",
  58153. image: {
  58154. source: "./media/characters/managarmr/true-divine-front.svg",
  58155. extra: 725/573,
  58156. bottom: 120/845
  58157. },
  58158. extraAttributes: {
  58159. "wingspan": {
  58160. name: "Wingspan",
  58161. power: 1,
  58162. type: "length",
  58163. base: math.unit(20, "meters")
  58164. },
  58165. "pawSize": {
  58166. name: "Paw Size",
  58167. power: 1,
  58168. type: "length",
  58169. base: math.unit(1.5, "meters")
  58170. },
  58171. },
  58172. form: "true-divine",
  58173. },
  58174. },
  58175. [
  58176. {
  58177. name: "Normal",
  58178. height: math.unit(6 + 1/12, "feet"),
  58179. form: "casual",
  58180. default: true
  58181. },
  58182. {
  58183. name: "Normal",
  58184. height: math.unit(7, "feet"),
  58185. form: "base",
  58186. default: true
  58187. },
  58188. ],
  58189. {
  58190. "casual": {
  58191. name: "Casual",
  58192. default: true
  58193. },
  58194. "base": {
  58195. name: "Base",
  58196. },
  58197. "true-divine": {
  58198. name: "True Divine",
  58199. },
  58200. }
  58201. ))
  58202. characterMakers.push(() => makeCharacter(
  58203. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58204. {
  58205. front: {
  58206. height: math.unit(1.8, "meters"),
  58207. weight: math.unit(110, "kg"),
  58208. name: "Front",
  58209. image: {
  58210. source: "./media/characters/mystra/front.svg",
  58211. extra: 529/442,
  58212. bottom: 31/560
  58213. }
  58214. },
  58215. frontLewd: {
  58216. height: math.unit(1.8, "meters"),
  58217. weight: math.unit(110, "kg"),
  58218. name: "Front (Lewd)",
  58219. image: {
  58220. source: "./media/characters/mystra/front-lewd.svg",
  58221. extra: 529/442,
  58222. bottom: 31/560
  58223. }
  58224. },
  58225. head: {
  58226. height: math.unit(1.63, "feet"),
  58227. name: "Head",
  58228. image: {
  58229. source: "./media/characters/mystra/head.svg"
  58230. }
  58231. },
  58232. paw: {
  58233. height: math.unit(1.9, "feet"),
  58234. name: "Paw",
  58235. image: {
  58236. source: "./media/characters/mystra/paw.svg"
  58237. }
  58238. },
  58239. },
  58240. [
  58241. {
  58242. name: "Incognito",
  58243. height: math.unit(2.3, "meters")
  58244. },
  58245. {
  58246. name: "Small Macro",
  58247. height: math.unit(300, "meters")
  58248. },
  58249. {
  58250. name: "Small Mega",
  58251. height: math.unit(2, "km")
  58252. },
  58253. {
  58254. name: "Mega",
  58255. height: math.unit(30, "km")
  58256. },
  58257. {
  58258. name: "Small Giga",
  58259. height: math.unit(100, "km")
  58260. },
  58261. {
  58262. name: "Giga",
  58263. height: math.unit(1000, "km"),
  58264. default: true
  58265. },
  58266. {
  58267. name: "Continental",
  58268. height: math.unit(5000, "km")
  58269. },
  58270. {
  58271. name: "Terra",
  58272. height: math.unit(20000, "km")
  58273. },
  58274. {
  58275. name: "Solar",
  58276. height: math.unit(2e6, "km")
  58277. },
  58278. {
  58279. name: "Galactic",
  58280. height: math.unit(528502, "lightyears")
  58281. },
  58282. {
  58283. name: "Universal",
  58284. height: math.unit(20, "universes")
  58285. },
  58286. ]
  58287. ))
  58288. characterMakers.push(() => makeCharacter(
  58289. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58290. {
  58291. front: {
  58292. height: math.unit(2, "meters"),
  58293. weight: math.unit(140, "kg"),
  58294. name: "Front",
  58295. image: {
  58296. source: "./media/characters/caleb/front.svg",
  58297. extra: 873/817,
  58298. bottom: 47/920
  58299. }
  58300. },
  58301. back: {
  58302. height: math.unit(2, "meters"),
  58303. weight: math.unit(140, "kg"),
  58304. name: "Back",
  58305. image: {
  58306. source: "./media/characters/caleb/back.svg",
  58307. extra: 877/828,
  58308. bottom: 24/901
  58309. }
  58310. },
  58311. snakeTail: {
  58312. height: math.unit(1.44, "feet"),
  58313. name: "Snake Tail",
  58314. image: {
  58315. source: "./media/characters/caleb/snake-tail.svg"
  58316. }
  58317. },
  58318. dick: {
  58319. height: math.unit(2.6, "feet"),
  58320. name: "Dick",
  58321. image: {
  58322. source: "./media/characters/caleb/dick.svg"
  58323. }
  58324. },
  58325. },
  58326. [
  58327. {
  58328. name: "Incognito",
  58329. height: math.unit(3, "meters")
  58330. },
  58331. {
  58332. name: "Home Size",
  58333. height: math.unit(200, "meters"),
  58334. default: true
  58335. },
  58336. {
  58337. name: "Macro",
  58338. height: math.unit(500, "meters")
  58339. },
  58340. {
  58341. name: "Big Macro",
  58342. height: math.unit(5, "km")
  58343. },
  58344. {
  58345. name: "Giga",
  58346. height: math.unit(250, "km")
  58347. },
  58348. {
  58349. name: "Giga+",
  58350. height: math.unit(5000, "km")
  58351. },
  58352. {
  58353. name: "Small Terra",
  58354. height: math.unit(35e3, "km")
  58355. },
  58356. {
  58357. name: "Terra",
  58358. height: math.unit(2e6, "km")
  58359. },
  58360. {
  58361. name: "Terra+",
  58362. height: math.unit(1.5e6, "km")
  58363. },
  58364. ]
  58365. ))
  58366. characterMakers.push(() => makeCharacter(
  58367. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58368. {
  58369. front: {
  58370. height: math.unit(2, "meters"),
  58371. weight: math.unit(120, "kg"),
  58372. name: "Front",
  58373. image: {
  58374. source: "./media/characters/gilirian/front.svg",
  58375. extra: 805/737,
  58376. bottom: 13/818
  58377. }
  58378. },
  58379. side: {
  58380. height: math.unit(2, "meters"),
  58381. weight: math.unit(120, "kg"),
  58382. name: "Side",
  58383. image: {
  58384. source: "./media/characters/gilirian/side.svg",
  58385. extra: 810/746,
  58386. bottom: 6/816
  58387. }
  58388. },
  58389. back: {
  58390. height: math.unit(2, "meters"),
  58391. weight: math.unit(120, "kg"),
  58392. name: "Back",
  58393. image: {
  58394. source: "./media/characters/gilirian/back.svg",
  58395. extra: 815/745,
  58396. bottom: 15/830
  58397. }
  58398. },
  58399. frontNsfw: {
  58400. height: math.unit(2, "meters"),
  58401. weight: math.unit(120, "kg"),
  58402. name: "Front (NSFW)",
  58403. image: {
  58404. source: "./media/characters/gilirian/front-nsfw.svg",
  58405. extra: 805/737,
  58406. bottom: 13/818
  58407. }
  58408. },
  58409. sideNsfw: {
  58410. height: math.unit(2, "meters"),
  58411. weight: math.unit(120, "kg"),
  58412. name: "Side (NSFW)",
  58413. image: {
  58414. source: "./media/characters/gilirian/side-nsfw.svg",
  58415. extra: 810/746,
  58416. bottom: 6/816
  58417. }
  58418. },
  58419. },
  58420. [
  58421. {
  58422. name: "Incognito",
  58423. height: math.unit(2, "meters"),
  58424. default: true
  58425. },
  58426. {
  58427. name: "Macro",
  58428. height: math.unit(250, "meters")
  58429. },
  58430. {
  58431. name: "Big Macro",
  58432. height: math.unit(1500, "meters")
  58433. },
  58434. {
  58435. name: "Mega",
  58436. height: math.unit(40, "km")
  58437. },
  58438. {
  58439. name: "Giga",
  58440. height: math.unit(300, "km")
  58441. },
  58442. {
  58443. name: "Extra Giga",
  58444. height: math.unit(5000, "km")
  58445. },
  58446. {
  58447. name: "Small Terra",
  58448. height: math.unit(10e3, "km")
  58449. },
  58450. {
  58451. name: "Terra",
  58452. height: math.unit(3e5, "km")
  58453. },
  58454. {
  58455. name: "Galactic",
  58456. height: math.unit(369950, "lightyears")
  58457. },
  58458. ]
  58459. ))
  58460. characterMakers.push(() => makeCharacter(
  58461. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58462. {
  58463. front: {
  58464. height: math.unit(2.5, "meters"),
  58465. weight: math.unit(230, "lb"),
  58466. name: "Front",
  58467. image: {
  58468. source: "./media/characters/tarken/front.svg",
  58469. extra: 764/720,
  58470. bottom: 49/813
  58471. }
  58472. },
  58473. back: {
  58474. height: math.unit(2.5, "meters"),
  58475. weight: math.unit(230, "lb"),
  58476. name: "Back",
  58477. image: {
  58478. source: "./media/characters/tarken/back.svg",
  58479. extra: 756/720,
  58480. bottom: 35/791
  58481. }
  58482. },
  58483. frontNsfw: {
  58484. height: math.unit(2.5, "meters"),
  58485. weight: math.unit(230, "lb"),
  58486. name: "Front (NSFW)",
  58487. image: {
  58488. source: "./media/characters/tarken/front-nsfw.svg",
  58489. extra: 764/720,
  58490. bottom: 49/813
  58491. }
  58492. },
  58493. backNsfw: {
  58494. height: math.unit(2.5, "meters"),
  58495. weight: math.unit(230, "lb"),
  58496. name: "Back (NSFW)",
  58497. image: {
  58498. source: "./media/characters/tarken/back-nsfw.svg",
  58499. extra: 756/720,
  58500. bottom: 35/791
  58501. }
  58502. },
  58503. head: {
  58504. height: math.unit(2.22, "feet"),
  58505. name: "Head",
  58506. image: {
  58507. source: "./media/characters/tarken/head.svg"
  58508. }
  58509. },
  58510. tail: {
  58511. height: math.unit(5.25, "feet"),
  58512. name: "Tail",
  58513. image: {
  58514. source: "./media/characters/tarken/tail.svg"
  58515. }
  58516. },
  58517. dick: {
  58518. height: math.unit(1.95, "feet"),
  58519. name: "Dick",
  58520. image: {
  58521. source: "./media/characters/tarken/dick.svg"
  58522. }
  58523. },
  58524. hand: {
  58525. height: math.unit(1.78, "feet"),
  58526. name: "Hand",
  58527. image: {
  58528. source: "./media/characters/tarken/hand.svg"
  58529. }
  58530. },
  58531. beam: {
  58532. height: math.unit(1.5, "feet"),
  58533. name: "Beam",
  58534. image: {
  58535. source: "./media/characters/tarken/beam.svg"
  58536. }
  58537. },
  58538. },
  58539. [
  58540. {
  58541. name: "Original Size",
  58542. height: math.unit(2.5, "meters")
  58543. },
  58544. {
  58545. name: "Macro",
  58546. height: math.unit(150, "meters"),
  58547. default: true
  58548. },
  58549. {
  58550. name: "Macro+",
  58551. height: math.unit(300, "meters")
  58552. },
  58553. {
  58554. name: "Mega",
  58555. height: math.unit(2, "km")
  58556. },
  58557. {
  58558. name: "Mega+",
  58559. height: math.unit(35, "km")
  58560. },
  58561.  {
  58562. name: "Mega++",
  58563. height: math.unit(60, "km")
  58564. },
  58565. {
  58566. name: "Giga",
  58567. height: math.unit(200, "km")
  58568. },
  58569. {
  58570. name: "Giga+",
  58571. height: math.unit(2500, "km")
  58572. },
  58573. {
  58574. name: "Giga++",
  58575. height: math.unit(6600, "km")
  58576. },
  58577. {
  58578. name: "Terra",
  58579. height: math.unit(20000, "km")
  58580. },
  58581. {
  58582. name: "Terra+",
  58583. height: math.unit(300000, "km")
  58584. },
  58585. ]
  58586. ))
  58587. characterMakers.push(() => makeCharacter(
  58588. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58589. {
  58590. magpie_dressed: {
  58591. height: math.unit(1.7, "meters"),
  58592. weight: math.unit(70, "kg"),
  58593. name: "Dressed",
  58594. image: {
  58595. source: "./media/characters/otreus/magpie-dressed.svg",
  58596. extra: 691/672,
  58597. bottom: 116/807
  58598. },
  58599. form: "magpie",
  58600. default: true
  58601. },
  58602. magpie_nude: {
  58603. height: math.unit(1.7, "meters"),
  58604. weight: math.unit(70, "kg"),
  58605. name: "Nude",
  58606. image: {
  58607. source: "./media/characters/otreus/magpie-nude.svg",
  58608. extra: 691/672,
  58609. bottom: 116/807
  58610. },
  58611. form: "magpie",
  58612. },
  58613. magpie_dressedLewd: {
  58614. height: math.unit(1.7, "meters"),
  58615. weight: math.unit(70, "kg"),
  58616. name: "Dressed (Lewd)",
  58617. image: {
  58618. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58619. extra: 691/672,
  58620. bottom: 116/807
  58621. },
  58622. form: "magpie",
  58623. },
  58624. magpie_nudeLewd: {
  58625. height: math.unit(1.7, "meters"),
  58626. weight: math.unit(70, "kg"),
  58627. name: "Nude (Lewd)",
  58628. image: {
  58629. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58630. extra: 691/672,
  58631. bottom: 116/807
  58632. },
  58633. form: "magpie",
  58634. },
  58635. magpie_leftFoot: {
  58636. height: math.unit(1.58, "feet"),
  58637. name: "Left Foot",
  58638. image: {
  58639. source: "./media/characters/otreus/magpie-left-foot.svg"
  58640. },
  58641. form: "magpie",
  58642. },
  58643. magpie_rightFoot: {
  58644. height: math.unit(1.58, "feet"),
  58645. name: "Right Foot",
  58646. image: {
  58647. source: "./media/characters/otreus/magpie-right-foot.svg"
  58648. },
  58649. form: "magpie",
  58650. },
  58651. magpie_wingspan: {
  58652. height: math.unit(2, "meters"),
  58653. weight: math.unit(70, "kg"),
  58654. name: "Wingspan",
  58655. image: {
  58656. source: "./media/characters/otreus/magpie-wingspan.svg"
  58657. },
  58658. extraAttributes: {
  58659. "wingspan": {
  58660. name: "Wingspan",
  58661. power: 1,
  58662. type: "length",
  58663. base: math.unit(3.35, "meters")
  58664. },
  58665. },
  58666. form: "magpie",
  58667. },
  58668. hippogriff_dressed: {
  58669. height: math.unit(1.7, "meters"),
  58670. weight: math.unit(70, "kg"),
  58671. name: "Dressed",
  58672. image: {
  58673. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58674. extra: 710/689,
  58675. bottom: 67/777
  58676. },
  58677. form: "hippogriff",
  58678. default: true
  58679. },
  58680. hippogriff_nude: {
  58681. height: math.unit(1.7, "meters"),
  58682. weight: math.unit(70, "kg"),
  58683. name: "Nude",
  58684. image: {
  58685. source: "./media/characters/otreus/hippogriff-nude.svg",
  58686. extra: 710/689,
  58687. bottom: 67/777
  58688. },
  58689. form: "hippogriff",
  58690. },
  58691. hippogriff_dressedLewd: {
  58692. height: math.unit(1.7, "meters"),
  58693. weight: math.unit(70, "kg"),
  58694. name: "Dressed (Lewd)",
  58695. image: {
  58696. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58697. extra: 710/689,
  58698. bottom: 67/777
  58699. },
  58700. form: "hippogriff",
  58701. },
  58702. hippogriff_nudeLewd: {
  58703. height: math.unit(1.7, "meters"),
  58704. weight: math.unit(70, "kg"),
  58705. name: "Nude (Lewd)",
  58706. image: {
  58707. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58708. extra: 710/689,
  58709. bottom: 67/777
  58710. },
  58711. form: "hippogriff",
  58712. },
  58713. },
  58714. [
  58715. {
  58716. name: "Original Size",
  58717. height: math.unit(1.7, "meters"),
  58718. allForms: true
  58719. },
  58720. {
  58721. name: "Incognito Size",
  58722. height: math.unit(2, "meters"),
  58723. allForms: true
  58724. },
  58725. {
  58726. name: "Mega",
  58727. height: math.unit(2, "km"),
  58728. allForms: true
  58729. },
  58730. {
  58731. name: "Mega+",
  58732. height: math.unit(40, "km"),
  58733. allForms: true
  58734. },
  58735. {
  58736. name: "Giga",
  58737. height: math.unit(250, "km"),
  58738. allForms: true
  58739. },
  58740. {
  58741. name: "Giga+",
  58742. height: math.unit(3000, "km"),
  58743. allForms: true
  58744. },
  58745. {
  58746. name: "Terra",
  58747. height: math.unit(20000, "km"),
  58748. allForms: true
  58749. },
  58750. {
  58751. name: "Solar (Home Size)",
  58752. height: math.unit(3e6, "km"),
  58753. allForms: true,
  58754. default: true
  58755. },
  58756. ],
  58757. {
  58758. "magpie": {
  58759. name: "Magpie",
  58760. default: true
  58761. },
  58762. "hippogriff": {
  58763. name: "Hippogriff",
  58764. },
  58765. }
  58766. ))
  58767. characterMakers.push(() => makeCharacter(
  58768. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58769. {
  58770. frontDressed: {
  58771. height: math.unit(1.8, "meters"),
  58772. weight: math.unit(90, "kg"),
  58773. name: "Front (Dressed)",
  58774. image: {
  58775. source: "./media/characters/thalia/front-dressed.svg",
  58776. extra: 478/402,
  58777. bottom: 55/533
  58778. }
  58779. },
  58780. backDressed: {
  58781. height: math.unit(1.8, "meters"),
  58782. weight: math.unit(90, "kg"),
  58783. name: "Back (Dressed)",
  58784. image: {
  58785. source: "./media/characters/thalia/back-dressed.svg",
  58786. extra: 500/424,
  58787. bottom: 15/515
  58788. }
  58789. },
  58790. frontNude: {
  58791. height: math.unit(1.8, "meters"),
  58792. weight: math.unit(90, "kg"),
  58793. name: "Front (Nude)",
  58794. image: {
  58795. source: "./media/characters/thalia/front-nude.svg",
  58796. extra: 478/402,
  58797. bottom: 55/533
  58798. }
  58799. },
  58800. backNude: {
  58801. height: math.unit(1.8, "meters"),
  58802. weight: math.unit(90, "kg"),
  58803. name: "Back (Nude)",
  58804. image: {
  58805. source: "./media/characters/thalia/back-nude.svg",
  58806. extra: 500/424,
  58807. bottom: 15/515
  58808. }
  58809. },
  58810. },
  58811. [
  58812. {
  58813. name: "Incognito",
  58814. height: math.unit(3, "meters")
  58815. },
  58816. {
  58817. name: "Macro",
  58818. height: math.unit(500, "meters")
  58819. },
  58820. {
  58821. name: "Mega",
  58822. height: math.unit(5, "km")
  58823. },
  58824. {
  58825. name: "Mega+",
  58826. height: math.unit(30, "km")
  58827. },
  58828. {
  58829. name: "Giga",
  58830. height: math.unit(350, "km")
  58831. },
  58832. {
  58833. name: "Giga+",
  58834. height: math.unit(4000, "km")
  58835. },
  58836. {
  58837. name: "Terra",
  58838. height: math.unit(35000, "km")
  58839. },
  58840. {
  58841. name: "Original Size",
  58842. height: math.unit(130000, "km")
  58843. },
  58844. {
  58845. name: "Solar (Home Size)",
  58846. height: math.unit(4e6, "km"),
  58847. default: true
  58848. },
  58849. ]
  58850. ))
  58851. characterMakers.push(() => makeCharacter(
  58852. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58853. {
  58854. front: {
  58855. height: math.unit(1.8, "meters"),
  58856. weight: math.unit(95, "kg"),
  58857. name: "Front",
  58858. image: {
  58859. source: "./media/characters/shango/front.svg",
  58860. extra: 1925/1774,
  58861. bottom: 67/1992
  58862. }
  58863. },
  58864. back: {
  58865. height: math.unit(1.8, "meters"),
  58866. weight: math.unit(95, "kg"),
  58867. name: "Back",
  58868. image: {
  58869. source: "./media/characters/shango/back.svg",
  58870. extra: 1915/1766,
  58871. bottom: 52/1967
  58872. }
  58873. },
  58874. frontLewd: {
  58875. height: math.unit(1.8, "meters"),
  58876. weight: math.unit(95, "kg"),
  58877. name: "Front (Lewd)",
  58878. image: {
  58879. source: "./media/characters/shango/front-lewd.svg",
  58880. extra: 1925/1774,
  58881. bottom: 67/1992
  58882. }
  58883. },
  58884. backLewd: {
  58885. height: math.unit(1.8, "meters"),
  58886. weight: math.unit(95, "kg"),
  58887. name: "Back (Lewd)",
  58888. image: {
  58889. source: "./media/characters/shango/back-lewd.svg",
  58890. extra: 1915/1766,
  58891. bottom: 52/1967
  58892. }
  58893. },
  58894. maw: {
  58895. height: math.unit(1.64, "feet"),
  58896. name: "Maw",
  58897. image: {
  58898. source: "./media/characters/shango/maw.svg"
  58899. }
  58900. },
  58901. dick: {
  58902. height: math.unit(2.14, "feet"),
  58903. name: "Dick",
  58904. image: {
  58905. source: "./media/characters/shango/dick.svg"
  58906. }
  58907. },
  58908. },
  58909. [
  58910. {
  58911. name: "Incognito",
  58912. height: math.unit(1.8, "meters")
  58913. },
  58914. {
  58915. name: "Home Size",
  58916. height: math.unit(60, "meters"),
  58917. default: true
  58918. },
  58919. {
  58920. name: "Macro",
  58921. height: math.unit(450, "meters")
  58922. },
  58923. {
  58924. name: "Mega",
  58925. height: math.unit(6, "km")
  58926. },
  58927. {
  58928. name: "Mega+",
  58929. height: math.unit(35, "km")
  58930. },
  58931. {
  58932. name: "Giga",
  58933. height: math.unit(500, "km")
  58934. },
  58935. {
  58936. name: "Giga+",
  58937. height: math.unit(5000, "km")
  58938. },
  58939. {
  58940. name: "Terra",
  58941. height: math.unit(60000, "km")
  58942. },
  58943. {
  58944. name: "Terra+",
  58945. height: math.unit(400000, "km")
  58946. },
  58947. ]
  58948. ))
  58949. characterMakers.push(() => makeCharacter(
  58950. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58951. {
  58952. front: {
  58953. height: math.unit(2, "meters"),
  58954. weight: math.unit(95, "kg"),
  58955. name: "Front",
  58956. image: {
  58957. source: "./media/characters/osiris-gryphon/front.svg",
  58958. extra: 1508/1313,
  58959. bottom: 87/1595
  58960. }
  58961. },
  58962. back: {
  58963. height: math.unit(2, "meters"),
  58964. weight: math.unit(95, "kg"),
  58965. name: "Back",
  58966. image: {
  58967. source: "./media/characters/osiris-gryphon/back.svg",
  58968. extra: 1436/1309,
  58969. bottom: 64/1500
  58970. }
  58971. },
  58972. frontLewd: {
  58973. height: math.unit(2, "meters"),
  58974. weight: math.unit(95, "kg"),
  58975. name: "Front-lewd",
  58976. image: {
  58977. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58978. extra: 1508/1313,
  58979. bottom: 87/1595
  58980. }
  58981. },
  58982. wing: {
  58983. height: math.unit(6.3333, "feet"),
  58984. name: "Wing",
  58985. image: {
  58986. source: "./media/characters/osiris-gryphon/wing.svg"
  58987. }
  58988. },
  58989. },
  58990. [
  58991. {
  58992. name: "Incognito",
  58993. height: math.unit(2, "meters")
  58994. },
  58995. {
  58996. name: "Home Size",
  58997. height: math.unit(30, "meters"),
  58998. default: true
  58999. },
  59000. {
  59001. name: "Macro",
  59002. height: math.unit(100, "meters")
  59003. },
  59004. {
  59005. name: "Macro+",
  59006. height: math.unit(350, "meters")
  59007. },
  59008. {
  59009. name: "Mega",
  59010. height: math.unit(40, "km")
  59011. },
  59012. {
  59013. name: "Giga",
  59014. height: math.unit(300, "km")
  59015. },
  59016. {
  59017. name: "Giga+",
  59018. height: math.unit(2000, "km")
  59019. },
  59020. {
  59021. name: "Terra",
  59022. height: math.unit(30000, "km")
  59023. },
  59024. ]
  59025. ))
  59026. characterMakers.push(() => makeCharacter(
  59027. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59028. {
  59029. front: {
  59030. height: math.unit(2.5, "meters"),
  59031. weight: math.unit(200, "kg"),
  59032. name: "Front",
  59033. image: {
  59034. source: "./media/characters/atlas-dragon/front.svg",
  59035. extra: 745/462,
  59036. bottom: 36/781
  59037. }
  59038. },
  59039. back: {
  59040. height: math.unit(2.5, "meters"),
  59041. weight: math.unit(200, "kg"),
  59042. name: "Back",
  59043. image: {
  59044. source: "./media/characters/atlas-dragon/back.svg",
  59045. extra: 848/822,
  59046. bottom: 57/905
  59047. }
  59048. },
  59049. frontLewd: {
  59050. height: math.unit(2.5, "meters"),
  59051. weight: math.unit(200, "kg"),
  59052. name: "Front (Lewd)",
  59053. image: {
  59054. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59055. extra: 745/462,
  59056. bottom: 36/781
  59057. }
  59058. },
  59059. backLewd: {
  59060. height: math.unit(2.5, "meters"),
  59061. weight: math.unit(200, "kg"),
  59062. name: "Back (Lewd)",
  59063. image: {
  59064. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59065. extra: 848/822,
  59066. bottom: 57/905
  59067. }
  59068. },
  59069. },
  59070. [
  59071. {
  59072. name: "Incognito",
  59073. height: math.unit(2.5, "meters")
  59074. },
  59075. {
  59076. name: "Small Macro",
  59077. height: math.unit(50, "meters")
  59078. },
  59079. {
  59080. name: "Macro",
  59081. height: math.unit(350, "meters")
  59082. },
  59083. {
  59084. name: "Mega",
  59085. height: math.unit(5.5, "kilometers")
  59086. },
  59087. {
  59088. name: "Mega+",
  59089. height: math.unit(50, "km")
  59090. },
  59091. {
  59092. name: "Giga",
  59093. height: math.unit(350, "km")
  59094. },
  59095. {
  59096. name: "Giga+",
  59097. height: math.unit(2000, "km")
  59098. },
  59099. {
  59100. name: "Giga++",
  59101. height: math.unit(6500, "km")
  59102. },
  59103. {
  59104. name: "Terra",
  59105. height: math.unit(30000, "km")
  59106. },
  59107. {
  59108. name: "Terra+",
  59109. height: math.unit(250000, "km")
  59110. },
  59111. {
  59112. name: "True Size",
  59113. height: math.unit(100, "multiverses"),
  59114. default: true
  59115. },
  59116. ]
  59117. ))
  59118. characterMakers.push(() => makeCharacter(
  59119. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59120. {
  59121. front: {
  59122. height: math.unit(1.8, "m"),
  59123. weight: math.unit(120, "kg"),
  59124. name: "Front",
  59125. image: {
  59126. source: "./media/characters/chey/front.svg",
  59127. extra: 1359/1270,
  59128. bottom: 18/1377
  59129. }
  59130. },
  59131. arm: {
  59132. height: math.unit(2.05, "feet"),
  59133. name: "Arm",
  59134. image: {
  59135. source: "./media/characters/chey/arm.svg"
  59136. }
  59137. },
  59138. head: {
  59139. height: math.unit(1.89, "feet"),
  59140. name: "Head",
  59141. image: {
  59142. source: "./media/characters/chey/head.svg"
  59143. }
  59144. },
  59145. },
  59146. [
  59147. {
  59148. name: "Original Size",
  59149. height: math.unit(5, "cm")
  59150. },
  59151. {
  59152. name: "Incognito Size",
  59153. height: math.unit(2.4, "m")
  59154. },
  59155. {
  59156. name: "Home Size",
  59157. height: math.unit(200, "meters"),
  59158. default: true
  59159. },
  59160. {
  59161. name: "Mega",
  59162. height: math.unit(2, "km")
  59163. },
  59164. {
  59165. name: "Giga (Preferred Size)",
  59166. height: math.unit(2000, "km")
  59167. },
  59168. {
  59169. name: "Giga+",
  59170. height: math.unit(6000, "km")
  59171. },
  59172. {
  59173. name: "Terra",
  59174. height: math.unit(17000, "km")
  59175. },
  59176. {
  59177. name: "Terra+",
  59178. height: math.unit(75000, "km")
  59179. },
  59180. {
  59181. name: "Terra++",
  59182. height: math.unit(225000, "km")
  59183. },
  59184. ]
  59185. ))
  59186. characterMakers.push(() => makeCharacter(
  59187. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59188. {
  59189. side: {
  59190. height: math.unit(7.8, "meters"),
  59191. name: "Side",
  59192. image: {
  59193. source: "./media/characters/ragnarok/side.svg",
  59194. extra: 725/621,
  59195. bottom: 72/797
  59196. }
  59197. },
  59198. },
  59199. [
  59200. {
  59201. name: "Normal",
  59202. height: math.unit(7.8, "meters"),
  59203. default: true
  59204. },
  59205. ]
  59206. ))
  59207. characterMakers.push(() => makeCharacter(
  59208. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59209. {
  59210. hyena_front: {
  59211. height: math.unit(2.1, "meters"),
  59212. weight: math.unit(110, "kg"),
  59213. name: "Front",
  59214. image: {
  59215. source: "./media/characters/nima/hyena-front.svg",
  59216. extra: 1904/1796,
  59217. bottom: 67/1971
  59218. },
  59219. form: "hyena",
  59220. },
  59221. hyena_back: {
  59222. height: math.unit(2.1, "meters"),
  59223. weight: math.unit(110, "kg"),
  59224. name: "Back",
  59225. image: {
  59226. source: "./media/characters/nima/hyena-back.svg",
  59227. extra: 1964/1884,
  59228. bottom: 35/1999
  59229. },
  59230. form: "hyena",
  59231. },
  59232. shark_front: {
  59233. height: math.unit(1.95, "meters"),
  59234. weight: math.unit(110, "kg"),
  59235. name: "Front",
  59236. image: {
  59237. source: "./media/characters/nima/shark-front.svg",
  59238. extra: 2238/2013,
  59239. bottom: 0/223
  59240. },
  59241. form: "shark",
  59242. },
  59243. paw: {
  59244. height: math.unit(1, "feet"),
  59245. name: "Paw",
  59246. image: {
  59247. source: "./media/characters/nima/paw.svg"
  59248. }
  59249. },
  59250. circlet: {
  59251. height: math.unit(0.3, "feet"),
  59252. name: "Circlet",
  59253. image: {
  59254. source: "./media/characters/nima/circlet.svg"
  59255. }
  59256. },
  59257. necklace: {
  59258. height: math.unit(1.2, "feet"),
  59259. name: "Necklace",
  59260. image: {
  59261. source: "./media/characters/nima/necklace.svg"
  59262. }
  59263. },
  59264. bracelet: {
  59265. height: math.unit(0.51, "feet"),
  59266. name: "Bracelet",
  59267. image: {
  59268. source: "./media/characters/nima/bracelet.svg"
  59269. }
  59270. },
  59271. armband: {
  59272. height: math.unit(1.3, "feet"),
  59273. name: "Armband",
  59274. image: {
  59275. source: "./media/characters/nima/armband.svg"
  59276. }
  59277. },
  59278. },
  59279. [
  59280. {
  59281. name: "Incognito",
  59282. height: math.unit(2.1, "meters"),
  59283. allForms: true
  59284. },
  59285. {
  59286. name: "Small Macro",
  59287. height: math.unit(50, "meters"),
  59288. allForms: true
  59289. },
  59290. {
  59291. name: "Macro",
  59292. height: math.unit(200, "meters"),
  59293. allForms: true
  59294. },
  59295. {
  59296. name: "Mega",
  59297. height: math.unit(2.5, "km"),
  59298. allForms: true
  59299. },
  59300. {
  59301. name: "Mega+",
  59302. height: math.unit(30, "km"),
  59303. allForms: true
  59304. },
  59305. {
  59306. name: "Giga (Home Size)",
  59307. height: math.unit(400, "km"),
  59308. allForms: true,
  59309. default: true
  59310. },
  59311. {
  59312. name: "Giga+",
  59313. height: math.unit(2500, "km"),
  59314. allForms: true
  59315. },
  59316. {
  59317. name: "Giga++",
  59318. height: math.unit(8000, "km"),
  59319. allForms: true
  59320. },
  59321. {
  59322. name: "Terra",
  59323. height: math.unit(20000, "km"),
  59324. allForms: true
  59325. },
  59326. {
  59327. name: "Terra+",
  59328. height: math.unit(70000, "km"),
  59329. allForms: true
  59330. },
  59331. {
  59332. name: "Terra++",
  59333. height: math.unit(600000, "km"),
  59334. allForms: true
  59335. },
  59336. {
  59337. name: "Galactic",
  59338. height: math.unit(40, "galaxies"),
  59339. allForms: true
  59340. },
  59341. {
  59342. name: "Universal",
  59343. height: math.unit(40, "universes"),
  59344. allForms: true
  59345. },
  59346. ],
  59347. {
  59348. "hyena": {
  59349. name: "Hyena",
  59350. default: true
  59351. },
  59352. "shark": {
  59353. name: "Shark",
  59354. },
  59355. }
  59356. ))
  59357. characterMakers.push(() => makeCharacter(
  59358. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59359. {
  59360. anthro_front: {
  59361. height: math.unit(1.5, "meters"),
  59362. name: "Front",
  59363. image: {
  59364. source: "./media/characters/adelaide/anthro-front.svg",
  59365. extra: 860/783,
  59366. bottom: 60/920
  59367. },
  59368. form: "anthro",
  59369. default: true
  59370. },
  59371. hand: {
  59372. height: math.unit(0.65, "feet"),
  59373. name: "Hand",
  59374. image: {
  59375. source: "./media/characters/adelaide/hand.svg"
  59376. },
  59377. form: "anthro"
  59378. },
  59379. foot: {
  59380. height: math.unit(1.38 * 259 / 314, "feet"),
  59381. name: "Foot",
  59382. image: {
  59383. source: "./media/characters/adelaide/foot.svg",
  59384. extra: 259/259,
  59385. bottom: 55/314
  59386. },
  59387. form: "anthro"
  59388. },
  59389. feather: {
  59390. height: math.unit(0.85, "feet"),
  59391. name: "Feather",
  59392. image: {
  59393. source: "./media/characters/adelaide/feather.svg"
  59394. },
  59395. form: "anthro"
  59396. },
  59397. feral_side: {
  59398. height: math.unit(1, "meters"),
  59399. name: "Side",
  59400. image: {
  59401. source: "./media/characters/adelaide/feral-side.svg",
  59402. extra: 550/467,
  59403. bottom: 37/587
  59404. },
  59405. form: "feral",
  59406. default: true
  59407. },
  59408. feral_hand: {
  59409. height: math.unit(0.58, "feet"),
  59410. name: "Hand",
  59411. image: {
  59412. source: "./media/characters/adelaide/hand.svg"
  59413. },
  59414. form: "feral"
  59415. },
  59416. feral_foot: {
  59417. height: math.unit(1.2 * 259 / 314, "feet"),
  59418. name: "Foot",
  59419. image: {
  59420. source: "./media/characters/adelaide/foot.svg",
  59421. extra: 259/259,
  59422. bottom: 55/314
  59423. },
  59424. form: "feral"
  59425. },
  59426. feral_feather: {
  59427. height: math.unit(0.63, "feet"),
  59428. name: "Feather",
  59429. image: {
  59430. source: "./media/characters/adelaide/feather.svg"
  59431. },
  59432. form: "feral"
  59433. },
  59434. },
  59435. [
  59436. {
  59437. name: "Normal",
  59438. height: math.unit(1.5, "meters"),
  59439. form: "anthro",
  59440. default: true
  59441. },
  59442. {
  59443. name: "Normal",
  59444. height: math.unit(1, "meters"),
  59445. form: "feral",
  59446. default: true
  59447. },
  59448. ],
  59449. {
  59450. "anthro": {
  59451. name: "Anthro",
  59452. default: true
  59453. },
  59454. "feral": {
  59455. name: "Feral",
  59456. },
  59457. }
  59458. ))
  59459. characterMakers.push(() => makeCharacter(
  59460. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59461. {
  59462. front: {
  59463. height: math.unit(2.5, "meters"),
  59464. name: "Front",
  59465. image: {
  59466. source: "./media/characters/goa/front.svg",
  59467. extra: 1109/1013,
  59468. bottom: 150/1259
  59469. }
  59470. },
  59471. },
  59472. [
  59473. {
  59474. name: "Normal",
  59475. height: math.unit(2.5, "meters"),
  59476. default: true
  59477. },
  59478. ]
  59479. ))
  59480. characterMakers.push(() => makeCharacter(
  59481. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59482. {
  59483. front: {
  59484. height: math.unit(2, "meters"),
  59485. weight: math.unit(100, "kg"),
  59486. name: "Front",
  59487. image: {
  59488. source: "./media/characters/kiki-weavile/front.svg",
  59489. extra: 357/332,
  59490. bottom: 60/417
  59491. }
  59492. },
  59493. },
  59494. [
  59495. {
  59496. name: "Normal",
  59497. height: math.unit(2, "meters"),
  59498. default: true
  59499. },
  59500. ]
  59501. ))
  59502. characterMakers.push(() => makeCharacter(
  59503. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59504. {
  59505. side: {
  59506. height: math.unit(1.6, "meters"),
  59507. name: "Side",
  59508. image: {
  59509. source: "./media/characters/liza/side.svg",
  59510. extra: 943/915,
  59511. bottom: 72/1015
  59512. }
  59513. },
  59514. },
  59515. [
  59516. {
  59517. name: "Normal",
  59518. height: math.unit(1.6, "meters"),
  59519. default: true
  59520. },
  59521. ]
  59522. ))
  59523. characterMakers.push(() => makeCharacter(
  59524. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59525. {
  59526. side: {
  59527. height: math.unit(2.5, "meters"),
  59528. preyCapacity: math.unit(1, "people"),
  59529. name: "Side",
  59530. image: {
  59531. source: "./media/characters/persephone-sweetbreath/side.svg",
  59532. extra: 796/700,
  59533. bottom: 44/840
  59534. }
  59535. },
  59536. sideVore: {
  59537. height: math.unit(2.5, "meters"),
  59538. preyCapacity: math.unit(1, "people"),
  59539. name: "Side (Full)",
  59540. image: {
  59541. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59542. extra: 796/700,
  59543. bottom: 44/840
  59544. }
  59545. },
  59546. },
  59547. [
  59548. {
  59549. name: "Normal",
  59550. height: math.unit(2.5, "meters"),
  59551. default: true
  59552. },
  59553. ]
  59554. ))
  59555. characterMakers.push(() => makeCharacter(
  59556. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59557. {
  59558. front: {
  59559. height: math.unit(32, "meters"),
  59560. name: "Front",
  59561. image: {
  59562. source: "./media/characters/pierce/front.svg",
  59563. extra: 1695/1475,
  59564. bottom: 185/1880
  59565. }
  59566. },
  59567. side: {
  59568. height: math.unit(32, "meters"),
  59569. name: "Side",
  59570. image: {
  59571. source: "./media/characters/pierce/side.svg",
  59572. extra: 974/859,
  59573. bottom: 43/1017
  59574. }
  59575. },
  59576. frontWingless: {
  59577. height: math.unit(32, "meters"),
  59578. name: "Front (Wingless)",
  59579. image: {
  59580. source: "./media/characters/pierce/front-wingless.svg",
  59581. extra: 1695/1475,
  59582. bottom: 185/1880
  59583. }
  59584. },
  59585. sideWingless: {
  59586. height: math.unit(32, "meters"),
  59587. name: "Side (Wingless)",
  59588. image: {
  59589. source: "./media/characters/pierce/side-wingless.svg",
  59590. extra: 974/859,
  59591. bottom: 43/1017
  59592. }
  59593. },
  59594. maw: {
  59595. height: math.unit(19.3, "meters"),
  59596. name: "Maw",
  59597. image: {
  59598. source: "./media/characters/pierce/maw.svg"
  59599. }
  59600. },
  59601. },
  59602. [
  59603. {
  59604. name: "Small",
  59605. height: math.unit(8.5, "meters")
  59606. },
  59607. {
  59608. name: "Normal",
  59609. height: math.unit(32, "meters"),
  59610. default: true
  59611. },
  59612. ]
  59613. ))
  59614. characterMakers.push(() => makeCharacter(
  59615. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59616. {
  59617. front: {
  59618. height: math.unit(2.3, "meters"),
  59619. weight: math.unit(165, "kg"),
  59620. name: "Front",
  59621. image: {
  59622. source: "./media/characters/shira/front.svg",
  59623. extra: 924/919,
  59624. bottom: 17/941
  59625. },
  59626. form: "cobra",
  59627. default: true
  59628. },
  59629. back: {
  59630. height: math.unit(2.3, "meters"),
  59631. weight: math.unit(165, "kg"),
  59632. name: "Back",
  59633. image: {
  59634. source: "./media/characters/shira/back.svg",
  59635. extra: 928/922,
  59636. bottom: 18/946
  59637. },
  59638. form: "cobra"
  59639. },
  59640. frontLewd: {
  59641. height: math.unit(2.3, "meters"),
  59642. weight: math.unit(165, "kg"),
  59643. name: "Front (Lewd)",
  59644. image: {
  59645. source: "./media/characters/shira/front-lewd.svg",
  59646. extra: 924/919,
  59647. bottom: 17/941
  59648. },
  59649. form: "cobra"
  59650. },
  59651. backLewd: {
  59652. height: math.unit(2.3, "meters"),
  59653. weight: math.unit(165, "kg"),
  59654. name: "Back (Lewd)",
  59655. image: {
  59656. source: "./media/characters/shira/back-lewd.svg",
  59657. extra: 928/922,
  59658. bottom: 18/946
  59659. },
  59660. form: "cobra"
  59661. },
  59662. maw: {
  59663. height: math.unit(1.14, "feet"),
  59664. name: "Maw",
  59665. image: {
  59666. source: "./media/characters/shira/maw.svg"
  59667. },
  59668. form: "cobra"
  59669. },
  59670. magma_front: {
  59671. height: math.unit(2.3, "meters"),
  59672. weight: math.unit(165, "kg"),
  59673. name: "Front",
  59674. image: {
  59675. source: "./media/characters/shira/magma-front.svg",
  59676. extra: 1870/1693,
  59677. bottom: 24/1894
  59678. },
  59679. form: "magma",
  59680. },
  59681. magma_back: {
  59682. height: math.unit(2.3, "meters"),
  59683. weight: math.unit(165, "kg"),
  59684. name: "Back",
  59685. image: {
  59686. source: "./media/characters/shira/magma-back.svg",
  59687. extra: 1918/1756,
  59688. bottom: 46/1964
  59689. },
  59690. form: "magma",
  59691. },
  59692. },
  59693. [
  59694. {
  59695. name: "Incognito",
  59696. height: math.unit(2.3, "meters"),
  59697. allForms: true
  59698. },
  59699. {
  59700. name: "Home Size",
  59701. height: math.unit(150, "meters"),
  59702. default: true,
  59703. allForms: true
  59704. },
  59705. {
  59706. name: "Macro",
  59707. height: math.unit(2, "km"),
  59708. allForms: true
  59709. },
  59710. {
  59711. name: "Mega",
  59712. height: math.unit(30, "km"),
  59713. allForms: true
  59714. },
  59715. {
  59716. name: "Giga",
  59717. height: math.unit(450, "km"),
  59718. allForms: true
  59719. },
  59720. {
  59721. name: "Giga+",
  59722. height: math.unit(3000, "km"),
  59723. allForms: true
  59724. },
  59725. {
  59726. name: "Giga++",
  59727. height: math.unit(6000, "km"),
  59728. allForms: true
  59729. },
  59730. {
  59731. name: "Terra",
  59732. height: math.unit(80000, "km"),
  59733. allForms: true
  59734. },
  59735. {
  59736. name: "Terra+",
  59737. height: math.unit(350000, "km"),
  59738. allForms: true
  59739. },
  59740. {
  59741. name: "Solar",
  59742. height: math.unit(1e6, "km"),
  59743. allForms: true
  59744. },
  59745. ],
  59746. {
  59747. "cobra": {
  59748. name: "Cobra",
  59749. default: true
  59750. },
  59751. "magma": {
  59752. name: "Magma Dragon",
  59753. },
  59754. }
  59755. ))
  59756. characterMakers.push(() => makeCharacter(
  59757. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59758. {
  59759. front: {
  59760. height: math.unit(2, "meters"),
  59761. weight: math.unit(160, "kg"),
  59762. name: "Front",
  59763. image: {
  59764. source: "./media/characters/daxerios/front.svg",
  59765. extra: 1334/1277,
  59766. bottom: 45/1379
  59767. }
  59768. },
  59769. frontLewd: {
  59770. height: math.unit(2, "meters"),
  59771. weight: math.unit(160, "kg"),
  59772. name: "Front (Lewd)",
  59773. image: {
  59774. source: "./media/characters/daxerios/front-lewd.svg",
  59775. extra: 1334/1277,
  59776. bottom: 45/1379
  59777. }
  59778. },
  59779. dick: {
  59780. height: math.unit(2.35, "feet"),
  59781. name: "Dick",
  59782. image: {
  59783. source: "./media/characters/daxerios/dick.svg"
  59784. }
  59785. },
  59786. },
  59787. [
  59788. {
  59789. name: "\"Small\"",
  59790. height: math.unit(5, "meters")
  59791. },
  59792. {
  59793. name: "Original Size",
  59794. height: math.unit(500, "meters"),
  59795. default: true
  59796. },
  59797. {
  59798. name: "Mega",
  59799. height: math.unit(2, "km")
  59800. },
  59801. {
  59802. name: "Mega+",
  59803. height: math.unit(35, "km")
  59804. },
  59805. {
  59806. name: "Giga",
  59807. height: math.unit(250, "km")
  59808. },
  59809. {
  59810. name: "Giga+",
  59811. height: math.unit(3000, "km")
  59812. },
  59813. {
  59814. name: "Terra",
  59815. height: math.unit(25000, "km")
  59816. },
  59817. {
  59818. name: "Terra+",
  59819. height: math.unit(300000, "km")
  59820. },
  59821. {
  59822. name: "Solar",
  59823. height: math.unit(1e6, "km")
  59824. },
  59825. ]
  59826. ))
  59827. characterMakers.push(() => makeCharacter(
  59828. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59829. {
  59830. front: {
  59831. height: math.unit(8 + 4/12, "feet"),
  59832. weight: math.unit(464, "lb"),
  59833. name: "Front",
  59834. image: {
  59835. source: "./media/characters/caveat/front.svg",
  59836. extra: 1861/1678,
  59837. bottom: 40/1901
  59838. }
  59839. },
  59840. },
  59841. [
  59842. {
  59843. name: "Normal",
  59844. height: math.unit(8 + 4/12, "feet"),
  59845. default: true
  59846. },
  59847. ]
  59848. ))
  59849. characterMakers.push(() => makeCharacter(
  59850. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59851. {
  59852. front: {
  59853. height: math.unit(12, "feet"),
  59854. weight: math.unit(1800, "lb"),
  59855. name: "Front",
  59856. image: {
  59857. source: "./media/characters/centbair/front.svg",
  59858. extra: 781/663,
  59859. bottom: 25/806
  59860. }
  59861. },
  59862. frontNsfw: {
  59863. height: math.unit(12, "feet"),
  59864. weight: math.unit(1800, "lb"),
  59865. name: "Front (NSFW)",
  59866. image: {
  59867. source: "./media/characters/centbair/front-nsfw.svg",
  59868. extra: 781/663,
  59869. bottom: 25/806
  59870. }
  59871. },
  59872. back: {
  59873. height: math.unit(12, "feet"),
  59874. weight: math.unit(1800, "lb"),
  59875. name: "Back",
  59876. image: {
  59877. source: "./media/characters/centbair/back.svg",
  59878. extra: 808/761,
  59879. bottom: 19/827
  59880. }
  59881. },
  59882. dick: {
  59883. height: math.unit(6.5, "feet"),
  59884. name: "Dick",
  59885. image: {
  59886. source: "./media/characters/centbair/dick.svg"
  59887. }
  59888. },
  59889. slit: {
  59890. height: math.unit(3.25, "feet"),
  59891. name: "Slit",
  59892. image: {
  59893. source: "./media/characters/centbair/slit.svg"
  59894. }
  59895. },
  59896. },
  59897. [
  59898. {
  59899. name: "Normal",
  59900. height: math.unit(12, "feet"),
  59901. default: true
  59902. },
  59903. ]
  59904. ))
  59905. characterMakers.push(() => makeCharacter(
  59906. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  59907. {
  59908. front: {
  59909. height: math.unit(5 + 7/12, "feet"),
  59910. name: "Front",
  59911. image: {
  59912. source: "./media/characters/andy/front.svg",
  59913. extra: 634/588,
  59914. bottom: 36/670
  59915. },
  59916. extraAttributes: {
  59917. "pawLength": {
  59918. name: "Paw Length",
  59919. power: 1,
  59920. type: "length",
  59921. base: math.unit(1, "feet")
  59922. },
  59923. }
  59924. },
  59925. side: {
  59926. height: math.unit(5 + 7/12, "feet"),
  59927. name: "Side",
  59928. image: {
  59929. source: "./media/characters/andy/side.svg",
  59930. extra: 641/596,
  59931. bottom: 34/675
  59932. },
  59933. extraAttributes: {
  59934. "pawLength": {
  59935. name: "Paw Length",
  59936. power: 1,
  59937. type: "length",
  59938. base: math.unit(1, "feet")
  59939. },
  59940. }
  59941. },
  59942. back: {
  59943. height: math.unit(5 + 7/12, "feet"),
  59944. name: "Back",
  59945. image: {
  59946. source: "./media/characters/andy/back.svg",
  59947. extra: 618/583,
  59948. bottom: 39/657
  59949. },
  59950. extraAttributes: {
  59951. "pawLength": {
  59952. name: "Paw Length",
  59953. power: 1,
  59954. type: "length",
  59955. base: math.unit(1, "feet")
  59956. },
  59957. }
  59958. },
  59959. paw: {
  59960. height: math.unit(1.13, "feet"),
  59961. name: "Paw",
  59962. image: {
  59963. source: "./media/characters/andy/paw.svg"
  59964. }
  59965. },
  59966. },
  59967. [
  59968. {
  59969. name: "Micro",
  59970. height: math.unit(4, "inches")
  59971. },
  59972. {
  59973. name: "Normal",
  59974. height: math.unit(5 + 7/12, "feet"),
  59975. default: true
  59976. },
  59977. {
  59978. name: "Macro",
  59979. height: math.unit(390.42, "feet")
  59980. },
  59981. ]
  59982. ))
  59983. characterMakers.push(() => makeCharacter(
  59984. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  59985. {
  59986. front: {
  59987. height: math.unit(7, "feet"),
  59988. weight: math.unit(250, "lb"),
  59989. name: "Front",
  59990. image: {
  59991. source: "./media/characters/vix-titan/front.svg",
  59992. extra: 460/428,
  59993. bottom: 15/475
  59994. },
  59995. extraAttributes: {
  59996. "pawWidth": {
  59997. name: "Paw Width",
  59998. power: 1,
  59999. type: "length",
  60000. base: math.unit(0.75, "feet")
  60001. },
  60002. }
  60003. },
  60004. },
  60005. [
  60006. {
  60007. name: "Normal",
  60008. height: math.unit(7, "feet"),
  60009. default: true
  60010. },
  60011. {
  60012. name: "Giant",
  60013. height: math.unit(1500, "feet")
  60014. },
  60015. {
  60016. name: "Mega",
  60017. height: math.unit(10, "miles")
  60018. },
  60019. {
  60020. name: "Giga",
  60021. height: math.unit(150, "miles")
  60022. },
  60023. {
  60024. name: "Tera",
  60025. height: math.unit(144000, "miles")
  60026. },
  60027. ]
  60028. ))
  60029. characterMakers.push(() => makeCharacter(
  60030. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60031. {
  60032. front: {
  60033. height: math.unit(6 + 2/12, "feet"),
  60034. name: "Front",
  60035. image: {
  60036. source: "./media/characters/reiku/front.svg",
  60037. extra: 1910/1757,
  60038. bottom: 103/2013
  60039. },
  60040. extraAttributes: {
  60041. "thighThickness": {
  60042. name: "Thigh Thickness",
  60043. power: 1,
  60044. type: "length",
  60045. base: math.unit(1.12, "feet")
  60046. },
  60047. "assThickness": {
  60048. name: "Ass Thickness",
  60049. power: 1,
  60050. type: "length",
  60051. base: math.unit(1.12*2, "feet")
  60052. },
  60053. }
  60054. },
  60055. side: {
  60056. height: math.unit(6 + 2/12, "feet"),
  60057. name: "Side",
  60058. image: {
  60059. source: "./media/characters/reiku/side.svg",
  60060. extra: 1846/1748,
  60061. bottom: 99/1945
  60062. },
  60063. extraAttributes: {
  60064. "thighThickness": {
  60065. name: "Thigh Thickness",
  60066. power: 1,
  60067. type: "length",
  60068. base: math.unit(1.12, "feet")
  60069. },
  60070. "assThickness": {
  60071. name: "Ass Thickness",
  60072. power: 1,
  60073. type: "length",
  60074. base: math.unit(1.12*2, "feet")
  60075. },
  60076. }
  60077. },
  60078. back: {
  60079. height: math.unit(6 + 2/12, "feet"),
  60080. name: "Back",
  60081. image: {
  60082. source: "./media/characters/reiku/back.svg",
  60083. extra: 1941/1786,
  60084. bottom: 34/1975
  60085. },
  60086. extraAttributes: {
  60087. "thighThickness": {
  60088. name: "Thigh Thickness",
  60089. power: 1,
  60090. type: "length",
  60091. base: math.unit(1.12, "feet")
  60092. },
  60093. "assThickness": {
  60094. name: "Ass Thickness",
  60095. power: 1,
  60096. type: "length",
  60097. base: math.unit(1.12*2, "feet")
  60098. },
  60099. }
  60100. },
  60101. head: {
  60102. height: math.unit(1.8, "feet"),
  60103. name: "Head",
  60104. image: {
  60105. source: "./media/characters/reiku/head.svg"
  60106. }
  60107. },
  60108. tailTop: {
  60109. height: math.unit(8.4, "feet"),
  60110. name: "Tail (Top)",
  60111. image: {
  60112. source: "./media/characters/reiku/tail-top.svg"
  60113. }
  60114. },
  60115. tailBottom: {
  60116. height: math.unit(8.4, "feet"),
  60117. name: "Tail (Bottom)",
  60118. image: {
  60119. source: "./media/characters/reiku/tail-bottom.svg"
  60120. }
  60121. },
  60122. foot: {
  60123. height: math.unit(2.6, "feet"),
  60124. name: "Foot",
  60125. image: {
  60126. source: "./media/characters/reiku/foot.svg"
  60127. }
  60128. },
  60129. footCurled: {
  60130. height: math.unit(2.3, "feet"),
  60131. name: "Foot (Curled)",
  60132. image: {
  60133. source: "./media/characters/reiku/foot-curled.svg"
  60134. }
  60135. },
  60136. footSide: {
  60137. height: math.unit(1.26, "feet"),
  60138. name: "Foot (Side)",
  60139. image: {
  60140. source: "./media/characters/reiku/foot-side.svg"
  60141. }
  60142. },
  60143. },
  60144. [
  60145. {
  60146. name: "Normal",
  60147. height: math.unit(6 + 2/12, "feet"),
  60148. default: true
  60149. },
  60150. ]
  60151. ))
  60152. characterMakers.push(() => makeCharacter(
  60153. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60154. {
  60155. front: {
  60156. height: math.unit(7, "feet"),
  60157. weight: math.unit(500, "kg"),
  60158. name: "Front",
  60159. image: {
  60160. source: "./media/characters/cialda/front.svg",
  60161. extra: 912/745,
  60162. bottom: 55/967
  60163. }
  60164. },
  60165. },
  60166. [
  60167. {
  60168. name: "Normal",
  60169. height: math.unit(7, "feet"),
  60170. default: true
  60171. },
  60172. ]
  60173. ))
  60174. characterMakers.push(() => makeCharacter(
  60175. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60176. {
  60177. side: {
  60178. height: math.unit(6, "feet"),
  60179. weight: math.unit(600, "lb"),
  60180. preyCapacity: math.unit(25, "liters"),
  60181. name: "Side",
  60182. image: {
  60183. source: "./media/characters/darkkin/side.svg",
  60184. extra: 1597/1447,
  60185. bottom: 101/1698
  60186. }
  60187. },
  60188. },
  60189. [
  60190. {
  60191. name: "Canon Height",
  60192. height: math.unit(568, "feet"),
  60193. default: true
  60194. },
  60195. ]
  60196. ))
  60197. characterMakers.push(() => makeCharacter(
  60198. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60199. {
  60200. front: {
  60201. height: math.unit(6, "feet"),
  60202. weight: math.unit(1500, "lb"),
  60203. preyCapacity: math.unit(3, "people"),
  60204. name: "Front",
  60205. image: {
  60206. source: "./media/characters/livnia/front.svg",
  60207. extra: 934/932,
  60208. bottom: 83/1017
  60209. }
  60210. },
  60211. back: {
  60212. height: math.unit(6, "feet"),
  60213. weight: math.unit(1500, "lb"),
  60214. preyCapacity: math.unit(3, "people"),
  60215. name: "Back",
  60216. image: {
  60217. source: "./media/characters/livnia/back.svg",
  60218. extra: 916/915,
  60219. bottom: 58/974
  60220. }
  60221. },
  60222. head: {
  60223. height: math.unit(1.53, "feet"),
  60224. name: "Head",
  60225. image: {
  60226. source: "./media/characters/livnia/head.svg"
  60227. }
  60228. },
  60229. maw: {
  60230. height: math.unit(0.78, "feet"),
  60231. name: "Maw",
  60232. image: {
  60233. source: "./media/characters/livnia/maw.svg"
  60234. }
  60235. },
  60236. genitals: {
  60237. height: math.unit(0.35, "feet"),
  60238. name: "Genitals",
  60239. image: {
  60240. source: "./media/characters/livnia/genitals.svg"
  60241. }
  60242. },
  60243. },
  60244. [
  60245. {
  60246. name: "Normal",
  60247. height: math.unit(1000, "feet"),
  60248. default: true
  60249. },
  60250. ]
  60251. ))
  60252. characterMakers.push(() => makeCharacter(
  60253. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60254. {
  60255. front: {
  60256. height: math.unit(4, "feet"),
  60257. weight: math.unit(73, "lb"),
  60258. name: "Front",
  60259. image: {
  60260. source: "./media/characters/hayaku/front.svg",
  60261. extra: 1011/888,
  60262. bottom: 33/1044
  60263. }
  60264. },
  60265. back: {
  60266. height: math.unit(4, "feet"),
  60267. weight: math.unit(73, "lb"),
  60268. name: "Back",
  60269. image: {
  60270. source: "./media/characters/hayaku/back.svg",
  60271. extra: 1040/930,
  60272. bottom: 20/1060
  60273. }
  60274. },
  60275. },
  60276. [
  60277. {
  60278. name: "Normal",
  60279. height: math.unit(4, "feet"),
  60280. default: true
  60281. },
  60282. ]
  60283. ))
  60284. characterMakers.push(() => makeCharacter(
  60285. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60286. {
  60287. front: {
  60288. height: math.unit(6 + 7/12, "feet"),
  60289. weight: math.unit(300, "lb"),
  60290. name: "Front",
  60291. image: {
  60292. source: "./media/characters/athena-bryzant/front.svg",
  60293. extra: 870/835,
  60294. bottom: 33/903
  60295. }
  60296. },
  60297. back: {
  60298. height: math.unit(6 + 7/12, "feet"),
  60299. weight: math.unit(300, "lb"),
  60300. name: "Back",
  60301. image: {
  60302. source: "./media/characters/athena-bryzant/back.svg",
  60303. extra: 858/823,
  60304. bottom: 30/888
  60305. }
  60306. },
  60307. head: {
  60308. height: math.unit(2.38, "feet"),
  60309. name: "Head",
  60310. image: {
  60311. source: "./media/characters/athena-bryzant/head.svg"
  60312. }
  60313. },
  60314. wings: {
  60315. height: math.unit(2.85, "feet"),
  60316. name: "Wings",
  60317. image: {
  60318. source: "./media/characters/athena-bryzant/wings.svg"
  60319. }
  60320. },
  60321. },
  60322. [
  60323. {
  60324. name: "Normal",
  60325. height: math.unit(6 + 7/12, "feet"),
  60326. default: true
  60327. },
  60328. {
  60329. name: "Big",
  60330. height: math.unit(8, "feet")
  60331. },
  60332. {
  60333. name: "Very Big",
  60334. height: math.unit(11, "feet")
  60335. },
  60336. ]
  60337. ))
  60338. characterMakers.push(() => makeCharacter(
  60339. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60340. {
  60341. side: {
  60342. height: math.unit(3, "meters"),
  60343. weight: math.unit(7500, "kg"),
  60344. preyCapacity: math.unit(1e12, "people"),
  60345. name: "Side",
  60346. image: {
  60347. source: "./media/characters/zel-kesh/side.svg",
  60348. extra: 910/407,
  60349. bottom: 147/1057
  60350. }
  60351. },
  60352. },
  60353. [
  60354. {
  60355. name: "Normal",
  60356. height: math.unit(3, "meters"),
  60357. default: true
  60358. },
  60359. ]
  60360. ))
  60361. characterMakers.push(() => makeCharacter(
  60362. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60363. {
  60364. front: {
  60365. height: math.unit(2, "meters"),
  60366. weight: math.unit(95, "kg"),
  60367. name: "Front",
  60368. image: {
  60369. source: "./media/characters/kane-fox/front.svg",
  60370. extra: 945/888,
  60371. bottom: 27/972
  60372. }
  60373. },
  60374. back: {
  60375. height: math.unit(2, "meters"),
  60376. weight: math.unit(95, "kg"),
  60377. name: "Back",
  60378. image: {
  60379. source: "./media/characters/kane-fox/back.svg",
  60380. extra: 959/914,
  60381. bottom: 15/974
  60382. }
  60383. },
  60384. frontLewd: {
  60385. height: math.unit(2, "meters"),
  60386. weight: math.unit(95, "kg"),
  60387. name: "Front (Lewd)",
  60388. image: {
  60389. source: "./media/characters/kane-fox/front-lewd.svg",
  60390. extra: 945/888,
  60391. bottom: 27/972
  60392. }
  60393. },
  60394. },
  60395. [
  60396. {
  60397. name: "Home Size",
  60398. height: math.unit(2, "meters"),
  60399. default: true
  60400. },
  60401. {
  60402. name: "Macro",
  60403. height: math.unit(200, "meters")
  60404. },
  60405. {
  60406. name: "Small Mega",
  60407. height: math.unit(3, "km")
  60408. },
  60409. {
  60410. name: "Mega",
  60411. height: math.unit(50, "km")
  60412. },
  60413. {
  60414. name: "Giga",
  60415. height: math.unit(200, "km")
  60416. },
  60417. {
  60418. name: "Giga+",
  60419. height: math.unit(2500, "km")
  60420. },
  60421. {
  60422. name: "Terra",
  60423. height: math.unit(70000, "km")
  60424. },
  60425. {
  60426. name: "Terra+",
  60427. height: math.unit(150000, "km")
  60428. },
  60429. {
  60430. name: "Terra++",
  60431. height: math.unit(400000, "km")
  60432. },
  60433. ]
  60434. ))
  60435. characterMakers.push(() => makeCharacter(
  60436. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60437. {
  60438. otter_front: {
  60439. height: math.unit(1.8, "meters"),
  60440. weight: math.unit(90, "kg"),
  60441. name: "Front",
  60442. image: {
  60443. source: "./media/characters/ayranus/otter-front.svg",
  60444. extra: 468/452,
  60445. bottom: 43/511
  60446. },
  60447. form: "otter",
  60448. },
  60449. otter_frontLewd: {
  60450. height: math.unit(1.8, "meters"),
  60451. weight: math.unit(90, "kg"),
  60452. name: "Front (Lewd)",
  60453. image: {
  60454. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60455. extra: 468/452,
  60456. bottom: 43/511
  60457. },
  60458. form: "otter",
  60459. },
  60460. lionbat_front: {
  60461. height: math.unit(1.8, "meters"),
  60462. weight: math.unit(90, "kg"),
  60463. name: "Front (Lewd)",
  60464. image: {
  60465. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60466. extra: 797/740,
  60467. bottom: 78/875
  60468. },
  60469. form: "lionbat",
  60470. },
  60471. paw: {
  60472. height: math.unit(1.5, "feet"),
  60473. name: "Paw",
  60474. image: {
  60475. source: "./media/characters/ayranus/paw.svg"
  60476. },
  60477. },
  60478. },
  60479. [
  60480. {
  60481. name: "Incognito",
  60482. height: math.unit(1.8, "meters"),
  60483. allForms: true
  60484. },
  60485. {
  60486. name: "Macro",
  60487. height: math.unit(60, "meters"),
  60488. allForms: true
  60489. },
  60490. {
  60491. name: "Macro+",
  60492. height: math.unit(200, "meters"),
  60493. allForms: true
  60494. },
  60495. {
  60496. name: "Mega",
  60497. height: math.unit(35, "km"),
  60498. allForms: true
  60499. },
  60500. {
  60501. name: "Giga",
  60502. height: math.unit(220, "km"),
  60503. allForms: true
  60504. },
  60505. {
  60506. name: "Giga+",
  60507. height: math.unit(1500, "km"),
  60508. allForms: true
  60509. },
  60510. {
  60511. name: "Terra",
  60512. height: math.unit(13000, "km"),
  60513. allForms: true
  60514. },
  60515. {
  60516. name: "Terra+",
  60517. height: math.unit(500000, "km"),
  60518. allForms: true
  60519. },
  60520. {
  60521. name: "Galactic",
  60522. height: math.unit(486080, "parsecs"),
  60523. default: true,
  60524. allForms: true
  60525. },
  60526. ],
  60527. {
  60528. "otter": {
  60529. name: "Otter",
  60530. default: true
  60531. },
  60532. "lionbat": {
  60533. name: "Lionbat",
  60534. },
  60535. }
  60536. ))
  60537. characterMakers.push(() => makeCharacter(
  60538. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60539. {
  60540. front: {
  60541. height: math.unit(7 + 4/12, "feet"),
  60542. weight: math.unit(400, "lb"),
  60543. name: "Front",
  60544. image: {
  60545. source: "./media/characters/proxy/front.svg",
  60546. extra: 1605/1542,
  60547. bottom: 55/1660
  60548. }
  60549. },
  60550. side: {
  60551. height: math.unit(7 + 4/12, "feet"),
  60552. weight: math.unit(400, "lb"),
  60553. name: "Side",
  60554. image: {
  60555. source: "./media/characters/proxy/side.svg",
  60556. extra: 794/759,
  60557. bottom: 6/800
  60558. }
  60559. },
  60560. hand: {
  60561. height: math.unit(1.54, "feet"),
  60562. name: "Hand",
  60563. image: {
  60564. source: "./media/characters/proxy/hand.svg"
  60565. }
  60566. },
  60567. paw: {
  60568. height: math.unit(1.53, "feet"),
  60569. name: "Paw",
  60570. image: {
  60571. source: "./media/characters/proxy/paw.svg"
  60572. }
  60573. },
  60574. maw: {
  60575. height: math.unit(1.9, "feet"),
  60576. name: "Maw",
  60577. image: {
  60578. source: "./media/characters/proxy/maw.svg"
  60579. }
  60580. },
  60581. },
  60582. [
  60583. {
  60584. name: "Normal",
  60585. height: math.unit(7 + 4/12, "feet"),
  60586. default: true
  60587. },
  60588. ]
  60589. ))
  60590. characterMakers.push(() => makeCharacter(
  60591. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60592. {
  60593. front: {
  60594. height: math.unit(4, "meters"),
  60595. name: "Front",
  60596. image: {
  60597. source: "./media/characters/crocozilla/front.svg",
  60598. extra: 1790/1742,
  60599. bottom: 78/1868
  60600. }
  60601. },
  60602. },
  60603. [
  60604. {
  60605. name: "Normal",
  60606. height: math.unit(4, "meters"),
  60607. default: true
  60608. },
  60609. ]
  60610. ))
  60611. characterMakers.push(() => makeCharacter(
  60612. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60613. {
  60614. front: {
  60615. height: math.unit(1.8, "meters"),
  60616. weight: math.unit(120, "kg"),
  60617. name: "Front",
  60618. image: {
  60619. source: "./media/characters/kurz/front.svg",
  60620. extra: 1960/1824,
  60621. bottom: 41/2001
  60622. }
  60623. },
  60624. back: {
  60625. height: math.unit(1.8, "meters"),
  60626. weight: math.unit(120, "kg"),
  60627. name: "Back",
  60628. image: {
  60629. source: "./media/characters/kurz/back.svg",
  60630. extra: 1906/1787,
  60631. bottom: 60/1966
  60632. }
  60633. },
  60634. frontLewd: {
  60635. height: math.unit(1.8, "meters"),
  60636. weight: math.unit(120, "kg"),
  60637. name: "Front (Lewd)",
  60638. image: {
  60639. source: "./media/characters/kurz/front-lewd.svg",
  60640. extra: 1960/1824,
  60641. bottom: 41/2001
  60642. }
  60643. },
  60644. maw: {
  60645. height: math.unit(0.69, "meters"),
  60646. name: "Maw",
  60647. image: {
  60648. source: "./media/characters/kurz/maw.svg"
  60649. }
  60650. },
  60651. },
  60652. [
  60653. {
  60654. name: "Original Size",
  60655. height: math.unit(1.8, "meters")
  60656. },
  60657. {
  60658. name: "Incognito Size",
  60659. height: math.unit(2.4, "meters"),
  60660. default: true
  60661. },
  60662. {
  60663. name: "Macro",
  60664. height: math.unit(30, "meters")
  60665. },
  60666. {
  60667. name: "Macro+",
  60668. height: math.unit(250, "meters")
  60669. },
  60670. {
  60671. name: "Mega",
  60672. height: math.unit(2, "km")
  60673. },
  60674. {
  60675. name: "Mega+",
  60676. height: math.unit(35, "km")
  60677. },
  60678. {
  60679. name: "Mega++",
  60680. height: math.unit(75, "km")
  60681. },
  60682. {
  60683. name: "Giga",
  60684. height: math.unit(250, "km")
  60685. },
  60686. {
  60687. name: "Terra",
  60688. height: math.unit(15000, "km")
  60689. },
  60690. {
  60691. name: "Terra+",
  60692. height: math.unit(2250000, "km")
  60693. },
  60694. ]
  60695. ))
  60696. characterMakers.push(() => makeCharacter(
  60697. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60698. {
  60699. front: {
  60700. height: math.unit(16 + 3/12, "feet"),
  60701. weight: math.unit(3575, "lb"),
  60702. name: "Front",
  60703. image: {
  60704. source: "./media/characters/nikita/front.svg",
  60705. extra: 1064/955,
  60706. bottom: 47/1111
  60707. }
  60708. },
  60709. },
  60710. [
  60711. {
  60712. name: "Normal",
  60713. height: math.unit(16 + 3/12, "feet"),
  60714. default: true
  60715. },
  60716. {
  60717. name: "Big",
  60718. height: math.unit(21, "feet")
  60719. },
  60720. {
  60721. name: "Biggest",
  60722. height: math.unit(50, "feet")
  60723. },
  60724. ]
  60725. ))
  60726. characterMakers.push(() => makeCharacter(
  60727. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60728. {
  60729. front: {
  60730. height: math.unit(1.92, "m"),
  60731. weight: math.unit(76, "kg"),
  60732. name: "Front",
  60733. image: {
  60734. source: "./media/characters/kyara/front.svg",
  60735. extra: 1550/1438,
  60736. bottom: 139/1689
  60737. }
  60738. },
  60739. back: {
  60740. height: math.unit(1.92, "m"),
  60741. weight: math.unit(76, "kg"),
  60742. name: "Back",
  60743. image: {
  60744. source: "./media/characters/kyara/back.svg",
  60745. extra: 1523/1427,
  60746. bottom: 83/1606
  60747. }
  60748. },
  60749. head: {
  60750. height: math.unit(1.22, "feet"),
  60751. name: "Head",
  60752. image: {
  60753. source: "./media/characters/kyara/head.svg"
  60754. }
  60755. },
  60756. maw: {
  60757. height: math.unit(0.73, "feet"),
  60758. name: "Maw",
  60759. image: {
  60760. source: "./media/characters/kyara/maw.svg"
  60761. }
  60762. },
  60763. paws: {
  60764. height: math.unit(0.95, "feet"),
  60765. name: "Paws",
  60766. image: {
  60767. source: "./media/characters/kyara/paws.svg"
  60768. }
  60769. },
  60770. },
  60771. [
  60772. {
  60773. name: "Normal",
  60774. height: math.unit(1.92, "meters"),
  60775. default: true
  60776. },
  60777. {
  60778. name: "Mini Macro",
  60779. height: math.unit(192, "meters")
  60780. },
  60781. {
  60782. name: "Macro",
  60783. height: math.unit(480, "meters")
  60784. },
  60785. {
  60786. name: "Mega Macro",
  60787. height: math.unit(1440, "meters")
  60788. },
  60789. ]
  60790. ))
  60791. characterMakers.push(() => makeCharacter(
  60792. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60793. {
  60794. front: {
  60795. height: math.unit(6, "feet"),
  60796. weight: math.unit(160, "lbs"),
  60797. preyCapacity: math.unit(0.05, "people"),
  60798. name: "Front",
  60799. image: {
  60800. source: "./media/characters/layla-amari/front.svg",
  60801. extra: 1922/1723,
  60802. bottom: 90/2012
  60803. }
  60804. },
  60805. back: {
  60806. height: math.unit(6, "feet"),
  60807. weight: math.unit(160, "lbs"),
  60808. preyCapacity: math.unit(0.05, "people"),
  60809. name: "Back",
  60810. image: {
  60811. source: "./media/characters/layla-amari/back.svg",
  60812. extra: 1917/1718,
  60813. bottom: 50/1967
  60814. }
  60815. },
  60816. frontDressed: {
  60817. height: math.unit(6, "feet"),
  60818. weight: math.unit(160, "lbs"),
  60819. preyCapacity: math.unit(0.05, "people"),
  60820. name: "Front (Dressed)",
  60821. image: {
  60822. source: "./media/characters/layla-amari/front-dressed.svg",
  60823. extra: 1922/1723,
  60824. bottom: 90/2012
  60825. }
  60826. },
  60827. face: {
  60828. height: math.unit(0.93, "feet"),
  60829. name: "Face",
  60830. image: {
  60831. source: "./media/characters/layla-amari/face.svg"
  60832. }
  60833. },
  60834. hand: {
  60835. height: math.unit(0.66 , "feet"),
  60836. name: "Hand",
  60837. image: {
  60838. source: "./media/characters/layla-amari/hand.svg"
  60839. }
  60840. },
  60841. foot: {
  60842. height: math.unit(1, "feet"),
  60843. name: "Foot",
  60844. image: {
  60845. source: "./media/characters/layla-amari/foot.svg"
  60846. }
  60847. },
  60848. necklace: {
  60849. height: math.unit(0.32, "feet"),
  60850. name: "Necklace",
  60851. image: {
  60852. source: "./media/characters/layla-amari/necklace.svg"
  60853. }
  60854. },
  60855. nipple: {
  60856. height: math.unit(0.2, "feet"),
  60857. name: "Nipple",
  60858. image: {
  60859. source: "./media/characters/layla-amari/nipple.svg"
  60860. }
  60861. },
  60862. slit: {
  60863. height: math.unit(0.26, "feet"),
  60864. name: "Slit",
  60865. image: {
  60866. source: "./media/characters/layla-amari/slit.svg"
  60867. }
  60868. },
  60869. },
  60870. [
  60871. {
  60872. name: "Natural",
  60873. height: math.unit(825, "feet"),
  60874. default: true
  60875. },
  60876. {
  60877. name: "Enhanced",
  60878. height: math.unit(8250, "feet")
  60879. },
  60880. {
  60881. name: "Apparent Size",
  60882. height: math.unit(9.04363e+8, "meters")
  60883. },
  60884. ]
  60885. ))
  60886. characterMakers.push(() => makeCharacter(
  60887. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  60888. {
  60889. front: {
  60890. height: math.unit(1.3, "meters"),
  60891. name: "Front",
  60892. image: {
  60893. source: "./media/characters/percy/front.svg",
  60894. extra: 1444/1289,
  60895. bottom: 54/1498
  60896. }
  60897. },
  60898. },
  60899. [
  60900. {
  60901. name: "Normal",
  60902. height: math.unit(1.3, "meters"),
  60903. default: true
  60904. },
  60905. ]
  60906. ))
  60907. characterMakers.push(() => makeCharacter(
  60908. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  60909. {
  60910. side: {
  60911. height: math.unit(10, "meters"),
  60912. name: "Side",
  60913. image: {
  60914. source: "./media/characters/grev/side.svg",
  60915. extra: 653/266,
  60916. bottom: 77/730
  60917. }
  60918. },
  60919. head: {
  60920. height: math.unit(16.2, "m"),
  60921. name: "Head",
  60922. image: {
  60923. source: "./media/characters/grev/head.svg"
  60924. }
  60925. },
  60926. dick: {
  60927. height: math.unit(2.8135932034, "m"),
  60928. name: "Dick",
  60929. image: {
  60930. source: "./media/characters/grev/dick.svg"
  60931. }
  60932. },
  60933. },
  60934. [
  60935. {
  60936. name: "Friend-Sized",
  60937. height: math.unit(80, "cm")
  60938. },
  60939. {
  60940. name: "Normal",
  60941. height: math.unit(10, "meters"),
  60942. default: true
  60943. },
  60944. {
  60945. name: "Macro",
  60946. height: math.unit(200, "meters")
  60947. },
  60948. ]
  60949. ))
  60950. characterMakers.push(() => makeCharacter(
  60951. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  60952. {
  60953. front: {
  60954. height: math.unit(19.75, "feet"),
  60955. weight: math.unit(20000, "lb"),
  60956. name: "Front",
  60957. image: {
  60958. source: "./media/characters/azuuca/front.svg",
  60959. extra: 1593/1511,
  60960. bottom: 55/1648
  60961. }
  60962. },
  60963. },
  60964. [
  60965. {
  60966. name: "Normal",
  60967. height: math.unit(19.75, "feet"),
  60968. default: true
  60969. },
  60970. ]
  60971. ))
  60972. //characters
  60973. function makeCharacters() {
  60974. const results = [];
  60975. characterMakers.forEach(character => {
  60976. results.push(character());
  60977. });
  60978. return results;
  60979. }